diff --git a/.eslintrc.js b/.eslintrc.js
index 93d3b24..99179eb 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -1,106 +1,16 @@
-// eslint-disable-next-line no-undef
module.exports = {
- "env": {
- "browser": true,
- "es2021" : true,
- "node" : true
- },
- "extends" : ["eslint:recommended", "plugin:react/recommended", "plugin:import/recommended", "plugin:react/jsx-runtime"],
- "ignorePatterns": ["**/node_modules/*"],
- "overrides" : [],
- "parserOptions" : {
- "ecmaVersion": "latest",
- "sourceType" : "module",
- },
- "plugins": [
- "etc",
- "import",
- "react",
- "sort-keys-fix",
- "unused-imports",
- ],
- "rules": {
- "array-bracket-newline": [
- "error",
- {
- "minItems" : 5,
- "multiline": true,
- },
- ],
- "array-bracket-spacing" : ["error", "never"],
- "array-element-newline" : ["error", { "minItems": 5, "multiline": true }],
- "comma-dangle" : ["error", { "arrays": "only-multiline", "objects": "only-multiline" }],
- "comma-spacing" : ["error", { "after": true, "before": false }],
- "etc/no-commented-out-code": "error",
- "id-length" : ["error", { "exceptions": ["i", "j", "id"], "min": 3, "properties": "never" }],
- "import/order" : [
- "error",
- {
- "alphabetize": {
- "caseInsensitive": true,
- "order" : "asc",
- },
- "groups" : ["builtin", "external", "internal"],
- "newlines-between": "always",
- "pathGroups" : [
- {
- "group" : "builtin",
- "pattern" : "react",
- "position": "before",
- },
- ],
- "pathGroupsExcludedImportTypes": ["react"],
- },
- ],
- "indent" : ["error", 4, { "MemberExpression": 1, "SwitchCase": 1 }],
- "key-spacing" : ["error", { "align": "colon" }],
- "linebreak-style" : ["error", "unix"],
- "newline-after-var" : ["error", "always"],
- "newline-per-chained-call": ["error", { "ignoreChainWithDepth": 3 }],
- "no-console" : "error",
- "no-multi-spaces" : ["error", { exceptions: { "VariableDeclarator": true } }],
- "no-multiple-empty-lines" : ["error", { "max": 1 }],
- "no-unused-vars" : ["error", { "args": "after-used", "vars": "all" }],
- "no-var" : "error",
- "object-curly-newline" : [
- "error",
- {
- "ExportDeclaration": { "minProperties": 6, "multiline": true },
- "ImportDeclaration": { "minProperties": 6, "multiline": true },
- "ObjectExpression" : { "minProperties": 6, "multiline": true },
- "ObjectPattern" : { "minProperties": 6, "multiline": true },
- },
- ],
- "object-curly-spacing" : ["error", "always"],
- "object-property-newline" : ["error", { "allowAllPropertiesOnSameLine": true }],
- "padding-line-between-statements": [
- "error",
- {
- blankLine: "always",
- next : "*",
- prev : ["const", "let", "var"],
+ ignorePatterns: ["**/node_modules/*", ".eslintrc.js", "commitlint.config.js" ],
+ overrides: [
+ {
+ files: ["service/**/*.js"],
+ // Extend or merge with the service-specific configuration
+ ...require("./.eslint/service/.eslintrc.js"),
},
{
- blankLine: "any",
- next : ["const", "let", "var"],
- prev : ["const", "let", "var"],
+ files: ["app/**/*.js"],
+ // Extend or merge with the app-specific configuration
+ ...require("./.eslint/app/.eslintrc.js"),
},
- {
- blankLine: "always",
- next : "*",
- prev : ["case", "default"],
- }
- ],
- "quotes" : ["error", "double"],
- "react/jsx-first-prop-new-line" : "error",
- "react/jsx-max-props-per-line" : ["error", { "maximum": { "multi": 1, "single": 3 } }],
- "react/jsx-newline" : "error",
- "react/jsx-props-no-multi-spaces" : "error",
- "react/prop-types" : "off",
- "semi" : ["error", "always"],
- "sort-keys-fix/sort-keys-fix" : "error",
- "space-infix-ops" : ["error", { "int32Hint": false }],
- "unused-imports/no-unused-imports": "error",
- },
- "settings": { "react": { "version": "detect" } },
-};
\ No newline at end of file
+ ]
+ };
+
diff --git a/.github/workflows/auto-create-and-merge-pr.yml b/.github/workflows/auto-create-and-merge-pr.yml
new file mode 100644
index 0000000..b938e20
--- /dev/null
+++ b/.github/workflows/auto-create-and-merge-pr.yml
@@ -0,0 +1,44 @@
+name: Auto Create and Merge PR
+
+on:
+ workflow_dispatch:
+ branches:
+ - development
+env:
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+jobs:
+ create_and_merge_pr:
+ runs-on: ubuntu-latest
+ permissions:
+ contents: write
+ issues: write
+ pull-requests: write
+
+ steps:
+ - name: Checkout code
+ uses: actions/checkout@v3
+ with:
+ ref: development
+
+ - name: Check for changes
+ id: check_changes
+ run: |
+ git fetch origin main:main
+ changes=$(git diff --name-only main..development)
+
+ if [ -z "$changes" ]; then
+ echo "No changes detected. Exiting."
+ exit 0
+ fi
+
+ - name: Create PR
+ run: |
+ pr_url=$(gh pr create --base main --head development --title "Automated PR - Merge development branch into main Branch" --body "Automated PR created by GitHub Actions." | awk '/created/ {print $5}')
+ echo "PR URL: $pr_url"
+
+ - name: Merge PR
+ run: |
+ pr_number=$(echo $pr_url | cut -d '/' -f 7)
+ gh pr merge $pr_number --rebase --admin
+ env:
+ GH_TOKEN: ${{ secrets.DEVOPS }}
diff --git a/.husky/pre-commit b/.husky/pre-commit
index f02b6c3..5051007 100644
--- a/.husky/pre-commit
+++ b/.husky/pre-commit
@@ -9,7 +9,7 @@ if [ "$branch" = "main" ] || [ "$branch" = "development" ]; then
exit 1
fi
-if ! [[ $branch =~ $valid_branch_n$branames_regex ]]; then
+if ! [[ $branch =~ $valid_branch_names_regex ]]; then
echo "Invalid branch name: $branch; commit rejected"
echo "Please rename your branch to conform to $valid_branch_names_regex pattern."
exit 1
diff --git a/.vscode/settings.json b/.vscode/settings.json
index 517e364..f5a9cdd 100644
--- a/.vscode/settings.json
+++ b/.vscode/settings.json
@@ -1,4 +1,5 @@
{
+ "files.eol": "\n",
"[javascript]": {
"editor.defaultFormatter": "rvest.vs-code-prettier-eslint"
},
@@ -7,7 +8,7 @@
"editor.guides.indentation": true,
"editor.renderWhitespace": "boundary",
"editor.codeActionsOnSave": {
- "source.fixAll.eslint": true
+ "source.fixAll.eslint": "explicit"
},
"eslint.validate": [
"javascript"
diff --git a/ATTRIBUTIONS.md b/ATTRIBUTIONS.md
new file mode 100644
index 0000000..2de626b
--- /dev/null
+++ b/ATTRIBUTIONS.md
@@ -0,0 +1,27362 @@
+## ATTRIBUTIONS
+This file lists the third-party libraries, frameworks, and other components used in the wrappid-module repository,
along with their respective licenses.
It is important to comply with the licensing terms of these components when using the code.
+
+ @aashutoshrathi/word-wrap@1.2.6
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@aashutoshrathi/word-wrap@1.2.6|
+ >|**Version**|@1.2.6|
+ >|**Repository**|https://github.com/aashutoshrathi/word-wrap|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jon Schlinkert|
+ >|**Contact**|NA|
+ >|**Homepage**|https://github.com/jonschlinkert|
+
+ #### Use this package in your project
+ ```bash
+ npm i @aashutoshrathi/word-wrap@1.2.6
+ ```
+
+
+ @alloc/quick-lru@5.2.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@alloc/quick-lru@5.2.0|
+ >|**Version**|@5.2.0|
+ >|**Repository**|https://github.com/sindresorhus/quick-lru|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|https://sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i @alloc/quick-lru@5.2.0
+ ```
+
+
+ @ampproject/remapping@2.2.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@ampproject/remapping@2.2.1|
+ >|**Version**|@2.2.1|
+ >|**Repository**|https://github.com/ampproject/remapping|
+ >|**Licenses**|Apache-2.0|
+ >|**Publisher**|Justin Ridgewell|
+ >|**Contact**|jridgewell@google.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @ampproject/remapping@2.2.1
+ ```
+
+
+ @apideck/better-ajv-errors@0.3.6
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@apideck/better-ajv-errors@0.3.6|
+ >|**Version**|@0.3.6|
+ >|**Repository**|https://github.com/apideck-libraries/better-ajv-errors|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Apideck|
+ >|**Contact**|support@apideck.com|
+ >|**Homepage**|https://apideck.com/|
+
+ #### Use this package in your project
+ ```bash
+ npm i @apideck/better-ajv-errors@0.3.6
+ ```
+
+
+ @babel/code-frame@7.23.5
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/code-frame@7.23.5|
+ >|**Version**|@7.23.5|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/code-frame@7.23.5
+ ```
+
+
+ @babel/compat-data@7.23.5
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/compat-data@7.23.5|
+ >|**Version**|@7.23.5|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/compat-data@7.23.5
+ ```
+
+
+ @babel/core@7.23.7
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/core@7.23.7|
+ >|**Version**|@7.23.7|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/core@7.23.7
+ ```
+
+
+ @babel/eslint-parser@7.23.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/eslint-parser@7.23.3|
+ >|**Version**|@7.23.3|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/eslint-parser@7.23.3
+ ```
+
+
+ @babel/generator@7.23.6
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/generator@7.23.6|
+ >|**Version**|@7.23.6|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/generator@7.23.6
+ ```
+
+
+ @babel/helper-annotate-as-pure@7.22.5
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/helper-annotate-as-pure@7.22.5|
+ >|**Version**|@7.22.5|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/helper-annotate-as-pure@7.22.5
+ ```
+
+
+ @babel/helper-builder-binary-assignment-operator-visitor@7.22.15
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/helper-builder-binary-assignment-operator-visitor@7.22.15|
+ >|**Version**|@7.22.15|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/helper-builder-binary-assignment-operator-visitor@7.22.15
+ ```
+
+
+ @babel/helper-compilation-targets@7.23.6
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/helper-compilation-targets@7.23.6|
+ >|**Version**|@7.23.6|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/helper-compilation-targets@7.23.6
+ ```
+
+
+ @babel/helper-create-class-features-plugin@7.23.7
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/helper-create-class-features-plugin@7.23.7|
+ >|**Version**|@7.23.7|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/helper-create-class-features-plugin@7.23.7
+ ```
+
+
+ @babel/helper-create-regexp-features-plugin@7.22.15
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/helper-create-regexp-features-plugin@7.22.15|
+ >|**Version**|@7.22.15|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/helper-create-regexp-features-plugin@7.22.15
+ ```
+
+
+ @babel/helper-define-polyfill-provider@0.4.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/helper-define-polyfill-provider@0.4.4|
+ >|**Version**|@0.4.4|
+ >|**Repository**|https://github.com/babel/babel-polyfills|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/helper-define-polyfill-provider@0.4.4
+ ```
+
+
+ @babel/helper-environment-visitor@7.22.20
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/helper-environment-visitor@7.22.20|
+ >|**Version**|@7.22.20|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/helper-environment-visitor@7.22.20
+ ```
+
+
+ @babel/helper-function-name@7.23.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/helper-function-name@7.23.0|
+ >|**Version**|@7.23.0|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/helper-function-name@7.23.0
+ ```
+
+
+ @babel/helper-hoist-variables@7.22.5
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/helper-hoist-variables@7.22.5|
+ >|**Version**|@7.22.5|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/helper-hoist-variables@7.22.5
+ ```
+
+
+ @babel/helper-member-expression-to-functions@7.23.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/helper-member-expression-to-functions@7.23.0|
+ >|**Version**|@7.23.0|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/helper-member-expression-to-functions@7.23.0
+ ```
+
+
+ @babel/helper-module-imports@7.22.15
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/helper-module-imports@7.22.15|
+ >|**Version**|@7.22.15|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/helper-module-imports@7.22.15
+ ```
+
+
+ @babel/helper-module-transforms@7.23.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/helper-module-transforms@7.23.3|
+ >|**Version**|@7.23.3|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/helper-module-transforms@7.23.3
+ ```
+
+
+ @babel/helper-optimise-call-expression@7.22.5
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/helper-optimise-call-expression@7.22.5|
+ >|**Version**|@7.22.5|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/helper-optimise-call-expression@7.22.5
+ ```
+
+
+ @babel/helper-plugin-utils@7.22.5
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/helper-plugin-utils@7.22.5|
+ >|**Version**|@7.22.5|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/helper-plugin-utils@7.22.5
+ ```
+
+
+ @babel/helper-remap-async-to-generator@7.22.20
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/helper-remap-async-to-generator@7.22.20|
+ >|**Version**|@7.22.20|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/helper-remap-async-to-generator@7.22.20
+ ```
+
+
+ @babel/helper-replace-supers@7.22.20
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/helper-replace-supers@7.22.20|
+ >|**Version**|@7.22.20|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/helper-replace-supers@7.22.20
+ ```
+
+
+ @babel/helper-simple-access@7.22.5
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/helper-simple-access@7.22.5|
+ >|**Version**|@7.22.5|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/helper-simple-access@7.22.5
+ ```
+
+
+ @babel/helper-skip-transparent-expression-wrappers@7.22.5
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/helper-skip-transparent-expression-wrappers@7.22.5|
+ >|**Version**|@7.22.5|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/helper-skip-transparent-expression-wrappers@7.22.5
+ ```
+
+
+ @babel/helper-split-export-declaration@7.22.6
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/helper-split-export-declaration@7.22.6|
+ >|**Version**|@7.22.6|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/helper-split-export-declaration@7.22.6
+ ```
+
+
+ @babel/helper-string-parser@7.23.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/helper-string-parser@7.23.4|
+ >|**Version**|@7.23.4|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/helper-string-parser@7.23.4
+ ```
+
+
+ @babel/helper-validator-identifier@7.22.20
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/helper-validator-identifier@7.22.20|
+ >|**Version**|@7.22.20|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/helper-validator-identifier@7.22.20
+ ```
+
+
+ @babel/helper-validator-option@7.23.5
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/helper-validator-option@7.23.5|
+ >|**Version**|@7.23.5|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/helper-validator-option@7.23.5
+ ```
+
+
+ @babel/helper-wrap-function@7.22.20
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/helper-wrap-function@7.22.20|
+ >|**Version**|@7.22.20|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/helper-wrap-function@7.22.20
+ ```
+
+
+ @babel/helpers@7.23.8
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/helpers@7.23.8|
+ >|**Version**|@7.23.8|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/helpers@7.23.8
+ ```
+
+
+ @babel/highlight@7.23.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/highlight@7.23.4|
+ >|**Version**|@7.23.4|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/highlight@7.23.4
+ ```
+
+
+ @babel/parser@7.23.6
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/parser@7.23.6|
+ >|**Version**|@7.23.6|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/parser@7.23.6
+ ```
+
+
+ @babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3|
+ >|**Version**|@7.23.3|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3
+ ```
+
+
+ @babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.23.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.23.3|
+ >|**Version**|@87.23.3|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.23.3
+ ```
+
+
+ @babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.23.7
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.23.7|
+ >|**Version**|@87.23.7|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.23.7
+ ```
+
+
+ @babel/plugin-proposal-class-properties@7.18.6
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-proposal-class-properties@7.18.6|
+ >|**Version**|@7.18.6|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-proposal-class-properties@7.18.6
+ ```
+
+
+ @babel/plugin-proposal-decorators@7.23.7
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-proposal-decorators@7.23.7|
+ >|**Version**|@7.23.7|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-proposal-decorators@7.23.7
+ ```
+
+
+ @babel/plugin-proposal-nullish-coalescing-operator@7.18.6
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-proposal-nullish-coalescing-operator@7.18.6|
+ >|**Version**|@7.18.6|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-proposal-nullish-coalescing-operator@7.18.6
+ ```
+
+
+ @babel/plugin-proposal-numeric-separator@7.18.6
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-proposal-numeric-separator@7.18.6|
+ >|**Version**|@7.18.6|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-proposal-numeric-separator@7.18.6
+ ```
+
+
+ @babel/plugin-proposal-optional-chaining@7.21.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-proposal-optional-chaining@7.21.0|
+ >|**Version**|@7.21.0|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-proposal-optional-chaining@7.21.0
+ ```
+
+
+ @babel/plugin-proposal-private-methods@7.18.6
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-proposal-private-methods@7.18.6|
+ >|**Version**|@7.18.6|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-proposal-private-methods@7.18.6
+ ```
+
+
+ @babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2|
+ >|**Version**|@7.21.0.2|
+ >|**Repository**|https://github.com/babel/babel-plugin-proposal-private-property-in-object|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2
+ ```
+
+
+ @babel/plugin-syntax-async-generators@7.8.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-syntax-async-generators@7.8.4|
+ >|**Version**|@7.8.4|
+ >|**Repository**|https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-async-generators|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-syntax-async-generators@7.8.4
+ ```
+
+
+ @babel/plugin-syntax-bigint@7.8.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-syntax-bigint@7.8.3|
+ >|**Version**|@7.8.3|
+ >|**Repository**|https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-bigint|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-syntax-bigint@7.8.3
+ ```
+
+
+ @babel/plugin-syntax-class-properties@7.12.13
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-syntax-class-properties@7.12.13|
+ >|**Version**|@7.12.13|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-syntax-class-properties@7.12.13
+ ```
+
+
+ @babel/plugin-syntax-class-static-block@7.14.5
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-syntax-class-static-block@7.14.5|
+ >|**Version**|@7.14.5|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-syntax-class-static-block@7.14.5
+ ```
+
+
+ @babel/plugin-syntax-decorators@7.23.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-syntax-decorators@7.23.3|
+ >|**Version**|@7.23.3|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-syntax-decorators@7.23.3
+ ```
+
+
+ @babel/plugin-syntax-dynamic-import@7.8.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-syntax-dynamic-import@7.8.3|
+ >|**Version**|@7.8.3|
+ >|**Repository**|https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-dynamic-import|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-syntax-dynamic-import@7.8.3
+ ```
+
+
+ @babel/plugin-syntax-export-namespace-from@7.8.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-syntax-export-namespace-from@7.8.3|
+ >|**Version**|@7.8.3|
+ >|**Repository**|https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-export-namespace-from|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-syntax-export-namespace-from@7.8.3
+ ```
+
+
+ @babel/plugin-syntax-flow@7.23.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-syntax-flow@7.23.3|
+ >|**Version**|@7.23.3|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-syntax-flow@7.23.3
+ ```
+
+
+ @babel/plugin-syntax-import-assertions@7.23.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-syntax-import-assertions@7.23.3|
+ >|**Version**|@7.23.3|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-syntax-import-assertions@7.23.3
+ ```
+
+
+ @babel/plugin-syntax-import-attributes@7.23.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-syntax-import-attributes@7.23.3|
+ >|**Version**|@7.23.3|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-syntax-import-attributes@7.23.3
+ ```
+
+
+ @babel/plugin-syntax-import-meta@7.10.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-syntax-import-meta@7.10.4|
+ >|**Version**|@7.10.4|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-syntax-import-meta@7.10.4
+ ```
+
+
+ @babel/plugin-syntax-json-strings@7.8.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-syntax-json-strings@7.8.3|
+ >|**Version**|@7.8.3|
+ >|**Repository**|https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-json-strings|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-syntax-json-strings@7.8.3
+ ```
+
+
+ @babel/plugin-syntax-jsx@7.23.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-syntax-jsx@7.23.3|
+ >|**Version**|@7.23.3|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-syntax-jsx@7.23.3
+ ```
+
+
+ @babel/plugin-syntax-logical-assignment-operators@7.10.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-syntax-logical-assignment-operators@7.10.4|
+ >|**Version**|@7.10.4|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-syntax-logical-assignment-operators@7.10.4
+ ```
+
+
+ @babel/plugin-syntax-nullish-coalescing-operator@7.8.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-syntax-nullish-coalescing-operator@7.8.3|
+ >|**Version**|@7.8.3|
+ >|**Repository**|https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-nullish-coalescing-operator|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-syntax-nullish-coalescing-operator@7.8.3
+ ```
+
+
+ @babel/plugin-syntax-numeric-separator@7.10.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-syntax-numeric-separator@7.10.4|
+ >|**Version**|@7.10.4|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-syntax-numeric-separator@7.10.4
+ ```
+
+
+ @babel/plugin-syntax-object-rest-spread@7.8.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-syntax-object-rest-spread@7.8.3|
+ >|**Version**|@7.8.3|
+ >|**Repository**|https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-object-rest-spread|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-syntax-object-rest-spread@7.8.3
+ ```
+
+
+ @babel/plugin-syntax-optional-catch-binding@7.8.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-syntax-optional-catch-binding@7.8.3|
+ >|**Version**|@7.8.3|
+ >|**Repository**|https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-optional-catch-binding|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-syntax-optional-catch-binding@7.8.3
+ ```
+
+
+ @babel/plugin-syntax-optional-chaining@7.8.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-syntax-optional-chaining@7.8.3|
+ >|**Version**|@7.8.3|
+ >|**Repository**|https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-optional-chaining|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-syntax-optional-chaining@7.8.3
+ ```
+
+
+ @babel/plugin-syntax-private-property-in-object@7.14.5
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-syntax-private-property-in-object@7.14.5|
+ >|**Version**|@7.14.5|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-syntax-private-property-in-object@7.14.5
+ ```
+
+
+ @babel/plugin-syntax-top-level-await@7.14.5
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-syntax-top-level-await@7.14.5|
+ >|**Version**|@7.14.5|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-syntax-top-level-await@7.14.5
+ ```
+
+
+ @babel/plugin-syntax-typescript@7.23.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-syntax-typescript@7.23.3|
+ >|**Version**|@7.23.3|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-syntax-typescript@7.23.3
+ ```
+
+
+ @babel/plugin-syntax-unicode-sets-regex@7.18.6
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-syntax-unicode-sets-regex@7.18.6|
+ >|**Version**|@7.18.6|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-syntax-unicode-sets-regex@7.18.6
+ ```
+
+
+ @babel/plugin-transform-arrow-functions@7.23.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-transform-arrow-functions@7.23.3|
+ >|**Version**|@7.23.3|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-transform-arrow-functions@7.23.3
+ ```
+
+
+ @babel/plugin-transform-async-generator-functions@7.23.7
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-transform-async-generator-functions@7.23.7|
+ >|**Version**|@7.23.7|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-transform-async-generator-functions@7.23.7
+ ```
+
+
+ @babel/plugin-transform-async-to-generator@7.23.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-transform-async-to-generator@7.23.3|
+ >|**Version**|@7.23.3|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-transform-async-to-generator@7.23.3
+ ```
+
+
+ @babel/plugin-transform-block-scoped-functions@7.23.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-transform-block-scoped-functions@7.23.3|
+ >|**Version**|@7.23.3|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-transform-block-scoped-functions@7.23.3
+ ```
+
+
+ @babel/plugin-transform-block-scoping@7.23.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-transform-block-scoping@7.23.4|
+ >|**Version**|@7.23.4|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-transform-block-scoping@7.23.4
+ ```
+
+
+ @babel/plugin-transform-class-properties@7.23.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-transform-class-properties@7.23.3|
+ >|**Version**|@7.23.3|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-transform-class-properties@7.23.3
+ ```
+
+
+ @babel/plugin-transform-class-static-block@7.23.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-transform-class-static-block@7.23.4|
+ >|**Version**|@7.23.4|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-transform-class-static-block@7.23.4
+ ```
+
+
+ @babel/plugin-transform-classes@7.23.8
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-transform-classes@7.23.8|
+ >|**Version**|@7.23.8|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-transform-classes@7.23.8
+ ```
+
+
+ @babel/plugin-transform-computed-properties@7.23.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-transform-computed-properties@7.23.3|
+ >|**Version**|@7.23.3|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-transform-computed-properties@7.23.3
+ ```
+
+
+ @babel/plugin-transform-destructuring@7.23.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-transform-destructuring@7.23.3|
+ >|**Version**|@7.23.3|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-transform-destructuring@7.23.3
+ ```
+
+
+ @babel/plugin-transform-dotall-regex@7.23.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-transform-dotall-regex@7.23.3|
+ >|**Version**|@7.23.3|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-transform-dotall-regex@7.23.3
+ ```
+
+
+ @babel/plugin-transform-duplicate-keys@7.23.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-transform-duplicate-keys@7.23.3|
+ >|**Version**|@7.23.3|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-transform-duplicate-keys@7.23.3
+ ```
+
+
+ @babel/plugin-transform-dynamic-import@7.23.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-transform-dynamic-import@7.23.4|
+ >|**Version**|@7.23.4|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-transform-dynamic-import@7.23.4
+ ```
+
+
+ @babel/plugin-transform-exponentiation-operator@7.23.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-transform-exponentiation-operator@7.23.3|
+ >|**Version**|@7.23.3|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-transform-exponentiation-operator@7.23.3
+ ```
+
+
+ @babel/plugin-transform-export-namespace-from@7.23.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-transform-export-namespace-from@7.23.4|
+ >|**Version**|@7.23.4|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-transform-export-namespace-from@7.23.4
+ ```
+
+
+ @babel/plugin-transform-flow-strip-types@7.23.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-transform-flow-strip-types@7.23.3|
+ >|**Version**|@7.23.3|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-transform-flow-strip-types@7.23.3
+ ```
+
+
+ @babel/plugin-transform-for-of@7.23.6
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-transform-for-of@7.23.6|
+ >|**Version**|@7.23.6|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-transform-for-of@7.23.6
+ ```
+
+
+ @babel/plugin-transform-function-name@7.23.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-transform-function-name@7.23.3|
+ >|**Version**|@7.23.3|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-transform-function-name@7.23.3
+ ```
+
+
+ @babel/plugin-transform-json-strings@7.23.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-transform-json-strings@7.23.4|
+ >|**Version**|@7.23.4|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-transform-json-strings@7.23.4
+ ```
+
+
+ @babel/plugin-transform-literals@7.23.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-transform-literals@7.23.3|
+ >|**Version**|@7.23.3|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-transform-literals@7.23.3
+ ```
+
+
+ @babel/plugin-transform-logical-assignment-operators@7.23.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-transform-logical-assignment-operators@7.23.4|
+ >|**Version**|@7.23.4|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-transform-logical-assignment-operators@7.23.4
+ ```
+
+
+ @babel/plugin-transform-member-expression-literals@7.23.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-transform-member-expression-literals@7.23.3|
+ >|**Version**|@7.23.3|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-transform-member-expression-literals@7.23.3
+ ```
+
+
+ @babel/plugin-transform-modules-amd@7.23.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-transform-modules-amd@7.23.3|
+ >|**Version**|@7.23.3|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-transform-modules-amd@7.23.3
+ ```
+
+
+ @babel/plugin-transform-modules-commonjs@7.23.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-transform-modules-commonjs@7.23.3|
+ >|**Version**|@7.23.3|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-transform-modules-commonjs@7.23.3
+ ```
+
+
+ @babel/plugin-transform-modules-systemjs@7.23.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-transform-modules-systemjs@7.23.3|
+ >|**Version**|@7.23.3|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-transform-modules-systemjs@7.23.3
+ ```
+
+
+ @babel/plugin-transform-modules-umd@7.23.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-transform-modules-umd@7.23.3|
+ >|**Version**|@7.23.3|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-transform-modules-umd@7.23.3
+ ```
+
+
+ @babel/plugin-transform-named-capturing-groups-regex@7.22.5
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-transform-named-capturing-groups-regex@7.22.5|
+ >|**Version**|@7.22.5|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-transform-named-capturing-groups-regex@7.22.5
+ ```
+
+
+ @babel/plugin-transform-new-target@7.23.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-transform-new-target@7.23.3|
+ >|**Version**|@7.23.3|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-transform-new-target@7.23.3
+ ```
+
+
+ @babel/plugin-transform-nullish-coalescing-operator@7.23.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-transform-nullish-coalescing-operator@7.23.4|
+ >|**Version**|@7.23.4|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-transform-nullish-coalescing-operator@7.23.4
+ ```
+
+
+ @babel/plugin-transform-numeric-separator@7.23.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-transform-numeric-separator@7.23.4|
+ >|**Version**|@7.23.4|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-transform-numeric-separator@7.23.4
+ ```
+
+
+ @babel/plugin-transform-object-rest-spread@7.23.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-transform-object-rest-spread@7.23.4|
+ >|**Version**|@7.23.4|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-transform-object-rest-spread@7.23.4
+ ```
+
+
+ @babel/plugin-transform-object-super@7.23.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-transform-object-super@7.23.3|
+ >|**Version**|@7.23.3|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-transform-object-super@7.23.3
+ ```
+
+
+ @babel/plugin-transform-optional-catch-binding@7.23.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-transform-optional-catch-binding@7.23.4|
+ >|**Version**|@7.23.4|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-transform-optional-catch-binding@7.23.4
+ ```
+
+
+ @babel/plugin-transform-optional-chaining@7.23.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-transform-optional-chaining@7.23.4|
+ >|**Version**|@7.23.4|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-transform-optional-chaining@7.23.4
+ ```
+
+
+ @babel/plugin-transform-parameters@7.23.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-transform-parameters@7.23.3|
+ >|**Version**|@7.23.3|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-transform-parameters@7.23.3
+ ```
+
+
+ @babel/plugin-transform-private-methods@7.23.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-transform-private-methods@7.23.3|
+ >|**Version**|@7.23.3|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-transform-private-methods@7.23.3
+ ```
+
+
+ @babel/plugin-transform-private-property-in-object@7.23.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-transform-private-property-in-object@7.23.4|
+ >|**Version**|@7.23.4|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-transform-private-property-in-object@7.23.4
+ ```
+
+
+ @babel/plugin-transform-property-literals@7.23.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-transform-property-literals@7.23.3|
+ >|**Version**|@7.23.3|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-transform-property-literals@7.23.3
+ ```
+
+
+ @babel/plugin-transform-react-constant-elements@7.23.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-transform-react-constant-elements@7.23.3|
+ >|**Version**|@7.23.3|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-transform-react-constant-elements@7.23.3
+ ```
+
+
+ @babel/plugin-transform-react-display-name@7.23.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-transform-react-display-name@7.23.3|
+ >|**Version**|@7.23.3|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-transform-react-display-name@7.23.3
+ ```
+
+
+ @babel/plugin-transform-react-jsx-development@7.22.5
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-transform-react-jsx-development@7.22.5|
+ >|**Version**|@7.22.5|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-transform-react-jsx-development@7.22.5
+ ```
+
+
+ @babel/plugin-transform-react-jsx@7.23.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-transform-react-jsx@7.23.4|
+ >|**Version**|@7.23.4|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-transform-react-jsx@7.23.4
+ ```
+
+
+ @babel/plugin-transform-react-pure-annotations@7.23.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-transform-react-pure-annotations@7.23.3|
+ >|**Version**|@7.23.3|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-transform-react-pure-annotations@7.23.3
+ ```
+
+
+ @babel/plugin-transform-regenerator@7.23.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-transform-regenerator@7.23.3|
+ >|**Version**|@7.23.3|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-transform-regenerator@7.23.3
+ ```
+
+
+ @babel/plugin-transform-reserved-words@7.23.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-transform-reserved-words@7.23.3|
+ >|**Version**|@7.23.3|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-transform-reserved-words@7.23.3
+ ```
+
+
+ @babel/plugin-transform-runtime@7.23.7
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-transform-runtime@7.23.7|
+ >|**Version**|@7.23.7|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-transform-runtime@7.23.7
+ ```
+
+
+ @babel/plugin-transform-shorthand-properties@7.23.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-transform-shorthand-properties@7.23.3|
+ >|**Version**|@7.23.3|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-transform-shorthand-properties@7.23.3
+ ```
+
+
+ @babel/plugin-transform-spread@7.23.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-transform-spread@7.23.3|
+ >|**Version**|@7.23.3|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-transform-spread@7.23.3
+ ```
+
+
+ @babel/plugin-transform-sticky-regex@7.23.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-transform-sticky-regex@7.23.3|
+ >|**Version**|@7.23.3|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-transform-sticky-regex@7.23.3
+ ```
+
+
+ @babel/plugin-transform-template-literals@7.23.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-transform-template-literals@7.23.3|
+ >|**Version**|@7.23.3|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-transform-template-literals@7.23.3
+ ```
+
+
+ @babel/plugin-transform-typeof-symbol@7.23.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-transform-typeof-symbol@7.23.3|
+ >|**Version**|@7.23.3|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-transform-typeof-symbol@7.23.3
+ ```
+
+
+ @babel/plugin-transform-typescript@7.23.6
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-transform-typescript@7.23.6|
+ >|**Version**|@7.23.6|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-transform-typescript@7.23.6
+ ```
+
+
+ @babel/plugin-transform-unicode-escapes@7.23.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-transform-unicode-escapes@7.23.3|
+ >|**Version**|@7.23.3|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-transform-unicode-escapes@7.23.3
+ ```
+
+
+ @babel/plugin-transform-unicode-property-regex@7.23.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-transform-unicode-property-regex@7.23.3|
+ >|**Version**|@7.23.3|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-transform-unicode-property-regex@7.23.3
+ ```
+
+
+ @babel/plugin-transform-unicode-regex@7.23.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-transform-unicode-regex@7.23.3|
+ >|**Version**|@7.23.3|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-transform-unicode-regex@7.23.3
+ ```
+
+
+ @babel/plugin-transform-unicode-sets-regex@7.23.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/plugin-transform-unicode-sets-regex@7.23.3|
+ >|**Version**|@7.23.3|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/plugin-transform-unicode-sets-regex@7.23.3
+ ```
+
+
+ @babel/preset-env@7.23.8
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/preset-env@7.23.8|
+ >|**Version**|@7.23.8|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/preset-env@7.23.8
+ ```
+
+
+ @babel/preset-modules@0.1.6-no-external-plugins
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/preset-modules@0.1.6-no-external-plugins|
+ >|**Version**|@0.1.6|
+ >|**Repository**|https://github.com/babel/preset-modules|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/preset-modules@0.1.6-no-external-plugins
+ ```
+
+
+ @babel/preset-react@7.23.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/preset-react@7.23.3|
+ >|**Version**|@7.23.3|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/preset-react@7.23.3
+ ```
+
+
+ @babel/preset-typescript@7.23.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/preset-typescript@7.23.3|
+ >|**Version**|@7.23.3|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/preset-typescript@7.23.3
+ ```
+
+
+ @babel/regjsgen@0.8.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/regjsgen@0.8.0|
+ >|**Version**|@0.8.0|
+ >|**Repository**|https://github.com/bnjmnt4n/regjsgen|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Benjamin Tan|
+ >|**Contact**|NA|
+ >|**Homepage**|https://ofcr.se/|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/regjsgen@0.8.0
+ ```
+
+
+ @babel/runtime@7.23.8
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/runtime@7.23.8|
+ >|**Version**|@7.23.8|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/runtime@7.23.8
+ ```
+
+
+ @babel/template@7.22.15
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/template@7.22.15|
+ >|**Version**|@7.22.15|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/template@7.22.15
+ ```
+
+
+ @babel/traverse@7.23.7
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/traverse@7.23.7|
+ >|**Version**|@7.23.7|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/traverse@7.23.7
+ ```
+
+
+ @babel/types@7.23.6
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@babel/types@7.23.6|
+ >|**Version**|@7.23.6|
+ >|**Repository**|https://github.com/babel/babel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|The Babel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|https://babel.dev/team|
+
+ #### Use this package in your project
+ ```bash
+ npm i @babel/types@7.23.6
+ ```
+
+
+ @bcoe/v8-coverage@0.2.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@bcoe/v8-coverage@0.2.3|
+ >|**Version**|@80.2.3|
+ >|**Repository**|https://github.com/demurgos/v8-coverage|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Charles Samborski|
+ >|**Contact**|demurgos@demurgos.net|
+ >|**Homepage**|https://demurgos.net|
+
+ #### Use this package in your project
+ ```bash
+ npm i @bcoe/v8-coverage@0.2.3
+ ```
+
+
+ @commitlint/cli@17.8.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@commitlint/cli@17.8.1|
+ >|**Version**|@17.8.1|
+ >|**Repository**|https://github.com/conventional-changelog/commitlint|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Mario Nebl|
+ >|**Contact**|hello@herebecode.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @commitlint/cli@17.8.1
+ ```
+
+
+ @commitlint/config-conventional@17.8.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@commitlint/config-conventional@17.8.1|
+ >|**Version**|@17.8.1|
+ >|**Repository**|https://github.com/conventional-changelog/commitlint|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Mario Nebl|
+ >|**Contact**|hello@herebecode.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @commitlint/config-conventional@17.8.1
+ ```
+
+
+ @commitlint/config-validator@17.8.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@commitlint/config-validator@17.8.1|
+ >|**Version**|@17.8.1|
+ >|**Repository**|https://github.com/conventional-changelog/commitlint|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Mario Nebl|
+ >|**Contact**|hello@herebecode.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @commitlint/config-validator@17.8.1
+ ```
+
+
+ @commitlint/ensure@17.8.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@commitlint/ensure@17.8.1|
+ >|**Version**|@17.8.1|
+ >|**Repository**|https://github.com/conventional-changelog/commitlint|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Mario Nebl|
+ >|**Contact**|hello@herebecode.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @commitlint/ensure@17.8.1
+ ```
+
+
+ @commitlint/execute-rule@17.8.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@commitlint/execute-rule@17.8.1|
+ >|**Version**|@17.8.1|
+ >|**Repository**|https://github.com/conventional-changelog/commitlint|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Mario Nebl|
+ >|**Contact**|hello@herebecode.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @commitlint/execute-rule@17.8.1
+ ```
+
+
+ @commitlint/format@17.8.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@commitlint/format@17.8.1|
+ >|**Version**|@17.8.1|
+ >|**Repository**|https://github.com/conventional-changelog/commitlint|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Mario Nebl|
+ >|**Contact**|hello@herebecode.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @commitlint/format@17.8.1
+ ```
+
+
+ @commitlint/is-ignored@17.8.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@commitlint/is-ignored@17.8.1|
+ >|**Version**|@17.8.1|
+ >|**Repository**|https://github.com/conventional-changelog/commitlint|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Mario Nebl|
+ >|**Contact**|hello@herebecode.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @commitlint/is-ignored@17.8.1
+ ```
+
+
+ @commitlint/lint@17.8.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@commitlint/lint@17.8.1|
+ >|**Version**|@17.8.1|
+ >|**Repository**|https://github.com/conventional-changelog/commitlint|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Mario Nebl|
+ >|**Contact**|hello@herebecode.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @commitlint/lint@17.8.1
+ ```
+
+
+ @commitlint/load@17.8.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@commitlint/load@17.8.1|
+ >|**Version**|@17.8.1|
+ >|**Repository**|https://github.com/conventional-changelog/commitlint|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Mario Nebl|
+ >|**Contact**|hello@herebecode.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @commitlint/load@17.8.1
+ ```
+
+
+ @commitlint/message@17.8.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@commitlint/message@17.8.1|
+ >|**Version**|@17.8.1|
+ >|**Repository**|https://github.com/conventional-changelog/commitlint|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Mario Nebl|
+ >|**Contact**|hello@herebecode.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @commitlint/message@17.8.1
+ ```
+
+
+ @commitlint/parse@17.8.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@commitlint/parse@17.8.1|
+ >|**Version**|@17.8.1|
+ >|**Repository**|https://github.com/conventional-changelog/commitlint|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Mario Nebl|
+ >|**Contact**|hello@herebecode.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @commitlint/parse@17.8.1
+ ```
+
+
+ @commitlint/prompt-cli@17.8.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@commitlint/prompt-cli@17.8.1|
+ >|**Version**|@17.8.1|
+ >|**Repository**|https://github.com/conventional-changelog/commitlint|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Mario Nebl|
+ >|**Contact**|hello@herebecode.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @commitlint/prompt-cli@17.8.1
+ ```
+
+
+ @commitlint/prompt@17.8.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@commitlint/prompt@17.8.1|
+ >|**Version**|@17.8.1|
+ >|**Repository**|https://github.com/conventional-changelog/commitlint|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Mario Nebl|
+ >|**Contact**|hello@herebecode.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @commitlint/prompt@17.8.1
+ ```
+
+
+ @commitlint/read@17.8.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@commitlint/read@17.8.1|
+ >|**Version**|@17.8.1|
+ >|**Repository**|https://github.com/conventional-changelog/commitlint|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Mario Nebl|
+ >|**Contact**|hello@herebecode.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @commitlint/read@17.8.1
+ ```
+
+
+ @commitlint/resolve-extends@17.8.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@commitlint/resolve-extends@17.8.1|
+ >|**Version**|@17.8.1|
+ >|**Repository**|https://github.com/conventional-changelog/commitlint|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Mario Nebl|
+ >|**Contact**|hello@herebecode.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @commitlint/resolve-extends@17.8.1
+ ```
+
+
+ @commitlint/rules@17.8.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@commitlint/rules@17.8.1|
+ >|**Version**|@17.8.1|
+ >|**Repository**|https://github.com/conventional-changelog/commitlint|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Mario Nebl|
+ >|**Contact**|hello@herebecode.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @commitlint/rules@17.8.1
+ ```
+
+
+ @commitlint/to-lines@17.8.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@commitlint/to-lines@17.8.1|
+ >|**Version**|@17.8.1|
+ >|**Repository**|https://github.com/conventional-changelog/commitlint|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Mario Nebl|
+ >|**Contact**|hello@herebecode.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @commitlint/to-lines@17.8.1
+ ```
+
+
+ @commitlint/top-level@17.8.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@commitlint/top-level@17.8.1|
+ >|**Version**|@17.8.1|
+ >|**Repository**|https://github.com/conventional-changelog/commitlint|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Mario Nebl|
+ >|**Contact**|hello@herebecode.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @commitlint/top-level@17.8.1
+ ```
+
+
+ @commitlint/types@17.8.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@commitlint/types@17.8.1|
+ >|**Version**|@17.8.1|
+ >|**Repository**|https://github.com/conventional-changelog/commitlint|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Mario Nebl|
+ >|**Contact**|hello@herebecode.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @commitlint/types@17.8.1
+ ```
+
+
+ @cspotcode/source-map-support@0.8.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@cspotcode/source-map-support@0.8.1|
+ >|**Version**|@0.8.1|
+ >|**Repository**|https://github.com/cspotcode/node-source-map-support|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @cspotcode/source-map-support@0.8.1
+ ```
+
+
+ @csstools/normalize.css@12.1.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@csstools/normalize.css@12.1.1|
+ >|**Version**|@.12.1.1|
+ >|**Repository**|https://github.com/csstools/normalize.css|
+ >|**Licenses**|CC0-1.0|
+ >|**Publisher**|Jonathan Neal|
+ >|**Contact**|jonathantneal@hotmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @csstools/normalize.css@12.1.1
+ ```
+
+
+ @csstools/postcss-cascade-layers@1.1.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@csstools/postcss-cascade-layers@1.1.1|
+ >|**Version**|@1.1.1|
+ >|**Repository**|https://github.com/csstools/postcss-plugins|
+ >|**Licenses**|CC0-1.0|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @csstools/postcss-cascade-layers@1.1.1
+ ```
+
+
+ @csstools/postcss-color-function@1.1.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@csstools/postcss-color-function@1.1.1|
+ >|**Version**|@1.1.1|
+ >|**Repository**|https://github.com/csstools/postcss-plugins|
+ >|**Licenses**|CC0-1.0|
+ >|**Publisher**|Jonathan Neal|
+ >|**Contact**|jonathantneal@hotmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @csstools/postcss-color-function@1.1.1
+ ```
+
+
+ @csstools/postcss-font-format-keywords@1.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@csstools/postcss-font-format-keywords@1.0.1|
+ >|**Version**|@1.0.1|
+ >|**Repository**|https://github.com/csstools/postcss-plugins|
+ >|**Licenses**|CC0-1.0|
+ >|**Publisher**|Jonathan Neal|
+ >|**Contact**|jonathantneal@hotmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @csstools/postcss-font-format-keywords@1.0.1
+ ```
+
+
+ @csstools/postcss-hwb-function@1.0.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@csstools/postcss-hwb-function@1.0.2|
+ >|**Version**|@1.0.2|
+ >|**Repository**|https://github.com/csstools/postcss-plugins|
+ >|**Licenses**|CC0-1.0|
+ >|**Publisher**|Jonathan Neal|
+ >|**Contact**|jonathantneal@hotmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @csstools/postcss-hwb-function@1.0.2
+ ```
+
+
+ @csstools/postcss-ic-unit@1.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@csstools/postcss-ic-unit@1.0.1|
+ >|**Version**|@1.0.1|
+ >|**Repository**|https://github.com/csstools/postcss-plugins|
+ >|**Licenses**|CC0-1.0|
+ >|**Publisher**|Jonathan Neal|
+ >|**Contact**|jonathantneal@hotmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @csstools/postcss-ic-unit@1.0.1
+ ```
+
+
+ @csstools/postcss-is-pseudo-class@2.0.7
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@csstools/postcss-is-pseudo-class@2.0.7|
+ >|**Version**|@2.0.7|
+ >|**Repository**|https://github.com/csstools/postcss-plugins|
+ >|**Licenses**|CC0-1.0|
+ >|**Publisher**|Jonathan Neal|
+ >|**Contact**|jonathantneal@hotmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @csstools/postcss-is-pseudo-class@2.0.7
+ ```
+
+
+ @csstools/postcss-nested-calc@1.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@csstools/postcss-nested-calc@1.0.0|
+ >|**Version**|@1.0.0|
+ >|**Repository**|https://github.com/csstools/postcss-plugins|
+ >|**Licenses**|CC0-1.0|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @csstools/postcss-nested-calc@1.0.0
+ ```
+
+
+ @csstools/postcss-normalize-display-values@1.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@csstools/postcss-normalize-display-values@1.0.1|
+ >|**Version**|@1.0.1|
+ >|**Repository**|https://github.com/csstools/postcss-plugins|
+ >|**Licenses**|CC0-1.0|
+ >|**Publisher**|Jonathan Neal|
+ >|**Contact**|jonathantneal@hotmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @csstools/postcss-normalize-display-values@1.0.1
+ ```
+
+
+ @csstools/postcss-oklab-function@1.1.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@csstools/postcss-oklab-function@1.1.1|
+ >|**Version**|@1.1.1|
+ >|**Repository**|https://github.com/csstools/postcss-plugins|
+ >|**Licenses**|CC0-1.0|
+ >|**Publisher**|Jonathan Neal|
+ >|**Contact**|jonathantneal@hotmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @csstools/postcss-oklab-function@1.1.1
+ ```
+
+
+ @csstools/postcss-progressive-custom-properties@1.3.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@csstools/postcss-progressive-custom-properties@1.3.0|
+ >|**Version**|@1.3.0|
+ >|**Repository**|https://github.com/csstools/postcss-plugins|
+ >|**Licenses**|CC0-1.0|
+ >|**Publisher**|Jonathan Neal|
+ >|**Contact**|jonathantneal@hotmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @csstools/postcss-progressive-custom-properties@1.3.0
+ ```
+
+
+ @csstools/postcss-stepped-value-functions@1.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@csstools/postcss-stepped-value-functions@1.0.1|
+ >|**Version**|@1.0.1|
+ >|**Repository**|https://github.com/csstools/postcss-plugins|
+ >|**Licenses**|CC0-1.0|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @csstools/postcss-stepped-value-functions@1.0.1
+ ```
+
+
+ @csstools/postcss-text-decoration-shorthand@1.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@csstools/postcss-text-decoration-shorthand@1.0.0|
+ >|**Version**|@1.0.0|
+ >|**Repository**|https://github.com/csstools/postcss-plugins|
+ >|**Licenses**|CC0-1.0|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @csstools/postcss-text-decoration-shorthand@1.0.0
+ ```
+
+
+ @csstools/postcss-trigonometric-functions@1.0.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@csstools/postcss-trigonometric-functions@1.0.2|
+ >|**Version**|@1.0.2|
+ >|**Repository**|https://github.com/csstools/postcss-plugins|
+ >|**Licenses**|CC0-1.0|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @csstools/postcss-trigonometric-functions@1.0.2
+ ```
+
+
+ @csstools/postcss-unset-value@1.0.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@csstools/postcss-unset-value@1.0.2|
+ >|**Version**|@1.0.2|
+ >|**Repository**|https://github.com/csstools/postcss-plugins|
+ >|**Licenses**|CC0-1.0|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @csstools/postcss-unset-value@1.0.2
+ ```
+
+
+ @csstools/selector-specificity@2.2.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@csstools/selector-specificity@2.2.0|
+ >|**Version**|@2.2.0|
+ >|**Repository**|https://github.com/csstools/postcss-plugins|
+ >|**Licenses**|CC0-1.0|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @csstools/selector-specificity@2.2.0
+ ```
+
+
+ @emotion/babel-plugin@11.11.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@emotion/babel-plugin@11.11.0|
+ >|**Version**|@11.11.0|
+ >|**Repository**|https://github.com/emotion-js/emotion/tree/main/packages/babel-plugin|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Kye Hohenberger|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @emotion/babel-plugin@11.11.0
+ ```
+
+
+ @emotion/cache@11.11.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@emotion/cache@11.11.0|
+ >|**Version**|@11.11.0|
+ >|**Repository**|https://github.com/emotion-js/emotion/tree/main/packages/cache|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @emotion/cache@11.11.0
+ ```
+
+
+ @emotion/hash@0.9.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@emotion/hash@0.9.1|
+ >|**Version**|@0.9.1|
+ >|**Repository**|https://github.com/emotion-js/emotion/tree/main/packages/hash|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @emotion/hash@0.9.1
+ ```
+
+
+ @emotion/is-prop-valid@1.2.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@emotion/is-prop-valid@1.2.1|
+ >|**Version**|@1.2.1|
+ >|**Repository**|https://github.com/emotion-js/emotion/tree/main/packages/is-prop-valid|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @emotion/is-prop-valid@1.2.1
+ ```
+
+
+ @emotion/memoize@0.8.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@emotion/memoize@0.8.1|
+ >|**Version**|@0.8.1|
+ >|**Repository**|https://github.com/emotion-js/emotion/tree/main/packages/memoize|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @emotion/memoize@0.8.1
+ ```
+
+
+ @emotion/react@11.11.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@emotion/react@11.11.3|
+ >|**Version**|@11.11.3|
+ >|**Repository**|https://github.com/emotion-js/emotion/tree/main/packages/react|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Emotion Contributors|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @emotion/react@11.11.3
+ ```
+
+
+ @emotion/serialize@1.1.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@emotion/serialize@1.1.3|
+ >|**Version**|@1.1.3|
+ >|**Repository**|https://github.com/emotion-js/emotion/tree/main/packages/serialize|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @emotion/serialize@1.1.3
+ ```
+
+
+ @emotion/sheet@1.2.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@emotion/sheet@1.2.2|
+ >|**Version**|@1.2.2|
+ >|**Repository**|https://github.com/emotion-js/emotion/tree/main/packages/sheet|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @emotion/sheet@1.2.2
+ ```
+
+
+ @emotion/styled@11.11.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@emotion/styled@11.11.0|
+ >|**Version**|@11.11.0|
+ >|**Repository**|https://github.com/emotion-js/emotion/tree/main/packages/styled|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @emotion/styled@11.11.0
+ ```
+
+
+ @emotion/unitless@0.8.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@emotion/unitless@0.8.1|
+ >|**Version**|@0.8.1|
+ >|**Repository**|https://github.com/emotion-js/emotion/tree/main/packages/unitless|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @emotion/unitless@0.8.1
+ ```
+
+
+ @emotion/use-insertion-effect-with-fallbacks@1.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@emotion/use-insertion-effect-with-fallbacks@1.0.1|
+ >|**Version**|@1.0.1|
+ >|**Repository**|https://github.com/emotion-js/emotion/tree/main/packages/use-insertion-effect-with-fallbacks|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @emotion/use-insertion-effect-with-fallbacks@1.0.1
+ ```
+
+
+ @emotion/utils@1.2.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@emotion/utils@1.2.1|
+ >|**Version**|@1.2.1|
+ >|**Repository**|https://github.com/emotion-js/emotion/tree/main/packages/utils|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @emotion/utils@1.2.1
+ ```
+
+
+ @emotion/weak-memoize@0.3.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@emotion/weak-memoize@0.3.1|
+ >|**Version**|@0.3.1|
+ >|**Repository**|https://github.com/emotion-js/emotion/tree/main/packages/weak-memoize|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @emotion/weak-memoize@0.3.1
+ ```
+
+
+ @eslint-community/eslint-utils@4.4.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@eslint-community/eslint-utils@4.4.0|
+ >|**Version**|@4.4.0|
+ >|**Repository**|https://github.com/eslint-community/eslint-utils|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Toru Nagashima|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @eslint-community/eslint-utils@4.4.0
+ ```
+
+
+ @eslint-community/regexpp@4.10.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@eslint-community/regexpp@4.10.0|
+ >|**Version**|@4.10.0|
+ >|**Repository**|https://github.com/eslint-community/regexpp|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Toru Nagashima|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @eslint-community/regexpp@4.10.0
+ ```
+
+
+ @eslint/eslintrc@2.1.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@eslint/eslintrc@2.1.4|
+ >|**Version**|@2.1.4|
+ >|**Repository**|https://github.com/eslint/eslintrc|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Nicholas C. Zakas|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @eslint/eslintrc@2.1.4
+ ```
+
+
+ @eslint/js@8.56.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@eslint/js@8.56.0|
+ >|**Version**|@8.56.0|
+ >|**Repository**|https://github.com/eslint/eslint|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @eslint/js@8.56.0
+ ```
+
+
+ @faker-js/faker@8.3.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@faker-js/faker@8.3.1|
+ >|**Version**|@8.3.1|
+ >|**Repository**|https://github.com/faker-js/faker|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @faker-js/faker@8.3.1
+ ```
+
+
+ @humanwhocodes/config-array@0.11.14
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@humanwhocodes/config-array@0.11.14|
+ >|**Version**|@0.11.14|
+ >|**Repository**|https://github.com/humanwhocodes/config-array|
+ >|**Licenses**|Apache-2.0|
+ >|**Publisher**|Nicholas C. Zakas|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @humanwhocodes/config-array@0.11.14
+ ```
+
+
+ @humanwhocodes/module-importer@1.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@humanwhocodes/module-importer@1.0.1|
+ >|**Version**|@1.0.1|
+ >|**Repository**|https://github.com/humanwhocodes/module-importer|
+ >|**Licenses**|Apache-2.0|
+ >|**Publisher**|Nicholas C. Zaks|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @humanwhocodes/module-importer@1.0.1
+ ```
+
+
+ @humanwhocodes/object-schema@2.0.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@humanwhocodes/object-schema@2.0.2|
+ >|**Version**|@2.0.2|
+ >|**Repository**|https://github.com/humanwhocodes/object-schema|
+ >|**Licenses**|BSD-3-Clause|
+ >|**Publisher**|Nicholas C. Zakas|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @humanwhocodes/object-schema@2.0.2
+ ```
+
+
+ @isaacs/cliui@8.0.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@isaacs/cliui@8.0.2|
+ >|**Version**|@8.0.2|
+ >|**Repository**|https://github.com/yargs/cliui|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Ben Coe|
+ >|**Contact**|ben@npmjs.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @isaacs/cliui@8.0.2
+ ```
+
+
+ @istanbuljs/load-nyc-config@1.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@istanbuljs/load-nyc-config@1.1.0|
+ >|**Version**|@1.1.0|
+ >|**Repository**|https://github.com/istanbuljs/load-nyc-config|
+ >|**Licenses**|ISC|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @istanbuljs/load-nyc-config@1.1.0
+ ```
+
+
+ @istanbuljs/schema@0.1.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@istanbuljs/schema@0.1.3|
+ >|**Version**|@0.1.3|
+ >|**Repository**|https://github.com/istanbuljs/schema|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Corey Farrell|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @istanbuljs/schema@0.1.3
+ ```
+
+
+ @jest/console@27.5.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@jest/console@27.5.1|
+ >|**Version**|@27.5.1|
+ >|**Repository**|https://github.com/facebook/jest|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @jest/console@27.5.1
+ ```
+
+
+ @jest/console@28.1.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@jest/console@28.1.3|
+ >|**Version**|@28.1.3|
+ >|**Repository**|https://github.com/facebook/jest|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @jest/console@28.1.3
+ ```
+
+
+ @jest/core@27.5.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@jest/core@27.5.1|
+ >|**Version**|@27.5.1|
+ >|**Repository**|https://github.com/facebook/jest|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @jest/core@27.5.1
+ ```
+
+
+ @jest/environment@27.5.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@jest/environment@27.5.1|
+ >|**Version**|@27.5.1|
+ >|**Repository**|https://github.com/facebook/jest|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @jest/environment@27.5.1
+ ```
+
+
+ @jest/fake-timers@27.5.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@jest/fake-timers@27.5.1|
+ >|**Version**|@27.5.1|
+ >|**Repository**|https://github.com/facebook/jest|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @jest/fake-timers@27.5.1
+ ```
+
+
+ @jest/globals@27.5.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@jest/globals@27.5.1|
+ >|**Version**|@27.5.1|
+ >|**Repository**|https://github.com/facebook/jest|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @jest/globals@27.5.1
+ ```
+
+
+ @jest/reporters@27.5.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@jest/reporters@27.5.1|
+ >|**Version**|@27.5.1|
+ >|**Repository**|https://github.com/facebook/jest|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @jest/reporters@27.5.1
+ ```
+
+
+ @jest/schemas@28.1.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@jest/schemas@28.1.3|
+ >|**Version**|@28.1.3|
+ >|**Repository**|https://github.com/facebook/jest|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @jest/schemas@28.1.3
+ ```
+
+
+ @jest/source-map@27.5.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@jest/source-map@27.5.1|
+ >|**Version**|@27.5.1|
+ >|**Repository**|https://github.com/facebook/jest|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @jest/source-map@27.5.1
+ ```
+
+
+ @jest/test-result@27.5.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@jest/test-result@27.5.1|
+ >|**Version**|@27.5.1|
+ >|**Repository**|https://github.com/facebook/jest|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @jest/test-result@27.5.1
+ ```
+
+
+ @jest/test-result@28.1.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@jest/test-result@28.1.3|
+ >|**Version**|@28.1.3|
+ >|**Repository**|https://github.com/facebook/jest|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @jest/test-result@28.1.3
+ ```
+
+
+ @jest/test-sequencer@27.5.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@jest/test-sequencer@27.5.1|
+ >|**Version**|@27.5.1|
+ >|**Repository**|https://github.com/facebook/jest|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @jest/test-sequencer@27.5.1
+ ```
+
+
+ @jest/transform@27.5.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@jest/transform@27.5.1|
+ >|**Version**|@27.5.1|
+ >|**Repository**|https://github.com/facebook/jest|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @jest/transform@27.5.1
+ ```
+
+
+ @jest/types@27.5.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@jest/types@27.5.1|
+ >|**Version**|@27.5.1|
+ >|**Repository**|https://github.com/facebook/jest|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @jest/types@27.5.1
+ ```
+
+
+ @jest/types@28.1.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@jest/types@28.1.3|
+ >|**Version**|@28.1.3|
+ >|**Repository**|https://github.com/facebook/jest|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @jest/types@28.1.3
+ ```
+
+
+ @jridgewell/gen-mapping@0.3.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@jridgewell/gen-mapping@0.3.3|
+ >|**Version**|@0.3.3|
+ >|**Repository**|https://github.com/jridgewell/gen-mapping|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Justin Ridgewell|
+ >|**Contact**|justin@ridgewell.name|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @jridgewell/gen-mapping@0.3.3
+ ```
+
+
+ @jridgewell/resolve-uri@3.1.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@jridgewell/resolve-uri@3.1.1|
+ >|**Version**|@3.1.1|
+ >|**Repository**|https://github.com/jridgewell/resolve-uri|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Justin Ridgewell|
+ >|**Contact**|justin@ridgewell.name|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @jridgewell/resolve-uri@3.1.1
+ ```
+
+
+ @jridgewell/set-array@1.1.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@jridgewell/set-array@1.1.2|
+ >|**Version**|@1.1.2|
+ >|**Repository**|https://github.com/jridgewell/set-array|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Justin Ridgewell|
+ >|**Contact**|justin@ridgewell.name|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @jridgewell/set-array@1.1.2
+ ```
+
+
+ @jridgewell/source-map@0.3.5
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@jridgewell/source-map@0.3.5|
+ >|**Version**|@0.3.5|
+ >|**Repository**|https://github.com/jridgewell/source-map|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Justin Ridgewell|
+ >|**Contact**|justin@ridgewell.name|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @jridgewell/source-map@0.3.5
+ ```
+
+
+ @jridgewell/sourcemap-codec@1.4.15
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@jridgewell/sourcemap-codec@1.4.15|
+ >|**Version**|@1.4.15|
+ >|**Repository**|https://github.com/jridgewell/sourcemap-codec|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Rich Harris|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @jridgewell/sourcemap-codec@1.4.15
+ ```
+
+
+ @jridgewell/trace-mapping@0.3.21
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@jridgewell/trace-mapping@0.3.21|
+ >|**Version**|@0.3.21|
+ >|**Repository**|https://github.com/jridgewell/trace-mapping|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Justin Ridgewell|
+ >|**Contact**|justin@ridgewell.name|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @jridgewell/trace-mapping@0.3.21
+ ```
+
+
+ @jridgewell/trace-mapping@0.3.9
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@jridgewell/trace-mapping@0.3.9|
+ >|**Version**|@0.3.9|
+ >|**Repository**|https://github.com/jridgewell/trace-mapping|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Justin Ridgewell|
+ >|**Contact**|justin@ridgewell.name|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @jridgewell/trace-mapping@0.3.9
+ ```
+
+
+ @leichtgewicht/ip-codec@2.0.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@leichtgewicht/ip-codec@2.0.4|
+ >|**Version**|@2.0.4|
+ >|**Repository**|https://github.com/martinheidegger/ip-codec|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Martin Heidegger|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @leichtgewicht/ip-codec@2.0.4
+ ```
+
+
+ @nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1|
+ >|**Version**|@55.1.11|
+ >|**Repository**|NA|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1
+ ```
+
+
+ @nodelib/fs.scandir@2.1.5
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@nodelib/fs.scandir@2.1.5|
+ >|**Version**|@.2.1.5|
+ >|**Repository**|https://github.com/nodelib/nodelib/tree/master/packages/fs/fs.scandir|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @nodelib/fs.scandir@2.1.5
+ ```
+
+
+ @nodelib/fs.stat@2.0.5
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@nodelib/fs.stat@2.0.5|
+ >|**Version**|@.2.0.5|
+ >|**Repository**|https://github.com/nodelib/nodelib/tree/master/packages/fs/fs.stat|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @nodelib/fs.stat@2.0.5
+ ```
+
+
+ @nodelib/fs.walk@1.2.8
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@nodelib/fs.walk@1.2.8|
+ >|**Version**|@.1.2.8|
+ >|**Repository**|https://github.com/nodelib/nodelib/tree/master/packages/fs/fs.walk|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @nodelib/fs.walk@1.2.8
+ ```
+
+
+ @phenomnomnominal/tsquery@5.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@phenomnomnominal/tsquery@5.0.1|
+ >|**Version**|@5.0.1|
+ >|**Repository**|https://github.com/phenomnomnominal/tsquery|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Craig Spence|
+ >|**Contact**|craigspence0@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @phenomnomnominal/tsquery@5.0.1
+ ```
+
+
+ @pkgjs/parseargs@0.11.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@pkgjs/parseargs@0.11.0|
+ >|**Version**|@0.11.0|
+ >|**Repository**|https://github.com/pkgjs/parseargs|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @pkgjs/parseargs@0.11.0
+ ```
+
+
+ @pmmmwh/react-refresh-webpack-plugin@0.5.11
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@pmmmwh/react-refresh-webpack-plugin@0.5.11|
+ >|**Version**|@0.5.11|
+ >|**Repository**|https://github.com/pmmmwh/react-refresh-webpack-plugin|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Michael Mok|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @pmmmwh/react-refresh-webpack-plugin@0.5.11
+ ```
+
+
+ @reduxjs/toolkit@1.9.7
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@reduxjs/toolkit@1.9.7|
+ >|**Version**|@1.9.7|
+ >|**Repository**|https://github.com/reduxjs/redux-toolkit|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Mark Erikson|
+ >|**Contact**|mark@isquaredsoftware.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @reduxjs/toolkit@1.9.7
+ ```
+
+
+ @rollup/plugin-babel@5.3.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@rollup/plugin-babel@5.3.1|
+ >|**Version**|@5.3.1|
+ >|**Repository**|https://github.com/rollup/plugins|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Rich Harris|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @rollup/plugin-babel@5.3.1
+ ```
+
+
+ @rollup/plugin-node-resolve@11.2.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@rollup/plugin-node-resolve@11.2.1|
+ >|**Version**|@11.2.1|
+ >|**Repository**|https://github.com/rollup/plugins|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Rich Harris|
+ >|**Contact**|richard.a.harris@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @rollup/plugin-node-resolve@11.2.1
+ ```
+
+
+ @rollup/plugin-replace@2.4.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@rollup/plugin-replace@2.4.2|
+ >|**Version**|@2.4.2|
+ >|**Repository**|https://github.com/rollup/plugins|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Rich Harris|
+ >|**Contact**|richard.a.harris@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @rollup/plugin-replace@2.4.2
+ ```
+
+
+ @rollup/pluginutils@3.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@rollup/pluginutils@3.1.0|
+ >|**Version**|@3.1.0|
+ >|**Repository**|https://github.com/rollup/plugins|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Rich Harris|
+ >|**Contact**|richard.a.harris@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @rollup/pluginutils@3.1.0
+ ```
+
+
+ @rushstack/eslint-patch@1.6.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@rushstack/eslint-patch@1.6.1|
+ >|**Version**|@1.6.1|
+ >|**Repository**|https://github.com/microsoft/rushstack|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @rushstack/eslint-patch@1.6.1
+ ```
+
+
+ @sinclair/typebox@0.24.51
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@sinclair/typebox@0.24.51|
+ >|**Version**|@0.24.51|
+ >|**Repository**|https://github.com/sinclairzx81/typebox|
+ >|**Licenses**|MIT|
+ >|**Publisher**|sinclairzx81|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @sinclair/typebox@0.24.51
+ ```
+
+
+ @sinonjs/commons@1.8.6
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@sinonjs/commons@1.8.6|
+ >|**Version**|@1.8.6|
+ >|**Repository**|https://github.com/sinonjs/commons|
+ >|**Licenses**|BSD-3-Clause|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @sinonjs/commons@1.8.6
+ ```
+
+
+ @sinonjs/fake-timers@8.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@sinonjs/fake-timers@8.1.0|
+ >|**Version**|@8.1.0|
+ >|**Repository**|https://github.com/sinonjs/fake-timers|
+ >|**Licenses**|BSD-3-Clause|
+ >|**Publisher**|Christian Johansen|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @sinonjs/fake-timers@8.1.0
+ ```
+
+
+ @surma/rollup-plugin-off-main-thread@2.2.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@surma/rollup-plugin-off-main-thread@2.2.3|
+ >|**Version**|@2.2.3|
+ >|**Repository**|https://github.com/surma/rollup-plugin-off-main-thread|
+ >|**Licenses**|Apache-2.0|
+ >|**Publisher**|Surma|
+ >|**Contact**|surma@google.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @surma/rollup-plugin-off-main-thread@2.2.3
+ ```
+
+
+ @svgr/babel-plugin-add-jsx-attribute@5.4.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@svgr/babel-plugin-add-jsx-attribute@5.4.0|
+ >|**Version**|@5.4.0|
+ >|**Repository**|https://github.com/gregberge/svgr/tree/master/packages/babel-plugin-add-jsx-attribute|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Greg Bergé|
+ >|**Contact**|berge.greg@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @svgr/babel-plugin-add-jsx-attribute@5.4.0
+ ```
+
+
+ @svgr/babel-plugin-remove-jsx-attribute@5.4.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@svgr/babel-plugin-remove-jsx-attribute@5.4.0|
+ >|**Version**|@5.4.0|
+ >|**Repository**|https://github.com/gregberge/svgr/tree/master/packages/babel-plugin-remove-jsx-attribute|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Greg Bergé|
+ >|**Contact**|berge.greg@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @svgr/babel-plugin-remove-jsx-attribute@5.4.0
+ ```
+
+
+ @svgr/babel-plugin-remove-jsx-empty-expression@5.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@svgr/babel-plugin-remove-jsx-empty-expression@5.0.1|
+ >|**Version**|@5.0.1|
+ >|**Repository**|https://github.com/gregberge/svgr/tree/master/packages/babel-plugin-remove-jsx-empty-expression|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Greg Bergé|
+ >|**Contact**|berge.greg@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @svgr/babel-plugin-remove-jsx-empty-expression@5.0.1
+ ```
+
+
+ @svgr/babel-plugin-replace-jsx-attribute-value@5.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@svgr/babel-plugin-replace-jsx-attribute-value@5.0.1|
+ >|**Version**|@5.0.1|
+ >|**Repository**|https://github.com/gregberge/svgr/tree/master/packages/babel-plugin-replace-jsx-attribute-value|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Greg Bergé|
+ >|**Contact**|berge.greg@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @svgr/babel-plugin-replace-jsx-attribute-value@5.0.1
+ ```
+
+
+ @svgr/babel-plugin-svg-dynamic-title@5.4.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@svgr/babel-plugin-svg-dynamic-title@5.4.0|
+ >|**Version**|@5.4.0|
+ >|**Repository**|https://github.com/gregberge/svgr/tree/master/packages/babel-plugin-svg-dynamic-title|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Greg Bergé|
+ >|**Contact**|berge.greg@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @svgr/babel-plugin-svg-dynamic-title@5.4.0
+ ```
+
+
+ @svgr/babel-plugin-svg-em-dimensions@5.4.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@svgr/babel-plugin-svg-em-dimensions@5.4.0|
+ >|**Version**|@5.4.0|
+ >|**Repository**|https://github.com/gregberge/svgr/tree/master/packages/babel-plugin-svg-em-dimensions|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Greg Bergé|
+ >|**Contact**|berge.greg@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @svgr/babel-plugin-svg-em-dimensions@5.4.0
+ ```
+
+
+ @svgr/babel-plugin-transform-react-native-svg@5.4.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@svgr/babel-plugin-transform-react-native-svg@5.4.0|
+ >|**Version**|@5.4.0|
+ >|**Repository**|https://github.com/gregberge/svgr/tree/master/packages/babel-plugin-transform-react-native-svg|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Greg Bergé|
+ >|**Contact**|berge.greg@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @svgr/babel-plugin-transform-react-native-svg@5.4.0
+ ```
+
+
+ @svgr/babel-plugin-transform-svg-component@5.5.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@svgr/babel-plugin-transform-svg-component@5.5.0|
+ >|**Version**|@5.5.0|
+ >|**Repository**|https://github.com/gregberge/svgr/tree/master/packages/babel-plugin-transform-svg-component|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Greg Bergé|
+ >|**Contact**|berge.greg@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @svgr/babel-plugin-transform-svg-component@5.5.0
+ ```
+
+
+ @svgr/babel-preset@5.5.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@svgr/babel-preset@5.5.0|
+ >|**Version**|@5.5.0|
+ >|**Repository**|https://github.com/gregberge/svgr/tree/master/packages/babel-preset|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Greg Bergé|
+ >|**Contact**|berge.greg@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @svgr/babel-preset@5.5.0
+ ```
+
+
+ @svgr/core@5.5.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@svgr/core@5.5.0|
+ >|**Version**|@5.5.0|
+ >|**Repository**|https://github.com/gregberge/svgr/tree/master/packages/core|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Greg Bergé|
+ >|**Contact**|berge.greg@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @svgr/core@5.5.0
+ ```
+
+
+ @svgr/hast-util-to-babel-ast@5.5.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@svgr/hast-util-to-babel-ast@5.5.0|
+ >|**Version**|@5.5.0|
+ >|**Repository**|https://github.com/gregberge/svgr/tree/master/packages/hast-util-to-babel-ast|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Greg Bergé|
+ >|**Contact**|berge.greg@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @svgr/hast-util-to-babel-ast@5.5.0
+ ```
+
+
+ @svgr/plugin-jsx@5.5.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@svgr/plugin-jsx@5.5.0|
+ >|**Version**|@5.5.0|
+ >|**Repository**|https://github.com/gregberge/svgr/tree/master/packages/plugin-jsx|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Greg Bergé|
+ >|**Contact**|berge.greg@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @svgr/plugin-jsx@5.5.0
+ ```
+
+
+ @svgr/plugin-svgo@5.5.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@svgr/plugin-svgo@5.5.0|
+ >|**Version**|@5.5.0|
+ >|**Repository**|https://github.com/gregberge/svgr/tree/master/packages/plugin-svgo|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Greg Bergé|
+ >|**Contact**|berge.greg@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @svgr/plugin-svgo@5.5.0
+ ```
+
+
+ @svgr/webpack@5.5.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@svgr/webpack@5.5.0|
+ >|**Version**|@5.5.0|
+ >|**Repository**|https://github.com/gregberge/svgr/tree/master/packages/webpack|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Greg Bergé|
+ >|**Contact**|berge.greg@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @svgr/webpack@5.5.0
+ ```
+
+
+ @tootallnate/once@1.1.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@tootallnate/once@1.1.2|
+ >|**Version**|@1.1.2|
+ >|**Repository**|https://github.com/TooTallNate/once|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Nathan Rajlich|
+ >|**Contact**|nathan@tootallnate.net|
+ >|**Homepage**|http://n8.io/|
+
+ #### Use this package in your project
+ ```bash
+ npm i @tootallnate/once@1.1.2
+ ```
+
+
+ @trysound/sax@0.2.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@trysound/sax@0.2.0|
+ >|**Version**|@0.2.0|
+ >|**Repository**|https://github.com/svg/sax|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Isaac Z. Schlueter|
+ >|**Contact**|i@izs.me|
+ >|**Homepage**|http://blog.izs.me/|
+
+ #### Use this package in your project
+ ```bash
+ npm i @trysound/sax@0.2.0
+ ```
+
+
+ @tsconfig/node10@1.0.9
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@tsconfig/node10@1.0.9|
+ >|**Version**|@101.0.9|
+ >|**Repository**|https://github.com/tsconfig/bases|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @tsconfig/node10@1.0.9
+ ```
+
+
+ @tsconfig/node12@1.0.11
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@tsconfig/node12@1.0.11|
+ >|**Version**|@121.0.11|
+ >|**Repository**|https://github.com/tsconfig/bases|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @tsconfig/node12@1.0.11
+ ```
+
+
+ @tsconfig/node14@1.0.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@tsconfig/node14@1.0.3|
+ >|**Version**|@141.0.3|
+ >|**Repository**|https://github.com/tsconfig/bases|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @tsconfig/node14@1.0.3
+ ```
+
+
+ @tsconfig/node16@1.0.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@tsconfig/node16@1.0.4|
+ >|**Version**|@161.0.4|
+ >|**Repository**|https://github.com/tsconfig/bases|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @tsconfig/node16@1.0.4
+ ```
+
+
+ @types/babel__core@7.20.5
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@types/babel__core@7.20.5|
+ >|**Version**|@7.20.5|
+ >|**Repository**|https://github.com/DefinitelyTyped/DefinitelyTyped|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @types/babel__core@7.20.5
+ ```
+
+
+ @types/babel__generator@7.6.8
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@types/babel__generator@7.6.8|
+ >|**Version**|@7.6.8|
+ >|**Repository**|https://github.com/DefinitelyTyped/DefinitelyTyped|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @types/babel__generator@7.6.8
+ ```
+
+
+ @types/babel__template@7.4.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@types/babel__template@7.4.4|
+ >|**Version**|@7.4.4|
+ >|**Repository**|https://github.com/DefinitelyTyped/DefinitelyTyped|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @types/babel__template@7.4.4
+ ```
+
+
+ @types/babel__traverse@7.20.5
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@types/babel__traverse@7.20.5|
+ >|**Version**|@7.20.5|
+ >|**Repository**|https://github.com/DefinitelyTyped/DefinitelyTyped|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @types/babel__traverse@7.20.5
+ ```
+
+
+ @types/body-parser@1.19.5
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@types/body-parser@1.19.5|
+ >|**Version**|@1.19.5|
+ >|**Repository**|https://github.com/DefinitelyTyped/DefinitelyTyped|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @types/body-parser@1.19.5
+ ```
+
+
+ @types/bonjour@3.5.13
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@types/bonjour@3.5.13|
+ >|**Version**|@3.5.13|
+ >|**Repository**|https://github.com/DefinitelyTyped/DefinitelyTyped|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @types/bonjour@3.5.13
+ ```
+
+
+ @types/connect-history-api-fallback@1.5.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@types/connect-history-api-fallback@1.5.4|
+ >|**Version**|@1.5.4|
+ >|**Repository**|https://github.com/DefinitelyTyped/DefinitelyTyped|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @types/connect-history-api-fallback@1.5.4
+ ```
+
+
+ @types/connect@3.4.38
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@types/connect@3.4.38|
+ >|**Version**|@3.4.38|
+ >|**Repository**|https://github.com/DefinitelyTyped/DefinitelyTyped|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @types/connect@3.4.38
+ ```
+
+
+ @types/eslint-scope@3.7.7
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@types/eslint-scope@3.7.7|
+ >|**Version**|@3.7.7|
+ >|**Repository**|https://github.com/DefinitelyTyped/DefinitelyTyped|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @types/eslint-scope@3.7.7
+ ```
+
+
+ @types/eslint@8.56.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@types/eslint@8.56.2|
+ >|**Version**|@8.56.2|
+ >|**Repository**|https://github.com/DefinitelyTyped/DefinitelyTyped|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @types/eslint@8.56.2
+ ```
+
+
+ @types/estree@0.0.39
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@types/estree@0.0.39|
+ >|**Version**|@0.0.39|
+ >|**Repository**|https://github.com/DefinitelyTyped/DefinitelyTyped|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @types/estree@0.0.39
+ ```
+
+
+ @types/estree@1.0.5
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@types/estree@1.0.5|
+ >|**Version**|@1.0.5|
+ >|**Repository**|https://github.com/DefinitelyTyped/DefinitelyTyped|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @types/estree@1.0.5
+ ```
+
+
+ @types/express-serve-static-core@4.17.41
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@types/express-serve-static-core@4.17.41|
+ >|**Version**|@4.17.41|
+ >|**Repository**|https://github.com/DefinitelyTyped/DefinitelyTyped|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @types/express-serve-static-core@4.17.41
+ ```
+
+
+ @types/express@4.17.21
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@types/express@4.17.21|
+ >|**Version**|@4.17.21|
+ >|**Repository**|https://github.com/DefinitelyTyped/DefinitelyTyped|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @types/express@4.17.21
+ ```
+
+
+ @types/graceful-fs@4.1.9
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@types/graceful-fs@4.1.9|
+ >|**Version**|@4.1.9|
+ >|**Repository**|https://github.com/DefinitelyTyped/DefinitelyTyped|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @types/graceful-fs@4.1.9
+ ```
+
+
+ @types/hoist-non-react-statics@3.3.5
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@types/hoist-non-react-statics@3.3.5|
+ >|**Version**|@3.3.5|
+ >|**Repository**|https://github.com/DefinitelyTyped/DefinitelyTyped|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @types/hoist-non-react-statics@3.3.5
+ ```
+
+
+ @types/html-minifier-terser@6.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@types/html-minifier-terser@6.1.0|
+ >|**Version**|@6.1.0|
+ >|**Repository**|https://github.com/DefinitelyTyped/DefinitelyTyped|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @types/html-minifier-terser@6.1.0
+ ```
+
+
+ @types/http-errors@2.0.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@types/http-errors@2.0.4|
+ >|**Version**|@2.0.4|
+ >|**Repository**|https://github.com/DefinitelyTyped/DefinitelyTyped|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @types/http-errors@2.0.4
+ ```
+
+
+ @types/http-proxy@1.17.14
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@types/http-proxy@1.17.14|
+ >|**Version**|@1.17.14|
+ >|**Repository**|https://github.com/DefinitelyTyped/DefinitelyTyped|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @types/http-proxy@1.17.14
+ ```
+
+
+ @types/istanbul-lib-coverage@2.0.6
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@types/istanbul-lib-coverage@2.0.6|
+ >|**Version**|@2.0.6|
+ >|**Repository**|https://github.com/DefinitelyTyped/DefinitelyTyped|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @types/istanbul-lib-coverage@2.0.6
+ ```
+
+
+ @types/istanbul-lib-report@3.0.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@types/istanbul-lib-report@3.0.3|
+ >|**Version**|@3.0.3|
+ >|**Repository**|https://github.com/DefinitelyTyped/DefinitelyTyped|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @types/istanbul-lib-report@3.0.3
+ ```
+
+
+ @types/istanbul-reports@3.0.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@types/istanbul-reports@3.0.4|
+ >|**Version**|@3.0.4|
+ >|**Repository**|https://github.com/DefinitelyTyped/DefinitelyTyped|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @types/istanbul-reports@3.0.4
+ ```
+
+
+ @types/json-schema@7.0.15
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@types/json-schema@7.0.15|
+ >|**Version**|@7.0.15|
+ >|**Repository**|https://github.com/DefinitelyTyped/DefinitelyTyped|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @types/json-schema@7.0.15
+ ```
+
+
+ @types/json5@0.0.29
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@types/json5@0.0.29|
+ >|**Version**|@50.0.29|
+ >|**Repository**|https://github.com/DefinitelyTyped/DefinitelyTyped|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jason Swearingen|
+ >|**Contact**|https://jasonswearingen.github.io|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @types/json5@0.0.29
+ ```
+
+
+ @types/lodash@4.14.202
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@types/lodash@4.14.202|
+ >|**Version**|@4.14.202|
+ >|**Repository**|https://github.com/DefinitelyTyped/DefinitelyTyped|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @types/lodash@4.14.202
+ ```
+
+
+ @types/mime@1.3.5
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@types/mime@1.3.5|
+ >|**Version**|@1.3.5|
+ >|**Repository**|https://github.com/DefinitelyTyped/DefinitelyTyped|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @types/mime@1.3.5
+ ```
+
+
+ @types/minimist@1.2.5
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@types/minimist@1.2.5|
+ >|**Version**|@1.2.5|
+ >|**Repository**|https://github.com/DefinitelyTyped/DefinitelyTyped|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @types/minimist@1.2.5
+ ```
+
+
+ @types/node-forge@1.3.11
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@types/node-forge@1.3.11|
+ >|**Version**|@1.3.11|
+ >|**Repository**|https://github.com/DefinitelyTyped/DefinitelyTyped|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @types/node-forge@1.3.11
+ ```
+
+
+ @types/node@20.5.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@types/node@20.5.1|
+ >|**Version**|@20.5.1|
+ >|**Repository**|https://github.com/DefinitelyTyped/DefinitelyTyped|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @types/node@20.5.1
+ ```
+
+
+ @types/normalize-package-data@2.4.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@types/normalize-package-data@2.4.4|
+ >|**Version**|@2.4.4|
+ >|**Repository**|https://github.com/DefinitelyTyped/DefinitelyTyped|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @types/normalize-package-data@2.4.4
+ ```
+
+
+ @types/parse-json@4.0.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@types/parse-json@4.0.2|
+ >|**Version**|@4.0.2|
+ >|**Repository**|https://github.com/DefinitelyTyped/DefinitelyTyped|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @types/parse-json@4.0.2
+ ```
+
+
+ @types/prettier@2.7.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@types/prettier@2.7.3|
+ >|**Version**|@2.7.3|
+ >|**Repository**|https://github.com/DefinitelyTyped/DefinitelyTyped|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @types/prettier@2.7.3
+ ```
+
+
+ @types/prop-types@15.7.11
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@types/prop-types@15.7.11|
+ >|**Version**|@15.7.11|
+ >|**Repository**|https://github.com/DefinitelyTyped/DefinitelyTyped|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @types/prop-types@15.7.11
+ ```
+
+
+ @types/q@1.5.8
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@types/q@1.5.8|
+ >|**Version**|@1.5.8|
+ >|**Repository**|https://github.com/DefinitelyTyped/DefinitelyTyped|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @types/q@1.5.8
+ ```
+
+
+ @types/qs@6.9.11
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@types/qs@6.9.11|
+ >|**Version**|@6.9.11|
+ >|**Repository**|https://github.com/DefinitelyTyped/DefinitelyTyped|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @types/qs@6.9.11
+ ```
+
+
+ @types/range-parser@1.2.7
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@types/range-parser@1.2.7|
+ >|**Version**|@1.2.7|
+ >|**Repository**|https://github.com/DefinitelyTyped/DefinitelyTyped|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @types/range-parser@1.2.7
+ ```
+
+
+ @types/react@18.2.48
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@types/react@18.2.48|
+ >|**Version**|@18.2.48|
+ >|**Repository**|https://github.com/DefinitelyTyped/DefinitelyTyped|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @types/react@18.2.48
+ ```
+
+
+ @types/resolve@1.17.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@types/resolve@1.17.1|
+ >|**Version**|@1.17.1|
+ >|**Repository**|https://github.com/DefinitelyTyped/DefinitelyTyped|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @types/resolve@1.17.1
+ ```
+
+
+ @types/retry@0.12.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@types/retry@0.12.0|
+ >|**Version**|@0.12.0|
+ >|**Repository**|https://github.com/DefinitelyTyped/DefinitelyTyped|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @types/retry@0.12.0
+ ```
+
+
+ @types/scheduler@0.16.8
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@types/scheduler@0.16.8|
+ >|**Version**|@0.16.8|
+ >|**Repository**|https://github.com/DefinitelyTyped/DefinitelyTyped|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @types/scheduler@0.16.8
+ ```
+
+
+ @types/semver@7.5.6
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@types/semver@7.5.6|
+ >|**Version**|@7.5.6|
+ >|**Repository**|https://github.com/DefinitelyTyped/DefinitelyTyped|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @types/semver@7.5.6
+ ```
+
+
+ @types/send@0.17.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@types/send@0.17.4|
+ >|**Version**|@0.17.4|
+ >|**Repository**|https://github.com/DefinitelyTyped/DefinitelyTyped|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @types/send@0.17.4
+ ```
+
+
+ @types/serve-index@1.9.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@types/serve-index@1.9.4|
+ >|**Version**|@1.9.4|
+ >|**Repository**|https://github.com/DefinitelyTyped/DefinitelyTyped|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @types/serve-index@1.9.4
+ ```
+
+
+ @types/serve-static@1.15.5
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@types/serve-static@1.15.5|
+ >|**Version**|@1.15.5|
+ >|**Repository**|https://github.com/DefinitelyTyped/DefinitelyTyped|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @types/serve-static@1.15.5
+ ```
+
+
+ @types/sockjs@0.3.36
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@types/sockjs@0.3.36|
+ >|**Version**|@0.3.36|
+ >|**Repository**|https://github.com/DefinitelyTyped/DefinitelyTyped|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @types/sockjs@0.3.36
+ ```
+
+
+ @types/stack-utils@2.0.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@types/stack-utils@2.0.3|
+ >|**Version**|@2.0.3|
+ >|**Repository**|https://github.com/DefinitelyTyped/DefinitelyTyped|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @types/stack-utils@2.0.3
+ ```
+
+
+ @types/trusted-types@2.0.7
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@types/trusted-types@2.0.7|
+ >|**Version**|@2.0.7|
+ >|**Repository**|https://github.com/DefinitelyTyped/DefinitelyTyped|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @types/trusted-types@2.0.7
+ ```
+
+
+ @types/use-sync-external-store@0.0.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@types/use-sync-external-store@0.0.3|
+ >|**Version**|@0.0.3|
+ >|**Repository**|https://github.com/DefinitelyTyped/DefinitelyTyped|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @types/use-sync-external-store@0.0.3
+ ```
+
+
+ @types/uuid@8.3.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@types/uuid@8.3.4|
+ >|**Version**|@8.3.4|
+ >|**Repository**|https://github.com/DefinitelyTyped/DefinitelyTyped|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @types/uuid@8.3.4
+ ```
+
+
+ @types/ws@8.5.10
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@types/ws@8.5.10|
+ >|**Version**|@8.5.10|
+ >|**Repository**|https://github.com/DefinitelyTyped/DefinitelyTyped|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @types/ws@8.5.10
+ ```
+
+
+ @types/yargs-parser@21.0.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@types/yargs-parser@21.0.3|
+ >|**Version**|@21.0.3|
+ >|**Repository**|https://github.com/DefinitelyTyped/DefinitelyTyped|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @types/yargs-parser@21.0.3
+ ```
+
+
+ @types/yargs@16.0.9
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@types/yargs@16.0.9|
+ >|**Version**|@16.0.9|
+ >|**Repository**|https://github.com/DefinitelyTyped/DefinitelyTyped|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @types/yargs@16.0.9
+ ```
+
+
+ @types/yargs@17.0.32
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@types/yargs@17.0.32|
+ >|**Version**|@17.0.32|
+ >|**Repository**|https://github.com/DefinitelyTyped/DefinitelyTyped|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @types/yargs@17.0.32
+ ```
+
+
+ @typescript-eslint/eslint-plugin@5.62.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@typescript-eslint/eslint-plugin@5.62.0|
+ >|**Version**|@5.62.0|
+ >|**Repository**|https://github.com/typescript-eslint/typescript-eslint|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @typescript-eslint/eslint-plugin@5.62.0
+ ```
+
+
+ @typescript-eslint/experimental-utils@5.62.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@typescript-eslint/experimental-utils@5.62.0|
+ >|**Version**|@5.62.0|
+ >|**Repository**|https://github.com/typescript-eslint/typescript-eslint|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @typescript-eslint/experimental-utils@5.62.0
+ ```
+
+
+ @typescript-eslint/parser@5.62.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@typescript-eslint/parser@5.62.0|
+ >|**Version**|@5.62.0|
+ >|**Repository**|https://github.com/typescript-eslint/typescript-eslint|
+ >|**Licenses**|BSD-2-Clause|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @typescript-eslint/parser@5.62.0
+ ```
+
+
+ @typescript-eslint/scope-manager@5.62.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@typescript-eslint/scope-manager@5.62.0|
+ >|**Version**|@5.62.0|
+ >|**Repository**|https://github.com/typescript-eslint/typescript-eslint|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @typescript-eslint/scope-manager@5.62.0
+ ```
+
+
+ @typescript-eslint/type-utils@5.62.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@typescript-eslint/type-utils@5.62.0|
+ >|**Version**|@5.62.0|
+ >|**Repository**|https://github.com/typescript-eslint/typescript-eslint|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @typescript-eslint/type-utils@5.62.0
+ ```
+
+
+ @typescript-eslint/types@5.62.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@typescript-eslint/types@5.62.0|
+ >|**Version**|@5.62.0|
+ >|**Repository**|https://github.com/typescript-eslint/typescript-eslint|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @typescript-eslint/types@5.62.0
+ ```
+
+
+ @typescript-eslint/typescript-estree@5.62.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@typescript-eslint/typescript-estree@5.62.0|
+ >|**Version**|@5.62.0|
+ >|**Repository**|https://github.com/typescript-eslint/typescript-eslint|
+ >|**Licenses**|BSD-2-Clause|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @typescript-eslint/typescript-estree@5.62.0
+ ```
+
+
+ @typescript-eslint/utils@5.62.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@typescript-eslint/utils@5.62.0|
+ >|**Version**|@5.62.0|
+ >|**Repository**|https://github.com/typescript-eslint/typescript-eslint|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @typescript-eslint/utils@5.62.0
+ ```
+
+
+ @typescript-eslint/visitor-keys@5.62.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@typescript-eslint/visitor-keys@5.62.0|
+ >|**Version**|@5.62.0|
+ >|**Repository**|https://github.com/typescript-eslint/typescript-eslint|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @typescript-eslint/visitor-keys@5.62.0
+ ```
+
+
+ @ungap/structured-clone@1.2.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@ungap/structured-clone@1.2.0|
+ >|**Version**|@1.2.0|
+ >|**Repository**|https://github.com/ungap/structured-clone|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Andrea Giammarchi|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @ungap/structured-clone@1.2.0
+ ```
+
+
+ @webassemblyjs/ast@1.11.6
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@webassemblyjs/ast@1.11.6|
+ >|**Version**|@1.11.6|
+ >|**Repository**|https://github.com/xtuc/webassemblyjs|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sven Sauleau|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @webassemblyjs/ast@1.11.6
+ ```
+
+
+ @webassemblyjs/floating-point-hex-parser@1.11.6
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@webassemblyjs/floating-point-hex-parser@1.11.6|
+ >|**Version**|@1.11.6|
+ >|**Repository**|https://github.com/xtuc/webassemblyjs|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Mauro Bringolf|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @webassemblyjs/floating-point-hex-parser@1.11.6
+ ```
+
+
+ @webassemblyjs/helper-api-error@1.11.6
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@webassemblyjs/helper-api-error@1.11.6|
+ >|**Version**|@1.11.6|
+ >|**Repository**|https://github.com/xtuc/webassemblyjs|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sven Sauleau|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @webassemblyjs/helper-api-error@1.11.6
+ ```
+
+
+ @webassemblyjs/helper-buffer@1.11.6
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@webassemblyjs/helper-buffer@1.11.6|
+ >|**Version**|@1.11.6|
+ >|**Repository**|https://github.com/xtuc/webassemblyjs|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sven Sauleau|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @webassemblyjs/helper-buffer@1.11.6
+ ```
+
+
+ @webassemblyjs/helper-numbers@1.11.6
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@webassemblyjs/helper-numbers@1.11.6|
+ >|**Version**|@1.11.6|
+ >|**Repository**|https://github.com/xtuc/webassemblyjs|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sven Sauleau|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @webassemblyjs/helper-numbers@1.11.6
+ ```
+
+
+ @webassemblyjs/helper-wasm-bytecode@1.11.6
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@webassemblyjs/helper-wasm-bytecode@1.11.6|
+ >|**Version**|@1.11.6|
+ >|**Repository**|https://github.com/xtuc/webassemblyjs|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sven Sauleau|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @webassemblyjs/helper-wasm-bytecode@1.11.6
+ ```
+
+
+ @webassemblyjs/helper-wasm-section@1.11.6
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@webassemblyjs/helper-wasm-section@1.11.6|
+ >|**Version**|@1.11.6|
+ >|**Repository**|https://github.com/xtuc/webassemblyjs|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sven Sauleau|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @webassemblyjs/helper-wasm-section@1.11.6
+ ```
+
+
+ @webassemblyjs/ieee754@1.11.6
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@webassemblyjs/ieee754@1.11.6|
+ >|**Version**|@7541.11.6|
+ >|**Repository**|https://github.com/xtuc/webassemblyjs|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @webassemblyjs/ieee754@1.11.6
+ ```
+
+
+ @webassemblyjs/leb128@1.11.6
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@webassemblyjs/leb128@1.11.6|
+ >|**Version**|@1281.11.6|
+ >|**Repository**|https://github.com/xtuc/webassemblyjs|
+ >|**Licenses**|Apache-2.0|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @webassemblyjs/leb128@1.11.6
+ ```
+
+
+ @webassemblyjs/utf8@1.11.6
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@webassemblyjs/utf8@1.11.6|
+ >|**Version**|@81.11.6|
+ >|**Repository**|https://github.com/xtuc/webassemblyjs|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sven Sauleau|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @webassemblyjs/utf8@1.11.6
+ ```
+
+
+ @webassemblyjs/wasm-edit@1.11.6
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@webassemblyjs/wasm-edit@1.11.6|
+ >|**Version**|@1.11.6|
+ >|**Repository**|https://github.com/xtuc/webassemblyjs|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sven Sauleau|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @webassemblyjs/wasm-edit@1.11.6
+ ```
+
+
+ @webassemblyjs/wasm-gen@1.11.6
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@webassemblyjs/wasm-gen@1.11.6|
+ >|**Version**|@1.11.6|
+ >|**Repository**|https://github.com/xtuc/webassemblyjs|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sven Sauleau|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @webassemblyjs/wasm-gen@1.11.6
+ ```
+
+
+ @webassemblyjs/wasm-opt@1.11.6
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@webassemblyjs/wasm-opt@1.11.6|
+ >|**Version**|@1.11.6|
+ >|**Repository**|https://github.com/xtuc/webassemblyjs|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sven Sauleau|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @webassemblyjs/wasm-opt@1.11.6
+ ```
+
+
+ @webassemblyjs/wasm-parser@1.11.6
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@webassemblyjs/wasm-parser@1.11.6|
+ >|**Version**|@1.11.6|
+ >|**Repository**|https://github.com/xtuc/webassemblyjs|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sven Sauleau|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @webassemblyjs/wasm-parser@1.11.6
+ ```
+
+
+ @webassemblyjs/wast-printer@1.11.6
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@webassemblyjs/wast-printer@1.11.6|
+ >|**Version**|@1.11.6|
+ >|**Repository**|https://github.com/xtuc/webassemblyjs|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sven Sauleau|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @webassemblyjs/wast-printer@1.11.6
+ ```
+
+
+ @wrappid/core@0.0.399
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@wrappid/core@0.0.399|
+ >|**Version**|@0.0.399|
+ >|**Repository**|https://github.com/wrappid/core|
+ >|**Licenses**|UNKNOWN|
+ >|**Publisher**|wrappid|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @wrappid/core@0.0.399
+ ```
+
+
+ @wrappid/styles@0.0.115
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@wrappid/styles@0.0.115|
+ >|**Version**|@0.0.115|
+ >|**Repository**|https://github.com/wrappid/styles|
+ >|**Licenses**|UNKNOWN|
+ >|**Publisher**|wrappid|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @wrappid/styles@0.0.115
+ ```
+
+
+ @xtuc/ieee754@1.2.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@xtuc/ieee754@1.2.0|
+ >|**Version**|@7541.2.0|
+ >|**Repository**|https://github.com/feross/ieee754|
+ >|**Licenses**|BSD-3-Clause|
+ >|**Publisher**|Feross Aboukhadijeh|
+ >|**Contact**|feross@feross.org|
+ >|**Homepage**|http://feross.org|
+
+ #### Use this package in your project
+ ```bash
+ npm i @xtuc/ieee754@1.2.0
+ ```
+
+
+ @xtuc/long@4.2.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|@xtuc/long@4.2.2|
+ >|**Version**|@4.2.2|
+ >|**Repository**|https://github.com/dcodeIO/long.js|
+ >|**Licenses**|Apache-2.0|
+ >|**Publisher**|Daniel Wirtz|
+ >|**Contact**|dcode@dcode.io|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i @xtuc/long@4.2.2
+ ```
+
+
+ JSONStream@1.3.5
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|JSONStream@1.3.5|
+ >|**Version**|@1.3.5|
+ >|**Repository**|https://github.com/dominictarr/JSONStream|
+ >|**Licenses**|(MIT OR Apache-2.0)|
+ >|**Publisher**|Dominic Tarr|
+ >|**Contact**|dominic.tarr@gmail.com|
+ >|**Homepage**|http://bit.ly/dominictarr|
+
+ #### Use this package in your project
+ ```bash
+ npm i JSONStream@1.3.5
+ ```
+
+
+ abab@2.0.6
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|abab@2.0.6|
+ >|**Version**|@2.0.6|
+ >|**Repository**|https://github.com/jsdom/abab|
+ >|**Licenses**|BSD-3-Clause|
+ >|**Publisher**|Jeff Carpenter|
+ >|**Contact**|gcarpenterv@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i abab@2.0.6
+ ```
+
+
+ abbrev@1.1.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|abbrev@1.1.1|
+ >|**Version**|@1.1.1|
+ >|**Repository**|https://github.com/isaacs/abbrev-js|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Isaac Z. Schlueter|
+ >|**Contact**|i@izs.me|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i abbrev@1.1.1
+ ```
+
+
+ accepts@1.3.8
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|accepts@1.3.8|
+ >|**Version**|@1.3.8|
+ >|**Repository**|https://github.com/jshttp/accepts|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i accepts@1.3.8
+ ```
+
+
+ acorn-globals@6.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|acorn-globals@6.0.0|
+ >|**Version**|@6.0.0|
+ >|**Repository**|https://github.com/ForbesLindesay/acorn-globals|
+ >|**Licenses**|MIT|
+ >|**Publisher**|ForbesLindesay|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i acorn-globals@6.0.0
+ ```
+
+
+ acorn-import-assertions@1.9.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|acorn-import-assertions@1.9.0|
+ >|**Version**|@1.9.0|
+ >|**Repository**|https://github.com/xtuc/acorn-import-assertions|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sven Sauleau|
+ >|**Contact**|sven@sauleau.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i acorn-import-assertions@1.9.0
+ ```
+
+
+ acorn-jsx@5.3.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|acorn-jsx@5.3.2|
+ >|**Version**|@5.3.2|
+ >|**Repository**|https://github.com/acornjs/acorn-jsx|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i acorn-jsx@5.3.2
+ ```
+
+
+ acorn-walk@7.2.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|acorn-walk@7.2.0|
+ >|**Version**|@7.2.0|
+ >|**Repository**|https://github.com/acornjs/acorn|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i acorn-walk@7.2.0
+ ```
+
+
+ acorn-walk@8.3.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|acorn-walk@8.3.2|
+ >|**Version**|@8.3.2|
+ >|**Repository**|https://github.com/acornjs/acorn|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i acorn-walk@8.3.2
+ ```
+
+
+ acorn@7.4.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|acorn@7.4.1|
+ >|**Version**|@7.4.1|
+ >|**Repository**|https://github.com/acornjs/acorn|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i acorn@7.4.1
+ ```
+
+
+ acorn@8.11.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|acorn@8.11.3|
+ >|**Version**|@8.11.3|
+ >|**Repository**|https://github.com/acornjs/acorn|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i acorn@8.11.3
+ ```
+
+
+ address@1.2.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|address@1.2.2|
+ >|**Version**|@1.2.2|
+ >|**Repository**|https://github.com/node-modules/address|
+ >|**Licenses**|MIT|
+ >|**Publisher**|fengmk2|
+ >|**Contact**|fengmk2@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i address@1.2.2
+ ```
+
+
+ adjust-sourcemap-loader@4.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|adjust-sourcemap-loader@4.0.0|
+ >|**Version**|@4.0.0|
+ >|**Repository**|https://github.com/bholloway/adjust-sourcemap-loader|
+ >|**Licenses**|MIT|
+ >|**Publisher**|bholloway|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i adjust-sourcemap-loader@4.0.0
+ ```
+
+
+ agent-base@6.0.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|agent-base@6.0.2|
+ >|**Version**|@6.0.2|
+ >|**Repository**|https://github.com/TooTallNate/node-agent-base|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Nathan Rajlich|
+ >|**Contact**|nathan@tootallnate.net|
+ >|**Homepage**|http://n8.io/|
+
+ #### Use this package in your project
+ ```bash
+ npm i agent-base@6.0.2
+ ```
+
+
+ ajv-formats@2.1.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|ajv-formats@2.1.1|
+ >|**Version**|@2.1.1|
+ >|**Repository**|https://github.com/ajv-validator/ajv-formats|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Evgeny Poberezkin|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i ajv-formats@2.1.1
+ ```
+
+
+ ajv-keywords@3.5.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|ajv-keywords@3.5.2|
+ >|**Version**|@3.5.2|
+ >|**Repository**|https://github.com/epoberezkin/ajv-keywords|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Evgeny Poberezkin|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i ajv-keywords@3.5.2
+ ```
+
+
+ ajv-keywords@5.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|ajv-keywords@5.1.0|
+ >|**Version**|@5.1.0|
+ >|**Repository**|https://github.com/epoberezkin/ajv-keywords|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Evgeny Poberezkin|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i ajv-keywords@5.1.0
+ ```
+
+
+ ajv@6.12.6
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|ajv@6.12.6|
+ >|**Version**|@6.12.6|
+ >|**Repository**|https://github.com/ajv-validator/ajv|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Evgeny Poberezkin|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i ajv@6.12.6
+ ```
+
+
+ ajv@8.12.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|ajv@8.12.0|
+ >|**Version**|@8.12.0|
+ >|**Repository**|https://github.com/ajv-validator/ajv|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Evgeny Poberezkin|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i ajv@8.12.0
+ ```
+
+
+ ansi-escapes@3.2.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|ansi-escapes@3.2.0|
+ >|**Version**|@3.2.0|
+ >|**Repository**|https://github.com/sindresorhus/ansi-escapes|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i ansi-escapes@3.2.0
+ ```
+
+
+ ansi-escapes@4.3.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|ansi-escapes@4.3.2|
+ >|**Version**|@4.3.2|
+ >|**Repository**|https://github.com/sindresorhus/ansi-escapes|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|https://sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i ansi-escapes@4.3.2
+ ```
+
+
+ ansi-html-community@0.0.8
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|ansi-html-community@0.0.8|
+ >|**Version**|@0.0.8|
+ >|**Repository**|https://github.com/mahdyar/ansi-html-community|
+ >|**Licenses**|Apache-2.0|
+ >|**Publisher**|mahdyar|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i ansi-html-community@0.0.8
+ ```
+
+
+ ansi-regex@3.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|ansi-regex@3.0.1|
+ >|**Version**|@3.0.1|
+ >|**Repository**|https://github.com/chalk/ansi-regex|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i ansi-regex@3.0.1
+ ```
+
+
+ ansi-regex@4.1.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|ansi-regex@4.1.1|
+ >|**Version**|@4.1.1|
+ >|**Repository**|https://github.com/chalk/ansi-regex|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i ansi-regex@4.1.1
+ ```
+
+
+ ansi-regex@5.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|ansi-regex@5.0.1|
+ >|**Version**|@5.0.1|
+ >|**Repository**|https://github.com/chalk/ansi-regex|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i ansi-regex@5.0.1
+ ```
+
+
+ ansi-regex@6.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|ansi-regex@6.0.1|
+ >|**Version**|@6.0.1|
+ >|**Repository**|https://github.com/chalk/ansi-regex|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|https://sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i ansi-regex@6.0.1
+ ```
+
+
+ ansi-styles@3.2.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|ansi-styles@3.2.1|
+ >|**Version**|@3.2.1|
+ >|**Repository**|https://github.com/chalk/ansi-styles|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i ansi-styles@3.2.1
+ ```
+
+
+ ansi-styles@4.3.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|ansi-styles@4.3.0|
+ >|**Version**|@4.3.0|
+ >|**Repository**|https://github.com/chalk/ansi-styles|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i ansi-styles@4.3.0
+ ```
+
+
+ ansi-styles@5.2.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|ansi-styles@5.2.0|
+ >|**Version**|@5.2.0|
+ >|**Repository**|https://github.com/chalk/ansi-styles|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|https://sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i ansi-styles@5.2.0
+ ```
+
+
+ ansi-styles@6.2.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|ansi-styles@6.2.1|
+ >|**Version**|@6.2.1|
+ >|**Repository**|https://github.com/chalk/ansi-styles|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|https://sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i ansi-styles@6.2.1
+ ```
+
+
+ any-promise@1.3.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|any-promise@1.3.0|
+ >|**Version**|@1.3.0|
+ >|**Repository**|https://github.com/kevinbeaty/any-promise|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Kevin Beaty|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i any-promise@1.3.0
+ ```
+
+
+ anymatch@3.1.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|anymatch@3.1.3|
+ >|**Version**|@3.1.3|
+ >|**Repository**|https://github.com/micromatch/anymatch|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Elan Shanker|
+ >|**Contact**|NA|
+ >|**Homepage**|https://github.com/es128|
+
+ #### Use this package in your project
+ ```bash
+ npm i anymatch@3.1.3
+ ```
+
+
+ arg@4.1.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|arg@4.1.3|
+ >|**Version**|@4.1.3|
+ >|**Repository**|https://github.com/zeit/arg|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Josh Junon|
+ >|**Contact**|junon@zeit.co|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i arg@4.1.3
+ ```
+
+
+ arg@5.0.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|arg@5.0.2|
+ >|**Version**|@5.0.2|
+ >|**Repository**|https://github.com/vercel/arg|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Josh Junon|
+ >|**Contact**|junon@wavetilt.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i arg@5.0.2
+ ```
+
+
+ argparse@1.0.10
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|argparse@1.0.10|
+ >|**Version**|@1.0.10|
+ >|**Repository**|https://github.com/nodeca/argparse|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i argparse@1.0.10
+ ```
+
+
+ argparse@2.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|argparse@2.0.1|
+ >|**Version**|@2.0.1|
+ >|**Repository**|https://github.com/nodeca/argparse|
+ >|**Licenses**|Python-2.0|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i argparse@2.0.1
+ ```
+
+
+ aria-query@5.3.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|aria-query@5.3.0|
+ >|**Version**|@5.3.0|
+ >|**Repository**|https://github.com/A11yance/aria-query|
+ >|**Licenses**|Apache-2.0|
+ >|**Publisher**|Jesse Beach|
+ >|**Contact**|splendidnoise@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i aria-query@5.3.0
+ ```
+
+
+ array-buffer-byte-length@1.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|array-buffer-byte-length@1.0.0|
+ >|**Version**|@1.0.0|
+ >|**Repository**|https://github.com/inspect-js/array-buffer-byte-length|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i array-buffer-byte-length@1.0.0
+ ```
+
+
+ array-find-index@1.0.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|array-find-index@1.0.2|
+ >|**Version**|@1.0.2|
+ >|**Repository**|https://github.com/sindresorhus/array-find-index|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i array-find-index@1.0.2
+ ```
+
+
+ array-flatten@1.1.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|array-flatten@1.1.1|
+ >|**Version**|@1.1.1|
+ >|**Repository**|https://github.com/blakeembrey/array-flatten|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Blake Embrey|
+ >|**Contact**|hello@blakeembrey.com|
+ >|**Homepage**|http://blakeembrey.me|
+
+ #### Use this package in your project
+ ```bash
+ npm i array-flatten@1.1.1
+ ```
+
+
+ array-ify@1.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|array-ify@1.0.0|
+ >|**Version**|@1.0.0|
+ >|**Repository**|https://github.com/stevemao/array-ify|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Steve Mao|
+ >|**Contact**|maochenyan@gmail.com|
+ >|**Homepage**|https://github.com/stevemao|
+
+ #### Use this package in your project
+ ```bash
+ npm i array-ify@1.0.0
+ ```
+
+
+ array-includes@3.1.7
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|array-includes@3.1.7|
+ >|**Version**|@3.1.7|
+ >|**Repository**|https://github.com/es-shims/array-includes|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|http://ljharb.codes|
+
+ #### Use this package in your project
+ ```bash
+ npm i array-includes@3.1.7
+ ```
+
+
+ array-union@2.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|array-union@2.1.0|
+ >|**Version**|@2.1.0|
+ >|**Repository**|https://github.com/sindresorhus/array-union|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i array-union@2.1.0
+ ```
+
+
+ array.prototype.findlastindex@1.2.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|array.prototype.findlastindex@1.2.3|
+ >|**Version**|@..1.2.3|
+ >|**Repository**|https://github.com/es-shims/Array.prototype.findLastIndex|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|http://ljharb.codes|
+
+ #### Use this package in your project
+ ```bash
+ npm i array.prototype.findlastindex@1.2.3
+ ```
+
+
+ array.prototype.flat@1.3.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|array.prototype.flat@1.3.2|
+ >|**Version**|@..1.3.2|
+ >|**Repository**|https://github.com/es-shims/Array.prototype.flat|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|http://ljharb.codes|
+
+ #### Use this package in your project
+ ```bash
+ npm i array.prototype.flat@1.3.2
+ ```
+
+
+ array.prototype.flatmap@1.3.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|array.prototype.flatmap@1.3.2|
+ >|**Version**|@..1.3.2|
+ >|**Repository**|https://github.com/es-shims/Array.prototype.flatMap|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|http://ljharb.codes|
+
+ #### Use this package in your project
+ ```bash
+ npm i array.prototype.flatmap@1.3.2
+ ```
+
+
+ array.prototype.reduce@1.0.6
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|array.prototype.reduce@1.0.6|
+ >|**Version**|@..1.0.6|
+ >|**Repository**|https://github.com/es-shims/Array.prototype.reduce|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i array.prototype.reduce@1.0.6
+ ```
+
+
+ array.prototype.tosorted@1.1.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|array.prototype.tosorted@1.1.2|
+ >|**Version**|@..1.1.2|
+ >|**Repository**|https://github.com/es-shims/Array.prototype.toSorted|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i array.prototype.tosorted@1.1.2
+ ```
+
+
+ arraybuffer.prototype.slice@1.0.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|arraybuffer.prototype.slice@1.0.2|
+ >|**Version**|@..1.0.2|
+ >|**Repository**|https://github.com/es-shims/ArrayBuffer.prototype.slice|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i arraybuffer.prototype.slice@1.0.2
+ ```
+
+
+ arrify@1.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|arrify@1.0.1|
+ >|**Version**|@1.0.1|
+ >|**Repository**|https://github.com/sindresorhus/arrify|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i arrify@1.0.1
+ ```
+
+
+ asap@2.0.6
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|asap@2.0.6|
+ >|**Version**|@2.0.6|
+ >|**Repository**|https://github.com/kriskowal/asap|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i asap@2.0.6
+ ```
+
+
+ ast-types-flow@0.0.8
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|ast-types-flow@0.0.8|
+ >|**Version**|@0.0.8|
+ >|**Repository**|https://github.com/kyldvs/ast-types-flow|
+ >|**Licenses**|MIT|
+ >|**Publisher**|kyldvs|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i ast-types-flow@0.0.8
+ ```
+
+
+ async@3.2.5
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|async@3.2.5|
+ >|**Version**|@3.2.5|
+ >|**Repository**|https://github.com/caolan/async|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Caolan McMahon|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i async@3.2.5
+ ```
+
+
+ asynciterator.prototype@1.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|asynciterator.prototype@1.0.0|
+ >|**Version**|@.1.0.0|
+ >|**Repository**|https://github.com/ljharb/AsyncIterator.prototype|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i asynciterator.prototype@1.0.0
+ ```
+
+
+ asynckit@0.4.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|asynckit@0.4.0|
+ >|**Version**|@0.4.0|
+ >|**Repository**|https://github.com/alexindigo/asynckit|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Alex Indigo|
+ >|**Contact**|iam@alexindigo.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i asynckit@0.4.0
+ ```
+
+
+ at-least-node@1.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|at-least-node@1.0.0|
+ >|**Version**|@1.0.0|
+ >|**Repository**|https://github.com/RyanZim/at-least-node|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Ryan Zimmerman|
+ >|**Contact**|opensrc@ryanzim.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i at-least-node@1.0.0
+ ```
+
+
+ autoprefixer@10.4.16
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|autoprefixer@10.4.16|
+ >|**Version**|@10.4.16|
+ >|**Repository**|https://github.com/postcss/autoprefixer|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Andrey Sitnik|
+ >|**Contact**|andrey@sitnik.ru|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i autoprefixer@10.4.16
+ ```
+
+
+ available-typed-arrays@1.0.5
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|available-typed-arrays@1.0.5|
+ >|**Version**|@1.0.5|
+ >|**Repository**|https://github.com/inspect-js/available-typed-arrays|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i available-typed-arrays@1.0.5
+ ```
+
+
+ axe-core@4.7.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|axe-core@4.7.0|
+ >|**Version**|@4.7.0|
+ >|**Repository**|https://github.com/dequelabs/axe-core|
+ >|**Licenses**|MPL-2.0|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i axe-core@4.7.0
+ ```
+
+
+ axobject-query@3.2.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|axobject-query@3.2.1|
+ >|**Version**|@3.2.1|
+ >|**Repository**|https://github.com/A11yance/axobject-query|
+ >|**Licenses**|Apache-2.0|
+ >|**Publisher**|Jesse Beach|
+ >|**Contact**|splendidnoise@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i axobject-query@3.2.1
+ ```
+
+
+ babel-jest@27.5.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|babel-jest@27.5.1|
+ >|**Version**|@27.5.1|
+ >|**Repository**|https://github.com/facebook/jest|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i babel-jest@27.5.1
+ ```
+
+
+ babel-loader@8.3.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|babel-loader@8.3.0|
+ >|**Version**|@8.3.0|
+ >|**Repository**|https://github.com/babel/babel-loader|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Luis Couto|
+ >|**Contact**|hello@luiscouto.pt|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i babel-loader@8.3.0
+ ```
+
+
+ babel-plugin-istanbul@6.1.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|babel-plugin-istanbul@6.1.1|
+ >|**Version**|@6.1.1|
+ >|**Repository**|https://github.com/istanbuljs/babel-plugin-istanbul|
+ >|**Licenses**|BSD-3-Clause|
+ >|**Publisher**|Thai Pangsakulyanont @dtinth|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i babel-plugin-istanbul@6.1.1
+ ```
+
+
+ babel-plugin-jest-hoist@27.5.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|babel-plugin-jest-hoist@27.5.1|
+ >|**Version**|@27.5.1|
+ >|**Repository**|https://github.com/facebook/jest|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i babel-plugin-jest-hoist@27.5.1
+ ```
+
+
+ babel-plugin-macros@3.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|babel-plugin-macros@3.1.0|
+ >|**Version**|@3.1.0|
+ >|**Repository**|https://github.com/kentcdodds/babel-plugin-macros|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Kent C. Dodds|
+ >|**Contact**|me@kentcdodds.com|
+ >|**Homepage**|https://kentcdodds.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i babel-plugin-macros@3.1.0
+ ```
+
+
+ babel-plugin-named-asset-import@0.3.8
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|babel-plugin-named-asset-import@0.3.8|
+ >|**Version**|@0.3.8|
+ >|**Repository**|https://github.com/facebook/create-react-app|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i babel-plugin-named-asset-import@0.3.8
+ ```
+
+
+ babel-plugin-polyfill-corejs2@0.4.7
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|babel-plugin-polyfill-corejs2@0.4.7|
+ >|**Version**|@20.4.7|
+ >|**Repository**|https://github.com/babel/babel-polyfills|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i babel-plugin-polyfill-corejs2@0.4.7
+ ```
+
+
+ babel-plugin-polyfill-corejs3@0.8.7
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|babel-plugin-polyfill-corejs3@0.8.7|
+ >|**Version**|@30.8.7|
+ >|**Repository**|https://github.com/babel/babel-polyfills|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i babel-plugin-polyfill-corejs3@0.8.7
+ ```
+
+
+ babel-plugin-polyfill-regenerator@0.5.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|babel-plugin-polyfill-regenerator@0.5.4|
+ >|**Version**|@0.5.4|
+ >|**Repository**|https://github.com/babel/babel-polyfills|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i babel-plugin-polyfill-regenerator@0.5.4
+ ```
+
+
+ babel-plugin-transform-react-remove-prop-types@0.4.24
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|babel-plugin-transform-react-remove-prop-types@0.4.24|
+ >|**Version**|@0.4.24|
+ >|**Repository**|https://github.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Nikita Gusakov|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i babel-plugin-transform-react-remove-prop-types@0.4.24
+ ```
+
+
+ babel-preset-current-node-syntax@1.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|babel-preset-current-node-syntax@1.0.1|
+ >|**Version**|@1.0.1|
+ >|**Repository**|https://github.com/nicolo-ribaudo/babel-preset-current-node-syntax|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Nicolò Ribaudo|
+ >|**Contact**|NA|
+ >|**Homepage**|https://github.com/nicolo-ribaudo|
+
+ #### Use this package in your project
+ ```bash
+ npm i babel-preset-current-node-syntax@1.0.1
+ ```
+
+
+ babel-preset-jest@27.5.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|babel-preset-jest@27.5.1|
+ >|**Version**|@27.5.1|
+ >|**Repository**|https://github.com/facebook/jest|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i babel-preset-jest@27.5.1
+ ```
+
+
+ babel-preset-react-app@10.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|babel-preset-react-app@10.0.1|
+ >|**Version**|@10.0.1|
+ >|**Repository**|https://github.com/facebook/create-react-app|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i babel-preset-react-app@10.0.1
+ ```
+
+
+ balanced-match@1.0.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|balanced-match@1.0.2|
+ >|**Version**|@1.0.2|
+ >|**Repository**|https://github.com/juliangruber/balanced-match|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Julian Gruber|
+ >|**Contact**|mail@juliangruber.com|
+ >|**Homepage**|http://juliangruber.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i balanced-match@1.0.2
+ ```
+
+
+ batch@0.6.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|batch@0.6.1|
+ >|**Version**|@0.6.1|
+ >|**Repository**|https://github.com/visionmedia/batch|
+ >|**Licenses**|MIT|
+ >|**Publisher**|TJ Holowaychuk|
+ >|**Contact**|tj@vision-media.ca|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i batch@0.6.1
+ ```
+
+
+ bfj@7.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|bfj@7.1.0|
+ >|**Version**|@7.1.0|
+ >|**Repository**|git+https://gitlab.com/philbooth/bfj|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Phil Booth|
+ >|**Contact**|NA|
+ >|**Homepage**|https://gitlab.com/philbooth|
+
+ #### Use this package in your project
+ ```bash
+ npm i bfj@7.1.0
+ ```
+
+
+ big.js@5.2.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|big.js@5.2.2|
+ >|**Version**|@.5.2.2|
+ >|**Repository**|https://github.com/MikeMcl/big.js|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Michael Mclaughlin|
+ >|**Contact**|M8ch88l@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i big.js@5.2.2
+ ```
+
+
+ binary-extensions@2.2.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|binary-extensions@2.2.0|
+ >|**Version**|@2.2.0|
+ >|**Repository**|https://github.com/sindresorhus/binary-extensions|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i binary-extensions@2.2.0
+ ```
+
+
+ bluebird@3.7.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|bluebird@3.7.2|
+ >|**Version**|@3.7.2|
+ >|**Repository**|https://github.com/petkaantonov/bluebird|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Petka Antonov|
+ >|**Contact**|petka_antonov@hotmail.com|
+ >|**Homepage**|http://github.com/petkaantonov/|
+
+ #### Use this package in your project
+ ```bash
+ npm i bluebird@3.7.2
+ ```
+
+
+ body-parser@1.20.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|body-parser@1.20.1|
+ >|**Version**|@1.20.1|
+ >|**Repository**|https://github.com/expressjs/body-parser|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i body-parser@1.20.1
+ ```
+
+
+ bonjour-service@1.2.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|bonjour-service@1.2.1|
+ >|**Version**|@1.2.1|
+ >|**Repository**|https://github.com/onlxltd/bonjour-service|
+ >|**Licenses**|MIT|
+ >|**Publisher**|ON LX Lited|
+ >|**Contact**|team@onlx.ltd|
+ >|**Homepage**|https://labs.onlx.ltd|
+
+ #### Use this package in your project
+ ```bash
+ npm i bonjour-service@1.2.1
+ ```
+
+
+ boolbase@1.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|boolbase@1.0.0|
+ >|**Version**|@1.0.0|
+ >|**Repository**|https://github.com/fb55/boolbase|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Felix Boehm|
+ >|**Contact**|me@feedic.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i boolbase@1.0.0
+ ```
+
+
+ brace-expansion@1.1.11
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|brace-expansion@1.1.11|
+ >|**Version**|@1.1.11|
+ >|**Repository**|https://github.com/juliangruber/brace-expansion|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Julian Gruber|
+ >|**Contact**|mail@juliangruber.com|
+ >|**Homepage**|http://juliangruber.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i brace-expansion@1.1.11
+ ```
+
+
+ brace-expansion@2.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|brace-expansion@2.0.1|
+ >|**Version**|@2.0.1|
+ >|**Repository**|https://github.com/juliangruber/brace-expansion|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Julian Gruber|
+ >|**Contact**|mail@juliangruber.com|
+ >|**Homepage**|http://juliangruber.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i brace-expansion@2.0.1
+ ```
+
+
+ braces@3.0.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|braces@3.0.2|
+ >|**Version**|@3.0.2|
+ >|**Repository**|https://github.com/micromatch/braces|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jon Schlinkert|
+ >|**Contact**|NA|
+ >|**Homepage**|https://github.com/jonschlinkert|
+
+ #### Use this package in your project
+ ```bash
+ npm i braces@3.0.2
+ ```
+
+
+ browser-process-hrtime@1.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|browser-process-hrtime@1.0.0|
+ >|**Version**|@1.0.0|
+ >|**Repository**|https://github.com/kumavis/browser-process-hrtime|
+ >|**Licenses**|BSD-2-Clause|
+ >|**Publisher**|kumavis|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i browser-process-hrtime@1.0.0
+ ```
+
+
+ browserslist@4.22.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|browserslist@4.22.2|
+ >|**Version**|@4.22.2|
+ >|**Repository**|https://github.com/browserslist/browserslist|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Andrey Sitnik|
+ >|**Contact**|andrey@sitnik.ru|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i browserslist@4.22.2
+ ```
+
+
+ bser@2.1.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|bser@2.1.1|
+ >|**Version**|@2.1.1|
+ >|**Repository**|https://github.com/facebook/watchman|
+ >|**Licenses**|Apache-2.0|
+ >|**Publisher**|Wez Furlong|
+ >|**Contact**|wez@fb.com|
+ >|**Homepage**|http://wezfurlong.org|
+
+ #### Use this package in your project
+ ```bash
+ npm i bser@2.1.1
+ ```
+
+
+ buffer-from@1.1.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|buffer-from@1.1.2|
+ >|**Version**|@1.1.2|
+ >|**Repository**|https://github.com/LinusU/buffer-from|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i buffer-from@1.1.2
+ ```
+
+
+ builtin-modules@3.3.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|builtin-modules@3.3.0|
+ >|**Version**|@3.3.0|
+ >|**Repository**|https://github.com/sindresorhus/builtin-modules|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|https://sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i builtin-modules@3.3.0
+ ```
+
+
+ bunyan-lite@1.2.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|bunyan-lite@1.2.1|
+ >|**Version**|@1.2.1|
+ >|**Repository**|https://github.com/nfp-projects/node-bunyan-lite|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jonatan Nilsson|
+ >|**Contact**|jonatan@nilsson.is|
+ >|**Homepage**|https://nfp.is|
+
+ #### Use this package in your project
+ ```bash
+ npm i bunyan-lite@1.2.1
+ ```
+
+
+ bytes@3.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|bytes@3.0.0|
+ >|**Version**|@3.0.0|
+ >|**Repository**|https://github.com/visionmedia/bytes.js|
+ >|**Licenses**|MIT|
+ >|**Publisher**|TJ Holowaychuk|
+ >|**Contact**|tj@vision-media.ca|
+ >|**Homepage**|http://tjholowaychuk.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i bytes@3.0.0
+ ```
+
+
+ bytes@3.1.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|bytes@3.1.2|
+ >|**Version**|@3.1.2|
+ >|**Repository**|https://github.com/visionmedia/bytes.js|
+ >|**Licenses**|MIT|
+ >|**Publisher**|TJ Holowaychuk|
+ >|**Contact**|tj@vision-media.ca|
+ >|**Homepage**|http://tjholowaychuk.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i bytes@3.1.2
+ ```
+
+
+ call-bind@1.0.5
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|call-bind@1.0.5|
+ >|**Version**|@1.0.5|
+ >|**Repository**|https://github.com/ljharb/call-bind|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i call-bind@1.0.5
+ ```
+
+
+ callsites@3.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|callsites@3.1.0|
+ >|**Version**|@3.1.0|
+ >|**Repository**|https://github.com/sindresorhus/callsites|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i callsites@3.1.0
+ ```
+
+
+ camel-case@4.1.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|camel-case@4.1.2|
+ >|**Version**|@4.1.2|
+ >|**Repository**|https://github.com/blakeembrey/change-case|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Blake Embrey|
+ >|**Contact**|hello@blakeembrey.com|
+ >|**Homepage**|http://blakeembrey.me|
+
+ #### Use this package in your project
+ ```bash
+ npm i camel-case@4.1.2
+ ```
+
+
+ camelcase-css@2.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|camelcase-css@2.0.1|
+ >|**Version**|@2.0.1|
+ >|**Repository**|https://github.com/stevenvachon/camelcase-css|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Steven Vachon|
+ >|**Contact**|contact@svachon.com|
+ >|**Homepage**|https://www.svachon.com/|
+
+ #### Use this package in your project
+ ```bash
+ npm i camelcase-css@2.0.1
+ ```
+
+
+ camelcase-keys@6.2.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|camelcase-keys@6.2.2|
+ >|**Version**|@6.2.2|
+ >|**Repository**|https://github.com/sindresorhus/camelcase-keys|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i camelcase-keys@6.2.2
+ ```
+
+
+ camelcase@5.3.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|camelcase@5.3.1|
+ >|**Version**|@5.3.1|
+ >|**Repository**|https://github.com/sindresorhus/camelcase|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i camelcase@5.3.1
+ ```
+
+
+ camelcase@6.3.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|camelcase@6.3.0|
+ >|**Version**|@6.3.0|
+ >|**Repository**|https://github.com/sindresorhus/camelcase|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|https://sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i camelcase@6.3.0
+ ```
+
+
+ caniuse-api@3.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|caniuse-api@3.0.0|
+ >|**Version**|@3.0.0|
+ >|**Repository**|https://github.com/nyalab/caniuse-api|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i caniuse-api@3.0.0
+ ```
+
+
+ caniuse-lite@1.0.30001577
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|caniuse-lite@1.0.30001577|
+ >|**Version**|@1.0.30001577|
+ >|**Repository**|https://github.com/browserslist/caniuse-lite|
+ >|**Licenses**|CC-BY-4.0|
+ >|**Publisher**|Ben Briggs|
+ >|**Contact**|beneb.info@gmail.com|
+ >|**Homepage**|http://beneb.info|
+
+ #### Use this package in your project
+ ```bash
+ npm i caniuse-lite@1.0.30001577
+ ```
+
+
+ case-sensitive-paths-webpack-plugin@2.4.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|case-sensitive-paths-webpack-plugin@2.4.0|
+ >|**Version**|@2.4.0|
+ >|**Repository**|https://github.com/Urthen/case-sensitive-paths-webpack-plugin|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Michael Pratt|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i case-sensitive-paths-webpack-plugin@2.4.0
+ ```
+
+
+ chalk@2.4.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|chalk@2.4.2|
+ >|**Version**|@2.4.2|
+ >|**Repository**|https://github.com/chalk/chalk|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i chalk@2.4.2
+ ```
+
+
+ chalk@4.1.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|chalk@4.1.2|
+ >|**Version**|@4.1.2|
+ >|**Repository**|https://github.com/chalk/chalk|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i chalk@4.1.2
+ ```
+
+
+ char-regex@1.0.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|char-regex@1.0.2|
+ >|**Version**|@1.0.2|
+ >|**Repository**|https://github.com/Richienb/char-regex|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Richie Bendall|
+ >|**Contact**|richiebendall@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i char-regex@1.0.2
+ ```
+
+
+ char-regex@2.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|char-regex@2.0.1|
+ >|**Version**|@2.0.1|
+ >|**Repository**|https://github.com/Richienb/char-regex|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Richie Bendall|
+ >|**Contact**|richiebendall@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i char-regex@2.0.1
+ ```
+
+
+ chardet@0.7.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|chardet@0.7.0|
+ >|**Version**|@0.7.0|
+ >|**Repository**|https://github.com/runk/node-chardet|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Dmitry Shirokov|
+ >|**Contact**|deadrunk@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i chardet@0.7.0
+ ```
+
+
+ check-types@11.2.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|check-types@11.2.3|
+ >|**Version**|@11.2.3|
+ >|**Repository**|git+https://gitlab.com/philbooth/check-types.js|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Phil Booth|
+ >|**Contact**|pmbooth@gmail.com|
+ >|**Homepage**|https://philbooth.me/|
+
+ #### Use this package in your project
+ ```bash
+ npm i check-types@11.2.3
+ ```
+
+
+ chokidar@3.5.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|chokidar@3.5.3|
+ >|**Version**|@3.5.3|
+ >|**Repository**|https://github.com/paulmillr/chokidar|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Paul Miller|
+ >|**Contact**|NA|
+ >|**Homepage**|https://paulmillr.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i chokidar@3.5.3
+ ```
+
+
+ chrome-trace-event@1.0.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|chrome-trace-event@1.0.3|
+ >|**Version**|@1.0.3|
+ >|**Repository**|https://github.com/samccone/chrome-trace-event|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Trent Mick, Sam Saccone|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i chrome-trace-event@1.0.3
+ ```
+
+
+ ci-info@3.9.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|ci-info@3.9.0|
+ >|**Version**|@3.9.0|
+ >|**Repository**|https://github.com/watson/ci-info|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Thomas Watson Steen|
+ >|**Contact**|w@tson.dk|
+ >|**Homepage**|https://twitter.com/wa7son|
+
+ #### Use this package in your project
+ ```bash
+ npm i ci-info@3.9.0
+ ```
+
+
+ cjs-module-lexer@1.2.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|cjs-module-lexer@1.2.3|
+ >|**Version**|@1.2.3|
+ >|**Repository**|https://github.com/nodejs/cjs-module-lexer|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Guy Bedford|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i cjs-module-lexer@1.2.3
+ ```
+
+
+ clean-css@5.3.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|clean-css@5.3.3|
+ >|**Version**|@5.3.3|
+ >|**Repository**|https://github.com/clean-css/clean-css|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jakub Pawlowicz|
+ >|**Contact**|contact@jakubpawlowicz.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i clean-css@5.3.3
+ ```
+
+
+ cli-cursor@2.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|cli-cursor@2.1.0|
+ >|**Version**|@2.1.0|
+ >|**Repository**|https://github.com/sindresorhus/cli-cursor|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i cli-cursor@2.1.0
+ ```
+
+
+ cli-width@2.2.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|cli-width@2.2.1|
+ >|**Version**|@2.2.1|
+ >|**Repository**|https://github.com/knownasilya/cli-width|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Ilya Radchenko|
+ >|**Contact**|knownasilya@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i cli-width@2.2.1
+ ```
+
+
+ cliui@7.0.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|cliui@7.0.4|
+ >|**Version**|@7.0.4|
+ >|**Repository**|https://github.com/yargs/cliui|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Ben Coe|
+ >|**Contact**|ben@npmjs.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i cliui@7.0.4
+ ```
+
+
+ cliui@8.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|cliui@8.0.1|
+ >|**Version**|@8.0.1|
+ >|**Repository**|https://github.com/yargs/cliui|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Ben Coe|
+ >|**Contact**|ben@npmjs.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i cliui@8.0.1
+ ```
+
+
+ co@4.6.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|co@4.6.0|
+ >|**Version**|@4.6.0|
+ >|**Repository**|https://github.com/tj/co|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i co@4.6.0
+ ```
+
+
+ coa@2.0.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|coa@2.0.2|
+ >|**Version**|@2.0.2|
+ >|**Repository**|https://github.com/veged/coa|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sergey Berezhnoy|
+ >|**Contact**|veged@ya.ru|
+ >|**Homepage**|http://github.com/veged|
+
+ #### Use this package in your project
+ ```bash
+ npm i coa@2.0.2
+ ```
+
+
+ collect-v8-coverage@1.0.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|collect-v8-coverage@1.0.2|
+ >|**Version**|@81.0.2|
+ >|**Repository**|https://github.com/SimenB/collect-v8-coverage|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i collect-v8-coverage@1.0.2
+ ```
+
+
+ color-convert@1.9.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|color-convert@1.9.3|
+ >|**Version**|@1.9.3|
+ >|**Repository**|https://github.com/Qix-/color-convert|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Heather Arthur|
+ >|**Contact**|fayearthur@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i color-convert@1.9.3
+ ```
+
+
+ color-convert@2.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|color-convert@2.0.1|
+ >|**Version**|@2.0.1|
+ >|**Repository**|https://github.com/Qix-/color-convert|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Heather Arthur|
+ >|**Contact**|fayearthur@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i color-convert@2.0.1
+ ```
+
+
+ color-name@1.1.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|color-name@1.1.3|
+ >|**Version**|@1.1.3|
+ >|**Repository**|https://github.com/dfcreative/color-name|
+ >|**Licenses**|MIT|
+ >|**Publisher**|DY|
+ >|**Contact**|dfcreative@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i color-name@1.1.3
+ ```
+
+
+ color-name@1.1.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|color-name@1.1.4|
+ >|**Version**|@1.1.4|
+ >|**Repository**|https://github.com/colorjs/color-name|
+ >|**Licenses**|MIT|
+ >|**Publisher**|DY|
+ >|**Contact**|dfcreative@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i color-name@1.1.4
+ ```
+
+
+ colord@2.9.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|colord@2.9.3|
+ >|**Version**|@2.9.3|
+ >|**Repository**|https://github.com/omgovich/colord|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Vlad Shilov|
+ >|**Contact**|omgovich@ya.ru|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i colord@2.9.3
+ ```
+
+
+ colorette@2.0.20
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|colorette@2.0.20|
+ >|**Version**|@2.0.20|
+ >|**Repository**|https://github.com/jorgebucaran/colorette|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jorge Bucaran|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i colorette@2.0.20
+ ```
+
+
+ combined-stream@1.0.8
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|combined-stream@1.0.8|
+ >|**Version**|@1.0.8|
+ >|**Repository**|https://github.com/felixge/node-combined-stream|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Felix Geisendörfer|
+ >|**Contact**|felix@debuggable.com|
+ >|**Homepage**|http://debuggable.com/|
+
+ #### Use this package in your project
+ ```bash
+ npm i combined-stream@1.0.8
+ ```
+
+
+ commander@2.20.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|commander@2.20.3|
+ >|**Version**|@2.20.3|
+ >|**Repository**|https://github.com/tj/commander.js|
+ >|**Licenses**|MIT|
+ >|**Publisher**|TJ Holowaychuk|
+ >|**Contact**|tj@vision-media.ca|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i commander@2.20.3
+ ```
+
+
+ commander@4.1.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|commander@4.1.1|
+ >|**Version**|@4.1.1|
+ >|**Repository**|https://github.com/tj/commander.js|
+ >|**Licenses**|MIT|
+ >|**Publisher**|TJ Holowaychuk|
+ >|**Contact**|tj@vision-media.ca|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i commander@4.1.1
+ ```
+
+
+ commander@7.2.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|commander@7.2.0|
+ >|**Version**|@7.2.0|
+ >|**Repository**|https://github.com/tj/commander.js|
+ >|**Licenses**|MIT|
+ >|**Publisher**|TJ Holowaychuk|
+ >|**Contact**|tj@vision-media.ca|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i commander@7.2.0
+ ```
+
+
+ commander@8.3.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|commander@8.3.0|
+ >|**Version**|@8.3.0|
+ >|**Repository**|https://github.com/tj/commander.js|
+ >|**Licenses**|MIT|
+ >|**Publisher**|TJ Holowaychuk|
+ >|**Contact**|tj@vision-media.ca|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i commander@8.3.0
+ ```
+
+
+ common-path-prefix@3.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|common-path-prefix@3.0.0|
+ >|**Version**|@3.0.0|
+ >|**Repository**|https://github.com/novemberborn/common-path-prefix|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Mark Wubben|
+ >|**Contact**|NA|
+ >|**Homepage**|https://novemberborn.net/|
+
+ #### Use this package in your project
+ ```bash
+ npm i common-path-prefix@3.0.0
+ ```
+
+
+ common-tags@1.8.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|common-tags@1.8.2|
+ >|**Version**|@1.8.2|
+ >|**Repository**|https://github.com/zspecza/common-tags|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Declan de Wet|
+ >|**Contact**|declandewet@me.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i common-tags@1.8.2
+ ```
+
+
+ commondir@1.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|commondir@1.0.1|
+ >|**Version**|@1.0.1|
+ >|**Repository**|https://github.com/substack/node-commondir|
+ >|**Licenses**|MIT|
+ >|**Publisher**|James Halliday|
+ >|**Contact**|mail@substack.net|
+ >|**Homepage**|http://substack.net|
+
+ #### Use this package in your project
+ ```bash
+ npm i commondir@1.0.1
+ ```
+
+
+ compare-func@2.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|compare-func@2.0.0|
+ >|**Version**|@2.0.0|
+ >|**Repository**|https://github.com/stevemao/compare-func|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Steve Mao|
+ >|**Contact**|maochenyan@gmail.com|
+ >|**Homepage**|https://github.com/stevemao|
+
+ #### Use this package in your project
+ ```bash
+ npm i compare-func@2.0.0
+ ```
+
+
+ component-emitter@1.3.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|component-emitter@1.3.1|
+ >|**Version**|@1.3.1|
+ >|**Repository**|https://github.com/sindresorhus/component-emitter|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i component-emitter@1.3.1
+ ```
+
+
+ compressible@2.0.18
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|compressible@2.0.18|
+ >|**Version**|@2.0.18|
+ >|**Repository**|https://github.com/jshttp/compressible|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i compressible@2.0.18
+ ```
+
+
+ compression@1.7.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|compression@1.7.4|
+ >|**Version**|@1.7.4|
+ >|**Repository**|https://github.com/expressjs/compression|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i compression@1.7.4
+ ```
+
+
+ concat-map@0.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|concat-map@0.0.1|
+ >|**Version**|@0.0.1|
+ >|**Repository**|https://github.com/substack/node-concat-map|
+ >|**Licenses**|MIT|
+ >|**Publisher**|James Halliday|
+ >|**Contact**|mail@substack.net|
+ >|**Homepage**|http://substack.net|
+
+ #### Use this package in your project
+ ```bash
+ npm i concat-map@0.0.1
+ ```
+
+
+ confusing-browser-globals@1.0.11
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|confusing-browser-globals@1.0.11|
+ >|**Version**|@1.0.11|
+ >|**Repository**|https://github.com/facebook/create-react-app|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i confusing-browser-globals@1.0.11
+ ```
+
+
+ connect-history-api-fallback@2.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|connect-history-api-fallback@2.0.0|
+ >|**Version**|@2.0.0|
+ >|**Repository**|https://github.com/bripkens/connect-history-api-fallback|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Ben Ripkens|
+ >|**Contact**|bripkens@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i connect-history-api-fallback@2.0.0
+ ```
+
+
+ content-disposition@0.5.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|content-disposition@0.5.4|
+ >|**Version**|@0.5.4|
+ >|**Repository**|https://github.com/jshttp/content-disposition|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Douglas Christopher Wilson|
+ >|**Contact**|doug@somethingdoug.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i content-disposition@0.5.4
+ ```
+
+
+ content-type@1.0.5
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|content-type@1.0.5|
+ >|**Version**|@1.0.5|
+ >|**Repository**|https://github.com/jshttp/content-type|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Douglas Christopher Wilson|
+ >|**Contact**|doug@somethingdoug.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i content-type@1.0.5
+ ```
+
+
+ conventional-changelog-angular@6.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|conventional-changelog-angular@6.0.0|
+ >|**Version**|@6.0.0|
+ >|**Repository**|https://github.com/conventional-changelog/conventional-changelog|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Steve Mao|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i conventional-changelog-angular@6.0.0
+ ```
+
+
+ conventional-changelog-conventionalcommits@6.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|conventional-changelog-conventionalcommits@6.1.0|
+ >|**Version**|@6.1.0|
+ >|**Repository**|https://github.com/conventional-changelog/conventional-changelog|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Ben Coe|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i conventional-changelog-conventionalcommits@6.1.0
+ ```
+
+
+ conventional-commits-parser@4.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|conventional-commits-parser@4.0.0|
+ >|**Version**|@4.0.0|
+ >|**Repository**|https://github.com/conventional-changelog/conventional-changelog|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Steve Mao|
+ >|**Contact**|maochenyan@gmail.com|
+ >|**Homepage**|https://github.com/stevemao|
+
+ #### Use this package in your project
+ ```bash
+ npm i conventional-commits-parser@4.0.0
+ ```
+
+
+ convert-source-map@1.9.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|convert-source-map@1.9.0|
+ >|**Version**|@1.9.0|
+ >|**Repository**|https://github.com/thlorenz/convert-source-map|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Thorsten Lorenz|
+ >|**Contact**|thlorenz@gmx.de|
+ >|**Homepage**|http://thlorenz.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i convert-source-map@1.9.0
+ ```
+
+
+ convert-source-map@2.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|convert-source-map@2.0.0|
+ >|**Version**|@2.0.0|
+ >|**Repository**|https://github.com/thlorenz/convert-source-map|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Thorsten Lorenz|
+ >|**Contact**|thlorenz@gmx.de|
+ >|**Homepage**|http://thlorenz.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i convert-source-map@2.0.0
+ ```
+
+
+ cookie-signature@1.0.6
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|cookie-signature@1.0.6|
+ >|**Version**|@1.0.6|
+ >|**Repository**|https://github.com/visionmedia/node-cookie-signature|
+ >|**Licenses**|MIT|
+ >|**Publisher**|TJ Holowaychuk|
+ >|**Contact**|tj@learnboost.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i cookie-signature@1.0.6
+ ```
+
+
+ cookie@0.5.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|cookie@0.5.0|
+ >|**Version**|@0.5.0|
+ >|**Repository**|https://github.com/jshttp/cookie|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Roman Shtylman|
+ >|**Contact**|shtylman@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i cookie@0.5.0
+ ```
+
+
+ cookiejar@2.1.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|cookiejar@2.1.4|
+ >|**Version**|@2.1.4|
+ >|**Repository**|https://github.com/bmeck/node-cookiejar|
+ >|**Licenses**|MIT|
+ >|**Publisher**|bradleymeck|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i cookiejar@2.1.4
+ ```
+
+
+ core-js-compat@3.35.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|core-js-compat@3.35.0|
+ >|**Version**|@3.35.0|
+ >|**Repository**|https://github.com/zloirock/core-js|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Denis Pushkarev|
+ >|**Contact**|zloirock@zloirock.ru|
+ >|**Homepage**|http://zloirock.ru|
+
+ #### Use this package in your project
+ ```bash
+ npm i core-js-compat@3.35.0
+ ```
+
+
+ core-js-pure@3.35.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|core-js-pure@3.35.0|
+ >|**Version**|@3.35.0|
+ >|**Repository**|https://github.com/zloirock/core-js|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Denis Pushkarev|
+ >|**Contact**|zloirock@zloirock.ru|
+ >|**Homepage**|http://zloirock.ru|
+
+ #### Use this package in your project
+ ```bash
+ npm i core-js-pure@3.35.0
+ ```
+
+
+ core-js@3.35.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|core-js@3.35.0|
+ >|**Version**|@3.35.0|
+ >|**Repository**|https://github.com/zloirock/core-js|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Denis Pushkarev|
+ >|**Contact**|zloirock@zloirock.ru|
+ >|**Homepage**|http://zloirock.ru|
+
+ #### Use this package in your project
+ ```bash
+ npm i core-js@3.35.0
+ ```
+
+
+ core-util-is@1.0.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|core-util-is@1.0.3|
+ >|**Version**|@1.0.3|
+ >|**Repository**|https://github.com/isaacs/core-util-is|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Isaac Z. Schlueter|
+ >|**Contact**|i@izs.me|
+ >|**Homepage**|http://blog.izs.me/|
+
+ #### Use this package in your project
+ ```bash
+ npm i core-util-is@1.0.3
+ ```
+
+
+ cosmiconfig-typescript-loader@4.4.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|cosmiconfig-typescript-loader@4.4.0|
+ >|**Version**|@4.4.0|
+ >|**Repository**|https://github.com/Codex-/cosmiconfig-typescript-loader|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Alex Miller|
+ >|**Contact**|codex.nz@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i cosmiconfig-typescript-loader@4.4.0
+ ```
+
+
+ cosmiconfig@6.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|cosmiconfig@6.0.0|
+ >|**Version**|@6.0.0|
+ >|**Repository**|https://github.com/davidtheclark/cosmiconfig|
+ >|**Licenses**|MIT|
+ >|**Publisher**|David Clark|
+ >|**Contact**|david.dave.clark@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i cosmiconfig@6.0.0
+ ```
+
+
+ cosmiconfig@7.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|cosmiconfig@7.1.0|
+ >|**Version**|@7.1.0|
+ >|**Repository**|https://github.com/davidtheclark/cosmiconfig|
+ >|**Licenses**|MIT|
+ >|**Publisher**|David Clark|
+ >|**Contact**|david.dave.clark@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i cosmiconfig@7.1.0
+ ```
+
+
+ cosmiconfig@8.3.6
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|cosmiconfig@8.3.6|
+ >|**Version**|@8.3.6|
+ >|**Repository**|https://github.com/cosmiconfig/cosmiconfig|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Daniel Fischer|
+ >|**Contact**|daniel@d-fischer.dev|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i cosmiconfig@8.3.6
+ ```
+
+
+ create-require@1.1.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|create-require@1.1.1|
+ >|**Version**|@1.1.1|
+ >|**Repository**|https://github.com/nuxt-contrib/create-require|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i create-require@1.1.1
+ ```
+
+
+ cross-spawn@7.0.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|cross-spawn@7.0.3|
+ >|**Version**|@7.0.3|
+ >|**Repository**|https://github.com/moxystudio/node-cross-spawn|
+ >|**Licenses**|MIT|
+ >|**Publisher**|André Cruz|
+ >|**Contact**|andre@moxy.studio|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i cross-spawn@7.0.3
+ ```
+
+
+ crypto-random-string@2.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|crypto-random-string@2.0.0|
+ >|**Version**|@2.0.0|
+ >|**Repository**|https://github.com/sindresorhus/crypto-random-string|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i crypto-random-string@2.0.0
+ ```
+
+
+ css-blank-pseudo@3.0.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|css-blank-pseudo@3.0.3|
+ >|**Version**|@3.0.3|
+ >|**Repository**|https://github.com/csstools/postcss-plugins|
+ >|**Licenses**|CC0-1.0|
+ >|**Publisher**|Jonathan Neal|
+ >|**Contact**|jonathantneal@hotmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i css-blank-pseudo@3.0.3
+ ```
+
+
+ css-declaration-sorter@6.4.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|css-declaration-sorter@6.4.1|
+ >|**Version**|@6.4.1|
+ >|**Repository**|https://github.com/Siilwyn/css-declaration-sorter|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Selwyn|
+ >|**Contact**|talk@selwyn.cc|
+ >|**Homepage**|https://selwyn.cc/|
+
+ #### Use this package in your project
+ ```bash
+ npm i css-declaration-sorter@6.4.1
+ ```
+
+
+ css-has-pseudo@3.0.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|css-has-pseudo@3.0.4|
+ >|**Version**|@3.0.4|
+ >|**Repository**|https://github.com/csstools/postcss-plugins|
+ >|**Licenses**|CC0-1.0|
+ >|**Publisher**|Jonathan Neal|
+ >|**Contact**|jonathantneal@hotmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i css-has-pseudo@3.0.4
+ ```
+
+
+ css-loader@6.9.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|css-loader@6.9.0|
+ >|**Version**|@6.9.0|
+ >|**Repository**|https://github.com/webpack-contrib/css-loader|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Tobias Koppers @sokra|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i css-loader@6.9.0
+ ```
+
+
+ css-minimizer-webpack-plugin@3.4.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|css-minimizer-webpack-plugin@3.4.1|
+ >|**Version**|@3.4.1|
+ >|**Repository**|https://github.com/webpack-contrib/css-minimizer-webpack-plugin|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Loann Neveu|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i css-minimizer-webpack-plugin@3.4.1
+ ```
+
+
+ css-prefers-color-scheme@6.0.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|css-prefers-color-scheme@6.0.3|
+ >|**Version**|@6.0.3|
+ >|**Repository**|https://github.com/csstools/postcss-plugins|
+ >|**Licenses**|CC0-1.0|
+ >|**Publisher**|Jonathan Neal|
+ >|**Contact**|jonathantneal@hotmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i css-prefers-color-scheme@6.0.3
+ ```
+
+
+ css-select-base-adapter@0.1.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|css-select-base-adapter@0.1.1|
+ >|**Version**|@0.1.1|
+ >|**Repository**|https://github.com/nrkn/css-select-base-adapter|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Nik Coughlin|
+ >|**Contact**|nrkn.com@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i css-select-base-adapter@0.1.1
+ ```
+
+
+ css-select@2.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|css-select@2.1.0|
+ >|**Version**|@2.1.0|
+ >|**Repository**|https://github.com/fb55/css-select|
+ >|**Licenses**|BSD-2-Clause|
+ >|**Publisher**|Felix Boehm|
+ >|**Contact**|me@feedic.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i css-select@2.1.0
+ ```
+
+
+ css-select@4.3.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|css-select@4.3.0|
+ >|**Version**|@4.3.0|
+ >|**Repository**|https://github.com/fb55/css-select|
+ >|**Licenses**|BSD-2-Clause|
+ >|**Publisher**|Felix Boehm|
+ >|**Contact**|me@feedic.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i css-select@4.3.0
+ ```
+
+
+ css-tree@1.0.0-alpha.37
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|css-tree@1.0.0-alpha.37|
+ >|**Version**|@1.0.0.37|
+ >|**Repository**|https://github.com/csstree/csstree|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Roman Dvornov|
+ >|**Contact**|rdvornov@gmail.com|
+ >|**Homepage**|https://github.com/lahmatiy|
+
+ #### Use this package in your project
+ ```bash
+ npm i css-tree@1.0.0-alpha.37
+ ```
+
+
+ css-tree@1.1.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|css-tree@1.1.3|
+ >|**Version**|@1.1.3|
+ >|**Repository**|https://github.com/csstree/csstree|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Roman Dvornov|
+ >|**Contact**|rdvornov@gmail.com|
+ >|**Homepage**|https://github.com/lahmatiy|
+
+ #### Use this package in your project
+ ```bash
+ npm i css-tree@1.1.3
+ ```
+
+
+ css-what@3.4.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|css-what@3.4.2|
+ >|**Version**|@3.4.2|
+ >|**Repository**|https://github.com/fb55/css-what|
+ >|**Licenses**|BSD-2-Clause|
+ >|**Publisher**|Felix Böhm|
+ >|**Contact**|me@feedic.com|
+ >|**Homepage**|http://feedic.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i css-what@3.4.2
+ ```
+
+
+ css-what@6.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|css-what@6.1.0|
+ >|**Version**|@6.1.0|
+ >|**Repository**|https://github.com/fb55/css-what|
+ >|**Licenses**|BSD-2-Clause|
+ >|**Publisher**|Felix Böhm|
+ >|**Contact**|me@feedic.com|
+ >|**Homepage**|http://feedic.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i css-what@6.1.0
+ ```
+
+
+ cssdb@7.10.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|cssdb@7.10.0|
+ >|**Version**|@7.10.0|
+ >|**Repository**|https://github.com/csstools/cssdb|
+ >|**Licenses**|CC0-1.0|
+ >|**Publisher**|Jonathan Neal|
+ >|**Contact**|jonathantneal@hotmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i cssdb@7.10.0
+ ```
+
+
+ cssesc@3.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|cssesc@3.0.0|
+ >|**Version**|@3.0.0|
+ >|**Repository**|https://github.com/mathiasbynens/cssesc|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Mathias Bynens|
+ >|**Contact**|NA|
+ >|**Homepage**|https://mathiasbynens.be/|
+
+ #### Use this package in your project
+ ```bash
+ npm i cssesc@3.0.0
+ ```
+
+
+ cssnano-preset-default@5.2.14
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|cssnano-preset-default@5.2.14|
+ >|**Version**|@5.2.14|
+ >|**Repository**|https://github.com/cssnano/cssnano|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Ben Briggs|
+ >|**Contact**|beneb.info@gmail.com|
+ >|**Homepage**|http://beneb.info|
+
+ #### Use this package in your project
+ ```bash
+ npm i cssnano-preset-default@5.2.14
+ ```
+
+
+ cssnano-utils@3.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|cssnano-utils@3.1.0|
+ >|**Version**|@3.1.0|
+ >|**Repository**|https://github.com/cssnano/cssnano|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i cssnano-utils@3.1.0
+ ```
+
+
+ cssnano@5.1.15
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|cssnano@5.1.15|
+ >|**Version**|@5.1.15|
+ >|**Repository**|https://github.com/cssnano/cssnano|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Ben Briggs|
+ >|**Contact**|beneb.info@gmail.com|
+ >|**Homepage**|http://beneb.info|
+
+ #### Use this package in your project
+ ```bash
+ npm i cssnano@5.1.15
+ ```
+
+
+ csso@4.2.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|csso@4.2.0|
+ >|**Version**|@4.2.0|
+ >|**Repository**|https://github.com/css/csso|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sergey Kryzhanovsky|
+ >|**Contact**|skryzhanovsky@ya.ru|
+ >|**Homepage**|https://github.com/afelix|
+
+ #### Use this package in your project
+ ```bash
+ npm i csso@4.2.0
+ ```
+
+
+ cssom@0.3.8
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|cssom@0.3.8|
+ >|**Version**|@0.3.8|
+ >|**Repository**|https://github.com/NV/CSSOM|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Nikita Vasilyev|
+ >|**Contact**|me@elv1s.ru|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i cssom@0.3.8
+ ```
+
+
+ cssom@0.4.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|cssom@0.4.4|
+ >|**Version**|@0.4.4|
+ >|**Repository**|https://github.com/NV/CSSOM|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Nikita Vasilyev|
+ >|**Contact**|me@elv1s.ru|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i cssom@0.4.4
+ ```
+
+
+ cssstyle@2.3.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|cssstyle@2.3.0|
+ >|**Version**|@2.3.0|
+ >|**Repository**|https://github.com/jsdom/cssstyle|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i cssstyle@2.3.0
+ ```
+
+
+ csstype@3.1.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|csstype@3.1.3|
+ >|**Version**|@3.1.3|
+ >|**Repository**|https://github.com/frenic/csstype|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Fredrik Nicol|
+ >|**Contact**|fredrik.nicol@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i csstype@3.1.3
+ ```
+
+
+ damerau-levenshtein@1.0.8
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|damerau-levenshtein@1.0.8|
+ >|**Version**|@1.0.8|
+ >|**Repository**|https://github.com/tad-lispy/node-damerau-levenshtein|
+ >|**Licenses**|BSD-2-Clause|
+ >|**Publisher**|The Spanish Inquisition|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i damerau-levenshtein@1.0.8
+ ```
+
+
+ dargs@7.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|dargs@7.0.0|
+ >|**Version**|@7.0.0|
+ >|**Repository**|https://github.com/sindresorhus/dargs|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i dargs@7.0.0
+ ```
+
+
+ data-urls@2.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|data-urls@2.0.0|
+ >|**Version**|@2.0.0|
+ >|**Repository**|https://github.com/jsdom/data-urls|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Domenic Denicola|
+ >|**Contact**|d@domenic.me|
+ >|**Homepage**|https://domenic.me/|
+
+ #### Use this package in your project
+ ```bash
+ npm i data-urls@2.0.0
+ ```
+
+
+ debug@2.6.9
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|debug@2.6.9|
+ >|**Version**|@2.6.9|
+ >|**Repository**|https://github.com/visionmedia/debug|
+ >|**Licenses**|MIT|
+ >|**Publisher**|TJ Holowaychuk|
+ >|**Contact**|tj@vision-media.ca|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i debug@2.6.9
+ ```
+
+
+ debug@3.2.7
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|debug@3.2.7|
+ >|**Version**|@3.2.7|
+ >|**Repository**|https://github.com/visionmedia/debug|
+ >|**Licenses**|MIT|
+ >|**Publisher**|TJ Holowaychuk|
+ >|**Contact**|tj@vision-media.ca|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i debug@3.2.7
+ ```
+
+
+ debug@4.3.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|debug@4.3.4|
+ >|**Version**|@4.3.4|
+ >|**Repository**|https://github.com/debug-js/debug|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Josh Junon|
+ >|**Contact**|josh.junon@protonmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i debug@4.3.4
+ ```
+
+
+ debuglog@1.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|debuglog@1.0.1|
+ >|**Version**|@1.0.1|
+ >|**Repository**|https://github.com/sam-github/node-debuglog|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sam Roberts|
+ >|**Contact**|sam@strongloop.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i debuglog@1.0.1
+ ```
+
+
+ decamelize-keys@1.1.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|decamelize-keys@1.1.1|
+ >|**Version**|@1.1.1|
+ >|**Repository**|https://github.com/sindresorhus/decamelize-keys|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|http://sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i decamelize-keys@1.1.1
+ ```
+
+
+ decamelize@1.2.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|decamelize@1.2.0|
+ >|**Version**|@1.2.0|
+ >|**Repository**|https://github.com/sindresorhus/decamelize|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i decamelize@1.2.0
+ ```
+
+
+ decimal.js@10.4.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|decimal.js@10.4.3|
+ >|**Version**|@.10.4.3|
+ >|**Repository**|https://github.com/MikeMcl/decimal.js|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Michael Mclaughlin|
+ >|**Contact**|M8ch88l@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i decimal.js@10.4.3
+ ```
+
+
+ dedent@0.7.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|dedent@0.7.0|
+ >|**Version**|@0.7.0|
+ >|**Repository**|https://github.com/dmnd/dedent|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Desmond Brand|
+ >|**Contact**|dmnd@desmondbrand.com|
+ >|**Homepage**|http://desmondbrand.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i dedent@0.7.0
+ ```
+
+
+ deep-is@0.1.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|deep-is@0.1.4|
+ >|**Version**|@0.1.4|
+ >|**Repository**|https://github.com/thlorenz/deep-is|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Thorsten Lorenz|
+ >|**Contact**|thlorenz@gmx.de|
+ >|**Homepage**|http://thlorenz.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i deep-is@0.1.4
+ ```
+
+
+ deepmerge@2.2.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|deepmerge@2.2.1|
+ >|**Version**|@2.2.1|
+ >|**Repository**|https://github.com/KyleAMathews/deepmerge|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Nick Fisher|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i deepmerge@2.2.1
+ ```
+
+
+ deepmerge@4.3.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|deepmerge@4.3.1|
+ >|**Version**|@4.3.1|
+ >|**Repository**|https://github.com/TehShrike/deepmerge|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i deepmerge@4.3.1
+ ```
+
+
+ default-gateway@6.0.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|default-gateway@6.0.3|
+ >|**Version**|@6.0.3|
+ >|**Repository**|https://github.com/silverwind/default-gateway|
+ >|**Licenses**|BSD-2-Clause|
+ >|**Publisher**|silverwind|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i default-gateway@6.0.3
+ ```
+
+
+ define-data-property@1.1.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|define-data-property@1.1.1|
+ >|**Version**|@1.1.1|
+ >|**Repository**|https://github.com/ljharb/define-data-property|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i define-data-property@1.1.1
+ ```
+
+
+ define-lazy-prop@2.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|define-lazy-prop@2.0.0|
+ >|**Version**|@2.0.0|
+ >|**Repository**|https://github.com/sindresorhus/define-lazy-prop|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i define-lazy-prop@2.0.0
+ ```
+
+
+ define-properties@1.2.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|define-properties@1.2.1|
+ >|**Version**|@1.2.1|
+ >|**Repository**|https://github.com/ljharb/define-properties|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i define-properties@1.2.1
+ ```
+
+
+ delayed-stream@1.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|delayed-stream@1.0.0|
+ >|**Version**|@1.0.0|
+ >|**Repository**|https://github.com/felixge/node-delayed-stream|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Felix Geisendörfer|
+ >|**Contact**|felix@debuggable.com|
+ >|**Homepage**|http://debuggable.com/|
+
+ #### Use this package in your project
+ ```bash
+ npm i delayed-stream@1.0.0
+ ```
+
+
+ depd@1.1.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|depd@1.1.2|
+ >|**Version**|@1.1.2|
+ >|**Repository**|https://github.com/dougwilson/nodejs-depd|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Douglas Christopher Wilson|
+ >|**Contact**|doug@somethingdoug.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i depd@1.1.2
+ ```
+
+
+ depd@2.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|depd@2.0.0|
+ >|**Version**|@2.0.0|
+ >|**Repository**|https://github.com/dougwilson/nodejs-depd|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Douglas Christopher Wilson|
+ >|**Contact**|doug@somethingdoug.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i depd@2.0.0
+ ```
+
+
+ dequal@2.0.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|dequal@2.0.3|
+ >|**Version**|@2.0.3|
+ >|**Repository**|https://github.com/lukeed/dequal|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Luke Edwards|
+ >|**Contact**|luke.edwards05@gmail.com|
+ >|**Homepage**|https://lukeed.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i dequal@2.0.3
+ ```
+
+
+ destroy@1.2.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|destroy@1.2.0|
+ >|**Version**|@1.2.0|
+ >|**Repository**|https://github.com/stream-utils/destroy|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jonathan Ong|
+ >|**Contact**|me@jongleberry.com|
+ >|**Homepage**|http://jongleberry.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i destroy@1.2.0
+ ```
+
+
+ detect-newline@3.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|detect-newline@3.1.0|
+ >|**Version**|@3.1.0|
+ >|**Repository**|https://github.com/sindresorhus/detect-newline|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i detect-newline@3.1.0
+ ```
+
+
+ detect-node@2.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|detect-node@2.1.0|
+ >|**Version**|@2.1.0|
+ >|**Repository**|https://github.com/iliakan/detect-node|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Ilya Kantor|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i detect-node@2.1.0
+ ```
+
+
+ detect-port-alt@1.1.6
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|detect-port-alt@1.1.6|
+ >|**Version**|@1.1.6|
+ >|**Repository**|https://github.com/node-modules/detect-port|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i detect-port-alt@1.1.6
+ ```
+
+
+ dezalgo@1.0.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|dezalgo@1.0.4|
+ >|**Version**|@1.0.4|
+ >|**Repository**|https://github.com/npm/dezalgo|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Isaac Z. Schlueter|
+ >|**Contact**|i@izs.me|
+ >|**Homepage**|http://blog.izs.me/|
+
+ #### Use this package in your project
+ ```bash
+ npm i dezalgo@1.0.4
+ ```
+
+
+ didyoumean@1.2.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|didyoumean@1.2.2|
+ >|**Version**|@1.2.2|
+ >|**Repository**|https://github.com/dcporter/didyoumean.js|
+ >|**Licenses**|Apache-2.0|
+ >|**Publisher**|Dave Porter|
+ >|**Contact**|dcporter@gmail.com|
+ >|**Homepage**|http://dcporter.net/|
+
+ #### Use this package in your project
+ ```bash
+ npm i didyoumean@1.2.2
+ ```
+
+
+ diff-sequences@27.5.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|diff-sequences@27.5.1|
+ >|**Version**|@27.5.1|
+ >|**Repository**|https://github.com/facebook/jest|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i diff-sequences@27.5.1
+ ```
+
+
+ diff@4.0.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|diff@4.0.2|
+ >|**Version**|@4.0.2|
+ >|**Repository**|https://github.com/kpdecker/jsdiff|
+ >|**Licenses**|BSD-3-Clause|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i diff@4.0.2
+ ```
+
+
+ dir-glob@3.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|dir-glob@3.0.1|
+ >|**Version**|@3.0.1|
+ >|**Repository**|https://github.com/kevva/dir-glob|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Kevin MÃ¥rtensson|
+ >|**Contact**|kevinmartensson@gmail.com|
+ >|**Homepage**|github.com/kevva|
+
+ #### Use this package in your project
+ ```bash
+ npm i dir-glob@3.0.1
+ ```
+
+
+ dlv@1.1.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|dlv@1.1.3|
+ >|**Version**|@1.1.3|
+ >|**Repository**|https://github.com/developit/dlv|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jason Miller|
+ >|**Contact**|jason@developit.ca|
+ >|**Homepage**|http://jasonformat.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i dlv@1.1.3
+ ```
+
+
+ dns-packet@5.6.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|dns-packet@5.6.1|
+ >|**Version**|@5.6.1|
+ >|**Repository**|https://github.com/mafintosh/dns-packet|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Mathias Buus|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i dns-packet@5.6.1
+ ```
+
+
+ doctrine@2.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|doctrine@2.1.0|
+ >|**Version**|@2.1.0|
+ >|**Repository**|https://github.com/eslint/doctrine|
+ >|**Licenses**|Apache-2.0|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i doctrine@2.1.0
+ ```
+
+
+ doctrine@3.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|doctrine@3.0.0|
+ >|**Version**|@3.0.0|
+ >|**Repository**|https://github.com/eslint/doctrine|
+ >|**Licenses**|Apache-2.0|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i doctrine@3.0.0
+ ```
+
+
+ dom-converter@0.2.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|dom-converter@0.2.0|
+ >|**Version**|@0.2.0|
+ >|**Repository**|https://github.com/AriaMinaei/dom-converter|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Aria Minaei|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i dom-converter@0.2.0
+ ```
+
+
+ dom-serializer@0.2.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|dom-serializer@0.2.2|
+ >|**Version**|@0.2.2|
+ >|**Repository**|https://github.com/cheeriojs/dom-renderer|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Felix Boehm|
+ >|**Contact**|me@feedic.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i dom-serializer@0.2.2
+ ```
+
+
+ dom-serializer@1.4.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|dom-serializer@1.4.1|
+ >|**Version**|@1.4.1|
+ >|**Repository**|https://github.com/cheeriojs/dom-renderer|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Felix Boehm|
+ >|**Contact**|me@feedic.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i dom-serializer@1.4.1
+ ```
+
+
+ domelementtype@1.3.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|domelementtype@1.3.1|
+ >|**Version**|@1.3.1|
+ >|**Repository**|https://github.com/fb55/domelementtype|
+ >|**Licenses**|BSD-2-Clause|
+ >|**Publisher**|Felix Boehm|
+ >|**Contact**|me@feedic.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i domelementtype@1.3.1
+ ```
+
+
+ domelementtype@2.3.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|domelementtype@2.3.0|
+ >|**Version**|@2.3.0|
+ >|**Repository**|https://github.com/fb55/domelementtype|
+ >|**Licenses**|BSD-2-Clause|
+ >|**Publisher**|Felix Boehm|
+ >|**Contact**|me@feedic.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i domelementtype@2.3.0
+ ```
+
+
+ domexception@2.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|domexception@2.0.1|
+ >|**Version**|@2.0.1|
+ >|**Repository**|https://github.com/jsdom/domexception|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Domenic Denicola|
+ >|**Contact**|d@domenic.me|
+ >|**Homepage**|https://domenic.me/|
+
+ #### Use this package in your project
+ ```bash
+ npm i domexception@2.0.1
+ ```
+
+
+ domhandler@4.3.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|domhandler@4.3.1|
+ >|**Version**|@4.3.1|
+ >|**Repository**|https://github.com/fb55/domhandler|
+ >|**Licenses**|BSD-2-Clause|
+ >|**Publisher**|Felix Boehm|
+ >|**Contact**|me@feedic.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i domhandler@4.3.1
+ ```
+
+
+ domutils@1.7.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|domutils@1.7.0|
+ >|**Version**|@1.7.0|
+ >|**Repository**|https://github.com/FB55/domutils|
+ >|**Licenses**|BSD-2-Clause|
+ >|**Publisher**|Felix Boehm|
+ >|**Contact**|me@feedic.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i domutils@1.7.0
+ ```
+
+
+ domutils@2.8.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|domutils@2.8.0|
+ >|**Version**|@2.8.0|
+ >|**Repository**|https://github.com/fb55/domutils|
+ >|**Licenses**|BSD-2-Clause|
+ >|**Publisher**|Felix Boehm|
+ >|**Contact**|me@feedic.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i domutils@2.8.0
+ ```
+
+
+ dot-case@3.0.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|dot-case@3.0.4|
+ >|**Version**|@3.0.4|
+ >|**Repository**|https://github.com/blakeembrey/change-case|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Blake Embrey|
+ >|**Contact**|hello@blakeembrey.com|
+ >|**Homepage**|http://blakeembrey.me|
+
+ #### Use this package in your project
+ ```bash
+ npm i dot-case@3.0.4
+ ```
+
+
+ dot-prop@5.3.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|dot-prop@5.3.0|
+ >|**Version**|@5.3.0|
+ >|**Repository**|https://github.com/sindresorhus/dot-prop|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i dot-prop@5.3.0
+ ```
+
+
+ dotenv-expand@5.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|dotenv-expand@5.1.0|
+ >|**Version**|@5.1.0|
+ >|**Repository**|NA|
+ >|**Licenses**|BSD-2-Clause|
+ >|**Publisher**|motdotla|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i dotenv-expand@5.1.0
+ ```
+
+
+ dotenv@10.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|dotenv@10.0.0|
+ >|**Version**|@10.0.0|
+ >|**Repository**|https://github.com/motdotla/dotenv|
+ >|**Licenses**|BSD-2-Clause|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i dotenv@10.0.0
+ ```
+
+
+ duplexer@0.1.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|duplexer@0.1.2|
+ >|**Version**|@0.1.2|
+ >|**Repository**|https://github.com/Raynos/duplexer|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Raynos|
+ >|**Contact**|raynos2@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i duplexer@0.1.2
+ ```
+
+
+ eastasianwidth@0.2.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|eastasianwidth@0.2.0|
+ >|**Version**|@0.2.0|
+ >|**Repository**|https://github.com/komagata/eastasianwidth|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Masaki Komagata|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i eastasianwidth@0.2.0
+ ```
+
+
+ ee-first@1.1.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|ee-first@1.1.1|
+ >|**Version**|@1.1.1|
+ >|**Repository**|https://github.com/jonathanong/ee-first|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jonathan Ong|
+ >|**Contact**|me@jongleberry.com|
+ >|**Homepage**|http://jongleberry.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i ee-first@1.1.1
+ ```
+
+
+ ejs@3.1.9
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|ejs@3.1.9|
+ >|**Version**|@3.1.9|
+ >|**Repository**|https://github.com/mde/ejs|
+ >|**Licenses**|Apache-2.0|
+ >|**Publisher**|Matthew Eernisse|
+ >|**Contact**|mde@fleegix.org|
+ >|**Homepage**|http://fleegix.org|
+
+ #### Use this package in your project
+ ```bash
+ npm i ejs@3.1.9
+ ```
+
+
+ electron-to-chromium@1.4.632
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|electron-to-chromium@1.4.632|
+ >|**Version**|@1.4.632|
+ >|**Repository**|https://github.com/kilian/electron-to-chromium|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Kilian Valkhof|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i electron-to-chromium@1.4.632
+ ```
+
+
+ emittery@0.10.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|emittery@0.10.2|
+ >|**Version**|@0.10.2|
+ >|**Repository**|https://github.com/sindresorhus/emittery|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|https://sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i emittery@0.10.2
+ ```
+
+
+ emittery@0.8.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|emittery@0.8.1|
+ >|**Version**|@0.8.1|
+ >|**Repository**|https://github.com/sindresorhus/emittery|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|https://sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i emittery@0.8.1
+ ```
+
+
+ emoji-regex@8.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|emoji-regex@8.0.0|
+ >|**Version**|@8.0.0|
+ >|**Repository**|https://github.com/mathiasbynens/emoji-regex|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Mathias Bynens|
+ >|**Contact**|NA|
+ >|**Homepage**|https://mathiasbynens.be/|
+
+ #### Use this package in your project
+ ```bash
+ npm i emoji-regex@8.0.0
+ ```
+
+
+ emoji-regex@9.2.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|emoji-regex@9.2.2|
+ >|**Version**|@9.2.2|
+ >|**Repository**|https://github.com/mathiasbynens/emoji-regex|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Mathias Bynens|
+ >|**Contact**|NA|
+ >|**Homepage**|https://mathiasbynens.be/|
+
+ #### Use this package in your project
+ ```bash
+ npm i emoji-regex@9.2.2
+ ```
+
+
+ emojis-list@3.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|emojis-list@3.0.0|
+ >|**Version**|@3.0.0|
+ >|**Repository**|https://github.com/kikobeats/emojis-list|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Kiko Beats|
+ >|**Contact**|josefrancisco.verdu@gmail.com|
+ >|**Homepage**|https://github.com/Kikobeats|
+
+ #### Use this package in your project
+ ```bash
+ npm i emojis-list@3.0.0
+ ```
+
+
+ encodeurl@1.0.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|encodeurl@1.0.2|
+ >|**Version**|@1.0.2|
+ >|**Repository**|https://github.com/pillarjs/encodeurl|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i encodeurl@1.0.2
+ ```
+
+
+ enhanced-resolve@5.15.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|enhanced-resolve@5.15.0|
+ >|**Version**|@5.15.0|
+ >|**Repository**|https://github.com/webpack/enhanced-resolve|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Tobias Koppers @sokra|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i enhanced-resolve@5.15.0
+ ```
+
+
+ entities@2.2.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|entities@2.2.0|
+ >|**Version**|@2.2.0|
+ >|**Repository**|https://github.com/fb55/entities|
+ >|**Licenses**|BSD-2-Clause|
+ >|**Publisher**|Felix Boehm|
+ >|**Contact**|me@feedic.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i entities@2.2.0
+ ```
+
+
+ error-ex@1.3.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|error-ex@1.3.2|
+ >|**Version**|@1.3.2|
+ >|**Repository**|https://github.com/qix-/node-error-ex|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i error-ex@1.3.2
+ ```
+
+
+ error-stack-parser@2.1.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|error-stack-parser@2.1.4|
+ >|**Version**|@2.1.4|
+ >|**Repository**|https://github.com/stacktracejs/error-stack-parser|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i error-stack-parser@2.1.4
+ ```
+
+
+ es-abstract@1.22.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|es-abstract@1.22.3|
+ >|**Version**|@1.22.3|
+ >|**Repository**|https://github.com/ljharb/es-abstract|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|http://ljharb.codes|
+
+ #### Use this package in your project
+ ```bash
+ npm i es-abstract@1.22.3
+ ```
+
+
+ es-array-method-boxes-properly@1.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|es-array-method-boxes-properly@1.0.0|
+ >|**Version**|@1.0.0|
+ >|**Repository**|https://github.com/ljharb/es-array-method-boxes-properly|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i es-array-method-boxes-properly@1.0.0
+ ```
+
+
+ es-iterator-helpers@1.0.15
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|es-iterator-helpers@1.0.15|
+ >|**Version**|@1.0.15|
+ >|**Repository**|https://github.com/es-shims/iterator-helpers|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i es-iterator-helpers@1.0.15
+ ```
+
+
+ es-module-lexer@1.4.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|es-module-lexer@1.4.1|
+ >|**Version**|@1.4.1|
+ >|**Repository**|https://github.com/guybedford/es-module-lexer|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Guy Bedford|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i es-module-lexer@1.4.1
+ ```
+
+
+ es-set-tostringtag@2.0.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|es-set-tostringtag@2.0.2|
+ >|**Version**|@2.0.2|
+ >|**Repository**|https://github.com/es-shims/es-set-tostringtag|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i es-set-tostringtag@2.0.2
+ ```
+
+
+ es-shim-unscopables@1.0.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|es-shim-unscopables@1.0.2|
+ >|**Version**|@1.0.2|
+ >|**Repository**|https://github.com/ljharb/es-shim-unscopables|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i es-shim-unscopables@1.0.2
+ ```
+
+
+ es-to-primitive@1.2.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|es-to-primitive@1.2.1|
+ >|**Version**|@1.2.1|
+ >|**Repository**|https://github.com/ljharb/es-to-primitive|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i es-to-primitive@1.2.1
+ ```
+
+
+ escalade@3.1.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|escalade@3.1.1|
+ >|**Version**|@3.1.1|
+ >|**Repository**|https://github.com/lukeed/escalade|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Luke Edwards|
+ >|**Contact**|luke.edwards05@gmail.com|
+ >|**Homepage**|https://lukeed.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i escalade@3.1.1
+ ```
+
+
+ escape-html@1.0.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|escape-html@1.0.3|
+ >|**Version**|@1.0.3|
+ >|**Repository**|https://github.com/component/escape-html|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i escape-html@1.0.3
+ ```
+
+
+ escape-string-regexp@1.0.5
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|escape-string-regexp@1.0.5|
+ >|**Version**|@1.0.5|
+ >|**Repository**|https://github.com/sindresorhus/escape-string-regexp|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i escape-string-regexp@1.0.5
+ ```
+
+
+ escape-string-regexp@2.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|escape-string-regexp@2.0.0|
+ >|**Version**|@2.0.0|
+ >|**Repository**|https://github.com/sindresorhus/escape-string-regexp|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i escape-string-regexp@2.0.0
+ ```
+
+
+ escape-string-regexp@4.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|escape-string-regexp@4.0.0|
+ >|**Version**|@4.0.0|
+ >|**Repository**|https://github.com/sindresorhus/escape-string-regexp|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|https://sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i escape-string-regexp@4.0.0
+ ```
+
+
+ escodegen@1.14.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|escodegen@1.14.3|
+ >|**Version**|@1.14.3|
+ >|**Repository**|https://github.com/estools/escodegen|
+ >|**Licenses**|BSD-2-Clause|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i escodegen@1.14.3
+ ```
+
+
+ escodegen@2.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|escodegen@2.1.0|
+ >|**Version**|@2.1.0|
+ >|**Repository**|https://github.com/estools/escodegen|
+ >|**Licenses**|BSD-2-Clause|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i escodegen@2.1.0
+ ```
+
+
+ eslint-config-react-app@7.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|eslint-config-react-app@7.0.1|
+ >|**Version**|@7.0.1|
+ >|**Repository**|https://github.com/facebook/create-react-app|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i eslint-config-react-app@7.0.1
+ ```
+
+
+ eslint-etc@5.2.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|eslint-etc@5.2.1|
+ >|**Version**|@5.2.1|
+ >|**Repository**|https://github.com/cartant/eslint-etc|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Nicholas Jamieson|
+ >|**Contact**|nicholas@cartant.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i eslint-etc@5.2.1
+ ```
+
+
+ eslint-import-resolver-node@0.3.9
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|eslint-import-resolver-node@0.3.9|
+ >|**Version**|@0.3.9|
+ >|**Repository**|https://github.com/import-js/eslint-plugin-import|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Ben Mosher|
+ >|**Contact**|NA|
+ >|**Homepage**|me@benmosher.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i eslint-import-resolver-node@0.3.9
+ ```
+
+
+ eslint-module-utils@2.8.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|eslint-module-utils@2.8.0|
+ >|**Version**|@2.8.0|
+ >|**Repository**|https://github.com/import-js/eslint-plugin-import|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Ben Mosher|
+ >|**Contact**|me@benmosher.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i eslint-module-utils@2.8.0
+ ```
+
+
+ eslint-plugin-es@3.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|eslint-plugin-es@3.0.1|
+ >|**Version**|@3.0.1|
+ >|**Repository**|https://github.com/mysticatea/eslint-plugin-es|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Toru Nagashima|
+ >|**Contact**|NA|
+ >|**Homepage**|https://github.com/mysticatea|
+
+ #### Use this package in your project
+ ```bash
+ npm i eslint-plugin-es@3.0.1
+ ```
+
+
+ eslint-plugin-etc@2.0.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|eslint-plugin-etc@2.0.3|
+ >|**Version**|@2.0.3|
+ >|**Repository**|https://github.com/cartant/eslint-plugin-etc|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Nicholas Jamieson|
+ >|**Contact**|nicholas@cartant.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i eslint-plugin-etc@2.0.3
+ ```
+
+
+ eslint-plugin-flowtype@8.0.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|eslint-plugin-flowtype@8.0.3|
+ >|**Version**|@8.0.3|
+ >|**Repository**|https://github.com/gajus/eslint-plugin-flowtype|
+ >|**Licenses**|BSD-3-Clause|
+ >|**Publisher**|Gajus Kuizinas|
+ >|**Contact**|gajus@gajus.com|
+ >|**Homepage**|http://gajus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i eslint-plugin-flowtype@8.0.3
+ ```
+
+
+ eslint-plugin-import@2.29.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|eslint-plugin-import@2.29.1|
+ >|**Version**|@2.29.1|
+ >|**Repository**|https://github.com/import-js/eslint-plugin-import|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Ben Mosher|
+ >|**Contact**|me@benmosher.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i eslint-plugin-import@2.29.1
+ ```
+
+
+ eslint-plugin-jest@25.7.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|eslint-plugin-jest@25.7.0|
+ >|**Version**|@25.7.0|
+ >|**Repository**|https://github.com/jest-community/eslint-plugin-jest|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jonathan Kim|
+ >|**Contact**|hello@jkimbo.com|
+ >|**Homepage**|jkimbo.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i eslint-plugin-jest@25.7.0
+ ```
+
+
+ eslint-plugin-jsx-a11y@6.8.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|eslint-plugin-jsx-a11y@6.8.0|
+ >|**Version**|@116.8.0|
+ >|**Repository**|https://github.com/jsx-eslint/eslint-plugin-jsx-a11y|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Ethan Cohen|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i eslint-plugin-jsx-a11y@6.8.0
+ ```
+
+
+ eslint-plugin-node@11.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|eslint-plugin-node@11.1.0|
+ >|**Version**|@11.1.0|
+ >|**Repository**|https://github.com/mysticatea/eslint-plugin-node|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Toru Nagashima|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i eslint-plugin-node@11.1.0
+ ```
+
+
+ eslint-plugin-promise@6.1.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|eslint-plugin-promise@6.1.1|
+ >|**Version**|@6.1.1|
+ >|**Repository**|https://github.com/eslint-community/eslint-plugin-promise|
+ >|**Licenses**|ISC|
+ >|**Publisher**|jden|
+ >|**Contact**|jason@denizac.org|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i eslint-plugin-promise@6.1.1
+ ```
+
+
+ eslint-plugin-react-hooks@4.6.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|eslint-plugin-react-hooks@4.6.0|
+ >|**Version**|@4.6.0|
+ >|**Repository**|https://github.com/facebook/react|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i eslint-plugin-react-hooks@4.6.0
+ ```
+
+
+ eslint-plugin-react@7.33.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|eslint-plugin-react@7.33.2|
+ >|**Version**|@7.33.2|
+ >|**Repository**|https://github.com/jsx-eslint/eslint-plugin-react|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Yannick Croissant|
+ >|**Contact**|yannick.croissant+npm@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i eslint-plugin-react@7.33.2
+ ```
+
+
+ eslint-plugin-require-extensions@0.1.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|eslint-plugin-require-extensions@0.1.3|
+ >|**Version**|@0.1.3|
+ >|**Repository**|https://github.com/solana-labs/eslint-plugin-require-extensions|
+ >|**Licenses**|Apache-2.0|
+ >|**Publisher**|Solana Maintainers|
+ >|**Contact**|maintainers@solana.foundation|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i eslint-plugin-require-extensions@0.1.3
+ ```
+
+
+ eslint-plugin-sort-keys-fix@1.1.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|eslint-plugin-sort-keys-fix@1.1.2|
+ >|**Version**|@1.1.2|
+ >|**Repository**|https://github.com/leo-buneev/eslint-plugin-sort-keys-fix|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Leonid Buneev|
+ >|**Contact**|buneev.leonid@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i eslint-plugin-sort-keys-fix@1.1.2
+ ```
+
+
+ eslint-plugin-testing-library@5.11.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|eslint-plugin-testing-library@5.11.1|
+ >|**Version**|@5.11.1|
+ >|**Repository**|https://github.com/testing-library/eslint-plugin-testing-library|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Mario Beltrán Alarcón|
+ >|**Contact**|me@mario.dev|
+ >|**Homepage**|https://mario.dev/|
+
+ #### Use this package in your project
+ ```bash
+ npm i eslint-plugin-testing-library@5.11.1
+ ```
+
+
+ eslint-plugin-unused-imports@2.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|eslint-plugin-unused-imports@2.0.0|
+ >|**Version**|@2.0.0|
+ >|**Repository**|https://github.com/sweepline/eslint-plugin-unused-imports|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Mikkel Holmer Pedersen|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i eslint-plugin-unused-imports@2.0.0
+ ```
+
+
+ eslint-rule-composer@0.3.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|eslint-rule-composer@0.3.0|
+ >|**Version**|@0.3.0|
+ >|**Repository**|https://github.com/not-an-aardvark/eslint-rule-composer|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Teddy Katz|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i eslint-rule-composer@0.3.0
+ ```
+
+
+ eslint-scope@5.1.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|eslint-scope@5.1.1|
+ >|**Version**|@5.1.1|
+ >|**Repository**|https://github.com/eslint/eslint-scope|
+ >|**Licenses**|BSD-2-Clause|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i eslint-scope@5.1.1
+ ```
+
+
+ eslint-scope@7.2.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|eslint-scope@7.2.2|
+ >|**Version**|@7.2.2|
+ >|**Repository**|https://github.com/eslint/eslint-scope|
+ >|**Licenses**|BSD-2-Clause|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i eslint-scope@7.2.2
+ ```
+
+
+ eslint-utils@2.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|eslint-utils@2.1.0|
+ >|**Version**|@2.1.0|
+ >|**Repository**|https://github.com/mysticatea/eslint-utils|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Toru Nagashima|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i eslint-utils@2.1.0
+ ```
+
+
+ eslint-visitor-keys@1.3.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|eslint-visitor-keys@1.3.0|
+ >|**Version**|@1.3.0|
+ >|**Repository**|https://github.com/eslint/eslint-visitor-keys|
+ >|**Licenses**|Apache-2.0|
+ >|**Publisher**|Toru Nagashima|
+ >|**Contact**|NA|
+ >|**Homepage**|https://github.com/mysticatea|
+
+ #### Use this package in your project
+ ```bash
+ npm i eslint-visitor-keys@1.3.0
+ ```
+
+
+ eslint-visitor-keys@2.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|eslint-visitor-keys@2.1.0|
+ >|**Version**|@2.1.0|
+ >|**Repository**|https://github.com/eslint/eslint-visitor-keys|
+ >|**Licenses**|Apache-2.0|
+ >|**Publisher**|Toru Nagashima|
+ >|**Contact**|NA|
+ >|**Homepage**|https://github.com/mysticatea|
+
+ #### Use this package in your project
+ ```bash
+ npm i eslint-visitor-keys@2.1.0
+ ```
+
+
+ eslint-visitor-keys@3.4.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|eslint-visitor-keys@3.4.3|
+ >|**Version**|@3.4.3|
+ >|**Repository**|https://github.com/eslint/eslint-visitor-keys|
+ >|**Licenses**|Apache-2.0|
+ >|**Publisher**|Toru Nagashima|
+ >|**Contact**|NA|
+ >|**Homepage**|https://github.com/mysticatea|
+
+ #### Use this package in your project
+ ```bash
+ npm i eslint-visitor-keys@3.4.3
+ ```
+
+
+ eslint-webpack-plugin@3.2.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|eslint-webpack-plugin@3.2.0|
+ >|**Version**|@3.2.0|
+ >|**Repository**|https://github.com/webpack-contrib/eslint-webpack-plugin|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Ricardo Gobbo de Souza|
+ >|**Contact**|ricardogobbosouza@yahoo.com.br|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i eslint-webpack-plugin@3.2.0
+ ```
+
+
+ eslint@8.56.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|eslint@8.56.0|
+ >|**Version**|@8.56.0|
+ >|**Repository**|https://github.com/eslint/eslint|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Nicholas C. Zakas|
+ >|**Contact**|nicholas+npm@nczconsulting.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i eslint@8.56.0
+ ```
+
+
+ espree@6.2.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|espree@6.2.1|
+ >|**Version**|@6.2.1|
+ >|**Repository**|https://github.com/eslint/espree|
+ >|**Licenses**|BSD-2-Clause|
+ >|**Publisher**|Nicholas C. Zakas|
+ >|**Contact**|nicholas+npm@nczconsulting.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i espree@6.2.1
+ ```
+
+
+ espree@9.6.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|espree@9.6.1|
+ >|**Version**|@9.6.1|
+ >|**Repository**|https://github.com/eslint/espree|
+ >|**Licenses**|BSD-2-Clause|
+ >|**Publisher**|Nicholas C. Zakas|
+ >|**Contact**|nicholas+npm@nczconsulting.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i espree@9.6.1
+ ```
+
+
+ esprima@1.2.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|esprima@1.2.2|
+ >|**Version**|@1.2.2|
+ >|**Repository**|https://github.com/ariya/esprima|
+ >|**Licenses**|BSD|
+ >|**Publisher**|Ariya Hidayat|
+ >|**Contact**|ariya.hidayat@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i esprima@1.2.2
+ ```
+
+
+ esprima@4.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|esprima@4.0.1|
+ >|**Version**|@4.0.1|
+ >|**Repository**|https://github.com/jquery/esprima|
+ >|**Licenses**|BSD-2-Clause|
+ >|**Publisher**|Ariya Hidayat|
+ >|**Contact**|ariya.hidayat@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i esprima@4.0.1
+ ```
+
+
+ esquery@1.5.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|esquery@1.5.0|
+ >|**Version**|@1.5.0|
+ >|**Repository**|https://github.com/estools/esquery|
+ >|**Licenses**|BSD-3-Clause|
+ >|**Publisher**|Joel Feenstra|
+ >|**Contact**|jrfeenst+esquery@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i esquery@1.5.0
+ ```
+
+
+ esrecurse@4.3.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|esrecurse@4.3.0|
+ >|**Version**|@4.3.0|
+ >|**Repository**|https://github.com/estools/esrecurse|
+ >|**Licenses**|BSD-2-Clause|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i esrecurse@4.3.0
+ ```
+
+
+ estraverse@4.3.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|estraverse@4.3.0|
+ >|**Version**|@4.3.0|
+ >|**Repository**|https://github.com/estools/estraverse|
+ >|**Licenses**|BSD-2-Clause|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i estraverse@4.3.0
+ ```
+
+
+ estraverse@5.3.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|estraverse@5.3.0|
+ >|**Version**|@5.3.0|
+ >|**Repository**|https://github.com/estools/estraverse|
+ >|**Licenses**|BSD-2-Clause|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i estraverse@5.3.0
+ ```
+
+
+ estree-walker@1.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|estree-walker@1.0.1|
+ >|**Version**|@1.0.1|
+ >|**Repository**|https://github.com/Rich-Harris/estree-walker|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Rich Harris|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i estree-walker@1.0.1
+ ```
+
+
+ esutils@2.0.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|esutils@2.0.3|
+ >|**Version**|@2.0.3|
+ >|**Repository**|https://github.com/estools/esutils|
+ >|**Licenses**|BSD-2-Clause|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i esutils@2.0.3
+ ```
+
+
+ etag@1.8.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|etag@1.8.1|
+ >|**Version**|@1.8.1|
+ >|**Repository**|https://github.com/jshttp/etag|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i etag@1.8.1
+ ```
+
+
+ eventemitter3@4.0.7
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|eventemitter3@4.0.7|
+ >|**Version**|@34.0.7|
+ >|**Repository**|https://github.com/primus/eventemitter3|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Arnout Kazemier|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i eventemitter3@4.0.7
+ ```
+
+
+ events@3.3.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|events@3.3.0|
+ >|**Version**|@3.3.0|
+ >|**Repository**|https://github.com/Gozala/events|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Irakli Gozalishvili|
+ >|**Contact**|rfobic@gmail.com|
+ >|**Homepage**|http://jeditoolkit.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i events@3.3.0
+ ```
+
+
+ execa@5.1.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|execa@5.1.1|
+ >|**Version**|@5.1.1|
+ >|**Repository**|https://github.com/sindresorhus/execa|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|https://sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i execa@5.1.1
+ ```
+
+
+ exit@0.1.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|exit@0.1.2|
+ >|**Version**|@0.1.2|
+ >|**Repository**|https://github.com/cowboy/node-exit|
+ >|**Licenses**|MIT|
+ >|**Publisher**|"Cowboy" Ben Alman|
+ >|**Contact**|NA|
+ >|**Homepage**|http://benalman.com/|
+
+ #### Use this package in your project
+ ```bash
+ npm i exit@0.1.2
+ ```
+
+
+ expect@27.5.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|expect@27.5.1|
+ >|**Version**|@27.5.1|
+ >|**Repository**|https://github.com/facebook/jest|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i expect@27.5.1
+ ```
+
+
+ express@4.18.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|express@4.18.2|
+ >|**Version**|@4.18.2|
+ >|**Repository**|https://github.com/expressjs/express|
+ >|**Licenses**|MIT|
+ >|**Publisher**|TJ Holowaychuk|
+ >|**Contact**|tj@vision-media.ca|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i express@4.18.2
+ ```
+
+
+ external-editor@3.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|external-editor@3.1.0|
+ >|**Version**|@3.1.0|
+ >|**Repository**|https://github.com/mrkmg/node-external-editor|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Kevin Gravier|
+ >|**Contact**|kevin@mrkmg.com|
+ >|**Homepage**|https://mrkmg.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i external-editor@3.1.0
+ ```
+
+
+ fast-deep-equal@3.1.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|fast-deep-equal@3.1.3|
+ >|**Version**|@3.1.3|
+ >|**Repository**|https://github.com/epoberezkin/fast-deep-equal|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Evgeny Poberezkin|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i fast-deep-equal@3.1.3
+ ```
+
+
+ fast-glob@3.3.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|fast-glob@3.3.2|
+ >|**Version**|@3.3.2|
+ >|**Repository**|https://github.com/mrmlnc/fast-glob|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Denis Malinochkin|
+ >|**Contact**|NA|
+ >|**Homepage**|https://mrmlnc.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i fast-glob@3.3.2
+ ```
+
+
+ fast-json-stable-stringify@2.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|fast-json-stable-stringify@2.1.0|
+ >|**Version**|@2.1.0|
+ >|**Repository**|https://github.com/epoberezkin/fast-json-stable-stringify|
+ >|**Licenses**|MIT|
+ >|**Publisher**|James Halliday|
+ >|**Contact**|mail@substack.net|
+ >|**Homepage**|http://substack.net|
+
+ #### Use this package in your project
+ ```bash
+ npm i fast-json-stable-stringify@2.1.0
+ ```
+
+
+ fast-levenshtein@2.0.6
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|fast-levenshtein@2.0.6|
+ >|**Version**|@2.0.6|
+ >|**Repository**|https://github.com/hiddentao/fast-levenshtein|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Ramesh Nair|
+ >|**Contact**|ram@hiddentao.com|
+ >|**Homepage**|http://www.hiddentao.com/|
+
+ #### Use this package in your project
+ ```bash
+ npm i fast-levenshtein@2.0.6
+ ```
+
+
+ fast-safe-stringify@2.1.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|fast-safe-stringify@2.1.1|
+ >|**Version**|@2.1.1|
+ >|**Repository**|https://github.com/davidmarkclements/fast-safe-stringify|
+ >|**Licenses**|MIT|
+ >|**Publisher**|David Mark Clements|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i fast-safe-stringify@2.1.1
+ ```
+
+
+ fastq@1.16.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|fastq@1.16.0|
+ >|**Version**|@1.16.0|
+ >|**Repository**|https://github.com/mcollina/fastq|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Matteo Collina|
+ >|**Contact**|hello@matteocollina.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i fastq@1.16.0
+ ```
+
+
+ faye-websocket@0.11.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|faye-websocket@0.11.4|
+ >|**Version**|@0.11.4|
+ >|**Repository**|https://github.com/faye/faye-websocket-node|
+ >|**Licenses**|Apache-2.0|
+ >|**Publisher**|James Coglan|
+ >|**Contact**|jcoglan@gmail.com|
+ >|**Homepage**|http://jcoglan.com/|
+
+ #### Use this package in your project
+ ```bash
+ npm i faye-websocket@0.11.4
+ ```
+
+
+ fb-watchman@2.0.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|fb-watchman@2.0.2|
+ >|**Version**|@2.0.2|
+ >|**Repository**|https://github.com/facebook/watchman|
+ >|**Licenses**|Apache-2.0|
+ >|**Publisher**|Wez Furlong|
+ >|**Contact**|wez@fb.com|
+ >|**Homepage**|http://wezfurlong.org|
+
+ #### Use this package in your project
+ ```bash
+ npm i fb-watchman@2.0.2
+ ```
+
+
+ figures@2.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|figures@2.0.0|
+ >|**Version**|@2.0.0|
+ >|**Repository**|https://github.com/sindresorhus/figures|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i figures@2.0.0
+ ```
+
+
+ file-entry-cache@6.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|file-entry-cache@6.0.1|
+ >|**Version**|@6.0.1|
+ >|**Repository**|https://github.com/royriojas/file-entry-cache|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Roy Riojas|
+ >|**Contact**|NA|
+ >|**Homepage**|http://royriojas.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i file-entry-cache@6.0.1
+ ```
+
+
+ file-loader@6.2.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|file-loader@6.2.0|
+ >|**Version**|@6.2.0|
+ >|**Repository**|https://github.com/webpack-contrib/file-loader|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Tobias Koppers @sokra|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i file-loader@6.2.0
+ ```
+
+
+ filelist@1.0.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|filelist@1.0.4|
+ >|**Version**|@1.0.4|
+ >|**Repository**|https://github.com/mde/filelist|
+ >|**Licenses**|Apache-2.0|
+ >|**Publisher**|Matthew Eernisse|
+ >|**Contact**|mde@fleegix.org|
+ >|**Homepage**|http://fleegix.org|
+
+ #### Use this package in your project
+ ```bash
+ npm i filelist@1.0.4
+ ```
+
+
+ filesize@8.0.7
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|filesize@8.0.7|
+ >|**Version**|@8.0.7|
+ >|**Repository**|https://github.com/avoidwork/filesize.js|
+ >|**Licenses**|BSD-3-Clause|
+ >|**Publisher**|Jason Mulligan|
+ >|**Contact**|jason.mulligan@avoidwork.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i filesize@8.0.7
+ ```
+
+
+ fill-range@7.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|fill-range@7.0.1|
+ >|**Version**|@7.0.1|
+ >|**Repository**|https://github.com/jonschlinkert/fill-range|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jon Schlinkert|
+ >|**Contact**|NA|
+ >|**Homepage**|https://github.com/jonschlinkert|
+
+ #### Use this package in your project
+ ```bash
+ npm i fill-range@7.0.1
+ ```
+
+
+ finalhandler@1.2.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|finalhandler@1.2.0|
+ >|**Version**|@1.2.0|
+ >|**Repository**|https://github.com/pillarjs/finalhandler|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Douglas Christopher Wilson|
+ >|**Contact**|doug@somethingdoug.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i finalhandler@1.2.0
+ ```
+
+
+ find-cache-dir@3.3.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|find-cache-dir@3.3.2|
+ >|**Version**|@3.3.2|
+ >|**Repository**|https://github.com/avajs/find-cache-dir|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i find-cache-dir@3.3.2
+ ```
+
+
+ find-root@1.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|find-root@1.1.0|
+ >|**Version**|@1.1.0|
+ >|**Repository**|https://github.com/js-n/find-root|
+ >|**Licenses**|MIT|
+ >|**Publisher**|jsdnxx|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i find-root@1.1.0
+ ```
+
+
+ find-up@3.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|find-up@3.0.0|
+ >|**Version**|@3.0.0|
+ >|**Repository**|https://github.com/sindresorhus/find-up|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i find-up@3.0.0
+ ```
+
+
+ find-up@4.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|find-up@4.1.0|
+ >|**Version**|@4.1.0|
+ >|**Repository**|https://github.com/sindresorhus/find-up|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i find-up@4.1.0
+ ```
+
+
+ find-up@5.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|find-up@5.0.0|
+ >|**Version**|@5.0.0|
+ >|**Repository**|https://github.com/sindresorhus/find-up|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|https://sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i find-up@5.0.0
+ ```
+
+
+ flat-cache@3.2.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|flat-cache@3.2.0|
+ >|**Version**|@3.2.0|
+ >|**Repository**|https://github.com/jaredwray/flat-cache|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jared Wray|
+ >|**Contact**|NA|
+ >|**Homepage**|https://jaredwray.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i flat-cache@3.2.0
+ ```
+
+
+ flatted@3.2.9
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|flatted@3.2.9|
+ >|**Version**|@3.2.9|
+ >|**Repository**|https://github.com/WebReflection/flatted|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Andrea Giammarchi|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i flatted@3.2.9
+ ```
+
+
+ follow-redirects@1.15.5
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|follow-redirects@1.15.5|
+ >|**Version**|@1.15.5|
+ >|**Repository**|https://github.com/follow-redirects/follow-redirects|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Ruben Verborgh|
+ >|**Contact**|ruben@verborgh.org|
+ >|**Homepage**|https://ruben.verborgh.org/|
+
+ #### Use this package in your project
+ ```bash
+ npm i follow-redirects@1.15.5
+ ```
+
+
+ for-each@0.3.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|for-each@0.3.3|
+ >|**Version**|@0.3.3|
+ >|**Repository**|https://github.com/Raynos/for-each|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Raynos|
+ >|**Contact**|raynos2@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i for-each@0.3.3
+ ```
+
+
+ foreground-child@3.1.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|foreground-child@3.1.1|
+ >|**Version**|@3.1.1|
+ >|**Repository**|https://github.com/tapjs/foreground-child|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Isaac Z. Schlueter|
+ >|**Contact**|i@izs.me|
+ >|**Homepage**|http://blog.izs.me/|
+
+ #### Use this package in your project
+ ```bash
+ npm i foreground-child@3.1.1
+ ```
+
+
+ fork-ts-checker-webpack-plugin@6.5.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|fork-ts-checker-webpack-plugin@6.5.3|
+ >|**Version**|@6.5.3|
+ >|**Repository**|https://github.com/TypeStrong/fork-ts-checker-webpack-plugin|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Piotr OleÅ›|
+ >|**Contact**|piotrek.oles@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i fork-ts-checker-webpack-plugin@6.5.3
+ ```
+
+
+ form-data@3.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|form-data@3.0.1|
+ >|**Version**|@3.0.1|
+ >|**Repository**|https://github.com/form-data/form-data|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Felix Geisendörfer|
+ >|**Contact**|felix@debuggable.com|
+ >|**Homepage**|http://debuggable.com/|
+
+ #### Use this package in your project
+ ```bash
+ npm i form-data@3.0.1
+ ```
+
+
+ form-data@4.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|form-data@4.0.0|
+ >|**Version**|@4.0.0|
+ >|**Repository**|https://github.com/form-data/form-data|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Felix Geisendörfer|
+ >|**Contact**|felix@debuggable.com|
+ >|**Homepage**|http://debuggable.com/|
+
+ #### Use this package in your project
+ ```bash
+ npm i form-data@4.0.0
+ ```
+
+
+ formidable@2.1.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|formidable@2.1.2|
+ >|**Version**|@2.1.2|
+ >|**Repository**|https://github.com/node-formidable/formidable|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i formidable@2.1.2
+ ```
+
+
+ formik@2.4.5
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|formik@2.4.5|
+ >|**Version**|@2.4.5|
+ >|**Repository**|https://github.com/jaredpalmer/formik|
+ >|**Licenses**|Apache-2.0|
+ >|**Publisher**|Jared Palmer|
+ >|**Contact**|jared@palmer.net|
+ >|**Homepage**|https://jaredpalmer.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i formik@2.4.5
+ ```
+
+
+ forwarded@0.2.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|forwarded@0.2.0|
+ >|**Version**|@0.2.0|
+ >|**Repository**|https://github.com/jshttp/forwarded|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i forwarded@0.2.0
+ ```
+
+
+ fraction.js@4.3.7
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|fraction.js@4.3.7|
+ >|**Version**|@.4.3.7|
+ >|**Repository**|https://github.com/rawify/Fraction.js|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Robert Eisele|
+ >|**Contact**|robert@raw.org|
+ >|**Homepage**|https://raw.org/|
+
+ #### Use this package in your project
+ ```bash
+ npm i fraction.js@4.3.7
+ ```
+
+
+ fresh@0.5.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|fresh@0.5.2|
+ >|**Version**|@0.5.2|
+ >|**Repository**|https://github.com/jshttp/fresh|
+ >|**Licenses**|MIT|
+ >|**Publisher**|TJ Holowaychuk|
+ >|**Contact**|tj@vision-media.ca|
+ >|**Homepage**|http://tjholowaychuk.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i fresh@0.5.2
+ ```
+
+
+ fs-extra@10.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|fs-extra@10.1.0|
+ >|**Version**|@10.1.0|
+ >|**Repository**|https://github.com/jprichardson/node-fs-extra|
+ >|**Licenses**|MIT|
+ >|**Publisher**|JP Richardson|
+ >|**Contact**|jprichardson@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i fs-extra@10.1.0
+ ```
+
+
+ fs-extra@11.2.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|fs-extra@11.2.0|
+ >|**Version**|@11.2.0|
+ >|**Repository**|https://github.com/jprichardson/node-fs-extra|
+ >|**Licenses**|MIT|
+ >|**Publisher**|JP Richardson|
+ >|**Contact**|jprichardson@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i fs-extra@11.2.0
+ ```
+
+
+ fs-extra@9.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|fs-extra@9.1.0|
+ >|**Version**|@9.1.0|
+ >|**Repository**|https://github.com/jprichardson/node-fs-extra|
+ >|**Licenses**|MIT|
+ >|**Publisher**|JP Richardson|
+ >|**Contact**|jprichardson@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i fs-extra@9.1.0
+ ```
+
+
+ fs-monkey@1.0.5
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|fs-monkey@1.0.5|
+ >|**Version**|@1.0.5|
+ >|**Repository**|https://github.com/streamich/fs-monkey|
+ >|**Licenses**|Unlicense|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i fs-monkey@1.0.5
+ ```
+
+
+ fs.realpath@1.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|fs.realpath@1.0.0|
+ >|**Version**|@.1.0.0|
+ >|**Repository**|https://github.com/isaacs/fs.realpath|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Isaac Z. Schlueter|
+ >|**Contact**|i@izs.me|
+ >|**Homepage**|http://blog.izs.me/|
+
+ #### Use this package in your project
+ ```bash
+ npm i fs.realpath@1.0.0
+ ```
+
+
+ function-bind@1.1.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|function-bind@1.1.2|
+ >|**Version**|@1.1.2|
+ >|**Repository**|https://github.com/Raynos/function-bind|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Raynos|
+ >|**Contact**|raynos2@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i function-bind@1.1.2
+ ```
+
+
+ function.prototype.name@1.1.6
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|function.prototype.name@1.1.6|
+ >|**Version**|@..1.1.6|
+ >|**Repository**|https://github.com/es-shims/Function.prototype.name|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i function.prototype.name@1.1.6
+ ```
+
+
+ functions-have-names@1.2.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|functions-have-names@1.2.3|
+ >|**Version**|@1.2.3|
+ >|**Repository**|https://github.com/inspect-js/functions-have-names|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i functions-have-names@1.2.3
+ ```
+
+
+ gensync@1.0.0-beta.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|gensync@1.0.0-beta.2|
+ >|**Version**|@1.0.0.2|
+ >|**Repository**|https://github.com/loganfsmyth/gensync|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Logan Smyth|
+ >|**Contact**|loganfsmyth@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i gensync@1.0.0-beta.2
+ ```
+
+
+ get-caller-file@2.0.5
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|get-caller-file@2.0.5|
+ >|**Version**|@2.0.5|
+ >|**Repository**|https://github.com/stefanpenner/get-caller-file|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Stefan Penner|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i get-caller-file@2.0.5
+ ```
+
+
+ get-intrinsic@1.2.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|get-intrinsic@1.2.2|
+ >|**Version**|@1.2.2|
+ >|**Repository**|https://github.com/ljharb/get-intrinsic|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i get-intrinsic@1.2.2
+ ```
+
+
+ get-own-enumerable-property-symbols@3.0.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|get-own-enumerable-property-symbols@3.0.2|
+ >|**Version**|@3.0.2|
+ >|**Repository**|https://github.com/mightyiam/get-own-enumerable-property-symbols|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Shahar Or|
+ >|**Contact**|mightyiampresence@gmail.com|
+ >|**Homepage**|mightyiam|
+
+ #### Use this package in your project
+ ```bash
+ npm i get-own-enumerable-property-symbols@3.0.2
+ ```
+
+
+ get-package-type@0.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|get-package-type@0.1.0|
+ >|**Version**|@0.1.0|
+ >|**Repository**|https://github.com/cfware/get-package-type|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Corey Farrell|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i get-package-type@0.1.0
+ ```
+
+
+ get-stream@6.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|get-stream@6.0.1|
+ >|**Version**|@6.0.1|
+ >|**Repository**|https://github.com/sindresorhus/get-stream|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|https://sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i get-stream@6.0.1
+ ```
+
+
+ get-symbol-description@1.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|get-symbol-description@1.0.0|
+ >|**Version**|@1.0.0|
+ >|**Repository**|https://github.com/inspect-js/get-symbol-description|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i get-symbol-description@1.0.0
+ ```
+
+
+ git-raw-commits@2.0.11
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|git-raw-commits@2.0.11|
+ >|**Version**|@2.0.11|
+ >|**Repository**|https://github.com/conventional-changelog/conventional-changelog|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Steve Mao|
+ >|**Contact**|maochenyan@gmail.com|
+ >|**Homepage**|https://github.com/stevemao|
+
+ #### Use this package in your project
+ ```bash
+ npm i git-raw-commits@2.0.11
+ ```
+
+
+ glob-parent@5.1.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|glob-parent@5.1.2|
+ >|**Version**|@5.1.2|
+ >|**Repository**|https://github.com/gulpjs/glob-parent|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Gulp Team|
+ >|**Contact**|team@gulpjs.com|
+ >|**Homepage**|https://gulpjs.com/|
+
+ #### Use this package in your project
+ ```bash
+ npm i glob-parent@5.1.2
+ ```
+
+
+ glob-parent@6.0.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|glob-parent@6.0.2|
+ >|**Version**|@6.0.2|
+ >|**Repository**|https://github.com/gulpjs/glob-parent|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Gulp Team|
+ >|**Contact**|team@gulpjs.com|
+ >|**Homepage**|https://gulpjs.com/|
+
+ #### Use this package in your project
+ ```bash
+ npm i glob-parent@6.0.2
+ ```
+
+
+ glob-to-regexp@0.4.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|glob-to-regexp@0.4.1|
+ >|**Version**|@0.4.1|
+ >|**Repository**|https://github.com/fitzgen/glob-to-regexp|
+ >|**Licenses**|BSD-2-Clause|
+ >|**Publisher**|Nick Fitzgerald|
+ >|**Contact**|fitzgen@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i glob-to-regexp@0.4.1
+ ```
+
+
+ glob@10.3.10
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|glob@10.3.10|
+ >|**Version**|@10.3.10|
+ >|**Repository**|https://github.com/isaacs/node-glob|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Isaac Z. Schlueter|
+ >|**Contact**|i@izs.me|
+ >|**Homepage**|https://blog.izs.me/|
+
+ #### Use this package in your project
+ ```bash
+ npm i glob@10.3.10
+ ```
+
+
+ glob@7.2.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|glob@7.2.3|
+ >|**Version**|@7.2.3|
+ >|**Repository**|https://github.com/isaacs/node-glob|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Isaac Z. Schlueter|
+ >|**Contact**|i@izs.me|
+ >|**Homepage**|http://blog.izs.me/|
+
+ #### Use this package in your project
+ ```bash
+ npm i glob@7.2.3
+ ```
+
+
+ global-dirs@0.1.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|global-dirs@0.1.1|
+ >|**Version**|@0.1.1|
+ >|**Repository**|https://github.com/sindresorhus/global-dirs|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i global-dirs@0.1.1
+ ```
+
+
+ global-modules@2.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|global-modules@2.0.0|
+ >|**Version**|@2.0.0|
+ >|**Repository**|https://github.com/jonschlinkert/global-modules|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jon Schlinkert|
+ >|**Contact**|NA|
+ >|**Homepage**|https://github.com/jonschlinkert|
+
+ #### Use this package in your project
+ ```bash
+ npm i global-modules@2.0.0
+ ```
+
+
+ global-prefix@3.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|global-prefix@3.0.0|
+ >|**Version**|@3.0.0|
+ >|**Repository**|https://github.com/jonschlinkert/global-prefix|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jon Schlinkert|
+ >|**Contact**|NA|
+ >|**Homepage**|https://github.com/jonschlinkert|
+
+ #### Use this package in your project
+ ```bash
+ npm i global-prefix@3.0.0
+ ```
+
+
+ globals@11.12.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|globals@11.12.0|
+ >|**Version**|@11.12.0|
+ >|**Repository**|https://github.com/sindresorhus/globals|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i globals@11.12.0
+ ```
+
+
+ globals@13.24.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|globals@13.24.0|
+ >|**Version**|@13.24.0|
+ >|**Repository**|https://github.com/sindresorhus/globals|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|https://sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i globals@13.24.0
+ ```
+
+
+ globalthis@1.0.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|globalthis@1.0.3|
+ >|**Version**|@1.0.3|
+ >|**Repository**|https://github.com/ljharb/System.global|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i globalthis@1.0.3
+ ```
+
+
+ globby@11.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|globby@11.1.0|
+ >|**Version**|@11.1.0|
+ >|**Repository**|https://github.com/sindresorhus/globby|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|https://sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i globby@11.1.0
+ ```
+
+
+ gopd@1.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|gopd@1.0.1|
+ >|**Version**|@1.0.1|
+ >|**Repository**|https://github.com/ljharb/gopd|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i gopd@1.0.1
+ ```
+
+
+ graceful-fs@4.2.11
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|graceful-fs@4.2.11|
+ >|**Version**|@4.2.11|
+ >|**Repository**|https://github.com/isaacs/node-graceful-fs|
+ >|**Licenses**|ISC|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i graceful-fs@4.2.11
+ ```
+
+
+ graphemer@1.4.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|graphemer@1.4.0|
+ >|**Version**|@1.4.0|
+ >|**Repository**|https://github.com/flmnt/graphemer|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Matt Davies|
+ >|**Contact**|matt@filament.so|
+ >|**Homepage**|https://github.com/mattpauldavies|
+
+ #### Use this package in your project
+ ```bash
+ npm i graphemer@1.4.0
+ ```
+
+
+ gzip-size@6.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|gzip-size@6.0.0|
+ >|**Version**|@6.0.0|
+ >|**Repository**|https://github.com/sindresorhus/gzip-size|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|https://sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i gzip-size@6.0.0
+ ```
+
+
+ handle-thing@2.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|handle-thing@2.0.1|
+ >|**Version**|@2.0.1|
+ >|**Repository**|https://github.com/indutny/handle-thing|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Fedor Indutny|
+ >|**Contact**|fedor@indutny.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i handle-thing@2.0.1
+ ```
+
+
+ hard-rejection@2.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|hard-rejection@2.1.0|
+ >|**Version**|@2.1.0|
+ >|**Repository**|https://github.com/sindresorhus/hard-rejection|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i hard-rejection@2.1.0
+ ```
+
+
+ harmony-reflect@1.6.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|harmony-reflect@1.6.2|
+ >|**Version**|@1.6.2|
+ >|**Repository**|git+https://tvcutsem@github.com/tvcutsem/harmony-reflect|
+ >|**Licenses**|(Apache-2.0 OR MPL-1.1)|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i harmony-reflect@1.6.2
+ ```
+
+
+ has-bigints@1.0.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|has-bigints@1.0.2|
+ >|**Version**|@1.0.2|
+ >|**Repository**|https://github.com/ljharb/has-bigints|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i has-bigints@1.0.2
+ ```
+
+
+ has-flag@3.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|has-flag@3.0.0|
+ >|**Version**|@3.0.0|
+ >|**Repository**|https://github.com/sindresorhus/has-flag|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i has-flag@3.0.0
+ ```
+
+
+ has-flag@4.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|has-flag@4.0.0|
+ >|**Version**|@4.0.0|
+ >|**Repository**|https://github.com/sindresorhus/has-flag|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i has-flag@4.0.0
+ ```
+
+
+ has-property-descriptors@1.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|has-property-descriptors@1.0.1|
+ >|**Version**|@1.0.1|
+ >|**Repository**|https://github.com/inspect-js/has-property-descriptors|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i has-property-descriptors@1.0.1
+ ```
+
+
+ has-proto@1.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|has-proto@1.0.1|
+ >|**Version**|@1.0.1|
+ >|**Repository**|https://github.com/inspect-js/has-proto|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i has-proto@1.0.1
+ ```
+
+
+ has-symbols@1.0.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|has-symbols@1.0.3|
+ >|**Version**|@1.0.3|
+ >|**Repository**|https://github.com/inspect-js/has-symbols|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|http://ljharb.codes|
+
+ #### Use this package in your project
+ ```bash
+ npm i has-symbols@1.0.3
+ ```
+
+
+ has-tostringtag@1.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|has-tostringtag@1.0.0|
+ >|**Version**|@1.0.0|
+ >|**Repository**|https://github.com/inspect-js/has-tostringtag|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|http://ljharb.codes|
+
+ #### Use this package in your project
+ ```bash
+ npm i has-tostringtag@1.0.0
+ ```
+
+
+ hasown@2.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|hasown@2.0.0|
+ >|**Version**|@2.0.0|
+ >|**Repository**|https://github.com/inspect-js/hasOwn|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i hasown@2.0.0
+ ```
+
+
+ he@1.2.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|he@1.2.0|
+ >|**Version**|@1.2.0|
+ >|**Repository**|https://github.com/mathiasbynens/he|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Mathias Bynens|
+ >|**Contact**|NA|
+ >|**Homepage**|https://mathiasbynens.be/|
+
+ #### Use this package in your project
+ ```bash
+ npm i he@1.2.0
+ ```
+
+
+ hexoid@1.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|hexoid@1.0.0|
+ >|**Version**|@1.0.0|
+ >|**Repository**|https://github.com/lukeed/hexoid|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Luke Edwards|
+ >|**Contact**|luke.edwards05@gmail.com|
+ >|**Homepage**|https://lukeed.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i hexoid@1.0.0
+ ```
+
+
+ hoist-non-react-statics@3.3.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|hoist-non-react-statics@3.3.2|
+ >|**Version**|@3.3.2|
+ >|**Repository**|https://github.com/mridgway/hoist-non-react-statics|
+ >|**Licenses**|BSD-3-Clause|
+ >|**Publisher**|Michael Ridgway|
+ >|**Contact**|mcridgway@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i hoist-non-react-statics@3.3.2
+ ```
+
+
+ hoopy@0.1.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|hoopy@0.1.4|
+ >|**Version**|@0.1.4|
+ >|**Repository**|git+https://gitlab.com/philbooth/hoopy|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Phil Booth|
+ >|**Contact**|pmbooth@gmail.com|
+ >|**Homepage**|https://philbooth.me/|
+
+ #### Use this package in your project
+ ```bash
+ npm i hoopy@0.1.4
+ ```
+
+
+ hosted-git-info@2.8.9
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|hosted-git-info@2.8.9|
+ >|**Version**|@2.8.9|
+ >|**Repository**|https://github.com/npm/hosted-git-info|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Rebecca Turner|
+ >|**Contact**|me@re-becca.org|
+ >|**Homepage**|http://re-becca.org|
+
+ #### Use this package in your project
+ ```bash
+ npm i hosted-git-info@2.8.9
+ ```
+
+
+ hosted-git-info@4.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|hosted-git-info@4.1.0|
+ >|**Version**|@4.1.0|
+ >|**Repository**|https://github.com/npm/hosted-git-info|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Rebecca Turner|
+ >|**Contact**|me@re-becca.org|
+ >|**Homepage**|http://re-becca.org|
+
+ #### Use this package in your project
+ ```bash
+ npm i hosted-git-info@4.1.0
+ ```
+
+
+ hpack.js@2.1.6
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|hpack.js@2.1.6|
+ >|**Version**|@.2.1.6|
+ >|**Repository**|https://github.com/indutny/hpack.js|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Fedor Indutny|
+ >|**Contact**|fedor@indutny.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i hpack.js@2.1.6
+ ```
+
+
+ html-encoding-sniffer@2.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|html-encoding-sniffer@2.0.1|
+ >|**Version**|@2.0.1|
+ >|**Repository**|https://github.com/jsdom/html-encoding-sniffer|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Domenic Denicola|
+ >|**Contact**|d@domenic.me|
+ >|**Homepage**|https://domenic.me/|
+
+ #### Use this package in your project
+ ```bash
+ npm i html-encoding-sniffer@2.0.1
+ ```
+
+
+ html-entities@2.4.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|html-entities@2.4.0|
+ >|**Version**|@2.4.0|
+ >|**Repository**|https://github.com/mdevils/html-entities|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Marat Dulin|
+ >|**Contact**|mdevils@yandex.ru|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i html-entities@2.4.0
+ ```
+
+
+ html-escaper@2.0.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|html-escaper@2.0.2|
+ >|**Version**|@2.0.2|
+ >|**Repository**|https://github.com/WebReflection/html-escaper|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Andrea Giammarchi|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i html-escaper@2.0.2
+ ```
+
+
+ html-minifier-terser@6.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|html-minifier-terser@6.1.0|
+ >|**Version**|@6.1.0|
+ >|**Repository**|https://github.com/terser/html-minifier-terser|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Daniel Ruf|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i html-minifier-terser@6.1.0
+ ```
+
+
+ html-webpack-plugin@5.6.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|html-webpack-plugin@5.6.0|
+ >|**Version**|@5.6.0|
+ >|**Repository**|https://github.com/jantimon/html-webpack-plugin|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jan Nicklas|
+ >|**Contact**|j.nicklas@me.com|
+ >|**Homepage**|https://github.com/jantimon|
+
+ #### Use this package in your project
+ ```bash
+ npm i html-webpack-plugin@5.6.0
+ ```
+
+
+ htmlparser2@6.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|htmlparser2@6.1.0|
+ >|**Version**|@26.1.0|
+ >|**Repository**|https://github.com/fb55/htmlparser2|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Felix Boehm|
+ >|**Contact**|me@feedic.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i htmlparser2@6.1.0
+ ```
+
+
+ http-deceiver@1.2.7
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|http-deceiver@1.2.7|
+ >|**Version**|@1.2.7|
+ >|**Repository**|https://github.com/indutny/http-deceiver|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Fedor Indutny|
+ >|**Contact**|fedor@indutny.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i http-deceiver@1.2.7
+ ```
+
+
+ http-errors@1.6.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|http-errors@1.6.3|
+ >|**Version**|@1.6.3|
+ >|**Repository**|https://github.com/jshttp/http-errors|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jonathan Ong|
+ >|**Contact**|me@jongleberry.com|
+ >|**Homepage**|http://jongleberry.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i http-errors@1.6.3
+ ```
+
+
+ http-errors@2.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|http-errors@2.0.0|
+ >|**Version**|@2.0.0|
+ >|**Repository**|https://github.com/jshttp/http-errors|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jonathan Ong|
+ >|**Contact**|me@jongleberry.com|
+ >|**Homepage**|http://jongleberry.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i http-errors@2.0.0
+ ```
+
+
+ http-parser-js@0.5.8
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|http-parser-js@0.5.8|
+ >|**Version**|@0.5.8|
+ >|**Repository**|https://github.com/creationix/http-parser-js|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Tim Caswell|
+ >|**Contact**|NA|
+ >|**Homepage**|https://github.com/creationix|
+
+ #### Use this package in your project
+ ```bash
+ npm i http-parser-js@0.5.8
+ ```
+
+
+ http-proxy-agent@4.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|http-proxy-agent@4.0.1|
+ >|**Version**|@4.0.1|
+ >|**Repository**|https://github.com/TooTallNate/node-http-proxy-agent|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Nathan Rajlich|
+ >|**Contact**|nathan@tootallnate.net|
+ >|**Homepage**|http://n8.io/|
+
+ #### Use this package in your project
+ ```bash
+ npm i http-proxy-agent@4.0.1
+ ```
+
+
+ http-proxy-middleware@2.0.6
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|http-proxy-middleware@2.0.6|
+ >|**Version**|@2.0.6|
+ >|**Repository**|https://github.com/chimurai/http-proxy-middleware|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Steven Chim|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i http-proxy-middleware@2.0.6
+ ```
+
+
+ http-proxy@1.18.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|http-proxy@1.18.1|
+ >|**Version**|@1.18.1|
+ >|**Repository**|https://github.com/http-party/node-http-proxy|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Charlie Robbins|
+ >|**Contact**|charlie.robbins@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i http-proxy@1.18.1
+ ```
+
+
+ https-proxy-agent@5.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|https-proxy-agent@5.0.1|
+ >|**Version**|@5.0.1|
+ >|**Repository**|https://github.com/TooTallNate/node-https-proxy-agent|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Nathan Rajlich|
+ >|**Contact**|nathan@tootallnate.net|
+ >|**Homepage**|http://n8.io/|
+
+ #### Use this package in your project
+ ```bash
+ npm i https-proxy-agent@5.0.1
+ ```
+
+
+ human-signals@2.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|human-signals@2.1.0|
+ >|**Version**|@2.1.0|
+ >|**Repository**|https://github.com/ehmicky/human-signals|
+ >|**Licenses**|Apache-2.0|
+ >|**Publisher**|ehmicky|
+ >|**Contact**|ehmicky@gmail.com|
+ >|**Homepage**|https://github.com/ehmicky|
+
+ #### Use this package in your project
+ ```bash
+ npm i human-signals@2.1.0
+ ```
+
+
+ husky@8.0.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|husky@8.0.3|
+ >|**Version**|@8.0.3|
+ >|**Repository**|https://github.com/typicode/husky|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Typicode|
+ >|**Contact**|typicode@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i husky@8.0.3
+ ```
+
+
+ iconv-lite@0.4.24
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|iconv-lite@0.4.24|
+ >|**Version**|@0.4.24|
+ >|**Repository**|https://github.com/ashtuchkin/iconv-lite|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Alexander Shtuchkin|
+ >|**Contact**|ashtuchkin@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i iconv-lite@0.4.24
+ ```
+
+
+ iconv-lite@0.6.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|iconv-lite@0.6.3|
+ >|**Version**|@0.6.3|
+ >|**Repository**|https://github.com/ashtuchkin/iconv-lite|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Alexander Shtuchkin|
+ >|**Contact**|ashtuchkin@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i iconv-lite@0.6.3
+ ```
+
+
+ icss-utils@5.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|icss-utils@5.1.0|
+ >|**Version**|@5.1.0|
+ >|**Repository**|https://github.com/css-modules/icss-utils|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Glen Maddern|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i icss-utils@5.1.0
+ ```
+
+
+ idb@7.1.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|idb@7.1.1|
+ >|**Version**|@7.1.1|
+ >|**Repository**|https://github.com/jakearchibald/idb|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Jake Archibald|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i idb@7.1.1
+ ```
+
+
+ identity-obj-proxy@3.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|identity-obj-proxy@3.0.0|
+ >|**Version**|@3.0.0|
+ >|**Repository**|https://github.com/keyanzhang/identity-obj-proxy|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Keyan Zhang|
+ >|**Contact**|root@keyanzhang.com|
+ >|**Homepage**|http://keya.nz|
+
+ #### Use this package in your project
+ ```bash
+ npm i identity-obj-proxy@3.0.0
+ ```
+
+
+ ignore@5.3.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|ignore@5.3.0|
+ >|**Version**|@5.3.0|
+ >|**Repository**|https://github.com/kaelzhang/node-ignore|
+ >|**Licenses**|MIT|
+ >|**Publisher**|kael|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i ignore@5.3.0
+ ```
+
+
+ immer@9.0.21
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|immer@9.0.21|
+ >|**Version**|@9.0.21|
+ >|**Repository**|https://github.com/immerjs/immer|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Michel Weststrate|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i immer@9.0.21
+ ```
+
+
+ import-fresh@3.3.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|import-fresh@3.3.0|
+ >|**Version**|@3.3.0|
+ >|**Repository**|https://github.com/sindresorhus/import-fresh|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|https://sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i import-fresh@3.3.0
+ ```
+
+
+ import-local@3.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|import-local@3.1.0|
+ >|**Version**|@3.1.0|
+ >|**Repository**|https://github.com/sindresorhus/import-local|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|https://sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i import-local@3.1.0
+ ```
+
+
+ imurmurhash@0.1.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|imurmurhash@0.1.4|
+ >|**Version**|@0.1.4|
+ >|**Repository**|https://github.com/jensyt/imurmurhash-js|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jens Taylor|
+ >|**Contact**|jensyt@gmail.com|
+ >|**Homepage**|https://github.com/homebrewing|
+
+ #### Use this package in your project
+ ```bash
+ npm i imurmurhash@0.1.4
+ ```
+
+
+ indent-string@4.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|indent-string@4.0.0|
+ >|**Version**|@4.0.0|
+ >|**Repository**|https://github.com/sindresorhus/indent-string|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i indent-string@4.0.0
+ ```
+
+
+ inflight@1.0.6
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|inflight@1.0.6|
+ >|**Version**|@1.0.6|
+ >|**Repository**|https://github.com/npm/inflight|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Isaac Z. Schlueter|
+ >|**Contact**|i@izs.me|
+ >|**Homepage**|http://blog.izs.me/|
+
+ #### Use this package in your project
+ ```bash
+ npm i inflight@1.0.6
+ ```
+
+
+ inherits@2.0.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|inherits@2.0.3|
+ >|**Version**|@2.0.3|
+ >|**Repository**|https://github.com/isaacs/inherits|
+ >|**Licenses**|ISC|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i inherits@2.0.3
+ ```
+
+
+ inherits@2.0.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|inherits@2.0.4|
+ >|**Version**|@2.0.4|
+ >|**Repository**|https://github.com/isaacs/inherits|
+ >|**Licenses**|ISC|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i inherits@2.0.4
+ ```
+
+
+ ini@1.3.8
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|ini@1.3.8|
+ >|**Version**|@1.3.8|
+ >|**Repository**|https://github.com/isaacs/ini|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Isaac Z. Schlueter|
+ >|**Contact**|i@izs.me|
+ >|**Homepage**|http://blog.izs.me/|
+
+ #### Use this package in your project
+ ```bash
+ npm i ini@1.3.8
+ ```
+
+
+ inquirer@6.5.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|inquirer@6.5.2|
+ >|**Version**|@6.5.2|
+ >|**Repository**|https://github.com/SBoudrias/Inquirer.js|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Simon Boudrias|
+ >|**Contact**|admin@simonboudrias.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i inquirer@6.5.2
+ ```
+
+
+ internal-slot@1.0.6
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|internal-slot@1.0.6|
+ >|**Version**|@1.0.6|
+ >|**Repository**|https://github.com/ljharb/internal-slot|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i internal-slot@1.0.6
+ ```
+
+
+ ipaddr.js@1.9.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|ipaddr.js@1.9.1|
+ >|**Version**|@.1.9.1|
+ >|**Repository**|https://github.com/whitequark/ipaddr.js|
+ >|**Licenses**|MIT|
+ >|**Publisher**|whitequark|
+ >|**Contact**|whitequark@whitequark.org|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i ipaddr.js@1.9.1
+ ```
+
+
+ ipaddr.js@2.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|ipaddr.js@2.1.0|
+ >|**Version**|@.2.1.0|
+ >|**Repository**|https://github.com/whitequark/ipaddr.js|
+ >|**Licenses**|MIT|
+ >|**Publisher**|whitequark|
+ >|**Contact**|whitequark@whitequark.org|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i ipaddr.js@2.1.0
+ ```
+
+
+ is-array-buffer@3.0.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|is-array-buffer@3.0.2|
+ >|**Version**|@3.0.2|
+ >|**Repository**|https://github.com/inspect-js/is-array-buffer|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i is-array-buffer@3.0.2
+ ```
+
+
+ is-arrayish@0.2.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|is-arrayish@0.2.1|
+ >|**Version**|@0.2.1|
+ >|**Repository**|https://github.com/qix-/node-is-arrayish|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Qix|
+ >|**Contact**|NA|
+ >|**Homepage**|http://github.com/qix-|
+
+ #### Use this package in your project
+ ```bash
+ npm i is-arrayish@0.2.1
+ ```
+
+
+ is-async-function@2.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|is-async-function@2.0.0|
+ >|**Version**|@2.0.0|
+ >|**Repository**|https://github.com/inspect-js/is-async-function|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i is-async-function@2.0.0
+ ```
+
+
+ is-bigint@1.0.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|is-bigint@1.0.4|
+ >|**Version**|@1.0.4|
+ >|**Repository**|https://github.com/inspect-js/is-bigint|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i is-bigint@1.0.4
+ ```
+
+
+ is-binary-path@2.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|is-binary-path@2.1.0|
+ >|**Version**|@2.1.0|
+ >|**Repository**|https://github.com/sindresorhus/is-binary-path|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i is-binary-path@2.1.0
+ ```
+
+
+ is-boolean-object@1.1.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|is-boolean-object@1.1.2|
+ >|**Version**|@1.1.2|
+ >|**Repository**|https://github.com/inspect-js/is-boolean-object|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i is-boolean-object@1.1.2
+ ```
+
+
+ is-callable@1.2.7
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|is-callable@1.2.7|
+ >|**Version**|@1.2.7|
+ >|**Repository**|https://github.com/inspect-js/is-callable|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|http://ljharb.codes|
+
+ #### Use this package in your project
+ ```bash
+ npm i is-callable@1.2.7
+ ```
+
+
+ is-core-module@2.13.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|is-core-module@2.13.1|
+ >|**Version**|@2.13.1|
+ >|**Repository**|https://github.com/inspect-js/is-core-module|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i is-core-module@2.13.1
+ ```
+
+
+ is-date-object@1.0.5
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|is-date-object@1.0.5|
+ >|**Version**|@1.0.5|
+ >|**Repository**|https://github.com/inspect-js/is-date-object|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i is-date-object@1.0.5
+ ```
+
+
+ is-docker@2.2.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|is-docker@2.2.1|
+ >|**Version**|@2.2.1|
+ >|**Repository**|https://github.com/sindresorhus/is-docker|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|https://sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i is-docker@2.2.1
+ ```
+
+
+ is-extglob@2.1.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|is-extglob@2.1.1|
+ >|**Version**|@2.1.1|
+ >|**Repository**|https://github.com/jonschlinkert/is-extglob|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jon Schlinkert|
+ >|**Contact**|NA|
+ >|**Homepage**|https://github.com/jonschlinkert|
+
+ #### Use this package in your project
+ ```bash
+ npm i is-extglob@2.1.1
+ ```
+
+
+ is-finalizationregistry@1.0.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|is-finalizationregistry@1.0.2|
+ >|**Version**|@1.0.2|
+ >|**Repository**|https://github.com/inspect-js/is-finalizationregistry|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i is-finalizationregistry@1.0.2
+ ```
+
+
+ is-fullwidth-code-point@2.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|is-fullwidth-code-point@2.0.0|
+ >|**Version**|@2.0.0|
+ >|**Repository**|https://github.com/sindresorhus/is-fullwidth-code-point|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i is-fullwidth-code-point@2.0.0
+ ```
+
+
+ is-fullwidth-code-point@3.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|is-fullwidth-code-point@3.0.0|
+ >|**Version**|@3.0.0|
+ >|**Repository**|https://github.com/sindresorhus/is-fullwidth-code-point|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i is-fullwidth-code-point@3.0.0
+ ```
+
+
+ is-generator-fn@2.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|is-generator-fn@2.1.0|
+ >|**Version**|@2.1.0|
+ >|**Repository**|https://github.com/sindresorhus/is-generator-fn|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i is-generator-fn@2.1.0
+ ```
+
+
+ is-generator-function@1.0.10
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|is-generator-function@1.0.10|
+ >|**Version**|@1.0.10|
+ >|**Repository**|https://github.com/inspect-js/is-generator-function|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i is-generator-function@1.0.10
+ ```
+
+
+ is-glob@4.0.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|is-glob@4.0.3|
+ >|**Version**|@4.0.3|
+ >|**Repository**|https://github.com/micromatch/is-glob|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jon Schlinkert|
+ >|**Contact**|NA|
+ >|**Homepage**|https://github.com/jonschlinkert|
+
+ #### Use this package in your project
+ ```bash
+ npm i is-glob@4.0.3
+ ```
+
+
+ is-map@2.0.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|is-map@2.0.2|
+ >|**Version**|@2.0.2|
+ >|**Repository**|https://github.com/inspect-js/is-map|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i is-map@2.0.2
+ ```
+
+
+ is-module@1.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|is-module@1.0.0|
+ >|**Version**|@1.0.0|
+ >|**Repository**|https://github.com/component/is-module|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jonathan Ong|
+ >|**Contact**|me@jongleberry.com|
+ >|**Homepage**|http://jongleberry.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i is-module@1.0.0
+ ```
+
+
+ is-negative-zero@2.0.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|is-negative-zero@2.0.2|
+ >|**Version**|@2.0.2|
+ >|**Repository**|https://github.com/inspect-js/is-negative-zero|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i is-negative-zero@2.0.2
+ ```
+
+
+ is-number-object@1.0.7
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|is-number-object@1.0.7|
+ >|**Version**|@1.0.7|
+ >|**Repository**|https://github.com/inspect-js/is-number-object|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i is-number-object@1.0.7
+ ```
+
+
+ is-number@7.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|is-number@7.0.0|
+ >|**Version**|@7.0.0|
+ >|**Repository**|https://github.com/jonschlinkert/is-number|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jon Schlinkert|
+ >|**Contact**|NA|
+ >|**Homepage**|https://github.com/jonschlinkert|
+
+ #### Use this package in your project
+ ```bash
+ npm i is-number@7.0.0
+ ```
+
+
+ is-obj@1.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|is-obj@1.0.1|
+ >|**Version**|@1.0.1|
+ >|**Repository**|https://github.com/sindresorhus/is-obj|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i is-obj@1.0.1
+ ```
+
+
+ is-obj@2.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|is-obj@2.0.0|
+ >|**Version**|@2.0.0|
+ >|**Repository**|https://github.com/sindresorhus/is-obj|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i is-obj@2.0.0
+ ```
+
+
+ is-path-inside@3.0.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|is-path-inside@3.0.3|
+ >|**Version**|@3.0.3|
+ >|**Repository**|https://github.com/sindresorhus/is-path-inside|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i is-path-inside@3.0.3
+ ```
+
+
+ is-plain-obj@1.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|is-plain-obj@1.1.0|
+ >|**Version**|@1.1.0|
+ >|**Repository**|https://github.com/sindresorhus/is-plain-obj|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i is-plain-obj@1.1.0
+ ```
+
+
+ is-plain-obj@3.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|is-plain-obj@3.0.0|
+ >|**Version**|@3.0.0|
+ >|**Repository**|https://github.com/sindresorhus/is-plain-obj|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|https://sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i is-plain-obj@3.0.0
+ ```
+
+
+ is-potential-custom-element-name@1.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|is-potential-custom-element-name@1.0.1|
+ >|**Version**|@1.0.1|
+ >|**Repository**|https://github.com/mathiasbynens/is-potential-custom-element-name|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Mathias Bynens|
+ >|**Contact**|NA|
+ >|**Homepage**|https://mathiasbynens.be/|
+
+ #### Use this package in your project
+ ```bash
+ npm i is-potential-custom-element-name@1.0.1
+ ```
+
+
+ is-regex@1.1.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|is-regex@1.1.4|
+ >|**Version**|@1.1.4|
+ >|**Repository**|https://github.com/inspect-js/is-regex|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i is-regex@1.1.4
+ ```
+
+
+ is-regexp@1.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|is-regexp@1.0.0|
+ >|**Version**|@1.0.0|
+ >|**Repository**|https://github.com/sindresorhus/is-regexp|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|http://sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i is-regexp@1.0.0
+ ```
+
+
+ is-root@2.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|is-root@2.1.0|
+ >|**Version**|@2.1.0|
+ >|**Repository**|https://github.com/sindresorhus/is-root|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i is-root@2.1.0
+ ```
+
+
+ is-set@2.0.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|is-set@2.0.2|
+ >|**Version**|@2.0.2|
+ >|**Repository**|https://github.com/inspect-js/is-set|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i is-set@2.0.2
+ ```
+
+
+ is-shared-array-buffer@1.0.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|is-shared-array-buffer@1.0.2|
+ >|**Version**|@1.0.2|
+ >|**Repository**|https://github.com/inspect-js/is-shared-array-buffer|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|http://ljharb.codes|
+
+ #### Use this package in your project
+ ```bash
+ npm i is-shared-array-buffer@1.0.2
+ ```
+
+
+ is-stream@2.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|is-stream@2.0.1|
+ >|**Version**|@2.0.1|
+ >|**Repository**|https://github.com/sindresorhus/is-stream|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|https://sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i is-stream@2.0.1
+ ```
+
+
+ is-string@1.0.7
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|is-string@1.0.7|
+ >|**Version**|@1.0.7|
+ >|**Repository**|https://github.com/ljharb/is-string|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i is-string@1.0.7
+ ```
+
+
+ is-symbol@1.0.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|is-symbol@1.0.4|
+ >|**Version**|@1.0.4|
+ >|**Repository**|https://github.com/inspect-js/is-symbol|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i is-symbol@1.0.4
+ ```
+
+
+ is-text-path@1.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|is-text-path@1.0.1|
+ >|**Version**|@1.0.1|
+ >|**Repository**|https://github.com/sindresorhus/is-text-path|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i is-text-path@1.0.1
+ ```
+
+
+ is-typed-array@1.1.12
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|is-typed-array@1.1.12|
+ >|**Version**|@1.1.12|
+ >|**Repository**|https://github.com/inspect-js/is-typed-array|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|http://ljharb.codes|
+
+ #### Use this package in your project
+ ```bash
+ npm i is-typed-array@1.1.12
+ ```
+
+
+ is-typedarray@1.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|is-typedarray@1.0.0|
+ >|**Version**|@1.0.0|
+ >|**Repository**|https://github.com/hughsk/is-typedarray|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Hugh Kennedy|
+ >|**Contact**|hughskennedy@gmail.com|
+ >|**Homepage**|http://hughsk.io/|
+
+ #### Use this package in your project
+ ```bash
+ npm i is-typedarray@1.0.0
+ ```
+
+
+ is-weakmap@2.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|is-weakmap@2.0.1|
+ >|**Version**|@2.0.1|
+ >|**Repository**|https://github.com/inspect-js/is-weakmap|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i is-weakmap@2.0.1
+ ```
+
+
+ is-weakref@1.0.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|is-weakref@1.0.2|
+ >|**Version**|@1.0.2|
+ >|**Repository**|https://github.com/inspect-js/is-weakref|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i is-weakref@1.0.2
+ ```
+
+
+ is-weakset@2.0.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|is-weakset@2.0.2|
+ >|**Version**|@2.0.2|
+ >|**Repository**|https://github.com/inspect-js/is-weakset|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i is-weakset@2.0.2
+ ```
+
+
+ is-wsl@2.2.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|is-wsl@2.2.0|
+ >|**Version**|@2.2.0|
+ >|**Repository**|https://github.com/sindresorhus/is-wsl|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i is-wsl@2.2.0
+ ```
+
+
+ isarray@1.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|isarray@1.0.0|
+ >|**Version**|@1.0.0|
+ >|**Repository**|https://github.com/juliangruber/isarray|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Julian Gruber|
+ >|**Contact**|mail@juliangruber.com|
+ >|**Homepage**|http://juliangruber.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i isarray@1.0.0
+ ```
+
+
+ isarray@2.0.5
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|isarray@2.0.5|
+ >|**Version**|@2.0.5|
+ >|**Repository**|https://github.com/juliangruber/isarray|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Julian Gruber|
+ >|**Contact**|mail@juliangruber.com|
+ >|**Homepage**|http://juliangruber.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i isarray@2.0.5
+ ```
+
+
+ isexe@2.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|isexe@2.0.0|
+ >|**Version**|@2.0.0|
+ >|**Repository**|https://github.com/isaacs/isexe|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Isaac Z. Schlueter|
+ >|**Contact**|i@izs.me|
+ >|**Homepage**|http://blog.izs.me/|
+
+ #### Use this package in your project
+ ```bash
+ npm i isexe@2.0.0
+ ```
+
+
+ istanbul-lib-coverage@3.2.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|istanbul-lib-coverage@3.2.2|
+ >|**Version**|@3.2.2|
+ >|**Repository**|https://github.com/istanbuljs/istanbuljs|
+ >|**Licenses**|BSD-3-Clause|
+ >|**Publisher**|Krishnan Anantheswaran|
+ >|**Contact**|kananthmail-github@yahoo.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i istanbul-lib-coverage@3.2.2
+ ```
+
+
+ istanbul-lib-instrument@5.2.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|istanbul-lib-instrument@5.2.1|
+ >|**Version**|@5.2.1|
+ >|**Repository**|https://github.com/istanbuljs/istanbuljs|
+ >|**Licenses**|BSD-3-Clause|
+ >|**Publisher**|Krishnan Anantheswaran|
+ >|**Contact**|kananthmail-github@yahoo.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i istanbul-lib-instrument@5.2.1
+ ```
+
+
+ istanbul-lib-report@3.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|istanbul-lib-report@3.0.1|
+ >|**Version**|@3.0.1|
+ >|**Repository**|https://github.com/istanbuljs/istanbuljs|
+ >|**Licenses**|BSD-3-Clause|
+ >|**Publisher**|Krishnan Anantheswaran|
+ >|**Contact**|kananthmail-github@yahoo.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i istanbul-lib-report@3.0.1
+ ```
+
+
+ istanbul-lib-source-maps@4.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|istanbul-lib-source-maps@4.0.1|
+ >|**Version**|@4.0.1|
+ >|**Repository**|https://github.com/istanbuljs/istanbuljs|
+ >|**Licenses**|BSD-3-Clause|
+ >|**Publisher**|Krishnan Anantheswaran|
+ >|**Contact**|kananthmail-github@yahoo.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i istanbul-lib-source-maps@4.0.1
+ ```
+
+
+ istanbul-reports@3.1.6
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|istanbul-reports@3.1.6|
+ >|**Version**|@3.1.6|
+ >|**Repository**|https://github.com/istanbuljs/istanbuljs|
+ >|**Licenses**|BSD-3-Clause|
+ >|**Publisher**|Krishnan Anantheswaran|
+ >|**Contact**|kananthmail-github@yahoo.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i istanbul-reports@3.1.6
+ ```
+
+
+ iterator.prototype@1.1.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|iterator.prototype@1.1.2|
+ >|**Version**|@.1.1.2|
+ >|**Repository**|https://github.com/ljharb/Iterator.prototype|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i iterator.prototype@1.1.2
+ ```
+
+
+ jackspeak@2.3.6
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|jackspeak@2.3.6|
+ >|**Version**|@2.3.6|
+ >|**Repository**|https://github.com/isaacs/jackspeak|
+ >|**Licenses**|BlueOak-1.0.0|
+ >|**Publisher**|Isaac Z. Schlueter|
+ >|**Contact**|i@izs.me|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i jackspeak@2.3.6
+ ```
+
+
+ jake@10.8.7
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|jake@10.8.7|
+ >|**Version**|@10.8.7|
+ >|**Repository**|https://github.com/jakejs/jake|
+ >|**Licenses**|Apache-2.0|
+ >|**Publisher**|Matthew Eernisse|
+ >|**Contact**|mde@fleegix.org|
+ >|**Homepage**|http://fleegix.org|
+
+ #### Use this package in your project
+ ```bash
+ npm i jake@10.8.7
+ ```
+
+
+ jest-changed-files@27.5.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|jest-changed-files@27.5.1|
+ >|**Version**|@27.5.1|
+ >|**Repository**|https://github.com/facebook/jest|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i jest-changed-files@27.5.1
+ ```
+
+
+ jest-circus@27.5.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|jest-circus@27.5.1|
+ >|**Version**|@27.5.1|
+ >|**Repository**|https://github.com/facebook/jest|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i jest-circus@27.5.1
+ ```
+
+
+ jest-cli@27.5.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|jest-cli@27.5.1|
+ >|**Version**|@27.5.1|
+ >|**Repository**|https://github.com/facebook/jest|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i jest-cli@27.5.1
+ ```
+
+
+ jest-config@27.5.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|jest-config@27.5.1|
+ >|**Version**|@27.5.1|
+ >|**Repository**|https://github.com/facebook/jest|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i jest-config@27.5.1
+ ```
+
+
+ jest-diff@27.5.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|jest-diff@27.5.1|
+ >|**Version**|@27.5.1|
+ >|**Repository**|https://github.com/facebook/jest|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i jest-diff@27.5.1
+ ```
+
+
+ jest-docblock@27.5.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|jest-docblock@27.5.1|
+ >|**Version**|@27.5.1|
+ >|**Repository**|https://github.com/facebook/jest|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i jest-docblock@27.5.1
+ ```
+
+
+ jest-each@27.5.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|jest-each@27.5.1|
+ >|**Version**|@27.5.1|
+ >|**Repository**|https://github.com/facebook/jest|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Matt Phillips|
+ >|**Contact**|NA|
+ >|**Homepage**|mattphillips|
+
+ #### Use this package in your project
+ ```bash
+ npm i jest-each@27.5.1
+ ```
+
+
+ jest-environment-jsdom@27.5.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|jest-environment-jsdom@27.5.1|
+ >|**Version**|@27.5.1|
+ >|**Repository**|https://github.com/facebook/jest|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i jest-environment-jsdom@27.5.1
+ ```
+
+
+ jest-environment-node@27.5.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|jest-environment-node@27.5.1|
+ >|**Version**|@27.5.1|
+ >|**Repository**|https://github.com/facebook/jest|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i jest-environment-node@27.5.1
+ ```
+
+
+ jest-get-type@27.5.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|jest-get-type@27.5.1|
+ >|**Version**|@27.5.1|
+ >|**Repository**|https://github.com/facebook/jest|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i jest-get-type@27.5.1
+ ```
+
+
+ jest-haste-map@27.5.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|jest-haste-map@27.5.1|
+ >|**Version**|@27.5.1|
+ >|**Repository**|https://github.com/facebook/jest|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i jest-haste-map@27.5.1
+ ```
+
+
+ jest-jasmine2@27.5.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|jest-jasmine2@27.5.1|
+ >|**Version**|@227.5.1|
+ >|**Repository**|https://github.com/facebook/jest|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i jest-jasmine2@27.5.1
+ ```
+
+
+ jest-leak-detector@27.5.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|jest-leak-detector@27.5.1|
+ >|**Version**|@27.5.1|
+ >|**Repository**|https://github.com/facebook/jest|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i jest-leak-detector@27.5.1
+ ```
+
+
+ jest-matcher-utils@27.5.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|jest-matcher-utils@27.5.1|
+ >|**Version**|@27.5.1|
+ >|**Repository**|https://github.com/facebook/jest|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i jest-matcher-utils@27.5.1
+ ```
+
+
+ jest-message-util@27.5.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|jest-message-util@27.5.1|
+ >|**Version**|@27.5.1|
+ >|**Repository**|https://github.com/facebook/jest|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i jest-message-util@27.5.1
+ ```
+
+
+ jest-message-util@28.1.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|jest-message-util@28.1.3|
+ >|**Version**|@28.1.3|
+ >|**Repository**|https://github.com/facebook/jest|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i jest-message-util@28.1.3
+ ```
+
+
+ jest-mock@27.5.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|jest-mock@27.5.1|
+ >|**Version**|@27.5.1|
+ >|**Repository**|https://github.com/facebook/jest|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i jest-mock@27.5.1
+ ```
+
+
+ jest-pnp-resolver@1.2.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|jest-pnp-resolver@1.2.3|
+ >|**Version**|@1.2.3|
+ >|**Repository**|https://github.com/arcanis/jest-pnp-resolver|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i jest-pnp-resolver@1.2.3
+ ```
+
+
+ jest-regex-util@27.5.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|jest-regex-util@27.5.1|
+ >|**Version**|@27.5.1|
+ >|**Repository**|https://github.com/facebook/jest|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i jest-regex-util@27.5.1
+ ```
+
+
+ jest-regex-util@28.0.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|jest-regex-util@28.0.2|
+ >|**Version**|@28.0.2|
+ >|**Repository**|https://github.com/facebook/jest|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i jest-regex-util@28.0.2
+ ```
+
+
+ jest-resolve-dependencies@27.5.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|jest-resolve-dependencies@27.5.1|
+ >|**Version**|@27.5.1|
+ >|**Repository**|https://github.com/facebook/jest|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i jest-resolve-dependencies@27.5.1
+ ```
+
+
+ jest-resolve@27.5.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|jest-resolve@27.5.1|
+ >|**Version**|@27.5.1|
+ >|**Repository**|https://github.com/facebook/jest|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i jest-resolve@27.5.1
+ ```
+
+
+ jest-runner@27.5.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|jest-runner@27.5.1|
+ >|**Version**|@27.5.1|
+ >|**Repository**|https://github.com/facebook/jest|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i jest-runner@27.5.1
+ ```
+
+
+ jest-runtime@27.5.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|jest-runtime@27.5.1|
+ >|**Version**|@27.5.1|
+ >|**Repository**|https://github.com/facebook/jest|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i jest-runtime@27.5.1
+ ```
+
+
+ jest-serializer@27.5.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|jest-serializer@27.5.1|
+ >|**Version**|@27.5.1|
+ >|**Repository**|https://github.com/facebook/jest|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i jest-serializer@27.5.1
+ ```
+
+
+ jest-snapshot@27.5.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|jest-snapshot@27.5.1|
+ >|**Version**|@27.5.1|
+ >|**Repository**|https://github.com/facebook/jest|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i jest-snapshot@27.5.1
+ ```
+
+
+ jest-util@27.5.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|jest-util@27.5.1|
+ >|**Version**|@27.5.1|
+ >|**Repository**|https://github.com/facebook/jest|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i jest-util@27.5.1
+ ```
+
+
+ jest-util@28.1.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|jest-util@28.1.3|
+ >|**Version**|@28.1.3|
+ >|**Repository**|https://github.com/facebook/jest|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i jest-util@28.1.3
+ ```
+
+
+ jest-validate@27.5.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|jest-validate@27.5.1|
+ >|**Version**|@27.5.1|
+ >|**Repository**|https://github.com/facebook/jest|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i jest-validate@27.5.1
+ ```
+
+
+ jest-watch-typeahead@1.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|jest-watch-typeahead@1.1.0|
+ >|**Version**|@1.1.0|
+ >|**Repository**|https://github.com/jest-community/jest-watch-typeahead|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Rogelio Guzman|
+ >|**Contact**|rogelioguzmanh@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i jest-watch-typeahead@1.1.0
+ ```
+
+
+ jest-watcher@27.5.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|jest-watcher@27.5.1|
+ >|**Version**|@27.5.1|
+ >|**Repository**|https://github.com/facebook/jest|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i jest-watcher@27.5.1
+ ```
+
+
+ jest-watcher@28.1.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|jest-watcher@28.1.3|
+ >|**Version**|@28.1.3|
+ >|**Repository**|https://github.com/facebook/jest|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i jest-watcher@28.1.3
+ ```
+
+
+ jest-worker@26.6.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|jest-worker@26.6.2|
+ >|**Version**|@26.6.2|
+ >|**Repository**|https://github.com/facebook/jest|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i jest-worker@26.6.2
+ ```
+
+
+ jest-worker@27.5.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|jest-worker@27.5.1|
+ >|**Version**|@27.5.1|
+ >|**Repository**|https://github.com/facebook/jest|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i jest-worker@27.5.1
+ ```
+
+
+ jest-worker@28.1.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|jest-worker@28.1.3|
+ >|**Version**|@28.1.3|
+ >|**Repository**|https://github.com/facebook/jest|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i jest-worker@28.1.3
+ ```
+
+
+ jest@27.5.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|jest@27.5.1|
+ >|**Version**|@27.5.1|
+ >|**Repository**|https://github.com/facebook/jest|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i jest@27.5.1
+ ```
+
+
+ jiti@1.21.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|jiti@1.21.0|
+ >|**Version**|@1.21.0|
+ >|**Repository**|https://github.com/unjs/jiti|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i jiti@1.21.0
+ ```
+
+
+ js-tokens@4.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|js-tokens@4.0.0|
+ >|**Version**|@4.0.0|
+ >|**Repository**|https://github.com/lydell/js-tokens|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Simon Lydell|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i js-tokens@4.0.0
+ ```
+
+
+ js-yaml@3.14.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|js-yaml@3.14.1|
+ >|**Version**|@3.14.1|
+ >|**Repository**|https://github.com/nodeca/js-yaml|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Vladimir Zapparov|
+ >|**Contact**|dervus.grim@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i js-yaml@3.14.1
+ ```
+
+
+ js-yaml@4.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|js-yaml@4.1.0|
+ >|**Version**|@4.1.0|
+ >|**Repository**|https://github.com/nodeca/js-yaml|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Vladimir Zapparov|
+ >|**Contact**|dervus.grim@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i js-yaml@4.1.0
+ ```
+
+
+ jsdom@16.7.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|jsdom@16.7.0|
+ >|**Version**|@16.7.0|
+ >|**Repository**|https://github.com/jsdom/jsdom|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i jsdom@16.7.0
+ ```
+
+
+ jsesc@0.5.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|jsesc@0.5.0|
+ >|**Version**|@0.5.0|
+ >|**Repository**|https://github.com/mathiasbynens/jsesc|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Mathias Bynens|
+ >|**Contact**|NA|
+ >|**Homepage**|http://mathiasbynens.be/|
+
+ #### Use this package in your project
+ ```bash
+ npm i jsesc@0.5.0
+ ```
+
+
+ jsesc@2.5.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|jsesc@2.5.2|
+ >|**Version**|@2.5.2|
+ >|**Repository**|https://github.com/mathiasbynens/jsesc|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Mathias Bynens|
+ >|**Contact**|NA|
+ >|**Homepage**|https://mathiasbynens.be/|
+
+ #### Use this package in your project
+ ```bash
+ npm i jsesc@2.5.2
+ ```
+
+
+ json-buffer@3.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|json-buffer@3.0.1|
+ >|**Version**|@3.0.1|
+ >|**Repository**|https://github.com/dominictarr/json-buffer|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Dominic Tarr|
+ >|**Contact**|dominic.tarr@gmail.com|
+ >|**Homepage**|http://dominictarr.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i json-buffer@3.0.1
+ ```
+
+
+ json-parse-even-better-errors@2.3.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|json-parse-even-better-errors@2.3.1|
+ >|**Version**|@2.3.1|
+ >|**Repository**|https://github.com/npm/json-parse-even-better-errors|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Kat Marchán|
+ >|**Contact**|kzm@zkat.tech|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i json-parse-even-better-errors@2.3.1
+ ```
+
+
+ json-schema-traverse@0.4.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|json-schema-traverse@0.4.1|
+ >|**Version**|@0.4.1|
+ >|**Repository**|https://github.com/epoberezkin/json-schema-traverse|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Evgeny Poberezkin|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i json-schema-traverse@0.4.1
+ ```
+
+
+ json-schema-traverse@1.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|json-schema-traverse@1.0.0|
+ >|**Version**|@1.0.0|
+ >|**Repository**|https://github.com/epoberezkin/json-schema-traverse|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Evgeny Poberezkin|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i json-schema-traverse@1.0.0
+ ```
+
+
+ json-schema@0.4.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|json-schema@0.4.0|
+ >|**Version**|@0.4.0|
+ >|**Repository**|https://github.com/kriszyp/json-schema|
+ >|**Licenses**|(AFL-2.1 OR BSD-3-Clause)|
+ >|**Publisher**|Kris Zyp|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i json-schema@0.4.0
+ ```
+
+
+ json-stable-stringify-without-jsonify@1.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|json-stable-stringify-without-jsonify@1.0.1|
+ >|**Version**|@1.0.1|
+ >|**Repository**|https://github.com/samn/json-stable-stringify|
+ >|**Licenses**|MIT|
+ >|**Publisher**|James Halliday|
+ >|**Contact**|mail@substack.net|
+ >|**Homepage**|http://substack.net|
+
+ #### Use this package in your project
+ ```bash
+ npm i json-stable-stringify-without-jsonify@1.0.1
+ ```
+
+
+ json5@1.0.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|json5@1.0.2|
+ >|**Version**|@51.0.2|
+ >|**Repository**|https://github.com/json5/json5|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Aseem Kishore|
+ >|**Contact**|aseem.kishore@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i json5@1.0.2
+ ```
+
+
+ json5@2.2.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|json5@2.2.3|
+ >|**Version**|@52.2.3|
+ >|**Repository**|https://github.com/json5/json5|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Aseem Kishore|
+ >|**Contact**|aseem.kishore@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i json5@2.2.3
+ ```
+
+
+ jsonfile@6.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|jsonfile@6.1.0|
+ >|**Version**|@6.1.0|
+ >|**Repository**|https://github.com/jprichardson/node-jsonfile|
+ >|**Licenses**|MIT|
+ >|**Publisher**|JP Richardson|
+ >|**Contact**|jprichardson@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i jsonfile@6.1.0
+ ```
+
+
+ jsonparse@1.3.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|jsonparse@1.3.1|
+ >|**Version**|@1.3.1|
+ >|**Repository**|https://github.com/creationix/jsonparse|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Tim Caswell|
+ >|**Contact**|tim@creationix.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i jsonparse@1.3.1
+ ```
+
+
+ jsonpath@1.1.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|jsonpath@1.1.1|
+ >|**Version**|@1.1.1|
+ >|**Repository**|https://github.com/dchester/jsonpath|
+ >|**Licenses**|MIT|
+ >|**Publisher**|david@fmail.co.uk|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i jsonpath@1.1.1
+ ```
+
+
+ jsonpointer@5.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|jsonpointer@5.0.1|
+ >|**Version**|@5.0.1|
+ >|**Repository**|https://github.com/janl/node-jsonpointer|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jan Lehnardt|
+ >|**Contact**|jan@apache.org|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i jsonpointer@5.0.1
+ ```
+
+
+ jsx-ast-utils@3.3.5
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|jsx-ast-utils@3.3.5|
+ >|**Version**|@3.3.5|
+ >|**Repository**|https://github.com/jsx-eslint/jsx-ast-utils|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Ethan Cohen|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i jsx-ast-utils@3.3.5
+ ```
+
+
+ keyv@4.5.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|keyv@4.5.4|
+ >|**Version**|@4.5.4|
+ >|**Repository**|https://github.com/jaredwray/keyv|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jared Wray|
+ >|**Contact**|me@jaredwray.com|
+ >|**Homepage**|http://jaredwray.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i keyv@4.5.4
+ ```
+
+
+ kind-of@6.0.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|kind-of@6.0.3|
+ >|**Version**|@6.0.3|
+ >|**Repository**|https://github.com/jonschlinkert/kind-of|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jon Schlinkert|
+ >|**Contact**|NA|
+ >|**Homepage**|https://github.com/jonschlinkert|
+
+ #### Use this package in your project
+ ```bash
+ npm i kind-of@6.0.3
+ ```
+
+
+ kleur@3.0.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|kleur@3.0.3|
+ >|**Version**|@3.0.3|
+ >|**Repository**|https://github.com/lukeed/kleur|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Luke Edwards|
+ >|**Contact**|luke.edwards05@gmail.com|
+ >|**Homepage**|lukeed.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i kleur@3.0.3
+ ```
+
+
+ klona@2.0.6
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|klona@2.0.6|
+ >|**Version**|@2.0.6|
+ >|**Repository**|https://github.com/lukeed/klona|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Luke Edwards|
+ >|**Contact**|luke.edwards05@gmail.com|
+ >|**Homepage**|https://lukeed.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i klona@2.0.6
+ ```
+
+
+ language-subtag-registry@0.3.22
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|language-subtag-registry@0.3.22|
+ >|**Version**|@0.3.22|
+ >|**Repository**|https://github.com/mattcg/language-subtag-registry|
+ >|**Licenses**|CC0-1.0|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i language-subtag-registry@0.3.22
+ ```
+
+
+ language-tags@1.0.9
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|language-tags@1.0.9|
+ >|**Version**|@1.0.9|
+ >|**Repository**|https://github.com/mattcg/language-tags|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Matthew Caruana Galizia|
+ >|**Contact**|mattcg@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i language-tags@1.0.9
+ ```
+
+
+ launch-editor@2.6.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|launch-editor@2.6.1|
+ >|**Version**|@2.6.1|
+ >|**Repository**|https://github.com/yyx990803/launch-editor|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Evan You|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i launch-editor@2.6.1
+ ```
+
+
+ leven@3.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|leven@3.1.0|
+ >|**Version**|@3.1.0|
+ >|**Repository**|https://github.com/sindresorhus/leven|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i leven@3.1.0
+ ```
+
+
+ levn@0.3.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|levn@0.3.0|
+ >|**Version**|@0.3.0|
+ >|**Repository**|https://github.com/gkz/levn|
+ >|**Licenses**|MIT|
+ >|**Publisher**|George Zahariev|
+ >|**Contact**|z@georgezahariev.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i levn@0.3.0
+ ```
+
+
+ levn@0.4.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|levn@0.4.1|
+ >|**Version**|@0.4.1|
+ >|**Repository**|https://github.com/gkz/levn|
+ >|**Licenses**|MIT|
+ >|**Publisher**|George Zahariev|
+ >|**Contact**|z@georgezahariev.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i levn@0.4.1
+ ```
+
+
+ license-checker@25.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|license-checker@25.0.1|
+ >|**Version**|@25.0.1|
+ >|**Repository**|https://github.com/davglass/license-checker|
+ >|**Licenses**|BSD-3-Clause|
+ >|**Publisher**|Dav Glass|
+ >|**Contact**|davglass@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i license-checker@25.0.1
+ ```
+
+
+ lilconfig@2.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|lilconfig@2.1.0|
+ >|**Version**|@2.1.0|
+ >|**Repository**|https://github.com/antonk52/lilconfig|
+ >|**Licenses**|MIT|
+ >|**Publisher**|antonk52|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i lilconfig@2.1.0
+ ```
+
+
+ lilconfig@3.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|lilconfig@3.0.0|
+ >|**Version**|@3.0.0|
+ >|**Repository**|https://github.com/antonk52/lilconfig|
+ >|**Licenses**|MIT|
+ >|**Publisher**|antonk52|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i lilconfig@3.0.0
+ ```
+
+
+ lines-and-columns@1.2.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|lines-and-columns@1.2.4|
+ >|**Version**|@1.2.4|
+ >|**Repository**|https://github.com/eventualbuddha/lines-and-columns|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Brian Donovan|
+ >|**Contact**|brian@donovans.cc|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i lines-and-columns@1.2.4
+ ```
+
+
+ loader-runner@4.3.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|loader-runner@4.3.0|
+ >|**Version**|@4.3.0|
+ >|**Repository**|https://github.com/webpack/loader-runner|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Tobias Koppers @sokra|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i loader-runner@4.3.0
+ ```
+
+
+ loader-utils@2.0.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|loader-utils@2.0.4|
+ >|**Version**|@2.0.4|
+ >|**Repository**|https://github.com/webpack/loader-utils|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Tobias Koppers @sokra|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i loader-utils@2.0.4
+ ```
+
+
+ loader-utils@3.2.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|loader-utils@3.2.1|
+ >|**Version**|@3.2.1|
+ >|**Repository**|https://github.com/webpack/loader-utils|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Tobias Koppers @sokra|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i loader-utils@3.2.1
+ ```
+
+
+ locate-path@3.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|locate-path@3.0.0|
+ >|**Version**|@3.0.0|
+ >|**Repository**|https://github.com/sindresorhus/locate-path|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i locate-path@3.0.0
+ ```
+
+
+ locate-path@5.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|locate-path@5.0.0|
+ >|**Version**|@5.0.0|
+ >|**Repository**|https://github.com/sindresorhus/locate-path|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i locate-path@5.0.0
+ ```
+
+
+ locate-path@6.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|locate-path@6.0.0|
+ >|**Version**|@6.0.0|
+ >|**Repository**|https://github.com/sindresorhus/locate-path|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|https://sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i locate-path@6.0.0
+ ```
+
+
+ lodash-es@4.17.21
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|lodash-es@4.17.21|
+ >|**Version**|@4.17.21|
+ >|**Repository**|https://github.com/lodash/lodash|
+ >|**Licenses**|MIT|
+ >|**Publisher**|John-David Dalton|
+ >|**Contact**|john.david.dalton@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i lodash-es@4.17.21
+ ```
+
+
+ lodash.camelcase@4.3.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|lodash.camelcase@4.3.0|
+ >|**Version**|@.4.3.0|
+ >|**Repository**|https://github.com/lodash/lodash|
+ >|**Licenses**|MIT|
+ >|**Publisher**|John-David Dalton|
+ >|**Contact**|john.david.dalton@gmail.com|
+ >|**Homepage**|http://allyoucanleet.com/|
+
+ #### Use this package in your project
+ ```bash
+ npm i lodash.camelcase@4.3.0
+ ```
+
+
+ lodash.debounce@4.0.8
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|lodash.debounce@4.0.8|
+ >|**Version**|@.4.0.8|
+ >|**Repository**|https://github.com/lodash/lodash|
+ >|**Licenses**|MIT|
+ >|**Publisher**|John-David Dalton|
+ >|**Contact**|john.david.dalton@gmail.com|
+ >|**Homepage**|http://allyoucanleet.com/|
+
+ #### Use this package in your project
+ ```bash
+ npm i lodash.debounce@4.0.8
+ ```
+
+
+ lodash.isfunction@3.0.9
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|lodash.isfunction@3.0.9|
+ >|**Version**|@.3.0.9|
+ >|**Repository**|https://github.com/lodash/lodash|
+ >|**Licenses**|MIT|
+ >|**Publisher**|John-David Dalton|
+ >|**Contact**|john.david.dalton@gmail.com|
+ >|**Homepage**|http://allyoucanleet.com/|
+
+ #### Use this package in your project
+ ```bash
+ npm i lodash.isfunction@3.0.9
+ ```
+
+
+ lodash.isplainobject@4.0.6
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|lodash.isplainobject@4.0.6|
+ >|**Version**|@.4.0.6|
+ >|**Repository**|https://github.com/lodash/lodash|
+ >|**Licenses**|MIT|
+ >|**Publisher**|John-David Dalton|
+ >|**Contact**|john.david.dalton@gmail.com|
+ >|**Homepage**|http://allyoucanleet.com/|
+
+ #### Use this package in your project
+ ```bash
+ npm i lodash.isplainobject@4.0.6
+ ```
+
+
+ lodash.kebabcase@4.1.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|lodash.kebabcase@4.1.1|
+ >|**Version**|@.4.1.1|
+ >|**Repository**|https://github.com/lodash/lodash|
+ >|**Licenses**|MIT|
+ >|**Publisher**|John-David Dalton|
+ >|**Contact**|john.david.dalton@gmail.com|
+ >|**Homepage**|http://allyoucanleet.com/|
+
+ #### Use this package in your project
+ ```bash
+ npm i lodash.kebabcase@4.1.1
+ ```
+
+
+ lodash.memoize@4.1.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|lodash.memoize@4.1.2|
+ >|**Version**|@.4.1.2|
+ >|**Repository**|https://github.com/lodash/lodash|
+ >|**Licenses**|MIT|
+ >|**Publisher**|John-David Dalton|
+ >|**Contact**|john.david.dalton@gmail.com|
+ >|**Homepage**|http://allyoucanleet.com/|
+
+ #### Use this package in your project
+ ```bash
+ npm i lodash.memoize@4.1.2
+ ```
+
+
+ lodash.merge@4.6.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|lodash.merge@4.6.2|
+ >|**Version**|@.4.6.2|
+ >|**Repository**|https://github.com/lodash/lodash|
+ >|**Licenses**|MIT|
+ >|**Publisher**|John-David Dalton|
+ >|**Contact**|john.david.dalton@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i lodash.merge@4.6.2
+ ```
+
+
+ lodash.mergewith@4.6.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|lodash.mergewith@4.6.2|
+ >|**Version**|@.4.6.2|
+ >|**Repository**|https://github.com/lodash/lodash|
+ >|**Licenses**|MIT|
+ >|**Publisher**|John-David Dalton|
+ >|**Contact**|john.david.dalton@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i lodash.mergewith@4.6.2
+ ```
+
+
+ lodash.snakecase@4.1.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|lodash.snakecase@4.1.1|
+ >|**Version**|@.4.1.1|
+ >|**Repository**|https://github.com/lodash/lodash|
+ >|**Licenses**|MIT|
+ >|**Publisher**|John-David Dalton|
+ >|**Contact**|john.david.dalton@gmail.com|
+ >|**Homepage**|http://allyoucanleet.com/|
+
+ #### Use this package in your project
+ ```bash
+ npm i lodash.snakecase@4.1.1
+ ```
+
+
+ lodash.sortby@4.7.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|lodash.sortby@4.7.0|
+ >|**Version**|@.4.7.0|
+ >|**Repository**|https://github.com/lodash/lodash|
+ >|**Licenses**|MIT|
+ >|**Publisher**|John-David Dalton|
+ >|**Contact**|john.david.dalton@gmail.com|
+ >|**Homepage**|http://allyoucanleet.com/|
+
+ #### Use this package in your project
+ ```bash
+ npm i lodash.sortby@4.7.0
+ ```
+
+
+ lodash.startcase@4.4.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|lodash.startcase@4.4.0|
+ >|**Version**|@.4.4.0|
+ >|**Repository**|https://github.com/lodash/lodash|
+ >|**Licenses**|MIT|
+ >|**Publisher**|John-David Dalton|
+ >|**Contact**|john.david.dalton@gmail.com|
+ >|**Homepage**|http://allyoucanleet.com/|
+
+ #### Use this package in your project
+ ```bash
+ npm i lodash.startcase@4.4.0
+ ```
+
+
+ lodash.uniq@4.5.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|lodash.uniq@4.5.0|
+ >|**Version**|@.4.5.0|
+ >|**Repository**|https://github.com/lodash/lodash|
+ >|**Licenses**|MIT|
+ >|**Publisher**|John-David Dalton|
+ >|**Contact**|john.david.dalton@gmail.com|
+ >|**Homepage**|http://allyoucanleet.com/|
+
+ #### Use this package in your project
+ ```bash
+ npm i lodash.uniq@4.5.0
+ ```
+
+
+ lodash.upperfirst@4.3.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|lodash.upperfirst@4.3.1|
+ >|**Version**|@.4.3.1|
+ >|**Repository**|https://github.com/lodash/lodash|
+ >|**Licenses**|MIT|
+ >|**Publisher**|John-David Dalton|
+ >|**Contact**|john.david.dalton@gmail.com|
+ >|**Homepage**|http://allyoucanleet.com/|
+
+ #### Use this package in your project
+ ```bash
+ npm i lodash.upperfirst@4.3.1
+ ```
+
+
+ lodash@4.17.21
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|lodash@4.17.21|
+ >|**Version**|@4.17.21|
+ >|**Repository**|https://github.com/lodash/lodash|
+ >|**Licenses**|MIT|
+ >|**Publisher**|John-David Dalton|
+ >|**Contact**|john.david.dalton@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i lodash@4.17.21
+ ```
+
+
+ loose-envify@1.4.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|loose-envify@1.4.0|
+ >|**Version**|@1.4.0|
+ >|**Repository**|https://github.com/zertosh/loose-envify|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Andres Suarez|
+ >|**Contact**|zertosh@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i loose-envify@1.4.0
+ ```
+
+
+ lowdb@3.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|lowdb@3.0.0|
+ >|**Version**|@3.0.0|
+ >|**Repository**|https://github.com/typicode/lowdb|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Typicode|
+ >|**Contact**|typicode@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i lowdb@3.0.0
+ ```
+
+
+ lower-case@2.0.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|lower-case@2.0.2|
+ >|**Version**|@2.0.2|
+ >|**Repository**|https://github.com/blakeembrey/change-case|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Blake Embrey|
+ >|**Contact**|hello@blakeembrey.com|
+ >|**Homepage**|http://blakeembrey.me|
+
+ #### Use this package in your project
+ ```bash
+ npm i lower-case@2.0.2
+ ```
+
+
+ lru-cache@10.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|lru-cache@10.1.0|
+ >|**Version**|@10.1.0|
+ >|**Repository**|https://github.com/isaacs/node-lru-cache|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Isaac Z. Schlueter|
+ >|**Contact**|i@izs.me|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i lru-cache@10.1.0
+ ```
+
+
+ lru-cache@5.1.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|lru-cache@5.1.1|
+ >|**Version**|@5.1.1|
+ >|**Repository**|https://github.com/isaacs/node-lru-cache|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Isaac Z. Schlueter|
+ >|**Contact**|i@izs.me|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i lru-cache@5.1.1
+ ```
+
+
+ lru-cache@6.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|lru-cache@6.0.0|
+ >|**Version**|@6.0.0|
+ >|**Repository**|https://github.com/isaacs/node-lru-cache|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Isaac Z. Schlueter|
+ >|**Contact**|i@izs.me|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i lru-cache@6.0.0
+ ```
+
+
+ magic-string@0.25.9
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|magic-string@0.25.9|
+ >|**Version**|@0.25.9|
+ >|**Repository**|https://github.com/rich-harris/magic-string|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Rich Harris|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i magic-string@0.25.9
+ ```
+
+
+ make-dir@3.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|make-dir@3.1.0|
+ >|**Version**|@3.1.0|
+ >|**Repository**|https://github.com/sindresorhus/make-dir|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i make-dir@3.1.0
+ ```
+
+
+ make-dir@4.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|make-dir@4.0.0|
+ >|**Version**|@4.0.0|
+ >|**Repository**|https://github.com/sindresorhus/make-dir|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|https://sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i make-dir@4.0.0
+ ```
+
+
+ make-error@1.3.6
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|make-error@1.3.6|
+ >|**Version**|@1.3.6|
+ >|**Repository**|https://github.com/JsCommunity/make-error|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Julien Fontanet|
+ >|**Contact**|julien.fontanet@isonoe.net|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i make-error@1.3.6
+ ```
+
+
+ makeerror@1.0.12
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|makeerror@1.0.12|
+ >|**Version**|@1.0.12|
+ >|**Repository**|https://github.com/daaku/nodejs-makeerror|
+ >|**Licenses**|BSD-3-Clause|
+ >|**Publisher**|Naitik Shah|
+ >|**Contact**|n@daaku.org|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i makeerror@1.0.12
+ ```
+
+
+ map-obj@1.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|map-obj@1.0.1|
+ >|**Version**|@1.0.1|
+ >|**Repository**|https://github.com/sindresorhus/map-obj|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i map-obj@1.0.1
+ ```
+
+
+ map-obj@4.3.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|map-obj@4.3.0|
+ >|**Version**|@4.3.0|
+ >|**Repository**|https://github.com/sindresorhus/map-obj|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|https://sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i map-obj@4.3.0
+ ```
+
+
+ mdi@2.2.43
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|mdi@2.2.43|
+ >|**Version**|@2.2.43|
+ >|**Repository**|https://github.com/Templarian/MaterialDesign-Webfont|
+ >|**Licenses**|OFL-1.1,MIT|
+ >|**Publisher**|Austin Andrews|
+ >|**Contact**|NA|
+ >|**Homepage**|http://twitter.com/templarian|
+
+ #### Use this package in your project
+ ```bash
+ npm i mdi@2.2.43
+ ```
+
+
+ mdn-data@2.0.14
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|mdn-data@2.0.14|
+ >|**Version**|@2.0.14|
+ >|**Repository**|https://github.com/mdn/data|
+ >|**Licenses**|CC0-1.0|
+ >|**Publisher**|Mozilla Developer Network|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i mdn-data@2.0.14
+ ```
+
+
+ mdn-data@2.0.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|mdn-data@2.0.4|
+ >|**Version**|@2.0.4|
+ >|**Repository**|https://github.com/mdn/data|
+ >|**Licenses**|CC0-1.0|
+ >|**Publisher**|Mozilla Developer Network|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i mdn-data@2.0.4
+ ```
+
+
+ media-typer@0.3.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|media-typer@0.3.0|
+ >|**Version**|@0.3.0|
+ >|**Repository**|https://github.com/jshttp/media-typer|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Douglas Christopher Wilson|
+ >|**Contact**|doug@somethingdoug.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i media-typer@0.3.0
+ ```
+
+
+ memfs@3.5.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|memfs@3.5.3|
+ >|**Version**|@3.5.3|
+ >|**Repository**|https://github.com/streamich/memfs|
+ >|**Licenses**|Unlicense|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i memfs@3.5.3
+ ```
+
+
+ meow@8.1.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|meow@8.1.2|
+ >|**Version**|@8.1.2|
+ >|**Repository**|https://github.com/sindresorhus/meow|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|https://sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i meow@8.1.2
+ ```
+
+
+ merge-descriptors@1.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|merge-descriptors@1.0.1|
+ >|**Version**|@1.0.1|
+ >|**Repository**|https://github.com/component/merge-descriptors|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jonathan Ong|
+ >|**Contact**|me@jongleberry.com|
+ >|**Homepage**|http://jongleberry.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i merge-descriptors@1.0.1
+ ```
+
+
+ merge-stream@2.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|merge-stream@2.0.0|
+ >|**Version**|@2.0.0|
+ >|**Repository**|https://github.com/grncdr/merge-stream|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Stephen Sugden|
+ >|**Contact**|me@stephensugden.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i merge-stream@2.0.0
+ ```
+
+
+ merge2@1.4.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|merge2@1.4.1|
+ >|**Version**|@21.4.1|
+ >|**Repository**|https://github.com/teambition/merge2|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i merge2@1.4.1
+ ```
+
+
+ methods@1.1.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|methods@1.1.2|
+ >|**Version**|@1.1.2|
+ >|**Repository**|https://github.com/jshttp/methods|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i methods@1.1.2
+ ```
+
+
+ micromatch@4.0.5
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|micromatch@4.0.5|
+ >|**Version**|@4.0.5|
+ >|**Repository**|https://github.com/micromatch/micromatch|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jon Schlinkert|
+ >|**Contact**|NA|
+ >|**Homepage**|https://github.com/jonschlinkert|
+
+ #### Use this package in your project
+ ```bash
+ npm i micromatch@4.0.5
+ ```
+
+
+ mime-db@1.52.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|mime-db@1.52.0|
+ >|**Version**|@1.52.0|
+ >|**Repository**|https://github.com/jshttp/mime-db|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i mime-db@1.52.0
+ ```
+
+
+ mime-types@2.1.35
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|mime-types@2.1.35|
+ >|**Version**|@2.1.35|
+ >|**Repository**|https://github.com/jshttp/mime-types|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i mime-types@2.1.35
+ ```
+
+
+ mime@1.6.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|mime@1.6.0|
+ >|**Version**|@1.6.0|
+ >|**Repository**|https://github.com/broofa/node-mime|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Robert Kieffer|
+ >|**Contact**|robert@broofa.com|
+ >|**Homepage**|http://github.com/broofa|
+
+ #### Use this package in your project
+ ```bash
+ npm i mime@1.6.0
+ ```
+
+
+ mime@2.6.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|mime@2.6.0|
+ >|**Version**|@2.6.0|
+ >|**Repository**|https://github.com/broofa/mime|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Robert Kieffer|
+ >|**Contact**|robert@broofa.com|
+ >|**Homepage**|http://github.com/broofa|
+
+ #### Use this package in your project
+ ```bash
+ npm i mime@2.6.0
+ ```
+
+
+ mimic-fn@1.2.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|mimic-fn@1.2.0|
+ >|**Version**|@1.2.0|
+ >|**Repository**|https://github.com/sindresorhus/mimic-fn|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i mimic-fn@1.2.0
+ ```
+
+
+ mimic-fn@2.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|mimic-fn@2.1.0|
+ >|**Version**|@2.1.0|
+ >|**Repository**|https://github.com/sindresorhus/mimic-fn|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i mimic-fn@2.1.0
+ ```
+
+
+ min-indent@1.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|min-indent@1.0.1|
+ >|**Version**|@1.0.1|
+ >|**Repository**|https://github.com/thejameskyle/min-indent|
+ >|**Licenses**|MIT|
+ >|**Publisher**|James Kyle|
+ >|**Contact**|me@thejameskyle.com|
+ >|**Homepage**|thejameskyle.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i min-indent@1.0.1
+ ```
+
+
+ mini-css-extract-plugin@2.7.7
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|mini-css-extract-plugin@2.7.7|
+ >|**Version**|@2.7.7|
+ >|**Repository**|https://github.com/webpack-contrib/mini-css-extract-plugin|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Tobias Koppers @sokra|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i mini-css-extract-plugin@2.7.7
+ ```
+
+
+ minimalistic-assert@1.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|minimalistic-assert@1.0.1|
+ >|**Version**|@1.0.1|
+ >|**Repository**|https://github.com/calvinmetcalf/minimalistic-assert|
+ >|**Licenses**|ISC|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i minimalistic-assert@1.0.1
+ ```
+
+
+ minimatch@3.1.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|minimatch@3.1.2|
+ >|**Version**|@3.1.2|
+ >|**Repository**|https://github.com/isaacs/minimatch|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Isaac Z. Schlueter|
+ >|**Contact**|i@izs.me|
+ >|**Homepage**|http://blog.izs.me|
+
+ #### Use this package in your project
+ ```bash
+ npm i minimatch@3.1.2
+ ```
+
+
+ minimatch@5.1.6
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|minimatch@5.1.6|
+ >|**Version**|@5.1.6|
+ >|**Repository**|https://github.com/isaacs/minimatch|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Isaac Z. Schlueter|
+ >|**Contact**|i@izs.me|
+ >|**Homepage**|http://blog.izs.me|
+
+ #### Use this package in your project
+ ```bash
+ npm i minimatch@5.1.6
+ ```
+
+
+ minimatch@9.0.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|minimatch@9.0.3|
+ >|**Version**|@9.0.3|
+ >|**Repository**|https://github.com/isaacs/minimatch|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Isaac Z. Schlueter|
+ >|**Contact**|i@izs.me|
+ >|**Homepage**|http://blog.izs.me|
+
+ #### Use this package in your project
+ ```bash
+ npm i minimatch@9.0.3
+ ```
+
+
+ minimist-options@4.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|minimist-options@4.1.0|
+ >|**Version**|@4.1.0|
+ >|**Repository**|https://github.com/vadimdemedes/minimist-options|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Vadim Demedes|
+ >|**Contact**|vdemedes@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i minimist-options@4.1.0
+ ```
+
+
+ minimist@1.2.8
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|minimist@1.2.8|
+ >|**Version**|@1.2.8|
+ >|**Repository**|https://github.com/minimistjs/minimist|
+ >|**Licenses**|MIT|
+ >|**Publisher**|James Halliday|
+ >|**Contact**|mail@substack.net|
+ >|**Homepage**|http://substack.net|
+
+ #### Use this package in your project
+ ```bash
+ npm i minimist@1.2.8
+ ```
+
+
+ minipass@7.0.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|minipass@7.0.4|
+ >|**Version**|@7.0.4|
+ >|**Repository**|https://github.com/isaacs/minipass|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Isaac Z. Schlueter|
+ >|**Contact**|i@izs.me|
+ >|**Homepage**|http://blog.izs.me/|
+
+ #### Use this package in your project
+ ```bash
+ npm i minipass@7.0.4
+ ```
+
+
+ mkdirp@0.5.6
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|mkdirp@0.5.6|
+ >|**Version**|@0.5.6|
+ >|**Repository**|https://github.com/substack/node-mkdirp|
+ >|**Licenses**|MIT|
+ >|**Publisher**|James Halliday|
+ >|**Contact**|mail@substack.net|
+ >|**Homepage**|http://substack.net|
+
+ #### Use this package in your project
+ ```bash
+ npm i mkdirp@0.5.6
+ ```
+
+
+ moment@2.30.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|moment@2.30.1|
+ >|**Version**|@2.30.1|
+ >|**Repository**|https://github.com/moment/moment|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Iskren Ivov Chernev|
+ >|**Contact**|iskren.chernev@gmail.com|
+ >|**Homepage**|https://github.com/ichernev|
+
+ #### Use this package in your project
+ ```bash
+ npm i moment@2.30.1
+ ```
+
+
+ ms@2.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|ms@2.0.0|
+ >|**Version**|@2.0.0|
+ >|**Repository**|https://github.com/zeit/ms|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i ms@2.0.0
+ ```
+
+
+ ms@2.1.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|ms@2.1.2|
+ >|**Version**|@2.1.2|
+ >|**Repository**|https://github.com/zeit/ms|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i ms@2.1.2
+ ```
+
+
+ ms@2.1.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|ms@2.1.3|
+ >|**Version**|@2.1.3|
+ >|**Repository**|https://github.com/vercel/ms|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i ms@2.1.3
+ ```
+
+
+ multicast-dns@7.2.5
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|multicast-dns@7.2.5|
+ >|**Version**|@7.2.5|
+ >|**Repository**|https://github.com/mafintosh/multicast-dns|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Mathias Buus|
+ >|**Contact**|NA|
+ >|**Homepage**|@mafintosh|
+
+ #### Use this package in your project
+ ```bash
+ npm i multicast-dns@7.2.5
+ ```
+
+
+ mute-stream@0.0.7
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|mute-stream@0.0.7|
+ >|**Version**|@0.0.7|
+ >|**Repository**|https://github.com/isaacs/mute-stream|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Isaac Z. Schlueter|
+ >|**Contact**|i@izs.me|
+ >|**Homepage**|http://blog.izs.me/|
+
+ #### Use this package in your project
+ ```bash
+ npm i mute-stream@0.0.7
+ ```
+
+
+ mz@2.7.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|mz@2.7.0|
+ >|**Version**|@2.7.0|
+ >|**Repository**|https://github.com/normalize/mz|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jonathan Ong|
+ >|**Contact**|me@jongleberry.com|
+ >|**Homepage**|http://jongleberry.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i mz@2.7.0
+ ```
+
+
+ nanoclone@0.2.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|nanoclone@0.2.1|
+ >|**Version**|@0.2.1|
+ >|**Repository**|https://github.com/kelin2025/nanoclone|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Anton Kosykh|
+ >|**Contact**|kelin2025@yandex.ru|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i nanoclone@0.2.1
+ ```
+
+
+ nanoid@3.3.7
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|nanoid@3.3.7|
+ >|**Version**|@3.3.7|
+ >|**Repository**|https://github.com/ai/nanoid|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Andrey Sitnik|
+ >|**Contact**|andrey@sitnik.ru|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i nanoid@3.3.7
+ ```
+
+
+ natural-compare-lite@1.4.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|natural-compare-lite@1.4.0|
+ >|**Version**|@1.4.0|
+ >|**Repository**|https://github.com/litejs/natural-compare-lite|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Lauri Rooden|
+ >|**Contact**|NA|
+ >|**Homepage**|https://github.com/litejs/natural-compare-lite|
+
+ #### Use this package in your project
+ ```bash
+ npm i natural-compare-lite@1.4.0
+ ```
+
+
+ natural-compare@1.4.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|natural-compare@1.4.0|
+ >|**Version**|@1.4.0|
+ >|**Repository**|https://github.com/litejs/natural-compare-lite|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Lauri Rooden|
+ >|**Contact**|NA|
+ >|**Homepage**|https://github.com/litejs/natural-compare-lite|
+
+ #### Use this package in your project
+ ```bash
+ npm i natural-compare@1.4.0
+ ```
+
+
+ negotiator@0.6.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|negotiator@0.6.3|
+ >|**Version**|@0.6.3|
+ >|**Repository**|https://github.com/jshttp/negotiator|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i negotiator@0.6.3
+ ```
+
+
+ neo-async@2.6.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|neo-async@2.6.2|
+ >|**Version**|@2.6.2|
+ >|**Repository**|https://github.com/suguru03/neo-async|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i neo-async@2.6.2
+ ```
+
+
+ no-case@3.0.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|no-case@3.0.4|
+ >|**Version**|@3.0.4|
+ >|**Repository**|https://github.com/blakeembrey/change-case|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Blake Embrey|
+ >|**Contact**|hello@blakeembrey.com|
+ >|**Homepage**|http://blakeembrey.me|
+
+ #### Use this package in your project
+ ```bash
+ npm i no-case@3.0.4
+ ```
+
+
+ node-forge@1.3.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|node-forge@1.3.1|
+ >|**Version**|@1.3.1|
+ >|**Repository**|https://github.com/digitalbazaar/forge|
+ >|**Licenses**|(BSD-3-Clause OR GPL-2.0)|
+ >|**Publisher**|Digital Bazaar, Inc.|
+ >|**Contact**|support@digitalbazaar.com|
+ >|**Homepage**|http://digitalbazaar.com/|
+
+ #### Use this package in your project
+ ```bash
+ npm i node-forge@1.3.1
+ ```
+
+
+ node-int64@0.4.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|node-int64@0.4.0|
+ >|**Version**|@640.4.0|
+ >|**Repository**|https://github.com/broofa/node-int64|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Robert Kieffer|
+ >|**Contact**|robert@broofa.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i node-int64@0.4.0
+ ```
+
+
+ node-releases@2.0.14
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|node-releases@2.0.14|
+ >|**Version**|@2.0.14|
+ >|**Repository**|https://github.com/chicoxyzzy/node-releases|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sergey Rubanov|
+ >|**Contact**|chi187@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i node-releases@2.0.14
+ ```
+
+
+ nopt@4.0.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|nopt@4.0.3|
+ >|**Version**|@4.0.3|
+ >|**Repository**|https://github.com/npm/nopt|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Isaac Z. Schlueter|
+ >|**Contact**|i@izs.me|
+ >|**Homepage**|http://blog.izs.me/|
+
+ #### Use this package in your project
+ ```bash
+ npm i nopt@4.0.3
+ ```
+
+
+ normalize-package-data@2.5.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|normalize-package-data@2.5.0|
+ >|**Version**|@2.5.0|
+ >|**Repository**|https://github.com/npm/normalize-package-data|
+ >|**Licenses**|BSD-2-Clause|
+ >|**Publisher**|Meryn Stol|
+ >|**Contact**|merynstol@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i normalize-package-data@2.5.0
+ ```
+
+
+ normalize-package-data@3.0.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|normalize-package-data@3.0.3|
+ >|**Version**|@3.0.3|
+ >|**Repository**|https://github.com/npm/normalize-package-data|
+ >|**Licenses**|BSD-2-Clause|
+ >|**Publisher**|Meryn Stol|
+ >|**Contact**|merynstol@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i normalize-package-data@3.0.3
+ ```
+
+
+ normalize-path@3.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|normalize-path@3.0.0|
+ >|**Version**|@3.0.0|
+ >|**Repository**|https://github.com/jonschlinkert/normalize-path|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jon Schlinkert|
+ >|**Contact**|NA|
+ >|**Homepage**|https://github.com/jonschlinkert|
+
+ #### Use this package in your project
+ ```bash
+ npm i normalize-path@3.0.0
+ ```
+
+
+ normalize-range@0.1.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|normalize-range@0.1.2|
+ >|**Version**|@0.1.2|
+ >|**Repository**|https://github.com/jamestalmage/normalize-range|
+ >|**Licenses**|MIT|
+ >|**Publisher**|James Talmage|
+ >|**Contact**|james@talmage.io|
+ >|**Homepage**|github.com/jamestalmage|
+
+ #### Use this package in your project
+ ```bash
+ npm i normalize-range@0.1.2
+ ```
+
+
+ normalize-url@6.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|normalize-url@6.1.0|
+ >|**Version**|@6.1.0|
+ >|**Repository**|https://github.com/sindresorhus/normalize-url|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|https://sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i normalize-url@6.1.0
+ ```
+
+
+ npm-normalize-package-bin@1.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|npm-normalize-package-bin@1.0.1|
+ >|**Version**|@1.0.1|
+ >|**Repository**|https://github.com/npm/npm-normalize-package-bin|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Isaac Z. Schlueter|
+ >|**Contact**|i@izs.me|
+ >|**Homepage**|https://izs.me|
+
+ #### Use this package in your project
+ ```bash
+ npm i npm-normalize-package-bin@1.0.1
+ ```
+
+
+ npm-run-path@4.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|npm-run-path@4.0.1|
+ >|**Version**|@4.0.1|
+ >|**Repository**|https://github.com/sindresorhus/npm-run-path|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i npm-run-path@4.0.1
+ ```
+
+
+ nth-check@1.0.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|nth-check@1.0.2|
+ >|**Version**|@1.0.2|
+ >|**Repository**|https://github.com/fb55/nth-check|
+ >|**Licenses**|BSD-2-Clause|
+ >|**Publisher**|Felix Boehm|
+ >|**Contact**|me@feedic.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i nth-check@1.0.2
+ ```
+
+
+ nth-check@2.1.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|nth-check@2.1.1|
+ >|**Version**|@2.1.1|
+ >|**Repository**|https://github.com/fb55/nth-check|
+ >|**Licenses**|BSD-2-Clause|
+ >|**Publisher**|Felix Boehm|
+ >|**Contact**|me@feedic.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i nth-check@2.1.1
+ ```
+
+
+ nwsapi@2.2.7
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|nwsapi@2.2.7|
+ >|**Version**|@2.2.7|
+ >|**Repository**|https://github.com/dperini/nwsapi|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Diego Perini|
+ >|**Contact**|diego.perini@gmail.com|
+ >|**Homepage**|http://www.iport.it/|
+
+ #### Use this package in your project
+ ```bash
+ npm i nwsapi@2.2.7
+ ```
+
+
+ object-assign@4.1.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|object-assign@4.1.1|
+ >|**Version**|@4.1.1|
+ >|**Repository**|https://github.com/sindresorhus/object-assign|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i object-assign@4.1.1
+ ```
+
+
+ object-hash@3.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|object-hash@3.0.0|
+ >|**Version**|@3.0.0|
+ >|**Repository**|https://github.com/puleos/object-hash|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Scott Puleo|
+ >|**Contact**|puleos@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i object-hash@3.0.0
+ ```
+
+
+ object-inspect@1.13.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|object-inspect@1.13.1|
+ >|**Version**|@1.13.1|
+ >|**Repository**|https://github.com/inspect-js/object-inspect|
+ >|**Licenses**|MIT|
+ >|**Publisher**|James Halliday|
+ >|**Contact**|mail@substack.net|
+ >|**Homepage**|http://substack.net|
+
+ #### Use this package in your project
+ ```bash
+ npm i object-inspect@1.13.1
+ ```
+
+
+ object-keys@1.1.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|object-keys@1.1.1|
+ >|**Version**|@1.1.1|
+ >|**Repository**|https://github.com/ljharb/object-keys|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|http://ljharb.codes|
+
+ #### Use this package in your project
+ ```bash
+ npm i object-keys@1.1.1
+ ```
+
+
+ object.assign@4.1.5
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|object.assign@4.1.5|
+ >|**Version**|@.4.1.5|
+ >|**Repository**|https://github.com/ljharb/object.assign|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i object.assign@4.1.5
+ ```
+
+
+ object.entries@1.1.7
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|object.entries@1.1.7|
+ >|**Version**|@.1.1.7|
+ >|**Repository**|https://github.com/es-shims/Object.entries|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i object.entries@1.1.7
+ ```
+
+
+ object.fromentries@2.0.7
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|object.fromentries@2.0.7|
+ >|**Version**|@.2.0.7|
+ >|**Repository**|https://github.com/es-shims/Object.fromEntries|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i object.fromentries@2.0.7
+ ```
+
+
+ object.getownpropertydescriptors@2.1.7
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|object.getownpropertydescriptors@2.1.7|
+ >|**Version**|@.2.1.7|
+ >|**Repository**|https://github.com/es-shims/object.getownpropertydescriptors|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i object.getownpropertydescriptors@2.1.7
+ ```
+
+
+ object.groupby@1.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|object.groupby@1.0.1|
+ >|**Version**|@.1.0.1|
+ >|**Repository**|https://github.com/es-shims/Object.groupBy|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i object.groupby@1.0.1
+ ```
+
+
+ object.hasown@1.1.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|object.hasown@1.1.3|
+ >|**Version**|@.1.1.3|
+ >|**Repository**|https://github.com/es-shims/Object.hasOwn|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i object.hasown@1.1.3
+ ```
+
+
+ object.values@1.1.7
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|object.values@1.1.7|
+ >|**Version**|@.1.1.7|
+ >|**Repository**|https://github.com/es-shims/Object.values|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i object.values@1.1.7
+ ```
+
+
+ obuf@1.1.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|obuf@1.1.2|
+ >|**Version**|@1.1.2|
+ >|**Repository**|https://github.com/indutny/offset-buffer|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Fedor Indutny|
+ >|**Contact**|fedor@indutny.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i obuf@1.1.2
+ ```
+
+
+ on-finished@2.4.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|on-finished@2.4.1|
+ >|**Version**|@2.4.1|
+ >|**Repository**|https://github.com/jshttp/on-finished|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i on-finished@2.4.1
+ ```
+
+
+ on-headers@1.0.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|on-headers@1.0.2|
+ >|**Version**|@1.0.2|
+ >|**Repository**|https://github.com/jshttp/on-headers|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Douglas Christopher Wilson|
+ >|**Contact**|doug@somethingdoug.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i on-headers@1.0.2
+ ```
+
+
+ once@1.4.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|once@1.4.0|
+ >|**Version**|@1.4.0|
+ >|**Repository**|https://github.com/isaacs/once|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Isaac Z. Schlueter|
+ >|**Contact**|i@izs.me|
+ >|**Homepage**|http://blog.izs.me/|
+
+ #### Use this package in your project
+ ```bash
+ npm i once@1.4.0
+ ```
+
+
+ onetime@2.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|onetime@2.0.1|
+ >|**Version**|@2.0.1|
+ >|**Repository**|https://github.com/sindresorhus/onetime|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i onetime@2.0.1
+ ```
+
+
+ onetime@5.1.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|onetime@5.1.2|
+ >|**Version**|@5.1.2|
+ >|**Repository**|https://github.com/sindresorhus/onetime|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|https://sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i onetime@5.1.2
+ ```
+
+
+ open@8.4.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|open@8.4.2|
+ >|**Version**|@8.4.2|
+ >|**Repository**|https://github.com/sindresorhus/open|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|https://sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i open@8.4.2
+ ```
+
+
+ optionator@0.8.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|optionator@0.8.3|
+ >|**Version**|@0.8.3|
+ >|**Repository**|https://github.com/gkz/optionator|
+ >|**Licenses**|MIT|
+ >|**Publisher**|George Zahariev|
+ >|**Contact**|z@georgezahariev.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i optionator@0.8.3
+ ```
+
+
+ optionator@0.9.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|optionator@0.9.3|
+ >|**Version**|@0.9.3|
+ >|**Repository**|https://github.com/gkz/optionator|
+ >|**Licenses**|MIT|
+ >|**Publisher**|George Zahariev|
+ >|**Contact**|z@georgezahariev.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i optionator@0.9.3
+ ```
+
+
+ os-homedir@1.0.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|os-homedir@1.0.2|
+ >|**Version**|@1.0.2|
+ >|**Repository**|https://github.com/sindresorhus/os-homedir|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i os-homedir@1.0.2
+ ```
+
+
+ os-tmpdir@1.0.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|os-tmpdir@1.0.2|
+ >|**Version**|@1.0.2|
+ >|**Repository**|https://github.com/sindresorhus/os-tmpdir|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i os-tmpdir@1.0.2
+ ```
+
+
+ osenv@0.1.5
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|osenv@0.1.5|
+ >|**Version**|@0.1.5|
+ >|**Repository**|https://github.com/npm/osenv|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Isaac Z. Schlueter|
+ >|**Contact**|i@izs.me|
+ >|**Homepage**|http://blog.izs.me/|
+
+ #### Use this package in your project
+ ```bash
+ npm i osenv@0.1.5
+ ```
+
+
+ p-limit@2.3.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|p-limit@2.3.0|
+ >|**Version**|@2.3.0|
+ >|**Repository**|https://github.com/sindresorhus/p-limit|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i p-limit@2.3.0
+ ```
+
+
+ p-limit@3.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|p-limit@3.1.0|
+ >|**Version**|@3.1.0|
+ >|**Repository**|https://github.com/sindresorhus/p-limit|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|https://sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i p-limit@3.1.0
+ ```
+
+
+ p-locate@3.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|p-locate@3.0.0|
+ >|**Version**|@3.0.0|
+ >|**Repository**|https://github.com/sindresorhus/p-locate|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i p-locate@3.0.0
+ ```
+
+
+ p-locate@4.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|p-locate@4.1.0|
+ >|**Version**|@4.1.0|
+ >|**Repository**|https://github.com/sindresorhus/p-locate|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i p-locate@4.1.0
+ ```
+
+
+ p-locate@5.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|p-locate@5.0.0|
+ >|**Version**|@5.0.0|
+ >|**Repository**|https://github.com/sindresorhus/p-locate|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|https://sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i p-locate@5.0.0
+ ```
+
+
+ p-retry@4.6.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|p-retry@4.6.2|
+ >|**Version**|@4.6.2|
+ >|**Repository**|https://github.com/sindresorhus/p-retry|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i p-retry@4.6.2
+ ```
+
+
+ p-try@2.2.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|p-try@2.2.0|
+ >|**Version**|@2.2.0|
+ >|**Repository**|https://github.com/sindresorhus/p-try|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i p-try@2.2.0
+ ```
+
+
+ param-case@3.0.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|param-case@3.0.4|
+ >|**Version**|@3.0.4|
+ >|**Repository**|https://github.com/blakeembrey/change-case|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Blake Embrey|
+ >|**Contact**|hello@blakeembrey.com|
+ >|**Homepage**|http://blakeembrey.me|
+
+ #### Use this package in your project
+ ```bash
+ npm i param-case@3.0.4
+ ```
+
+
+ parent-module@1.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|parent-module@1.0.1|
+ >|**Version**|@1.0.1|
+ >|**Repository**|https://github.com/sindresorhus/parent-module|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i parent-module@1.0.1
+ ```
+
+
+ parse-json@5.2.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|parse-json@5.2.0|
+ >|**Version**|@5.2.0|
+ >|**Repository**|https://github.com/sindresorhus/parse-json|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|https://sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i parse-json@5.2.0
+ ```
+
+
+ parse5@6.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|parse5@6.0.1|
+ >|**Version**|@56.0.1|
+ >|**Repository**|https://github.com/inikulin/parse5|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Ivan Nikulin|
+ >|**Contact**|ifaaan@gmail.com|
+ >|**Homepage**|https://github.com/inikulin|
+
+ #### Use this package in your project
+ ```bash
+ npm i parse5@6.0.1
+ ```
+
+
+ parseurl@1.3.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|parseurl@1.3.3|
+ >|**Version**|@1.3.3|
+ >|**Repository**|https://github.com/pillarjs/parseurl|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i parseurl@1.3.3
+ ```
+
+
+ pascal-case@3.1.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|pascal-case@3.1.2|
+ >|**Version**|@3.1.2|
+ >|**Repository**|https://github.com/blakeembrey/change-case|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Blake Embrey|
+ >|**Contact**|hello@blakeembrey.com|
+ >|**Homepage**|http://blakeembrey.me|
+
+ #### Use this package in your project
+ ```bash
+ npm i pascal-case@3.1.2
+ ```
+
+
+ path-exists@3.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|path-exists@3.0.0|
+ >|**Version**|@3.0.0|
+ >|**Repository**|https://github.com/sindresorhus/path-exists|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i path-exists@3.0.0
+ ```
+
+
+ path-exists@4.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|path-exists@4.0.0|
+ >|**Version**|@4.0.0|
+ >|**Repository**|https://github.com/sindresorhus/path-exists|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i path-exists@4.0.0
+ ```
+
+
+ path-is-absolute@1.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|path-is-absolute@1.0.1|
+ >|**Version**|@1.0.1|
+ >|**Repository**|https://github.com/sindresorhus/path-is-absolute|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i path-is-absolute@1.0.1
+ ```
+
+
+ path-key@3.1.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|path-key@3.1.1|
+ >|**Version**|@3.1.1|
+ >|**Repository**|https://github.com/sindresorhus/path-key|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i path-key@3.1.1
+ ```
+
+
+ path-parse@1.0.7
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|path-parse@1.0.7|
+ >|**Version**|@1.0.7|
+ >|**Repository**|https://github.com/jbgutierrez/path-parse|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Javier Blanco|
+ >|**Contact**|http://jbgutierrez.info|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i path-parse@1.0.7
+ ```
+
+
+ path-scurry@1.10.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|path-scurry@1.10.1|
+ >|**Version**|@1.10.1|
+ >|**Repository**|https://github.com/isaacs/path-scurry|
+ >|**Licenses**|BlueOak-1.0.0|
+ >|**Publisher**|Isaac Z. Schlueter|
+ >|**Contact**|i@izs.me|
+ >|**Homepage**|https://blog.izs.me|
+
+ #### Use this package in your project
+ ```bash
+ npm i path-scurry@1.10.1
+ ```
+
+
+ path-to-regexp@0.1.7
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|path-to-regexp@0.1.7|
+ >|**Version**|@0.1.7|
+ >|**Repository**|https://github.com/component/path-to-regexp|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i path-to-regexp@0.1.7
+ ```
+
+
+ path-type@4.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|path-type@4.0.0|
+ >|**Version**|@4.0.0|
+ >|**Repository**|https://github.com/sindresorhus/path-type|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i path-type@4.0.0
+ ```
+
+
+ performance-now@2.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|performance-now@2.1.0|
+ >|**Version**|@2.1.0|
+ >|**Repository**|https://github.com/braveg1rl/performance-now|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Braveg1rl|
+ >|**Contact**|braveg1rl@outlook.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i performance-now@2.1.0
+ ```
+
+
+ picocolors@0.2.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|picocolors@0.2.1|
+ >|**Version**|@0.2.1|
+ >|**Repository**|https://github.com/alexeyraspopov/picocolors|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Alexey Raspopov|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i picocolors@0.2.1
+ ```
+
+
+ picocolors@1.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|picocolors@1.0.0|
+ >|**Version**|@1.0.0|
+ >|**Repository**|https://github.com/alexeyraspopov/picocolors|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Alexey Raspopov|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i picocolors@1.0.0
+ ```
+
+
+ picomatch@2.3.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|picomatch@2.3.1|
+ >|**Version**|@2.3.1|
+ >|**Repository**|https://github.com/micromatch/picomatch|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jon Schlinkert|
+ >|**Contact**|NA|
+ >|**Homepage**|https://github.com/jonschlinkert|
+
+ #### Use this package in your project
+ ```bash
+ npm i picomatch@2.3.1
+ ```
+
+
+ pify@2.3.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|pify@2.3.0|
+ >|**Version**|@2.3.0|
+ >|**Repository**|https://github.com/sindresorhus/pify|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i pify@2.3.0
+ ```
+
+
+ pirates@4.0.6
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|pirates@4.0.6|
+ >|**Version**|@4.0.6|
+ >|**Repository**|https://github.com/danez/pirates|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Ari Porad|
+ >|**Contact**|ari@ariporad.com|
+ >|**Homepage**|http://ariporad.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i pirates@4.0.6
+ ```
+
+
+ pkg-dir@4.2.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|pkg-dir@4.2.0|
+ >|**Version**|@4.2.0|
+ >|**Repository**|https://github.com/sindresorhus/pkg-dir|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i pkg-dir@4.2.0
+ ```
+
+
+ pkg-up@3.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|pkg-up@3.1.0|
+ >|**Version**|@3.1.0|
+ >|**Repository**|https://github.com/sindresorhus/pkg-up|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i pkg-up@3.1.0
+ ```
+
+
+ postcss-attribute-case-insensitive@5.0.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-attribute-case-insensitive@5.0.2|
+ >|**Version**|@5.0.2|
+ >|**Repository**|https://github.com/csstools/postcss-plugins|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-attribute-case-insensitive@5.0.2
+ ```
+
+
+ postcss-browser-comments@4.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-browser-comments@4.0.0|
+ >|**Version**|@4.0.0|
+ >|**Repository**|https://github.com/csstools/postcss-browser-comments|
+ >|**Licenses**|CC0-1.0|
+ >|**Publisher**|Jonathan Neal|
+ >|**Contact**|csstools@hotmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-browser-comments@4.0.0
+ ```
+
+
+ postcss-calc@8.2.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-calc@8.2.4|
+ >|**Version**|@8.2.4|
+ >|**Repository**|https://github.com/postcss/postcss-calc|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Andy Jansson|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-calc@8.2.4
+ ```
+
+
+ postcss-clamp@4.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-clamp@4.1.0|
+ >|**Version**|@4.1.0|
+ >|**Repository**|https://github.com/polemius/postcss-clamp|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Ivan Menshykov|
+ >|**Contact**|ivan.menshykov@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-clamp@4.1.0
+ ```
+
+
+ postcss-color-functional-notation@4.2.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-color-functional-notation@4.2.4|
+ >|**Version**|@4.2.4|
+ >|**Repository**|https://github.com/csstools/postcss-plugins|
+ >|**Licenses**|CC0-1.0|
+ >|**Publisher**|Jonathan Neal|
+ >|**Contact**|jonathantneal@hotmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-color-functional-notation@4.2.4
+ ```
+
+
+ postcss-color-hex-alpha@8.0.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-color-hex-alpha@8.0.4|
+ >|**Version**|@8.0.4|
+ >|**Repository**|https://github.com/csstools/postcss-plugins|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-color-hex-alpha@8.0.4
+ ```
+
+
+ postcss-color-rebeccapurple@7.1.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-color-rebeccapurple@7.1.1|
+ >|**Version**|@7.1.1|
+ >|**Repository**|https://github.com/csstools/postcss-plugins|
+ >|**Licenses**|CC0-1.0|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-color-rebeccapurple@7.1.1
+ ```
+
+
+ postcss-colormin@5.3.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-colormin@5.3.1|
+ >|**Version**|@5.3.1|
+ >|**Repository**|https://github.com/cssnano/cssnano|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Ben Briggs|
+ >|**Contact**|beneb.info@gmail.com|
+ >|**Homepage**|http://beneb.info|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-colormin@5.3.1
+ ```
+
+
+ postcss-convert-values@5.1.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-convert-values@5.1.3|
+ >|**Version**|@5.1.3|
+ >|**Repository**|https://github.com/cssnano/cssnano|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Ben Briggs|
+ >|**Contact**|beneb.info@gmail.com|
+ >|**Homepage**|http://beneb.info|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-convert-values@5.1.3
+ ```
+
+
+ postcss-custom-media@8.0.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-custom-media@8.0.2|
+ >|**Version**|@8.0.2|
+ >|**Repository**|https://github.com/csstools/postcss-plugins|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-custom-media@8.0.2
+ ```
+
+
+ postcss-custom-properties@12.1.11
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-custom-properties@12.1.11|
+ >|**Version**|@12.1.11|
+ >|**Repository**|https://github.com/csstools/postcss-plugins|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jonathan Neal|
+ >|**Contact**|jonathantneal@hotmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-custom-properties@12.1.11
+ ```
+
+
+ postcss-custom-selectors@6.0.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-custom-selectors@6.0.3|
+ >|**Version**|@6.0.3|
+ >|**Repository**|https://github.com/csstools/postcss-plugins|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-custom-selectors@6.0.3
+ ```
+
+
+ postcss-dir-pseudo-class@6.0.5
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-dir-pseudo-class@6.0.5|
+ >|**Version**|@6.0.5|
+ >|**Repository**|https://github.com/csstools/postcss-plugins|
+ >|**Licenses**|CC0-1.0|
+ >|**Publisher**|Jonathan Neal|
+ >|**Contact**|jonathantneal@hotmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-dir-pseudo-class@6.0.5
+ ```
+
+
+ postcss-discard-comments@5.1.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-discard-comments@5.1.2|
+ >|**Version**|@5.1.2|
+ >|**Repository**|https://github.com/cssnano/cssnano|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Ben Briggs|
+ >|**Contact**|beneb.info@gmail.com|
+ >|**Homepage**|http://beneb.info|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-discard-comments@5.1.2
+ ```
+
+
+ postcss-discard-duplicates@5.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-discard-duplicates@5.1.0|
+ >|**Version**|@5.1.0|
+ >|**Repository**|https://github.com/cssnano/cssnano|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Ben Briggs|
+ >|**Contact**|beneb.info@gmail.com|
+ >|**Homepage**|http://beneb.info|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-discard-duplicates@5.1.0
+ ```
+
+
+ postcss-discard-empty@5.1.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-discard-empty@5.1.1|
+ >|**Version**|@5.1.1|
+ >|**Repository**|https://github.com/cssnano/cssnano|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Ben Briggs|
+ >|**Contact**|beneb.info@gmail.com|
+ >|**Homepage**|http://beneb.info|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-discard-empty@5.1.1
+ ```
+
+
+ postcss-discard-overridden@5.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-discard-overridden@5.1.0|
+ >|**Version**|@5.1.0|
+ >|**Repository**|https://github.com/cssnano/cssnano|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Justineo|
+ >|**Contact**|justice360@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-discard-overridden@5.1.0
+ ```
+
+
+ postcss-double-position-gradients@3.1.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-double-position-gradients@3.1.2|
+ >|**Version**|@3.1.2|
+ >|**Repository**|https://github.com/csstools/postcss-plugins|
+ >|**Licenses**|CC0-1.0|
+ >|**Publisher**|Jonathan Neal|
+ >|**Contact**|jonathantneal@hotmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-double-position-gradients@3.1.2
+ ```
+
+
+ postcss-env-function@4.0.6
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-env-function@4.0.6|
+ >|**Version**|@4.0.6|
+ >|**Repository**|https://github.com/csstools/postcss-plugins|
+ >|**Licenses**|CC0-1.0|
+ >|**Publisher**|Jonathan Neal|
+ >|**Contact**|jonathantneal@hotmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-env-function@4.0.6
+ ```
+
+
+ postcss-flexbugs-fixes@5.0.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-flexbugs-fixes@5.0.2|
+ >|**Version**|@5.0.2|
+ >|**Repository**|https://github.com/luisrudge/postcss-flexbugs-fixes|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Luis Rudge|
+ >|**Contact**|luis@luisrudge.net|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-flexbugs-fixes@5.0.2
+ ```
+
+
+ postcss-focus-visible@6.0.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-focus-visible@6.0.4|
+ >|**Version**|@6.0.4|
+ >|**Repository**|https://github.com/csstools/postcss-plugins|
+ >|**Licenses**|CC0-1.0|
+ >|**Publisher**|Jonathan Neal|
+ >|**Contact**|jonathantneal@hotmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-focus-visible@6.0.4
+ ```
+
+
+ postcss-focus-within@5.0.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-focus-within@5.0.4|
+ >|**Version**|@5.0.4|
+ >|**Repository**|https://github.com/csstools/postcss-plugins|
+ >|**Licenses**|CC0-1.0|
+ >|**Publisher**|Jonathan Neal|
+ >|**Contact**|jonathantneal@hotmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-focus-within@5.0.4
+ ```
+
+
+ postcss-font-variant@5.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-font-variant@5.0.0|
+ >|**Version**|@5.0.0|
+ >|**Repository**|https://github.com/postcss/postcss-font-variant|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Maxime Thirouin|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-font-variant@5.0.0
+ ```
+
+
+ postcss-gap-properties@3.0.5
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-gap-properties@3.0.5|
+ >|**Version**|@3.0.5|
+ >|**Repository**|https://github.com/csstools/postcss-plugins|
+ >|**Licenses**|CC0-1.0|
+ >|**Publisher**|Jonathan Neal|
+ >|**Contact**|jonathantneal@hotmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-gap-properties@3.0.5
+ ```
+
+
+ postcss-image-set-function@4.0.7
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-image-set-function@4.0.7|
+ >|**Version**|@4.0.7|
+ >|**Repository**|https://github.com/csstools/postcss-plugins|
+ >|**Licenses**|CC0-1.0|
+ >|**Publisher**|Jonathan Neal|
+ >|**Contact**|jonathantneal@hotmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-image-set-function@4.0.7
+ ```
+
+
+ postcss-import@15.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-import@15.1.0|
+ >|**Version**|@15.1.0|
+ >|**Repository**|https://github.com/postcss/postcss-import|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Maxime Thirouin|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-import@15.1.0
+ ```
+
+
+ postcss-initial@4.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-initial@4.0.1|
+ >|**Version**|@4.0.1|
+ >|**Repository**|https://github.com/maximkoretskiy/postcss-initial|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Maksim Koretskiy|
+ >|**Contact**|mr.green.tv@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-initial@4.0.1
+ ```
+
+
+ postcss-js@4.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-js@4.0.1|
+ >|**Version**|@4.0.1|
+ >|**Repository**|https://github.com/postcss/postcss-js|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Andrey Sitnik|
+ >|**Contact**|andrey@sitnik.ru|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-js@4.0.1
+ ```
+
+
+ postcss-lab-function@4.2.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-lab-function@4.2.1|
+ >|**Version**|@4.2.1|
+ >|**Repository**|https://github.com/csstools/postcss-plugins|
+ >|**Licenses**|CC0-1.0|
+ >|**Publisher**|Jonathan Neal|
+ >|**Contact**|jonathantneal@hotmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-lab-function@4.2.1
+ ```
+
+
+ postcss-load-config@4.0.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-load-config@4.0.2|
+ >|**Version**|@4.0.2|
+ >|**Repository**|https://github.com/postcss/postcss-load-config|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Michael Ciniawky|
+ >|**Contact**|michael.ciniawsky@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-load-config@4.0.2
+ ```
+
+
+ postcss-loader@6.2.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-loader@6.2.1|
+ >|**Version**|@6.2.1|
+ >|**Repository**|https://github.com/webpack-contrib/postcss-loader|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Andrey Sitnik|
+ >|**Contact**|andrey@sitnik.ru|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-loader@6.2.1
+ ```
+
+
+ postcss-logical@5.0.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-logical@5.0.4|
+ >|**Version**|@5.0.4|
+ >|**Repository**|https://github.com/csstools/postcss-plugins|
+ >|**Licenses**|CC0-1.0|
+ >|**Publisher**|Jonathan Neal|
+ >|**Contact**|jonathantneal@hotmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-logical@5.0.4
+ ```
+
+
+ postcss-media-minmax@5.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-media-minmax@5.0.0|
+ >|**Version**|@5.0.0|
+ >|**Repository**|https://github.com/postcss/postcss-media-minmax|
+ >|**Licenses**|MIT|
+ >|**Publisher**|yisi|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-media-minmax@5.0.0
+ ```
+
+
+ postcss-merge-longhand@5.1.7
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-merge-longhand@5.1.7|
+ >|**Version**|@5.1.7|
+ >|**Repository**|https://github.com/cssnano/cssnano|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Ben Briggs|
+ >|**Contact**|beneb.info@gmail.com|
+ >|**Homepage**|http://beneb.info|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-merge-longhand@5.1.7
+ ```
+
+
+ postcss-merge-rules@5.1.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-merge-rules@5.1.4|
+ >|**Version**|@5.1.4|
+ >|**Repository**|https://github.com/cssnano/cssnano|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Ben Briggs|
+ >|**Contact**|beneb.info@gmail.com|
+ >|**Homepage**|http://beneb.info|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-merge-rules@5.1.4
+ ```
+
+
+ postcss-minify-font-values@5.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-minify-font-values@5.1.0|
+ >|**Version**|@5.1.0|
+ >|**Repository**|https://github.com/cssnano/cssnano|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Bogdan Chadkin|
+ >|**Contact**|trysound@yandex.ru|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-minify-font-values@5.1.0
+ ```
+
+
+ postcss-minify-gradients@5.1.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-minify-gradients@5.1.1|
+ >|**Version**|@5.1.1|
+ >|**Repository**|https://github.com/cssnano/cssnano|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Ben Briggs|
+ >|**Contact**|beneb.info@gmail.com|
+ >|**Homepage**|http://beneb.info|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-minify-gradients@5.1.1
+ ```
+
+
+ postcss-minify-params@5.1.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-minify-params@5.1.4|
+ >|**Version**|@5.1.4|
+ >|**Repository**|https://github.com/cssnano/cssnano|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Bogdan Chadkin|
+ >|**Contact**|trysound@yandex.ru|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-minify-params@5.1.4
+ ```
+
+
+ postcss-minify-selectors@5.2.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-minify-selectors@5.2.1|
+ >|**Version**|@5.2.1|
+ >|**Repository**|https://github.com/cssnano/cssnano|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Ben Briggs|
+ >|**Contact**|beneb.info@gmail.com|
+ >|**Homepage**|http://beneb.info|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-minify-selectors@5.2.1
+ ```
+
+
+ postcss-modules-extract-imports@3.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-modules-extract-imports@3.0.0|
+ >|**Version**|@3.0.0|
+ >|**Repository**|https://github.com/css-modules/postcss-modules-extract-imports|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Glen Maddern|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-modules-extract-imports@3.0.0
+ ```
+
+
+ postcss-modules-local-by-default@4.0.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-modules-local-by-default@4.0.3|
+ >|**Version**|@4.0.3|
+ >|**Repository**|https://github.com/css-modules/postcss-modules-local-by-default|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Mark Dalgleish|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-modules-local-by-default@4.0.3
+ ```
+
+
+ postcss-modules-scope@3.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-modules-scope@3.1.0|
+ >|**Version**|@3.1.0|
+ >|**Repository**|https://github.com/css-modules/postcss-modules-scope|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Glen Maddern|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-modules-scope@3.1.0
+ ```
+
+
+ postcss-modules-values@4.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-modules-values@4.0.0|
+ >|**Version**|@4.0.0|
+ >|**Repository**|https://github.com/css-modules/postcss-modules-values|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Glen Maddern|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-modules-values@4.0.0
+ ```
+
+
+ postcss-nested@6.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-nested@6.0.1|
+ >|**Version**|@6.0.1|
+ >|**Repository**|https://github.com/postcss/postcss-nested|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Andrey Sitnik|
+ >|**Contact**|andrey@sitnik.ru|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-nested@6.0.1
+ ```
+
+
+ postcss-nesting@10.2.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-nesting@10.2.0|
+ >|**Version**|@10.2.0|
+ >|**Repository**|https://github.com/csstools/postcss-plugins|
+ >|**Licenses**|CC0-1.0|
+ >|**Publisher**|Jonathan Neal|
+ >|**Contact**|jonathantneal@hotmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-nesting@10.2.0
+ ```
+
+
+ postcss-normalize-charset@5.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-normalize-charset@5.1.0|
+ >|**Version**|@5.1.0|
+ >|**Repository**|https://github.com/cssnano/cssnano|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Bogdan Chadkin|
+ >|**Contact**|trysound@yandex.ru|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-normalize-charset@5.1.0
+ ```
+
+
+ postcss-normalize-display-values@5.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-normalize-display-values@5.1.0|
+ >|**Version**|@5.1.0|
+ >|**Repository**|https://github.com/cssnano/cssnano|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Ben Briggs|
+ >|**Contact**|beneb.info@gmail.com|
+ >|**Homepage**|http://beneb.info|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-normalize-display-values@5.1.0
+ ```
+
+
+ postcss-normalize-positions@5.1.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-normalize-positions@5.1.1|
+ >|**Version**|@5.1.1|
+ >|**Repository**|https://github.com/cssnano/cssnano|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Ben Briggs|
+ >|**Contact**|beneb.info@gmail.com|
+ >|**Homepage**|http://beneb.info|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-normalize-positions@5.1.1
+ ```
+
+
+ postcss-normalize-repeat-style@5.1.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-normalize-repeat-style@5.1.1|
+ >|**Version**|@5.1.1|
+ >|**Repository**|https://github.com/cssnano/cssnano|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Ben Briggs|
+ >|**Contact**|beneb.info@gmail.com|
+ >|**Homepage**|http://beneb.info|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-normalize-repeat-style@5.1.1
+ ```
+
+
+ postcss-normalize-string@5.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-normalize-string@5.1.0|
+ >|**Version**|@5.1.0|
+ >|**Repository**|https://github.com/cssnano/cssnano|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Ben Briggs|
+ >|**Contact**|beneb.info@gmail.com|
+ >|**Homepage**|http://beneb.info|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-normalize-string@5.1.0
+ ```
+
+
+ postcss-normalize-timing-functions@5.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-normalize-timing-functions@5.1.0|
+ >|**Version**|@5.1.0|
+ >|**Repository**|https://github.com/cssnano/cssnano|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Ben Briggs|
+ >|**Contact**|beneb.info@gmail.com|
+ >|**Homepage**|http://beneb.info|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-normalize-timing-functions@5.1.0
+ ```
+
+
+ postcss-normalize-unicode@5.1.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-normalize-unicode@5.1.1|
+ >|**Version**|@5.1.1|
+ >|**Repository**|https://github.com/cssnano/cssnano|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Ben Briggs|
+ >|**Contact**|beneb.info@gmail.com|
+ >|**Homepage**|http://beneb.info|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-normalize-unicode@5.1.1
+ ```
+
+
+ postcss-normalize-url@5.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-normalize-url@5.1.0|
+ >|**Version**|@5.1.0|
+ >|**Repository**|https://github.com/cssnano/cssnano|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Ben Briggs|
+ >|**Contact**|beneb.info@gmail.com|
+ >|**Homepage**|http://beneb.info|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-normalize-url@5.1.0
+ ```
+
+
+ postcss-normalize-whitespace@5.1.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-normalize-whitespace@5.1.1|
+ >|**Version**|@5.1.1|
+ >|**Repository**|https://github.com/cssnano/cssnano|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Ben Briggs|
+ >|**Contact**|beneb.info@gmail.com|
+ >|**Homepage**|http://beneb.info|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-normalize-whitespace@5.1.1
+ ```
+
+
+ postcss-normalize@10.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-normalize@10.0.1|
+ >|**Version**|@10.0.1|
+ >|**Repository**|https://github.com/csstools/postcss-normalize|
+ >|**Licenses**|CC0-1.0|
+ >|**Publisher**|Jonathan Neal|
+ >|**Contact**|jonathantneal@hotmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-normalize@10.0.1
+ ```
+
+
+ postcss-opacity-percentage@1.1.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-opacity-percentage@1.1.3|
+ >|**Version**|@1.1.3|
+ >|**Repository**|https://github.com/mrcgrtz/postcss-opacity-percentage|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Marc Görtz|
+ >|**Contact**|git@marcgoertz.de|
+ >|**Homepage**|https://marcgoertz.de/|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-opacity-percentage@1.1.3
+ ```
+
+
+ postcss-ordered-values@5.1.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-ordered-values@5.1.3|
+ >|**Version**|@5.1.3|
+ >|**Repository**|https://github.com/cssnano/cssnano|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Ben Briggs|
+ >|**Contact**|beneb.info@gmail.com|
+ >|**Homepage**|http://beneb.info|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-ordered-values@5.1.3
+ ```
+
+
+ postcss-overflow-shorthand@3.0.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-overflow-shorthand@3.0.4|
+ >|**Version**|@3.0.4|
+ >|**Repository**|https://github.com/csstools/postcss-plugins|
+ >|**Licenses**|CC0-1.0|
+ >|**Publisher**|Jonathan Neal|
+ >|**Contact**|jonathantneal@hotmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-overflow-shorthand@3.0.4
+ ```
+
+
+ postcss-page-break@3.0.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-page-break@3.0.4|
+ >|**Version**|@3.0.4|
+ >|**Repository**|https://github.com/shrpne/postcss-page-break|
+ >|**Licenses**|MIT|
+ >|**Publisher**|shrpne|
+ >|**Contact**|shrpne@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-page-break@3.0.4
+ ```
+
+
+ postcss-place@7.0.5
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-place@7.0.5|
+ >|**Version**|@7.0.5|
+ >|**Repository**|https://github.com/csstools/postcss-plugins|
+ >|**Licenses**|CC0-1.0|
+ >|**Publisher**|Jonathan Neal|
+ >|**Contact**|jonathantneal@hotmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-place@7.0.5
+ ```
+
+
+ postcss-preset-env@7.8.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-preset-env@7.8.3|
+ >|**Version**|@7.8.3|
+ >|**Repository**|https://github.com/csstools/postcss-plugins|
+ >|**Licenses**|CC0-1.0|
+ >|**Publisher**|Jonathan Neal|
+ >|**Contact**|jonathantneal@hotmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-preset-env@7.8.3
+ ```
+
+
+ postcss-pseudo-class-any-link@7.1.6
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-pseudo-class-any-link@7.1.6|
+ >|**Version**|@7.1.6|
+ >|**Repository**|https://github.com/csstools/postcss-plugins|
+ >|**Licenses**|CC0-1.0|
+ >|**Publisher**|Jonathan Neal|
+ >|**Contact**|jonathantneal@hotmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-pseudo-class-any-link@7.1.6
+ ```
+
+
+ postcss-reduce-initial@5.1.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-reduce-initial@5.1.2|
+ >|**Version**|@5.1.2|
+ >|**Repository**|https://github.com/cssnano/cssnano|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Ben Briggs|
+ >|**Contact**|beneb.info@gmail.com|
+ >|**Homepage**|http://beneb.info|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-reduce-initial@5.1.2
+ ```
+
+
+ postcss-reduce-transforms@5.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-reduce-transforms@5.1.0|
+ >|**Version**|@5.1.0|
+ >|**Repository**|https://github.com/cssnano/cssnano|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Ben Briggs|
+ >|**Contact**|beneb.info@gmail.com|
+ >|**Homepage**|http://beneb.info|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-reduce-transforms@5.1.0
+ ```
+
+
+ postcss-replace-overflow-wrap@4.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-replace-overflow-wrap@4.0.0|
+ >|**Version**|@4.0.0|
+ >|**Repository**|https://github.com/MattDiMu/postcss-replace-overflow-wrap|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Matthias Müller|
+ >|**Contact**|MattDiMu@users.noreply.github.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-replace-overflow-wrap@4.0.0
+ ```
+
+
+ postcss-selector-not@6.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-selector-not@6.0.1|
+ >|**Version**|@6.0.1|
+ >|**Repository**|https://github.com/csstools/postcss-plugins|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-selector-not@6.0.1
+ ```
+
+
+ postcss-selector-parser@6.0.15
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-selector-parser@6.0.15|
+ >|**Version**|@6.0.15|
+ >|**Repository**|https://github.com/postcss/postcss-selector-parser|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-selector-parser@6.0.15
+ ```
+
+
+ postcss-svgo@5.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-svgo@5.1.0|
+ >|**Version**|@5.1.0|
+ >|**Repository**|https://github.com/cssnano/cssnano|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Ben Briggs|
+ >|**Contact**|beneb.info@gmail.com|
+ >|**Homepage**|http://beneb.info|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-svgo@5.1.0
+ ```
+
+
+ postcss-unique-selectors@5.1.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-unique-selectors@5.1.1|
+ >|**Version**|@5.1.1|
+ >|**Repository**|https://github.com/cssnano/cssnano|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Ben Briggs|
+ >|**Contact**|beneb.info@gmail.com|
+ >|**Homepage**|http://beneb.info|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-unique-selectors@5.1.1
+ ```
+
+
+ postcss-value-parser@4.2.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss-value-parser@4.2.0|
+ >|**Version**|@4.2.0|
+ >|**Repository**|https://github.com/TrySound/postcss-value-parser|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Bogdan Chadkin|
+ >|**Contact**|trysound@yandex.ru|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss-value-parser@4.2.0
+ ```
+
+
+ postcss@7.0.39
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss@7.0.39|
+ >|**Version**|@7.0.39|
+ >|**Repository**|https://github.com/postcss/postcss|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Andrey Sitnik|
+ >|**Contact**|andrey@sitnik.ru|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss@7.0.39
+ ```
+
+
+ postcss@8.4.33
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|postcss@8.4.33|
+ >|**Version**|@8.4.33|
+ >|**Repository**|https://github.com/postcss/postcss|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Andrey Sitnik|
+ >|**Contact**|andrey@sitnik.ru|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i postcss@8.4.33
+ ```
+
+
+ prelude-ls@1.1.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|prelude-ls@1.1.2|
+ >|**Version**|@1.1.2|
+ >|**Repository**|https://github.com/gkz/prelude-ls|
+ >|**Licenses**|MIT|
+ >|**Publisher**|George Zahariev|
+ >|**Contact**|z@georgezahariev.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i prelude-ls@1.1.2
+ ```
+
+
+ prelude-ls@1.2.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|prelude-ls@1.2.1|
+ >|**Version**|@1.2.1|
+ >|**Repository**|https://github.com/gkz/prelude-ls|
+ >|**Licenses**|MIT|
+ >|**Publisher**|George Zahariev|
+ >|**Contact**|z@georgezahariev.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i prelude-ls@1.2.1
+ ```
+
+
+ pretty-bytes@5.6.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|pretty-bytes@5.6.0|
+ >|**Version**|@5.6.0|
+ >|**Repository**|https://github.com/sindresorhus/pretty-bytes|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|https://sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i pretty-bytes@5.6.0
+ ```
+
+
+ pretty-error@4.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|pretty-error@4.0.0|
+ >|**Version**|@4.0.0|
+ >|**Repository**|https://github.com/AriaMinaei/pretty-error|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Aria Minaei|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i pretty-error@4.0.0
+ ```
+
+
+ pretty-format@27.5.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|pretty-format@27.5.1|
+ >|**Version**|@27.5.1|
+ >|**Repository**|https://github.com/facebook/jest|
+ >|**Licenses**|MIT|
+ >|**Publisher**|James Kyle|
+ >|**Contact**|me@thejameskyle.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i pretty-format@27.5.1
+ ```
+
+
+ pretty-format@28.1.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|pretty-format@28.1.3|
+ >|**Version**|@28.1.3|
+ >|**Repository**|https://github.com/facebook/jest|
+ >|**Licenses**|MIT|
+ >|**Publisher**|James Kyle|
+ >|**Contact**|me@thejameskyle.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i pretty-format@28.1.3
+ ```
+
+
+ process-nextick-args@2.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|process-nextick-args@2.0.1|
+ >|**Version**|@2.0.1|
+ >|**Repository**|https://github.com/calvinmetcalf/process-nextick-args|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i process-nextick-args@2.0.1
+ ```
+
+
+ promise@8.3.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|promise@8.3.0|
+ >|**Version**|@8.3.0|
+ >|**Repository**|https://github.com/then/promise|
+ >|**Licenses**|MIT|
+ >|**Publisher**|ForbesLindesay|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i promise@8.3.0
+ ```
+
+
+ prompts@2.4.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|prompts@2.4.2|
+ >|**Version**|@2.4.2|
+ >|**Repository**|https://github.com/terkelg/prompts|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Terkel Gjervig|
+ >|**Contact**|terkel@terkel.com|
+ >|**Homepage**|https://terkel.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i prompts@2.4.2
+ ```
+
+
+ prop-types@15.8.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|prop-types@15.8.1|
+ >|**Version**|@15.8.1|
+ >|**Repository**|https://github.com/facebook/prop-types|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i prop-types@15.8.1
+ ```
+
+
+ property-expr@2.0.6
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|property-expr@2.0.6|
+ >|**Version**|@2.0.6|
+ >|**Repository**|https://github.com/jquense/expr|
+ >|**Licenses**|MIT|
+ >|**Publisher**|@monasticpanic Jason Quense|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i property-expr@2.0.6
+ ```
+
+
+ proxy-addr@2.0.7
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|proxy-addr@2.0.7|
+ >|**Version**|@2.0.7|
+ >|**Repository**|https://github.com/jshttp/proxy-addr|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Douglas Christopher Wilson|
+ >|**Contact**|doug@somethingdoug.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i proxy-addr@2.0.7
+ ```
+
+
+ psl@1.9.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|psl@1.9.0|
+ >|**Version**|@1.9.0|
+ >|**Repository**|https://github.com/lupomontero/psl|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Lupo Montero|
+ >|**Contact**|lupomontero@gmail.com|
+ >|**Homepage**|https://lupomontero.com/|
+
+ #### Use this package in your project
+ ```bash
+ npm i psl@1.9.0
+ ```
+
+
+ punycode@2.3.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|punycode@2.3.1|
+ >|**Version**|@2.3.1|
+ >|**Repository**|https://github.com/mathiasbynens/punycode.js|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Mathias Bynens|
+ >|**Contact**|NA|
+ >|**Homepage**|https://mathiasbynens.be/|
+
+ #### Use this package in your project
+ ```bash
+ npm i punycode@2.3.1
+ ```
+
+
+ q@1.5.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|q@1.5.1|
+ >|**Version**|@1.5.1|
+ >|**Repository**|https://github.com/kriskowal/q|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Kris Kowal|
+ >|**Contact**|kris@cixar.com|
+ >|**Homepage**|https://github.com/kriskowal|
+
+ #### Use this package in your project
+ ```bash
+ npm i q@1.5.1
+ ```
+
+
+ qs@6.11.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|qs@6.11.0|
+ >|**Version**|@6.11.0|
+ >|**Repository**|https://github.com/ljharb/qs|
+ >|**Licenses**|BSD-3-Clause|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i qs@6.11.0
+ ```
+
+
+ qs@6.11.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|qs@6.11.2|
+ >|**Version**|@6.11.2|
+ >|**Repository**|https://github.com/ljharb/qs|
+ >|**Licenses**|BSD-3-Clause|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i qs@6.11.2
+ ```
+
+
+ querystringify@2.2.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|querystringify@2.2.0|
+ >|**Version**|@2.2.0|
+ >|**Repository**|https://github.com/unshiftio/querystringify|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Arnout Kazemier|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i querystringify@2.2.0
+ ```
+
+
+ queue-microtask@1.2.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|queue-microtask@1.2.3|
+ >|**Version**|@1.2.3|
+ >|**Repository**|https://github.com/feross/queue-microtask|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Feross Aboukhadijeh|
+ >|**Contact**|feross@feross.org|
+ >|**Homepage**|https://feross.org|
+
+ #### Use this package in your project
+ ```bash
+ npm i queue-microtask@1.2.3
+ ```
+
+
+ quick-lru@4.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|quick-lru@4.0.1|
+ >|**Version**|@4.0.1|
+ >|**Repository**|https://github.com/sindresorhus/quick-lru|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i quick-lru@4.0.1
+ ```
+
+
+ raf@3.4.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|raf@3.4.1|
+ >|**Version**|@3.4.1|
+ >|**Repository**|https://github.com/chrisdickinson/raf|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Chris Dickinson|
+ >|**Contact**|chris@neversaw.us|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i raf@3.4.1
+ ```
+
+
+ randombytes@2.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|randombytes@2.1.0|
+ >|**Version**|@2.1.0|
+ >|**Repository**|https://github.com/crypto-browserify/randombytes|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i randombytes@2.1.0
+ ```
+
+
+ range-parser@1.2.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|range-parser@1.2.1|
+ >|**Version**|@1.2.1|
+ >|**Repository**|https://github.com/jshttp/range-parser|
+ >|**Licenses**|MIT|
+ >|**Publisher**|TJ Holowaychuk|
+ >|**Contact**|tj@vision-media.ca|
+ >|**Homepage**|http://tjholowaychuk.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i range-parser@1.2.1
+ ```
+
+
+ raw-body@2.5.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|raw-body@2.5.1|
+ >|**Version**|@2.5.1|
+ >|**Repository**|https://github.com/stream-utils/raw-body|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jonathan Ong|
+ >|**Contact**|me@jongleberry.com|
+ >|**Homepage**|http://jongleberry.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i raw-body@2.5.1
+ ```
+
+
+ react-app-polyfill@3.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|react-app-polyfill@3.0.0|
+ >|**Version**|@3.0.0|
+ >|**Repository**|https://github.com/facebook/create-react-app|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i react-app-polyfill@3.0.0
+ ```
+
+
+ react-dev-utils@12.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|react-dev-utils@12.0.1|
+ >|**Version**|@12.0.1|
+ >|**Repository**|https://github.com/facebook/create-react-app|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i react-dev-utils@12.0.1
+ ```
+
+
+ react-device-detect@2.2.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|react-device-detect@2.2.3|
+ >|**Version**|@2.2.3|
+ >|**Repository**|https://github.com/duskload/react-device-detect|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Michael Laktionov|
+ >|**Contact**|duskload@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i react-device-detect@2.2.3
+ ```
+
+
+ react-dom@18.2.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|react-dom@18.2.0|
+ >|**Version**|@18.2.0|
+ >|**Repository**|https://github.com/facebook/react|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i react-dom@18.2.0
+ ```
+
+
+ react-error-overlay@6.0.11
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|react-error-overlay@6.0.11|
+ >|**Version**|@6.0.11|
+ >|**Repository**|https://github.com/facebook/create-react-app|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Joe Haddad|
+ >|**Contact**|timer150@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i react-error-overlay@6.0.11
+ ```
+
+
+ react-fast-compare@2.0.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|react-fast-compare@2.0.4|
+ >|**Version**|@2.0.4|
+ >|**Repository**|https://github.com/FormidableLabs/react-fast-compare|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Chris Bolin|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i react-fast-compare@2.0.4
+ ```
+
+
+ react-infinite-scroll-component@6.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|react-infinite-scroll-component@6.1.0|
+ >|**Version**|@6.1.0|
+ >|**Repository**|https://github.com/ankeetmaini/react-infinite-scroll-component|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Ankeet Maini|
+ >|**Contact**|ankeet.maini@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i react-infinite-scroll-component@6.1.0
+ ```
+
+
+ react-is@16.13.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|react-is@16.13.1|
+ >|**Version**|@16.13.1|
+ >|**Repository**|https://github.com/facebook/react|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i react-is@16.13.1
+ ```
+
+
+ react-is@17.0.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|react-is@17.0.2|
+ >|**Version**|@17.0.2|
+ >|**Repository**|https://github.com/facebook/react|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i react-is@17.0.2
+ ```
+
+
+ react-is@18.2.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|react-is@18.2.0|
+ >|**Version**|@18.2.0|
+ >|**Repository**|https://github.com/facebook/react|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i react-is@18.2.0
+ ```
+
+
+ react-redux@8.1.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|react-redux@8.1.3|
+ >|**Version**|@8.1.3|
+ >|**Repository**|https://github.com/reduxjs/react-redux|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Dan Abramov|
+ >|**Contact**|dan.abramov@me.com|
+ >|**Homepage**|https://github.com/gaearon|
+
+ #### Use this package in your project
+ ```bash
+ npm i react-redux@8.1.3
+ ```
+
+
+ react-refresh@0.11.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|react-refresh@0.11.0|
+ >|**Version**|@0.11.0|
+ >|**Repository**|https://github.com/facebook/react|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i react-refresh@0.11.0
+ ```
+
+
+ react-scripts@5.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|react-scripts@5.0.1|
+ >|**Version**|@5.0.1|
+ >|**Repository**|https://github.com/facebook/create-react-app|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i react-scripts@5.0.1
+ ```
+
+
+ react@18.2.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|react@18.2.0|
+ >|**Version**|@18.2.0|
+ >|**Repository**|https://github.com/facebook/react|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i react@18.2.0
+ ```
+
+
+ read-cache@1.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|read-cache@1.0.0|
+ >|**Version**|@1.0.0|
+ >|**Repository**|https://github.com/TrySound/read-cache|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Bogdan Chadkin|
+ >|**Contact**|trysound@yandex.ru|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i read-cache@1.0.0
+ ```
+
+
+ read-installed@4.0.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|read-installed@4.0.3|
+ >|**Version**|@4.0.3|
+ >|**Repository**|https://github.com/isaacs/read-installed|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Isaac Z. Schlueter|
+ >|**Contact**|i@izs.me|
+ >|**Homepage**|http://blog.izs.me/|
+
+ #### Use this package in your project
+ ```bash
+ npm i read-installed@4.0.3
+ ```
+
+
+ read-package-json@2.1.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|read-package-json@2.1.2|
+ >|**Version**|@2.1.2|
+ >|**Repository**|https://github.com/npm/read-package-json|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Isaac Z. Schlueter|
+ >|**Contact**|i@izs.me|
+ >|**Homepage**|http://blog.izs.me/|
+
+ #### Use this package in your project
+ ```bash
+ npm i read-package-json@2.1.2
+ ```
+
+
+ read-pkg-up@7.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|read-pkg-up@7.0.1|
+ >|**Version**|@7.0.1|
+ >|**Repository**|https://github.com/sindresorhus/read-pkg-up|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i read-pkg-up@7.0.1
+ ```
+
+
+ read-pkg@5.2.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|read-pkg@5.2.0|
+ >|**Version**|@5.2.0|
+ >|**Repository**|https://github.com/sindresorhus/read-pkg|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i read-pkg@5.2.0
+ ```
+
+
+ readable-stream@2.3.8
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|readable-stream@2.3.8|
+ >|**Version**|@2.3.8|
+ >|**Repository**|https://github.com/nodejs/readable-stream|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i readable-stream@2.3.8
+ ```
+
+
+ readable-stream@3.6.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|readable-stream@3.6.2|
+ >|**Version**|@3.6.2|
+ >|**Repository**|https://github.com/nodejs/readable-stream|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i readable-stream@3.6.2
+ ```
+
+
+ readdir-scoped-modules@1.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|readdir-scoped-modules@1.1.0|
+ >|**Version**|@1.1.0|
+ >|**Repository**|https://github.com/npm/readdir-scoped-modules|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Isaac Z. Schlueter|
+ >|**Contact**|i@izs.me|
+ >|**Homepage**|http://blog.izs.me/|
+
+ #### Use this package in your project
+ ```bash
+ npm i readdir-scoped-modules@1.1.0
+ ```
+
+
+ readdirp@3.6.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|readdirp@3.6.0|
+ >|**Version**|@3.6.0|
+ >|**Repository**|https://github.com/paulmillr/readdirp|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Thorsten Lorenz|
+ >|**Contact**|thlorenz@gmx.de|
+ >|**Homepage**|thlorenz.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i readdirp@3.6.0
+ ```
+
+
+ recursive-readdir@2.2.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|recursive-readdir@2.2.3|
+ >|**Version**|@2.2.3|
+ >|**Repository**|https://github.com/jergason/recursive-readdir|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jamison Dance|
+ >|**Contact**|jergason@gmail.com|
+ >|**Homepage**|http://jamison.dance.com/|
+
+ #### Use this package in your project
+ ```bash
+ npm i recursive-readdir@2.2.3
+ ```
+
+
+ redent@3.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|redent@3.0.0|
+ >|**Version**|@3.0.0|
+ >|**Repository**|https://github.com/sindresorhus/redent|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i redent@3.0.0
+ ```
+
+
+ redux-persist@6.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|redux-persist@6.0.0|
+ >|**Version**|@6.0.0|
+ >|**Repository**|https://github.com/rt2zz/redux-persist|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i redux-persist@6.0.0
+ ```
+
+
+ redux-thunk@2.4.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|redux-thunk@2.4.2|
+ >|**Version**|@2.4.2|
+ >|**Repository**|https://github.com/reduxjs/redux-thunk|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Dan Abramov|
+ >|**Contact**|dan.abramov@me.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i redux-thunk@2.4.2
+ ```
+
+
+ redux@4.2.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|redux@4.2.1|
+ >|**Version**|@4.2.1|
+ >|**Repository**|https://github.com/reduxjs/redux|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i redux@4.2.1
+ ```
+
+
+ reflect.getprototypeof@1.0.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|reflect.getprototypeof@1.0.4|
+ >|**Version**|@.1.0.4|
+ >|**Repository**|https://github.com/es-shims/Reflect.getPrototypeOf|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i reflect.getprototypeof@1.0.4
+ ```
+
+
+ regenerate-unicode-properties@10.1.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|regenerate-unicode-properties@10.1.1|
+ >|**Version**|@10.1.1|
+ >|**Repository**|https://github.com/mathiasbynens/regenerate-unicode-properties|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Mathias Bynens|
+ >|**Contact**|NA|
+ >|**Homepage**|https://mathiasbynens.be/|
+
+ #### Use this package in your project
+ ```bash
+ npm i regenerate-unicode-properties@10.1.1
+ ```
+
+
+ regenerate@1.4.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|regenerate@1.4.2|
+ >|**Version**|@1.4.2|
+ >|**Repository**|https://github.com/mathiasbynens/regenerate|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Mathias Bynens|
+ >|**Contact**|NA|
+ >|**Homepage**|https://mathiasbynens.be/|
+
+ #### Use this package in your project
+ ```bash
+ npm i regenerate@1.4.2
+ ```
+
+
+ regenerator-runtime@0.13.11
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|regenerator-runtime@0.13.11|
+ >|**Version**|@0.13.11|
+ >|**Repository**|https://github.com/facebook/regenerator/tree/main/packages/runtime|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Ben Newman|
+ >|**Contact**|bn@cs.stanford.edu|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i regenerator-runtime@0.13.11
+ ```
+
+
+ regenerator-runtime@0.14.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|regenerator-runtime@0.14.1|
+ >|**Version**|@0.14.1|
+ >|**Repository**|https://github.com/facebook/regenerator/tree/main/packages/runtime|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Ben Newman|
+ >|**Contact**|bn@cs.stanford.edu|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i regenerator-runtime@0.14.1
+ ```
+
+
+ regenerator-transform@0.15.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|regenerator-transform@0.15.2|
+ >|**Version**|@0.15.2|
+ >|**Repository**|https://github.com/facebook/regenerator/tree/main/packages/transform|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Ben Newman|
+ >|**Contact**|bn@cs.stanford.edu|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i regenerator-transform@0.15.2
+ ```
+
+
+ regex-parser@2.3.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|regex-parser@2.3.0|
+ >|**Version**|@2.3.0|
+ >|**Repository**|https://github.com/IonicaBizau/regex-parser.js|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Ionică Bizău|
+ >|**Contact**|bizauionica@gmail.com|
+ >|**Homepage**|https://ionicabizau.net|
+
+ #### Use this package in your project
+ ```bash
+ npm i regex-parser@2.3.0
+ ```
+
+
+ regexp.prototype.flags@1.5.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|regexp.prototype.flags@1.5.1|
+ >|**Version**|@..1.5.1|
+ >|**Repository**|https://github.com/es-shims/RegExp.prototype.flags|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i regexp.prototype.flags@1.5.1
+ ```
+
+
+ regexpp@3.2.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|regexpp@3.2.0|
+ >|**Version**|@3.2.0|
+ >|**Repository**|https://github.com/mysticatea/regexpp|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Toru Nagashima|
+ >|**Contact**|NA|
+ >|**Homepage**|https://github.com/mysticatea|
+
+ #### Use this package in your project
+ ```bash
+ npm i regexpp@3.2.0
+ ```
+
+
+ regexpu-core@5.3.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|regexpu-core@5.3.2|
+ >|**Version**|@5.3.2|
+ >|**Repository**|https://github.com/mathiasbynens/regexpu-core|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Mathias Bynens|
+ >|**Contact**|NA|
+ >|**Homepage**|https://mathiasbynens.be/|
+
+ #### Use this package in your project
+ ```bash
+ npm i regexpu-core@5.3.2
+ ```
+
+
+ regjsparser@0.9.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|regjsparser@0.9.1|
+ >|**Version**|@0.9.1|
+ >|**Repository**|https://github.com/jviereck/regjsparser|
+ >|**Licenses**|BSD-2-Clause|
+ >|**Publisher**|'Julian Viereck'|
+ >|**Contact**|julian.viereck@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i regjsparser@0.9.1
+ ```
+
+
+ relateurl@0.2.7
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|relateurl@0.2.7|
+ >|**Version**|@0.2.7|
+ >|**Repository**|https://github.com/stevenvachon/relateurl|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Steven Vachon|
+ >|**Contact**|contact@svachon.com|
+ >|**Homepage**|http://www.svachon.com/|
+
+ #### Use this package in your project
+ ```bash
+ npm i relateurl@0.2.7
+ ```
+
+
+ renderkid@3.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|renderkid@3.0.0|
+ >|**Version**|@3.0.0|
+ >|**Repository**|https://github.com/AriaMinaei/RenderKid|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Aria Minaei|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i renderkid@3.0.0
+ ```
+
+
+ require-directory@2.1.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|require-directory@2.1.1|
+ >|**Version**|@2.1.1|
+ >|**Repository**|https://github.com/troygoode/node-require-directory|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Troy Goode|
+ >|**Contact**|troygoode@gmail.com|
+ >|**Homepage**|http://github.com/troygoode/|
+
+ #### Use this package in your project
+ ```bash
+ npm i require-directory@2.1.1
+ ```
+
+
+ require-from-string@2.0.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|require-from-string@2.0.2|
+ >|**Version**|@2.0.2|
+ >|**Repository**|https://github.com/floatdrop/require-from-string|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Vsevolod Strukchinsky|
+ >|**Contact**|floatdrop@gmail.com|
+ >|**Homepage**|github.com/floatdrop|
+
+ #### Use this package in your project
+ ```bash
+ npm i require-from-string@2.0.2
+ ```
+
+
+ requireindex@1.2.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|requireindex@1.2.0|
+ >|**Version**|@1.2.0|
+ >|**Repository**|https://github.com/stephenhandley/requireindex|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Stephen Handley|
+ >|**Contact**|stephen.handley@gmail.com|
+ >|**Homepage**|http://person.sh|
+
+ #### Use this package in your project
+ ```bash
+ npm i requireindex@1.2.0
+ ```
+
+
+ requires-port@1.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|requires-port@1.0.0|
+ >|**Version**|@1.0.0|
+ >|**Repository**|https://github.com/unshiftio/requires-port|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Arnout Kazemier|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i requires-port@1.0.0
+ ```
+
+
+ reselect@4.1.8
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|reselect@4.1.8|
+ >|**Version**|@4.1.8|
+ >|**Repository**|https://github.com/reduxjs/reselect|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i reselect@4.1.8
+ ```
+
+
+ resolve-cwd@3.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|resolve-cwd@3.0.0|
+ >|**Version**|@3.0.0|
+ >|**Repository**|https://github.com/sindresorhus/resolve-cwd|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i resolve-cwd@3.0.0
+ ```
+
+
+ resolve-from@4.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|resolve-from@4.0.0|
+ >|**Version**|@4.0.0|
+ >|**Repository**|https://github.com/sindresorhus/resolve-from|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i resolve-from@4.0.0
+ ```
+
+
+ resolve-from@5.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|resolve-from@5.0.0|
+ >|**Version**|@5.0.0|
+ >|**Repository**|https://github.com/sindresorhus/resolve-from|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i resolve-from@5.0.0
+ ```
+
+
+ resolve-global@1.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|resolve-global@1.0.0|
+ >|**Version**|@1.0.0|
+ >|**Repository**|https://github.com/sindresorhus/resolve-global|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i resolve-global@1.0.0
+ ```
+
+
+ resolve-url-loader@4.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|resolve-url-loader@4.0.0|
+ >|**Version**|@4.0.0|
+ >|**Repository**|https://github.com/bholloway/resolve-url-loader|
+ >|**Licenses**|MIT|
+ >|**Publisher**|bholloway|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i resolve-url-loader@4.0.0
+ ```
+
+
+ resolve.exports@1.1.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|resolve.exports@1.1.1|
+ >|**Version**|@.1.1.1|
+ >|**Repository**|https://github.com/lukeed/resolve.exports|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Luke Edwards|
+ >|**Contact**|luke.edwards05@gmail.com|
+ >|**Homepage**|https://lukeed.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i resolve.exports@1.1.1
+ ```
+
+
+ resolve@1.22.8
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|resolve@1.22.8|
+ >|**Version**|@1.22.8|
+ >|**Repository**|https://github.com/browserify/resolve|
+ >|**Licenses**|MIT|
+ >|**Publisher**|James Halliday|
+ >|**Contact**|mail@substack.net|
+ >|**Homepage**|http://substack.net|
+
+ #### Use this package in your project
+ ```bash
+ npm i resolve@1.22.8
+ ```
+
+
+ resolve@2.0.0-next.5
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|resolve@2.0.0-next.5|
+ >|**Version**|@2.0.0.5|
+ >|**Repository**|https://github.com/browserify/resolve|
+ >|**Licenses**|MIT|
+ >|**Publisher**|James Halliday|
+ >|**Contact**|mail@substack.net|
+ >|**Homepage**|http://substack.net|
+
+ #### Use this package in your project
+ ```bash
+ npm i resolve@2.0.0-next.5
+ ```
+
+
+ restore-cursor@2.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|restore-cursor@2.0.0|
+ >|**Version**|@2.0.0|
+ >|**Repository**|https://github.com/sindresorhus/restore-cursor|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i restore-cursor@2.0.0
+ ```
+
+
+ retry@0.13.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|retry@0.13.1|
+ >|**Version**|@0.13.1|
+ >|**Repository**|https://github.com/tim-kos/node-retry|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Tim Koschützki|
+ >|**Contact**|tim@debuggable.com|
+ >|**Homepage**|http://debuggable.com/|
+
+ #### Use this package in your project
+ ```bash
+ npm i retry@0.13.1
+ ```
+
+
+ reusify@1.0.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|reusify@1.0.4|
+ >|**Version**|@1.0.4|
+ >|**Repository**|https://github.com/mcollina/reusify|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Matteo Collina|
+ >|**Contact**|hello@matteocollina.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i reusify@1.0.4
+ ```
+
+
+ rimraf@3.0.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|rimraf@3.0.2|
+ >|**Version**|@3.0.2|
+ >|**Repository**|https://github.com/isaacs/rimraf|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Isaac Z. Schlueter|
+ >|**Contact**|i@izs.me|
+ >|**Homepage**|http://blog.izs.me/|
+
+ #### Use this package in your project
+ ```bash
+ npm i rimraf@3.0.2
+ ```
+
+
+ rollup-plugin-terser@7.0.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|rollup-plugin-terser@7.0.2|
+ >|**Version**|@7.0.2|
+ >|**Repository**|https://github.com/TrySound/rollup-plugin-terser|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Bogdan Chadkin|
+ >|**Contact**|trysound@yandex.ru|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i rollup-plugin-terser@7.0.2
+ ```
+
+
+ rollup@2.79.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|rollup@2.79.1|
+ >|**Version**|@2.79.1|
+ >|**Repository**|https://github.com/rollup/rollup|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Rich Harris|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i rollup@2.79.1
+ ```
+
+
+ run-async@2.4.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|run-async@2.4.1|
+ >|**Version**|@2.4.1|
+ >|**Repository**|https://github.com/SBoudrias/run-async|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Simon Boudrias|
+ >|**Contact**|admin@simonboudrias.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i run-async@2.4.1
+ ```
+
+
+ run-parallel@1.2.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|run-parallel@1.2.0|
+ >|**Version**|@1.2.0|
+ >|**Repository**|https://github.com/feross/run-parallel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Feross Aboukhadijeh|
+ >|**Contact**|feross@feross.org|
+ >|**Homepage**|https://feross.org|
+
+ #### Use this package in your project
+ ```bash
+ npm i run-parallel@1.2.0
+ ```
+
+
+ rxjs@6.6.7
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|rxjs@6.6.7|
+ >|**Version**|@6.6.7|
+ >|**Repository**|https://github.com/reactivex/rxjs|
+ >|**Licenses**|Apache-2.0|
+ >|**Publisher**|Ben Lesh|
+ >|**Contact**|ben@benlesh.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i rxjs@6.6.7
+ ```
+
+
+ safe-array-concat@1.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|safe-array-concat@1.1.0|
+ >|**Version**|@1.1.0|
+ >|**Repository**|https://github.com/ljharb/safe-array-concat|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i safe-array-concat@1.1.0
+ ```
+
+
+ safe-buffer@5.1.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|safe-buffer@5.1.2|
+ >|**Version**|@5.1.2|
+ >|**Repository**|https://github.com/feross/safe-buffer|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Feross Aboukhadijeh|
+ >|**Contact**|feross@feross.org|
+ >|**Homepage**|http://feross.org|
+
+ #### Use this package in your project
+ ```bash
+ npm i safe-buffer@5.1.2
+ ```
+
+
+ safe-buffer@5.2.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|safe-buffer@5.2.1|
+ >|**Version**|@5.2.1|
+ >|**Repository**|https://github.com/feross/safe-buffer|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Feross Aboukhadijeh|
+ >|**Contact**|feross@feross.org|
+ >|**Homepage**|https://feross.org|
+
+ #### Use this package in your project
+ ```bash
+ npm i safe-buffer@5.2.1
+ ```
+
+
+ safe-regex-test@1.0.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|safe-regex-test@1.0.2|
+ >|**Version**|@1.0.2|
+ >|**Repository**|https://github.com/ljharb/safe-regex-test|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i safe-regex-test@1.0.2
+ ```
+
+
+ safer-buffer@2.1.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|safer-buffer@2.1.2|
+ >|**Version**|@2.1.2|
+ >|**Repository**|https://github.com/ChALkeR/safer-buffer|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Nikita Skovoroda|
+ >|**Contact**|chalkerx@gmail.com|
+ >|**Homepage**|https://github.com/ChALkeR|
+
+ #### Use this package in your project
+ ```bash
+ npm i safer-buffer@2.1.2
+ ```
+
+
+ sanitize.css@13.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|sanitize.css@13.0.0|
+ >|**Version**|@.13.0.0|
+ >|**Repository**|https://github.com/csstools/sanitize.css|
+ >|**Licenses**|CC0-1.0|
+ >|**Publisher**|Jonathan Neal|
+ >|**Contact**|jonathantneal@hotmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i sanitize.css@13.0.0
+ ```
+
+
+ sass-loader@12.6.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|sass-loader@12.6.0|
+ >|**Version**|@12.6.0|
+ >|**Repository**|https://github.com/webpack-contrib/sass-loader|
+ >|**Licenses**|MIT|
+ >|**Publisher**|J. Tangelder|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i sass-loader@12.6.0
+ ```
+
+
+ sax@1.2.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|sax@1.2.4|
+ >|**Version**|@1.2.4|
+ >|**Repository**|https://github.com/isaacs/sax-js|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Isaac Z. Schlueter|
+ >|**Contact**|i@izs.me|
+ >|**Homepage**|http://blog.izs.me/|
+
+ #### Use this package in your project
+ ```bash
+ npm i sax@1.2.4
+ ```
+
+
+ saxes@5.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|saxes@5.0.1|
+ >|**Version**|@5.0.1|
+ >|**Repository**|https://github.com/lddubeau/saxes|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Louis-Dominique Dubeau|
+ >|**Contact**|ldd@lddubeau.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i saxes@5.0.1
+ ```
+
+
+ scheduler@0.23.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|scheduler@0.23.0|
+ >|**Version**|@0.23.0|
+ >|**Repository**|https://github.com/facebook/react|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i scheduler@0.23.0
+ ```
+
+
+ schema-utils@2.7.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|schema-utils@2.7.0|
+ >|**Version**|@2.7.0|
+ >|**Repository**|https://github.com/webpack/schema-utils|
+ >|**Licenses**|MIT|
+ >|**Publisher**|webpack Contrib|
+ >|**Contact**|NA|
+ >|**Homepage**|https://github.com/webpack-contrib|
+
+ #### Use this package in your project
+ ```bash
+ npm i schema-utils@2.7.0
+ ```
+
+
+ schema-utils@2.7.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|schema-utils@2.7.1|
+ >|**Version**|@2.7.1|
+ >|**Repository**|https://github.com/webpack/schema-utils|
+ >|**Licenses**|MIT|
+ >|**Publisher**|webpack Contrib|
+ >|**Contact**|NA|
+ >|**Homepage**|https://github.com/webpack-contrib|
+
+ #### Use this package in your project
+ ```bash
+ npm i schema-utils@2.7.1
+ ```
+
+
+ schema-utils@3.3.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|schema-utils@3.3.0|
+ >|**Version**|@3.3.0|
+ >|**Repository**|https://github.com/webpack/schema-utils|
+ >|**Licenses**|MIT|
+ >|**Publisher**|webpack Contrib|
+ >|**Contact**|NA|
+ >|**Homepage**|https://github.com/webpack-contrib|
+
+ #### Use this package in your project
+ ```bash
+ npm i schema-utils@3.3.0
+ ```
+
+
+ schema-utils@4.2.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|schema-utils@4.2.0|
+ >|**Version**|@4.2.0|
+ >|**Repository**|https://github.com/webpack/schema-utils|
+ >|**Licenses**|MIT|
+ >|**Publisher**|webpack Contrib|
+ >|**Contact**|NA|
+ >|**Homepage**|https://github.com/webpack-contrib|
+
+ #### Use this package in your project
+ ```bash
+ npm i schema-utils@4.2.0
+ ```
+
+
+ select-hose@2.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|select-hose@2.0.0|
+ >|**Version**|@2.0.0|
+ >|**Repository**|https://github.com/indutny/select-hose|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Fedor Indutny|
+ >|**Contact**|fedor@indutny.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i select-hose@2.0.0
+ ```
+
+
+ selfsigned@2.4.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|selfsigned@2.4.1|
+ >|**Version**|@2.4.1|
+ >|**Repository**|https://github.com/jfromaniello/selfsigned|
+ >|**Licenses**|MIT|
+ >|**Publisher**|José F. Romaniello|
+ >|**Contact**|jfromaniello@gmail.com|
+ >|**Homepage**|http://joseoncode.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i selfsigned@2.4.1
+ ```
+
+
+ semver@5.7.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|semver@5.7.2|
+ >|**Version**|@5.7.2|
+ >|**Repository**|https://github.com/npm/node-semver|
+ >|**Licenses**|ISC|
+ >|**Publisher**|GitHub Inc.|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i semver@5.7.2
+ ```
+
+
+ semver@6.3.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|semver@6.3.1|
+ >|**Version**|@6.3.1|
+ >|**Repository**|https://github.com/npm/node-semver|
+ >|**Licenses**|ISC|
+ >|**Publisher**|GitHub Inc.|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i semver@6.3.1
+ ```
+
+
+ semver@7.5.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|semver@7.5.4|
+ >|**Version**|@7.5.4|
+ >|**Repository**|https://github.com/npm/node-semver|
+ >|**Licenses**|ISC|
+ >|**Publisher**|GitHub Inc.|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i semver@7.5.4
+ ```
+
+
+ send@0.18.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|send@0.18.0|
+ >|**Version**|@0.18.0|
+ >|**Repository**|https://github.com/pillarjs/send|
+ >|**Licenses**|MIT|
+ >|**Publisher**|TJ Holowaychuk|
+ >|**Contact**|tj@vision-media.ca|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i send@0.18.0
+ ```
+
+
+ serialize-javascript@4.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|serialize-javascript@4.0.0|
+ >|**Version**|@4.0.0|
+ >|**Repository**|https://github.com/yahoo/serialize-javascript|
+ >|**Licenses**|BSD-3-Clause|
+ >|**Publisher**|Eric Ferraiuolo|
+ >|**Contact**|edf@ericf.me|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i serialize-javascript@4.0.0
+ ```
+
+
+ serialize-javascript@6.0.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|serialize-javascript@6.0.2|
+ >|**Version**|@6.0.2|
+ >|**Repository**|https://github.com/yahoo/serialize-javascript|
+ >|**Licenses**|BSD-3-Clause|
+ >|**Publisher**|Eric Ferraiuolo|
+ >|**Contact**|edf@ericf.me|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i serialize-javascript@6.0.2
+ ```
+
+
+ serve-index@1.9.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|serve-index@1.9.1|
+ >|**Version**|@1.9.1|
+ >|**Repository**|https://github.com/expressjs/serve-index|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Douglas Christopher Wilson|
+ >|**Contact**|doug@somethingdoug.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i serve-index@1.9.1
+ ```
+
+
+ serve-static@1.15.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|serve-static@1.15.0|
+ >|**Version**|@1.15.0|
+ >|**Repository**|https://github.com/expressjs/serve-static|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Douglas Christopher Wilson|
+ >|**Contact**|doug@somethingdoug.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i serve-static@1.15.0
+ ```
+
+
+ service-core@3.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|service-core@3.0.1|
+ >|**Version**|@3.0.1|
+ >|**Repository**|git+https://git.nfp.is/TheThing/service-core|
+ >|**Licenses**|WTFPL|
+ >|**Publisher**|Jonatan Nilsson|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i service-core@3.0.1
+ ```
+
+
+ set-function-length@1.2.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|set-function-length@1.2.0|
+ >|**Version**|@1.2.0|
+ >|**Repository**|https://github.com/ljharb/set-function-length|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i set-function-length@1.2.0
+ ```
+
+
+ set-function-name@2.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|set-function-name@2.0.1|
+ >|**Version**|@2.0.1|
+ >|**Repository**|https://github.com/ljharb/set-function-name|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i set-function-name@2.0.1
+ ```
+
+
+ setprototypeof@1.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|setprototypeof@1.1.0|
+ >|**Version**|@1.1.0|
+ >|**Repository**|https://github.com/wesleytodd/setprototypeof|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Wes Todd|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i setprototypeof@1.1.0
+ ```
+
+
+ setprototypeof@1.2.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|setprototypeof@1.2.0|
+ >|**Version**|@1.2.0|
+ >|**Repository**|https://github.com/wesleytodd/setprototypeof|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Wes Todd|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i setprototypeof@1.2.0
+ ```
+
+
+ shebang-command@2.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|shebang-command@2.0.0|
+ >|**Version**|@2.0.0|
+ >|**Repository**|https://github.com/kevva/shebang-command|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Kevin MÃ¥rtensson|
+ >|**Contact**|kevinmartensson@gmail.com|
+ >|**Homepage**|github.com/kevva|
+
+ #### Use this package in your project
+ ```bash
+ npm i shebang-command@2.0.0
+ ```
+
+
+ shebang-regex@3.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|shebang-regex@3.0.0|
+ >|**Version**|@3.0.0|
+ >|**Repository**|https://github.com/sindresorhus/shebang-regex|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i shebang-regex@3.0.0
+ ```
+
+
+ shell-quote@1.8.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|shell-quote@1.8.1|
+ >|**Version**|@1.8.1|
+ >|**Repository**|https://github.com/ljharb/shell-quote|
+ >|**Licenses**|MIT|
+ >|**Publisher**|James Halliday|
+ >|**Contact**|mail@substack.net|
+ >|**Homepage**|http://substack.net|
+
+ #### Use this package in your project
+ ```bash
+ npm i shell-quote@1.8.1
+ ```
+
+
+ side-channel@1.0.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|side-channel@1.0.4|
+ >|**Version**|@1.0.4|
+ >|**Repository**|https://github.com/ljharb/side-channel|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i side-channel@1.0.4
+ ```
+
+
+ signal-exit@3.0.7
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|signal-exit@3.0.7|
+ >|**Version**|@3.0.7|
+ >|**Repository**|https://github.com/tapjs/signal-exit|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Ben Coe|
+ >|**Contact**|ben@npmjs.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i signal-exit@3.0.7
+ ```
+
+
+ signal-exit@4.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|signal-exit@4.1.0|
+ >|**Version**|@4.1.0|
+ >|**Repository**|https://github.com/tapjs/signal-exit|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Ben Coe|
+ >|**Contact**|ben@npmjs.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i signal-exit@4.1.0
+ ```
+
+
+ sisteransi@1.0.5
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|sisteransi@1.0.5|
+ >|**Version**|@1.0.5|
+ >|**Repository**|https://github.com/terkelg/sisteransi|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Terkel Gjervig|
+ >|**Contact**|terkel@terkel.com|
+ >|**Homepage**|https://terkel.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i sisteransi@1.0.5
+ ```
+
+
+ slash@3.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|slash@3.0.0|
+ >|**Version**|@3.0.0|
+ >|**Repository**|https://github.com/sindresorhus/slash|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i slash@3.0.0
+ ```
+
+
+ slash@4.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|slash@4.0.0|
+ >|**Version**|@4.0.0|
+ >|**Repository**|https://github.com/sindresorhus/slash|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|https://sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i slash@4.0.0
+ ```
+
+
+ slide@1.1.6
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|slide@1.1.6|
+ >|**Version**|@1.1.6|
+ >|**Repository**|https://github.com/isaacs/slide-flow-control|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Isaac Z. Schlueter|
+ >|**Contact**|i@izs.me|
+ >|**Homepage**|http://blog.izs.me/|
+
+ #### Use this package in your project
+ ```bash
+ npm i slide@1.1.6
+ ```
+
+
+ sockjs@0.3.24
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|sockjs@0.3.24|
+ >|**Version**|@0.3.24|
+ >|**Repository**|https://github.com/sockjs/sockjs-node|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Marek Majkowski|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i sockjs@0.3.24
+ ```
+
+
+ source-list-map@2.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|source-list-map@2.0.1|
+ >|**Version**|@2.0.1|
+ >|**Repository**|https://github.com/webpack/source-list-map|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Tobias Koppers @sokra|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i source-list-map@2.0.1
+ ```
+
+
+ source-map-js@1.0.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|source-map-js@1.0.2|
+ >|**Version**|@1.0.2|
+ >|**Repository**|https://github.com/7rulnik/source-map-js|
+ >|**Licenses**|BSD-3-Clause|
+ >|**Publisher**|Valentin 7rulnik Semirulnik|
+ >|**Contact**|v7rulnik@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i source-map-js@1.0.2
+ ```
+
+
+ source-map-loader@3.0.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|source-map-loader@3.0.2|
+ >|**Version**|@3.0.2|
+ >|**Repository**|https://github.com/webpack-contrib/source-map-loader|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Tobias Koppers @sokra|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i source-map-loader@3.0.2
+ ```
+
+
+ source-map-support@0.5.21
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|source-map-support@0.5.21|
+ >|**Version**|@0.5.21|
+ >|**Repository**|https://github.com/evanw/node-source-map-support|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i source-map-support@0.5.21
+ ```
+
+
+ source-map@0.5.7
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|source-map@0.5.7|
+ >|**Version**|@0.5.7|
+ >|**Repository**|https://github.com/mozilla/source-map|
+ >|**Licenses**|BSD-3-Clause|
+ >|**Publisher**|Nick Fitzgerald|
+ >|**Contact**|nfitzgerald@mozilla.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i source-map@0.5.7
+ ```
+
+
+ source-map@0.6.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|source-map@0.6.1|
+ >|**Version**|@0.6.1|
+ >|**Repository**|https://github.com/mozilla/source-map|
+ >|**Licenses**|BSD-3-Clause|
+ >|**Publisher**|Nick Fitzgerald|
+ >|**Contact**|nfitzgerald@mozilla.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i source-map@0.6.1
+ ```
+
+
+ source-map@0.7.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|source-map@0.7.4|
+ >|**Version**|@0.7.4|
+ >|**Repository**|https://github.com/mozilla/source-map|
+ >|**Licenses**|BSD-3-Clause|
+ >|**Publisher**|Nick Fitzgerald|
+ >|**Contact**|nfitzgerald@mozilla.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i source-map@0.7.4
+ ```
+
+
+ source-map@0.8.0-beta.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|source-map@0.8.0-beta.0|
+ >|**Version**|@0.8.0.0|
+ >|**Repository**|https://github.com/mozilla/source-map|
+ >|**Licenses**|BSD-3-Clause|
+ >|**Publisher**|Nick Fitzgerald|
+ >|**Contact**|nfitzgerald@mozilla.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i source-map@0.8.0-beta.0
+ ```
+
+
+ sourcemap-codec@1.4.8
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|sourcemap-codec@1.4.8|
+ >|**Version**|@1.4.8|
+ >|**Repository**|https://github.com/Rich-Harris/sourcemap-codec|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Rich Harris|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i sourcemap-codec@1.4.8
+ ```
+
+
+ spdx-compare@1.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|spdx-compare@1.0.0|
+ >|**Version**|@1.0.0|
+ >|**Repository**|https://github.com/kemitchell/spdx-compare.js|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Kyle E. Mitchell|
+ >|**Contact**|kyle@kemitchell.com|
+ >|**Homepage**|https://kemitchell.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i spdx-compare@1.0.0
+ ```
+
+
+ spdx-correct@3.2.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|spdx-correct@3.2.0|
+ >|**Version**|@3.2.0|
+ >|**Repository**|https://github.com/jslicense/spdx-correct.js|
+ >|**Licenses**|Apache-2.0|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i spdx-correct@3.2.0
+ ```
+
+
+ spdx-exceptions@2.3.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|spdx-exceptions@2.3.0|
+ >|**Version**|@2.3.0|
+ >|**Repository**|https://github.com/kemitchell/spdx-exceptions.json|
+ >|**Licenses**|CC-BY-3.0|
+ >|**Publisher**|The Linux Foundation|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i spdx-exceptions@2.3.0
+ ```
+
+
+ spdx-expression-parse@3.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|spdx-expression-parse@3.0.1|
+ >|**Version**|@3.0.1|
+ >|**Repository**|https://github.com/jslicense/spdx-expression-parse.js|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Kyle E. Mitchell|
+ >|**Contact**|kyle@kemitchell.com|
+ >|**Homepage**|https://kemitchell.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i spdx-expression-parse@3.0.1
+ ```
+
+
+ spdx-license-ids@3.0.16
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|spdx-license-ids@3.0.16|
+ >|**Version**|@3.0.16|
+ >|**Repository**|https://github.com/jslicense/spdx-license-ids|
+ >|**Licenses**|CC0-1.0|
+ >|**Publisher**|Shinnosuke Watanabe|
+ >|**Contact**|NA|
+ >|**Homepage**|https://github.com/shinnn|
+
+ #### Use this package in your project
+ ```bash
+ npm i spdx-license-ids@3.0.16
+ ```
+
+
+ spdx-ranges@2.1.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|spdx-ranges@2.1.1|
+ >|**Version**|@2.1.1|
+ >|**Repository**|https://github.com/kemitchell/spdx-ranges.js|
+ >|**Licenses**|(MIT AND CC-BY-3.0)|
+ >|**Publisher**|The Linux Foundation|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i spdx-ranges@2.1.1
+ ```
+
+
+ spdx-satisfies@4.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|spdx-satisfies@4.0.1|
+ >|**Version**|@4.0.1|
+ >|**Repository**|https://github.com/kemitchell/spdx-satisfies.js|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Kyle E. Mitchell|
+ >|**Contact**|kyle@kemitchell.com|
+ >|**Homepage**|https://kemitchell.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i spdx-satisfies@4.0.1
+ ```
+
+
+ spdy-transport@3.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|spdy-transport@3.0.0|
+ >|**Version**|@3.0.0|
+ >|**Repository**|https://github.com/spdy-http2/spdy-transport|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Fedor Indutny|
+ >|**Contact**|fedor@indutny.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i spdy-transport@3.0.0
+ ```
+
+
+ spdy@4.0.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|spdy@4.0.2|
+ >|**Version**|@4.0.2|
+ >|**Repository**|https://github.com/indutny/node-spdy|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Fedor Indutny|
+ >|**Contact**|fedor.indutny@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i spdy@4.0.2
+ ```
+
+
+ split2@3.2.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|split2@3.2.2|
+ >|**Version**|@23.2.2|
+ >|**Repository**|https://github.com/mcollina/split2|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Matteo Collina|
+ >|**Contact**|hello@matteocollina.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i split2@3.2.2
+ ```
+
+
+ sprintf-js@1.0.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|sprintf-js@1.0.3|
+ >|**Version**|@1.0.3|
+ >|**Repository**|https://github.com/alexei/sprintf.js|
+ >|**Licenses**|BSD-3-Clause|
+ >|**Publisher**|Alexandru Marasteanu|
+ >|**Contact**|hello@alexei.ro|
+ >|**Homepage**|http://alexei.ro/|
+
+ #### Use this package in your project
+ ```bash
+ npm i sprintf-js@1.0.3
+ ```
+
+
+ stable@0.1.8
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|stable@0.1.8|
+ >|**Version**|@0.1.8|
+ >|**Repository**|https://github.com/Two-Screen/stable|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Angry Bytes|
+ >|**Contact**|info@angrybytes.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i stable@0.1.8
+ ```
+
+
+ stack-utils@2.0.6
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|stack-utils@2.0.6|
+ >|**Version**|@2.0.6|
+ >|**Repository**|https://github.com/tapjs/stack-utils|
+ >|**Licenses**|MIT|
+ >|**Publisher**|James Talmage|
+ >|**Contact**|james@talmage.io|
+ >|**Homepage**|github.com/jamestalmage|
+
+ #### Use this package in your project
+ ```bash
+ npm i stack-utils@2.0.6
+ ```
+
+
+ stackframe@1.3.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|stackframe@1.3.4|
+ >|**Version**|@1.3.4|
+ >|**Repository**|https://github.com/stacktracejs/stackframe|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i stackframe@1.3.4
+ ```
+
+
+ static-eval@2.0.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|static-eval@2.0.2|
+ >|**Version**|@2.0.2|
+ >|**Repository**|https://github.com/substack/static-eval|
+ >|**Licenses**|MIT|
+ >|**Publisher**|James Halliday|
+ >|**Contact**|mail@substack.net|
+ >|**Homepage**|http://substack.net|
+
+ #### Use this package in your project
+ ```bash
+ npm i static-eval@2.0.2
+ ```
+
+
+ statuses@1.5.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|statuses@1.5.0|
+ >|**Version**|@1.5.0|
+ >|**Repository**|https://github.com/jshttp/statuses|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i statuses@1.5.0
+ ```
+
+
+ statuses@2.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|statuses@2.0.1|
+ >|**Version**|@2.0.1|
+ >|**Repository**|https://github.com/jshttp/statuses|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i statuses@2.0.1
+ ```
+
+
+ steno@2.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|steno@2.1.0|
+ >|**Version**|@2.1.0|
+ >|**Repository**|https://github.com/typicode/steno|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Typicode|
+ >|**Contact**|typicode@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i steno@2.1.0
+ ```
+
+
+ string-length@4.0.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|string-length@4.0.2|
+ >|**Version**|@4.0.2|
+ >|**Repository**|https://github.com/sindresorhus/string-length|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|https://sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i string-length@4.0.2
+ ```
+
+
+ string-length@5.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|string-length@5.0.1|
+ >|**Version**|@5.0.1|
+ >|**Repository**|https://github.com/sindresorhus/string-length|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|https://sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i string-length@5.0.1
+ ```
+
+
+ string-natural-compare@3.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|string-natural-compare@3.0.1|
+ >|**Version**|@3.0.1|
+ >|**Repository**|https://github.com/nwoltman/string-natural-compare|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Nathan Woltman|
+ >|**Contact**|nwoltman@outlook.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i string-natural-compare@3.0.1
+ ```
+
+
+ string-width@2.1.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|string-width@2.1.1|
+ >|**Version**|@2.1.1|
+ >|**Repository**|https://github.com/sindresorhus/string-width|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i string-width@2.1.1
+ ```
+
+
+ string-width@4.2.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|string-width@4.2.3|
+ >|**Version**|@4.2.3|
+ >|**Repository**|https://github.com/sindresorhus/string-width|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i string-width@4.2.3
+ ```
+
+
+ string-width@5.1.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|string-width@5.1.2|
+ >|**Version**|@5.1.2|
+ >|**Repository**|https://github.com/sindresorhus/string-width|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|https://sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i string-width@5.1.2
+ ```
+
+
+ string.prototype.matchall@4.0.10
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|string.prototype.matchall@4.0.10|
+ >|**Version**|@..4.0.10|
+ >|**Repository**|https://github.com/es-shims/String.prototype.matchAll|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i string.prototype.matchall@4.0.10
+ ```
+
+
+ string.prototype.trim@1.2.8
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|string.prototype.trim@1.2.8|
+ >|**Version**|@..1.2.8|
+ >|**Repository**|https://github.com/es-shims/String.prototype.trim|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|http://ljharb.codes|
+
+ #### Use this package in your project
+ ```bash
+ npm i string.prototype.trim@1.2.8
+ ```
+
+
+ string.prototype.trimend@1.0.7
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|string.prototype.trimend@1.0.7|
+ >|**Version**|@..1.0.7|
+ >|**Repository**|https://github.com/es-shims/String.prototype.trimEnd|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i string.prototype.trimend@1.0.7
+ ```
+
+
+ string.prototype.trimstart@1.0.7
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|string.prototype.trimstart@1.0.7|
+ >|**Version**|@..1.0.7|
+ >|**Repository**|https://github.com/es-shims/String.prototype.trimStart|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i string.prototype.trimstart@1.0.7
+ ```
+
+
+ string_decoder@1.1.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|string_decoder@1.1.1|
+ >|**Version**|@1.1.1|
+ >|**Repository**|https://github.com/nodejs/string_decoder|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i string_decoder@1.1.1
+ ```
+
+
+ string_decoder@1.3.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|string_decoder@1.3.0|
+ >|**Version**|@1.3.0|
+ >|**Repository**|https://github.com/nodejs/string_decoder|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i string_decoder@1.3.0
+ ```
+
+
+ stringify-object@3.3.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|stringify-object@3.3.0|
+ >|**Version**|@3.3.0|
+ >|**Repository**|https://github.com/yeoman/stringify-object|
+ >|**Licenses**|BSD-2-Clause|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i stringify-object@3.3.0
+ ```
+
+
+ strip-ansi@4.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|strip-ansi@4.0.0|
+ >|**Version**|@4.0.0|
+ >|**Repository**|https://github.com/chalk/strip-ansi|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i strip-ansi@4.0.0
+ ```
+
+
+ strip-ansi@5.2.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|strip-ansi@5.2.0|
+ >|**Version**|@5.2.0|
+ >|**Repository**|https://github.com/chalk/strip-ansi|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i strip-ansi@5.2.0
+ ```
+
+
+ strip-ansi@6.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|strip-ansi@6.0.1|
+ >|**Version**|@6.0.1|
+ >|**Repository**|https://github.com/chalk/strip-ansi|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i strip-ansi@6.0.1
+ ```
+
+
+ strip-ansi@7.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|strip-ansi@7.1.0|
+ >|**Version**|@7.1.0|
+ >|**Repository**|https://github.com/chalk/strip-ansi|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|https://sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i strip-ansi@7.1.0
+ ```
+
+
+ strip-bom@3.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|strip-bom@3.0.0|
+ >|**Version**|@3.0.0|
+ >|**Repository**|https://github.com/sindresorhus/strip-bom|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i strip-bom@3.0.0
+ ```
+
+
+ strip-bom@4.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|strip-bom@4.0.0|
+ >|**Version**|@4.0.0|
+ >|**Repository**|https://github.com/sindresorhus/strip-bom|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i strip-bom@4.0.0
+ ```
+
+
+ strip-comments@2.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|strip-comments@2.0.1|
+ >|**Version**|@2.0.1|
+ >|**Repository**|https://github.com/jonschlinkert/strip-comments|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jon Schlinkert|
+ >|**Contact**|NA|
+ >|**Homepage**|https://github.com/jonschlinkert|
+
+ #### Use this package in your project
+ ```bash
+ npm i strip-comments@2.0.1
+ ```
+
+
+ strip-final-newline@2.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|strip-final-newline@2.0.0|
+ >|**Version**|@2.0.0|
+ >|**Repository**|https://github.com/sindresorhus/strip-final-newline|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i strip-final-newline@2.0.0
+ ```
+
+
+ strip-indent@3.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|strip-indent@3.0.0|
+ >|**Version**|@3.0.0|
+ >|**Repository**|https://github.com/sindresorhus/strip-indent|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i strip-indent@3.0.0
+ ```
+
+
+ strip-json-comments@3.1.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|strip-json-comments@3.1.1|
+ >|**Version**|@3.1.1|
+ >|**Repository**|https://github.com/sindresorhus/strip-json-comments|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|https://sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i strip-json-comments@3.1.1
+ ```
+
+
+ style-loader@3.3.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|style-loader@3.3.4|
+ >|**Version**|@3.3.4|
+ >|**Repository**|https://github.com/webpack-contrib/style-loader|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Tobias Koppers @sokra|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i style-loader@3.3.4
+ ```
+
+
+ stylehacks@5.1.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|stylehacks@5.1.1|
+ >|**Version**|@5.1.1|
+ >|**Repository**|https://github.com/cssnano/cssnano|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Ben Briggs|
+ >|**Contact**|beneb.info@gmail.com|
+ >|**Homepage**|http://beneb.info|
+
+ #### Use this package in your project
+ ```bash
+ npm i stylehacks@5.1.1
+ ```
+
+
+ stylis@4.2.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|stylis@4.2.0|
+ >|**Version**|@4.2.0|
+ >|**Repository**|https://github.com/thysultan/stylis.js|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sultan Tarimo|
+ >|**Contact**|sultantarimo@me.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i stylis@4.2.0
+ ```
+
+
+ sucrase@3.35.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|sucrase@3.35.0|
+ >|**Version**|@3.35.0|
+ >|**Repository**|https://github.com/alangpierce/sucrase|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Alan Pierce|
+ >|**Contact**|alangpierce@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i sucrase@3.35.0
+ ```
+
+
+ superagent@8.1.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|superagent@8.1.2|
+ >|**Version**|@8.1.2|
+ >|**Repository**|https://github.com/ladjs/superagent|
+ >|**Licenses**|MIT|
+ >|**Publisher**|TJ Holowaychuk|
+ >|**Contact**|tj@vision-media.ca|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i superagent@8.1.2
+ ```
+
+
+ supertest@6.3.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|supertest@6.3.4|
+ >|**Version**|@6.3.4|
+ >|**Repository**|https://github.com/ladjs/supertest|
+ >|**Licenses**|MIT|
+ >|**Publisher**|TJ Holowaychuk|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i supertest@6.3.4
+ ```
+
+
+ supports-color@5.5.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|supports-color@5.5.0|
+ >|**Version**|@5.5.0|
+ >|**Repository**|https://github.com/chalk/supports-color|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i supports-color@5.5.0
+ ```
+
+
+ supports-color@7.2.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|supports-color@7.2.0|
+ >|**Version**|@7.2.0|
+ >|**Repository**|https://github.com/chalk/supports-color|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i supports-color@7.2.0
+ ```
+
+
+ supports-color@8.1.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|supports-color@8.1.1|
+ >|**Version**|@8.1.1|
+ >|**Repository**|https://github.com/chalk/supports-color|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|https://sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i supports-color@8.1.1
+ ```
+
+
+ supports-hyperlinks@2.3.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|supports-hyperlinks@2.3.0|
+ >|**Version**|@2.3.0|
+ >|**Repository**|https://github.com/jamestalmage/supports-hyperlinks|
+ >|**Licenses**|MIT|
+ >|**Publisher**|James Talmage|
+ >|**Contact**|james@talmage.io|
+ >|**Homepage**|github.com/jamestalmage|
+
+ #### Use this package in your project
+ ```bash
+ npm i supports-hyperlinks@2.3.0
+ ```
+
+
+ supports-preserve-symlinks-flag@1.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|supports-preserve-symlinks-flag@1.0.0|
+ >|**Version**|@1.0.0|
+ >|**Repository**|https://github.com/inspect-js/node-supports-preserve-symlinks-flag|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i supports-preserve-symlinks-flag@1.0.0
+ ```
+
+
+ svg-parser@2.0.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|svg-parser@2.0.4|
+ >|**Version**|@2.0.4|
+ >|**Repository**|https://github.com/Rich-Harris/svg-parser|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Rich Harris|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i svg-parser@2.0.4
+ ```
+
+
+ svgo@1.3.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|svgo@1.3.2|
+ >|**Version**|@1.3.2|
+ >|**Repository**|https://github.com/svg/svgo|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Kir Belevich|
+ >|**Contact**|kir@belevi.ch|
+ >|**Homepage**|https://github.com/deepsweet|
+
+ #### Use this package in your project
+ ```bash
+ npm i svgo@1.3.2
+ ```
+
+
+ svgo@2.8.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|svgo@2.8.0|
+ >|**Version**|@2.8.0|
+ >|**Repository**|https://github.com/svg/svgo|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Kir Belevich|
+ >|**Contact**|kir@belevi.ch|
+ >|**Homepage**|https://github.com/deepsweet|
+
+ #### Use this package in your project
+ ```bash
+ npm i svgo@2.8.0
+ ```
+
+
+ symbol-tree@3.2.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|symbol-tree@3.2.4|
+ >|**Version**|@3.2.4|
+ >|**Repository**|https://github.com/jsdom/js-symbol-tree|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Joris van der Wel|
+ >|**Contact**|joris@jorisvanderwel.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i symbol-tree@3.2.4
+ ```
+
+
+ tailwindcss@3.4.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|tailwindcss@3.4.1|
+ >|**Version**|@3.4.1|
+ >|**Repository**|https://github.com/tailwindlabs/tailwindcss|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i tailwindcss@3.4.1
+ ```
+
+
+ tapable@1.1.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|tapable@1.1.3|
+ >|**Version**|@1.1.3|
+ >|**Repository**|https://github.com/webpack/tapable|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Tobias Koppers @sokra|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i tapable@1.1.3
+ ```
+
+
+ tapable@2.2.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|tapable@2.2.1|
+ >|**Version**|@2.2.1|
+ >|**Repository**|https://github.com/webpack/tapable|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Tobias Koppers @sokra|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i tapable@2.2.1
+ ```
+
+
+ temp-dir@2.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|temp-dir@2.0.0|
+ >|**Version**|@2.0.0|
+ >|**Repository**|https://github.com/sindresorhus/temp-dir|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i temp-dir@2.0.0
+ ```
+
+
+ tempy@0.6.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|tempy@0.6.0|
+ >|**Version**|@0.6.0|
+ >|**Repository**|https://github.com/sindresorhus/tempy|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|https://sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i tempy@0.6.0
+ ```
+
+
+ terminal-link@2.1.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|terminal-link@2.1.1|
+ >|**Version**|@2.1.1|
+ >|**Repository**|https://github.com/sindresorhus/terminal-link|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i terminal-link@2.1.1
+ ```
+
+
+ terser-webpack-plugin@5.3.10
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|terser-webpack-plugin@5.3.10|
+ >|**Version**|@5.3.10|
+ >|**Repository**|https://github.com/webpack-contrib/terser-webpack-plugin|
+ >|**Licenses**|MIT|
+ >|**Publisher**|webpack Contrib Team|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i terser-webpack-plugin@5.3.10
+ ```
+
+
+ terser@5.26.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|terser@5.26.0|
+ >|**Version**|@5.26.0|
+ >|**Repository**|https://github.com/terser/terser|
+ >|**Licenses**|BSD-2-Clause|
+ >|**Publisher**|Mihai Bazon|
+ >|**Contact**|mihai.bazon@gmail.com|
+ >|**Homepage**|http://lisperator.net/|
+
+ #### Use this package in your project
+ ```bash
+ npm i terser@5.26.0
+ ```
+
+
+ test-exclude@6.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|test-exclude@6.0.0|
+ >|**Version**|@6.0.0|
+ >|**Repository**|https://github.com/istanbuljs/test-exclude|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Ben Coe|
+ >|**Contact**|ben@npmjs.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i test-exclude@6.0.0
+ ```
+
+
+ text-extensions@1.9.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|text-extensions@1.9.0|
+ >|**Version**|@1.9.0|
+ >|**Repository**|https://github.com/sindresorhus/text-extensions|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i text-extensions@1.9.0
+ ```
+
+
+ text-table@0.2.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|text-table@0.2.0|
+ >|**Version**|@0.2.0|
+ >|**Repository**|https://github.com/substack/text-table|
+ >|**Licenses**|MIT|
+ >|**Publisher**|James Halliday|
+ >|**Contact**|mail@substack.net|
+ >|**Homepage**|http://substack.net|
+
+ #### Use this package in your project
+ ```bash
+ npm i text-table@0.2.0
+ ```
+
+
+ thenify-all@1.6.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|thenify-all@1.6.0|
+ >|**Version**|@1.6.0|
+ >|**Repository**|https://github.com/thenables/thenify-all|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jonathan Ong|
+ >|**Contact**|me@jongleberry.com|
+ >|**Homepage**|http://jongleberry.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i thenify-all@1.6.0
+ ```
+
+
+ thenify@3.3.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|thenify@3.3.1|
+ >|**Version**|@3.3.1|
+ >|**Repository**|https://github.com/thenables/thenify|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jonathan Ong|
+ >|**Contact**|me@jongleberry.com|
+ >|**Homepage**|http://jongleberry.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i thenify@3.3.1
+ ```
+
+
+ throat@6.0.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|throat@6.0.2|
+ >|**Version**|@6.0.2|
+ >|**Repository**|https://github.com/ForbesLindesay/throat|
+ >|**Licenses**|MIT|
+ >|**Publisher**|ForbesLindesay|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i throat@6.0.2
+ ```
+
+
+ throttle-debounce@2.3.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|throttle-debounce@2.3.0|
+ >|**Version**|@2.3.0|
+ >|**Repository**|https://github.com/niksy/throttle-debounce|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Ivan Nikolić|
+ >|**Contact**|niksy5@gmail.com|
+ >|**Homepage**|http://ivannikolic.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i throttle-debounce@2.3.0
+ ```
+
+
+ through2@4.0.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|through2@4.0.2|
+ >|**Version**|@24.0.2|
+ >|**Repository**|https://github.com/rvagg/through2|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Rod Vagg|
+ >|**Contact**|r@va.gg|
+ >|**Homepage**|https://github.com/rvagg|
+
+ #### Use this package in your project
+ ```bash
+ npm i through2@4.0.2
+ ```
+
+
+ through@2.3.8
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|through@2.3.8|
+ >|**Version**|@2.3.8|
+ >|**Repository**|https://github.com/dominictarr/through|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Dominic Tarr|
+ >|**Contact**|dominic.tarr@gmail.com|
+ >|**Homepage**|dominictarr.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i through@2.3.8
+ ```
+
+
+ thunky@1.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|thunky@1.1.0|
+ >|**Version**|@1.1.0|
+ >|**Repository**|https://github.com/mafintosh/thunky|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Mathias Buus Madsen|
+ >|**Contact**|mathiasbuus@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i thunky@1.1.0
+ ```
+
+
+ tiny-warning@1.0.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|tiny-warning@1.0.3|
+ >|**Version**|@1.0.3|
+ >|**Repository**|https://github.com/alexreardon/tiny-warning|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Alex Reardon|
+ >|**Contact**|alexreardon@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i tiny-warning@1.0.3
+ ```
+
+
+ tmp@0.0.33
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|tmp@0.0.33|
+ >|**Version**|@0.0.33|
+ >|**Repository**|https://github.com/raszi/node-tmp|
+ >|**Licenses**|MIT|
+ >|**Publisher**|KARASZI István|
+ >|**Contact**|github@spam.raszi.hu|
+ >|**Homepage**|http://raszi.hu/|
+
+ #### Use this package in your project
+ ```bash
+ npm i tmp@0.0.33
+ ```
+
+
+ tmpl@1.0.5
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|tmpl@1.0.5|
+ >|**Version**|@1.0.5|
+ >|**Repository**|https://github.com/daaku/nodejs-tmpl|
+ >|**Licenses**|BSD-3-Clause|
+ >|**Publisher**|Naitik Shah|
+ >|**Contact**|n@daaku.org|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i tmpl@1.0.5
+ ```
+
+
+ to-fast-properties@2.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|to-fast-properties@2.0.0|
+ >|**Version**|@2.0.0|
+ >|**Repository**|https://github.com/sindresorhus/to-fast-properties|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i to-fast-properties@2.0.0
+ ```
+
+
+ to-regex-range@5.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|to-regex-range@5.0.1|
+ >|**Version**|@5.0.1|
+ >|**Repository**|https://github.com/micromatch/to-regex-range|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jon Schlinkert|
+ >|**Contact**|NA|
+ >|**Homepage**|https://github.com/jonschlinkert|
+
+ #### Use this package in your project
+ ```bash
+ npm i to-regex-range@5.0.1
+ ```
+
+
+ toidentifier@1.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|toidentifier@1.0.1|
+ >|**Version**|@1.0.1|
+ >|**Repository**|https://github.com/component/toidentifier|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Douglas Christopher Wilson|
+ >|**Contact**|doug@somethingdoug.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i toidentifier@1.0.1
+ ```
+
+
+ toposort@2.0.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|toposort@2.0.2|
+ >|**Version**|@2.0.2|
+ >|**Repository**|https://github.com/marcelklehr/toposort|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Marcel Klehr|
+ >|**Contact**|mklehr@gmx.net|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i toposort@2.0.2
+ ```
+
+
+ tough-cookie@4.1.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|tough-cookie@4.1.3|
+ >|**Version**|@4.1.3|
+ >|**Repository**|https://github.com/salesforce/tough-cookie|
+ >|**Licenses**|BSD-3-Clause|
+ >|**Publisher**|Jeremy Stashewsky|
+ >|**Contact**|jstash@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i tough-cookie@4.1.3
+ ```
+
+
+ tr46@1.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|tr46@1.0.1|
+ >|**Version**|@461.0.1|
+ >|**Repository**|https://github.com/Sebmaster/tr46.js|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sebastian Mayr|
+ >|**Contact**|npm@smayr.name|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i tr46@1.0.1
+ ```
+
+
+ tr46@2.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|tr46@2.1.0|
+ >|**Version**|@462.1.0|
+ >|**Repository**|https://github.com/jsdom/tr46|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sebastian Mayr|
+ >|**Contact**|npm@smayr.name|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i tr46@2.1.0
+ ```
+
+
+ treeify@1.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|treeify@1.1.0|
+ >|**Version**|@1.1.0|
+ >|**Repository**|https://github.com/notatestuser/treeify|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Luke Plaster|
+ >|**Contact**|notatestuser@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i treeify@1.1.0
+ ```
+
+
+ trim-newlines@3.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|trim-newlines@3.0.1|
+ >|**Version**|@3.0.1|
+ >|**Repository**|https://github.com/sindresorhus/trim-newlines|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i trim-newlines@3.0.1
+ ```
+
+
+ tryer@1.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|tryer@1.0.1|
+ >|**Version**|@1.0.1|
+ >|**Repository**|git+https://gitlab.com/philbooth/tryer|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Phil Booth|
+ >|**Contact**|pmbooth@gmail.com|
+ >|**Homepage**|https://philbooth.me/|
+
+ #### Use this package in your project
+ ```bash
+ npm i tryer@1.0.1
+ ```
+
+
+ ts-interface-checker@0.1.13
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|ts-interface-checker@0.1.13|
+ >|**Version**|@0.1.13|
+ >|**Repository**|https://github.com/gristlabs/ts-interface-checker|
+ >|**Licenses**|Apache-2.0|
+ >|**Publisher**|Dmitry S, Grist Labs|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i ts-interface-checker@0.1.13
+ ```
+
+
+ ts-node@10.9.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|ts-node@10.9.2|
+ >|**Version**|@10.9.2|
+ >|**Repository**|https://github.com/TypeStrong/ts-node|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Blake Embrey|
+ >|**Contact**|hello@blakeembrey.com|
+ >|**Homepage**|http://blakeembrey.me|
+
+ #### Use this package in your project
+ ```bash
+ npm i ts-node@10.9.2
+ ```
+
+
+ tsconfig-paths@3.15.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|tsconfig-paths@3.15.0|
+ >|**Version**|@3.15.0|
+ >|**Repository**|https://github.com/dividab/tsconfig-paths|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jonas Kello|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i tsconfig-paths@3.15.0
+ ```
+
+
+ tslib@1.14.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|tslib@1.14.1|
+ >|**Version**|@1.14.1|
+ >|**Repository**|https://github.com/Microsoft/tslib|
+ >|**Licenses**|0BSD|
+ >|**Publisher**|Microsoft Corp.|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i tslib@1.14.1
+ ```
+
+
+ tslib@2.6.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|tslib@2.6.2|
+ >|**Version**|@2.6.2|
+ >|**Repository**|https://github.com/Microsoft/tslib|
+ >|**Licenses**|0BSD|
+ >|**Publisher**|Microsoft Corp.|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i tslib@2.6.2
+ ```
+
+
+ tsutils-etc@1.4.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|tsutils-etc@1.4.2|
+ >|**Version**|@1.4.2|
+ >|**Repository**|https://github.com/cartant/tsutils-etc|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Nicholas Jamieson|
+ >|**Contact**|nicholas@cartant.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i tsutils-etc@1.4.2
+ ```
+
+
+ tsutils@3.21.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|tsutils@3.21.0|
+ >|**Version**|@3.21.0|
+ >|**Repository**|https://github.com/ajafff/tsutils|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Klaus Meinhardt|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i tsutils@3.21.0
+ ```
+
+
+ type-check@0.3.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|type-check@0.3.2|
+ >|**Version**|@0.3.2|
+ >|**Repository**|https://github.com/gkz/type-check|
+ >|**Licenses**|MIT|
+ >|**Publisher**|George Zahariev|
+ >|**Contact**|z@georgezahariev.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i type-check@0.3.2
+ ```
+
+
+ type-check@0.4.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|type-check@0.4.0|
+ >|**Version**|@0.4.0|
+ >|**Repository**|https://github.com/gkz/type-check|
+ >|**Licenses**|MIT|
+ >|**Publisher**|George Zahariev|
+ >|**Contact**|z@georgezahariev.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i type-check@0.4.0
+ ```
+
+
+ type-detect@4.0.8
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|type-detect@4.0.8|
+ >|**Version**|@4.0.8|
+ >|**Repository**|https://github.com/chaijs/type-detect|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jake Luer|
+ >|**Contact**|jake@alogicalparadox.com|
+ >|**Homepage**|http://alogicalparadox.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i type-detect@4.0.8
+ ```
+
+
+ type-fest@0.16.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|type-fest@0.16.0|
+ >|**Version**|@0.16.0|
+ >|**Repository**|https://github.com/sindresorhus/type-fest|
+ >|**Licenses**|(MIT OR CC0-1.0)|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|https://sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i type-fest@0.16.0
+ ```
+
+
+ type-fest@0.18.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|type-fest@0.18.1|
+ >|**Version**|@0.18.1|
+ >|**Repository**|https://github.com/sindresorhus/type-fest|
+ >|**Licenses**|(MIT OR CC0-1.0)|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|https://sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i type-fest@0.18.1
+ ```
+
+
+ type-fest@0.20.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|type-fest@0.20.2|
+ >|**Version**|@0.20.2|
+ >|**Repository**|https://github.com/sindresorhus/type-fest|
+ >|**Licenses**|(MIT OR CC0-1.0)|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|https://sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i type-fest@0.20.2
+ ```
+
+
+ type-fest@0.21.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|type-fest@0.21.3|
+ >|**Version**|@0.21.3|
+ >|**Repository**|https://github.com/sindresorhus/type-fest|
+ >|**Licenses**|(MIT OR CC0-1.0)|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|https://sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i type-fest@0.21.3
+ ```
+
+
+ type-fest@0.6.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|type-fest@0.6.0|
+ >|**Version**|@0.6.0|
+ >|**Repository**|https://github.com/sindresorhus/type-fest|
+ >|**Licenses**|(MIT OR CC0-1.0)|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i type-fest@0.6.0
+ ```
+
+
+ type-fest@0.8.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|type-fest@0.8.1|
+ >|**Version**|@0.8.1|
+ >|**Repository**|https://github.com/sindresorhus/type-fest|
+ >|**Licenses**|(MIT OR CC0-1.0)|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i type-fest@0.8.1
+ ```
+
+
+ type-is@1.6.18
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|type-is@1.6.18|
+ >|**Version**|@1.6.18|
+ >|**Repository**|https://github.com/jshttp/type-is|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i type-is@1.6.18
+ ```
+
+
+ typed-array-buffer@1.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|typed-array-buffer@1.0.0|
+ >|**Version**|@1.0.0|
+ >|**Repository**|https://github.com/ljharb/typed-array-buffer|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i typed-array-buffer@1.0.0
+ ```
+
+
+ typed-array-byte-length@1.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|typed-array-byte-length@1.0.0|
+ >|**Version**|@1.0.0|
+ >|**Repository**|https://github.com/inspect-js/typed-array-byte-length|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i typed-array-byte-length@1.0.0
+ ```
+
+
+ typed-array-byte-offset@1.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|typed-array-byte-offset@1.0.0|
+ >|**Version**|@1.0.0|
+ >|**Repository**|https://github.com/inspect-js/typed-array-byte-offset|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i typed-array-byte-offset@1.0.0
+ ```
+
+
+ typed-array-length@1.0.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|typed-array-length@1.0.4|
+ >|**Version**|@1.0.4|
+ >|**Repository**|https://github.com/inspect-js/typed-array-length|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i typed-array-length@1.0.4
+ ```
+
+
+ typedarray-to-buffer@3.1.5
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|typedarray-to-buffer@3.1.5|
+ >|**Version**|@3.1.5|
+ >|**Repository**|https://github.com/feross/typedarray-to-buffer|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Feross Aboukhadijeh|
+ >|**Contact**|feross@feross.org|
+ >|**Homepage**|http://feross.org/|
+
+ #### Use this package in your project
+ ```bash
+ npm i typedarray-to-buffer@3.1.5
+ ```
+
+
+ typescript@4.9.5
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|typescript@4.9.5|
+ >|**Version**|@4.9.5|
+ >|**Repository**|https://github.com/Microsoft/TypeScript|
+ >|**Licenses**|Apache-2.0|
+ >|**Publisher**|Microsoft Corp.|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i typescript@4.9.5
+ ```
+
+
+ ua-parser-js@1.0.37
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|ua-parser-js@1.0.37|
+ >|**Version**|@1.0.37|
+ >|**Repository**|https://github.com/faisalman/ua-parser-js|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Faisal Salman|
+ >|**Contact**|f@faisalman.com|
+ >|**Homepage**|http://faisalman.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i ua-parser-js@1.0.37
+ ```
+
+
+ unbox-primitive@1.0.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|unbox-primitive@1.0.2|
+ >|**Version**|@1.0.2|
+ >|**Repository**|https://github.com/ljharb/unbox-primitive|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i unbox-primitive@1.0.2
+ ```
+
+
+ underscore@1.12.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|underscore@1.12.1|
+ >|**Version**|@1.12.1|
+ >|**Repository**|https://github.com/jashkenas/underscore|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jeremy Ashkenas|
+ >|**Contact**|jeremy@documentcloud.org|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i underscore@1.12.1
+ ```
+
+
+ unicode-canonical-property-names-ecmascript@2.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|unicode-canonical-property-names-ecmascript@2.0.0|
+ >|**Version**|@2.0.0|
+ >|**Repository**|https://github.com/mathiasbynens/unicode-canonical-property-names-ecmascript|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Mathias Bynens|
+ >|**Contact**|NA|
+ >|**Homepage**|https://mathiasbynens.be/|
+
+ #### Use this package in your project
+ ```bash
+ npm i unicode-canonical-property-names-ecmascript@2.0.0
+ ```
+
+
+ unicode-match-property-ecmascript@2.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|unicode-match-property-ecmascript@2.0.0|
+ >|**Version**|@2.0.0|
+ >|**Repository**|https://github.com/mathiasbynens/unicode-match-property-ecmascript|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Mathias Bynens|
+ >|**Contact**|NA|
+ >|**Homepage**|https://mathiasbynens.be/|
+
+ #### Use this package in your project
+ ```bash
+ npm i unicode-match-property-ecmascript@2.0.0
+ ```
+
+
+ unicode-match-property-value-ecmascript@2.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|unicode-match-property-value-ecmascript@2.1.0|
+ >|**Version**|@2.1.0|
+ >|**Repository**|https://github.com/mathiasbynens/unicode-match-property-value-ecmascript|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Mathias Bynens|
+ >|**Contact**|NA|
+ >|**Homepage**|https://mathiasbynens.be/|
+
+ #### Use this package in your project
+ ```bash
+ npm i unicode-match-property-value-ecmascript@2.1.0
+ ```
+
+
+ unicode-property-aliases-ecmascript@2.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|unicode-property-aliases-ecmascript@2.1.0|
+ >|**Version**|@2.1.0|
+ >|**Repository**|https://github.com/mathiasbynens/unicode-property-aliases-ecmascript|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Mathias Bynens|
+ >|**Contact**|NA|
+ >|**Homepage**|https://mathiasbynens.be/|
+
+ #### Use this package in your project
+ ```bash
+ npm i unicode-property-aliases-ecmascript@2.1.0
+ ```
+
+
+ unique-string@2.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|unique-string@2.0.0|
+ >|**Version**|@2.0.0|
+ >|**Repository**|https://github.com/sindresorhus/unique-string|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i unique-string@2.0.0
+ ```
+
+
+ universalify@0.2.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|universalify@0.2.0|
+ >|**Version**|@0.2.0|
+ >|**Repository**|https://github.com/RyanZim/universalify|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Ryan Zimmerman|
+ >|**Contact**|opensrc@ryanzim.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i universalify@0.2.0
+ ```
+
+
+ universalify@2.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|universalify@2.0.1|
+ >|**Version**|@2.0.1|
+ >|**Repository**|https://github.com/RyanZim/universalify|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Ryan Zimmerman|
+ >|**Contact**|opensrc@ryanzim.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i universalify@2.0.1
+ ```
+
+
+ unpipe@1.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|unpipe@1.0.0|
+ >|**Version**|@1.0.0|
+ >|**Repository**|https://github.com/stream-utils/unpipe|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Douglas Christopher Wilson|
+ >|**Contact**|doug@somethingdoug.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i unpipe@1.0.0
+ ```
+
+
+ unquote@1.1.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|unquote@1.1.1|
+ >|**Version**|@1.1.1|
+ >|**Repository**|https://github.com/lakenen/node-unquote|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Cameron Lakenen|
+ >|**Contact**|cameron@lakenen.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i unquote@1.1.1
+ ```
+
+
+ upath@1.2.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|upath@1.2.0|
+ >|**Version**|@1.2.0|
+ >|**Repository**|https://github.com/anodynos/upath|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Angelos Pikoulas|
+ >|**Contact**|agelos.pikoulas@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i upath@1.2.0
+ ```
+
+
+ update-browserslist-db@1.0.13
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|update-browserslist-db@1.0.13|
+ >|**Version**|@1.0.13|
+ >|**Repository**|https://github.com/browserslist/update-db|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Andrey Sitnik|
+ >|**Contact**|andrey@sitnik.ru|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i update-browserslist-db@1.0.13
+ ```
+
+
+ uri-js@4.4.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|uri-js@4.4.1|
+ >|**Version**|@4.4.1|
+ >|**Repository**|https://github.com/garycourt/uri-js|
+ >|**Licenses**|BSD-2-Clause|
+ >|**Publisher**|Gary Court|
+ >|**Contact**|gary.court@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i uri-js@4.4.1
+ ```
+
+
+ url-parse@1.5.10
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|url-parse@1.5.10|
+ >|**Version**|@1.5.10|
+ >|**Repository**|https://github.com/unshiftio/url-parse|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Arnout Kazemier|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i url-parse@1.5.10
+ ```
+
+
+ use-sync-external-store@1.2.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|use-sync-external-store@1.2.0|
+ >|**Version**|@1.2.0|
+ >|**Repository**|https://github.com/facebook/react|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i use-sync-external-store@1.2.0
+ ```
+
+
+ util-deprecate@1.0.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|util-deprecate@1.0.2|
+ >|**Version**|@1.0.2|
+ >|**Repository**|https://github.com/TooTallNate/util-deprecate|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Nathan Rajlich|
+ >|**Contact**|nathan@tootallnate.net|
+ >|**Homepage**|http://n8.io/|
+
+ #### Use this package in your project
+ ```bash
+ npm i util-deprecate@1.0.2
+ ```
+
+
+ util-extend@1.0.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|util-extend@1.0.3|
+ >|**Version**|@1.0.3|
+ >|**Repository**|https://github.com/isaacs/util-extend|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i util-extend@1.0.3
+ ```
+
+
+ util.promisify@1.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|util.promisify@1.0.1|
+ >|**Version**|@.1.0.1|
+ >|**Repository**|https://github.com/ljharb/util.promisify|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i util.promisify@1.0.1
+ ```
+
+
+ utila@0.4.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|utila@0.4.0|
+ >|**Version**|@0.4.0|
+ >|**Repository**|https://github.com/AriaMinaei/utila|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Aria Minaei|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i utila@0.4.0
+ ```
+
+
+ utils-merge@1.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|utils-merge@1.0.1|
+ >|**Version**|@1.0.1|
+ >|**Repository**|https://github.com/jaredhanson/utils-merge|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jared Hanson|
+ >|**Contact**|jaredhanson@gmail.com|
+ >|**Homepage**|http://www.jaredhanson.net/|
+
+ #### Use this package in your project
+ ```bash
+ npm i utils-merge@1.0.1
+ ```
+
+
+ uuid@8.3.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|uuid@8.3.2|
+ >|**Version**|@8.3.2|
+ >|**Repository**|https://github.com/uuidjs/uuid|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i uuid@8.3.2
+ ```
+
+
+ uuidv4@6.2.13
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|uuidv4@6.2.13|
+ >|**Version**|@46.2.13|
+ >|**Repository**|https://github.com/thenativeweb/uuidv4|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i uuidv4@6.2.13
+ ```
+
+
+ v8-compile-cache-lib@3.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|v8-compile-cache-lib@3.0.1|
+ >|**Version**|@83.0.1|
+ >|**Repository**|https://github.com/cspotcode/v8-compile-cache-lib|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Andrew Bradley|
+ >|**Contact**|cspotcode@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i v8-compile-cache-lib@3.0.1
+ ```
+
+
+ v8-to-istanbul@8.1.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|v8-to-istanbul@8.1.1|
+ >|**Version**|@88.1.1|
+ >|**Repository**|https://github.com/istanbuljs/v8-to-istanbul|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Ben Coe|
+ >|**Contact**|ben@npmjs.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i v8-to-istanbul@8.1.1
+ ```
+
+
+ validate-npm-package-license@3.0.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|validate-npm-package-license@3.0.4|
+ >|**Version**|@3.0.4|
+ >|**Repository**|https://github.com/kemitchell/validate-npm-package-license.js|
+ >|**Licenses**|Apache-2.0|
+ >|**Publisher**|Kyle E. Mitchell|
+ >|**Contact**|kyle@kemitchell.com|
+ >|**Homepage**|https://kemitchell.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i validate-npm-package-license@3.0.4
+ ```
+
+
+ vary@1.1.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|vary@1.1.2|
+ >|**Version**|@1.1.2|
+ >|**Repository**|https://github.com/jshttp/vary|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Douglas Christopher Wilson|
+ >|**Contact**|doug@somethingdoug.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i vary@1.1.2
+ ```
+
+
+ w3c-hr-time@1.0.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|w3c-hr-time@1.0.2|
+ >|**Version**|@31.0.2|
+ >|**Repository**|https://github.com/jsdom/w3c-hr-time|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Timothy Gu|
+ >|**Contact**|timothygu99@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i w3c-hr-time@1.0.2
+ ```
+
+
+ w3c-xmlserializer@2.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|w3c-xmlserializer@2.0.0|
+ >|**Version**|@32.0.0|
+ >|**Repository**|https://github.com/jsdom/w3c-xmlserializer|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i w3c-xmlserializer@2.0.0
+ ```
+
+
+ walker@1.0.8
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|walker@1.0.8|
+ >|**Version**|@1.0.8|
+ >|**Repository**|https://github.com/daaku/nodejs-walker|
+ >|**Licenses**|Apache-2.0|
+ >|**Publisher**|Naitik Shah|
+ >|**Contact**|n@daaku.org|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i walker@1.0.8
+ ```
+
+
+ watchpack@2.4.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|watchpack@2.4.0|
+ >|**Version**|@2.4.0|
+ >|**Repository**|https://github.com/webpack/watchpack|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Tobias Koppers @sokra|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i watchpack@2.4.0
+ ```
+
+
+ wbuf@1.7.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|wbuf@1.7.3|
+ >|**Version**|@1.7.3|
+ >|**Repository**|https://github.com/indutny/wbuf|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Fedor Indutny|
+ >|**Contact**|fedor@indutny.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i wbuf@1.7.3
+ ```
+
+
+ webidl-conversions@4.0.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|webidl-conversions@4.0.2|
+ >|**Version**|@4.0.2|
+ >|**Repository**|https://github.com/jsdom/webidl-conversions|
+ >|**Licenses**|BSD-2-Clause|
+ >|**Publisher**|Domenic Denicola|
+ >|**Contact**|d@domenic.me|
+ >|**Homepage**|https://domenic.me/|
+
+ #### Use this package in your project
+ ```bash
+ npm i webidl-conversions@4.0.2
+ ```
+
+
+ webidl-conversions@5.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|webidl-conversions@5.0.0|
+ >|**Version**|@5.0.0|
+ >|**Repository**|https://github.com/jsdom/webidl-conversions|
+ >|**Licenses**|BSD-2-Clause|
+ >|**Publisher**|Domenic Denicola|
+ >|**Contact**|d@domenic.me|
+ >|**Homepage**|https://domenic.me/|
+
+ #### Use this package in your project
+ ```bash
+ npm i webidl-conversions@5.0.0
+ ```
+
+
+ webidl-conversions@6.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|webidl-conversions@6.1.0|
+ >|**Version**|@6.1.0|
+ >|**Repository**|https://github.com/jsdom/webidl-conversions|
+ >|**Licenses**|BSD-2-Clause|
+ >|**Publisher**|Domenic Denicola|
+ >|**Contact**|d@domenic.me|
+ >|**Homepage**|https://domenic.me/|
+
+ #### Use this package in your project
+ ```bash
+ npm i webidl-conversions@6.1.0
+ ```
+
+
+ webpack-dev-middleware@5.3.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|webpack-dev-middleware@5.3.3|
+ >|**Version**|@5.3.3|
+ >|**Repository**|https://github.com/webpack/webpack-dev-middleware|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Tobias Koppers @sokra|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i webpack-dev-middleware@5.3.3
+ ```
+
+
+ webpack-dev-server@4.15.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|webpack-dev-server@4.15.1|
+ >|**Version**|@4.15.1|
+ >|**Repository**|https://github.com/webpack/webpack-dev-server|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Tobias Koppers @sokra|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i webpack-dev-server@4.15.1
+ ```
+
+
+ webpack-manifest-plugin@4.1.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|webpack-manifest-plugin@4.1.1|
+ >|**Version**|@4.1.1|
+ >|**Repository**|https://github.com/shellscape/webpack-manifest-plugin|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Dane Thurber|
+ >|**Contact**|dane.thurber@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i webpack-manifest-plugin@4.1.1
+ ```
+
+
+ webpack-sources@1.4.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|webpack-sources@1.4.3|
+ >|**Version**|@1.4.3|
+ >|**Repository**|https://github.com/webpack/webpack-sources|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Tobias Koppers @sokra|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i webpack-sources@1.4.3
+ ```
+
+
+ webpack-sources@2.3.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|webpack-sources@2.3.1|
+ >|**Version**|@2.3.1|
+ >|**Repository**|https://github.com/webpack/webpack-sources|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Tobias Koppers @sokra|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i webpack-sources@2.3.1
+ ```
+
+
+ webpack-sources@3.2.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|webpack-sources@3.2.3|
+ >|**Version**|@3.2.3|
+ >|**Repository**|https://github.com/webpack/webpack-sources|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Tobias Koppers @sokra|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i webpack-sources@3.2.3
+ ```
+
+
+ webpack@5.89.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|webpack@5.89.0|
+ >|**Version**|@5.89.0|
+ >|**Repository**|https://github.com/webpack/webpack|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Tobias Koppers @sokra|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i webpack@5.89.0
+ ```
+
+
+ websocket-driver@0.7.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|websocket-driver@0.7.4|
+ >|**Version**|@0.7.4|
+ >|**Repository**|https://github.com/faye/websocket-driver-node|
+ >|**Licenses**|Apache-2.0|
+ >|**Publisher**|James Coglan|
+ >|**Contact**|jcoglan@gmail.com|
+ >|**Homepage**|http://jcoglan.com/|
+
+ #### Use this package in your project
+ ```bash
+ npm i websocket-driver@0.7.4
+ ```
+
+
+ websocket-extensions@0.1.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|websocket-extensions@0.1.4|
+ >|**Version**|@0.1.4|
+ >|**Repository**|https://github.com/faye/websocket-extensions-node|
+ >|**Licenses**|Apache-2.0|
+ >|**Publisher**|James Coglan|
+ >|**Contact**|jcoglan@gmail.com|
+ >|**Homepage**|http://jcoglan.com/|
+
+ #### Use this package in your project
+ ```bash
+ npm i websocket-extensions@0.1.4
+ ```
+
+
+ whatwg-encoding@1.0.5
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|whatwg-encoding@1.0.5|
+ >|**Version**|@1.0.5|
+ >|**Repository**|https://github.com/jsdom/whatwg-encoding|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Domenic Denicola|
+ >|**Contact**|d@domenic.me|
+ >|**Homepage**|https://domenic.me/|
+
+ #### Use this package in your project
+ ```bash
+ npm i whatwg-encoding@1.0.5
+ ```
+
+
+ whatwg-fetch@3.6.20
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|whatwg-fetch@3.6.20|
+ >|**Version**|@3.6.20|
+ >|**Repository**|https://github.com/github/fetch|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i whatwg-fetch@3.6.20
+ ```
+
+
+ whatwg-mimetype@2.3.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|whatwg-mimetype@2.3.0|
+ >|**Version**|@2.3.0|
+ >|**Repository**|https://github.com/jsdom/whatwg-mimetype|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Domenic Denicola|
+ >|**Contact**|d@domenic.me|
+ >|**Homepage**|https://domenic.me/|
+
+ #### Use this package in your project
+ ```bash
+ npm i whatwg-mimetype@2.3.0
+ ```
+
+
+ whatwg-url@7.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|whatwg-url@7.1.0|
+ >|**Version**|@7.1.0|
+ >|**Repository**|https://github.com/jsdom/whatwg-url|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sebastian Mayr|
+ >|**Contact**|github@smayr.name|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i whatwg-url@7.1.0
+ ```
+
+
+ whatwg-url@8.7.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|whatwg-url@8.7.0|
+ >|**Version**|@8.7.0|
+ >|**Repository**|https://github.com/jsdom/whatwg-url|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sebastian Mayr|
+ >|**Contact**|github@smayr.name|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i whatwg-url@8.7.0
+ ```
+
+
+ which-boxed-primitive@1.0.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|which-boxed-primitive@1.0.2|
+ >|**Version**|@1.0.2|
+ >|**Repository**|https://github.com/inspect-js/which-boxed-primitive|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i which-boxed-primitive@1.0.2
+ ```
+
+
+ which-builtin-type@1.1.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|which-builtin-type@1.1.3|
+ >|**Version**|@1.1.3|
+ >|**Repository**|https://github.com/inspect-js/which-builtin-type|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i which-builtin-type@1.1.3
+ ```
+
+
+ which-collection@1.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|which-collection@1.0.1|
+ >|**Version**|@1.0.1|
+ >|**Repository**|https://github.com/inspect-js/which-collection|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i which-collection@1.0.1
+ ```
+
+
+ which-typed-array@1.1.13
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|which-typed-array@1.1.13|
+ >|**Version**|@1.1.13|
+ >|**Repository**|https://github.com/inspect-js/which-typed-array|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jordan Harband|
+ >|**Contact**|ljharb@gmail.com|
+ >|**Homepage**|http://ljharb.codes|
+
+ #### Use this package in your project
+ ```bash
+ npm i which-typed-array@1.1.13
+ ```
+
+
+ which@1.3.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|which@1.3.1|
+ >|**Version**|@1.3.1|
+ >|**Repository**|https://github.com/isaacs/node-which|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Isaac Z. Schlueter|
+ >|**Contact**|i@izs.me|
+ >|**Homepage**|http://blog.izs.me|
+
+ #### Use this package in your project
+ ```bash
+ npm i which@1.3.1
+ ```
+
+
+ which@2.0.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|which@2.0.2|
+ >|**Version**|@2.0.2|
+ >|**Repository**|https://github.com/isaacs/node-which|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Isaac Z. Schlueter|
+ >|**Contact**|i@izs.me|
+ >|**Homepage**|http://blog.izs.me|
+
+ #### Use this package in your project
+ ```bash
+ npm i which@2.0.2
+ ```
+
+
+ word-wrap@1.2.5
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|word-wrap@1.2.5|
+ >|**Version**|@1.2.5|
+ >|**Repository**|https://github.com/jonschlinkert/word-wrap|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Jon Schlinkert|
+ >|**Contact**|NA|
+ >|**Homepage**|https://github.com/jonschlinkert|
+
+ #### Use this package in your project
+ ```bash
+ npm i word-wrap@1.2.5
+ ```
+
+
+ workbox-background-sync@6.6.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|workbox-background-sync@6.6.0|
+ >|**Version**|@6.6.0|
+ >|**Repository**|https://github.com/googlechrome/workbox|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Google's Web DevRel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i workbox-background-sync@6.6.0
+ ```
+
+
+ workbox-broadcast-update@6.6.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|workbox-broadcast-update@6.6.0|
+ >|**Version**|@6.6.0|
+ >|**Repository**|https://github.com/googlechrome/workbox|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Google's Web DevRel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i workbox-broadcast-update@6.6.0
+ ```
+
+
+ workbox-build@6.6.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|workbox-build@6.6.0|
+ >|**Version**|@6.6.0|
+ >|**Repository**|https://github.com/googlechrome/workbox|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Google's Web DevRel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i workbox-build@6.6.0
+ ```
+
+
+ workbox-cacheable-response@6.6.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|workbox-cacheable-response@6.6.0|
+ >|**Version**|@6.6.0|
+ >|**Repository**|https://github.com/googlechrome/workbox|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Google's Web DevRel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i workbox-cacheable-response@6.6.0
+ ```
+
+
+ workbox-core@6.6.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|workbox-core@6.6.0|
+ >|**Version**|@6.6.0|
+ >|**Repository**|https://github.com/googlechrome/workbox|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Google's Web DevRel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i workbox-core@6.6.0
+ ```
+
+
+ workbox-expiration@6.6.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|workbox-expiration@6.6.0|
+ >|**Version**|@6.6.0|
+ >|**Repository**|https://github.com/googlechrome/workbox|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Google's Web DevRel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i workbox-expiration@6.6.0
+ ```
+
+
+ workbox-google-analytics@6.6.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|workbox-google-analytics@6.6.0|
+ >|**Version**|@6.6.0|
+ >|**Repository**|https://github.com/googlechrome/workbox|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Google's Web DevRel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i workbox-google-analytics@6.6.0
+ ```
+
+
+ workbox-navigation-preload@6.6.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|workbox-navigation-preload@6.6.0|
+ >|**Version**|@6.6.0|
+ >|**Repository**|https://github.com/googlechrome/workbox|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Google's Web DevRel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i workbox-navigation-preload@6.6.0
+ ```
+
+
+ workbox-precaching@6.6.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|workbox-precaching@6.6.0|
+ >|**Version**|@6.6.0|
+ >|**Repository**|https://github.com/googlechrome/workbox|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Google's Web DevRel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i workbox-precaching@6.6.0
+ ```
+
+
+ workbox-range-requests@6.6.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|workbox-range-requests@6.6.0|
+ >|**Version**|@6.6.0|
+ >|**Repository**|https://github.com/googlechrome/workbox|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Google's Web DevRel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i workbox-range-requests@6.6.0
+ ```
+
+
+ workbox-recipes@6.6.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|workbox-recipes@6.6.0|
+ >|**Version**|@6.6.0|
+ >|**Repository**|https://github.com/googlechrome/workbox|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Google's Web DevRel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i workbox-recipes@6.6.0
+ ```
+
+
+ workbox-routing@6.6.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|workbox-routing@6.6.0|
+ >|**Version**|@6.6.0|
+ >|**Repository**|https://github.com/googlechrome/workbox|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Google's Web DevRel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i workbox-routing@6.6.0
+ ```
+
+
+ workbox-strategies@6.6.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|workbox-strategies@6.6.0|
+ >|**Version**|@6.6.0|
+ >|**Repository**|https://github.com/googlechrome/workbox|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Google's Web DevRel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i workbox-strategies@6.6.0
+ ```
+
+
+ workbox-streams@6.6.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|workbox-streams@6.6.0|
+ >|**Version**|@6.6.0|
+ >|**Repository**|https://github.com/googlechrome/workbox|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Google's Web DevRel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i workbox-streams@6.6.0
+ ```
+
+
+ workbox-sw@6.6.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|workbox-sw@6.6.0|
+ >|**Version**|@6.6.0|
+ >|**Repository**|https://github.com/googlechrome/workbox|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Google's Web DevRel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i workbox-sw@6.6.0
+ ```
+
+
+ workbox-webpack-plugin@6.6.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|workbox-webpack-plugin@6.6.0|
+ >|**Version**|@6.6.0|
+ >|**Repository**|https://github.com/googlechrome/workbox|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Google's Web DevRel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i workbox-webpack-plugin@6.6.0
+ ```
+
+
+ workbox-window@6.6.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|workbox-window@6.6.0|
+ >|**Version**|@6.6.0|
+ >|**Repository**|https://github.com/googlechrome/workbox|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Google's Web DevRel Team|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i workbox-window@6.6.0
+ ```
+
+
+ wrap-ansi@7.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|wrap-ansi@7.0.0|
+ >|**Version**|@7.0.0|
+ >|**Repository**|https://github.com/chalk/wrap-ansi|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|https://sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i wrap-ansi@7.0.0
+ ```
+
+
+ wrap-ansi@8.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|wrap-ansi@8.1.0|
+ >|**Version**|@8.1.0|
+ >|**Repository**|https://github.com/chalk/wrap-ansi|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|https://sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i wrap-ansi@8.1.0
+ ```
+
+
+ wrappid-module@0.0.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|wrappid-module@0.0.1|
+ >|**Version**|@0.0.1|
+ >|**Repository**|git:https://github.com/wrappid/wrappid-module|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Wrappid|
+ >|**Contact**|wrappid.framework@gmail.com|
+ >|**Homepage**|https://www.github.com/wrappid|
+
+ #### Use this package in your project
+ ```bash
+ npm i wrappid-module@0.0.1
+ ```
+
+
+ wrappy@1.0.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|wrappy@1.0.2|
+ >|**Version**|@1.0.2|
+ >|**Repository**|https://github.com/npm/wrappy|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Isaac Z. Schlueter|
+ >|**Contact**|i@izs.me|
+ >|**Homepage**|http://blog.izs.me/|
+
+ #### Use this package in your project
+ ```bash
+ npm i wrappy@1.0.2
+ ```
+
+
+ write-file-atomic@3.0.3
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|write-file-atomic@3.0.3|
+ >|**Version**|@3.0.3|
+ >|**Repository**|https://github.com/npm/write-file-atomic|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Rebecca Turner|
+ >|**Contact**|me@re-becca.org|
+ >|**Homepage**|http://re-becca.org|
+
+ #### Use this package in your project
+ ```bash
+ npm i write-file-atomic@3.0.3
+ ```
+
+
+ ws@7.5.9
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|ws@7.5.9|
+ >|**Version**|@7.5.9|
+ >|**Repository**|https://github.com/websockets/ws|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Einar Otto Stangvik|
+ >|**Contact**|einaros@gmail.com|
+ >|**Homepage**|http://2x.io|
+
+ #### Use this package in your project
+ ```bash
+ npm i ws@7.5.9
+ ```
+
+
+ ws@8.16.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|ws@8.16.0|
+ >|**Version**|@8.16.0|
+ >|**Repository**|https://github.com/websockets/ws|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Einar Otto Stangvik|
+ >|**Contact**|einaros@gmail.com|
+ >|**Homepage**|http://2x.io|
+
+ #### Use this package in your project
+ ```bash
+ npm i ws@8.16.0
+ ```
+
+
+ xml-name-validator@3.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|xml-name-validator@3.0.0|
+ >|**Version**|@3.0.0|
+ >|**Repository**|https://github.com/jsdom/xml-name-validator|
+ >|**Licenses**|Apache-2.0|
+ >|**Publisher**|Domenic Denicola|
+ >|**Contact**|d@domenic.me|
+ >|**Homepage**|https://domenic.me/|
+
+ #### Use this package in your project
+ ```bash
+ npm i xml-name-validator@3.0.0
+ ```
+
+
+ xmlchars@2.2.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|xmlchars@2.2.0|
+ >|**Version**|@2.2.0|
+ >|**Repository**|https://github.com/lddubeau/xmlchars|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Louis-Dominique Dubeau|
+ >|**Contact**|ldd@lddubeau.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i xmlchars@2.2.0
+ ```
+
+
+ y18n@5.0.8
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|y18n@5.0.8|
+ >|**Version**|@185.0.8|
+ >|**Repository**|https://github.com/yargs/y18n|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Ben Coe|
+ >|**Contact**|bencoe@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i y18n@5.0.8
+ ```
+
+
+ yallist@3.1.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|yallist@3.1.1|
+ >|**Version**|@3.1.1|
+ >|**Repository**|https://github.com/isaacs/yallist|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Isaac Z. Schlueter|
+ >|**Contact**|i@izs.me|
+ >|**Homepage**|http://blog.izs.me/|
+
+ #### Use this package in your project
+ ```bash
+ npm i yallist@3.1.1
+ ```
+
+
+ yallist@4.0.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|yallist@4.0.0|
+ >|**Version**|@4.0.0|
+ >|**Repository**|https://github.com/isaacs/yallist|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Isaac Z. Schlueter|
+ >|**Contact**|i@izs.me|
+ >|**Homepage**|http://blog.izs.me/|
+
+ #### Use this package in your project
+ ```bash
+ npm i yallist@4.0.0
+ ```
+
+
+ yaml@1.10.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|yaml@1.10.2|
+ >|**Version**|@1.10.2|
+ >|**Repository**|https://github.com/eemeli/yaml|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Eemeli Aro|
+ >|**Contact**|eemeli@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i yaml@1.10.2
+ ```
+
+
+ yaml@2.3.4
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|yaml@2.3.4|
+ >|**Version**|@2.3.4|
+ >|**Repository**|https://github.com/eemeli/yaml|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Eemeli Aro|
+ >|**Contact**|eemeli@gmail.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i yaml@2.3.4
+ ```
+
+
+ yargs-parser@20.2.9
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|yargs-parser@20.2.9|
+ >|**Version**|@20.2.9|
+ >|**Repository**|https://github.com/yargs/yargs-parser|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Ben Coe|
+ >|**Contact**|ben@npmjs.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i yargs-parser@20.2.9
+ ```
+
+
+ yargs-parser@21.1.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|yargs-parser@21.1.1|
+ >|**Version**|@21.1.1|
+ >|**Repository**|https://github.com/yargs/yargs-parser|
+ >|**Licenses**|ISC|
+ >|**Publisher**|Ben Coe|
+ >|**Contact**|ben@npmjs.com|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i yargs-parser@21.1.1
+ ```
+
+
+ yargs@16.2.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|yargs@16.2.0|
+ >|**Version**|@16.2.0|
+ >|**Repository**|https://github.com/yargs/yargs|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i yargs@16.2.0
+ ```
+
+
+ yargs@17.7.2
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|yargs@17.7.2|
+ >|**Version**|@17.7.2|
+ >|**Repository**|https://github.com/yargs/yargs|
+ >|**Licenses**|MIT|
+ >|**Publisher**|NA|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i yargs@17.7.2
+ ```
+
+
+ yn@3.1.1
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|yn@3.1.1|
+ >|**Version**|@3.1.1|
+ >|**Repository**|https://github.com/sindresorhus/yn|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i yn@3.1.1
+ ```
+
+
+ yocto-queue@0.1.0
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|yocto-queue@0.1.0|
+ >|**Version**|@0.1.0|
+ >|**Repository**|https://github.com/sindresorhus/yocto-queue|
+ >|**Licenses**|MIT|
+ >|**Publisher**|Sindre Sorhus|
+ >|**Contact**|sindresorhus@gmail.com|
+ >|**Homepage**|https://sindresorhus.com|
+
+ #### Use this package in your project
+ ```bash
+ npm i yocto-queue@0.1.0
+ ```
+
+
+ yup@0.32.11
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|yup@0.32.11|
+ >|**Version**|@0.32.11|
+ >|**Repository**|https://github.com/jquense/yup|
+ >|**Licenses**|MIT|
+ >|**Publisher**|@monasticpanic Jason Quense|
+ >|**Contact**|NA|
+ >|**Homepage**|NA|
+
+ #### Use this package in your project
+ ```bash
+ npm i yup@0.32.11
+ ```
+
\ No newline at end of file
diff --git a/app/components/UserProfile.js b/app/components/UserProfile.js
index a76ac6c..f78eb08 100644
--- a/app/components/UserProfile.js
+++ b/app/components/UserProfile.js
@@ -1,203 +1,203 @@
import { useState, useEffect } from "react";
import {
- CoreGrid,
- CoreCard,
- CoreCardContent,
- CoreDivider,
- CoreForm,
- FORM_EDIT_MODE,
- FORM_IDS,
- FORM_VIEW_MODE
+ CoreGrid,
+ CoreCard,
+ CoreCardContent,
+ CoreDivider,
+ CoreForm,
+ FORM_EDIT_MODE,
+ FORM_IDS,
+ FORM_VIEW_MODE
} from "@wrappid/core";
import { useSelector } from "react-redux";
// -- import RssFeed from "../utility/RssFeed";
function UserProfile() {
- const [formsMode, setFormsMode] = useState({
- [FORM_IDS.__PROFILE_BASIC] : FORM_VIEW_MODE,
- [FORM_IDS.__PROFILE_CONTACT] : FORM_VIEW_MODE,
- [FORM_IDS.__PROFILE_CLINIC] : FORM_VIEW_MODE,
- [FORM_IDS.__PROFILE_REGISTRATION]: FORM_VIEW_MODE,
- [FORM_IDS.__PROFILE_EDUCATION] : FORM_VIEW_MODE,
- [FORM_IDS.__PROFILE_EXPERIENCE] : FORM_VIEW_MODE,
- });
-
- const profile = useSelector((state) => state.profile); // --- profile, addresses, basic, contact, educations, experiences, registration
- const auth = useSelector((state) => state.auth); // --- auth, navData
- const state = useSelector((state) => state); // --- auth, navData
-
- // eslint-disable-next-line no-console
- console.log("STATE", state);
-
- // --- componentDidMount
- useEffect(() => {}, []);
-
- // eslint-disable-next-line no-unused-vars
- const ToggleMode = (formId) => {
- setFormsMode({
- ...formsMode,
- [formId]:
+ const [formsMode, setFormsMode] = useState({
+ [FORM_IDS.__PROFILE_BASIC] : FORM_VIEW_MODE,
+ [FORM_IDS.__PROFILE_CONTACT] : FORM_VIEW_MODE,
+ [FORM_IDS.__PROFILE_CLINIC] : FORM_VIEW_MODE,
+ [FORM_IDS.__PROFILE_REGISTRATION]: FORM_VIEW_MODE,
+ [FORM_IDS.__PROFILE_EDUCATION] : FORM_VIEW_MODE,
+ [FORM_IDS.__PROFILE_EXPERIENCE] : FORM_VIEW_MODE,
+ });
+
+ const profile = useSelector((state) => state.profile); // --- profile, addresses, basic, contact, educations, experiences, registration
+ const auth = useSelector((state) => state.auth); // --- auth, navData
+ const state = useSelector((state) => state); // --- auth, navData
+
+ // eslint-disable-next-line no-console
+ console.log("STATE", state);
+
+ // --- componentDidMount
+ useEffect(() => {}, []);
+
+ // eslint-disable-next-line no-unused-vars
+ const ToggleMode = (formId) => {
+ setFormsMode({
+ ...formsMode,
+ [formId]:
formsMode[formId] === FORM_VIEW_MODE ? FORM_EDIT_MODE : FORM_VIEW_MODE,
- });
- };
-
- return (
-
-
-
-
-
-
-
-
-
-
-
-
- {auth?.role?.role &&
+ });
+ };
+
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+ {auth?.role?.role &&
auth?.role?.role.toLowerCase() === "doctor" && (
-
- )}
-
- {auth?.role?.role &&
+
+ )}
+
+ {auth?.role?.role &&
auth?.role?.role.toLowerCase() === "doctor" && (
-
- )}
-
- {auth?.role?.role &&
+
+ )}
+
+ {auth?.role?.role &&
auth?.role?.role.toLowerCase() === "doctor" && }
- {auth?.role?.role &&
+ {auth?.role?.role &&
auth?.role?.role.toLowerCase() !== "patient" && (
-
- )}
-
- {auth?.role?.role &&
+
+ )}
+
+ {auth?.role?.role &&
auth?.role?.role.toLowerCase() !== "patient" && (
- {
- // alert("CREATE error hook");
- // }}
- // afterEditError={() => {
- // alert("EDIT error hook");
- // }}
- // afterDeleteError={() => {
- // alert("DELETE error hook");
- // }}
- // afterCreateSuccess={() => {
- // alert("CREATE success hook");
- // }}
- // afterEditSuccess={() => {
- // alert("EDIT success hook");
- // }}
- // afterDeleteSuccess={() => {
- // alert("DELETE success hook");
- // }}
- />
- )}
-
- {auth?.role?.role &&
+ {
+ // alert("CREATE error hook");
+ // }}
+ // afterEditError={() => {
+ // alert("EDIT error hook");
+ // }}
+ // afterDeleteError={() => {
+ // alert("DELETE error hook");
+ // }}
+ // afterCreateSuccess={() => {
+ // alert("CREATE success hook");
+ // }}
+ // afterEditSuccess={() => {
+ // alert("EDIT success hook");
+ // }}
+ // afterDeleteSuccess={() => {
+ // alert("DELETE success hook");
+ // }}
+ />
+ )}
+
+ {auth?.role?.role &&
auth?.role?.role.toLowerCase() === "patient" && (
-
- )}
-
-
-
-
- {/* --
+
+ )}
+
+
+
+
+ {/* --
*/}
-
- );
+
+ );
}
export default UserProfile;
diff --git a/app/styles/DefaultModuleStyles.js b/app/styles/DefaultModuleStyles.js
index d414b4e..c96e93f 100644
--- a/app/styles/DefaultModuleStyles.js
+++ b/app/styles/DefaultModuleStyles.js
@@ -1,9 +1,13 @@
-import { defaultUtilityStyles } from "@wrappid/styles";
+import { DefaultCoreStyles } from "@wrappid/core";
-export const defaultAppStyles = {
- /**************************************************
- * Using defaultUtilityStyles example
- * eg. testWrappidStyleClass: { ...defaultUtilityStyles.anyUtilityStyle },
- *************************************************/
- testWrappidStyleClass: { ...defaultUtilityStyles.bgBlack }
-};
+export default class DefaultModuleStyles extends DefaultCoreStyles {
+ constructor(){
+ super();
+ this.style = {
+ /**************************************************
+ * Using defaultUtilityStyles example
+ *************************************************/
+ testWrappidStyleClass: { ...this.styles.devBorder },
+ };
+ }
+}
diff --git a/app/styles/LargeModuleStyles.js b/app/styles/LargeModuleStyles.js
index bf3015b..d43f8b6 100644
--- a/app/styles/LargeModuleStyles.js
+++ b/app/styles/LargeModuleStyles.js
@@ -1,9 +1,13 @@
-// -- import { largeUtilityStyles } from "@wrappid/styles";
+import { LargeCoreStyles } from "@wrappid/core";
-export const largeAppStyles = {
- /**************************************************
- * Using largeUtilityStyles example
- * eg. usingLargeUtilityStyles: { ...largeUtilityStyles.anyUtilityStyle },
- *************************************************/
- testWrappidStyleClass: {/* your style goes here */}
-};
+export default class LargeModuleStyles extends LargeCoreStyles {
+ constructor(){
+ super();
+ this.style = {
+ /**************************************************
+ * Using LargeUtilityStyles example
+ *************************************************/
+ testWrappidStyleClass: { ...this.styles.devBorder },
+ };
+ }
+}
diff --git a/app/styles/MediumModuleStyles.js b/app/styles/MediumModuleStyles.js
index 0de809b..0ed9ea9 100644
--- a/app/styles/MediumModuleStyles.js
+++ b/app/styles/MediumModuleStyles.js
@@ -1,10 +1,13 @@
-// -- import { mediumUtilityStyles } from "@wrappid/styles";
+import { MediumCoreStyles } from "@wrappid/core";
-export const mediumAppStyles = {
-
- /**************************************************
- * Using mediumUtilityStyles example
- * eg. usingMediumUtilityStyles: { ...mediumUtilityStyles.anyUtilityStyle },
- *************************************************/
- testWrappidStyleClass: {/* your style goes here */}
-};
+export default class MediumModuleStyles extends MediumCoreStyles {
+ constructor(){
+ super();
+ this.style = {
+ /**************************************************
+ * Using defaultUtilityStyles example
+ *************************************************/
+ testWrappidStyleClass: { ...this.styles.devBorder },
+ };
+ }
+}
diff --git a/app/styles/SmallModuleStyles.js b/app/styles/SmallModuleStyles.js
index 400e11f..e85ea11 100644
--- a/app/styles/SmallModuleStyles.js
+++ b/app/styles/SmallModuleStyles.js
@@ -1,9 +1,13 @@
-// -- import { smallUtilityStyles } from "@wrappid/styles";
+import { SmallCoreStyles } from "@wrappid/core";
-export const smallAppStyles = {
- /**************************************************
- * Using smallUtilityStyles example
- * eg. usingSmallUtilityStyles: { ...smallUtilityStyles.anyUtilityStyle },
- *************************************************/
- testWrappidStyleClass: {/* your style goes here */}
-};
+export default class SmallModuleStyles extends SmallCoreStyles {
+ constructor(){
+ super();
+ this.style = {
+ /**************************************************
+ * Using smallUtilityStyles example
+ *************************************************/
+ testWrappidStyleClass: { ...this.styles.devBorder },
+ };
+ }
+}
diff --git a/app/styles/XLargeModuleStyles.js b/app/styles/XLargeModuleStyles.js
index 5943e45..1a4ad85 100644
--- a/app/styles/XLargeModuleStyles.js
+++ b/app/styles/XLargeModuleStyles.js
@@ -1,9 +1,13 @@
-// -- import { xLargeUtilityStyles } from "@wrappid/styles";
+import { XLargeCoreStyles } from "@wrappid/core";
-export const xLargeAppStyles = {
- /**************************************************
- * Using xLargeUtilityStyles example
- * eg. usingXLargeUtilityStyles: { ...xLargeUtilityStyles.anyUtilityStyle },
- *************************************************/
- testWrappidStyleClass: {/* your style goes here */}
-};
+export default class XLargeModuleStyles extends XLargeCoreStyles {
+ constructor(){
+ super();
+ this.style = {
+ /**************************************************
+ * Using XLargeUtilityStyles example
+ *************************************************/
+ testWrappidStyleClass: { ...this.styles.devBorder },
+ };
+ }
+}
diff --git a/app/styles/XXLargeModuleStyles.js b/app/styles/XXLargeModuleStyles.js
index 0fc88ce..d27bc36 100644
--- a/app/styles/XXLargeModuleStyles.js
+++ b/app/styles/XXLargeModuleStyles.js
@@ -1,9 +1,13 @@
-// -- import { xXLargeUtilityStyles } from "@wrappid/styles";
+import { XXLargeCoreStyles } from "@wrappid/core";
-export const xXLargeAppStyles = {
- /**************************************************
- * Using xXLargeUtilityStyles example
- * eg. usingXXLargeUtilityStyles: { ...xXLargeUtilityStyles.anyUtilityStyle },
- *************************************************/
- testWrappidStyleClass: {/* your style goes here */}
-};
+export default class XXLargeModuleStyles extends XXLargeCoreStyles {
+ constructor(){
+ super();
+ this.style = {
+ /**************************************************
+ * Using XXLargeUtilityStyles example
+ *************************************************/
+ testWrappidStyleClass: { ...this.styles.devBorder },
+ };
+ }
+}
diff --git a/package-lock.json b/package-lock.json
index efbfc2f..f8bed06 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -30,7 +30,7 @@
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.3",
- "prettier": "^2.5.1",
+ "license-checker": "^25.0.1",
"react-redux": "^8.0.5"
}
},
@@ -68,45 +68,128 @@
"node": ">=6.0.0"
}
},
+ "node_modules/@apideck/better-ajv-errors": {
+ "version": "0.3.6",
+ "resolved": "https://registry.npmjs.org/@apideck/better-ajv-errors/-/better-ajv-errors-0.3.6.tgz",
+ "integrity": "sha512-P+ZygBLZtkp0qqOAJJVX4oX/sFo5JR3eBWwwuqHHhK0GIgQOKWrAfiAaWX0aArHkRWHMuggFEgAZNxVPwPZYaA==",
+ "dev": true,
+ "peer": true,
+ "dependencies": {
+ "json-schema": "^0.4.0",
+ "jsonpointer": "^5.0.0",
+ "leven": "^3.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "peerDependencies": {
+ "ajv": ">=8"
+ }
+ },
"node_modules/@babel/code-frame": {
- "version": "7.21.4",
- "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.21.4.tgz",
- "integrity": "sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g==",
+ "version": "7.23.5",
+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.23.5.tgz",
+ "integrity": "sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==",
"dependencies": {
- "@babel/highlight": "^7.18.6"
+ "@babel/highlight": "^7.23.4",
+ "chalk": "^2.4.2"
},
"engines": {
"node": ">=6.9.0"
}
},
+ "node_modules/@babel/code-frame/node_modules/ansi-styles": {
+ "version": "3.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
+ "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
+ "dependencies": {
+ "color-convert": "^1.9.0"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/@babel/code-frame/node_modules/chalk": {
+ "version": "2.4.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
+ "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
+ "dependencies": {
+ "ansi-styles": "^3.2.1",
+ "escape-string-regexp": "^1.0.5",
+ "supports-color": "^5.3.0"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/@babel/code-frame/node_modules/color-convert": {
+ "version": "1.9.3",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
+ "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
+ "dependencies": {
+ "color-name": "1.1.3"
+ }
+ },
+ "node_modules/@babel/code-frame/node_modules/color-name": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
+ "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw=="
+ },
+ "node_modules/@babel/code-frame/node_modules/escape-string-regexp": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
+ "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==",
+ "engines": {
+ "node": ">=0.8.0"
+ }
+ },
+ "node_modules/@babel/code-frame/node_modules/has-flag": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
+ "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/@babel/code-frame/node_modules/supports-color": {
+ "version": "5.5.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
+ "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
+ "dependencies": {
+ "has-flag": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
"node_modules/@babel/compat-data": {
- "version": "7.21.7",
- "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.21.7.tgz",
- "integrity": "sha512-KYMqFYTaenzMK4yUtf4EW9wc4N9ef80FsbMtkwool5zpwl4YrT1SdWYSTRcT94KO4hannogdS+LxY7L+arP3gA==",
+ "version": "7.23.5",
+ "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.23.5.tgz",
+ "integrity": "sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/core": {
- "version": "7.21.8",
- "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.21.8.tgz",
- "integrity": "sha512-YeM22Sondbo523Sz0+CirSPnbj9bG3P0CdHcBZdqUuaeOaYEFbOLoGU7lebvGP6P5J/WE9wOn7u7C4J9HvS1xQ==",
+ "version": "7.23.9",
+ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.9.tgz",
+ "integrity": "sha512-5q0175NOjddqpvvzU+kDiSOAk4PfdO6FvwCWoQ6RO7rTzEe8vlo+4HVfcnAREhD4npMs0e9uZypjTwzZPCf/cw==",
"dependencies": {
"@ampproject/remapping": "^2.2.0",
- "@babel/code-frame": "^7.21.4",
- "@babel/generator": "^7.21.5",
- "@babel/helper-compilation-targets": "^7.21.5",
- "@babel/helper-module-transforms": "^7.21.5",
- "@babel/helpers": "^7.21.5",
- "@babel/parser": "^7.21.8",
- "@babel/template": "^7.20.7",
- "@babel/traverse": "^7.21.5",
- "@babel/types": "^7.21.5",
- "convert-source-map": "^1.7.0",
+ "@babel/code-frame": "^7.23.5",
+ "@babel/generator": "^7.23.6",
+ "@babel/helper-compilation-targets": "^7.23.6",
+ "@babel/helper-module-transforms": "^7.23.3",
+ "@babel/helpers": "^7.23.9",
+ "@babel/parser": "^7.23.9",
+ "@babel/template": "^7.23.9",
+ "@babel/traverse": "^7.23.9",
+ "@babel/types": "^7.23.9",
+ "convert-source-map": "^2.0.0",
"debug": "^4.1.0",
"gensync": "^1.0.0-beta.2",
- "json5": "^2.2.2",
- "semver": "^6.3.0"
+ "json5": "^2.2.3",
+ "semver": "^6.3.1"
},
"engines": {
"node": ">=6.9.0"
@@ -116,30 +199,35 @@
"url": "https://opencollective.com/babel"
}
},
+ "node_modules/@babel/core/node_modules/convert-source-map": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
+ "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg=="
+ },
"node_modules/@babel/core/node_modules/semver": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
- "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
"bin": {
"semver": "bin/semver.js"
}
},
"node_modules/@babel/eslint-parser": {
- "version": "7.21.8",
- "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.21.8.tgz",
- "integrity": "sha512-HLhI+2q+BP3sf78mFUZNCGc10KEmoUqtUT1OCdMZsN+qr4qFeLUod62/zAnF3jNQstwyasDkZnVXwfK2Bml7MQ==",
+ "version": "7.23.10",
+ "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.23.10.tgz",
+ "integrity": "sha512-3wSYDPZVnhseRnxRJH6ZVTNknBz76AEnyC+AYYhasjP3Yy23qz0ERR7Fcd2SHmYuSFJ2kY9gaaDd3vyqU09eSw==",
"dev": true,
"peer": true,
"dependencies": {
"@nicolo-ribaudo/eslint-scope-5-internals": "5.1.1-v1",
"eslint-visitor-keys": "^2.1.0",
- "semver": "^6.3.0"
+ "semver": "^6.3.1"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || >=14.0.0"
},
"peerDependencies": {
- "@babel/core": ">=7.11.0",
+ "@babel/core": "^7.11.0",
"eslint": "^7.5.0 || ^8.0.0"
}
},
@@ -154,9 +242,9 @@
}
},
"node_modules/@babel/eslint-parser/node_modules/semver": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
- "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
"dev": true,
"peer": true,
"bin": {
@@ -164,11 +252,11 @@
}
},
"node_modules/@babel/generator": {
- "version": "7.21.5",
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.21.5.tgz",
- "integrity": "sha512-SrKK/sRv8GesIW1bDagf9cCG38IOMYZusoe1dfg0D8aiUe3Amvoj1QtjTPAWcfrZFvIwlleLb0gxzQidL9w14w==",
+ "version": "7.23.6",
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.6.tgz",
+ "integrity": "sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==",
"dependencies": {
- "@babel/types": "^7.21.5",
+ "@babel/types": "^7.23.6",
"@jridgewell/gen-mapping": "^0.3.2",
"@jridgewell/trace-mapping": "^0.3.17",
"jsesc": "^2.5.1"
@@ -178,73 +266,70 @@
}
},
"node_modules/@babel/helper-annotate-as-pure": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz",
- "integrity": "sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==",
+ "version": "7.22.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz",
+ "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==",
"dev": true,
"peer": true,
"dependencies": {
- "@babel/types": "^7.18.6"
+ "@babel/types": "^7.22.5"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-builder-binary-assignment-operator-visitor": {
- "version": "7.21.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.21.5.tgz",
- "integrity": "sha512-uNrjKztPLkUk7bpCNC0jEKDJzzkvel/W+HguzbN8krA+LPfC1CEobJEvAvGka2A/M+ViOqXdcRL0GqPUJSjx9g==",
+ "version": "7.22.15",
+ "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.15.tgz",
+ "integrity": "sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==",
"dev": true,
"peer": true,
"dependencies": {
- "@babel/types": "^7.21.5"
+ "@babel/types": "^7.22.15"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-compilation-targets": {
- "version": "7.21.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.21.5.tgz",
- "integrity": "sha512-1RkbFGUKex4lvsB9yhIfWltJM5cZKUftB2eNajaDv3dCMEp49iBG0K14uH8NnX9IPux2+mK7JGEOB0jn48/J6w==",
+ "version": "7.23.6",
+ "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.23.6.tgz",
+ "integrity": "sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==",
"dependencies": {
- "@babel/compat-data": "^7.21.5",
- "@babel/helper-validator-option": "^7.21.0",
- "browserslist": "^4.21.3",
+ "@babel/compat-data": "^7.23.5",
+ "@babel/helper-validator-option": "^7.23.5",
+ "browserslist": "^4.22.2",
"lru-cache": "^5.1.1",
- "semver": "^6.3.0"
+ "semver": "^6.3.1"
},
"engines": {
"node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0"
}
},
"node_modules/@babel/helper-compilation-targets/node_modules/semver": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
- "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
"bin": {
"semver": "bin/semver.js"
}
},
"node_modules/@babel/helper-create-class-features-plugin": {
- "version": "7.21.8",
- "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.21.8.tgz",
- "integrity": "sha512-+THiN8MqiH2AczyuZrnrKL6cAxFRRQDKW9h1YkBvbgKmAm6mwiacig1qT73DHIWMGo40GRnsEfN3LA+E6NtmSw==",
+ "version": "7.23.10",
+ "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.23.10.tgz",
+ "integrity": "sha512-2XpP2XhkXzgxecPNEEK8Vz8Asj9aRxt08oKOqtiZoqV2UGZ5T+EkyP9sXQ9nwMxBIG34a7jmasVqoMop7VdPUw==",
"dev": true,
"peer": true,
"dependencies": {
- "@babel/helper-annotate-as-pure": "^7.18.6",
- "@babel/helper-environment-visitor": "^7.21.5",
- "@babel/helper-function-name": "^7.21.0",
- "@babel/helper-member-expression-to-functions": "^7.21.5",
- "@babel/helper-optimise-call-expression": "^7.18.6",
- "@babel/helper-replace-supers": "^7.21.5",
- "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0",
- "@babel/helper-split-export-declaration": "^7.18.6",
- "semver": "^6.3.0"
+ "@babel/helper-annotate-as-pure": "^7.22.5",
+ "@babel/helper-environment-visitor": "^7.22.20",
+ "@babel/helper-function-name": "^7.23.0",
+ "@babel/helper-member-expression-to-functions": "^7.23.0",
+ "@babel/helper-optimise-call-expression": "^7.22.5",
+ "@babel/helper-replace-supers": "^7.22.20",
+ "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5",
+ "@babel/helper-split-export-declaration": "^7.22.6",
+ "semver": "^6.3.1"
},
"engines": {
"node": ">=6.9.0"
@@ -254,9 +339,9 @@
}
},
"node_modules/@babel/helper-create-class-features-plugin/node_modules/semver": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
- "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
"dev": true,
"peer": true,
"bin": {
@@ -264,15 +349,15 @@
}
},
"node_modules/@babel/helper-create-regexp-features-plugin": {
- "version": "7.21.8",
- "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.21.8.tgz",
- "integrity": "sha512-zGuSdedkFtsFHGbexAvNuipg1hbtitDLo2XE8/uf6Y9sOQV1xsYX/2pNbtedp/X0eU1pIt+kGvaqHCowkRbS5g==",
+ "version": "7.22.15",
+ "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.15.tgz",
+ "integrity": "sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==",
"dev": true,
"peer": true,
"dependencies": {
- "@babel/helper-annotate-as-pure": "^7.18.6",
+ "@babel/helper-annotate-as-pure": "^7.22.5",
"regexpu-core": "^5.3.1",
- "semver": "^6.3.0"
+ "semver": "^6.3.1"
},
"engines": {
"node": ">=6.9.0"
@@ -282,9 +367,9 @@
}
},
"node_modules/@babel/helper-create-regexp-features-plugin/node_modules/semver": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
- "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
"dev": true,
"peer": true,
"bin": {
@@ -292,138 +377,126 @@
}
},
"node_modules/@babel/helper-define-polyfill-provider": {
- "version": "0.3.3",
- "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.3.tgz",
- "integrity": "sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==",
+ "version": "0.5.0",
+ "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.5.0.tgz",
+ "integrity": "sha512-NovQquuQLAQ5HuyjCz7WQP9MjRj7dx++yspwiyUiGl9ZyadHRSql1HZh5ogRd8W8w6YM6EQ/NTB8rgjLt5W65Q==",
"dev": true,
"peer": true,
"dependencies": {
- "@babel/helper-compilation-targets": "^7.17.7",
- "@babel/helper-plugin-utils": "^7.16.7",
+ "@babel/helper-compilation-targets": "^7.22.6",
+ "@babel/helper-plugin-utils": "^7.22.5",
"debug": "^4.1.1",
"lodash.debounce": "^4.0.8",
- "resolve": "^1.14.2",
- "semver": "^6.1.2"
+ "resolve": "^1.14.2"
},
"peerDependencies": {
- "@babel/core": "^7.4.0-0"
- }
- },
- "node_modules/@babel/helper-define-polyfill-provider/node_modules/semver": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
- "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
- "dev": true,
- "peer": true,
- "bin": {
- "semver": "bin/semver.js"
+ "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0"
}
},
"node_modules/@babel/helper-environment-visitor": {
- "version": "7.21.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.21.5.tgz",
- "integrity": "sha512-IYl4gZ3ETsWocUWgsFZLM5i1BYx9SoemminVEXadgLBa9TdeorzgLKm8wWLA6J1N/kT3Kch8XIk1laNzYoHKvQ==",
+ "version": "7.22.20",
+ "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz",
+ "integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-function-name": {
- "version": "7.21.0",
- "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.21.0.tgz",
- "integrity": "sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg==",
+ "version": "7.23.0",
+ "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz",
+ "integrity": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==",
"dependencies": {
- "@babel/template": "^7.20.7",
- "@babel/types": "^7.21.0"
+ "@babel/template": "^7.22.15",
+ "@babel/types": "^7.23.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-hoist-variables": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz",
- "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==",
+ "version": "7.22.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz",
+ "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==",
"dependencies": {
- "@babel/types": "^7.18.6"
+ "@babel/types": "^7.22.5"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-member-expression-to-functions": {
- "version": "7.21.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.21.5.tgz",
- "integrity": "sha512-nIcGfgwpH2u4n9GG1HpStW5Ogx7x7ekiFHbjjFRKXbn5zUvqO9ZgotCO4x1aNbKn/x/xOUaXEhyNHCwtFCpxWg==",
+ "version": "7.23.0",
+ "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.23.0.tgz",
+ "integrity": "sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==",
"dev": true,
"peer": true,
"dependencies": {
- "@babel/types": "^7.21.5"
+ "@babel/types": "^7.23.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-module-imports": {
- "version": "7.21.4",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.21.4.tgz",
- "integrity": "sha512-orajc5T2PsRYUN3ZryCEFeMDYwyw09c/pZeaQEZPH0MpKzSvn3e0uXsDBu3k03VI+9DBiRo+l22BfKTpKwa/Wg==",
+ "version": "7.22.15",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz",
+ "integrity": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==",
"dependencies": {
- "@babel/types": "^7.21.4"
+ "@babel/types": "^7.22.15"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-module-transforms": {
- "version": "7.21.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.21.5.tgz",
- "integrity": "sha512-bI2Z9zBGY2q5yMHoBvJ2a9iX3ZOAzJPm7Q8Yz6YeoUjU/Cvhmi2G4QyTNyPBqqXSgTjUxRg3L0xV45HvkNWWBw==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.23.3.tgz",
+ "integrity": "sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==",
"dependencies": {
- "@babel/helper-environment-visitor": "^7.21.5",
- "@babel/helper-module-imports": "^7.21.4",
- "@babel/helper-simple-access": "^7.21.5",
- "@babel/helper-split-export-declaration": "^7.18.6",
- "@babel/helper-validator-identifier": "^7.19.1",
- "@babel/template": "^7.20.7",
- "@babel/traverse": "^7.21.5",
- "@babel/types": "^7.21.5"
+ "@babel/helper-environment-visitor": "^7.22.20",
+ "@babel/helper-module-imports": "^7.22.15",
+ "@babel/helper-simple-access": "^7.22.5",
+ "@babel/helper-split-export-declaration": "^7.22.6",
+ "@babel/helper-validator-identifier": "^7.22.20"
},
"engines": {
"node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0"
}
},
"node_modules/@babel/helper-optimise-call-expression": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz",
- "integrity": "sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==",
+ "version": "7.22.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz",
+ "integrity": "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==",
"dev": true,
"peer": true,
"dependencies": {
- "@babel/types": "^7.18.6"
+ "@babel/types": "^7.22.5"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-plugin-utils": {
- "version": "7.21.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.21.5.tgz",
- "integrity": "sha512-0WDaIlXKOX/3KfBK/dwP1oQGiPh6rjMkT7HIRv7i5RR2VUMwrx5ZL0dwBkKx7+SW1zwNdgjHd34IMk5ZjTeHVg==",
+ "version": "7.22.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz",
+ "integrity": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-remap-async-to-generator": {
- "version": "7.18.9",
- "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz",
- "integrity": "sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==",
+ "version": "7.22.20",
+ "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.20.tgz",
+ "integrity": "sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==",
"dev": true,
"peer": true,
"dependencies": {
- "@babel/helper-annotate-as-pure": "^7.18.6",
- "@babel/helper-environment-visitor": "^7.18.9",
- "@babel/helper-wrap-function": "^7.18.9",
- "@babel/types": "^7.18.9"
+ "@babel/helper-annotate-as-pure": "^7.22.5",
+ "@babel/helper-environment-visitor": "^7.22.20",
+ "@babel/helper-wrap-function": "^7.22.20"
},
"engines": {
"node": ">=6.9.0"
@@ -433,286 +506,259 @@
}
},
"node_modules/@babel/helper-replace-supers": {
- "version": "7.21.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.21.5.tgz",
- "integrity": "sha512-/y7vBgsr9Idu4M6MprbOVUfH3vs7tsIfnVWv/Ml2xgwvyH6LTngdfbf5AdsKwkJy4zgy1X/kuNrEKvhhK28Yrg==",
+ "version": "7.22.20",
+ "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.22.20.tgz",
+ "integrity": "sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==",
"dev": true,
"peer": true,
"dependencies": {
- "@babel/helper-environment-visitor": "^7.21.5",
- "@babel/helper-member-expression-to-functions": "^7.21.5",
- "@babel/helper-optimise-call-expression": "^7.18.6",
- "@babel/template": "^7.20.7",
- "@babel/traverse": "^7.21.5",
- "@babel/types": "^7.21.5"
+ "@babel/helper-environment-visitor": "^7.22.20",
+ "@babel/helper-member-expression-to-functions": "^7.22.15",
+ "@babel/helper-optimise-call-expression": "^7.22.5"
},
"engines": {
"node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0"
}
},
"node_modules/@babel/helper-simple-access": {
- "version": "7.21.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.21.5.tgz",
- "integrity": "sha512-ENPDAMC1wAjR0uaCUwliBdiSl1KBJAVnMTzXqi64c2MG8MPR6ii4qf7bSXDqSFbr4W6W028/rf5ivoHop5/mkg==",
+ "version": "7.22.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz",
+ "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==",
"dependencies": {
- "@babel/types": "^7.21.5"
+ "@babel/types": "^7.22.5"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-skip-transparent-expression-wrappers": {
- "version": "7.20.0",
- "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.20.0.tgz",
- "integrity": "sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==",
+ "version": "7.22.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz",
+ "integrity": "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==",
"dev": true,
"peer": true,
"dependencies": {
- "@babel/types": "^7.20.0"
+ "@babel/types": "^7.22.5"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-split-export-declaration": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz",
- "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==",
+ "version": "7.22.6",
+ "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz",
+ "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==",
"dependencies": {
- "@babel/types": "^7.18.6"
+ "@babel/types": "^7.22.5"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-string-parser": {
- "version": "7.21.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.21.5.tgz",
- "integrity": "sha512-5pTUx3hAJaZIdW99sJ6ZUUgWq/Y+Hja7TowEnLNMm1VivRgZQL3vpBY3qUACVsvw+yQU6+YgfBVmcbLaZtrA1w==",
+ "version": "7.23.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz",
+ "integrity": "sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-validator-identifier": {
- "version": "7.19.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz",
- "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==",
+ "version": "7.22.20",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz",
+ "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-validator-option": {
- "version": "7.21.0",
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.21.0.tgz",
- "integrity": "sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ==",
+ "version": "7.23.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz",
+ "integrity": "sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-wrap-function": {
- "version": "7.20.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.20.5.tgz",
- "integrity": "sha512-bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q==",
+ "version": "7.22.20",
+ "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.22.20.tgz",
+ "integrity": "sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==",
"dev": true,
"peer": true,
"dependencies": {
- "@babel/helper-function-name": "^7.19.0",
- "@babel/template": "^7.18.10",
- "@babel/traverse": "^7.20.5",
- "@babel/types": "^7.20.5"
+ "@babel/helper-function-name": "^7.22.5",
+ "@babel/template": "^7.22.15",
+ "@babel/types": "^7.22.19"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helpers": {
- "version": "7.21.5",
- "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.21.5.tgz",
- "integrity": "sha512-BSY+JSlHxOmGsPTydUkPf1MdMQ3M81x5xGCOVgWM3G8XH77sJ292Y2oqcp0CbbgxhqBuI46iUz1tT7hqP7EfgA==",
+ "version": "7.23.9",
+ "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.23.9.tgz",
+ "integrity": "sha512-87ICKgU5t5SzOT7sBMfCOZQ2rHjRU+Pcb9BoILMYz600W6DkVRLFBPwQ18gwUVvggqXivaUakpnxWQGbpywbBQ==",
"dependencies": {
- "@babel/template": "^7.20.7",
- "@babel/traverse": "^7.21.5",
- "@babel/types": "^7.21.5"
+ "@babel/template": "^7.23.9",
+ "@babel/traverse": "^7.23.9",
+ "@babel/types": "^7.23.9"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/highlight": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz",
- "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==",
+ "version": "7.23.4",
+ "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.23.4.tgz",
+ "integrity": "sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==",
"dependencies": {
- "@babel/helper-validator-identifier": "^7.18.6",
- "chalk": "^2.0.0",
+ "@babel/helper-validator-identifier": "^7.22.20",
+ "chalk": "^2.4.2",
"js-tokens": "^4.0.0"
},
"engines": {
"node": ">=6.9.0"
}
},
- "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==",
- "bin": {
- "parser": "bin/babel-parser.js"
+ "node_modules/@babel/highlight/node_modules/ansi-styles": {
+ "version": "3.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
+ "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
+ "dependencies": {
+ "color-convert": "^1.9.0"
},
"engines": {
- "node": ">=6.0.0"
+ "node": ">=4"
}
},
- "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6.tgz",
- "integrity": "sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==",
- "dev": true,
- "peer": true,
+ "node_modules/@babel/highlight/node_modules/chalk": {
+ "version": "2.4.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
+ "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.18.6"
+ "ansi-styles": "^3.2.1",
+ "escape-string-regexp": "^1.0.5",
+ "supports-color": "^5.3.0"
},
"engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0"
+ "node": ">=4"
}
},
- "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": {
- "version": "7.20.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.20.7.tgz",
- "integrity": "sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ==",
- "dev": true,
- "peer": true,
+ "node_modules/@babel/highlight/node_modules/color-convert": {
+ "version": "1.9.3",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
+ "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.20.2",
- "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0",
- "@babel/plugin-proposal-optional-chaining": "^7.20.7"
- },
+ "color-name": "1.1.3"
+ }
+ },
+ "node_modules/@babel/highlight/node_modules/color-name": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
+ "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw=="
+ },
+ "node_modules/@babel/highlight/node_modules/escape-string-regexp": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
+ "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==",
"engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.13.0"
+ "node": ">=0.8.0"
}
},
- "node_modules/@babel/plugin-proposal-async-generator-functions": {
- "version": "7.20.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.7.tgz",
- "integrity": "sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==",
- "dev": true,
- "peer": true,
- "dependencies": {
- "@babel/helper-environment-visitor": "^7.18.9",
- "@babel/helper-plugin-utils": "^7.20.2",
- "@babel/helper-remap-async-to-generator": "^7.18.9",
- "@babel/plugin-syntax-async-generators": "^7.8.4"
- },
+ "node_modules/@babel/highlight/node_modules/has-flag": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
+ "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==",
"engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "node": ">=4"
}
},
- "node_modules/@babel/plugin-proposal-class-properties": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz",
- "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==",
- "dev": true,
- "peer": true,
+ "node_modules/@babel/highlight/node_modules/supports-color": {
+ "version": "5.5.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
+ "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
"dependencies": {
- "@babel/helper-create-class-features-plugin": "^7.18.6",
- "@babel/helper-plugin-utils": "^7.18.6"
+ "has-flag": "^3.0.0"
},
"engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "node": ">=4"
}
},
- "node_modules/@babel/plugin-proposal-class-static-block": {
- "version": "7.21.0",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.21.0.tgz",
- "integrity": "sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==",
- "dev": true,
- "peer": true,
- "dependencies": {
- "@babel/helper-create-class-features-plugin": "^7.21.0",
- "@babel/helper-plugin-utils": "^7.20.2",
- "@babel/plugin-syntax-class-static-block": "^7.14.5"
+ "node_modules/@babel/parser": {
+ "version": "7.23.9",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.9.tgz",
+ "integrity": "sha512-9tcKgqKbs3xGJ+NtKF2ndOBBLVwPjl1SHxPQkd36r3Dlirw3xWUeGaTbqr7uGZcTaxkVNwc+03SVP7aCdWrTlA==",
+ "bin": {
+ "parser": "bin/babel-parser.js"
},
"engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.12.0"
+ "node": ">=6.0.0"
}
},
- "node_modules/@babel/plugin-proposal-decorators": {
- "version": "7.21.0",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.21.0.tgz",
- "integrity": "sha512-MfgX49uRrFUTL/HvWtmx3zmpyzMMr4MTj3d527MLlr/4RTT9G/ytFFP7qet2uM2Ve03b+BkpWUpK+lRXnQ+v9w==",
+ "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": {
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.23.3.tgz",
+ "integrity": "sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==",
"dev": true,
"peer": true,
"dependencies": {
- "@babel/helper-create-class-features-plugin": "^7.21.0",
- "@babel/helper-plugin-utils": "^7.20.2",
- "@babel/helper-replace-supers": "^7.20.7",
- "@babel/helper-split-export-declaration": "^7.18.6",
- "@babel/plugin-syntax-decorators": "^7.21.0"
+ "@babel/helper-plugin-utils": "^7.22.5"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "@babel/core": "^7.0.0"
}
},
- "node_modules/@babel/plugin-proposal-dynamic-import": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.18.6.tgz",
- "integrity": "sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==",
+ "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": {
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.23.3.tgz",
+ "integrity": "sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ==",
"dev": true,
"peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.18.6",
- "@babel/plugin-syntax-dynamic-import": "^7.8.3"
+ "@babel/helper-plugin-utils": "^7.22.5",
+ "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5",
+ "@babel/plugin-transform-optional-chaining": "^7.23.3"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "@babel/core": "^7.13.0"
}
},
- "node_modules/@babel/plugin-proposal-export-namespace-from": {
- "version": "7.18.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz",
- "integrity": "sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==",
+ "node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": {
+ "version": "7.23.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.23.7.tgz",
+ "integrity": "sha512-LlRT7HgaifEpQA1ZgLVOIJZZFVPWN5iReq/7/JixwBtwcoeVGDBD53ZV28rrsLYOZs1Y/EHhA8N/Z6aazHR8cw==",
"dev": true,
"peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.18.9",
- "@babel/plugin-syntax-export-namespace-from": "^7.8.3"
+ "@babel/helper-environment-visitor": "^7.22.20",
+ "@babel/helper-plugin-utils": "^7.22.5"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "@babel/core": "^7.0.0"
}
},
- "node_modules/@babel/plugin-proposal-json-strings": {
+ "node_modules/@babel/plugin-proposal-class-properties": {
"version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.18.6.tgz",
- "integrity": "sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz",
+ "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==",
+ "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead.",
"dev": true,
"peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.18.6",
- "@babel/plugin-syntax-json-strings": "^7.8.3"
+ "@babel/helper-create-class-features-plugin": "^7.18.6",
+ "@babel/helper-plugin-utils": "^7.18.6"
},
"engines": {
"node": ">=6.9.0"
@@ -721,15 +767,16 @@
"@babel/core": "^7.0.0-0"
}
},
- "node_modules/@babel/plugin-proposal-logical-assignment-operators": {
- "version": "7.20.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.20.7.tgz",
- "integrity": "sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==",
+ "node_modules/@babel/plugin-proposal-decorators": {
+ "version": "7.23.9",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.23.9.tgz",
+ "integrity": "sha512-hJhBCb0+NnTWybvWq2WpbCYDOcflSbx0t+BYP65e5R9GVnukiDTi+on5bFkk4p7QGuv190H6KfNiV9Knf/3cZA==",
"dev": true,
"peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.20.2",
- "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4"
+ "@babel/helper-create-class-features-plugin": "^7.23.9",
+ "@babel/helper-plugin-utils": "^7.22.5",
+ "@babel/plugin-syntax-decorators": "^7.23.3"
},
"engines": {
"node": ">=6.9.0"
@@ -742,6 +789,7 @@
"version": "7.18.6",
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz",
"integrity": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==",
+ "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead.",
"dev": true,
"peer": true,
"dependencies": {
@@ -759,6 +807,7 @@
"version": "7.18.6",
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz",
"integrity": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==",
+ "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-numeric-separator instead.",
"dev": true,
"peer": true,
"dependencies": {
@@ -772,47 +821,11 @@
"@babel/core": "^7.0.0-0"
}
},
- "node_modules/@babel/plugin-proposal-object-rest-spread": {
- "version": "7.20.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz",
- "integrity": "sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==",
- "dev": true,
- "peer": true,
- "dependencies": {
- "@babel/compat-data": "^7.20.5",
- "@babel/helper-compilation-targets": "^7.20.7",
- "@babel/helper-plugin-utils": "^7.20.2",
- "@babel/plugin-syntax-object-rest-spread": "^7.8.3",
- "@babel/plugin-transform-parameters": "^7.20.7"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-proposal-optional-catch-binding": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz",
- "integrity": "sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==",
- "dev": true,
- "peer": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.18.6",
- "@babel/plugin-syntax-optional-catch-binding": "^7.8.3"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
"node_modules/@babel/plugin-proposal-optional-chaining": {
"version": "7.21.0",
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz",
"integrity": "sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==",
+ "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead.",
"dev": true,
"peer": true,
"dependencies": {
@@ -831,6 +844,7 @@
"version": "7.18.6",
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz",
"integrity": "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==",
+ "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-methods instead.",
"dev": true,
"peer": true,
"dependencies": {
@@ -845,17 +859,11 @@
}
},
"node_modules/@babel/plugin-proposal-private-property-in-object": {
- "version": "7.21.0",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0.tgz",
- "integrity": "sha512-ha4zfehbJjc5MmXBlHec1igel5TJXXLDDRbuJ4+XT2TJcyD9/V1919BA8gMvsdHcNMBy4WBUBiRb3nw/EQUtBw==",
+ "version": "7.21.0-placeholder-for-preset-env.2",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz",
+ "integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==",
"dev": true,
"peer": true,
- "dependencies": {
- "@babel/helper-annotate-as-pure": "^7.18.6",
- "@babel/helper-create-class-features-plugin": "^7.21.0",
- "@babel/helper-plugin-utils": "^7.20.2",
- "@babel/plugin-syntax-private-property-in-object": "^7.14.5"
- },
"engines": {
"node": ">=6.9.0"
},
@@ -863,23 +871,6 @@
"@babel/core": "^7.0.0-0"
}
},
- "node_modules/@babel/plugin-proposal-unicode-property-regex": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz",
- "integrity": "sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==",
- "dev": true,
- "peer": true,
- "dependencies": {
- "@babel/helper-create-regexp-features-plugin": "^7.18.6",
- "@babel/helper-plugin-utils": "^7.18.6"
- },
- "engines": {
- "node": ">=4"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
"node_modules/@babel/plugin-syntax-async-generators": {
"version": "7.8.4",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz",
@@ -930,13 +921,13 @@
}
},
"node_modules/@babel/plugin-syntax-decorators": {
- "version": "7.21.0",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.21.0.tgz",
- "integrity": "sha512-tIoPpGBR8UuM4++ccWN3gifhVvQu7ZizuR1fklhRJrd5ewgbkUS+0KVFeWWxELtn18NTLoW32XV7zyOgIAiz+w==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.23.3.tgz",
+ "integrity": "sha512-cf7Niq4/+/juY67E0PbgH0TDhLQ5J7zS8C/Q5FFx+DWyrRa9sUQdTXkjqKu8zGvuqr7vw1muKiukseihU+PJDA==",
"dev": true,
"peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.20.2"
+ "@babel/helper-plugin-utils": "^7.22.5"
},
"engines": {
"node": ">=6.9.0"
@@ -972,13 +963,13 @@
}
},
"node_modules/@babel/plugin-syntax-flow": {
- "version": "7.21.4",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.21.4.tgz",
- "integrity": "sha512-l9xd3N+XG4fZRxEP3vXdK6RW7vN1Uf5dxzRC/09wV86wqZ/YYQooBIGNsiRdfNR3/q2/5pPzV4B54J/9ctX5jw==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.23.3.tgz",
+ "integrity": "sha512-YZiAIpkJAwQXBJLIQbRFayR5c+gJ35Vcz3bg954k7cd73zqjvhacJuL9RbrzPz8qPmZdgqP6EUKwy0PCNhaaPA==",
"dev": true,
"peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.20.2"
+ "@babel/helper-plugin-utils": "^7.22.5"
},
"engines": {
"node": ">=6.9.0"
@@ -988,13 +979,29 @@
}
},
"node_modules/@babel/plugin-syntax-import-assertions": {
- "version": "7.20.0",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.20.0.tgz",
- "integrity": "sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.23.3.tgz",
+ "integrity": "sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw==",
+ "dev": true,
+ "peer": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.22.5"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-syntax-import-attributes": {
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.23.3.tgz",
+ "integrity": "sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==",
"dev": true,
"peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.19.0"
+ "@babel/helper-plugin-utils": "^7.22.5"
},
"engines": {
"node": ">=6.9.0"
@@ -1026,13 +1033,13 @@
}
},
"node_modules/@babel/plugin-syntax-jsx": {
- "version": "7.21.4",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.21.4.tgz",
- "integrity": "sha512-5hewiLct5OKyh6PLKEYaFclcqtIgCb6bmELouxjF6up5q3Sov7rOayW4RwhbaBL0dit8rA80GNfY+UuDp2mBbQ==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.23.3.tgz",
+ "integrity": "sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==",
"dev": true,
"peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.20.2"
+ "@babel/helper-plugin-utils": "^7.22.5"
},
"engines": {
"node": ">=6.9.0"
@@ -1138,11 +1145,11 @@
}
},
"node_modules/@babel/plugin-syntax-typescript": {
- "version": "7.21.4",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.21.4.tgz",
- "integrity": "sha512-xz0D39NvhQn4t4RNsHmDnnsaQizIlUkdtYvLs8La1BlfjQ6JEwxkJGeqJMW2tAXx+q6H+WFuUTXNdYVpEya0YA==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.23.3.tgz",
+ "integrity": "sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.20.2"
+ "@babel/helper-plugin-utils": "^7.22.5"
},
"engines": {
"node": ">=6.9.0"
@@ -1151,14 +1158,50 @@
"@babel/core": "^7.0.0-0"
}
},
+ "node_modules/@babel/plugin-syntax-unicode-sets-regex": {
+ "version": "7.18.6",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz",
+ "integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==",
+ "dev": true,
+ "peer": true,
+ "dependencies": {
+ "@babel/helper-create-regexp-features-plugin": "^7.18.6",
+ "@babel/helper-plugin-utils": "^7.18.6"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0"
+ }
+ },
"node_modules/@babel/plugin-transform-arrow-functions": {
- "version": "7.21.5",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.21.5.tgz",
- "integrity": "sha512-wb1mhwGOCaXHDTcsRYMKF9e5bbMgqwxtqa2Y1ifH96dXJPwbuLX9qHy3clhrxVqgMz7nyNXs8VkxdH8UBcjKqA==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.23.3.tgz",
+ "integrity": "sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==",
"dev": true,
"peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.21.5"
+ "@babel/helper-plugin-utils": "^7.22.5"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-async-generator-functions": {
+ "version": "7.23.9",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.23.9.tgz",
+ "integrity": "sha512-8Q3veQEDGe14dTYuwagbRtwxQDnytyg1JFu4/HwEMETeofocrB0U0ejBJIXoeG/t2oXZ8kzCyI0ZZfbT80VFNQ==",
+ "dev": true,
+ "peer": true,
+ "dependencies": {
+ "@babel/helper-environment-visitor": "^7.22.20",
+ "@babel/helper-plugin-utils": "^7.22.5",
+ "@babel/helper-remap-async-to-generator": "^7.22.20",
+ "@babel/plugin-syntax-async-generators": "^7.8.4"
},
"engines": {
"node": ">=6.9.0"
@@ -1168,15 +1211,15 @@
}
},
"node_modules/@babel/plugin-transform-async-to-generator": {
- "version": "7.20.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.20.7.tgz",
- "integrity": "sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.23.3.tgz",
+ "integrity": "sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw==",
"dev": true,
"peer": true,
"dependencies": {
- "@babel/helper-module-imports": "^7.18.6",
- "@babel/helper-plugin-utils": "^7.20.2",
- "@babel/helper-remap-async-to-generator": "^7.18.9"
+ "@babel/helper-module-imports": "^7.22.15",
+ "@babel/helper-plugin-utils": "^7.22.5",
+ "@babel/helper-remap-async-to-generator": "^7.22.20"
},
"engines": {
"node": ">=6.9.0"
@@ -1186,13 +1229,13 @@
}
},
"node_modules/@babel/plugin-transform-block-scoped-functions": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.18.6.tgz",
- "integrity": "sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.23.3.tgz",
+ "integrity": "sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==",
"dev": true,
"peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.18.6"
+ "@babel/helper-plugin-utils": "^7.22.5"
},
"engines": {
"node": ">=6.9.0"
@@ -1202,13 +1245,30 @@
}
},
"node_modules/@babel/plugin-transform-block-scoping": {
- "version": "7.21.0",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.21.0.tgz",
- "integrity": "sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ==",
+ "version": "7.23.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.23.4.tgz",
+ "integrity": "sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw==",
+ "dev": true,
+ "peer": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.22.5"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-class-properties": {
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.23.3.tgz",
+ "integrity": "sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg==",
"dev": true,
"peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.20.2"
+ "@babel/helper-create-class-features-plugin": "^7.22.15",
+ "@babel/helper-plugin-utils": "^7.22.5"
},
"engines": {
"node": ">=6.9.0"
@@ -1217,21 +1277,38 @@
"@babel/core": "^7.0.0-0"
}
},
+ "node_modules/@babel/plugin-transform-class-static-block": {
+ "version": "7.23.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.23.4.tgz",
+ "integrity": "sha512-nsWu/1M+ggti1SOALj3hfx5FXzAY06fwPJsUZD4/A5e1bWi46VUIWtD+kOX6/IdhXGsXBWllLFDSnqSCdUNydQ==",
+ "dev": true,
+ "peer": true,
+ "dependencies": {
+ "@babel/helper-create-class-features-plugin": "^7.22.15",
+ "@babel/helper-plugin-utils": "^7.22.5",
+ "@babel/plugin-syntax-class-static-block": "^7.14.5"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.12.0"
+ }
+ },
"node_modules/@babel/plugin-transform-classes": {
- "version": "7.21.0",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.21.0.tgz",
- "integrity": "sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ==",
+ "version": "7.23.8",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.23.8.tgz",
+ "integrity": "sha512-yAYslGsY1bX6Knmg46RjiCiNSwJKv2IUC8qOdYKqMMr0491SXFhcHqOdRDeCRohOOIzwN/90C6mQ9qAKgrP7dg==",
"dev": true,
"peer": true,
"dependencies": {
- "@babel/helper-annotate-as-pure": "^7.18.6",
- "@babel/helper-compilation-targets": "^7.20.7",
- "@babel/helper-environment-visitor": "^7.18.9",
- "@babel/helper-function-name": "^7.21.0",
- "@babel/helper-optimise-call-expression": "^7.18.6",
- "@babel/helper-plugin-utils": "^7.20.2",
- "@babel/helper-replace-supers": "^7.20.7",
- "@babel/helper-split-export-declaration": "^7.18.6",
+ "@babel/helper-annotate-as-pure": "^7.22.5",
+ "@babel/helper-compilation-targets": "^7.23.6",
+ "@babel/helper-environment-visitor": "^7.22.20",
+ "@babel/helper-function-name": "^7.23.0",
+ "@babel/helper-plugin-utils": "^7.22.5",
+ "@babel/helper-replace-supers": "^7.22.20",
+ "@babel/helper-split-export-declaration": "^7.22.6",
"globals": "^11.1.0"
},
"engines": {
@@ -1241,15 +1318,25 @@
"@babel/core": "^7.0.0-0"
}
},
+ "node_modules/@babel/plugin-transform-classes/node_modules/globals": {
+ "version": "11.12.0",
+ "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz",
+ "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==",
+ "dev": true,
+ "peer": true,
+ "engines": {
+ "node": ">=4"
+ }
+ },
"node_modules/@babel/plugin-transform-computed-properties": {
- "version": "7.21.5",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.21.5.tgz",
- "integrity": "sha512-TR653Ki3pAwxBxUe8srfF3e4Pe3FTA46uaNHYyQwIoM4oWKSoOZiDNyHJ0oIoDIUPSRQbQG7jzgVBX3FPVne1Q==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.23.3.tgz",
+ "integrity": "sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==",
"dev": true,
"peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.21.5",
- "@babel/template": "^7.20.7"
+ "@babel/helper-plugin-utils": "^7.22.5",
+ "@babel/template": "^7.22.15"
},
"engines": {
"node": ">=6.9.0"
@@ -1259,13 +1346,13 @@
}
},
"node_modules/@babel/plugin-transform-destructuring": {
- "version": "7.21.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.21.3.tgz",
- "integrity": "sha512-bp6hwMFzuiE4HqYEyoGJ/V2LeIWn+hLVKc4pnj++E5XQptwhtcGmSayM029d/j2X1bPKGTlsyPwAubuU22KhMA==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.23.3.tgz",
+ "integrity": "sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==",
"dev": true,
"peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.20.2"
+ "@babel/helper-plugin-utils": "^7.22.5"
},
"engines": {
"node": ">=6.9.0"
@@ -1275,14 +1362,14 @@
}
},
"node_modules/@babel/plugin-transform-dotall-regex": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.18.6.tgz",
- "integrity": "sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.23.3.tgz",
+ "integrity": "sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ==",
"dev": true,
"peer": true,
"dependencies": {
- "@babel/helper-create-regexp-features-plugin": "^7.18.6",
- "@babel/helper-plugin-utils": "^7.18.6"
+ "@babel/helper-create-regexp-features-plugin": "^7.22.15",
+ "@babel/helper-plugin-utils": "^7.22.5"
},
"engines": {
"node": ">=6.9.0"
@@ -1292,13 +1379,30 @@
}
},
"node_modules/@babel/plugin-transform-duplicate-keys": {
- "version": "7.18.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.9.tgz",
- "integrity": "sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.23.3.tgz",
+ "integrity": "sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA==",
+ "dev": true,
+ "peer": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.22.5"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-dynamic-import": {
+ "version": "7.23.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.23.4.tgz",
+ "integrity": "sha512-V6jIbLhdJK86MaLh4Jpghi8ho5fGzt3imHOBu/x0jlBaPYqDoWz4RDXjmMOfnh+JWNaQleEAByZLV0QzBT4YQQ==",
"dev": true,
"peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.18.9"
+ "@babel/helper-plugin-utils": "^7.22.5",
+ "@babel/plugin-syntax-dynamic-import": "^7.8.3"
},
"engines": {
"node": ">=6.9.0"
@@ -1308,14 +1412,31 @@
}
},
"node_modules/@babel/plugin-transform-exponentiation-operator": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.18.6.tgz",
- "integrity": "sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.23.3.tgz",
+ "integrity": "sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ==",
"dev": true,
"peer": true,
"dependencies": {
- "@babel/helper-builder-binary-assignment-operator-visitor": "^7.18.6",
- "@babel/helper-plugin-utils": "^7.18.6"
+ "@babel/helper-builder-binary-assignment-operator-visitor": "^7.22.15",
+ "@babel/helper-plugin-utils": "^7.22.5"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-export-namespace-from": {
+ "version": "7.23.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.23.4.tgz",
+ "integrity": "sha512-GzuSBcKkx62dGzZI1WVgTWvkkz84FZO5TC5T8dl/Tht/rAla6Dg/Mz9Yhypg+ezVACf/rgDuQt3kbWEv7LdUDQ==",
+ "dev": true,
+ "peer": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.22.5",
+ "@babel/plugin-syntax-export-namespace-from": "^7.8.3"
},
"engines": {
"node": ">=6.9.0"
@@ -1325,14 +1446,14 @@
}
},
"node_modules/@babel/plugin-transform-flow-strip-types": {
- "version": "7.21.0",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.21.0.tgz",
- "integrity": "sha512-FlFA2Mj87a6sDkW4gfGrQQqwY/dLlBAyJa2dJEZ+FHXUVHBflO2wyKvg+OOEzXfrKYIa4HWl0mgmbCzt0cMb7w==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.23.3.tgz",
+ "integrity": "sha512-26/pQTf9nQSNVJCrLB1IkHUKyPxR+lMrH2QDPG89+Znu9rAMbtrybdbWeE9bb7gzjmE5iXHEY+e0HUwM6Co93Q==",
"dev": true,
"peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.20.2",
- "@babel/plugin-syntax-flow": "^7.18.6"
+ "@babel/helper-plugin-utils": "^7.22.5",
+ "@babel/plugin-syntax-flow": "^7.23.3"
},
"engines": {
"node": ">=6.9.0"
@@ -1342,13 +1463,14 @@
}
},
"node_modules/@babel/plugin-transform-for-of": {
- "version": "7.21.5",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.21.5.tgz",
- "integrity": "sha512-nYWpjKW/7j/I/mZkGVgHJXh4bA1sfdFnJoOXwJuj4m3Q2EraO/8ZyrkCau9P5tbHQk01RMSt6KYLCsW7730SXQ==",
+ "version": "7.23.6",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.23.6.tgz",
+ "integrity": "sha512-aYH4ytZ0qSuBbpfhuofbg/e96oQ7U2w1Aw/UQmKT+1l39uEhUPoFS3fHevDc1G0OvewyDudfMKY1OulczHzWIw==",
"dev": true,
"peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.21.5"
+ "@babel/helper-plugin-utils": "^7.22.5",
+ "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5"
},
"engines": {
"node": ">=6.9.0"
@@ -1358,15 +1480,32 @@
}
},
"node_modules/@babel/plugin-transform-function-name": {
- "version": "7.18.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.9.tgz",
- "integrity": "sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.23.3.tgz",
+ "integrity": "sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw==",
"dev": true,
"peer": true,
"dependencies": {
- "@babel/helper-compilation-targets": "^7.18.9",
- "@babel/helper-function-name": "^7.18.9",
- "@babel/helper-plugin-utils": "^7.18.9"
+ "@babel/helper-compilation-targets": "^7.22.15",
+ "@babel/helper-function-name": "^7.23.0",
+ "@babel/helper-plugin-utils": "^7.22.5"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-json-strings": {
+ "version": "7.23.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.23.4.tgz",
+ "integrity": "sha512-81nTOqM1dMwZ/aRXQ59zVubN9wHGqk6UtqRK+/q+ciXmRy8fSolhGVvG09HHRGo4l6fr/c4ZhXUQH0uFW7PZbg==",
+ "dev": true,
+ "peer": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.22.5",
+ "@babel/plugin-syntax-json-strings": "^7.8.3"
},
"engines": {
"node": ">=6.9.0"
@@ -1376,13 +1515,30 @@
}
},
"node_modules/@babel/plugin-transform-literals": {
- "version": "7.18.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz",
- "integrity": "sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.23.3.tgz",
+ "integrity": "sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==",
"dev": true,
"peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.18.9"
+ "@babel/helper-plugin-utils": "^7.22.5"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-logical-assignment-operators": {
+ "version": "7.23.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.23.4.tgz",
+ "integrity": "sha512-Mc/ALf1rmZTP4JKKEhUwiORU+vcfarFVLfcFiolKUo6sewoxSEgl36ak5t+4WamRsNr6nzjZXQjM35WsU+9vbg==",
+ "dev": true,
+ "peer": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.22.5",
+ "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4"
},
"engines": {
"node": ">=6.9.0"
@@ -1392,13 +1548,13 @@
}
},
"node_modules/@babel/plugin-transform-member-expression-literals": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.18.6.tgz",
- "integrity": "sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.23.3.tgz",
+ "integrity": "sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==",
"dev": true,
"peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.18.6"
+ "@babel/helper-plugin-utils": "^7.22.5"
},
"engines": {
"node": ">=6.9.0"
@@ -1408,14 +1564,14 @@
}
},
"node_modules/@babel/plugin-transform-modules-amd": {
- "version": "7.20.11",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.20.11.tgz",
- "integrity": "sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.23.3.tgz",
+ "integrity": "sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw==",
"dev": true,
"peer": true,
"dependencies": {
- "@babel/helper-module-transforms": "^7.20.11",
- "@babel/helper-plugin-utils": "^7.20.2"
+ "@babel/helper-module-transforms": "^7.23.3",
+ "@babel/helper-plugin-utils": "^7.22.5"
},
"engines": {
"node": ">=6.9.0"
@@ -1425,15 +1581,15 @@
}
},
"node_modules/@babel/plugin-transform-modules-commonjs": {
- "version": "7.21.5",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.21.5.tgz",
- "integrity": "sha512-OVryBEgKUbtqMoB7eG2rs6UFexJi6Zj6FDXx+esBLPTCxCNxAY9o+8Di7IsUGJ+AVhp5ncK0fxWUBd0/1gPhrQ==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.23.3.tgz",
+ "integrity": "sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==",
"dev": true,
"peer": true,
"dependencies": {
- "@babel/helper-module-transforms": "^7.21.5",
- "@babel/helper-plugin-utils": "^7.21.5",
- "@babel/helper-simple-access": "^7.21.5"
+ "@babel/helper-module-transforms": "^7.23.3",
+ "@babel/helper-plugin-utils": "^7.22.5",
+ "@babel/helper-simple-access": "^7.22.5"
},
"engines": {
"node": ">=6.9.0"
@@ -1443,16 +1599,16 @@
}
},
"node_modules/@babel/plugin-transform-modules-systemjs": {
- "version": "7.20.11",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.20.11.tgz",
- "integrity": "sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==",
+ "version": "7.23.9",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.23.9.tgz",
+ "integrity": "sha512-KDlPRM6sLo4o1FkiSlXoAa8edLXFsKKIda779fbLrvmeuc3itnjCtaO6RrtoaANsIJANj+Vk1zqbZIMhkCAHVw==",
"dev": true,
"peer": true,
"dependencies": {
- "@babel/helper-hoist-variables": "^7.18.6",
- "@babel/helper-module-transforms": "^7.20.11",
- "@babel/helper-plugin-utils": "^7.20.2",
- "@babel/helper-validator-identifier": "^7.19.1"
+ "@babel/helper-hoist-variables": "^7.22.5",
+ "@babel/helper-module-transforms": "^7.23.3",
+ "@babel/helper-plugin-utils": "^7.22.5",
+ "@babel/helper-validator-identifier": "^7.22.20"
},
"engines": {
"node": ">=6.9.0"
@@ -1462,14 +1618,14 @@
}
},
"node_modules/@babel/plugin-transform-modules-umd": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.18.6.tgz",
- "integrity": "sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.23.3.tgz",
+ "integrity": "sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg==",
"dev": true,
"peer": true,
"dependencies": {
- "@babel/helper-module-transforms": "^7.18.6",
- "@babel/helper-plugin-utils": "^7.18.6"
+ "@babel/helper-module-transforms": "^7.23.3",
+ "@babel/helper-plugin-utils": "^7.22.5"
},
"engines": {
"node": ">=6.9.0"
@@ -1479,14 +1635,14 @@
}
},
"node_modules/@babel/plugin-transform-named-capturing-groups-regex": {
- "version": "7.20.5",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.20.5.tgz",
- "integrity": "sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==",
+ "version": "7.22.5",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz",
+ "integrity": "sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==",
"dev": true,
"peer": true,
"dependencies": {
- "@babel/helper-create-regexp-features-plugin": "^7.20.5",
- "@babel/helper-plugin-utils": "^7.20.2"
+ "@babel/helper-create-regexp-features-plugin": "^7.22.5",
+ "@babel/helper-plugin-utils": "^7.22.5"
},
"engines": {
"node": ">=6.9.0"
@@ -1496,13 +1652,67 @@
}
},
"node_modules/@babel/plugin-transform-new-target": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.18.6.tgz",
- "integrity": "sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.23.3.tgz",
+ "integrity": "sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ==",
"dev": true,
"peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.18.6"
+ "@babel/helper-plugin-utils": "^7.22.5"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-nullish-coalescing-operator": {
+ "version": "7.23.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.23.4.tgz",
+ "integrity": "sha512-jHE9EVVqHKAQx+VePv5LLGHjmHSJR76vawFPTdlxR/LVJPfOEGxREQwQfjuZEOPTwG92X3LINSh3M40Rv4zpVA==",
+ "dev": true,
+ "peer": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.22.5",
+ "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-numeric-separator": {
+ "version": "7.23.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.23.4.tgz",
+ "integrity": "sha512-mps6auzgwjRrwKEZA05cOwuDc9FAzoyFS4ZsG/8F43bTLf/TgkJg7QXOrPO1JO599iA3qgK9MXdMGOEC8O1h6Q==",
+ "dev": true,
+ "peer": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.22.5",
+ "@babel/plugin-syntax-numeric-separator": "^7.10.4"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-object-rest-spread": {
+ "version": "7.23.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.23.4.tgz",
+ "integrity": "sha512-9x9K1YyeQVw0iOXJlIzwm8ltobIIv7j2iLyP2jIhEbqPRQ7ScNgwQufU2I0Gq11VjyG4gI4yMXt2VFags+1N3g==",
+ "dev": true,
+ "peer": true,
+ "dependencies": {
+ "@babel/compat-data": "^7.23.3",
+ "@babel/helper-compilation-targets": "^7.22.15",
+ "@babel/helper-plugin-utils": "^7.22.5",
+ "@babel/plugin-syntax-object-rest-spread": "^7.8.3",
+ "@babel/plugin-transform-parameters": "^7.23.3"
},
"engines": {
"node": ">=6.9.0"
@@ -1512,14 +1722,49 @@
}
},
"node_modules/@babel/plugin-transform-object-super": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.18.6.tgz",
- "integrity": "sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.23.3.tgz",
+ "integrity": "sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==",
"dev": true,
"peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.18.6",
- "@babel/helper-replace-supers": "^7.18.6"
+ "@babel/helper-plugin-utils": "^7.22.5",
+ "@babel/helper-replace-supers": "^7.22.20"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-optional-catch-binding": {
+ "version": "7.23.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.23.4.tgz",
+ "integrity": "sha512-XIq8t0rJPHf6Wvmbn9nFxU6ao4c7WhghTR5WyV8SrJfUFzyxhCm4nhC+iAp3HFhbAKLfYpgzhJ6t4XCtVwqO5A==",
+ "dev": true,
+ "peer": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.22.5",
+ "@babel/plugin-syntax-optional-catch-binding": "^7.8.3"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-optional-chaining": {
+ "version": "7.23.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.23.4.tgz",
+ "integrity": "sha512-ZU8y5zWOfjM5vZ+asjgAPwDaBjJzgufjES89Rs4Lpq63O300R/kOz30WCLo6BxxX6QVEilwSlpClnG5cZaikTA==",
+ "dev": true,
+ "peer": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.22.5",
+ "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5",
+ "@babel/plugin-syntax-optional-chaining": "^7.8.3"
},
"engines": {
"node": ">=6.9.0"
@@ -1529,13 +1774,49 @@
}
},
"node_modules/@babel/plugin-transform-parameters": {
- "version": "7.21.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.21.3.tgz",
- "integrity": "sha512-Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.23.3.tgz",
+ "integrity": "sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==",
+ "dev": true,
+ "peer": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.22.5"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-private-methods": {
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.23.3.tgz",
+ "integrity": "sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g==",
"dev": true,
"peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.20.2"
+ "@babel/helper-create-class-features-plugin": "^7.22.15",
+ "@babel/helper-plugin-utils": "^7.22.5"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-private-property-in-object": {
+ "version": "7.23.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.23.4.tgz",
+ "integrity": "sha512-9G3K1YqTq3F4Vt88Djx1UZ79PDyj+yKRnUy7cZGSMe+a7jkwD259uKKuUzQlPkGam7R+8RJwh5z4xO27fA1o2A==",
+ "dev": true,
+ "peer": true,
+ "dependencies": {
+ "@babel/helper-annotate-as-pure": "^7.22.5",
+ "@babel/helper-create-class-features-plugin": "^7.22.15",
+ "@babel/helper-plugin-utils": "^7.22.5",
+ "@babel/plugin-syntax-private-property-in-object": "^7.14.5"
},
"engines": {
"node": ">=6.9.0"
@@ -1545,13 +1826,13 @@
}
},
"node_modules/@babel/plugin-transform-property-literals": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.18.6.tgz",
- "integrity": "sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.23.3.tgz",
+ "integrity": "sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==",
"dev": true,
"peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.18.6"
+ "@babel/helper-plugin-utils": "^7.22.5"
},
"engines": {
"node": ">=6.9.0"
@@ -1561,13 +1842,13 @@
}
},
"node_modules/@babel/plugin-transform-react-constant-elements": {
- "version": "7.21.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.21.3.tgz",
- "integrity": "sha512-4DVcFeWe/yDYBLp0kBmOGFJ6N2UYg7coGid1gdxb4co62dy/xISDMaYBXBVXEDhfgMk7qkbcYiGtwd5Q/hwDDQ==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.23.3.tgz",
+ "integrity": "sha512-zP0QKq/p6O42OL94udMgSfKXyse4RyJ0JqbQ34zDAONWjyrEsghYEyTSK5FIpmXmCpB55SHokL1cRRKHv8L2Qw==",
"dev": true,
"peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.20.2"
+ "@babel/helper-plugin-utils": "^7.22.5"
},
"engines": {
"node": ">=6.9.0"
@@ -1577,13 +1858,13 @@
}
},
"node_modules/@babel/plugin-transform-react-display-name": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.18.6.tgz",
- "integrity": "sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.23.3.tgz",
+ "integrity": "sha512-GnvhtVfA2OAtzdX58FJxU19rhoGeQzyVndw3GgtdECQvQFXPEZIOVULHVZGAYmOgmqjXpVpfocAbSjh99V/Fqw==",
"dev": true,
"peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.18.6"
+ "@babel/helper-plugin-utils": "^7.22.5"
},
"engines": {
"node": ">=6.9.0"
@@ -1593,17 +1874,17 @@
}
},
"node_modules/@babel/plugin-transform-react-jsx": {
- "version": "7.21.5",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.21.5.tgz",
- "integrity": "sha512-ELdlq61FpoEkHO6gFRpfj0kUgSwQTGoaEU8eMRoS8Dv3v6e7BjEAj5WMtIBRdHUeAioMhKP5HyxNzNnP+heKbA==",
+ "version": "7.23.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.23.4.tgz",
+ "integrity": "sha512-5xOpoPguCZCRbo/JeHlloSkTA8Bld1J/E1/kLfD1nsuiW1m8tduTA1ERCgIZokDflX/IBzKcqR3l7VlRgiIfHA==",
"dev": true,
"peer": true,
"dependencies": {
- "@babel/helper-annotate-as-pure": "^7.18.6",
- "@babel/helper-module-imports": "^7.21.4",
- "@babel/helper-plugin-utils": "^7.21.5",
- "@babel/plugin-syntax-jsx": "^7.21.4",
- "@babel/types": "^7.21.5"
+ "@babel/helper-annotate-as-pure": "^7.22.5",
+ "@babel/helper-module-imports": "^7.22.15",
+ "@babel/helper-plugin-utils": "^7.22.5",
+ "@babel/plugin-syntax-jsx": "^7.23.3",
+ "@babel/types": "^7.23.4"
},
"engines": {
"node": ">=6.9.0"
@@ -1613,13 +1894,13 @@
}
},
"node_modules/@babel/plugin-transform-react-jsx-development": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.18.6.tgz",
- "integrity": "sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==",
+ "version": "7.22.5",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.22.5.tgz",
+ "integrity": "sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==",
"dev": true,
"peer": true,
"dependencies": {
- "@babel/plugin-transform-react-jsx": "^7.18.6"
+ "@babel/plugin-transform-react-jsx": "^7.22.5"
},
"engines": {
"node": ">=6.9.0"
@@ -1629,14 +1910,14 @@
}
},
"node_modules/@babel/plugin-transform-react-pure-annotations": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.18.6.tgz",
- "integrity": "sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.23.3.tgz",
+ "integrity": "sha512-qMFdSS+TUhB7Q/3HVPnEdYJDQIk57jkntAwSuz9xfSE4n+3I+vHYCli3HoHawN1Z3RfCz/y1zXA/JXjG6cVImQ==",
"dev": true,
"peer": true,
"dependencies": {
- "@babel/helper-annotate-as-pure": "^7.18.6",
- "@babel/helper-plugin-utils": "^7.18.6"
+ "@babel/helper-annotate-as-pure": "^7.22.5",
+ "@babel/helper-plugin-utils": "^7.22.5"
},
"engines": {
"node": ">=6.9.0"
@@ -1646,14 +1927,14 @@
}
},
"node_modules/@babel/plugin-transform-regenerator": {
- "version": "7.21.5",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.21.5.tgz",
- "integrity": "sha512-ZoYBKDb6LyMi5yCsByQ5jmXsHAQDDYeexT1Szvlmui+lADvfSecr5Dxd/PkrTC3pAD182Fcju1VQkB4oCp9M+w==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.23.3.tgz",
+ "integrity": "sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ==",
"dev": true,
"peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.21.5",
- "regenerator-transform": "^0.15.1"
+ "@babel/helper-plugin-utils": "^7.22.5",
+ "regenerator-transform": "^0.15.2"
},
"engines": {
"node": ">=6.9.0"
@@ -1663,13 +1944,13 @@
}
},
"node_modules/@babel/plugin-transform-reserved-words": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.18.6.tgz",
- "integrity": "sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.23.3.tgz",
+ "integrity": "sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg==",
"dev": true,
"peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.18.6"
+ "@babel/helper-plugin-utils": "^7.22.5"
},
"engines": {
"node": ">=6.9.0"
@@ -1679,18 +1960,18 @@
}
},
"node_modules/@babel/plugin-transform-runtime": {
- "version": "7.21.4",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.21.4.tgz",
- "integrity": "sha512-1J4dhrw1h1PqnNNpzwxQ2UBymJUF8KuPjAAnlLwZcGhHAIqUigFW7cdK6GHoB64ubY4qXQNYknoUeks4Wz7CUA==",
+ "version": "7.23.9",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.23.9.tgz",
+ "integrity": "sha512-A7clW3a0aSjm3ONU9o2HAILSegJCYlEZmOhmBRReVtIpY/Z/p7yIZ+wR41Z+UipwdGuqwtID/V/dOdZXjwi9gQ==",
"dev": true,
"peer": true,
"dependencies": {
- "@babel/helper-module-imports": "^7.21.4",
- "@babel/helper-plugin-utils": "^7.20.2",
- "babel-plugin-polyfill-corejs2": "^0.3.3",
- "babel-plugin-polyfill-corejs3": "^0.6.0",
- "babel-plugin-polyfill-regenerator": "^0.4.1",
- "semver": "^6.3.0"
+ "@babel/helper-module-imports": "^7.22.15",
+ "@babel/helper-plugin-utils": "^7.22.5",
+ "babel-plugin-polyfill-corejs2": "^0.4.8",
+ "babel-plugin-polyfill-corejs3": "^0.9.0",
+ "babel-plugin-polyfill-regenerator": "^0.5.5",
+ "semver": "^6.3.1"
},
"engines": {
"node": ">=6.9.0"
@@ -1700,9 +1981,9 @@
}
},
"node_modules/@babel/plugin-transform-runtime/node_modules/semver": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
- "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
"dev": true,
"peer": true,
"bin": {
@@ -1710,13 +1991,13 @@
}
},
"node_modules/@babel/plugin-transform-shorthand-properties": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.18.6.tgz",
- "integrity": "sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.23.3.tgz",
+ "integrity": "sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg==",
"dev": true,
"peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.18.6"
+ "@babel/helper-plugin-utils": "^7.22.5"
},
"engines": {
"node": ">=6.9.0"
@@ -1726,14 +2007,14 @@
}
},
"node_modules/@babel/plugin-transform-spread": {
- "version": "7.20.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.20.7.tgz",
- "integrity": "sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.23.3.tgz",
+ "integrity": "sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==",
"dev": true,
"peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.20.2",
- "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0"
+ "@babel/helper-plugin-utils": "^7.22.5",
+ "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5"
},
"engines": {
"node": ">=6.9.0"
@@ -1743,13 +2024,13 @@
}
},
"node_modules/@babel/plugin-transform-sticky-regex": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.18.6.tgz",
- "integrity": "sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.23.3.tgz",
+ "integrity": "sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg==",
"dev": true,
"peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.18.6"
+ "@babel/helper-plugin-utils": "^7.22.5"
},
"engines": {
"node": ">=6.9.0"
@@ -1759,13 +2040,13 @@
}
},
"node_modules/@babel/plugin-transform-template-literals": {
- "version": "7.18.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.9.tgz",
- "integrity": "sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.23.3.tgz",
+ "integrity": "sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==",
"dev": true,
"peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.18.9"
+ "@babel/helper-plugin-utils": "^7.22.5"
},
"engines": {
"node": ">=6.9.0"
@@ -1775,13 +2056,13 @@
}
},
"node_modules/@babel/plugin-transform-typeof-symbol": {
- "version": "7.18.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.9.tgz",
- "integrity": "sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.23.3.tgz",
+ "integrity": "sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ==",
"dev": true,
"peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.18.9"
+ "@babel/helper-plugin-utils": "^7.22.5"
},
"engines": {
"node": ">=6.9.0"
@@ -1791,16 +2072,16 @@
}
},
"node_modules/@babel/plugin-transform-typescript": {
- "version": "7.21.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.21.3.tgz",
- "integrity": "sha512-RQxPz6Iqt8T0uw/WsJNReuBpWpBqs/n7mNo18sKLoTbMp+UrEekhH+pKSVC7gWz+DNjo9gryfV8YzCiT45RgMw==",
+ "version": "7.23.6",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.23.6.tgz",
+ "integrity": "sha512-6cBG5mBvUu4VUD04OHKnYzbuHNP8huDsD3EDqqpIpsswTDoqHCjLoHb6+QgsV1WsT2nipRqCPgxD3LXnEO7XfA==",
"dev": true,
"peer": true,
"dependencies": {
- "@babel/helper-annotate-as-pure": "^7.18.6",
- "@babel/helper-create-class-features-plugin": "^7.21.0",
- "@babel/helper-plugin-utils": "^7.20.2",
- "@babel/plugin-syntax-typescript": "^7.20.0"
+ "@babel/helper-annotate-as-pure": "^7.22.5",
+ "@babel/helper-create-class-features-plugin": "^7.23.6",
+ "@babel/helper-plugin-utils": "^7.22.5",
+ "@babel/plugin-syntax-typescript": "^7.23.3"
},
"engines": {
"node": ">=6.9.0"
@@ -1810,13 +2091,30 @@
}
},
"node_modules/@babel/plugin-transform-unicode-escapes": {
- "version": "7.21.5",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.21.5.tgz",
- "integrity": "sha512-LYm/gTOwZqsYohlvFUe/8Tujz75LqqVC2w+2qPHLR+WyWHGCZPN1KBpJCJn+4Bk4gOkQy/IXKIge6az5MqwlOg==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.23.3.tgz",
+ "integrity": "sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q==",
+ "dev": true,
+ "peer": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.22.5"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-unicode-property-regex": {
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.23.3.tgz",
+ "integrity": "sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA==",
"dev": true,
"peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.21.5"
+ "@babel/helper-create-regexp-features-plugin": "^7.22.15",
+ "@babel/helper-plugin-utils": "^7.22.5"
},
"engines": {
"node": ">=6.9.0"
@@ -1826,14 +2124,14 @@
}
},
"node_modules/@babel/plugin-transform-unicode-regex": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.18.6.tgz",
- "integrity": "sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.23.3.tgz",
+ "integrity": "sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw==",
"dev": true,
"peer": true,
"dependencies": {
- "@babel/helper-create-regexp-features-plugin": "^7.18.6",
- "@babel/helper-plugin-utils": "^7.18.6"
+ "@babel/helper-create-regexp-features-plugin": "^7.22.15",
+ "@babel/helper-plugin-utils": "^7.22.5"
},
"engines": {
"node": ">=6.9.0"
@@ -1842,40 +2140,45 @@
"@babel/core": "^7.0.0-0"
}
},
+ "node_modules/@babel/plugin-transform-unicode-sets-regex": {
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.23.3.tgz",
+ "integrity": "sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw==",
+ "dev": true,
+ "peer": true,
+ "dependencies": {
+ "@babel/helper-create-regexp-features-plugin": "^7.22.15",
+ "@babel/helper-plugin-utils": "^7.22.5"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0"
+ }
+ },
"node_modules/@babel/preset-env": {
- "version": "7.21.5",
- "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.21.5.tgz",
- "integrity": "sha512-wH00QnTTldTbf/IefEVyChtRdw5RJvODT/Vb4Vcxq1AZvtXj6T0YeX0cAcXhI6/BdGuiP3GcNIL4OQbI2DVNxg==",
- "dev": true,
- "peer": true,
- "dependencies": {
- "@babel/compat-data": "^7.21.5",
- "@babel/helper-compilation-targets": "^7.21.5",
- "@babel/helper-plugin-utils": "^7.21.5",
- "@babel/helper-validator-option": "^7.21.0",
- "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.18.6",
- "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.20.7",
- "@babel/plugin-proposal-async-generator-functions": "^7.20.7",
- "@babel/plugin-proposal-class-properties": "^7.18.6",
- "@babel/plugin-proposal-class-static-block": "^7.21.0",
- "@babel/plugin-proposal-dynamic-import": "^7.18.6",
- "@babel/plugin-proposal-export-namespace-from": "^7.18.9",
- "@babel/plugin-proposal-json-strings": "^7.18.6",
- "@babel/plugin-proposal-logical-assignment-operators": "^7.20.7",
- "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
- "@babel/plugin-proposal-numeric-separator": "^7.18.6",
- "@babel/plugin-proposal-object-rest-spread": "^7.20.7",
- "@babel/plugin-proposal-optional-catch-binding": "^7.18.6",
- "@babel/plugin-proposal-optional-chaining": "^7.21.0",
- "@babel/plugin-proposal-private-methods": "^7.18.6",
- "@babel/plugin-proposal-private-property-in-object": "^7.21.0",
- "@babel/plugin-proposal-unicode-property-regex": "^7.18.6",
+ "version": "7.23.9",
+ "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.23.9.tgz",
+ "integrity": "sha512-3kBGTNBBk9DQiPoXYS0g0BYlwTQYUTifqgKTjxUwEUkduRT2QOa0FPGBJ+NROQhGyYO5BuTJwGvBnqKDykac6A==",
+ "dev": true,
+ "peer": true,
+ "dependencies": {
+ "@babel/compat-data": "^7.23.5",
+ "@babel/helper-compilation-targets": "^7.23.6",
+ "@babel/helper-plugin-utils": "^7.22.5",
+ "@babel/helper-validator-option": "^7.23.5",
+ "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.23.3",
+ "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.23.3",
+ "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.23.7",
+ "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2",
"@babel/plugin-syntax-async-generators": "^7.8.4",
"@babel/plugin-syntax-class-properties": "^7.12.13",
"@babel/plugin-syntax-class-static-block": "^7.14.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-export-namespace-from": "^7.8.3",
- "@babel/plugin-syntax-import-assertions": "^7.20.0",
+ "@babel/plugin-syntax-import-assertions": "^7.23.3",
+ "@babel/plugin-syntax-import-attributes": "^7.23.3",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/plugin-syntax-json-strings": "^7.8.3",
"@babel/plugin-syntax-logical-assignment-operators": "^7.10.4",
@@ -1886,45 +2189,61 @@
"@babel/plugin-syntax-optional-chaining": "^7.8.3",
"@babel/plugin-syntax-private-property-in-object": "^7.14.5",
"@babel/plugin-syntax-top-level-await": "^7.14.5",
- "@babel/plugin-transform-arrow-functions": "^7.21.5",
- "@babel/plugin-transform-async-to-generator": "^7.20.7",
- "@babel/plugin-transform-block-scoped-functions": "^7.18.6",
- "@babel/plugin-transform-block-scoping": "^7.21.0",
- "@babel/plugin-transform-classes": "^7.21.0",
- "@babel/plugin-transform-computed-properties": "^7.21.5",
- "@babel/plugin-transform-destructuring": "^7.21.3",
- "@babel/plugin-transform-dotall-regex": "^7.18.6",
- "@babel/plugin-transform-duplicate-keys": "^7.18.9",
- "@babel/plugin-transform-exponentiation-operator": "^7.18.6",
- "@babel/plugin-transform-for-of": "^7.21.5",
- "@babel/plugin-transform-function-name": "^7.18.9",
- "@babel/plugin-transform-literals": "^7.18.9",
- "@babel/plugin-transform-member-expression-literals": "^7.18.6",
- "@babel/plugin-transform-modules-amd": "^7.20.11",
- "@babel/plugin-transform-modules-commonjs": "^7.21.5",
- "@babel/plugin-transform-modules-systemjs": "^7.20.11",
- "@babel/plugin-transform-modules-umd": "^7.18.6",
- "@babel/plugin-transform-named-capturing-groups-regex": "^7.20.5",
- "@babel/plugin-transform-new-target": "^7.18.6",
- "@babel/plugin-transform-object-super": "^7.18.6",
- "@babel/plugin-transform-parameters": "^7.21.3",
- "@babel/plugin-transform-property-literals": "^7.18.6",
- "@babel/plugin-transform-regenerator": "^7.21.5",
- "@babel/plugin-transform-reserved-words": "^7.18.6",
- "@babel/plugin-transform-shorthand-properties": "^7.18.6",
- "@babel/plugin-transform-spread": "^7.20.7",
- "@babel/plugin-transform-sticky-regex": "^7.18.6",
- "@babel/plugin-transform-template-literals": "^7.18.9",
- "@babel/plugin-transform-typeof-symbol": "^7.18.9",
- "@babel/plugin-transform-unicode-escapes": "^7.21.5",
- "@babel/plugin-transform-unicode-regex": "^7.18.6",
- "@babel/preset-modules": "^0.1.5",
- "@babel/types": "^7.21.5",
- "babel-plugin-polyfill-corejs2": "^0.3.3",
- "babel-plugin-polyfill-corejs3": "^0.6.0",
- "babel-plugin-polyfill-regenerator": "^0.4.1",
- "core-js-compat": "^3.25.1",
- "semver": "^6.3.0"
+ "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6",
+ "@babel/plugin-transform-arrow-functions": "^7.23.3",
+ "@babel/plugin-transform-async-generator-functions": "^7.23.9",
+ "@babel/plugin-transform-async-to-generator": "^7.23.3",
+ "@babel/plugin-transform-block-scoped-functions": "^7.23.3",
+ "@babel/plugin-transform-block-scoping": "^7.23.4",
+ "@babel/plugin-transform-class-properties": "^7.23.3",
+ "@babel/plugin-transform-class-static-block": "^7.23.4",
+ "@babel/plugin-transform-classes": "^7.23.8",
+ "@babel/plugin-transform-computed-properties": "^7.23.3",
+ "@babel/plugin-transform-destructuring": "^7.23.3",
+ "@babel/plugin-transform-dotall-regex": "^7.23.3",
+ "@babel/plugin-transform-duplicate-keys": "^7.23.3",
+ "@babel/plugin-transform-dynamic-import": "^7.23.4",
+ "@babel/plugin-transform-exponentiation-operator": "^7.23.3",
+ "@babel/plugin-transform-export-namespace-from": "^7.23.4",
+ "@babel/plugin-transform-for-of": "^7.23.6",
+ "@babel/plugin-transform-function-name": "^7.23.3",
+ "@babel/plugin-transform-json-strings": "^7.23.4",
+ "@babel/plugin-transform-literals": "^7.23.3",
+ "@babel/plugin-transform-logical-assignment-operators": "^7.23.4",
+ "@babel/plugin-transform-member-expression-literals": "^7.23.3",
+ "@babel/plugin-transform-modules-amd": "^7.23.3",
+ "@babel/plugin-transform-modules-commonjs": "^7.23.3",
+ "@babel/plugin-transform-modules-systemjs": "^7.23.9",
+ "@babel/plugin-transform-modules-umd": "^7.23.3",
+ "@babel/plugin-transform-named-capturing-groups-regex": "^7.22.5",
+ "@babel/plugin-transform-new-target": "^7.23.3",
+ "@babel/plugin-transform-nullish-coalescing-operator": "^7.23.4",
+ "@babel/plugin-transform-numeric-separator": "^7.23.4",
+ "@babel/plugin-transform-object-rest-spread": "^7.23.4",
+ "@babel/plugin-transform-object-super": "^7.23.3",
+ "@babel/plugin-transform-optional-catch-binding": "^7.23.4",
+ "@babel/plugin-transform-optional-chaining": "^7.23.4",
+ "@babel/plugin-transform-parameters": "^7.23.3",
+ "@babel/plugin-transform-private-methods": "^7.23.3",
+ "@babel/plugin-transform-private-property-in-object": "^7.23.4",
+ "@babel/plugin-transform-property-literals": "^7.23.3",
+ "@babel/plugin-transform-regenerator": "^7.23.3",
+ "@babel/plugin-transform-reserved-words": "^7.23.3",
+ "@babel/plugin-transform-shorthand-properties": "^7.23.3",
+ "@babel/plugin-transform-spread": "^7.23.3",
+ "@babel/plugin-transform-sticky-regex": "^7.23.3",
+ "@babel/plugin-transform-template-literals": "^7.23.3",
+ "@babel/plugin-transform-typeof-symbol": "^7.23.3",
+ "@babel/plugin-transform-unicode-escapes": "^7.23.3",
+ "@babel/plugin-transform-unicode-property-regex": "^7.23.3",
+ "@babel/plugin-transform-unicode-regex": "^7.23.3",
+ "@babel/plugin-transform-unicode-sets-regex": "^7.23.3",
+ "@babel/preset-modules": "0.1.6-no-external-plugins",
+ "babel-plugin-polyfill-corejs2": "^0.4.8",
+ "babel-plugin-polyfill-corejs3": "^0.9.0",
+ "babel-plugin-polyfill-regenerator": "^0.5.5",
+ "core-js-compat": "^3.31.0",
+ "semver": "^6.3.1"
},
"engines": {
"node": ">=6.9.0"
@@ -1934,9 +2253,9 @@
}
},
"node_modules/@babel/preset-env/node_modules/semver": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
- "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
"dev": true,
"peer": true,
"bin": {
@@ -1944,35 +2263,33 @@
}
},
"node_modules/@babel/preset-modules": {
- "version": "0.1.5",
- "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz",
- "integrity": "sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==",
+ "version": "0.1.6-no-external-plugins",
+ "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz",
+ "integrity": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==",
"dev": true,
"peer": true,
"dependencies": {
"@babel/helper-plugin-utils": "^7.0.0",
- "@babel/plugin-proposal-unicode-property-regex": "^7.4.4",
- "@babel/plugin-transform-dotall-regex": "^7.4.4",
"@babel/types": "^7.4.4",
"esutils": "^2.0.2"
},
"peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "@babel/core": "^7.0.0-0 || ^8.0.0-0 <8.0.0"
}
},
"node_modules/@babel/preset-react": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.18.6.tgz",
- "integrity": "sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.23.3.tgz",
+ "integrity": "sha512-tbkHOS9axH6Ysf2OUEqoSZ6T3Fa2SrNH6WTWSPBboxKzdxNc9qOICeLXkNG0ZEwbQ1HY8liwOce4aN/Ceyuq6w==",
"dev": true,
"peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.18.6",
- "@babel/helper-validator-option": "^7.18.6",
- "@babel/plugin-transform-react-display-name": "^7.18.6",
- "@babel/plugin-transform-react-jsx": "^7.18.6",
- "@babel/plugin-transform-react-jsx-development": "^7.18.6",
- "@babel/plugin-transform-react-pure-annotations": "^7.18.6"
+ "@babel/helper-plugin-utils": "^7.22.5",
+ "@babel/helper-validator-option": "^7.22.15",
+ "@babel/plugin-transform-react-display-name": "^7.23.3",
+ "@babel/plugin-transform-react-jsx": "^7.22.15",
+ "@babel/plugin-transform-react-jsx-development": "^7.22.5",
+ "@babel/plugin-transform-react-pure-annotations": "^7.23.3"
},
"engines": {
"node": ">=6.9.0"
@@ -1982,17 +2299,17 @@
}
},
"node_modules/@babel/preset-typescript": {
- "version": "7.21.5",
- "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.21.5.tgz",
- "integrity": "sha512-iqe3sETat5EOrORXiQ6rWfoOg2y68Cs75B9wNxdPW4kixJxh7aXQE1KPdWLDniC24T/6dSnguF33W9j/ZZQcmA==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.23.3.tgz",
+ "integrity": "sha512-17oIGVlqz6CchO9RFYn5U6ZpWRZIngayYCtrPRSgANSwC2V1Jb+iP74nVxzzXJte8b8BYxrL1yY96xfhTBrNNQ==",
"dev": true,
"peer": true,
"dependencies": {
- "@babel/helper-plugin-utils": "^7.21.5",
- "@babel/helper-validator-option": "^7.21.0",
- "@babel/plugin-syntax-jsx": "^7.21.4",
- "@babel/plugin-transform-modules-commonjs": "^7.21.5",
- "@babel/plugin-transform-typescript": "^7.21.3"
+ "@babel/helper-plugin-utils": "^7.22.5",
+ "@babel/helper-validator-option": "^7.22.15",
+ "@babel/plugin-syntax-jsx": "^7.23.3",
+ "@babel/plugin-transform-modules-commonjs": "^7.23.3",
+ "@babel/plugin-transform-typescript": "^7.23.3"
},
"engines": {
"node": ">=6.9.0"
@@ -2009,57 +2326,65 @@
"peer": true
},
"node_modules/@babel/runtime": {
- "version": "7.21.5",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.5.tgz",
- "integrity": "sha512-8jI69toZqqcsnqGGqwGS4Qb1VwLOEp4hz+CXPywcvjs60u3B4Pom/U/7rm4W8tMOYEB+E9wgD0mW1l3r8qlI9Q==",
+ "version": "7.23.9",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.9.tgz",
+ "integrity": "sha512-0CX6F+BI2s9dkUqr08KFrAIZgNFj75rdBU/DjCyYLIaV/quFjkk6T+EJ2LkZHyZTbEV4L5p97mNkUsHl2wLFAw==",
"dev": true,
"dependencies": {
- "regenerator-runtime": "^0.13.11"
+ "regenerator-runtime": "^0.14.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/template": {
- "version": "7.20.7",
- "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.20.7.tgz",
- "integrity": "sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==",
+ "version": "7.23.9",
+ "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.23.9.tgz",
+ "integrity": "sha512-+xrD2BWLpvHKNmX2QbpdpsBaWnRxahMwJjO+KZk2JOElj5nSmKezyS1B4u+QbHMTX69t4ukm6hh9lsYQ7GHCKA==",
"dependencies": {
- "@babel/code-frame": "^7.18.6",
- "@babel/parser": "^7.20.7",
- "@babel/types": "^7.20.7"
+ "@babel/code-frame": "^7.23.5",
+ "@babel/parser": "^7.23.9",
+ "@babel/types": "^7.23.9"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/traverse": {
- "version": "7.21.5",
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.21.5.tgz",
- "integrity": "sha512-AhQoI3YjWi6u/y/ntv7k48mcrCXmus0t79J9qPNlk/lAsFlCiJ047RmbfMOawySTHtywXhbXgpx/8nXMYd+oFw==",
- "dependencies": {
- "@babel/code-frame": "^7.21.4",
- "@babel/generator": "^7.21.5",
- "@babel/helper-environment-visitor": "^7.21.5",
- "@babel/helper-function-name": "^7.21.0",
- "@babel/helper-hoist-variables": "^7.18.6",
- "@babel/helper-split-export-declaration": "^7.18.6",
- "@babel/parser": "^7.21.5",
- "@babel/types": "^7.21.5",
- "debug": "^4.1.0",
+ "version": "7.23.9",
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.9.tgz",
+ "integrity": "sha512-I/4UJ9vs90OkBtY6iiiTORVMyIhJ4kAVmsKo9KFc8UOxMeUfi2hvtIBsET5u9GizXE6/GFSuKCTNfgCswuEjRg==",
+ "dependencies": {
+ "@babel/code-frame": "^7.23.5",
+ "@babel/generator": "^7.23.6",
+ "@babel/helper-environment-visitor": "^7.22.20",
+ "@babel/helper-function-name": "^7.23.0",
+ "@babel/helper-hoist-variables": "^7.22.5",
+ "@babel/helper-split-export-declaration": "^7.22.6",
+ "@babel/parser": "^7.23.9",
+ "@babel/types": "^7.23.9",
+ "debug": "^4.3.1",
"globals": "^11.1.0"
},
"engines": {
"node": ">=6.9.0"
}
},
+ "node_modules/@babel/traverse/node_modules/globals": {
+ "version": "11.12.0",
+ "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz",
+ "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==",
+ "engines": {
+ "node": ">=4"
+ }
+ },
"node_modules/@babel/types": {
- "version": "7.21.5",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.21.5.tgz",
- "integrity": "sha512-m4AfNvVF2mVC/F7fDEdH2El3HzUg9It/XsCxZiOTTA3m3qYfcSVSbTfM6Q9xG+hYDniZssYhlXKKUMD5m8tF4Q==",
+ "version": "7.23.9",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.9.tgz",
+ "integrity": "sha512-dQjSq/7HaSjRM43FFGnv5keM2HsxpmyV1PfaSVm0nzzjwwTmjOe6J4bC8e3+pTEIgHaHj+1ZlLThRJ2auc/w1Q==",
"dependencies": {
- "@babel/helper-string-parser": "^7.21.5",
- "@babel/helper-validator-identifier": "^7.19.1",
+ "@babel/helper-string-parser": "^7.23.4",
+ "@babel/helper-validator-identifier": "^7.22.20",
"to-fast-properties": "^2.0.0"
},
"engines": {
@@ -2095,47 +2420,6 @@
"node": ">=v14"
}
},
- "node_modules/@commitlint/cli/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/@commitlint/cli/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/@commitlint/cli/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/@commitlint/config-conventional": {
"version": "17.8.1",
"resolved": "https://registry.npmjs.org/@commitlint/config-conventional/-/config-conventional-17.8.1.tgz",
@@ -2161,28 +2445,6 @@
"node": ">=v14"
}
},
- "node_modules/@commitlint/config-validator/node_modules/ajv": {
- "version": "8.12.0",
- "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz",
- "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==",
- "dev": true,
- "dependencies": {
- "fast-deep-equal": "^3.1.1",
- "json-schema-traverse": "^1.0.0",
- "require-from-string": "^2.0.2",
- "uri-js": "^4.2.2"
- },
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/epoberezkin"
- }
- },
- "node_modules/@commitlint/config-validator/node_modules/json-schema-traverse": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
- "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
- "dev": true
- },
"node_modules/@commitlint/ensure": {
"version": "17.8.1",
"resolved": "https://registry.npmjs.org/@commitlint/ensure/-/ensure-17.8.1.tgz",
@@ -2222,76 +2484,6 @@
"node": ">=v14"
}
},
- "node_modules/@commitlint/format/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/@commitlint/format/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/@commitlint/format/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/@commitlint/format/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/@commitlint/format/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/@commitlint/format/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/@commitlint/is-ignored": {
"version": "17.8.1",
"resolved": "https://registry.npmjs.org/@commitlint/is-ignored/-/is-ignored-17.8.1.tgz",
@@ -2345,120 +2537,6 @@
"node": ">=v14"
}
},
- "node_modules/@commitlint/load/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/@commitlint/load/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/@commitlint/load/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/@commitlint/load/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/@commitlint/load/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/@commitlint/load/node_modules/cosmiconfig": {
- "version": "8.3.6",
- "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.3.6.tgz",
- "integrity": "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==",
- "dev": true,
- "dependencies": {
- "import-fresh": "^3.3.0",
- "js-yaml": "^4.1.0",
- "parse-json": "^5.2.0",
- "path-type": "^4.0.0"
- },
- "engines": {
- "node": ">=14"
- },
- "funding": {
- "url": "https://github.com/sponsors/d-fischer"
- },
- "peerDependencies": {
- "typescript": ">=4.9.5"
- },
- "peerDependenciesMeta": {
- "typescript": {
- "optional": true
- }
- }
- },
- "node_modules/@commitlint/load/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/@commitlint/load/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/@commitlint/load/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/@commitlint/message": {
"version": "17.8.1",
"resolved": "https://registry.npmjs.org/@commitlint/message/-/message-17.8.1.tgz",
@@ -2515,76 +2593,6 @@
"node": ">=v14"
}
},
- "node_modules/@commitlint/prompt/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/@commitlint/prompt/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/@commitlint/prompt/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/@commitlint/prompt/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/@commitlint/prompt/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/@commitlint/prompt/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/@commitlint/read": {
"version": "17.8.1",
"resolved": "https://registry.npmjs.org/@commitlint/read/-/read-17.8.1.tgz",
@@ -2601,20 +2609,6 @@
"node": ">=v14"
}
},
- "node_modules/@commitlint/read/node_modules/fs-extra": {
- "version": "11.2.0",
- "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz",
- "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==",
- "dev": true,
- "dependencies": {
- "graceful-fs": "^4.2.0",
- "jsonfile": "^6.0.1",
- "universalify": "^2.0.0"
- },
- "engines": {
- "node": ">=14.14"
- }
- },
"node_modules/@commitlint/resolve-extends": {
"version": "17.8.1",
"resolved": "https://registry.npmjs.org/@commitlint/resolve-extends/-/resolve-extends-17.8.1.tgz",
@@ -2681,76 +2675,6 @@
"node": ">=v14"
}
},
- "node_modules/@commitlint/types/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/@commitlint/types/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/@commitlint/types/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/@commitlint/types/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/@commitlint/types/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/@commitlint/types/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/@cspotcode/source-map-support": {
"version": "0.8.1",
"resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz",
@@ -2774,9 +2698,9 @@
}
},
"node_modules/@csstools/normalize.css": {
- "version": "12.0.0",
- "resolved": "https://registry.npmjs.org/@csstools/normalize.css/-/normalize.css-12.0.0.tgz",
- "integrity": "sha512-M0qqxAcwCsIVfpFQSlGN5XjXWu8l5JDZN+fPt1LeW5SZexQTgnaEvgXAY+CeygRw0EeppWHi12JxESWiWrB0Sg==",
+ "version": "12.1.1",
+ "resolved": "https://registry.npmjs.org/@csstools/normalize.css/-/normalize.css-12.1.1.tgz",
+ "integrity": "sha512-YAYeJ+Xqh7fUou1d1j9XHl44BmsuThiTr4iNrgCQ3J27IbhXsxXDGZ1cXv8Qvs99d4rBbLiSKy3+WZiet32PcQ==",
"dev": true,
"peer": true
},
@@ -3095,29 +3019,6 @@
"stylis": "4.2.0"
}
},
- "node_modules/@emotion/babel-plugin/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,
- "peer": true,
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/@emotion/babel-plugin/node_modules/source-map": {
- "version": "0.5.7",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
- "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==",
- "dev": true,
- "peer": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
"node_modules/@emotion/cache": {
"version": "11.11.0",
"resolved": "https://registry.npmjs.org/@emotion/cache/-/cache-11.11.0.tgz",
@@ -3157,16 +3058,16 @@
"peer": true
},
"node_modules/@emotion/react": {
- "version": "11.11.0",
- "resolved": "https://registry.npmjs.org/@emotion/react/-/react-11.11.0.tgz",
- "integrity": "sha512-ZSK3ZJsNkwfjT3JpDAWJZlrGD81Z3ytNDsxw1LKq1o+xkmO5pnWfr6gmCC8gHEFf3nSSX/09YrG67jybNPxSUw==",
+ "version": "11.11.3",
+ "resolved": "https://registry.npmjs.org/@emotion/react/-/react-11.11.3.tgz",
+ "integrity": "sha512-Cnn0kuq4DoONOMcnoVsTOR8E+AdnKFf//6kUWc4LCdnxj31pZWn7rIULd6Y7/Js1PiPHzn7SKCM9vB/jBni8eA==",
"dev": true,
"peer": true,
"dependencies": {
"@babel/runtime": "^7.18.3",
"@emotion/babel-plugin": "^11.11.0",
"@emotion/cache": "^11.11.0",
- "@emotion/serialize": "^1.1.2",
+ "@emotion/serialize": "^1.1.3",
"@emotion/use-insertion-effect-with-fallbacks": "^1.0.1",
"@emotion/utils": "^1.2.1",
"@emotion/weak-memoize": "^0.3.1",
@@ -3182,9 +3083,9 @@
}
},
"node_modules/@emotion/serialize": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-1.1.2.tgz",
- "integrity": "sha512-zR6a/fkFP4EAcCMQtLOhIgpprZOwNmCldtpaISpvz348+DP4Mz8ZoKaGGCQpbzepNIUWbq4w6hNZkwDyKoS+HA==",
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-1.1.3.tgz",
+ "integrity": "sha512-iD4D6QVZFDhcbH0RAG1uVu1CwVLMWUkCvAqqlewO/rxf8+87yIBAlt4+AxMiiKPLs5hFc0owNk/sLLAOROw3cA==",
"dev": true,
"peer": true,
"dependencies": {
@@ -3304,50 +3205,27 @@
"url": "https://opencollective.com/eslint"
}
},
- "node_modules/@eslint/eslintrc/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/@eslint/eslintrc/node_modules/globals": {
- "version": "13.24.0",
- "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz",
- "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==",
+ "node_modules/@eslint/eslintrc/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": {
- "type-fest": "^0.20.2"
- },
- "engines": {
- "node": ">=8"
+ "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": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/@eslint/eslintrc/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"
+ "type": "github",
+ "url": "https://github.com/sponsors/epoberezkin"
}
},
- "node_modules/@eslint/eslintrc/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/@eslint/eslintrc/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/@eslint/js": {
"version": "8.56.0",
@@ -3406,6 +3284,102 @@
"integrity": "sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==",
"dev": true
},
+ "node_modules/@isaacs/cliui": {
+ "version": "8.0.2",
+ "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz",
+ "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==",
+ "dev": true,
+ "peer": true,
+ "dependencies": {
+ "string-width": "^5.1.2",
+ "string-width-cjs": "npm:string-width@^4.2.0",
+ "strip-ansi": "^7.0.1",
+ "strip-ansi-cjs": "npm:strip-ansi@^6.0.1",
+ "wrap-ansi": "^8.1.0",
+ "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0"
+ },
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@isaacs/cliui/node_modules/ansi-regex": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz",
+ "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==",
+ "dev": true,
+ "peer": true,
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-regex?sponsor=1"
+ }
+ },
+ "node_modules/@isaacs/cliui/node_modules/ansi-styles": {
+ "version": "6.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz",
+ "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==",
+ "dev": true,
+ "peer": true,
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/@isaacs/cliui/node_modules/string-width": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz",
+ "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==",
+ "dev": true,
+ "peer": true,
+ "dependencies": {
+ "eastasianwidth": "^0.2.0",
+ "emoji-regex": "^9.2.2",
+ "strip-ansi": "^7.0.1"
+ },
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/@isaacs/cliui/node_modules/strip-ansi": {
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz",
+ "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
+ "dev": true,
+ "peer": true,
+ "dependencies": {
+ "ansi-regex": "^6.0.1"
+ },
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/strip-ansi?sponsor=1"
+ }
+ },
+ "node_modules/@isaacs/cliui/node_modules/wrap-ansi": {
+ "version": "8.1.0",
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz",
+ "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==",
+ "dev": true,
+ "peer": true,
+ "dependencies": {
+ "ansi-styles": "^6.1.0",
+ "string-width": "^5.0.1",
+ "strip-ansi": "^7.0.1"
+ },
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
+ }
+ },
"node_modules/@istanbuljs/load-nyc-config": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz",
@@ -3421,12 +3395,12 @@
"node": ">=8"
}
},
- "node_modules/@istanbuljs/load-nyc-config/node_modules/camelcase": {
- "version": "5.3.1",
- "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz",
- "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==",
- "engines": {
- "node": ">=6"
+ "node_modules/@istanbuljs/load-nyc-config/node_modules/argparse": {
+ "version": "1.0.10",
+ "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
+ "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
+ "dependencies": {
+ "sprintf-js": "~1.0.2"
}
},
"node_modules/@istanbuljs/load-nyc-config/node_modules/find-up": {
@@ -3441,6 +3415,18 @@
"node": ">=8"
}
},
+ "node_modules/@istanbuljs/load-nyc-config/node_modules/js-yaml": {
+ "version": "3.14.1",
+ "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz",
+ "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==",
+ "dependencies": {
+ "argparse": "^1.0.7",
+ "esprima": "^4.0.0"
+ },
+ "bin": {
+ "js-yaml": "bin/js-yaml.js"
+ }
+ },
"node_modules/@istanbuljs/load-nyc-config/node_modules/locate-path": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
@@ -3501,70 +3487,6 @@
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
- "node_modules/@jest/console/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==",
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/@jest/console/node_modules/chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "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/@jest/console/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==",
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/@jest/console/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=="
- },
- "node_modules/@jest/console/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==",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@jest/console/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==",
- "dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
"node_modules/@jest/core": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/core/-/core-27.5.1.tgz",
@@ -3611,68 +3533,29 @@
}
}
},
- "node_modules/@jest/core/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==",
+ "node_modules/@jest/core/node_modules/ansi-escapes": {
+ "version": "4.3.2",
+ "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz",
+ "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==",
"dependencies": {
- "color-convert": "^2.0.1"
+ "type-fest": "^0.21.3"
},
"engines": {
"node": ">=8"
},
"funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/@jest/core/node_modules/chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
+ "node_modules/@jest/core/node_modules/type-fest": {
+ "version": "0.21.3",
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz",
+ "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==",
"engines": {
"node": ">=10"
},
"funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
- }
- },
- "node_modules/@jest/core/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==",
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/@jest/core/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=="
- },
- "node_modules/@jest/core/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==",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@jest/core/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==",
- "dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/@jest/environment": {
@@ -3761,59 +3644,6 @@
}
}
},
- "node_modules/@jest/reporters/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==",
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/@jest/reporters/node_modules/chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "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/@jest/reporters/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==",
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/@jest/reporters/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=="
- },
- "node_modules/@jest/reporters/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==",
- "engines": {
- "node": ">=8"
- }
- },
"node_modules/@jest/reporters/node_modules/source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
@@ -3822,17 +3652,6 @@
"node": ">=0.10.0"
}
},
- "node_modules/@jest/reporters/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==",
- "dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
"node_modules/@jest/schemas": {
"version": "28.1.3",
"resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-28.1.3.tgz",
@@ -3920,59 +3739,6 @@
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
- "node_modules/@jest/transform/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==",
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/@jest/transform/node_modules/chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "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/@jest/transform/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==",
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/@jest/transform/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=="
- },
- "node_modules/@jest/transform/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==",
- "engines": {
- "node": ">=8"
- }
- },
"node_modules/@jest/transform/node_modules/source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
@@ -3981,17 +3747,6 @@
"node": ">=0.10.0"
}
},
- "node_modules/@jest/transform/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==",
- "dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
"node_modules/@jest/types": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz",
@@ -4007,70 +3762,6 @@
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
- "node_modules/@jest/types/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==",
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/@jest/types/node_modules/chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "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/@jest/types/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==",
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/@jest/types/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=="
- },
- "node_modules/@jest/types/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==",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@jest/types/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==",
- "dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
"node_modules/@jridgewell/gen-mapping": {
"version": "0.3.3",
"resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz",
@@ -4085,9 +3776,9 @@
}
},
"node_modules/@jridgewell/resolve-uri": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz",
- "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==",
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz",
+ "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==",
"engines": {
"node": ">=6.0.0"
}
@@ -4101,9 +3792,9 @@
}
},
"node_modules/@jridgewell/source-map": {
- "version": "0.3.3",
- "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.3.tgz",
- "integrity": "sha512-b+fsZXeLYi9fEULmfBrhxn4IrPlINf8fiNarzTof004v3lFdntdwa9PF7vFJqm3mg7s+ScJMxXaE3Acp1irZcg==",
+ "version": "0.3.5",
+ "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.5.tgz",
+ "integrity": "sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==",
"dev": true,
"peer": true,
"dependencies": {
@@ -4117,19 +3808,14 @@
"integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg=="
},
"node_modules/@jridgewell/trace-mapping": {
- "version": "0.3.18",
- "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz",
- "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==",
+ "version": "0.3.22",
+ "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.22.tgz",
+ "integrity": "sha512-Wf963MzWtA2sjrNt+g18IAln9lKnlRp+K2eH4jjIoF1wYeq3aMREpG09xhlhdzS0EjwU7qmUJYangWa+151vZw==",
"dependencies": {
- "@jridgewell/resolve-uri": "3.1.0",
- "@jridgewell/sourcemap-codec": "1.4.14"
+ "@jridgewell/resolve-uri": "^3.1.0",
+ "@jridgewell/sourcemap-codec": "^1.4.14"
}
},
- "node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec": {
- "version": "1.4.14",
- "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz",
- "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw=="
- },
"node_modules/@leichtgewicht/ip-codec": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz",
@@ -4137,344 +3823,102 @@
"dev": true,
"peer": true
},
- "node_modules/@mui/base": {
- "version": "5.0.0-alpha.128",
- "resolved": "https://registry.npmjs.org/@mui/base/-/base-5.0.0-alpha.128.tgz",
- "integrity": "sha512-wub3wxNN+hUp8hzilMlXX3sZrPo75vsy1cXEQpqdTfIFlE9HprP1jlulFiPg5tfPst2OKmygXr2hhmgvAKRrzQ==",
+ "node_modules/@nicolo-ribaudo/eslint-scope-5-internals": {
+ "version": "5.1.1-v1",
+ "resolved": "https://registry.npmjs.org/@nicolo-ribaudo/eslint-scope-5-internals/-/eslint-scope-5-internals-5.1.1-v1.tgz",
+ "integrity": "sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==",
"dev": true,
"peer": true,
"dependencies": {
- "@babel/runtime": "^7.21.0",
- "@emotion/is-prop-valid": "^1.2.0",
- "@mui/types": "^7.2.4",
- "@mui/utils": "^5.12.3",
- "@popperjs/core": "^2.11.7",
- "clsx": "^1.2.1",
- "prop-types": "^15.8.1",
- "react-is": "^18.2.0"
- },
- "engines": {
- "node": ">=12.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/mui"
- },
- "peerDependencies": {
- "@types/react": "^17.0.0 || ^18.0.0",
- "react": "^17.0.0 || ^18.0.0",
- "react-dom": "^17.0.0 || ^18.0.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
+ "eslint-scope": "5.1.1"
}
},
- "node_modules/@mui/base/node_modules/react-is": {
- "version": "18.2.0",
- "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz",
- "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==",
+ "node_modules/@nicolo-ribaudo/eslint-scope-5-internals/node_modules/eslint-scope": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz",
+ "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==",
"dev": true,
- "peer": true
+ "peer": true,
+ "dependencies": {
+ "esrecurse": "^4.3.0",
+ "estraverse": "^4.1.1"
+ },
+ "engines": {
+ "node": ">=8.0.0"
+ }
},
- "node_modules/@mui/core-downloads-tracker": {
- "version": "5.12.3",
- "resolved": "https://registry.npmjs.org/@mui/core-downloads-tracker/-/core-downloads-tracker-5.12.3.tgz",
- "integrity": "sha512-yiJZ+knaknPHuRKhRk4L6XiwppwkAahVal3LuYpvBH7GkA2g+D9WLEXOEnNYtVFUggyKf6fWGLGnx0iqzkU5YA==",
+ "node_modules/@nicolo-ribaudo/eslint-scope-5-internals/node_modules/estraverse": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz",
+ "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==",
"dev": true,
"peer": true,
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/mui"
+ "engines": {
+ "node": ">=4.0"
}
},
- "node_modules/@mui/material": {
- "version": "5.12.3",
- "resolved": "https://registry.npmjs.org/@mui/material/-/material-5.12.3.tgz",
- "integrity": "sha512-xNmKlrEN4HsTaKFNLZfc7ie7CXx2YqEeO//hsXZx2p3MGtDdeMr2sV3jC4hsFs57RhQlF79weY7uVvC8xSuVbg==",
+ "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,
- "peer": true,
"dependencies": {
- "@babel/runtime": "^7.21.0",
- "@mui/base": "5.0.0-alpha.128",
- "@mui/core-downloads-tracker": "^5.12.3",
- "@mui/system": "^5.12.3",
- "@mui/types": "^7.2.4",
- "@mui/utils": "^5.12.3",
- "@types/react-transition-group": "^4.4.5",
- "clsx": "^1.2.1",
- "csstype": "^3.1.2",
- "prop-types": "^15.8.1",
- "react-is": "^18.2.0",
- "react-transition-group": "^4.4.5"
+ "@nodelib/fs.stat": "2.0.5",
+ "run-parallel": "^1.1.9"
},
"engines": {
- "node": ">=12.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/mui"
- },
- "peerDependencies": {
- "@emotion/react": "^11.5.0",
- "@emotion/styled": "^11.3.0",
- "@types/react": "^17.0.0 || ^18.0.0",
- "react": "^17.0.0 || ^18.0.0",
- "react-dom": "^17.0.0 || ^18.0.0"
- },
- "peerDependenciesMeta": {
- "@emotion/react": {
- "optional": true
- },
- "@emotion/styled": {
- "optional": true
- },
- "@types/react": {
- "optional": true
- }
+ "node": ">= 8"
}
},
- "node_modules/@mui/material/node_modules/react-is": {
- "version": "18.2.0",
- "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz",
- "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==",
+ "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,
- "peer": true
+ "engines": {
+ "node": ">= 8"
+ }
},
- "node_modules/@mui/private-theming": {
- "version": "5.12.3",
- "resolved": "https://registry.npmjs.org/@mui/private-theming/-/private-theming-5.12.3.tgz",
- "integrity": "sha512-o1e7Z1Bp27n4x2iUHhegV4/Jp6H3T6iBKHJdLivS5GbwsuAE/5l4SnZ+7+K+e5u9TuhwcAKZLkjvqzkDe8zqfA==",
+ "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,
- "peer": true,
"dependencies": {
- "@babel/runtime": "^7.21.0",
- "@mui/utils": "^5.12.3",
- "prop-types": "^15.8.1"
- },
- "engines": {
- "node": ">=12.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/mui"
- },
- "peerDependencies": {
- "@types/react": "^17.0.0 || ^18.0.0",
- "react": "^17.0.0 || ^18.0.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@mui/styled-engine": {
- "version": "5.12.3",
- "resolved": "https://registry.npmjs.org/@mui/styled-engine/-/styled-engine-5.12.3.tgz",
- "integrity": "sha512-AhZtiRyT8Bjr7fufxE/mLS+QJ3LxwX1kghIcM2B2dvJzSSg9rnIuXDXM959QfUVIM3C8U4x3mgVoPFMQJvc4/g==",
- "dev": true,
- "peer": true,
- "dependencies": {
- "@babel/runtime": "^7.21.0",
- "@emotion/cache": "^11.10.8",
- "csstype": "^3.1.2",
- "prop-types": "^15.8.1"
- },
- "engines": {
- "node": ">=12.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/mui"
- },
- "peerDependencies": {
- "@emotion/react": "^11.4.1",
- "@emotion/styled": "^11.3.0",
- "react": "^17.0.0 || ^18.0.0"
- },
- "peerDependenciesMeta": {
- "@emotion/react": {
- "optional": true
- },
- "@emotion/styled": {
- "optional": true
- }
- }
- },
- "node_modules/@mui/system": {
- "version": "5.12.3",
- "resolved": "https://registry.npmjs.org/@mui/system/-/system-5.12.3.tgz",
- "integrity": "sha512-JB/6sypHqeJCqwldWeQ1MKkijH829EcZAKKizxbU2MJdxGG5KSwZvTBa5D9qiJUA1hJFYYupjiuy9ZdJt6rV6w==",
- "dev": true,
- "peer": true,
- "dependencies": {
- "@babel/runtime": "^7.21.0",
- "@mui/private-theming": "^5.12.3",
- "@mui/styled-engine": "^5.12.3",
- "@mui/types": "^7.2.4",
- "@mui/utils": "^5.12.3",
- "clsx": "^1.2.1",
- "csstype": "^3.1.2",
- "prop-types": "^15.8.1"
+ "@nodelib/fs.scandir": "2.1.5",
+ "fastq": "^1.6.0"
},
"engines": {
- "node": ">=12.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/mui"
- },
- "peerDependencies": {
- "@emotion/react": "^11.5.0",
- "@emotion/styled": "^11.3.0",
- "@types/react": "^17.0.0 || ^18.0.0",
- "react": "^17.0.0 || ^18.0.0"
- },
- "peerDependenciesMeta": {
- "@emotion/react": {
- "optional": true
- },
- "@emotion/styled": {
- "optional": true
- },
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@mui/types": {
- "version": "7.2.4",
- "resolved": "https://registry.npmjs.org/@mui/types/-/types-7.2.4.tgz",
- "integrity": "sha512-LBcwa8rN84bKF+f5sDyku42w1NTxaPgPyYKODsh01U1fVstTClbUoSA96oyRBnSNyEiAVjKm6Gwx9vjR+xyqHA==",
- "dev": true,
- "peer": true,
- "peerDependencies": {
- "@types/react": "*"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
+ "node": ">= 8"
}
},
- "node_modules/@mui/utils": {
- "version": "5.12.3",
- "resolved": "https://registry.npmjs.org/@mui/utils/-/utils-5.12.3.tgz",
- "integrity": "sha512-D/Z4Ub3MRl7HiUccid7sQYclTr24TqUAQFFlxHQF8FR177BrCTQ0JJZom7EqYjZCdXhwnSkOj2ph685MSKNtIA==",
+ "node_modules/@phenomnomnominal/tsquery": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/@phenomnomnominal/tsquery/-/tsquery-5.0.1.tgz",
+ "integrity": "sha512-3nVv+e2FQwsW8Aw6qTU6f+1rfcJ3hrcnvH/mu9i8YhxO+9sqbOfpL8m6PbET5+xKOlz/VSbp0RoYWYCtIsnmuA==",
"dev": true,
- "peer": true,
"dependencies": {
- "@babel/runtime": "^7.21.0",
- "@types/prop-types": "^15.7.5",
- "@types/react-is": "^16.7.1 || ^17.0.0",
- "prop-types": "^15.8.1",
- "react-is": "^18.2.0"
- },
- "engines": {
- "node": ">=12.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/mui"
+ "esquery": "^1.4.0"
},
"peerDependencies": {
- "react": "^17.0.0 || ^18.0.0"
- }
- },
- "node_modules/@mui/utils/node_modules/react-is": {
- "version": "18.2.0",
- "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz",
- "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==",
- "dev": true,
- "peer": true
- },
- "node_modules/@nicolo-ribaudo/eslint-scope-5-internals": {
- "version": "5.1.1-v1",
- "resolved": "https://registry.npmjs.org/@nicolo-ribaudo/eslint-scope-5-internals/-/eslint-scope-5-internals-5.1.1-v1.tgz",
- "integrity": "sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==",
- "dev": true,
- "peer": true,
- "dependencies": {
- "eslint-scope": "5.1.1"
- }
- },
- "node_modules/@nicolo-ribaudo/eslint-scope-5-internals/node_modules/eslint-scope": {
- "version": "5.1.1",
- "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz",
- "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==",
- "dev": true,
- "peer": true,
- "dependencies": {
- "esrecurse": "^4.3.0",
- "estraverse": "^4.1.1"
- },
- "engines": {
- "node": ">=8.0.0"
+ "typescript": "^3 || ^4 || ^5"
}
},
- "node_modules/@nicolo-ribaudo/eslint-scope-5-internals/node_modules/estraverse": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz",
- "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==",
+ "node_modules/@pkgjs/parseargs": {
+ "version": "0.11.0",
+ "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz",
+ "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==",
"dev": true,
+ "optional": true,
"peer": true,
"engines": {
- "node": ">=4.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/@phenomnomnominal/tsquery": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/@phenomnomnominal/tsquery/-/tsquery-4.2.0.tgz",
- "integrity": "sha512-hR2U3uVcrrdkuG30ItQ+uFDs4ncZAybxWG0OjTE8ptPzVoU7GVeXpy+vMU8zX9EbmjGeITPw/su5HjYQyAH8bA==",
- "dev": true,
- "dependencies": {
- "esquery": "^1.0.1"
- },
- "peerDependencies": {
- "typescript": "^3 || ^4"
+ "node": ">=14"
}
},
"node_modules/@pmmmwh/react-refresh-webpack-plugin": {
- "version": "0.5.10",
- "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.10.tgz",
- "integrity": "sha512-j0Ya0hCFZPd4x40qLzbhGsh9TMtdb+CJQiso+WxLOPNasohq9cc5SNUcwsZaRH6++Xh91Xkm/xHCkuIiIu0LUA==",
+ "version": "0.5.11",
+ "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.11.tgz",
+ "integrity": "sha512-7j/6vdTym0+qZ6u4XbSAxrWBGYSdCfTzySkj7WAFgDLmSyWlOrWvpyzxlFh5jtw9dn0oL/jtW+06XfFiisN3JQ==",
"dev": true,
"peer": true,
"dependencies": {
@@ -4495,7 +3939,7 @@
"@types/webpack": "4.x || 5.x",
"react-refresh": ">=0.10.0 <1.0.0",
"sockjs-client": "^1.4.0",
- "type-fest": ">=0.17.0 <4.0.0",
+ "type-fest": ">=0.17.0 <5.0.0",
"webpack": ">=4.43.0 <6.0.0",
"webpack-dev-server": "3.x || 4.x",
"webpack-hot-middleware": "2.x",
@@ -4522,21 +3966,20 @@
}
}
},
- "node_modules/@popperjs/core": {
- "version": "2.11.7",
- "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.7.tgz",
- "integrity": "sha512-Cr4OjIkipTtcXKjAsm8agyleBuDHvxzeBoa1v543lbv1YaIwQjESsVcmjiWiPEbC1FIeHOG/Op9kdCmAmiS3Kw==",
+ "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/source-map": {
+ "version": "0.7.4",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz",
+ "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==",
"dev": true,
"peer": true,
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/popperjs"
+ "engines": {
+ "node": ">= 8"
}
},
"node_modules/@reduxjs/toolkit": {
- "version": "1.9.5",
- "resolved": "https://registry.npmjs.org/@reduxjs/toolkit/-/toolkit-1.9.5.tgz",
- "integrity": "sha512-Rt97jHmfTeaxL4swLRNPD/zV4OxTes4la07Xc4hetpUW/vc75t5m1ANyxG6ymnEQ2FsLQsoMlYB2vV1sO3m8tQ==",
+ "version": "1.9.7",
+ "resolved": "https://registry.npmjs.org/@reduxjs/toolkit/-/toolkit-1.9.7.tgz",
+ "integrity": "sha512-t7v8ZPxhhKgOKtU+uyJT13lu4vL7az5aFi4IdoDs/eS548edn2M8Ik9h8fxgvMjGoAUVFSt6ZC1P5cWmQ014QQ==",
"dev": true,
"peer": true,
"dependencies": {
@@ -4653,9 +4096,9 @@
"peer": true
},
"node_modules/@rushstack/eslint-patch": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.2.0.tgz",
- "integrity": "sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg==",
+ "version": "1.7.2",
+ "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.7.2.tgz",
+ "integrity": "sha512-RbhOOTCNoCrbfkRyoXODZp75MlpiHMgbE5MEBZAnnnLyQNgrigEj4p0lzsMDyc1zVsJDLrivB58tgg3emX0eEA==",
"dev": true,
"peer": true
},
@@ -4850,6 +4293,36 @@
"url": "https://github.com/sponsors/gregberge"
}
},
+ "node_modules/@svgr/core/node_modules/camelcase": {
+ "version": "6.3.0",
+ "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz",
+ "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==",
+ "dev": true,
+ "peer": true,
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/@svgr/core/node_modules/cosmiconfig": {
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz",
+ "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==",
+ "dev": true,
+ "peer": true,
+ "dependencies": {
+ "@types/parse-json": "^4.0.0",
+ "import-fresh": "^3.2.1",
+ "parse-json": "^5.0.0",
+ "path-type": "^4.0.0",
+ "yaml": "^1.10.0"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
"node_modules/@svgr/hast-util-to-babel-ast": {
"version": "5.5.0",
"resolved": "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-5.5.0.tgz",
@@ -4906,6 +4379,23 @@
"url": "https://github.com/sponsors/gregberge"
}
},
+ "node_modules/@svgr/plugin-svgo/node_modules/cosmiconfig": {
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz",
+ "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==",
+ "dev": true,
+ "peer": true,
+ "dependencies": {
+ "@types/parse-json": "^4.0.0",
+ "import-fresh": "^3.2.1",
+ "parse-json": "^5.0.0",
+ "path-type": "^4.0.0",
+ "yaml": "^1.10.0"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
"node_modules/@svgr/plugin-svgo/node_modules/deepmerge": {
"version": "4.3.1",
"resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz",
@@ -4983,9 +4473,9 @@
"devOptional": true
},
"node_modules/@types/babel__core": {
- "version": "7.20.0",
- "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.0.tgz",
- "integrity": "sha512-+n8dL/9GWblDO0iU6eZAwEIJVr5DWigtle+Q6HLOrh/pdbXOhOtqzq8VPPE2zvNJzSKY4vH/z3iT3tn0A3ypiQ==",
+ "version": "7.20.5",
+ "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz",
+ "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==",
"dependencies": {
"@babel/parser": "^7.20.7",
"@babel/types": "^7.20.7",
@@ -4995,34 +4485,34 @@
}
},
"node_modules/@types/babel__generator": {
- "version": "7.6.4",
- "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz",
- "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==",
+ "version": "7.6.8",
+ "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.8.tgz",
+ "integrity": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==",
"dependencies": {
"@babel/types": "^7.0.0"
}
},
"node_modules/@types/babel__template": {
- "version": "7.4.1",
- "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz",
- "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==",
+ "version": "7.4.4",
+ "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz",
+ "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==",
"dependencies": {
"@babel/parser": "^7.1.0",
"@babel/types": "^7.0.0"
}
},
"node_modules/@types/babel__traverse": {
- "version": "7.18.5",
- "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.18.5.tgz",
- "integrity": "sha512-enCvTL8m/EHS/zIvJno9nE+ndYPh1/oNFzRYRmtUqJICG2VnCSBzMLW5VN2KCQU91f23tsNKR8v7VJJQMatl7Q==",
+ "version": "7.20.5",
+ "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.5.tgz",
+ "integrity": "sha512-WXCyOcRtH37HAUkpXhUduaxdm82b4GSlyTqajXviN4EfiuPgNYR109xMCKvpl6zPIpua0DGlMEDCq+g8EdoheQ==",
"dependencies": {
- "@babel/types": "^7.3.0"
+ "@babel/types": "^7.20.7"
}
},
"node_modules/@types/body-parser": {
- "version": "1.19.2",
- "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.2.tgz",
- "integrity": "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==",
+ "version": "1.19.5",
+ "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.5.tgz",
+ "integrity": "sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==",
"dev": true,
"peer": true,
"dependencies": {
@@ -5031,9 +4521,9 @@
}
},
"node_modules/@types/bonjour": {
- "version": "3.5.10",
- "resolved": "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.10.tgz",
- "integrity": "sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==",
+ "version": "3.5.13",
+ "resolved": "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.13.tgz",
+ "integrity": "sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==",
"dev": true,
"peer": true,
"dependencies": {
@@ -5041,9 +4531,9 @@
}
},
"node_modules/@types/connect": {
- "version": "3.4.35",
- "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz",
- "integrity": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==",
+ "version": "3.4.38",
+ "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.38.tgz",
+ "integrity": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==",
"dev": true,
"peer": true,
"dependencies": {
@@ -5051,9 +4541,9 @@
}
},
"node_modules/@types/connect-history-api-fallback": {
- "version": "1.5.0",
- "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.0.tgz",
- "integrity": "sha512-4x5FkPpLipqwthjPsF7ZRbOv3uoLUFkTA9G9v583qi4pACvq0uTELrB8OLUzPWUI4IJIyvM85vzkV1nyiI2Lig==",
+ "version": "1.5.4",
+ "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.4.tgz",
+ "integrity": "sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==",
"dev": true,
"peer": true,
"dependencies": {
@@ -5062,9 +4552,9 @@
}
},
"node_modules/@types/eslint": {
- "version": "8.37.0",
- "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.37.0.tgz",
- "integrity": "sha512-Piet7dG2JBuDIfohBngQ3rCt7MgO9xCO4xIMKxBThCq5PNRB91IjlJ10eJVwfoNtvTErmxLzwBZ7rHZtbOMmFQ==",
+ "version": "8.56.2",
+ "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.56.2.tgz",
+ "integrity": "sha512-uQDwm1wFHmbBbCZCqAlq6Do9LYwByNZHWzXppSnay9SuwJ+VRbjkbLABer54kcPnMSlG6Fdiy2yaFXm/z9Z5gw==",
"dev": true,
"peer": true,
"dependencies": {
@@ -5073,9 +4563,9 @@
}
},
"node_modules/@types/eslint-scope": {
- "version": "3.7.4",
- "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz",
- "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==",
+ "version": "3.7.7",
+ "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz",
+ "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==",
"dev": true,
"peer": true,
"dependencies": {
@@ -5084,16 +4574,16 @@
}
},
"node_modules/@types/estree": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.1.tgz",
- "integrity": "sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==",
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz",
+ "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==",
"dev": true,
"peer": true
},
"node_modules/@types/express": {
- "version": "4.17.17",
- "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.17.tgz",
- "integrity": "sha512-Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q==",
+ "version": "4.17.21",
+ "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.21.tgz",
+ "integrity": "sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==",
"dev": true,
"peer": true,
"dependencies": {
@@ -5104,9 +4594,9 @@
}
},
"node_modules/@types/express-serve-static-core": {
- "version": "4.17.34",
- "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.34.tgz",
- "integrity": "sha512-fvr49XlCGoUj2Pp730AItckfjat4WNb0lb3kfrLWffd+RLeoGAMsq7UOy04PAPtoL01uKwcp6u8nhzpgpDYr3w==",
+ "version": "4.17.42",
+ "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.42.tgz",
+ "integrity": "sha512-ckM3jm2bf/MfB3+spLPWYPUH573plBFwpOhqQ2WottxYV85j1HQFlxmnTq57X1yHY9awZPig06hL/cLMgNWHIQ==",
"dev": true,
"peer": true,
"dependencies": {
@@ -5117,17 +4607,17 @@
}
},
"node_modules/@types/graceful-fs": {
- "version": "4.1.6",
- "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.6.tgz",
- "integrity": "sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==",
+ "version": "4.1.9",
+ "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz",
+ "integrity": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==",
"dependencies": {
"@types/node": "*"
}
},
"node_modules/@types/hoist-non-react-statics": {
- "version": "3.3.1",
- "resolved": "https://registry.npmjs.org/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.1.tgz",
- "integrity": "sha512-iMIqiko6ooLrTh1joXodJK5X9xeEALT1kM5G3ZLhD3hszxBdIEd5C75U834D9mLcINgD4OyZf5uQXjkuYydWvA==",
+ "version": "3.3.5",
+ "resolved": "https://registry.npmjs.org/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.5.tgz",
+ "integrity": "sha512-SbcrWzkKBw2cdwRTwQAswfpB9g9LJWfjtUeW/jvNwbhC8cpmmNYVePa+ncbUe0rGTQ7G3Ff6mYUN2VMfLVr+Sg==",
"dev": true,
"dependencies": {
"@types/react": "*",
@@ -5141,10 +4631,17 @@
"dev": true,
"peer": true
},
+ "node_modules/@types/http-errors": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.4.tgz",
+ "integrity": "sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==",
+ "dev": true,
+ "peer": true
+ },
"node_modules/@types/http-proxy": {
- "version": "1.17.11",
- "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.11.tgz",
- "integrity": "sha512-HC8G7c1WmaF2ekqpnFq626xd3Zz0uvaqFmBJNRZCGEZCXkvSdJoNFn/8Ygbd9fKNQj8UzLdCETaI0UWPAjK7IA==",
+ "version": "1.17.14",
+ "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.14.tgz",
+ "integrity": "sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w==",
"dev": true,
"peer": true,
"dependencies": {
@@ -5152,30 +4649,30 @@
}
},
"node_modules/@types/istanbul-lib-coverage": {
- "version": "2.0.4",
- "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz",
- "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g=="
+ "version": "2.0.6",
+ "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz",
+ "integrity": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w=="
},
"node_modules/@types/istanbul-lib-report": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz",
- "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==",
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz",
+ "integrity": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==",
"dependencies": {
"@types/istanbul-lib-coverage": "*"
}
},
"node_modules/@types/istanbul-reports": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz",
- "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==",
+ "version": "3.0.4",
+ "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz",
+ "integrity": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==",
"dependencies": {
"@types/istanbul-lib-report": "*"
}
},
"node_modules/@types/json-schema": {
- "version": "7.0.11",
- "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz",
- "integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==",
+ "version": "7.0.15",
+ "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz",
+ "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==",
"dev": true
},
"node_modules/@types/json5": {
@@ -5185,16 +4682,16 @@
"dev": true
},
"node_modules/@types/lodash": {
- "version": "4.14.194",
- "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.194.tgz",
- "integrity": "sha512-r22s9tAS7imvBt2lyHC9B8AGwWnXaYb1tY09oyLkXDs4vArpYJzw09nj8MLx5VfciBPGIb+ZwG0ssYnEPJxn/g==",
+ "version": "4.14.202",
+ "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.202.tgz",
+ "integrity": "sha512-OvlIYQK9tNneDlS0VN54LLd5uiPCBOp7gS5Z0f1mjoJYBrtStzgmJBxONW3U6OZqdtNzZPmn9BS/7WI7BFFcFQ==",
"dev": true,
"peer": true
},
"node_modules/@types/mime": {
- "version": "1.3.2",
- "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.2.tgz",
- "integrity": "sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==",
+ "version": "1.3.5",
+ "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.5.tgz",
+ "integrity": "sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==",
"dev": true,
"peer": true
},
@@ -5209,6 +4706,16 @@
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.5.1.tgz",
"integrity": "sha512-4tT2UrL5LBqDwoed9wZ6N3umC4Yhz3W3FloMmiiG4JwmUJWpie0c7lcnUNd4gtMKuDEO4wRVS8B6Xa0uMRsMKg=="
},
+ "node_modules/@types/node-forge": {
+ "version": "1.3.11",
+ "resolved": "https://registry.npmjs.org/@types/node-forge/-/node-forge-1.3.11.tgz",
+ "integrity": "sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==",
+ "dev": true,
+ "peer": true,
+ "dependencies": {
+ "@types/node": "*"
+ }
+ },
"node_modules/@types/normalize-package-data": {
"version": "2.4.4",
"resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz",
@@ -5216,87 +4723,55 @@
"dev": true
},
"node_modules/@types/parse-json": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz",
- "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==",
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.2.tgz",
+ "integrity": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==",
"dev": true,
"peer": true
},
"node_modules/@types/prettier": {
- "version": "2.7.2",
- "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.2.tgz",
- "integrity": "sha512-KufADq8uQqo1pYKVIYzfKbJfBAc0sOeXqGbFaSpv8MRmC/zXgowNZmFcbngndGk922QDmOASEXUZCaY48gs4cg=="
+ "version": "2.7.3",
+ "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.3.tgz",
+ "integrity": "sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA=="
},
"node_modules/@types/prop-types": {
- "version": "15.7.5",
- "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz",
- "integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==",
+ "version": "15.7.11",
+ "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.11.tgz",
+ "integrity": "sha512-ga8y9v9uyeiLdpKddhxYQkxNDrfvuPrlFb0N1qnZZByvcElJaXthF1UhvCh9TLWJBEHeNtdnbysW7Y6Uq8CVng==",
"dev": true
},
"node_modules/@types/q": {
- "version": "1.5.5",
- "resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.5.tgz",
- "integrity": "sha512-L28j2FcJfSZOnL1WBjDYp2vUHCeIFlyYI/53EwD/rKUBQ7MtUUfbQWiyKJGpcnv4/WgrhWsFKrcPstcAt/J0tQ==",
+ "version": "1.5.8",
+ "resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.8.tgz",
+ "integrity": "sha512-hroOstUScF6zhIi+5+x0dzqrHA1EJi+Irri6b1fxolMTqqHIV/Cg77EtnQcZqZCu8hR3mX2BzIxN4/GzI68Kfw==",
"dev": true,
"peer": true
},
"node_modules/@types/qs": {
- "version": "6.9.7",
- "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz",
- "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==",
+ "version": "6.9.11",
+ "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.11.tgz",
+ "integrity": "sha512-oGk0gmhnEJK4Yyk+oI7EfXsLayXatCWPHary1MtcmbAifkobT9cM9yutG/hZKIseOU0MqbIwQ/u2nn/Gb+ltuQ==",
"dev": true,
"peer": true
},
"node_modules/@types/range-parser": {
- "version": "1.2.4",
- "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz",
- "integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==",
+ "version": "1.2.7",
+ "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.7.tgz",
+ "integrity": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==",
"dev": true,
"peer": true
},
"node_modules/@types/react": {
- "version": "18.2.6",
- "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.6.tgz",
- "integrity": "sha512-wRZClXn//zxCFW+ye/D2qY65UsYP1Fpex2YXorHc8awoNamkMZSvBxwxdYVInsHOZZd2Ppq8isnSzJL5Mpf8OA==",
- "dev": true,
- "dependencies": {
- "@types/prop-types": "*",
- "@types/scheduler": "*",
- "csstype": "^3.0.2"
- }
- },
- "node_modules/@types/react-is": {
- "version": "17.0.4",
- "resolved": "https://registry.npmjs.org/@types/react-is/-/react-is-17.0.4.tgz",
- "integrity": "sha512-FLzd0K9pnaEvKz4D1vYxK9JmgQPiGk1lu23o1kqGsLeT0iPbRSF7b76+S5T9fD8aRa0B8bY7I/3DebEj+1ysBA==",
- "dev": true,
- "peer": true,
- "dependencies": {
- "@types/react": "^17"
- }
- },
- "node_modules/@types/react-is/node_modules/@types/react": {
- "version": "17.0.59",
- "resolved": "https://registry.npmjs.org/@types/react/-/react-17.0.59.tgz",
- "integrity": "sha512-gSON5zWYIGyoBcycCE75E9+r6dCC2dHdsrVkOEiIYNU5+Q28HcBAuqvDuxHcCbMfHBHdeT5Tva/AFn3rnMKE4g==",
+ "version": "18.2.52",
+ "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.52.tgz",
+ "integrity": "sha512-E/YjWh3tH+qsLKaUzgpZb5AY0ChVa+ZJzF7ogehVILrFpdQk6nC/WXOv0bfFEABbXbgNxLBGU7IIZByPKb6eBw==",
"dev": true,
- "peer": true,
"dependencies": {
"@types/prop-types": "*",
"@types/scheduler": "*",
"csstype": "^3.0.2"
}
},
- "node_modules/@types/react-transition-group": {
- "version": "4.4.6",
- "resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.6.tgz",
- "integrity": "sha512-VnCdSxfcm08KjsJVQcfBmhEQAPnLB8G08hAxn39azX1qYBQ/5RVQuoHuKIcfKOdncuaUvEpFKFzEvbtIMsfVew==",
- "dev": true,
- "peer": true,
- "dependencies": {
- "@types/react": "*"
- }
- },
"node_modules/@types/resolve": {
"version": "1.17.1",
"resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-1.17.1.tgz",
@@ -5315,21 +4790,21 @@
"peer": true
},
"node_modules/@types/scheduler": {
- "version": "0.16.3",
- "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.3.tgz",
- "integrity": "sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==",
+ "version": "0.16.8",
+ "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.8.tgz",
+ "integrity": "sha512-WZLiwShhwLRmeV6zH+GkbOFT6Z6VklCItrDioxUnv+u4Ll+8vKeFySoFyK/0ctcRpOmwAicELfmys1sDc/Rw+A==",
"dev": true
},
"node_modules/@types/semver": {
- "version": "7.5.0",
- "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.0.tgz",
- "integrity": "sha512-G8hZ6XJiHnuhQKR7ZmysCeJWE08o8T0AXtk5darsCaTVsYZhhgUrq53jizaR2FvsoeCwJhlmwTjkXBY5Pn/ZHw==",
+ "version": "7.5.6",
+ "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.6.tgz",
+ "integrity": "sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A==",
"dev": true
},
"node_modules/@types/send": {
- "version": "0.17.1",
- "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.1.tgz",
- "integrity": "sha512-Cwo8LE/0rnvX7kIIa3QHCkcuF21c05Ayb0ZfxPiv0W8VRiZiNW/WuRupHKpqqGVGf7SUA44QSOUKaEd9lIrd/Q==",
+ "version": "0.17.4",
+ "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.4.tgz",
+ "integrity": "sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==",
"dev": true,
"peer": true,
"dependencies": {
@@ -5338,9 +4813,9 @@
}
},
"node_modules/@types/serve-index": {
- "version": "1.9.1",
- "resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.1.tgz",
- "integrity": "sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==",
+ "version": "1.9.4",
+ "resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.4.tgz",
+ "integrity": "sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==",
"dev": true,
"peer": true,
"dependencies": {
@@ -5348,20 +4823,21 @@
}
},
"node_modules/@types/serve-static": {
- "version": "1.15.1",
- "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.1.tgz",
- "integrity": "sha512-NUo5XNiAdULrJENtJXZZ3fHtfMolzZwczzBbnAeBbqBwG+LaG6YaJtuwzwGSQZ2wsCrxjEhNNjAkKigy3n8teQ==",
+ "version": "1.15.5",
+ "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.5.tgz",
+ "integrity": "sha512-PDRk21MnK70hja/YF8AHfC7yIsiQHn1rcXx7ijCFBX/k+XQJhQT/gw3xekXKJvx+5SXaMMS8oqQy09Mzvz2TuQ==",
"dev": true,
"peer": true,
"dependencies": {
+ "@types/http-errors": "*",
"@types/mime": "*",
"@types/node": "*"
}
},
"node_modules/@types/sockjs": {
- "version": "0.3.33",
- "resolved": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.33.tgz",
- "integrity": "sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==",
+ "version": "0.3.36",
+ "resolved": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.36.tgz",
+ "integrity": "sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==",
"dev": true,
"peer": true,
"dependencies": {
@@ -5369,14 +4845,14 @@
}
},
"node_modules/@types/stack-utils": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz",
- "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw=="
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.3.tgz",
+ "integrity": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw=="
},
"node_modules/@types/trusted-types": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.3.tgz",
- "integrity": "sha512-NfQ4gyz38SL8sDNrSixxU2Os1a5xcdFxipAFxYEuLUlvU2uDwS4NUpsImcf1//SlWItCVMMLiylsxbmNMToV/g==",
+ "version": "2.0.7",
+ "resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.7.tgz",
+ "integrity": "sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==",
"dev": true,
"peer": true
},
@@ -5394,9 +4870,9 @@
"peer": true
},
"node_modules/@types/ws": {
- "version": "8.5.4",
- "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.4.tgz",
- "integrity": "sha512-zdQDHKUgcX/zBc4GrwsE/7dVdAD8JR4EuiAXiiUhhfyIJXXb2+PrGshFyeXWQPMmmZ2XxgaqclgpIC7eTXc1mg==",
+ "version": "8.5.10",
+ "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.10.tgz",
+ "integrity": "sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==",
"dev": true,
"peer": true,
"dependencies": {
@@ -5404,31 +4880,31 @@
}
},
"node_modules/@types/yargs": {
- "version": "16.0.5",
- "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.5.tgz",
- "integrity": "sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==",
+ "version": "16.0.9",
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz",
+ "integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==",
"dependencies": {
"@types/yargs-parser": "*"
}
},
"node_modules/@types/yargs-parser": {
- "version": "21.0.0",
- "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz",
- "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA=="
+ "version": "21.0.3",
+ "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz",
+ "integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ=="
},
"node_modules/@typescript-eslint/eslint-plugin": {
- "version": "5.59.5",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.59.5.tgz",
- "integrity": "sha512-feA9xbVRWJZor+AnLNAr7A8JRWeZqHUf4T9tlP+TN04b05pFVhO5eN7/O93Y/1OUlLMHKbnJisgDURs/qvtqdg==",
+ "version": "5.62.0",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.62.0.tgz",
+ "integrity": "sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==",
"dev": true,
"peer": true,
"dependencies": {
"@eslint-community/regexpp": "^4.4.0",
- "@typescript-eslint/scope-manager": "5.59.5",
- "@typescript-eslint/type-utils": "5.59.5",
- "@typescript-eslint/utils": "5.59.5",
+ "@typescript-eslint/scope-manager": "5.62.0",
+ "@typescript-eslint/type-utils": "5.62.0",
+ "@typescript-eslint/utils": "5.62.0",
"debug": "^4.3.4",
- "grapheme-splitter": "^1.0.4",
+ "graphemer": "^1.4.0",
"ignore": "^5.2.0",
"natural-compare-lite": "^1.4.0",
"semver": "^7.3.7",
@@ -5452,12 +4928,12 @@
}
},
"node_modules/@typescript-eslint/experimental-utils": {
- "version": "5.59.5",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-5.59.5.tgz",
- "integrity": "sha512-ArcSSBifznsKNA/p4h2w3Olt/T8AZf3bNglxD8OnuTsSDJbRpjPPmI8qpr6ijyvk1J/T3GMJHwRIluS/Kuz9kA==",
+ "version": "5.62.0",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-5.62.0.tgz",
+ "integrity": "sha512-RTXpeB3eMkpoclG3ZHft6vG/Z30azNHuqY6wKPBHlVMZFuEvrtlEDe8gMqDb+SO+9hjC/pLekeSCryf9vMZlCw==",
"dev": true,
"dependencies": {
- "@typescript-eslint/utils": "5.59.5"
+ "@typescript-eslint/utils": "5.62.0"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
@@ -5471,15 +4947,15 @@
}
},
"node_modules/@typescript-eslint/parser": {
- "version": "5.59.5",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.59.5.tgz",
- "integrity": "sha512-NJXQC4MRnF9N9yWqQE2/KLRSOLvrrlZb48NGVfBa+RuPMN6B7ZcK5jZOvhuygv4D64fRKnZI4L4p8+M+rfeQuw==",
+ "version": "5.62.0",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.62.0.tgz",
+ "integrity": "sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==",
"dev": true,
"peer": true,
"dependencies": {
- "@typescript-eslint/scope-manager": "5.59.5",
- "@typescript-eslint/types": "5.59.5",
- "@typescript-eslint/typescript-estree": "5.59.5",
+ "@typescript-eslint/scope-manager": "5.62.0",
+ "@typescript-eslint/types": "5.62.0",
+ "@typescript-eslint/typescript-estree": "5.62.0",
"debug": "^4.3.4"
},
"engines": {
@@ -5499,13 +4975,13 @@
}
},
"node_modules/@typescript-eslint/scope-manager": {
- "version": "5.59.5",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.59.5.tgz",
- "integrity": "sha512-jVecWwnkX6ZgutF+DovbBJirZcAxgxC0EOHYt/niMROf8p4PwxxG32Qdhj/iIQQIuOflLjNkxoXyArkcIP7C3A==",
+ "version": "5.62.0",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz",
+ "integrity": "sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==",
"dev": true,
"dependencies": {
- "@typescript-eslint/types": "5.59.5",
- "@typescript-eslint/visitor-keys": "5.59.5"
+ "@typescript-eslint/types": "5.62.0",
+ "@typescript-eslint/visitor-keys": "5.62.0"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
@@ -5516,14 +4992,14 @@
}
},
"node_modules/@typescript-eslint/type-utils": {
- "version": "5.59.5",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.59.5.tgz",
- "integrity": "sha512-4eyhS7oGym67/pSxA2mmNq7X164oqDYNnZCUayBwJZIRVvKpBCMBzFnFxjeoDeShjtO6RQBHBuwybuX3POnDqg==",
+ "version": "5.62.0",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.62.0.tgz",
+ "integrity": "sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==",
"dev": true,
"peer": true,
"dependencies": {
- "@typescript-eslint/typescript-estree": "5.59.5",
- "@typescript-eslint/utils": "5.59.5",
+ "@typescript-eslint/typescript-estree": "5.62.0",
+ "@typescript-eslint/utils": "5.62.0",
"debug": "^4.3.4",
"tsutils": "^3.21.0"
},
@@ -5544,9 +5020,9 @@
}
},
"node_modules/@typescript-eslint/types": {
- "version": "5.59.5",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.5.tgz",
- "integrity": "sha512-xkfRPHbqSH4Ggx4eHRIO/eGL8XL4Ysb4woL8c87YuAo8Md7AUjyWKa9YMwTL519SyDPrfEgKdewjkxNCVeJW7w==",
+ "version": "5.62.0",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.62.0.tgz",
+ "integrity": "sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==",
"dev": true,
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
@@ -5557,13 +5033,13 @@
}
},
"node_modules/@typescript-eslint/typescript-estree": {
- "version": "5.59.5",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.5.tgz",
- "integrity": "sha512-+XXdLN2CZLZcD/mO7mQtJMvCkzRfmODbeSKuMY/yXbGkzvA9rJyDY5qDYNoiz2kP/dmyAxXquL2BvLQLJFPQIg==",
+ "version": "5.62.0",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz",
+ "integrity": "sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==",
"dev": true,
"dependencies": {
- "@typescript-eslint/types": "5.59.5",
- "@typescript-eslint/visitor-keys": "5.59.5",
+ "@typescript-eslint/types": "5.62.0",
+ "@typescript-eslint/visitor-keys": "5.62.0",
"debug": "^4.3.4",
"globby": "^11.1.0",
"is-glob": "^4.0.3",
@@ -5584,17 +5060,17 @@
}
},
"node_modules/@typescript-eslint/utils": {
- "version": "5.59.5",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.59.5.tgz",
- "integrity": "sha512-sCEHOiw+RbyTii9c3/qN74hYDPNORb8yWCoPLmB7BIflhplJ65u2PBpdRla12e3SSTJ2erRkPjz7ngLHhUegxA==",
+ "version": "5.62.0",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.62.0.tgz",
+ "integrity": "sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==",
"dev": true,
"dependencies": {
"@eslint-community/eslint-utils": "^4.2.0",
"@types/json-schema": "^7.0.9",
"@types/semver": "^7.3.12",
- "@typescript-eslint/scope-manager": "5.59.5",
- "@typescript-eslint/types": "5.59.5",
- "@typescript-eslint/typescript-estree": "5.59.5",
+ "@typescript-eslint/scope-manager": "5.62.0",
+ "@typescript-eslint/types": "5.62.0",
+ "@typescript-eslint/typescript-estree": "5.62.0",
"eslint-scope": "^5.1.1",
"semver": "^7.3.7"
},
@@ -5632,12 +5108,12 @@
}
},
"node_modules/@typescript-eslint/visitor-keys": {
- "version": "5.59.5",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.5.tgz",
- "integrity": "sha512-qL+Oz+dbeBRTeyJTIy0eniD3uvqU7x+y1QceBismZ41hd4aBSRh8UAw4pZP0+XzLuPZmx4raNMq/I+59W2lXKA==",
+ "version": "5.62.0",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz",
+ "integrity": "sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==",
"dev": true,
"dependencies": {
- "@typescript-eslint/types": "5.59.5",
+ "@typescript-eslint/types": "5.62.0",
"eslint-visitor-keys": "^3.3.0"
},
"engines": {
@@ -5816,10 +5292,11 @@
}
},
"node_modules/@wrappid/core": {
- "version": "0.0.276",
- "resolved": "https://npm.pkg.github.com/download/@wrappid/core/0.0.276/1c315bf3c21a5a3a13b5bb87eedf3b09ed9184f7",
- "integrity": "sha512-qMXZPwGU3BcLmfVzGRW4BD5W7g2GnSNakckwDiP9+4h7J+QIH9TbuwKZF3tGk+M0cVPKhVB78YsbXBgHHRGi3A==",
+ "version": "0.0.408",
+ "resolved": "https://npm.pkg.github.com/download/@wrappid/core/0.0.408/7d9e2c061773e21399164c4ccbc255d48238b4b5",
+ "integrity": "sha512-zC1hdYKzMOMxT6VDDadooV+ENnAXYMmggAmRfTYwRi8RAMdq8HJT1TqoS1+4Lnlyhr87u2HktxeYR9x4BUAtIA==",
"dev": true,
+ "license": "MIT",
"peerDependencies": {
"@reduxjs/toolkit": "^1.9.1",
"formik": "^2.2.9",
@@ -5839,14 +5316,15 @@
}
},
"node_modules/@wrappid/styles": {
- "version": "0.0.88",
- "resolved": "https://npm.pkg.github.com/download/@wrappid/styles/0.0.88/2b74ff14154481caae3a924bcf412789745d3b69",
- "integrity": "sha512-Thalza6HDimmm/jXC3QlkQfIsWJahFjlzZaQQfNWaCtcjvjfGDOzyuZWcioEg/82ADREyYABWuIQAFaliZX7TQ==",
+ "version": "0.0.121",
+ "resolved": "https://npm.pkg.github.com/download/@wrappid/styles/0.0.121/208db10693c8d7e1bf26166f8496064160344490",
+ "integrity": "sha512-L3E5ATIzC11X2cbfPg6PnI5ziFTPbWWO23Ng6zxW2LiTmByeXvw6x9XzOyrrdKAGFZI2xooTy0d8PWnEEeP+8A==",
"dev": true,
+ "license": "MIT",
"peerDependencies": {
"@emotion/react": "^11.10.0",
"@emotion/styled": "^11.10.0",
- "@mui/material": "^5.10.2"
+ "react-redux": "^8.0.2"
}
},
"node_modules/@xtuc/ieee754": {
@@ -5866,7 +5344,14 @@
"node_modules/abab": {
"version": "2.0.6",
"resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz",
- "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA=="
+ "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==",
+ "deprecated": "Use your platform's native atob() and btoa() methods instead"
+ },
+ "node_modules/abbrev": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz",
+ "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==",
+ "dev": true
},
"node_modules/accepts": {
"version": "1.3.8",
@@ -5883,9 +5368,9 @@
}
},
"node_modules/acorn": {
- "version": "8.10.0",
- "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz",
- "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==",
+ "version": "8.11.3",
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz",
+ "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==",
"bin": {
"acorn": "bin/acorn"
},
@@ -5914,9 +5399,9 @@
}
},
"node_modules/acorn-import-assertions": {
- "version": "1.8.0",
- "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz",
- "integrity": "sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==",
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz",
+ "integrity": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==",
"dev": true,
"peer": true,
"peerDependencies": {
@@ -5976,14 +5461,14 @@
}
},
"node_modules/ajv": {
- "version": "6.12.6",
- "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
- "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
+ "version": "8.12.0",
+ "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz",
+ "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==",
"dev": true,
"dependencies": {
"fast-deep-equal": "^3.1.1",
- "fast-json-stable-stringify": "^2.0.0",
- "json-schema-traverse": "^0.4.1",
+ "json-schema-traverse": "^1.0.0",
+ "require-from-string": "^2.0.2",
"uri-js": "^4.2.2"
},
"funding": {
@@ -6009,52 +5494,26 @@
}
}
},
- "node_modules/ajv-formats/node_modules/ajv": {
- "version": "8.12.0",
- "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz",
- "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==",
+ "node_modules/ajv-keywords": {
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz",
+ "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==",
"dev": true,
"peer": true,
"dependencies": {
- "fast-deep-equal": "^3.1.1",
- "json-schema-traverse": "^1.0.0",
- "require-from-string": "^2.0.2",
- "uri-js": "^4.2.2"
+ "fast-deep-equal": "^3.1.3"
},
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/epoberezkin"
- }
- },
- "node_modules/ajv-formats/node_modules/json-schema-traverse": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
- "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
- "dev": true,
- "peer": true
- },
- "node_modules/ajv-keywords": {
- "version": "3.5.2",
- "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz",
- "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==",
- "dev": true,
- "peer": true,
"peerDependencies": {
- "ajv": "^6.9.1"
+ "ajv": "^8.8.2"
}
},
"node_modules/ansi-escapes": {
- "version": "4.3.2",
- "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz",
- "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==",
- "dependencies": {
- "type-fest": "^0.21.3"
- },
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz",
+ "integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==",
+ "dev": true,
"engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "node": ">=4"
}
},
"node_modules/ansi-html-community": {
@@ -6079,14 +5538,17 @@
}
},
"node_modules/ansi-styles": {
- "version": "3.2.1",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
- "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
"dependencies": {
- "color-convert": "^1.9.0"
+ "color-convert": "^2.0.1"
},
"engines": {
- "node": ">=4"
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
}
},
"node_modules/any-promise": {
@@ -6116,21 +5578,19 @@
"peer": true
},
"node_modules/argparse": {
- "version": "1.0.10",
- "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
- "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
- "dependencies": {
- "sprintf-js": "~1.0.2"
- }
+ "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/aria-query": {
- "version": "5.1.3",
- "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.1.3.tgz",
- "integrity": "sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==",
+ "version": "5.3.0",
+ "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz",
+ "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==",
"dev": true,
"peer": true,
"dependencies": {
- "deep-equal": "^2.0.5"
+ "dequal": "^2.0.3"
}
},
"node_modules/array-buffer-byte-length": {
@@ -6146,10 +5606,19 @@
"url": "https://github.com/sponsors/ljharb"
}
},
+ "node_modules/array-find-index": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz",
+ "integrity": "sha512-M1HQyIXcBGtVywBt8WVdim+lrNaK7VHp99Qt5pSNziXznKHViIBbXWtfRTpEFpF/c4FdfxNAsCCwPp5phBYJtw==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
"node_modules/array-flatten": {
- "version": "2.1.2",
- "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz",
- "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==",
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz",
+ "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==",
"dev": true,
"peer": true
},
@@ -6160,15 +5629,15 @@
"dev": true
},
"node_modules/array-includes": {
- "version": "3.1.6",
- "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz",
- "integrity": "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==",
+ "version": "3.1.7",
+ "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.7.tgz",
+ "integrity": "sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==",
"dev": true,
"dependencies": {
"call-bind": "^1.0.2",
- "define-properties": "^1.1.4",
- "es-abstract": "^1.20.4",
- "get-intrinsic": "^1.1.3",
+ "define-properties": "^1.2.0",
+ "es-abstract": "^1.22.1",
+ "get-intrinsic": "^1.2.1",
"is-string": "^1.0.7"
},
"engines": {
@@ -6187,15 +5656,34 @@
"node": ">=8"
}
},
+ "node_modules/array.prototype.findlastindex": {
+ "version": "1.2.3",
+ "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.3.tgz",
+ "integrity": "sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.2.0",
+ "es-abstract": "^1.22.1",
+ "es-shim-unscopables": "^1.0.0",
+ "get-intrinsic": "^1.2.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
"node_modules/array.prototype.flat": {
- "version": "1.3.1",
- "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz",
- "integrity": "sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==",
+ "version": "1.3.2",
+ "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz",
+ "integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==",
"dev": true,
"dependencies": {
"call-bind": "^1.0.2",
- "define-properties": "^1.1.4",
- "es-abstract": "^1.20.4",
+ "define-properties": "^1.2.0",
+ "es-abstract": "^1.22.1",
"es-shim-unscopables": "^1.0.0"
},
"engines": {
@@ -6206,14 +5694,14 @@
}
},
"node_modules/array.prototype.flatmap": {
- "version": "1.3.1",
- "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz",
- "integrity": "sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==",
+ "version": "1.3.2",
+ "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz",
+ "integrity": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==",
"dev": true,
"dependencies": {
"call-bind": "^1.0.2",
- "define-properties": "^1.1.4",
- "es-abstract": "^1.20.4",
+ "define-properties": "^1.2.0",
+ "es-abstract": "^1.22.1",
"es-shim-unscopables": "^1.0.0"
},
"engines": {
@@ -6224,15 +5712,15 @@
}
},
"node_modules/array.prototype.reduce": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/array.prototype.reduce/-/array.prototype.reduce-1.0.5.tgz",
- "integrity": "sha512-kDdugMl7id9COE8R7MHF5jWk7Dqt/fs4Pv+JXoICnYwqpjjjbUurz6w5fT5IG6brLdJhv6/VoHB0H7oyIBXd+Q==",
+ "version": "1.0.6",
+ "resolved": "https://registry.npmjs.org/array.prototype.reduce/-/array.prototype.reduce-1.0.6.tgz",
+ "integrity": "sha512-UW+Mz8LG/sPSU8jRDCjVr6J/ZKAGpHfwrZ6kWTG5qCxIEiXdVshqGnu5vEZA8S1y6X4aCSbQZ0/EEsfvEvBiSg==",
"dev": true,
"peer": true,
"dependencies": {
"call-bind": "^1.0.2",
- "define-properties": "^1.1.4",
- "es-abstract": "^1.20.4",
+ "define-properties": "^1.2.0",
+ "es-abstract": "^1.22.1",
"es-array-method-boxes-properly": "^1.0.0",
"is-string": "^1.0.7"
},
@@ -6244,16 +5732,37 @@
}
},
"node_modules/array.prototype.tosorted": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz",
- "integrity": "sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==",
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.2.tgz",
+ "integrity": "sha512-HuQCHOlk1Weat5jzStICBCd83NxiIMwqDg/dHEsoefabn/hJRj5pVdWcPUSpRrwhwxZOsQassMpgN/xRYFBMIg==",
"dev": true,
"dependencies": {
"call-bind": "^1.0.2",
- "define-properties": "^1.1.4",
- "es-abstract": "^1.20.4",
+ "define-properties": "^1.2.0",
+ "es-abstract": "^1.22.1",
"es-shim-unscopables": "^1.0.0",
- "get-intrinsic": "^1.1.3"
+ "get-intrinsic": "^1.2.1"
+ }
+ },
+ "node_modules/arraybuffer.prototype.slice": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.2.tgz",
+ "integrity": "sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==",
+ "dev": true,
+ "dependencies": {
+ "array-buffer-byte-length": "^1.0.0",
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.2.0",
+ "es-abstract": "^1.22.1",
+ "get-intrinsic": "^1.2.1",
+ "is-array-buffer": "^3.0.2",
+ "is-shared-array-buffer": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/arrify": {
@@ -6271,19 +5780,28 @@
"integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA=="
},
"node_modules/ast-types-flow": {
- "version": "0.0.7",
- "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz",
- "integrity": "sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==",
+ "version": "0.0.8",
+ "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.8.tgz",
+ "integrity": "sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==",
"dev": true,
"peer": true
},
"node_modules/async": {
- "version": "3.2.4",
- "resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz",
- "integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==",
+ "version": "3.2.5",
+ "resolved": "https://registry.npmjs.org/async/-/async-3.2.5.tgz",
+ "integrity": "sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==",
"dev": true,
"peer": true
},
+ "node_modules/asynciterator.prototype": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/asynciterator.prototype/-/asynciterator.prototype-1.0.0.tgz",
+ "integrity": "sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg==",
+ "dev": true,
+ "dependencies": {
+ "has-symbols": "^1.0.3"
+ }
+ },
"node_modules/asynckit": {
"version": "0.4.0",
"resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
@@ -6300,9 +5818,9 @@
}
},
"node_modules/autoprefixer": {
- "version": "10.4.14",
- "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.14.tgz",
- "integrity": "sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==",
+ "version": "10.4.17",
+ "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.17.tgz",
+ "integrity": "sha512-/cpVNRLSfhOtcGflT13P2794gVSgmPgTR+erw5ifnMLZb0UnSlkK4tquLmkd3BhA+nLo5tX8Cu0upUsGKvKbmg==",
"dev": true,
"funding": [
{
@@ -6312,13 +5830,17 @@
{
"type": "tidelift",
"url": "https://tidelift.com/funding/github/npm/autoprefixer"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
}
],
"peer": true,
"dependencies": {
- "browserslist": "^4.21.5",
- "caniuse-lite": "^1.0.30001464",
- "fraction.js": "^4.2.0",
+ "browserslist": "^4.22.2",
+ "caniuse-lite": "^1.0.30001578",
+ "fraction.js": "^4.3.7",
"normalize-range": "^0.1.2",
"picocolors": "^1.0.0",
"postcss-value-parser": "^4.2.0"
@@ -6334,9 +5856,9 @@
}
},
"node_modules/available-typed-arrays": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz",
- "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==",
+ "version": "1.0.6",
+ "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.6.tgz",
+ "integrity": "sha512-j1QzY8iPNPG4o4xmO3ptzpRxTciqD3MgEHtifP/YnJpIo58Xu+ne4BejlbkuaLfXn/nz6HFiw29bLpj2PNMdGg==",
"dev": true,
"engines": {
"node": ">= 0.4"
@@ -6356,13 +5878,13 @@
}
},
"node_modules/axobject-query": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.1.1.tgz",
- "integrity": "sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==",
+ "version": "3.2.1",
+ "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.2.1.tgz",
+ "integrity": "sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==",
"dev": true,
"peer": true,
"dependencies": {
- "deep-equal": "^2.0.5"
+ "dequal": "^2.0.3"
}
},
"node_modules/babel-jest": {
@@ -6386,88 +5908,74 @@
"@babel/core": "^7.8.0"
}
},
- "node_modules/babel-jest/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==",
+ "node_modules/babel-loader": {
+ "version": "8.3.0",
+ "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.3.0.tgz",
+ "integrity": "sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==",
+ "dev": true,
+ "peer": true,
"dependencies": {
- "color-convert": "^2.0.1"
+ "find-cache-dir": "^3.3.1",
+ "loader-utils": "^2.0.0",
+ "make-dir": "^3.1.0",
+ "schema-utils": "^2.6.5"
},
"engines": {
- "node": ">=8"
+ "node": ">= 8.9"
},
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "peerDependencies": {
+ "@babel/core": "^7.0.0",
+ "webpack": ">=2"
}
},
- "node_modules/babel-jest/node_modules/chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "node_modules/babel-loader/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,
+ "peer": true,
"dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
- "engines": {
- "node": ">=10"
+ "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": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
- }
- },
- "node_modules/babel-jest/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==",
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
+ "type": "github",
+ "url": "https://github.com/sponsors/epoberezkin"
}
},
- "node_modules/babel-jest/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=="
- },
- "node_modules/babel-jest/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==",
- "engines": {
- "node": ">=8"
+ "node_modules/babel-loader/node_modules/ajv-keywords": {
+ "version": "3.5.2",
+ "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz",
+ "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==",
+ "dev": true,
+ "peer": true,
+ "peerDependencies": {
+ "ajv": "^6.9.1"
}
},
- "node_modules/babel-jest/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==",
- "dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
+ "node_modules/babel-loader/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,
+ "peer": true
},
- "node_modules/babel-loader": {
- "version": "8.3.0",
- "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.3.0.tgz",
- "integrity": "sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==",
+ "node_modules/babel-loader/node_modules/make-dir": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz",
+ "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==",
"dev": true,
"peer": true,
"dependencies": {
- "find-cache-dir": "^3.3.1",
- "loader-utils": "^2.0.0",
- "make-dir": "^3.1.0",
- "schema-utils": "^2.6.5"
+ "semver": "^6.0.0"
},
"engines": {
- "node": ">= 8.9"
+ "node": ">=8"
},
- "peerDependencies": {
- "@babel/core": "^7.0.0",
- "webpack": ">=2"
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/babel-loader/node_modules/schema-utils": {
@@ -6489,6 +5997,16 @@
"url": "https://opencollective.com/webpack"
}
},
+ "node_modules/babel-loader/node_modules/semver": {
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
+ "dev": true,
+ "peer": true,
+ "bin": {
+ "semver": "bin/semver.js"
+ }
+ },
"node_modules/babel-plugin-istanbul": {
"version": "6.1.1",
"resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz",
@@ -6534,6 +6052,23 @@
"npm": ">=6"
}
},
+ "node_modules/babel-plugin-macros/node_modules/cosmiconfig": {
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz",
+ "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==",
+ "dev": true,
+ "peer": true,
+ "dependencies": {
+ "@types/parse-json": "^4.0.0",
+ "import-fresh": "^3.2.1",
+ "parse-json": "^5.0.0",
+ "path-type": "^4.0.0",
+ "yaml": "^1.10.0"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
"node_modules/babel-plugin-named-asset-import": {
"version": "0.3.8",
"resolved": "https://registry.npmjs.org/babel-plugin-named-asset-import/-/babel-plugin-named-asset-import-0.3.8.tgz",
@@ -6545,24 +6080,24 @@
}
},
"node_modules/babel-plugin-polyfill-corejs2": {
- "version": "0.3.3",
- "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.3.tgz",
- "integrity": "sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==",
+ "version": "0.4.8",
+ "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.8.tgz",
+ "integrity": "sha512-OtIuQfafSzpo/LhnJaykc0R/MMnuLSSVjVYy9mHArIZ9qTCSZ6TpWCuEKZYVoN//t8HqBNScHrOtCrIK5IaGLg==",
"dev": true,
"peer": true,
"dependencies": {
- "@babel/compat-data": "^7.17.7",
- "@babel/helper-define-polyfill-provider": "^0.3.3",
- "semver": "^6.1.1"
+ "@babel/compat-data": "^7.22.6",
+ "@babel/helper-define-polyfill-provider": "^0.5.0",
+ "semver": "^6.3.1"
},
"peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0"
}
},
"node_modules/babel-plugin-polyfill-corejs2/node_modules/semver": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
- "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
"dev": true,
"peer": true,
"bin": {
@@ -6570,30 +6105,30 @@
}
},
"node_modules/babel-plugin-polyfill-corejs3": {
- "version": "0.6.0",
- "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.6.0.tgz",
- "integrity": "sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==",
+ "version": "0.9.0",
+ "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.9.0.tgz",
+ "integrity": "sha512-7nZPG1uzK2Ymhy/NbaOWTg3uibM2BmGASS4vHS4szRZAIR8R6GwA/xAujpdrXU5iyklrimWnLWU+BLF9suPTqg==",
"dev": true,
"peer": true,
"dependencies": {
- "@babel/helper-define-polyfill-provider": "^0.3.3",
- "core-js-compat": "^3.25.1"
+ "@babel/helper-define-polyfill-provider": "^0.5.0",
+ "core-js-compat": "^3.34.0"
},
"peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0"
}
},
"node_modules/babel-plugin-polyfill-regenerator": {
- "version": "0.4.1",
- "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.1.tgz",
- "integrity": "sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==",
+ "version": "0.5.5",
+ "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.5.tgz",
+ "integrity": "sha512-OJGYZlhLqBh2DDHeqAxWB1XIvr49CxiJ2gIt61/PU55CQK4Z58OzMqjDe1zwQdQk+rBYsRc+1rJmdajM3gimHg==",
"dev": true,
"peer": true,
"dependencies": {
- "@babel/helper-define-polyfill-provider": "^0.3.3"
+ "@babel/helper-define-polyfill-provider": "^0.5.0"
},
"peerDependencies": {
- "@babel/core": "^7.0.0-0"
+ "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0"
}
},
"node_modules/babel-plugin-transform-react-remove-prop-types": {
@@ -6678,15 +6213,16 @@
"peer": true
},
"node_modules/bfj": {
- "version": "7.0.2",
- "resolved": "https://registry.npmjs.org/bfj/-/bfj-7.0.2.tgz",
- "integrity": "sha512-+e/UqUzwmzJamNF50tBV6tZPTORow7gQ96iFow+8b562OdMpEK0BcJEq2OSPEDmAbSMBQ7PKZ87ubFkgxpYWgw==",
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/bfj/-/bfj-7.1.0.tgz",
+ "integrity": "sha512-I6MMLkn+anzNdCUp9hMRyui1HaNEUCco50lxbvNS4+EyXg8lN3nJ48PjPWtbH8UVS9CuMoaKE9U2V3l29DaRQw==",
"dev": true,
"peer": true,
"dependencies": {
- "bluebird": "^3.5.5",
- "check-types": "^11.1.1",
+ "bluebird": "^3.7.2",
+ "check-types": "^11.2.3",
"hoopy": "^0.1.4",
+ "jsonpath": "^1.1.1",
"tryer": "^1.0.1"
},
"engines": {
@@ -6765,19 +6301,6 @@
"ms": "2.0.0"
}
},
- "node_modules/body-parser/node_modules/iconv-lite": {
- "version": "0.4.24",
- "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
- "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
- "dev": true,
- "peer": true,
- "dependencies": {
- "safer-buffer": ">= 2.1.2 < 3"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
"node_modules/body-parser/node_modules/ms": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
@@ -6785,15 +6308,29 @@
"dev": true,
"peer": true
},
+ "node_modules/body-parser/node_modules/qs": {
+ "version": "6.11.0",
+ "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz",
+ "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==",
+ "dev": true,
+ "peer": true,
+ "dependencies": {
+ "side-channel": "^1.0.4"
+ },
+ "engines": {
+ "node": ">=0.6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
"node_modules/bonjour-service": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.1.1.tgz",
- "integrity": "sha512-Z/5lQRMOG9k7W+FkeGTNjh7htqn/2LMnfOvBZ8pynNZCM9MwkQkI3zeI4oz09uWdcgmgHugVvBqxGg4VQJ5PCg==",
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.2.1.tgz",
+ "integrity": "sha512-oSzCS2zV14bh2kji6vNe7vrpJYCHGvcZnlffFQ1MEoX/WOeQ/teD8SYWKR942OI3INjq8OMNJlbPK5LLLUxFDw==",
"dev": true,
"peer": true,
"dependencies": {
- "array-flatten": "^2.1.2",
- "dns-equal": "^1.0.0",
"fast-deep-equal": "^3.1.3",
"multicast-dns": "^7.2.5"
}
@@ -6831,9 +6368,9 @@
"integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow=="
},
"node_modules/browserslist": {
- "version": "4.21.5",
- "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.5.tgz",
- "integrity": "sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==",
+ "version": "4.22.3",
+ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.3.tgz",
+ "integrity": "sha512-UAp55yfwNv0klWNapjs/ktHoguxuQNGnOzxYmfnXIS+8AsRDZkSDxg7R1AX3GKzn078SBI5dzwzj/Yx0Or0e3A==",
"funding": [
{
"type": "opencollective",
@@ -6842,13 +6379,17 @@
{
"type": "tidelift",
"url": "https://tidelift.com/funding/github/npm/browserslist"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
}
],
"dependencies": {
- "caniuse-lite": "^1.0.30001449",
- "electron-to-chromium": "^1.4.284",
- "node-releases": "^2.0.8",
- "update-browserslist-db": "^1.0.10"
+ "caniuse-lite": "^1.0.30001580",
+ "electron-to-chromium": "^1.4.648",
+ "node-releases": "^2.0.14",
+ "update-browserslist-db": "^1.0.13"
},
"bin": {
"browserslist": "cli.js"
@@ -6902,12 +6443,13 @@
}
},
"node_modules/call-bind": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz",
- "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==",
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.5.tgz",
+ "integrity": "sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==",
"dependencies": {
- "function-bind": "^1.1.1",
- "get-intrinsic": "^1.0.2"
+ "function-bind": "^1.1.2",
+ "get-intrinsic": "^1.2.1",
+ "set-function-length": "^1.1.1"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
@@ -6932,22 +6474,12 @@
"tslib": "^2.0.3"
}
},
- "node_modules/camel-case/node_modules/tslib": {
- "version": "2.5.0",
- "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz",
- "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==",
- "dev": true,
- "peer": true
- },
"node_modules/camelcase": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz",
- "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==",
+ "version": "5.3.1",
+ "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz",
+ "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==",
"engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "node": ">=6"
}
},
"node_modules/camelcase-css": {
@@ -6977,15 +6509,6 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/camelcase-keys/node_modules/camelcase": {
- "version": "5.3.1",
- "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz",
- "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==",
- "dev": true,
- "engines": {
- "node": ">=6"
- }
- },
"node_modules/caniuse-api": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz",
@@ -7000,9 +6523,9 @@
}
},
"node_modules/caniuse-lite": {
- "version": "1.0.30001486",
- "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001486.tgz",
- "integrity": "sha512-uv7/gXuHi10Whlj0pp5q/tsK/32J2QSqVRKQhs2j8VsDCjgyruAh/eEXHF822VqO9yT6iZKw3nRwZRSPBE9OQg==",
+ "version": "1.0.30001583",
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001583.tgz",
+ "integrity": "sha512-acWTYaha8xfhA/Du/z4sNZjHUWjkiuoAi2LM+T/aL+kemKQgPT1xBb/YKjlQ0Qo8gvbHsGNplrEJ+9G3gL7i4Q==",
"funding": [
{
"type": "opencollective",
@@ -7029,16 +6552,18 @@
}
},
"node_modules/chalk": {
- "version": "2.4.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
- "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
"dependencies": {
- "ansi-styles": "^3.2.1",
- "escape-string-regexp": "^1.0.5",
- "supports-color": "^5.3.0"
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
},
"engines": {
- "node": ">=4"
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/chalk?sponsor=1"
}
},
"node_modules/char-regex": {
@@ -7056,9 +6581,9 @@
"dev": true
},
"node_modules/check-types": {
- "version": "11.2.2",
- "resolved": "https://registry.npmjs.org/check-types/-/check-types-11.2.2.tgz",
- "integrity": "sha512-HBiYvXvn9Z70Z88XKjz3AEKd4HJhBXsa3j7xFnITAzoS8+q6eIGi8qDB8FKPBAjtuxjI/zFpwuiCb8oDtKOYrA==",
+ "version": "11.2.3",
+ "resolved": "https://registry.npmjs.org/check-types/-/check-types-11.2.3.tgz",
+ "integrity": "sha512-+67P1GkJRaxQD6PKK0Et9DhwQB+vGg3PM5+aavopCpZT1lj9jeqfvpgTLAWErNj8qApkkmXlu/Ug74kmhagkXg==",
"dev": true,
"peer": true
},
@@ -7114,9 +6639,9 @@
}
},
"node_modules/ci-info": {
- "version": "3.8.0",
- "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.8.0.tgz",
- "integrity": "sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==",
+ "version": "3.9.0",
+ "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz",
+ "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==",
"funding": [
{
"type": "github",
@@ -7128,14 +6653,14 @@
}
},
"node_modules/cjs-module-lexer": {
- "version": "1.2.2",
- "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz",
- "integrity": "sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA=="
+ "version": "1.2.3",
+ "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz",
+ "integrity": "sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ=="
},
"node_modules/clean-css": {
- "version": "5.3.2",
- "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.3.2.tgz",
- "integrity": "sha512-JVJbM+f3d3Q704rF4bqQ5UUyTtuJ0JRKNbTKVEeujCCBoMdkEi+V+e8oktO9qGQNSvHrFTM6JZRXrUvGR1czww==",
+ "version": "5.3.3",
+ "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.3.3.tgz",
+ "integrity": "sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==",
"dev": true,
"peer": true,
"dependencies": {
@@ -7174,23 +6699,46 @@
"dev": true
},
"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==",
+ "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.0",
+ "strip-ansi": "^6.0.1",
"wrap-ansi": "^7.0.0"
+ },
+ "engines": {
+ "node": ">=12"
}
},
- "node_modules/clsx": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/clsx/-/clsx-1.2.1.tgz",
- "integrity": "sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==",
+ "node_modules/cliui/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/cliui/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,
- "peer": true,
"engines": {
- "node": ">=6"
+ "node": ">=8"
+ }
+ },
+ "node_modules/cliui/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/co": {
@@ -7217,23 +6765,104 @@
"node": ">= 4.0"
}
},
- "node_modules/collect-v8-coverage": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz",
- "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg=="
+ "node_modules/coa/node_modules/ansi-styles": {
+ "version": "3.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
+ "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
+ "dev": true,
+ "peer": true,
+ "dependencies": {
+ "color-convert": "^1.9.0"
+ },
+ "engines": {
+ "node": ">=4"
+ }
},
- "node_modules/color-convert": {
+ "node_modules/coa/node_modules/chalk": {
+ "version": "2.4.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
+ "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
+ "dev": true,
+ "peer": true,
+ "dependencies": {
+ "ansi-styles": "^3.2.1",
+ "escape-string-regexp": "^1.0.5",
+ "supports-color": "^5.3.0"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/coa/node_modules/color-convert": {
"version": "1.9.3",
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
"integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
+ "dev": true,
+ "peer": true,
"dependencies": {
"color-name": "1.1.3"
}
},
- "node_modules/color-name": {
+ "node_modules/coa/node_modules/color-name": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
- "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw=="
+ "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==",
+ "dev": true,
+ "peer": true
+ },
+ "node_modules/coa/node_modules/escape-string-regexp": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
+ "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==",
+ "dev": true,
+ "peer": true,
+ "engines": {
+ "node": ">=0.8.0"
+ }
+ },
+ "node_modules/coa/node_modules/has-flag": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
+ "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==",
+ "dev": true,
+ "peer": true,
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/coa/node_modules/supports-color": {
+ "version": "5.5.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
+ "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
+ "dev": true,
+ "peer": true,
+ "dependencies": {
+ "has-flag": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/collect-v8-coverage": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz",
+ "integrity": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q=="
+ },
+ "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==",
+ "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=="
},
"node_modules/colord": {
"version": "2.9.3",
@@ -7483,9 +7112,9 @@
"integrity": "sha512-LDx6oHrK+PhzLKJU9j5S7/Y3jM/mUHvD/DeI1WQmJn652iPC5Y4TBzC9l+5OMOXlyTTA+SmVUPm0HQUwpD5Jqw=="
},
"node_modules/core-js": {
- "version": "3.30.2",
- "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.30.2.tgz",
- "integrity": "sha512-uBJiDmwqsbJCWHAwjrx3cvjbMXP7xD72Dmsn5LOJpiRmE3WbBbN5rCqQ2Qh6Ek6/eOrjlWngEynBWo4VxerQhg==",
+ "version": "3.35.1",
+ "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.35.1.tgz",
+ "integrity": "sha512-IgdsbxNyMskrTFxa9lWHyMwAJU5gXOPP+1yO+K59d50VLVAIDAbs7gIv705KzALModfK3ZrSZTPNpC0PQgIZuw==",
"dev": true,
"hasInstallScript": true,
"peer": true,
@@ -7495,13 +7124,13 @@
}
},
"node_modules/core-js-compat": {
- "version": "3.30.2",
- "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.30.2.tgz",
- "integrity": "sha512-nriW1nuJjUgvkEjIot1Spwakz52V9YkYHZAQG6A1eCgC8AA1p0zngrQEP9R0+V6hji5XilWKG1Bd0YRppmGimA==",
+ "version": "3.35.1",
+ "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.35.1.tgz",
+ "integrity": "sha512-sftHa5qUJY3rs9Zht1WEnmkvXputCyDBczPnr7QDgL8n3qrF3CMXY4VPSYtOLLiOUJcah2WNXREd48iOl6mQIw==",
"dev": true,
"peer": true,
"dependencies": {
- "browserslist": "^4.21.5"
+ "browserslist": "^4.22.2"
},
"funding": {
"type": "opencollective",
@@ -7509,9 +7138,9 @@
}
},
"node_modules/core-js-pure": {
- "version": "3.30.2",
- "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.30.2.tgz",
- "integrity": "sha512-p/npFUJXXBkCCTIlEGBdghofn00jWG6ZOtdoIXSJmAu2QBvN0IqpZXWweOytcwE6cfx8ZvVUy1vw8zxhe4Y2vg==",
+ "version": "3.35.1",
+ "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.35.1.tgz",
+ "integrity": "sha512-zcIdi/CL3MWbBJYo5YCeVAAx+Sy9yJE9I3/u9LkFABwbeaPhTMRWraM8mYFp9jW5Z50hOy7FVzCc8dCrpZqtIQ==",
"dev": true,
"hasInstallScript": true,
"peer": true,
@@ -7528,20 +7157,29 @@
"peer": true
},
"node_modules/cosmiconfig": {
- "version": "7.1.0",
- "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz",
- "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==",
+ "version": "8.3.6",
+ "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.3.6.tgz",
+ "integrity": "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==",
"dev": true,
- "peer": true,
"dependencies": {
- "@types/parse-json": "^4.0.0",
- "import-fresh": "^3.2.1",
- "parse-json": "^5.0.0",
- "path-type": "^4.0.0",
- "yaml": "^1.10.0"
+ "import-fresh": "^3.3.0",
+ "js-yaml": "^4.1.0",
+ "parse-json": "^5.2.0",
+ "path-type": "^4.0.0"
},
"engines": {
- "node": ">=10"
+ "node": ">=14"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/d-fischer"
+ },
+ "peerDependencies": {
+ "typescript": ">=4.9.5"
+ },
+ "peerDependenciesMeta": {
+ "typescript": {
+ "optional": true
+ }
}
},
"node_modules/cosmiconfig-typescript-loader": {
@@ -7608,9 +7246,9 @@
}
},
"node_modules/css-declaration-sorter": {
- "version": "6.4.0",
- "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.4.0.tgz",
- "integrity": "sha512-jDfsatwWMWN0MODAFuHszfjphEXfNw9JUAhmY4pLu3TyTU+ohUpsbVtbU+1MZn4a47D9kqh03i4eyOm+74+zew==",
+ "version": "6.4.1",
+ "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.4.1.tgz",
+ "integrity": "sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==",
"dev": true,
"peer": true,
"engines": {
@@ -7640,20 +7278,20 @@
}
},
"node_modules/css-loader": {
- "version": "6.7.3",
- "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.7.3.tgz",
- "integrity": "sha512-qhOH1KlBMnZP8FzRO6YCH9UHXQhVMcEGLyNdb7Hv2cpcmJbW0YrddO+tG1ab5nT41KpHIYGsbeHqxB9xPu1pKQ==",
+ "version": "6.10.0",
+ "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.10.0.tgz",
+ "integrity": "sha512-LTSA/jWbwdMlk+rhmElbDR2vbtQoTBPr7fkJE+mxrHj+7ru0hUmHafDRzWIjIHTwpitWVaqY2/UWGRca3yUgRw==",
"dev": true,
"peer": true,
"dependencies": {
"icss-utils": "^5.1.0",
- "postcss": "^8.4.19",
+ "postcss": "^8.4.33",
"postcss-modules-extract-imports": "^3.0.0",
- "postcss-modules-local-by-default": "^4.0.0",
- "postcss-modules-scope": "^3.0.0",
+ "postcss-modules-local-by-default": "^4.0.4",
+ "postcss-modules-scope": "^3.1.1",
"postcss-modules-values": "^4.0.0",
"postcss-value-parser": "^4.2.0",
- "semver": "^7.3.8"
+ "semver": "^7.5.4"
},
"engines": {
"node": ">= 12.13.0"
@@ -7663,7 +7301,16 @@
"url": "https://opencollective.com/webpack"
},
"peerDependencies": {
+ "@rspack/core": "0.x || 1.x",
"webpack": "^5.0.0"
+ },
+ "peerDependenciesMeta": {
+ "@rspack/core": {
+ "optional": true
+ },
+ "webpack": {
+ "optional": true
+ }
}
},
"node_modules/css-minimizer-webpack-plugin": {
@@ -7705,47 +7352,10 @@
}
}
},
- "node_modules/css-minimizer-webpack-plugin/node_modules/ajv": {
- "version": "8.12.0",
- "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz",
- "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==",
- "dev": true,
- "peer": true,
- "dependencies": {
- "fast-deep-equal": "^3.1.1",
- "json-schema-traverse": "^1.0.0",
- "require-from-string": "^2.0.2",
- "uri-js": "^4.2.2"
- },
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/epoberezkin"
- }
- },
- "node_modules/css-minimizer-webpack-plugin/node_modules/ajv-keywords": {
- "version": "5.1.0",
- "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz",
- "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==",
- "dev": true,
- "peer": true,
- "dependencies": {
- "fast-deep-equal": "^3.1.3"
- },
- "peerDependencies": {
- "ajv": "^8.8.2"
- }
- },
- "node_modules/css-minimizer-webpack-plugin/node_modules/json-schema-traverse": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
- "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
- "dev": true,
- "peer": true
- },
"node_modules/css-minimizer-webpack-plugin/node_modules/schema-utils": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.1.tgz",
- "integrity": "sha512-lELhBAAly9NowEsX0yZBlw9ahZG+sK/1RJ21EpzdYHKEs13Vku3LJ+MIPhh4sMs0oCCeufZQEQbMekiA4vuVIQ==",
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz",
+ "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==",
"dev": true,
"peer": true,
"dependencies": {
@@ -7850,15 +7460,21 @@
}
},
"node_modules/cssdb": {
- "version": "7.5.4",
- "resolved": "https://registry.npmjs.org/cssdb/-/cssdb-7.5.4.tgz",
- "integrity": "sha512-fGD+J6Jlq+aurfE1VDXlLS4Pt0VtNlu2+YgfGOdMxRyl/HQ9bDiHTwSck1Yz8A97Dt/82izSK6Bp/4nVqacOsg==",
+ "version": "7.10.0",
+ "resolved": "https://registry.npmjs.org/cssdb/-/cssdb-7.10.0.tgz",
+ "integrity": "sha512-yGZ5tmA57gWh/uvdQBHs45wwFY0IBh3ypABk5sEubPBPSzXzkNgsWReqx7gdx6uhC+QoFBe+V8JwBB9/hQ6cIA==",
"dev": true,
- "peer": true,
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/csstools"
- }
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/csstools"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/csstools"
+ }
+ ],
+ "peer": true
},
"node_modules/cssesc": {
"version": "3.0.0",
@@ -8018,9 +7634,9 @@
"integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg=="
},
"node_modules/csstype": {
- "version": "3.1.2",
- "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz",
- "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==",
+ "version": "3.1.3",
+ "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz",
+ "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==",
"dev": true
},
"node_modules/damerau-levenshtein": {
@@ -8068,6 +7684,16 @@
}
}
},
+ "node_modules/debuglog": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/debuglog/-/debuglog-1.0.1.tgz",
+ "integrity": "sha512-syBZ+rnAK3EgMsH2aYEOLUW7mZSY9Gb+0wUMCFsZvcmiz+HigA0LOcq/HoQqVuGG+EKykunc7QG2bzrponfaSw==",
+ "deprecated": "Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.",
+ "dev": true,
+ "engines": {
+ "node": "*"
+ }
+ },
"node_modules/decamelize": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz",
@@ -8112,40 +7738,11 @@
"resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz",
"integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA=="
},
- "node_modules/deep-equal": {
- "version": "2.2.1",
- "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.1.tgz",
- "integrity": "sha512-lKdkdV6EOGoVn65XaOsPdH4rMxTZOnmFyuIkMjM1i5HHCbfjC97dawgTAy0deYNfuqUqW+Q5VrVaQYtUpSd6yQ==",
- "dev": true,
- "peer": true,
- "dependencies": {
- "array-buffer-byte-length": "^1.0.0",
- "call-bind": "^1.0.2",
- "es-get-iterator": "^1.1.3",
- "get-intrinsic": "^1.2.0",
- "is-arguments": "^1.1.1",
- "is-array-buffer": "^3.0.2",
- "is-date-object": "^1.0.5",
- "is-regex": "^1.1.4",
- "is-shared-array-buffer": "^1.0.2",
- "isarray": "^2.0.5",
- "object-is": "^1.1.5",
- "object-keys": "^1.1.1",
- "object.assign": "^4.1.4",
- "regexp.prototype.flags": "^1.5.0",
- "side-channel": "^1.0.4",
- "which-boxed-primitive": "^1.0.2",
- "which-collection": "^1.0.1",
- "which-typed-array": "^1.1.9"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
"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=="
+ "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==",
+ "dev": true
},
"node_modules/deepmerge": {
"version": "2.2.1",
@@ -8170,6 +7767,19 @@
"node": ">= 10"
}
},
+ "node_modules/define-data-property": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.1.tgz",
+ "integrity": "sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==",
+ "dependencies": {
+ "get-intrinsic": "^1.2.1",
+ "gopd": "^1.0.1",
+ "has-property-descriptors": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
"node_modules/define-lazy-prop": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz",
@@ -8181,11 +7791,12 @@
}
},
"node_modules/define-properties": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz",
- "integrity": "sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==",
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz",
+ "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==",
"dev": true,
"dependencies": {
+ "define-data-property": "^1.0.1",
"has-property-descriptors": "^1.0.0",
"object-keys": "^1.1.1"
},
@@ -8214,6 +7825,16 @@
"node": ">= 0.8"
}
},
+ "node_modules/dequal": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz",
+ "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==",
+ "dev": true,
+ "peer": true,
+ "engines": {
+ "node": ">=6"
+ }
+ },
"node_modules/destroy": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz",
@@ -8327,17 +7948,10 @@
"dev": true,
"peer": true
},
- "node_modules/dns-equal": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz",
- "integrity": "sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==",
- "dev": true,
- "peer": true
- },
"node_modules/dns-packet": {
- "version": "5.6.0",
- "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-5.6.0.tgz",
- "integrity": "sha512-rza3UH1LwdHh9qyPXp8lkwpjSNk/AMD3dPytUoRoqnypDUhY0xvbdmVhWOfxO68frEfV9BU8V12Ez7ZsHGZpCQ==",
+ "version": "5.6.1",
+ "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-5.6.1.tgz",
+ "integrity": "sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==",
"dev": true,
"peer": true,
"dependencies": {
@@ -8369,17 +7983,6 @@
"utila": "~0.4"
}
},
- "node_modules/dom-helpers": {
- "version": "5.2.1",
- "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz",
- "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==",
- "dev": true,
- "peer": true,
- "dependencies": {
- "@babel/runtime": "^7.8.7",
- "csstype": "^3.0.2"
- }
- },
"node_modules/dom-serializer": {
"version": "1.4.1",
"resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz",
@@ -8412,6 +8015,7 @@
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz",
"integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==",
+ "deprecated": "Use your platform's native DOMException instead",
"dependencies": {
"webidl-conversions": "^5.0.0"
},
@@ -8469,13 +8073,6 @@
"tslib": "^2.0.3"
}
},
- "node_modules/dot-case/node_modules/tslib": {
- "version": "2.5.0",
- "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz",
- "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==",
- "dev": true,
- "peer": true
- },
"node_modules/dot-prop": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz",
@@ -8488,15 +8085,6 @@
"node": ">=8"
}
},
- "node_modules/dot-prop/node_modules/is-obj": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz",
- "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==",
- "dev": true,
- "engines": {
- "node": ">=8"
- }
- },
"node_modules/dotenv": {
"version": "10.0.0",
"resolved": "https://registry.npmjs.org/dotenv/-/dotenv-10.0.0.tgz",
@@ -8521,6 +8109,13 @@
"dev": true,
"peer": true
},
+ "node_modules/eastasianwidth": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz",
+ "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==",
+ "dev": true,
+ "peer": true
+ },
"node_modules/ee-first": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
@@ -8545,9 +8140,9 @@
}
},
"node_modules/electron-to-chromium": {
- "version": "1.4.388",
- "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.388.tgz",
- "integrity": "sha512-xZ0y4zjWZgp65okzwwt00f2rYibkFPHUv9qBz+Vzn8cB9UXIo9Zc6Dw81LJYhhNt0G/vR1OJEfStZ49NKl0YxQ=="
+ "version": "1.4.656",
+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.656.tgz",
+ "integrity": "sha512-9AQB5eFTHyR3Gvt2t/NwR0le2jBSUNwCnMbUCejFWHD+so4tH40/dRLgoE+jxlPeWS43XJewyvCv+I8LPMl49Q=="
},
"node_modules/emittery": {
"version": "0.8.1",
@@ -8588,9 +8183,9 @@
}
},
"node_modules/enhanced-resolve": {
- "version": "5.14.0",
- "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.14.0.tgz",
- "integrity": "sha512-+DCows0XNwLDcUhbFJPdlQEVnT2zXlCv7hPxemTz86/O+B/hCQ+mb7ydkPKiflpVraqLPCAfu7lDy+hBXueojw==",
+ "version": "5.15.0",
+ "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz",
+ "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==",
"dev": true,
"peer": true,
"dependencies": {
@@ -8630,25 +8225,26 @@
}
},
"node_modules/es-abstract": {
- "version": "1.21.2",
- "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.21.2.tgz",
- "integrity": "sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==",
+ "version": "1.22.3",
+ "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.3.tgz",
+ "integrity": "sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==",
"dev": true,
"dependencies": {
"array-buffer-byte-length": "^1.0.0",
+ "arraybuffer.prototype.slice": "^1.0.2",
"available-typed-arrays": "^1.0.5",
- "call-bind": "^1.0.2",
+ "call-bind": "^1.0.5",
"es-set-tostringtag": "^2.0.1",
"es-to-primitive": "^1.2.1",
- "function.prototype.name": "^1.1.5",
- "get-intrinsic": "^1.2.0",
+ "function.prototype.name": "^1.1.6",
+ "get-intrinsic": "^1.2.2",
"get-symbol-description": "^1.0.0",
"globalthis": "^1.0.3",
"gopd": "^1.0.1",
- "has": "^1.0.3",
"has-property-descriptors": "^1.0.0",
"has-proto": "^1.0.1",
"has-symbols": "^1.0.3",
+ "hasown": "^2.0.0",
"internal-slot": "^1.0.5",
"is-array-buffer": "^3.0.2",
"is-callable": "^1.2.7",
@@ -8656,19 +8252,23 @@
"is-regex": "^1.1.4",
"is-shared-array-buffer": "^1.0.2",
"is-string": "^1.0.7",
- "is-typed-array": "^1.1.10",
+ "is-typed-array": "^1.1.12",
"is-weakref": "^1.0.2",
- "object-inspect": "^1.12.3",
+ "object-inspect": "^1.13.1",
"object-keys": "^1.1.1",
"object.assign": "^4.1.4",
- "regexp.prototype.flags": "^1.4.3",
+ "regexp.prototype.flags": "^1.5.1",
+ "safe-array-concat": "^1.0.1",
"safe-regex-test": "^1.0.0",
- "string.prototype.trim": "^1.2.7",
- "string.prototype.trimend": "^1.0.6",
- "string.prototype.trimstart": "^1.0.6",
+ "string.prototype.trim": "^1.2.8",
+ "string.prototype.trimend": "^1.0.7",
+ "string.prototype.trimstart": "^1.0.7",
+ "typed-array-buffer": "^1.0.0",
+ "typed-array-byte-length": "^1.0.0",
+ "typed-array-byte-offset": "^1.0.0",
"typed-array-length": "^1.0.4",
"unbox-primitive": "^1.0.2",
- "which-typed-array": "^1.1.9"
+ "which-typed-array": "^1.1.13"
},
"engines": {
"node": ">= 0.4"
@@ -8684,55 +8284,56 @@
"dev": true,
"peer": true
},
- "node_modules/es-get-iterator": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.3.tgz",
- "integrity": "sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==",
+ "node_modules/es-iterator-helpers": {
+ "version": "1.0.15",
+ "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.0.15.tgz",
+ "integrity": "sha512-GhoY8uYqd6iwUl2kgjTm4CZAf6oo5mHK7BPqx3rKgx893YSsy0LGHV6gfqqQvZt/8xM8xeOnfXBCfqclMKkJ5g==",
"dev": true,
- "peer": true,
"dependencies": {
+ "asynciterator.prototype": "^1.0.0",
"call-bind": "^1.0.2",
- "get-intrinsic": "^1.1.3",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.22.1",
+ "es-set-tostringtag": "^2.0.1",
+ "function-bind": "^1.1.1",
+ "get-intrinsic": "^1.2.1",
+ "globalthis": "^1.0.3",
+ "has-property-descriptors": "^1.0.0",
+ "has-proto": "^1.0.1",
"has-symbols": "^1.0.3",
- "is-arguments": "^1.1.1",
- "is-map": "^2.0.2",
- "is-set": "^2.0.2",
- "is-string": "^1.0.7",
- "isarray": "^2.0.5",
- "stop-iteration-iterator": "^1.0.0"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "internal-slot": "^1.0.5",
+ "iterator.prototype": "^1.1.2",
+ "safe-array-concat": "^1.0.1"
}
},
"node_modules/es-module-lexer": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.2.1.tgz",
- "integrity": "sha512-9978wrXM50Y4rTMmW5kXIC09ZdXQZqkE4mxhwkd8VbzsGkXGPgV4zWuqQJgCEzYngdo2dYDa0l8xhX4fkSwJSg==",
+ "version": "1.4.1",
+ "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.4.1.tgz",
+ "integrity": "sha512-cXLGjP0c4T3flZJKQSuziYoq7MlT+rnvfZjfp7h+I7K9BNX54kP9nyWvdbwjQ4u1iWbOL4u96fgeZLToQlZC7w==",
"dev": true,
"peer": true
},
"node_modules/es-set-tostringtag": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz",
- "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==",
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.2.tgz",
+ "integrity": "sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==",
"dev": true,
"dependencies": {
- "get-intrinsic": "^1.1.3",
- "has": "^1.0.3",
- "has-tostringtag": "^1.0.0"
+ "get-intrinsic": "^1.2.2",
+ "has-tostringtag": "^1.0.0",
+ "hasown": "^2.0.0"
},
"engines": {
"node": ">= 0.4"
}
},
"node_modules/es-shim-unscopables": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz",
- "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==",
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz",
+ "integrity": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==",
"dev": true,
"dependencies": {
- "has": "^1.0.3"
+ "hasown": "^2.0.0"
}
},
"node_modules/es-to-primitive": {
@@ -8768,22 +8369,25 @@
"peer": true
},
"node_modules/escape-string-regexp": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
- "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==",
+ "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": ">=0.8.0"
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/escodegen": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.0.0.tgz",
- "integrity": "sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==",
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz",
+ "integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==",
"dependencies": {
"esprima": "^4.0.1",
"estraverse": "^5.2.0",
- "esutils": "^2.0.2",
- "optionator": "^0.8.1"
+ "esutils": "^2.0.2"
},
"bin": {
"escodegen": "bin/escodegen.js",
@@ -8796,42 +8400,6 @@
"source-map": "~0.6.1"
}
},
- "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==",
- "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==",
- "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==",
- "engines": {
- "node": ">= 0.8.0"
- }
- },
"node_modules/escodegen/node_modules/source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
@@ -8841,17 +8409,6 @@
"node": ">=0.10.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==",
- "dependencies": {
- "prelude-ls": "~1.1.2"
- },
- "engines": {
- "node": ">= 0.8.0"
- }
- },
"node_modules/eslint": {
"version": "8.56.0",
"resolved": "https://registry.npmjs.org/eslint/-/eslint-8.56.0.tgz",
@@ -8952,14 +8509,14 @@
}
},
"node_modules/eslint-import-resolver-node": {
- "version": "0.3.7",
- "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz",
- "integrity": "sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==",
+ "version": "0.3.9",
+ "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz",
+ "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==",
"dev": true,
"dependencies": {
"debug": "^3.2.7",
- "is-core-module": "^2.11.0",
- "resolve": "^1.22.1"
+ "is-core-module": "^2.13.0",
+ "resolve": "^1.22.4"
}
},
"node_modules/eslint-import-resolver-node/node_modules/debug": {
@@ -9016,37 +8573,13 @@
"eslint": ">=4.19.1"
}
},
- "node_modules/eslint-plugin-es/node_modules/eslint-utils": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz",
- "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==",
- "dev": true,
- "dependencies": {
- "eslint-visitor-keys": "^1.1.0"
- },
- "engines": {
- "node": ">=6"
- },
- "funding": {
- "url": "https://github.com/sponsors/mysticatea"
- }
- },
- "node_modules/eslint-plugin-es/node_modules/eslint-visitor-keys": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz",
- "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==",
- "dev": true,
- "engines": {
- "node": ">=4"
- }
- },
"node_modules/eslint-plugin-etc": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/eslint-plugin-etc/-/eslint-plugin-etc-2.0.2.tgz",
- "integrity": "sha512-g3b95LCdTCwZA8On9EICYL8m1NMWaiGfmNUd/ftZTeGZDXrwujKXUr+unYzqKjKFo1EbqJ31vt+Dqzrdm/sUcw==",
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-etc/-/eslint-plugin-etc-2.0.3.tgz",
+ "integrity": "sha512-o5RS/0YwtjlGKWjhKojgmm82gV1b4NQUuwk9zqjy9/EjxNFKKYCaF+0M7DkYBn44mJ6JYFZw3Ft249dkKuR1ew==",
"dev": true,
"dependencies": {
- "@phenomnomnominal/tsquery": "^4.0.0",
+ "@phenomnomnominal/tsquery": "^5.0.0",
"@typescript-eslint/experimental-utils": "^5.0.0",
"eslint-etc": "^5.1.0",
"requireindex": "~1.2.0",
@@ -9055,15 +8588,9 @@
},
"peerDependencies": {
"eslint": "^8.0.0",
- "typescript": "^4.0.0"
+ "typescript": ">=4.0.0"
}
},
- "node_modules/eslint-plugin-etc/node_modules/tslib": {
- "version": "2.5.0",
- "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz",
- "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==",
- "dev": true
- },
"node_modules/eslint-plugin-flowtype": {
"version": "8.0.3",
"resolved": "https://registry.npmjs.org/eslint-plugin-flowtype/-/eslint-plugin-flowtype-8.0.3.tgz",
@@ -9084,26 +8611,28 @@
}
},
"node_modules/eslint-plugin-import": {
- "version": "2.27.5",
- "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.27.5.tgz",
- "integrity": "sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==",
+ "version": "2.29.1",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.29.1.tgz",
+ "integrity": "sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==",
"dev": true,
"dependencies": {
- "array-includes": "^3.1.6",
- "array.prototype.flat": "^1.3.1",
- "array.prototype.flatmap": "^1.3.1",
+ "array-includes": "^3.1.7",
+ "array.prototype.findlastindex": "^1.2.3",
+ "array.prototype.flat": "^1.3.2",
+ "array.prototype.flatmap": "^1.3.2",
"debug": "^3.2.7",
"doctrine": "^2.1.0",
- "eslint-import-resolver-node": "^0.3.7",
- "eslint-module-utils": "^2.7.4",
- "has": "^1.0.3",
- "is-core-module": "^2.11.0",
+ "eslint-import-resolver-node": "^0.3.9",
+ "eslint-module-utils": "^2.8.0",
+ "hasown": "^2.0.0",
+ "is-core-module": "^2.13.1",
"is-glob": "^4.0.3",
"minimatch": "^3.1.2",
- "object.values": "^1.1.6",
- "resolve": "^1.22.1",
- "semver": "^6.3.0",
- "tsconfig-paths": "^3.14.1"
+ "object.fromentries": "^2.0.7",
+ "object.groupby": "^1.0.1",
+ "object.values": "^1.1.7",
+ "semver": "^6.3.1",
+ "tsconfig-paths": "^3.15.0"
},
"engines": {
"node": ">=4"
@@ -9134,9 +8663,9 @@
}
},
"node_modules/eslint-plugin-import/node_modules/semver": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
- "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
"dev": true,
"bin": {
"semver": "bin/semver.js"
@@ -9168,28 +8697,28 @@
}
},
"node_modules/eslint-plugin-jsx-a11y": {
- "version": "6.7.1",
- "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.7.1.tgz",
- "integrity": "sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==",
+ "version": "6.8.0",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.8.0.tgz",
+ "integrity": "sha512-Hdh937BS3KdwwbBaKd5+PLCOmYY6U4f2h9Z2ktwtNKvIdIEu137rjYbcb9ApSbVJfWxANNuiKTD/9tOKjK9qOA==",
"dev": true,
"peer": true,
"dependencies": {
- "@babel/runtime": "^7.20.7",
- "aria-query": "^5.1.3",
- "array-includes": "^3.1.6",
- "array.prototype.flatmap": "^1.3.1",
- "ast-types-flow": "^0.0.7",
- "axe-core": "^4.6.2",
- "axobject-query": "^3.1.1",
+ "@babel/runtime": "^7.23.2",
+ "aria-query": "^5.3.0",
+ "array-includes": "^3.1.7",
+ "array.prototype.flatmap": "^1.3.2",
+ "ast-types-flow": "^0.0.8",
+ "axe-core": "=4.7.0",
+ "axobject-query": "^3.2.1",
"damerau-levenshtein": "^1.0.8",
"emoji-regex": "^9.2.2",
- "has": "^1.0.3",
- "jsx-ast-utils": "^3.3.3",
- "language-tags": "=1.0.5",
+ "es-iterator-helpers": "^1.0.15",
+ "hasown": "^2.0.0",
+ "jsx-ast-utils": "^3.3.5",
+ "language-tags": "^1.0.9",
"minimatch": "^3.1.2",
- "object.entries": "^1.1.6",
- "object.fromentries": "^2.0.6",
- "semver": "^6.3.0"
+ "object.entries": "^1.1.7",
+ "object.fromentries": "^2.0.7"
},
"engines": {
"node": ">=4.0"
@@ -9198,16 +8727,6 @@
"eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8"
}
},
- "node_modules/eslint-plugin-jsx-a11y/node_modules/semver": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
- "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
- "dev": true,
- "peer": true,
- "bin": {
- "semver": "bin/semver.js"
- }
- },
"node_modules/eslint-plugin-node": {
"version": "11.1.0",
"resolved": "https://registry.npmjs.org/eslint-plugin-node/-/eslint-plugin-node-11.1.0.tgz",
@@ -9228,30 +8747,6 @@
"eslint": ">=5.16.0"
}
},
- "node_modules/eslint-plugin-node/node_modules/eslint-utils": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz",
- "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==",
- "dev": true,
- "dependencies": {
- "eslint-visitor-keys": "^1.1.0"
- },
- "engines": {
- "node": ">=6"
- },
- "funding": {
- "url": "https://github.com/sponsors/mysticatea"
- }
- },
- "node_modules/eslint-plugin-node/node_modules/eslint-visitor-keys": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz",
- "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==",
- "dev": true,
- "engines": {
- "node": ">=4"
- }
- },
"node_modules/eslint-plugin-node/node_modules/semver": {
"version": "6.3.1",
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
@@ -9274,15 +8769,16 @@
}
},
"node_modules/eslint-plugin-react": {
- "version": "7.32.2",
- "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.32.2.tgz",
- "integrity": "sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==",
+ "version": "7.33.2",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.33.2.tgz",
+ "integrity": "sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==",
"dev": true,
"dependencies": {
"array-includes": "^3.1.6",
"array.prototype.flatmap": "^1.3.1",
"array.prototype.tosorted": "^1.1.1",
"doctrine": "^2.1.0",
+ "es-iterator-helpers": "^1.0.12",
"estraverse": "^5.3.0",
"jsx-ast-utils": "^2.4.1 || ^3.0.0",
"minimatch": "^3.1.2",
@@ -9292,7 +8788,7 @@
"object.values": "^1.1.6",
"prop-types": "^15.8.1",
"resolve": "^2.0.0-next.4",
- "semver": "^6.3.0",
+ "semver": "^6.3.1",
"string.prototype.matchall": "^4.0.8"
},
"engines": {
@@ -9328,12 +8824,12 @@
}
},
"node_modules/eslint-plugin-react/node_modules/resolve": {
- "version": "2.0.0-next.4",
- "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz",
- "integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==",
+ "version": "2.0.0-next.5",
+ "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.5.tgz",
+ "integrity": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==",
"dev": true,
"dependencies": {
- "is-core-module": "^2.9.0",
+ "is-core-module": "^2.13.0",
"path-parse": "^1.0.7",
"supports-preserve-symlinks-flag": "^1.0.0"
},
@@ -9345,9 +8841,9 @@
}
},
"node_modules/eslint-plugin-react/node_modules/semver": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
- "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
"dev": true,
"bin": {
"semver": "bin/semver.js"
@@ -9416,9 +8912,9 @@
}
},
"node_modules/eslint-plugin-testing-library": {
- "version": "5.10.3",
- "resolved": "https://registry.npmjs.org/eslint-plugin-testing-library/-/eslint-plugin-testing-library-5.10.3.tgz",
- "integrity": "sha512-0yhsKFsjHLud5PM+f2dWr9K3rqYzMy4cSHs3lcmFYMa1CdSzRvHGgXvsFarBjZ41gU8jhTdMIkg8jHLxGJqLqw==",
+ "version": "5.11.1",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-testing-library/-/eslint-plugin-testing-library-5.11.1.tgz",
+ "integrity": "sha512-5eX9e1Kc2PqVRed3taaLnAAqPZGEX75C+M/rXzUAI3wIg/ZxzUm1OVAwfe/O+vE+6YXOLetSe9g5GKD2ecXipw==",
"dev": true,
"peer": true,
"dependencies": {
@@ -9478,6 +8974,30 @@
"url": "https://opencollective.com/eslint"
}
},
+ "node_modules/eslint-utils": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz",
+ "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==",
+ "dev": true,
+ "dependencies": {
+ "eslint-visitor-keys": "^1.1.0"
+ },
+ "engines": {
+ "node": ">=6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/mysticatea"
+ }
+ },
+ "node_modules/eslint-utils/node_modules/eslint-visitor-keys": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz",
+ "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=4"
+ }
+ },
"node_modules/eslint-visitor-keys": {
"version": "3.4.3",
"resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz",
@@ -9515,46 +9035,6 @@
"webpack": "^5.0.0"
}
},
- "node_modules/eslint-webpack-plugin/node_modules/ajv": {
- "version": "8.12.0",
- "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz",
- "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==",
- "dev": true,
- "peer": true,
- "dependencies": {
- "fast-deep-equal": "^3.1.1",
- "json-schema-traverse": "^1.0.0",
- "require-from-string": "^2.0.2",
- "uri-js": "^4.2.2"
- },
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/epoberezkin"
- }
- },
- "node_modules/eslint-webpack-plugin/node_modules/ajv-keywords": {
- "version": "5.1.0",
- "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz",
- "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==",
- "dev": true,
- "peer": true,
- "dependencies": {
- "fast-deep-equal": "^3.1.3"
- },
- "peerDependencies": {
- "ajv": "^8.8.2"
- }
- },
- "node_modules/eslint-webpack-plugin/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,
- "peer": true,
- "engines": {
- "node": ">=8"
- }
- },
"node_modules/eslint-webpack-plugin/node_modules/jest-worker": {
"version": "28.1.3",
"resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-28.1.3.tgz",
@@ -9570,17 +9050,10 @@
"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
}
},
- "node_modules/eslint-webpack-plugin/node_modules/json-schema-traverse": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
- "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
- "dev": true,
- "peer": true
- },
"node_modules/eslint-webpack-plugin/node_modules/schema-utils": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.1.tgz",
- "integrity": "sha512-lELhBAAly9NowEsX0yZBlw9ahZG+sK/1RJ21EpzdYHKEs13Vku3LJ+MIPhh4sMs0oCCeufZQEQbMekiA4vuVIQ==",
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz",
+ "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==",
"dev": true,
"peer": true,
"dependencies": {
@@ -9613,133 +9086,28 @@
"url": "https://github.com/chalk/supports-color?sponsor=1"
}
},
- "node_modules/eslint/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/eslint/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/eslint/node_modules/chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "node_modules/eslint/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": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
- "engines": {
- "node": ">=10"
+ "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": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
- }
- },
- "node_modules/eslint/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"
+ "type": "github",
+ "url": "https://github.com/sponsors/epoberezkin"
}
},
- "node_modules/eslint/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==",
+ "node_modules/eslint/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/eslint/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/eslint/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/eslint/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/eslint/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/eslint/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/eslint/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/espree": {
"version": "9.6.1",
"resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz",
@@ -9930,13 +9298,6 @@
"node": ">= 0.10.0"
}
},
- "node_modules/express/node_modules/array-flatten": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz",
- "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==",
- "dev": true,
- "peer": true
- },
"node_modules/express/node_modules/debug": {
"version": "2.6.9",
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
@@ -9954,6 +9315,22 @@
"dev": true,
"peer": true
},
+ "node_modules/express/node_modules/qs": {
+ "version": "6.11.0",
+ "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz",
+ "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==",
+ "dev": true,
+ "peer": true,
+ "dependencies": {
+ "side-channel": "^1.0.4"
+ },
+ "engines": {
+ "node": ">=0.6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
"node_modules/external-editor": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz",
@@ -9968,18 +9345,6 @@
"node": ">=4"
}
},
- "node_modules/external-editor/node_modules/iconv-lite": {
- "version": "0.4.24",
- "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
- "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
- "dev": true,
- "dependencies": {
- "safer-buffer": ">= 2.1.2 < 3"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
"node_modules/fast-deep-equal": {
"version": "3.1.3",
"resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
@@ -9987,9 +9352,9 @@
"dev": true
},
"node_modules/fast-glob": {
- "version": "3.2.12",
- "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz",
- "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==",
+ "version": "3.3.2",
+ "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz",
+ "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==",
"dev": true,
"dependencies": {
"@nodelib/fs.stat": "^2.0.2",
@@ -10022,7 +9387,8 @@
"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=="
+ "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==",
+ "dev": true
},
"node_modules/fast-safe-stringify": {
"version": "2.1.1",
@@ -10030,9 +9396,9 @@
"integrity": "sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA=="
},
"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==",
+ "version": "1.17.0",
+ "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.0.tgz",
+ "integrity": "sha512-zGygtijUMT7jnk3h26kUms3BkSDp4IfIKjmnqI2tvx6nuBfiF1UqOxbnLfzdv+apBy+53oaImsKtMw/xYbW+1w==",
"dev": true,
"dependencies": {
"reusify": "^1.0.4"
@@ -10071,6 +9437,15 @@
"node": ">=4"
}
},
+ "node_modules/figures/node_modules/escape-string-regexp": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
+ "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.8.0"
+ }
+ },
"node_modules/file-entry-cache": {
"version": "6.0.1",
"resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz",
@@ -10212,6 +9587,32 @@
"url": "https://github.com/avajs/find-cache-dir?sponsor=1"
}
},
+ "node_modules/find-cache-dir/node_modules/make-dir": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz",
+ "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==",
+ "dev": true,
+ "peer": true,
+ "dependencies": {
+ "semver": "^6.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/find-cache-dir/node_modules/semver": {
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
+ "dev": true,
+ "peer": true,
+ "bin": {
+ "semver": "bin/semver.js"
+ }
+ },
"node_modules/find-root": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz",
@@ -10236,12 +9637,13 @@
}
},
"node_modules/flat-cache": {
- "version": "3.0.4",
- "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz",
- "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==",
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz",
+ "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==",
"dev": true,
"dependencies": {
- "flatted": "^3.1.0",
+ "flatted": "^3.2.9",
+ "keyv": "^4.5.3",
"rimraf": "^3.0.2"
},
"engines": {
@@ -10249,15 +9651,15 @@
}
},
"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==",
+ "version": "3.2.9",
+ "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.9.tgz",
+ "integrity": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==",
"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==",
+ "version": "1.15.5",
+ "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.5.tgz",
+ "integrity": "sha512-vSFWUON1B+yAw1VN4xMfxgn5fTUiaOzAJCKBwIIgT/+7CuGy9+r+5gITvP62j3RmaD5Ph65UaERdOSRGUzZtgw==",
"dev": true,
"funding": [
{
@@ -10284,6 +9686,36 @@
"is-callable": "^1.1.3"
}
},
+ "node_modules/foreground-child": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz",
+ "integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==",
+ "dev": true,
+ "peer": true,
+ "dependencies": {
+ "cross-spawn": "^7.0.0",
+ "signal-exit": "^4.0.1"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/foreground-child/node_modules/signal-exit": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz",
+ "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
+ "dev": true,
+ "peer": true,
+ "engines": {
+ "node": ">=14"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
"node_modules/fork-ts-checker-webpack-plugin": {
"version": "6.5.3",
"resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.5.3.tgz",
@@ -10324,59 +9756,33 @@
}
}
},
- "node_modules/fork-ts-checker-webpack-plugin/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,
- "peer": true,
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/fork-ts-checker-webpack-plugin/node_modules/chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "node_modules/fork-ts-checker-webpack-plugin/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,
"peer": true,
"dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
- "engines": {
- "node": ">=10"
+ "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": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
+ "type": "github",
+ "url": "https://github.com/sponsors/epoberezkin"
}
},
- "node_modules/fork-ts-checker-webpack-plugin/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==",
+ "node_modules/fork-ts-checker-webpack-plugin/node_modules/ajv-keywords": {
+ "version": "3.5.2",
+ "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz",
+ "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==",
"dev": true,
"peer": true,
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
+ "peerDependencies": {
+ "ajv": "^6.9.1"
}
},
- "node_modules/fork-ts-checker-webpack-plugin/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,
- "peer": true
- },
"node_modules/fork-ts-checker-webpack-plugin/node_modules/cosmiconfig": {
"version": "6.0.0",
"resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz",
@@ -10420,15 +9826,12 @@
"node": ">=10"
}
},
- "node_modules/fork-ts-checker-webpack-plugin/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==",
+ "node_modules/fork-ts-checker-webpack-plugin/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,
- "peer": true,
- "engines": {
- "node": ">=8"
- }
+ "peer": true
},
"node_modules/fork-ts-checker-webpack-plugin/node_modules/schema-utils": {
"version": "2.7.0",
@@ -10449,19 +9852,6 @@
"url": "https://opencollective.com/webpack"
}
},
- "node_modules/fork-ts-checker-webpack-plugin/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,
- "peer": true,
- "dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
"node_modules/fork-ts-checker-webpack-plugin/node_modules/tapable": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz",
@@ -10500,9 +9890,9 @@
}
},
"node_modules/formik": {
- "version": "2.2.9",
- "resolved": "https://registry.npmjs.org/formik/-/formik-2.2.9.tgz",
- "integrity": "sha512-LQLcISMmf1r5at4/gyJigGn0gOwFbeEAlji+N9InZF6LIMXnFNkO42sCI8Jt84YZggpD4cPWObAZaxpEFtSzNA==",
+ "version": "2.4.5",
+ "resolved": "https://registry.npmjs.org/formik/-/formik-2.4.5.tgz",
+ "integrity": "sha512-Gxlht0TD3vVdzMDHwkiNZqJ7Mvg77xQNfmBRrNtvzcHZs72TJppSTDKHpImCMJZwcWPBJ8jSQQ95GJzXFf1nAQ==",
"dev": true,
"funding": [
{
@@ -10512,13 +9902,14 @@
],
"peer": true,
"dependencies": {
+ "@types/hoist-non-react-statics": "^3.3.1",
"deepmerge": "^2.1.1",
"hoist-non-react-statics": "^3.3.0",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"react-fast-compare": "^2.0.1",
"tiny-warning": "^1.0.2",
- "tslib": "^1.10.0"
+ "tslib": "^2.0.0"
},
"peerDependencies": {
"react": ">=16.8.0"
@@ -10535,9 +9926,9 @@
}
},
"node_modules/fraction.js": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz",
- "integrity": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==",
+ "version": "4.3.7",
+ "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz",
+ "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==",
"dev": true,
"peer": true,
"engines": {
@@ -10545,7 +9936,7 @@
},
"funding": {
"type": "patreon",
- "url": "https://www.patreon.com/infusion"
+ "url": "https://github.com/sponsors/rawify"
}
},
"node_modules/fresh": {
@@ -10559,24 +9950,23 @@
}
},
"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==",
+ "version": "11.2.0",
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz",
+ "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==",
"dev": true,
- "peer": true,
"dependencies": {
"graceful-fs": "^4.2.0",
"jsonfile": "^6.0.1",
"universalify": "^2.0.0"
},
"engines": {
- "node": ">=12"
+ "node": ">=14.14"
}
},
"node_modules/fs-monkey": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.3.tgz",
- "integrity": "sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==",
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.5.tgz",
+ "integrity": "sha512-8uMbBjrhzW76TYgEV27Y5E//W2f/lTFmx78P2w19FZSxarhI/798APGQyuGCwmkNxgwGRhrLfvWyLBvNtuOmew==",
"dev": true,
"peer": true
},
@@ -10586,9 +9976,9 @@
"integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw=="
},
"node_modules/fsevents": {
- "version": "2.3.2",
- "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz",
- "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==",
+ "version": "2.3.3",
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
+ "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
"hasInstallScript": true,
"optional": true,
"os": [
@@ -10599,20 +9989,23 @@
}
},
"node_modules/function-bind": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
- "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
+ "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
},
"node_modules/function.prototype.name": {
- "version": "1.1.5",
- "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz",
- "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==",
+ "version": "1.1.6",
+ "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz",
+ "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==",
"dev": true,
"dependencies": {
"call-bind": "^1.0.2",
- "define-properties": "^1.1.3",
- "es-abstract": "^1.19.0",
- "functions-have-names": "^1.2.2"
+ "define-properties": "^1.2.0",
+ "es-abstract": "^1.22.1",
+ "functions-have-names": "^1.2.3"
},
"engines": {
"node": ">= 0.4"
@@ -10647,13 +10040,14 @@
}
},
"node_modules/get-intrinsic": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.0.tgz",
- "integrity": "sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==",
+ "version": "1.2.2",
+ "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.2.tgz",
+ "integrity": "sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==",
"dependencies": {
- "function-bind": "^1.1.1",
- "has": "^1.0.3",
- "has-symbols": "^1.0.3"
+ "function-bind": "^1.1.2",
+ "has-proto": "^1.0.1",
+ "has-symbols": "^1.0.3",
+ "hasown": "^2.0.0"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
@@ -10812,11 +10206,18 @@
}
},
"node_modules/globals": {
- "version": "11.12.0",
- "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz",
- "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==",
+ "version": "13.24.0",
+ "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz",
+ "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==",
+ "dev": true,
+ "dependencies": {
+ "type-fest": "^0.20.2"
+ },
"engines": {
- "node": ">=4"
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/globalthis": {
@@ -10858,7 +10259,6 @@
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz",
"integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==",
- "dev": true,
"dependencies": {
"get-intrinsic": "^1.1.3"
},
@@ -10871,13 +10271,6 @@
"resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
"integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ=="
},
- "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,
- "peer": true
- },
"node_modules/graphemer": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz",
@@ -10923,17 +10316,6 @@
"dev": true,
"peer": true
},
- "node_modules/has": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz",
- "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==",
- "dependencies": {
- "function-bind": "^1.1.1"
- },
- "engines": {
- "node": ">= 0.4.0"
- }
- },
"node_modules/has-bigints": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz",
@@ -10944,20 +10326,19 @@
}
},
"node_modules/has-flag": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
- "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==",
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
"engines": {
- "node": ">=4"
+ "node": ">=8"
}
},
"node_modules/has-property-descriptors": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz",
- "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==",
- "dev": true,
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.1.tgz",
+ "integrity": "sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==",
"dependencies": {
- "get-intrinsic": "^1.1.1"
+ "get-intrinsic": "^1.2.2"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
@@ -10967,7 +10348,6 @@
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz",
"integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==",
- "dev": true,
"engines": {
"node": ">= 0.4"
},
@@ -10987,12 +10367,12 @@
}
},
"node_modules/has-tostringtag": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz",
- "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==",
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz",
+ "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==",
"dev": true,
"dependencies": {
- "has-symbols": "^1.0.2"
+ "has-symbols": "^1.0.3"
},
"engines": {
"node": ">= 0.4"
@@ -11001,6 +10381,17 @@
"url": "https://github.com/sponsors/ljharb"
}
},
+ "node_modules/hasown": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz",
+ "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==",
+ "dependencies": {
+ "function-bind": "^1.1.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
"node_modules/he": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz",
@@ -11133,10 +10524,20 @@
}
},
"node_modules/html-entities": {
- "version": "2.3.3",
- "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.3.3.tgz",
- "integrity": "sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA==",
+ "version": "2.4.0",
+ "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.4.0.tgz",
+ "integrity": "sha512-igBTJcNNNhvZFRtm8uA6xMY6xYleeDwn3PeBCkDz7tHttv4F2hsDI2aPgNERWzvRcNYHNT3ymRaQzllmXj4YsQ==",
"dev": true,
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/mdevils"
+ },
+ {
+ "type": "patreon",
+ "url": "https://patreon.com/mdevils"
+ }
+ ],
"peer": true
},
"node_modules/html-escaper": {
@@ -11167,9 +10568,9 @@
}
},
"node_modules/html-webpack-plugin": {
- "version": "5.5.1",
- "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.5.1.tgz",
- "integrity": "sha512-cTUzZ1+NqjGEKjmVgZKLMdiFg3m9MdRXkZW2OEe69WYVi5ONLMmlnSZdXzGGMOq0C8jGDrL6EWyEDDUioHO/pA==",
+ "version": "5.6.0",
+ "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.6.0.tgz",
+ "integrity": "sha512-iwaY4wzbe48AfKLZ/Cc8k0L+FKG6oSNRaZ8x5A/T/IVDGyXcbHncM9TdDa93wn0FsSm82FhTKW7f3vS61thXAw==",
"dev": true,
"peer": true,
"dependencies": {
@@ -11187,7 +10588,16 @@
"url": "https://opencollective.com/html-webpack-plugin"
},
"peerDependencies": {
+ "@rspack/core": "0.x || 1.x",
"webpack": "^5.20.0"
+ },
+ "peerDependenciesMeta": {
+ "@rspack/core": {
+ "optional": true
+ },
+ "webpack": {
+ "optional": true
+ }
}
},
"node_modules/htmlparser2": {
@@ -11294,6 +10704,19 @@
}
}
},
+ "node_modules/http-proxy-middleware/node_modules/is-plain-obj": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz",
+ "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==",
+ "dev": true,
+ "peer": true,
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
"node_modules/https-proxy-agent": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz",
@@ -11330,13 +10753,11 @@
}
},
"node_modules/iconv-lite": {
- "version": "0.6.3",
- "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz",
- "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==",
- "dev": true,
- "peer": true,
+ "version": "0.4.24",
+ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
+ "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
"dependencies": {
- "safer-buffer": ">= 2.1.2 < 3.0.0"
+ "safer-buffer": ">= 2.1.2 < 3"
},
"engines": {
"node": ">=0.10.0"
@@ -11376,9 +10797,9 @@
}
},
"node_modules/ignore": {
- "version": "5.2.4",
- "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz",
- "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==",
+ "version": "5.3.1",
+ "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz",
+ "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==",
"dev": true,
"engines": {
"node": ">= 4"
@@ -11499,15 +10920,6 @@
"node": ">=6.0.0"
}
},
- "node_modules/inquirer/node_modules/ansi-escapes": {
- "version": "3.2.0",
- "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz",
- "integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==",
- "dev": true,
- "engines": {
- "node": ">=4"
- }
- },
"node_modules/inquirer/node_modules/ansi-regex": {
"version": "4.1.1",
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz",
@@ -11517,45 +10929,61 @@
"node": ">=6"
}
},
- "node_modules/inquirer/node_modules/is-fullwidth-code-point": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz",
- "integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==",
+ "node_modules/inquirer/node_modules/ansi-styles": {
+ "version": "3.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
+ "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
"dev": true,
+ "dependencies": {
+ "color-convert": "^1.9.0"
+ },
"engines": {
"node": ">=4"
}
},
- "node_modules/inquirer/node_modules/string-width": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz",
- "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==",
+ "node_modules/inquirer/node_modules/chalk": {
+ "version": "2.4.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
+ "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
"dev": true,
"dependencies": {
- "is-fullwidth-code-point": "^2.0.0",
- "strip-ansi": "^4.0.0"
+ "ansi-styles": "^3.2.1",
+ "escape-string-regexp": "^1.0.5",
+ "supports-color": "^5.3.0"
},
"engines": {
"node": ">=4"
}
},
- "node_modules/inquirer/node_modules/string-width/node_modules/ansi-regex": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz",
- "integrity": "sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==",
+ "node_modules/inquirer/node_modules/color-convert": {
+ "version": "1.9.3",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
+ "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
+ "dev": true,
+ "dependencies": {
+ "color-name": "1.1.3"
+ }
+ },
+ "node_modules/inquirer/node_modules/color-name": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
+ "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==",
+ "dev": true
+ },
+ "node_modules/inquirer/node_modules/escape-string-regexp": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
+ "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==",
"dev": true,
"engines": {
- "node": ">=4"
+ "node": ">=0.8.0"
}
},
- "node_modules/inquirer/node_modules/string-width/node_modules/strip-ansi": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz",
- "integrity": "sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==",
+ "node_modules/inquirer/node_modules/has-flag": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
+ "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==",
"dev": true,
- "dependencies": {
- "ansi-regex": "^3.0.0"
- },
"engines": {
"node": ">=4"
}
@@ -11572,14 +11000,26 @@
"node": ">=6"
}
},
+ "node_modules/inquirer/node_modules/supports-color": {
+ "version": "5.5.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
+ "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
+ "dev": true,
+ "dependencies": {
+ "has-flag": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
"node_modules/internal-slot": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz",
- "integrity": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==",
+ "version": "1.0.6",
+ "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.6.tgz",
+ "integrity": "sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==",
"dev": true,
"dependencies": {
- "get-intrinsic": "^1.2.0",
- "has": "^1.0.3",
+ "get-intrinsic": "^1.2.2",
+ "hasown": "^2.0.0",
"side-channel": "^1.0.4"
},
"engines": {
@@ -11587,24 +11027,23 @@
}
},
"node_modules/ipaddr.js": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.0.1.tgz",
- "integrity": "sha512-1qTgH9NG+IIJ4yfKs2e6Pp1bZg8wbDbKHT21HrLIeYBTRLgMYKnMTPAuI3Lcs61nfx5h1xlXnbJtH1kX5/d/ng==",
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.1.0.tgz",
+ "integrity": "sha512-LlbxQ7xKzfBusov6UMi4MFpEg0m+mAm9xyNGEduwXMEDuf4WfzB/RZwMVYEd7IKGvh4IUkEXYxtAVu9T3OelJQ==",
"dev": true,
"peer": true,
"engines": {
"node": ">= 10"
}
},
- "node_modules/is-arguments": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz",
- "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==",
+ "node_modules/is-array-buffer": {
+ "version": "3.0.4",
+ "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz",
+ "integrity": "sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==",
"dev": true,
- "peer": true,
"dependencies": {
"call-bind": "^1.0.2",
- "has-tostringtag": "^1.0.0"
+ "get-intrinsic": "^1.2.1"
},
"engines": {
"node": ">= 0.4"
@@ -11613,25 +11052,26 @@
"url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/is-array-buffer": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz",
- "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==",
+ "node_modules/is-arrayish": {
+ "version": "0.2.1",
+ "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz",
+ "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg=="
+ },
+ "node_modules/is-async-function": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.0.0.tgz",
+ "integrity": "sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==",
"dev": true,
"dependencies": {
- "call-bind": "^1.0.2",
- "get-intrinsic": "^1.2.0",
- "is-typed-array": "^1.1.10"
+ "has-tostringtag": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/is-arrayish": {
- "version": "0.2.1",
- "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz",
- "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg=="
- },
"node_modules/is-bigint": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz",
@@ -11686,11 +11126,11 @@
}
},
"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==",
+ "version": "2.13.1",
+ "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz",
+ "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==",
"dependencies": {
- "has": "^1.0.3"
+ "hasown": "^2.0.0"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
@@ -11736,12 +11176,25 @@
"node": ">=0.10.0"
}
},
+ "node_modules/is-finalizationregistry": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.0.2.tgz",
+ "integrity": "sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.2"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
"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==",
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz",
+ "integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==",
+ "dev": true,
"engines": {
- "node": ">=8"
+ "node": ">=4"
}
},
"node_modules/is-generator-fn": {
@@ -11752,6 +11205,21 @@
"node": ">=6"
}
},
+ "node_modules/is-generator-function": {
+ "version": "1.0.10",
+ "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz",
+ "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==",
+ "dev": true,
+ "dependencies": {
+ "has-tostringtag": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
"node_modules/is-glob": {
"version": "4.0.3",
"resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
@@ -11769,7 +11237,6 @@
"resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz",
"integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==",
"dev": true,
- "peer": true,
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
@@ -11817,13 +11284,12 @@
}
},
"node_modules/is-obj": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz",
- "integrity": "sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==",
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz",
+ "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==",
"dev": true,
- "peer": true,
"engines": {
- "node": ">=0.10.0"
+ "node": ">=8"
}
},
"node_modules/is-path-inside": {
@@ -11836,16 +11302,12 @@
}
},
"node_modules/is-plain-obj": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz",
- "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==",
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz",
+ "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==",
"dev": true,
- "peer": true,
"engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "node": ">=0.10.0"
}
},
"node_modules/is-potential-custom-element-name": {
@@ -11894,7 +11356,6 @@
"resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz",
"integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==",
"dev": true,
- "peer": true,
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
@@ -11965,16 +11426,12 @@
}
},
"node_modules/is-typed-array": {
- "version": "1.1.10",
- "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz",
- "integrity": "sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==",
+ "version": "1.1.13",
+ "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz",
+ "integrity": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==",
"dev": true,
"dependencies": {
- "available-typed-arrays": "^1.0.5",
- "call-bind": "^1.0.2",
- "for-each": "^0.3.3",
- "gopd": "^1.0.1",
- "has-tostringtag": "^1.0.0"
+ "which-typed-array": "^1.1.14"
},
"engines": {
"node": ">= 0.4"
@@ -11993,7 +11450,6 @@
"resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz",
"integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==",
"dev": true,
- "peer": true,
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
@@ -12015,7 +11471,6 @@
"resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz",
"integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==",
"dev": true,
- "peer": true,
"dependencies": {
"call-bind": "^1.0.2",
"get-intrinsic": "^1.1.1"
@@ -12041,8 +11496,7 @@
"version": "2.0.5",
"resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz",
"integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==",
- "dev": true,
- "peer": true
+ "dev": true
},
"node_modules/isexe": {
"version": "2.0.0",
@@ -12050,9 +11504,9 @@
"integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw=="
},
"node_modules/istanbul-lib-coverage": {
- "version": "3.2.0",
- "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz",
- "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==",
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz",
+ "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==",
"engines": {
"node": ">=8"
}
@@ -12073,43 +11527,24 @@
}
},
"node_modules/istanbul-lib-instrument/node_modules/semver": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
- "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
"bin": {
"semver": "bin/semver.js"
}
},
"node_modules/istanbul-lib-report": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz",
- "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==",
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz",
+ "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==",
"dependencies": {
"istanbul-lib-coverage": "^3.0.0",
- "make-dir": "^3.0.0",
+ "make-dir": "^4.0.0",
"supports-color": "^7.1.0"
},
"engines": {
- "node": ">=8"
- }
- },
- "node_modules/istanbul-lib-report/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==",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/istanbul-lib-report/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==",
- "dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
+ "node": ">=10"
}
},
"node_modules/istanbul-lib-source-maps": {
@@ -12134,9 +11569,9 @@
}
},
"node_modules/istanbul-reports": {
- "version": "3.1.5",
- "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.5.tgz",
- "integrity": "sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==",
+ "version": "3.1.6",
+ "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.6.tgz",
+ "integrity": "sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==",
"dependencies": {
"html-escaper": "^2.0.0",
"istanbul-lib-report": "^3.0.0"
@@ -12145,99 +11580,55 @@
"node": ">=8"
}
},
- "node_modules/jake": {
- "version": "10.8.5",
- "resolved": "https://registry.npmjs.org/jake/-/jake-10.8.5.tgz",
- "integrity": "sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw==",
+ "node_modules/iterator.prototype": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.2.tgz",
+ "integrity": "sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==",
"dev": true,
- "peer": true,
"dependencies": {
- "async": "^3.2.3",
- "chalk": "^4.0.2",
- "filelist": "^1.0.1",
- "minimatch": "^3.0.4"
- },
- "bin": {
- "jake": "bin/cli.js"
- },
- "engines": {
- "node": ">=10"
+ "define-properties": "^1.2.1",
+ "get-intrinsic": "^1.2.1",
+ "has-symbols": "^1.0.3",
+ "reflect.getprototypeof": "^1.0.4",
+ "set-function-name": "^2.0.1"
}
},
- "node_modules/jake/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==",
+ "node_modules/jackspeak": {
+ "version": "2.3.6",
+ "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.3.6.tgz",
+ "integrity": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==",
"dev": true,
"peer": true,
"dependencies": {
- "color-convert": "^2.0.1"
+ "@isaacs/cliui": "^8.0.2"
},
"engines": {
- "node": ">=8"
+ "node": ">=14"
},
"funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/jake/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,
- "peer": true,
- "dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
- "engines": {
- "node": ">=10"
+ "url": "https://github.com/sponsors/isaacs"
},
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
+ "optionalDependencies": {
+ "@pkgjs/parseargs": "^0.11.0"
}
},
- "node_modules/jake/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==",
+ "node_modules/jake": {
+ "version": "10.8.7",
+ "resolved": "https://registry.npmjs.org/jake/-/jake-10.8.7.tgz",
+ "integrity": "sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==",
"dev": true,
"peer": true,
"dependencies": {
- "color-name": "~1.1.4"
+ "async": "^3.2.3",
+ "chalk": "^4.0.2",
+ "filelist": "^1.0.4",
+ "minimatch": "^3.1.2"
},
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/jake/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,
- "peer": true
- },
- "node_modules/jake/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,
- "peer": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/jake/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,
- "peer": true,
- "dependencies": {
- "has-flag": "^4.0.0"
+ "bin": {
+ "jake": "bin/cli.js"
},
"engines": {
- "node": ">=8"
+ "node": ">=10"
}
},
"node_modules/jest": {
@@ -12306,70 +11697,6 @@
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
- "node_modules/jest-circus/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==",
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/jest-circus/node_modules/chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "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/jest-circus/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==",
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/jest-circus/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=="
- },
- "node_modules/jest-circus/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==",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/jest-circus/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==",
- "dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
"node_modules/jest-cli": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-27.5.1.tgz",
@@ -12403,68 +11730,57 @@
}
}
},
- "node_modules/jest-cli/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==",
+ "node_modules/jest-cli/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==",
"dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "string-width": "^4.2.0",
+ "strip-ansi": "^6.0.0",
+ "wrap-ansi": "^7.0.0"
}
},
- "node_modules/jest-cli/node_modules/chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
+ "node_modules/jest-cli/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=="
+ },
+ "node_modules/jest-cli/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==",
"engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
+ "node": ">=8"
}
},
- "node_modules/jest-cli/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==",
+ "node_modules/jest-cli/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==",
"dependencies": {
- "color-name": "~1.1.4"
+ "emoji-regex": "^8.0.0",
+ "is-fullwidth-code-point": "^3.0.0",
+ "strip-ansi": "^6.0.1"
},
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/jest-cli/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=="
- },
- "node_modules/jest-cli/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==",
"engines": {
"node": ">=8"
}
},
- "node_modules/jest-cli/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==",
+ "node_modules/jest-cli/node_modules/yargs": {
+ "version": "16.2.0",
+ "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz",
+ "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==",
"dependencies": {
- "has-flag": "^4.0.0"
+ "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": ">=8"
+ "node": ">=10"
}
},
"node_modules/jest-config": {
@@ -12509,51 +11825,6 @@
}
}
},
- "node_modules/jest-config/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==",
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/jest-config/node_modules/chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "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/jest-config/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==",
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/jest-config/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=="
- },
"node_modules/jest-config/node_modules/deepmerge": {
"version": "4.3.1",
"resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz",
@@ -12562,25 +11833,6 @@
"node": ">=0.10.0"
}
},
- "node_modules/jest-config/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==",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/jest-config/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==",
- "dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
"node_modules/jest-diff": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-27.5.1.tgz",
@@ -12595,70 +11847,6 @@
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
- "node_modules/jest-diff/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==",
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/jest-diff/node_modules/chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "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/jest-diff/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==",
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/jest-diff/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=="
- },
- "node_modules/jest-diff/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==",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/jest-diff/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==",
- "dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
"node_modules/jest-docblock": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-27.5.1.tgz",
@@ -12685,70 +11873,6 @@
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
- "node_modules/jest-each/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==",
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/jest-each/node_modules/chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "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/jest-each/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==",
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/jest-each/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=="
- },
- "node_modules/jest-each/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==",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/jest-each/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==",
- "dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
"node_modules/jest-environment-jsdom": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-27.5.1.tgz",
@@ -12842,70 +11966,6 @@
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
- "node_modules/jest-jasmine2/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==",
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/jest-jasmine2/node_modules/chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "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/jest-jasmine2/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==",
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/jest-jasmine2/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=="
- },
- "node_modules/jest-jasmine2/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==",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/jest-jasmine2/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==",
- "dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
"node_modules/jest-leak-detector": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-27.5.1.tgz",
@@ -12930,153 +11990,25 @@
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
- }
- },
- "node_modules/jest-matcher-utils/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==",
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/jest-matcher-utils/node_modules/chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "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/jest-matcher-utils/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==",
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/jest-matcher-utils/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=="
- },
- "node_modules/jest-matcher-utils/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==",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/jest-matcher-utils/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==",
- "dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/jest-message-util": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz",
- "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==",
- "dependencies": {
- "@babel/code-frame": "^7.12.13",
- "@jest/types": "^27.5.1",
- "@types/stack-utils": "^2.0.0",
- "chalk": "^4.0.0",
- "graceful-fs": "^4.2.9",
- "micromatch": "^4.0.4",
- "pretty-format": "^27.5.1",
- "slash": "^3.0.0",
- "stack-utils": "^2.0.3"
- },
- "engines": {
- "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
- }
- },
- "node_modules/jest-message-util/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==",
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/jest-message-util/node_modules/chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "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/jest-message-util/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==",
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/jest-message-util/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=="
- },
- "node_modules/jest-message-util/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==",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/jest-message-util/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==",
+ }
+ },
+ "node_modules/jest-message-util": {
+ "version": "27.5.1",
+ "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz",
+ "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==",
"dependencies": {
- "has-flag": "^4.0.0"
+ "@babel/code-frame": "^7.12.13",
+ "@jest/types": "^27.5.1",
+ "@types/stack-utils": "^2.0.0",
+ "chalk": "^4.0.0",
+ "graceful-fs": "^4.2.9",
+ "micromatch": "^4.0.4",
+ "pretty-format": "^27.5.1",
+ "slash": "^3.0.0",
+ "stack-utils": "^2.0.3"
},
"engines": {
- "node": ">=8"
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/jest-mock": {
@@ -13148,70 +12080,6 @@
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
- "node_modules/jest-resolve/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==",
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/jest-resolve/node_modules/chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "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/jest-resolve/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==",
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/jest-resolve/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=="
- },
- "node_modules/jest-resolve/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==",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/jest-resolve/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==",
- "dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
"node_modules/jest-runner": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-27.5.1.tgz",
@@ -13243,70 +12111,6 @@
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
- "node_modules/jest-runner/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==",
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/jest-runner/node_modules/chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "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/jest-runner/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==",
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/jest-runner/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=="
- },
- "node_modules/jest-runner/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==",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/jest-runner/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==",
- "dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
"node_modules/jest-runtime": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-27.5.1.tgz",
@@ -13339,70 +12143,6 @@
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
- "node_modules/jest-runtime/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==",
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/jest-runtime/node_modules/chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "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/jest-runtime/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==",
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/jest-runtime/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=="
- },
- "node_modules/jest-runtime/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==",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/jest-runtime/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==",
- "dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
"node_modules/jest-serializer": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz",
@@ -13447,70 +12187,6 @@
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
- "node_modules/jest-snapshot/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==",
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/jest-snapshot/node_modules/chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "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/jest-snapshot/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==",
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/jest-snapshot/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=="
- },
- "node_modules/jest-snapshot/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==",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/jest-snapshot/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==",
- "dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
"node_modules/jest-util": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz",
@@ -13527,70 +12203,6 @@
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
- "node_modules/jest-util/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==",
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/jest-util/node_modules/chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "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/jest-util/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==",
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/jest-util/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=="
- },
- "node_modules/jest-util/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==",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/jest-util/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==",
- "dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
"node_modules/jest-validate": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-27.5.1.tgz",
@@ -13607,68 +12219,15 @@
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
- "node_modules/jest-validate/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==",
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/jest-validate/node_modules/chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
+ "node_modules/jest-validate/node_modules/camelcase": {
+ "version": "6.3.0",
+ "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz",
+ "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==",
"engines": {
"node": ">=10"
},
"funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
- }
- },
- "node_modules/jest-validate/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==",
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/jest-validate/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=="
- },
- "node_modules/jest-validate/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==",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/jest-validate/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==",
- "dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/jest-watch-typeahead": {
@@ -13756,68 +12315,44 @@
}
},
"node_modules/jest-watch-typeahead/node_modules/@types/yargs": {
- "version": "17.0.24",
- "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.24.tgz",
- "integrity": "sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==",
+ "version": "17.0.32",
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz",
+ "integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==",
"dev": true,
"peer": true,
"dependencies": {
"@types/yargs-parser": "*"
}
},
- "node_modules/jest-watch-typeahead/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==",
+ "node_modules/jest-watch-typeahead/node_modules/ansi-escapes": {
+ "version": "4.3.2",
+ "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz",
+ "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==",
"dev": true,
"peer": true,
"dependencies": {
- "color-convert": "^2.0.1"
+ "type-fest": "^0.21.3"
},
"engines": {
"node": ">=8"
},
"funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/jest-watch-typeahead/node_modules/chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "node_modules/jest-watch-typeahead/node_modules/ansi-styles": {
+ "version": "5.2.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz",
+ "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==",
"dev": true,
"peer": 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/jest-watch-typeahead/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,
- "peer": true,
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
}
},
- "node_modules/jest-watch-typeahead/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,
- "peer": true
- },
"node_modules/jest-watch-typeahead/node_modules/emittery": {
"version": "0.10.2",
"resolved": "https://registry.npmjs.org/emittery/-/emittery-0.10.2.tgz",
@@ -13831,16 +12366,6 @@
"url": "https://github.com/sindresorhus/emittery?sponsor=1"
}
},
- "node_modules/jest-watch-typeahead/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,
- "peer": true,
- "engines": {
- "node": ">=8"
- }
- },
"node_modules/jest-watch-typeahead/node_modules/jest-message-util": {
"version": "28.1.3",
"resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-28.1.3.tgz",
@@ -13963,19 +12488,6 @@
"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
}
},
- "node_modules/jest-watch-typeahead/node_modules/pretty-format/node_modules/ansi-styles": {
- "version": "5.2.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz",
- "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==",
- "dev": true,
- "peer": true,
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
"node_modules/jest-watch-typeahead/node_modules/react-is": {
"version": "18.2.0",
"resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz",
@@ -14024,9 +12536,9 @@
}
},
"node_modules/jest-watch-typeahead/node_modules/strip-ansi": {
- "version": "7.0.1",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.0.1.tgz",
- "integrity": "sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==",
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz",
+ "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
"dev": true,
"peer": true,
"dependencies": {
@@ -14052,17 +12564,17 @@
"url": "https://github.com/chalk/ansi-regex?sponsor=1"
}
},
- "node_modules/jest-watch-typeahead/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==",
+ "node_modules/jest-watch-typeahead/node_modules/type-fest": {
+ "version": "0.21.3",
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz",
+ "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==",
"dev": true,
"peer": true,
- "dependencies": {
- "has-flag": "^4.0.0"
- },
"engines": {
- "node": ">=8"
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/jest-watcher": {
@@ -14082,68 +12594,29 @@
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
- "node_modules/jest-watcher/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==",
+ "node_modules/jest-watcher/node_modules/ansi-escapes": {
+ "version": "4.3.2",
+ "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz",
+ "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==",
"dependencies": {
- "color-convert": "^2.0.1"
+ "type-fest": "^0.21.3"
},
"engines": {
"node": ">=8"
},
"funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/jest-watcher/node_modules/chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
+ "node_modules/jest-watcher/node_modules/type-fest": {
+ "version": "0.21.3",
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz",
+ "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==",
"engines": {
"node": ">=10"
},
"funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
- }
- },
- "node_modules/jest-watcher/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==",
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/jest-watcher/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=="
- },
- "node_modules/jest-watcher/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==",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/jest-watcher/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==",
- "dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/jest-worker": {
@@ -14159,14 +12632,6 @@
"node": ">= 10.13.0"
}
},
- "node_modules/jest-worker/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==",
- "engines": {
- "node": ">=8"
- }
- },
"node_modules/jest-worker/node_modules/supports-color": {
"version": "8.1.1",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
@@ -14182,9 +12647,9 @@
}
},
"node_modules/jiti": {
- "version": "1.18.2",
- "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.18.2.tgz",
- "integrity": "sha512-QAdOptna2NYiSSpv0O/BwoHBSmz4YhpzJHyi+fnMRTXFjp7B8i/YG5Z8IfusxB1ufjcD2Sre1F3R+nX3fvy7gg==",
+ "version": "1.21.0",
+ "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.0.tgz",
+ "integrity": "sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==",
"dev": true,
"peer": true,
"bin": {
@@ -14197,12 +12662,12 @@
"integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="
},
"node_modules/js-yaml": {
- "version": "3.14.1",
- "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz",
- "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==",
+ "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": "^1.0.7",
- "esprima": "^4.0.0"
+ "argparse": "^2.0.1"
},
"bin": {
"js-yaml": "bin/js-yaml.js"
@@ -14264,6 +12729,12 @@
"node": ">=4"
}
},
+ "node_modules/json-buffer": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz",
+ "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==",
+ "dev": true
+ },
"node_modules/json-parse-even-better-errors": {
"version": "2.3.1",
"resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz",
@@ -14277,9 +12748,9 @@
"peer": true
},
"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==",
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
+ "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
"dev": true
},
"node_modules/json-stable-stringify-without-jsonify": {
@@ -14320,6 +12791,32 @@
"node >= 0.2.0"
]
},
+ "node_modules/jsonpath": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/jsonpath/-/jsonpath-1.1.1.tgz",
+ "integrity": "sha512-l6Cg7jRpixfbgoWgkrl77dgEj8RPvND0wMH6TwQmi9Qs4TFfS9u5cUFnbeKTwj5ga5Y3BTGGNI28k117LJ009w==",
+ "dev": true,
+ "peer": true,
+ "dependencies": {
+ "esprima": "1.2.2",
+ "static-eval": "2.0.2",
+ "underscore": "1.12.1"
+ }
+ },
+ "node_modules/jsonpath/node_modules/esprima": {
+ "version": "1.2.2",
+ "resolved": "https://registry.npmjs.org/esprima/-/esprima-1.2.2.tgz",
+ "integrity": "sha512-+JpPZam9w5DuJ3Q67SqsMGtiHKENSMRVoxvArfJZK01/BfLEObtZ6orJa/MtoGNR/rfMgp5837T41PAmTwAv/A==",
+ "dev": true,
+ "peer": true,
+ "bin": {
+ "esparse": "bin/esparse.js",
+ "esvalidate": "bin/esvalidate.js"
+ },
+ "engines": {
+ "node": ">=0.4.0"
+ }
+ },
"node_modules/jsonpointer": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-5.0.1.tgz",
@@ -14347,18 +12844,29 @@
}
},
"node_modules/jsx-ast-utils": {
- "version": "3.3.3",
- "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.3.tgz",
- "integrity": "sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==",
+ "version": "3.3.5",
+ "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz",
+ "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==",
"dev": true,
"dependencies": {
- "array-includes": "^3.1.5",
- "object.assign": "^4.1.3"
+ "array-includes": "^3.1.6",
+ "array.prototype.flat": "^1.3.1",
+ "object.assign": "^4.1.4",
+ "object.values": "^1.1.6"
},
"engines": {
"node": ">=4.0"
}
},
+ "node_modules/keyv": {
+ "version": "4.5.4",
+ "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz",
+ "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==",
+ "dev": true,
+ "dependencies": {
+ "json-buffer": "3.0.1"
+ }
+ },
"node_modules/kind-of": {
"version": "6.0.3",
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz",
@@ -14394,24 +12902,27 @@
"peer": true
},
"node_modules/language-tags": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz",
- "integrity": "sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==",
+ "version": "1.0.9",
+ "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.9.tgz",
+ "integrity": "sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==",
"dev": true,
"peer": true,
"dependencies": {
- "language-subtag-registry": "~0.3.2"
+ "language-subtag-registry": "^0.3.20"
+ },
+ "engines": {
+ "node": ">=0.10"
}
},
"node_modules/launch-editor": {
- "version": "2.6.0",
- "resolved": "https://registry.npmjs.org/launch-editor/-/launch-editor-2.6.0.tgz",
- "integrity": "sha512-JpDCcQnyAAzZZaZ7vEiSqL690w7dAEyLao+KC96zBplnYbJS7TYNjvM3M7y3dGz+v7aIsJk3hllWuc0kWAjyRQ==",
+ "version": "2.6.1",
+ "resolved": "https://registry.npmjs.org/launch-editor/-/launch-editor-2.6.1.tgz",
+ "integrity": "sha512-eB/uXmFVpY4zezmGp5XtU21kwo7GBbKB+EQ+UZeWtGb9yAM5xt/Evk+lYH3eRNAtId+ej4u7TYPFZ07w4s7rRw==",
"dev": true,
"peer": true,
"dependencies": {
"picocolors": "^1.0.0",
- "shell-quote": "^1.7.3"
+ "shell-quote": "^1.8.1"
}
},
"node_modules/leven": {
@@ -14435,6 +12946,116 @@
"node": ">= 0.8.0"
}
},
+ "node_modules/license-checker": {
+ "version": "25.0.1",
+ "resolved": "https://registry.npmjs.org/license-checker/-/license-checker-25.0.1.tgz",
+ "integrity": "sha512-mET5AIwl7MR2IAKYYoVBBpV0OnkKQ1xGj2IMMeEFIs42QAkEVjRtFZGWmQ28WeU7MP779iAgOaOy93Mn44mn6g==",
+ "dev": true,
+ "dependencies": {
+ "chalk": "^2.4.1",
+ "debug": "^3.1.0",
+ "mkdirp": "^0.5.1",
+ "nopt": "^4.0.1",
+ "read-installed": "~4.0.3",
+ "semver": "^5.5.0",
+ "spdx-correct": "^3.0.0",
+ "spdx-expression-parse": "^3.0.0",
+ "spdx-satisfies": "^4.0.0",
+ "treeify": "^1.1.0"
+ },
+ "bin": {
+ "license-checker": "bin/license-checker"
+ }
+ },
+ "node_modules/license-checker/node_modules/ansi-styles": {
+ "version": "3.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
+ "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
+ "dev": true,
+ "dependencies": {
+ "color-convert": "^1.9.0"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/license-checker/node_modules/chalk": {
+ "version": "2.4.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
+ "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
+ "dev": true,
+ "dependencies": {
+ "ansi-styles": "^3.2.1",
+ "escape-string-regexp": "^1.0.5",
+ "supports-color": "^5.3.0"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/license-checker/node_modules/color-convert": {
+ "version": "1.9.3",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
+ "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
+ "dev": true,
+ "dependencies": {
+ "color-name": "1.1.3"
+ }
+ },
+ "node_modules/license-checker/node_modules/color-name": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
+ "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==",
+ "dev": true
+ },
+ "node_modules/license-checker/node_modules/debug": {
+ "version": "3.2.7",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
+ "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
+ "dev": true,
+ "dependencies": {
+ "ms": "^2.1.1"
+ }
+ },
+ "node_modules/license-checker/node_modules/escape-string-regexp": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
+ "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.8.0"
+ }
+ },
+ "node_modules/license-checker/node_modules/has-flag": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
+ "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==",
+ "dev": true,
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/license-checker/node_modules/semver": {
+ "version": "5.7.2",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz",
+ "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==",
+ "dev": true,
+ "bin": {
+ "semver": "bin/semver"
+ }
+ },
+ "node_modules/license-checker/node_modules/supports-color": {
+ "version": "5.5.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
+ "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
+ "dev": true,
+ "dependencies": {
+ "has-flag": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
"node_modules/lilconfig": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz",
@@ -14619,13 +13240,6 @@
"tslib": "^2.0.3"
}
},
- "node_modules/lower-case/node_modules/tslib": {
- "version": "2.5.0",
- "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz",
- "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==",
- "dev": true,
- "peer": true
- },
"node_modules/lru-cache": {
"version": "5.1.1",
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
@@ -14645,27 +13259,19 @@
}
},
"node_modules/make-dir": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz",
- "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==",
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz",
+ "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==",
"dependencies": {
- "semver": "^6.0.0"
+ "semver": "^7.5.3"
},
"engines": {
- "node": ">=8"
+ "node": ">=10"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/make-dir/node_modules/semver": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
- "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
- "bin": {
- "semver": "bin/semver.js"
- }
- },
"node_modules/make-error": {
"version": "1.3.6",
"resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz",
@@ -14718,13 +13324,13 @@
}
},
"node_modules/memfs": {
- "version": "3.5.1",
- "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.5.1.tgz",
- "integrity": "sha512-UWbFJKvj5k+nETdteFndTpYxdeTMox/ULeqX5k/dpaQJCCFmj5EeKv3dBcyO2xmkRAx2vppRu5dVG7SOtsGOzA==",
+ "version": "3.5.3",
+ "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.5.3.tgz",
+ "integrity": "sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==",
"dev": true,
"peer": true,
"dependencies": {
- "fs-monkey": "^1.0.3"
+ "fs-monkey": "^1.0.4"
},
"engines": {
"node": ">= 4.0.0"
@@ -14809,16 +13415,14 @@
}
},
"node_modules/mime": {
- "version": "1.6.0",
- "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz",
- "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==",
- "dev": true,
- "peer": true,
+ "version": "2.6.0",
+ "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz",
+ "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==",
"bin": {
"mime": "cli.js"
},
"engines": {
- "node": ">=4"
+ "node": ">=4.0.0"
}
},
"node_modules/mime-db": {
@@ -14858,13 +13462,14 @@
}
},
"node_modules/mini-css-extract-plugin": {
- "version": "2.7.5",
- "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.7.5.tgz",
- "integrity": "sha512-9HaR++0mlgom81s95vvNjxkg52n2b5s//3ZTI1EtzFb98awsLSivs2LMsVqnQ3ay0PVhqWcGNyDaTE961FOcjQ==",
+ "version": "2.8.0",
+ "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.8.0.tgz",
+ "integrity": "sha512-CxmUYPFcTgET1zImteG/LZOy/4T5rTojesQXkSNBiquhydn78tfbCE9sjIjnJ/UcjNjOC1bphTCCW5rrS7cXAg==",
"dev": true,
"peer": true,
"dependencies": {
- "schema-utils": "^4.0.0"
+ "schema-utils": "^4.0.0",
+ "tapable": "^2.2.1"
},
"engines": {
"node": ">= 12.13.0"
@@ -14877,47 +13482,10 @@
"webpack": "^5.0.0"
}
},
- "node_modules/mini-css-extract-plugin/node_modules/ajv": {
- "version": "8.12.0",
- "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz",
- "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==",
- "dev": true,
- "peer": true,
- "dependencies": {
- "fast-deep-equal": "^3.1.1",
- "json-schema-traverse": "^1.0.0",
- "require-from-string": "^2.0.2",
- "uri-js": "^4.2.2"
- },
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/epoberezkin"
- }
- },
- "node_modules/mini-css-extract-plugin/node_modules/ajv-keywords": {
- "version": "5.1.0",
- "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz",
- "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==",
- "dev": true,
- "peer": true,
- "dependencies": {
- "fast-deep-equal": "^3.1.3"
- },
- "peerDependencies": {
- "ajv": "^8.8.2"
- }
- },
- "node_modules/mini-css-extract-plugin/node_modules/json-schema-traverse": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
- "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
- "dev": true,
- "peer": true
- },
"node_modules/mini-css-extract-plugin/node_modules/schema-utils": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.1.tgz",
- "integrity": "sha512-lELhBAAly9NowEsX0yZBlw9ahZG+sK/1RJ21EpzdYHKEs13Vku3LJ+MIPhh4sMs0oCCeufZQEQbMekiA4vuVIQ==",
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz",
+ "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==",
"dev": true,
"peer": true,
"dependencies": {
@@ -14975,13 +13543,14 @@
"node": ">= 6"
}
},
- "node_modules/minimist-options/node_modules/is-plain-obj": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz",
- "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==",
+ "node_modules/minipass": {
+ "version": "7.0.4",
+ "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.4.tgz",
+ "integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==",
"dev": true,
+ "peer": true,
"engines": {
- "node": ">=0.10.0"
+ "node": ">=16 || 14 >=14.17"
}
},
"node_modules/mkdirp": {
@@ -14989,7 +13558,6 @@
"resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz",
"integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==",
"dev": true,
- "peer": true,
"dependencies": {
"minimist": "^1.2.6"
},
@@ -14998,9 +13566,9 @@
}
},
"node_modules/moment": {
- "version": "2.29.4",
- "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.4.tgz",
- "integrity": "sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==",
+ "version": "2.30.1",
+ "resolved": "https://registry.npmjs.org/moment/-/moment-2.30.1.tgz",
+ "integrity": "sha512-uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how==",
"dev": true,
"peer": true,
"engines": {
@@ -15052,9 +13620,9 @@
"peer": true
},
"node_modules/nanoid": {
- "version": "3.3.6",
- "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz",
- "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==",
+ "version": "3.3.7",
+ "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz",
+ "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==",
"dev": true,
"funding": [
{
@@ -15110,13 +13678,6 @@
"tslib": "^2.0.3"
}
},
- "node_modules/no-case/node_modules/tslib": {
- "version": "2.5.0",
- "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz",
- "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==",
- "dev": true,
- "peer": true
- },
"node_modules/node-forge": {
"version": "1.3.1",
"resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz",
@@ -15133,9 +13694,22 @@
"integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw=="
},
"node_modules/node-releases": {
- "version": "2.0.10",
- "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.10.tgz",
- "integrity": "sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w=="
+ "version": "2.0.14",
+ "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz",
+ "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw=="
+ },
+ "node_modules/nopt": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/nopt/-/nopt-4.0.3.tgz",
+ "integrity": "sha512-CvaGwVMztSMJLOeXPrez7fyfObdZqNUK1cPAEzLHrTybIua9pMdmmPR5YwtfNftIOMv3DPUhFaxsZMNTQO20Kg==",
+ "dev": true,
+ "dependencies": {
+ "abbrev": "1",
+ "osenv": "^0.1.4"
+ },
+ "bin": {
+ "nopt": "bin/nopt.js"
+ }
},
"node_modules/normalize-package-data": {
"version": "3.0.3",
@@ -15183,6 +13757,12 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
+ "node_modules/npm-normalize-package-bin": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz",
+ "integrity": "sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==",
+ "dev": true
+ },
"node_modules/npm-run-path": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz",
@@ -15208,9 +13788,9 @@
}
},
"node_modules/nwsapi": {
- "version": "2.2.4",
- "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.4.tgz",
- "integrity": "sha512-NHj4rzRo0tQdijE9ZqAx6kYDcoRwYwSYzCA8MY3JzfxlrvEU0jhnhJT9BhqhJs7I/dKcrDm6TyulaRqZPIhN5g=="
+ "version": "2.2.7",
+ "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.7.tgz",
+ "integrity": "sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ=="
},
"node_modules/object-assign": {
"version": "4.1.1",
@@ -15232,26 +13812,9 @@
}
},
"node_modules/object-inspect": {
- "version": "1.12.3",
- "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz",
- "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==",
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/object-is": {
- "version": "1.1.5",
- "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz",
- "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==",
- "dev": true,
- "peer": true,
- "dependencies": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.3"
- },
- "engines": {
- "node": ">= 0.4"
- },
+ "version": "1.13.1",
+ "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz",
+ "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==",
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
@@ -15266,13 +13829,13 @@
}
},
"node_modules/object.assign": {
- "version": "4.1.4",
- "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz",
- "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==",
+ "version": "4.1.5",
+ "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz",
+ "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==",
"dev": true,
"dependencies": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.4",
+ "call-bind": "^1.0.5",
+ "define-properties": "^1.2.1",
"has-symbols": "^1.0.3",
"object-keys": "^1.1.1"
},
@@ -15284,28 +13847,28 @@
}
},
"node_modules/object.entries": {
- "version": "1.1.6",
- "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz",
- "integrity": "sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==",
+ "version": "1.1.7",
+ "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.7.tgz",
+ "integrity": "sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA==",
"dev": true,
"dependencies": {
"call-bind": "^1.0.2",
- "define-properties": "^1.1.4",
- "es-abstract": "^1.20.4"
+ "define-properties": "^1.2.0",
+ "es-abstract": "^1.22.1"
},
"engines": {
"node": ">= 0.4"
}
},
"node_modules/object.fromentries": {
- "version": "2.0.6",
- "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.6.tgz",
- "integrity": "sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==",
+ "version": "2.0.7",
+ "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.7.tgz",
+ "integrity": "sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==",
"dev": true,
"dependencies": {
"call-bind": "^1.0.2",
- "define-properties": "^1.1.4",
- "es-abstract": "^1.20.4"
+ "define-properties": "^1.2.0",
+ "es-abstract": "^1.22.1"
},
"engines": {
"node": ">= 0.4"
@@ -15315,16 +13878,16 @@
}
},
"node_modules/object.getownpropertydescriptors": {
- "version": "2.1.6",
- "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.6.tgz",
- "integrity": "sha512-lq+61g26E/BgHv0ZTFgRvi7NMEPuAxLkFU7rukXjc/AlwH4Am5xXVnIXy3un1bg/JPbXHrixRkK1itUzzPiIjQ==",
+ "version": "2.1.7",
+ "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.7.tgz",
+ "integrity": "sha512-PrJz0C2xJ58FNn11XV2lr4Jt5Gzl94qpy9Lu0JlfEj14z88sqbSBJCBEzdlNUCzY2gburhbrwOZ5BHCmuNUy0g==",
"dev": true,
"peer": true,
"dependencies": {
- "array.prototype.reduce": "^1.0.5",
+ "array.prototype.reduce": "^1.0.6",
"call-bind": "^1.0.2",
"define-properties": "^1.2.0",
- "es-abstract": "^1.21.2",
+ "es-abstract": "^1.22.1",
"safe-array-concat": "^1.0.0"
},
"engines": {
@@ -15334,28 +13897,40 @@
"url": "https://github.com/sponsors/ljharb"
}
},
+ "node_modules/object.groupby": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.1.tgz",
+ "integrity": "sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.2.0",
+ "es-abstract": "^1.22.1",
+ "get-intrinsic": "^1.2.1"
+ }
+ },
"node_modules/object.hasown": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.2.tgz",
- "integrity": "sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==",
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.3.tgz",
+ "integrity": "sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA==",
"dev": true,
"dependencies": {
- "define-properties": "^1.1.4",
- "es-abstract": "^1.20.4"
+ "define-properties": "^1.2.0",
+ "es-abstract": "^1.22.1"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/object.values": {
- "version": "1.1.6",
- "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz",
- "integrity": "sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==",
+ "version": "1.1.7",
+ "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.7.tgz",
+ "integrity": "sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==",
"dev": true,
"dependencies": {
"call-bind": "^1.0.2",
- "define-properties": "^1.1.4",
- "es-abstract": "^1.20.4"
+ "define-properties": "^1.2.0",
+ "es-abstract": "^1.22.1"
},
"engines": {
"node": ">= 0.4"
@@ -15451,6 +14026,15 @@
"node": ">= 0.8.0"
}
},
+ "node_modules/os-homedir": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz",
+ "integrity": "sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
"node_modules/os-tmpdir": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz",
@@ -15460,6 +14044,16 @@
"node": ">=0.10.0"
}
},
+ "node_modules/osenv": {
+ "version": "0.1.5",
+ "resolved": "https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz",
+ "integrity": "sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==",
+ "dev": true,
+ "dependencies": {
+ "os-homedir": "^1.0.0",
+ "os-tmpdir": "^1.0.0"
+ }
+ },
"node_modules/p-limit": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
@@ -15523,13 +14117,6 @@
"tslib": "^2.0.3"
}
},
- "node_modules/param-case/node_modules/tslib": {
- "version": "2.5.0",
- "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz",
- "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==",
- "dev": true,
- "peer": true
- },
"node_modules/parent-module": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
@@ -15585,13 +14172,6 @@
"tslib": "^2.0.3"
}
},
- "node_modules/pascal-case/node_modules/tslib": {
- "version": "2.5.0",
- "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz",
- "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==",
- "dev": true,
- "peer": true
- },
"node_modules/path-exists": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
@@ -15621,6 +14201,33 @@
"resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
"integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw=="
},
+ "node_modules/path-scurry": {
+ "version": "1.10.1",
+ "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.1.tgz",
+ "integrity": "sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==",
+ "dev": true,
+ "peer": true,
+ "dependencies": {
+ "lru-cache": "^9.1.1 || ^10.0.0",
+ "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0"
+ },
+ "engines": {
+ "node": ">=16 || 14 >=14.17"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/path-scurry/node_modules/lru-cache": {
+ "version": "10.2.0",
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.0.tgz",
+ "integrity": "sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==",
+ "dev": true,
+ "peer": true,
+ "engines": {
+ "node": "14 || >=16.14"
+ }
+ },
"node_modules/path-to-regexp": {
"version": "0.1.7",
"resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz",
@@ -15671,9 +14278,9 @@
}
},
"node_modules/pirates": {
- "version": "4.0.5",
- "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.5.tgz",
- "integrity": "sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==",
+ "version": "4.0.6",
+ "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz",
+ "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==",
"engines": {
"node": ">= 6"
}
@@ -15817,9 +14424,9 @@
}
},
"node_modules/postcss": {
- "version": "8.4.23",
- "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.23.tgz",
- "integrity": "sha512-bQ3qMcpF6A/YjR55xtoTr0jGOlnPOKAIMdOWiv0EIT6HVPEaJiJB4NLljSbiHoC2RX7DN5Uvjtpbg1NPdwv1oA==",
+ "version": "8.4.33",
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.33.tgz",
+ "integrity": "sha512-Kkpbhhdjw2qQs2O2DGX+8m5OVqEcbB9HRBvuYM9pgrjEFUg30A9LmXNlTAUj4S9kgtGyrMbTzVjH7E+s5Re2yg==",
"dev": true,
"funding": [
{
@@ -15837,7 +14444,7 @@
],
"peer": true,
"dependencies": {
- "nanoid": "^3.3.6",
+ "nanoid": "^3.3.7",
"picocolors": "^1.0.0",
"source-map-js": "^1.0.2"
},
@@ -16333,22 +14940,28 @@
}
},
"node_modules/postcss-load-config": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.1.tgz",
- "integrity": "sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==",
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.2.tgz",
+ "integrity": "sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==",
"dev": true,
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/postcss/"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
"peer": true,
"dependencies": {
- "lilconfig": "^2.0.5",
- "yaml": "^2.1.1"
+ "lilconfig": "^3.0.0",
+ "yaml": "^2.3.4"
},
"engines": {
"node": ">= 14"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/postcss/"
- },
"peerDependencies": {
"postcss": ">=8.0.9",
"ts-node": ">=9.0.0"
@@ -16362,10 +14975,20 @@
}
}
},
+ "node_modules/postcss-load-config/node_modules/lilconfig": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.0.0.tgz",
+ "integrity": "sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g==",
+ "dev": true,
+ "peer": true,
+ "engines": {
+ "node": ">=14"
+ }
+ },
"node_modules/postcss-load-config/node_modules/yaml": {
- "version": "2.2.2",
- "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.2.2.tgz",
- "integrity": "sha512-CBKFWExMn46Foo4cldiChEzn7S7SRV+wqiluAb6xmueD/fGyRHIhX8m14vVGgeFWjN540nKCNVj6P21eQjgTuA==",
+ "version": "2.3.4",
+ "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.4.tgz",
+ "integrity": "sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==",
"dev": true,
"peer": true,
"engines": {
@@ -16395,6 +15018,23 @@
"webpack": "^5.0.0"
}
},
+ "node_modules/postcss-loader/node_modules/cosmiconfig": {
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz",
+ "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==",
+ "dev": true,
+ "peer": true,
+ "dependencies": {
+ "@types/parse-json": "^4.0.0",
+ "import-fresh": "^3.2.1",
+ "parse-json": "^5.0.0",
+ "path-type": "^4.0.0",
+ "yaml": "^1.10.0"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
"node_modules/postcss-logical": {
"version": "5.0.4",
"resolved": "https://registry.npmjs.org/postcss-logical/-/postcss-logical-5.0.4.tgz",
@@ -16539,9 +15179,9 @@
}
},
"node_modules/postcss-modules-local-by-default": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz",
- "integrity": "sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==",
+ "version": "4.0.4",
+ "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.4.tgz",
+ "integrity": "sha512-L4QzMnOdVwRm1Qb8m4x8jsZzKAaPAgrUF1r/hjDR2Xj7R+8Zsf97jAlSQzWtKx5YNiNGN8QxmPFIc/sh+RQl+Q==",
"dev": true,
"peer": true,
"dependencies": {
@@ -16557,9 +15197,9 @@
}
},
"node_modules/postcss-modules-scope": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz",
- "integrity": "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==",
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.1.1.tgz",
+ "integrity": "sha512-uZgqzdTleelWjzJY+Fhti6F3C9iF1JR/dODLs/JDefozYcKTBCdD8BIl6nNPbTbcLnGrk56hzwZC2DaGNvYjzA==",
"dev": true,
"peer": true,
"dependencies": {
@@ -17033,9 +15673,9 @@
}
},
"node_modules/postcss-selector-parser": {
- "version": "6.0.12",
- "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.12.tgz",
- "integrity": "sha512-NdxGCAZdRrwVI1sy59+Wzrh+pMMHxapGnpfenDVlMEXoOcvt4pGE0JLK9YY2F5dLxcFYA/YbVQKhcGU+FtSYQg==",
+ "version": "6.0.15",
+ "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.15.tgz",
+ "integrity": "sha512-rEYkQOMUCEMhsKbK66tbEU9QVIxbhN18YiniAwA7XQYTVBqrBy+P2p5JcdqsHgKM2zWylp8d7J6eszocfds5Sw==",
"dev": true,
"peer": true,
"dependencies": {
@@ -17158,18 +15798,6 @@
"node": ">= 0.8.0"
}
},
- "node_modules/prettier": {
- "version": "2.5.1",
- "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.5.1.tgz",
- "integrity": "sha512-vBZcPRUR5MZJwoyi3ZoyQlc1rXeEck8KgeC9AwwOn+exuxLxq5toTRDTSaVrXHxelDMHy9zlicw8u66yxoSUFg==",
- "dev": true,
- "bin": {
- "prettier": "bin-prettier.js"
- },
- "engines": {
- "node": ">=10.13.0"
- }
- },
"node_modules/pretty-bytes": {
"version": "5.6.0",
"resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz",
@@ -17264,9 +15892,9 @@
}
},
"node_modules/property-expr": {
- "version": "2.0.5",
- "resolved": "https://registry.npmjs.org/property-expr/-/property-expr-2.0.5.tgz",
- "integrity": "sha512-IJUkICM5dP5znhCckHSv30Q4b5/JA5enCtkRHYaOVOAocnH/1BQEYTC5NMfT3AVl/iXKdr3aqQbQn9DxyWknwA==",
+ "version": "2.0.6",
+ "resolved": "https://registry.npmjs.org/property-expr/-/property-expr-2.0.6.tgz",
+ "integrity": "sha512-SVtmxhRE/CGkn3eZY1T6pC8Nln6Fr/lu1mKSgRud0eC73whjGfoAogbn78LkD8aFL0zz3bAFerKSnOl7NlErBA==",
"dev": true,
"peer": true
},
@@ -17300,9 +15928,9 @@
"integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag=="
},
"node_modules/punycode": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz",
- "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==",
+ "version": "2.3.1",
+ "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz",
+ "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==",
"engines": {
"node": ">=6"
}
@@ -17319,9 +15947,9 @@
}
},
"node_modules/qs": {
- "version": "6.11.0",
- "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz",
- "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==",
+ "version": "6.11.2",
+ "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.2.tgz",
+ "integrity": "sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA==",
"dependencies": {
"side-channel": "^1.0.4"
},
@@ -17422,19 +16050,6 @@
"node": ">= 0.8"
}
},
- "node_modules/raw-body/node_modules/iconv-lite": {
- "version": "0.4.24",
- "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
- "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
- "dev": true,
- "peer": true,
- "dependencies": {
- "safer-buffer": ">= 2.1.2 < 3"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
"node_modules/react": {
"version": "18.2.0",
"resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz",
@@ -17466,6 +16081,13 @@
"node": ">=14"
}
},
+ "node_modules/react-app-polyfill/node_modules/regenerator-runtime": {
+ "version": "0.13.11",
+ "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz",
+ "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==",
+ "dev": true,
+ "peer": true
+ },
"node_modules/react-dev-utils": {
"version": "12.0.1",
"resolved": "https://registry.npmjs.org/react-dev-utils/-/react-dev-utils-12.0.1.tgz",
@@ -17502,82 +16124,6 @@
"node": ">=14"
}
},
- "node_modules/react-dev-utils/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,
- "peer": true,
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/react-dev-utils/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,
- "peer": 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/react-dev-utils/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,
- "peer": true,
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/react-dev-utils/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,
- "peer": true
- },
- "node_modules/react-dev-utils/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,
- "peer": true,
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/react-dev-utils/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,
- "peer": true,
- "engines": {
- "node": ">=8"
- }
- },
"node_modules/react-dev-utils/node_modules/loader-utils": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.2.1.tgz",
@@ -17588,19 +16134,6 @@
"node": ">= 12.13.0"
}
},
- "node_modules/react-dev-utils/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,
- "peer": true,
- "dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
"node_modules/react-device-detect": {
"version": "2.2.3",
"resolved": "https://registry.npmjs.org/react-device-detect/-/react-device-detect-2.2.3.tgz",
@@ -17663,9 +16196,9 @@
"dev": true
},
"node_modules/react-redux": {
- "version": "8.0.5",
- "resolved": "https://registry.npmjs.org/react-redux/-/react-redux-8.0.5.tgz",
- "integrity": "sha512-Q2f6fCKxPFpkXt1qNRZdEDLlScsDWyrgSj0mliK59qU6W5gvBiKkdMEG2lJzhd1rCctf0hb6EtePPLZ2e0m1uw==",
+ "version": "8.1.3",
+ "resolved": "https://registry.npmjs.org/react-redux/-/react-redux-8.1.3.tgz",
+ "integrity": "sha512-n0ZrutD7DaX/j9VscF+uTALI3oUPa/pO4Z3soOBIjuRn/FzVu6aehhysxZCLi6y7duMf52WNZGMl7CtuK5EnRw==",
"dev": true,
"dependencies": {
"@babel/runtime": "^7.12.1",
@@ -17681,7 +16214,7 @@
"react": "^16.8 || ^17.0 || ^18.0",
"react-dom": "^16.8 || ^17.0 || ^18.0",
"react-native": ">=0.59",
- "redux": "^4"
+ "redux": "^4 || ^5.0.0-beta.0"
},
"peerDependenciesMeta": {
"@types/react": {
@@ -17791,21 +16324,32 @@
}
}
},
- "node_modules/react-transition-group": {
- "version": "4.4.5",
- "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.5.tgz",
- "integrity": "sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==",
+ "node_modules/react-scripts/node_modules/camelcase": {
+ "version": "6.3.0",
+ "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz",
+ "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==",
+ "dev": true,
+ "peer": true,
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/react-scripts/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,
"peer": true,
"dependencies": {
- "@babel/runtime": "^7.5.5",
- "dom-helpers": "^5.0.1",
- "loose-envify": "^1.4.0",
- "prop-types": "^15.6.2"
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^6.0.1",
+ "universalify": "^2.0.0"
},
- "peerDependencies": {
- "react": ">=16.6.0",
- "react-dom": ">=16.6.0"
+ "engines": {
+ "node": ">=12"
}
},
"node_modules/read-cache": {
@@ -17818,6 +16362,71 @@
"pify": "^2.3.0"
}
},
+ "node_modules/read-installed": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/read-installed/-/read-installed-4.0.3.tgz",
+ "integrity": "sha512-O03wg/IYuV/VtnK2h/KXEt9VIbMUFbk3ERG0Iu4FhLZw0EP0T9znqrYDGn6ncbEsXUFaUjiVAWXHzxwt3lhRPQ==",
+ "dev": true,
+ "dependencies": {
+ "debuglog": "^1.0.1",
+ "read-package-json": "^2.0.0",
+ "readdir-scoped-modules": "^1.0.0",
+ "semver": "2 || 3 || 4 || 5",
+ "slide": "~1.1.3",
+ "util-extend": "^1.0.1"
+ },
+ "optionalDependencies": {
+ "graceful-fs": "^4.1.2"
+ }
+ },
+ "node_modules/read-installed/node_modules/semver": {
+ "version": "5.7.2",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz",
+ "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==",
+ "dev": true,
+ "bin": {
+ "semver": "bin/semver"
+ }
+ },
+ "node_modules/read-package-json": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/read-package-json/-/read-package-json-2.1.2.tgz",
+ "integrity": "sha512-D1KmuLQr6ZSJS0tW8hf3WGpRlwszJOXZ3E8Yd/DNRaM5d+1wVRZdHlpGBLAuovjr28LbWvjpWkBHMxpRGGjzNA==",
+ "dev": true,
+ "dependencies": {
+ "glob": "^7.1.1",
+ "json-parse-even-better-errors": "^2.3.0",
+ "normalize-package-data": "^2.0.0",
+ "npm-normalize-package-bin": "^1.0.0"
+ }
+ },
+ "node_modules/read-package-json/node_modules/hosted-git-info": {
+ "version": "2.8.9",
+ "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz",
+ "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==",
+ "dev": true
+ },
+ "node_modules/read-package-json/node_modules/normalize-package-data": {
+ "version": "2.5.0",
+ "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz",
+ "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==",
+ "dev": true,
+ "dependencies": {
+ "hosted-git-info": "^2.1.4",
+ "resolve": "^1.10.0",
+ "semver": "2 || 3 || 4 || 5",
+ "validate-npm-package-license": "^3.0.1"
+ }
+ },
+ "node_modules/read-package-json/node_modules/semver": {
+ "version": "5.7.2",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz",
+ "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==",
+ "dev": true,
+ "bin": {
+ "semver": "bin/semver"
+ }
+ },
"node_modules/read-pkg": {
"version": "5.2.0",
"resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz",
@@ -17961,6 +16570,19 @@
"node": ">= 6"
}
},
+ "node_modules/readdir-scoped-modules": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/readdir-scoped-modules/-/readdir-scoped-modules-1.1.0.tgz",
+ "integrity": "sha512-asaikDeqAQg7JifRsZn1NJZXo9E+VwlyCfbkZhwyISinqk5zNS6266HS5kah6P0SaQKGF6SkNnZVHUzHFYxYDw==",
+ "deprecated": "This functionality has been moved to @npmcli/fs",
+ "dev": true,
+ "dependencies": {
+ "debuglog": "^1.0.1",
+ "dezalgo": "^1.0.0",
+ "graceful-fs": "^4.1.2",
+ "once": "^1.3.0"
+ }
+ },
"node_modules/readdirp": {
"version": "3.6.0",
"resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
@@ -18030,6 +16652,26 @@
"redux": "^4"
}
},
+ "node_modules/reflect.getprototypeof": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.4.tgz",
+ "integrity": "sha512-ECkTw8TmJwW60lOTR+ZkODISW6RQ8+2CL3COqtiJKLd6MmB45hN51HprHFziKLGkAuTGQhBb91V8cy+KHlaCjw==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.2.0",
+ "es-abstract": "^1.22.1",
+ "get-intrinsic": "^1.2.1",
+ "globalthis": "^1.0.3",
+ "which-builtin-type": "^1.1.3"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
"node_modules/regenerate": {
"version": "1.4.2",
"resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz",
@@ -18038,9 +16680,9 @@
"peer": true
},
"node_modules/regenerate-unicode-properties": {
- "version": "10.1.0",
- "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz",
- "integrity": "sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==",
+ "version": "10.1.1",
+ "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.1.tgz",
+ "integrity": "sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==",
"dev": true,
"peer": true,
"dependencies": {
@@ -18051,15 +16693,15 @@
}
},
"node_modules/regenerator-runtime": {
- "version": "0.13.11",
- "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz",
- "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==",
+ "version": "0.14.1",
+ "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz",
+ "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==",
"dev": true
},
"node_modules/regenerator-transform": {
- "version": "0.15.1",
- "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.1.tgz",
- "integrity": "sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==",
+ "version": "0.15.2",
+ "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz",
+ "integrity": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==",
"dev": true,
"peer": true,
"dependencies": {
@@ -18067,21 +16709,21 @@
}
},
"node_modules/regex-parser": {
- "version": "2.2.11",
- "resolved": "https://registry.npmjs.org/regex-parser/-/regex-parser-2.2.11.tgz",
- "integrity": "sha512-jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q==",
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/regex-parser/-/regex-parser-2.3.0.tgz",
+ "integrity": "sha512-TVILVSz2jY5D47F4mA4MppkBrafEaiUWJO/TcZHEIuI13AqoZMkK1WMA4Om1YkYbTx+9Ki1/tSUXbceyr9saRg==",
"dev": true,
"peer": true
},
"node_modules/regexp.prototype.flags": {
- "version": "1.5.0",
- "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz",
- "integrity": "sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==",
+ "version": "1.5.1",
+ "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.1.tgz",
+ "integrity": "sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==",
"dev": true,
"dependencies": {
"call-bind": "^1.0.2",
"define-properties": "^1.2.0",
- "functions-have-names": "^1.2.3"
+ "set-function-name": "^2.0.0"
},
"engines": {
"node": ">= 0.4"
@@ -18206,11 +16848,11 @@
"peer": true
},
"node_modules/resolve": {
- "version": "1.22.2",
- "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz",
- "integrity": "sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==",
+ "version": "1.22.8",
+ "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz",
+ "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==",
"dependencies": {
- "is-core-module": "^2.11.0",
+ "is-core-module": "^2.13.0",
"path-parse": "^1.0.7",
"supports-preserve-symlinks-flag": "^1.0.0"
},
@@ -18425,16 +17067,6 @@
"rollup": "^2.0.0"
}
},
- "node_modules/rollup-plugin-terser/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,
- "peer": true,
- "engines": {
- "node": ">=8"
- }
- },
"node_modules/rollup-plugin-terser/node_modules/jest-worker": {
"version": "26.6.2",
"resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz",
@@ -18460,19 +17092,6 @@
"randombytes": "^2.1.0"
}
},
- "node_modules/rollup-plugin-terser/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,
- "peer": true,
- "dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
"node_modules/run-async": {
"version": "2.4.1",
"resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz",
@@ -18517,15 +17136,20 @@
"npm": ">=2.0.0"
}
},
+ "node_modules/rxjs/node_modules/tslib": {
+ "version": "1.14.1",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
+ "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==",
+ "dev": true
+ },
"node_modules/safe-array-concat": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.0.0.tgz",
- "integrity": "sha512-9dVEFruWIsnie89yym+xWTAYASdpw3CJV7Li/6zBewGf9z2i1j31rP6jnY0pHEO4QZh6N0K11bFjWmdR8UGdPQ==",
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.0.tgz",
+ "integrity": "sha512-ZdQ0Jeb9Ofti4hbt5lX3T2JcAamT9hfzYU1MNB+z/jaEbB6wfFfPIR/zEORmZqobkCCJhSjodobH6WHNmJ97dg==",
"dev": true,
- "peer": true,
"dependencies": {
- "call-bind": "^1.0.2",
- "get-intrinsic": "^1.2.0",
+ "call-bind": "^1.0.5",
+ "get-intrinsic": "^1.2.2",
"has-symbols": "^1.0.3",
"isarray": "^2.0.5"
},
@@ -18557,15 +17181,18 @@
]
},
"node_modules/safe-regex-test": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz",
- "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==",
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.2.tgz",
+ "integrity": "sha512-83S9w6eFq12BBIJYvjMux6/dkirb8+4zJRA9cxNBVb7Wq5fJBW+Xze48WqR8pxua7bDuAaaAxtVVd4Idjp1dBQ==",
"dev": true,
"dependencies": {
- "call-bind": "^1.0.2",
- "get-intrinsic": "^1.1.3",
+ "call-bind": "^1.0.5",
+ "get-intrinsic": "^1.2.2",
"is-regex": "^1.1.4"
},
+ "engines": {
+ "node": ">= 0.4"
+ },
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
@@ -18650,9 +17277,9 @@
}
},
"node_modules/schema-utils": {
- "version": "3.1.2",
- "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.2.tgz",
- "integrity": "sha512-pvjEHOgWc9OWA/f/DE3ohBWTD6EleVLf7iFUkoSwAxttdBhB9QUebQgxER2kWueOvRJXPHNnyrvvh9eZINB8Eg==",
+ "version": "3.3.0",
+ "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz",
+ "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==",
"dev": true,
"peer": true,
"dependencies": {
@@ -18668,6 +17295,40 @@
"url": "https://opencollective.com/webpack"
}
},
+ "node_modules/schema-utils/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,
+ "peer": 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/schema-utils/node_modules/ajv-keywords": {
+ "version": "3.5.2",
+ "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz",
+ "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==",
+ "dev": true,
+ "peer": true,
+ "peerDependencies": {
+ "ajv": "^6.9.1"
+ }
+ },
+ "node_modules/schema-utils/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,
+ "peer": true
+ },
"node_modules/select-hose": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz",
@@ -18676,12 +17337,13 @@
"peer": true
},
"node_modules/selfsigned": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.1.1.tgz",
- "integrity": "sha512-GSL3aowiF7wa/WtSFwnUrludWFoNhftq8bUkH9pkzjpN2XSPOAYEgg6e0sS9s0rZwgJzJiQRPU18A6clnoW5wQ==",
+ "version": "2.4.1",
+ "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.4.1.tgz",
+ "integrity": "sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==",
"dev": true,
"peer": true,
"dependencies": {
+ "@types/node-forge": "^1.3.0",
"node-forge": "^1"
},
"engines": {
@@ -18760,6 +17422,19 @@
"dev": true,
"peer": true
},
+ "node_modules/send/node_modules/mime": {
+ "version": "1.6.0",
+ "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz",
+ "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==",
+ "dev": true,
+ "peer": true,
+ "bin": {
+ "mime": "cli.js"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
"node_modules/send/node_modules/ms": {
"version": "2.1.3",
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
@@ -18768,9 +17443,9 @@
"peer": true
},
"node_modules/serialize-javascript": {
- "version": "6.0.1",
- "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz",
- "integrity": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==",
+ "version": "6.0.2",
+ "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz",
+ "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==",
"dev": true,
"peer": true,
"dependencies": {
@@ -18891,6 +17566,35 @@
"sccli": "cli.mjs"
}
},
+ "node_modules/set-function-length": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.0.tgz",
+ "integrity": "sha512-4DBHDoyHlM1IRPGYcoxexgh67y4ueR53FKV1yyxwFMY7aCqcN/38M1+SwZ/qJQ8iLv7+ck385ot4CcisOAPT9w==",
+ "dependencies": {
+ "define-data-property": "^1.1.1",
+ "function-bind": "^1.1.2",
+ "get-intrinsic": "^1.2.2",
+ "gopd": "^1.0.1",
+ "has-property-descriptors": "^1.0.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/set-function-name": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.1.tgz",
+ "integrity": "sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==",
+ "dev": true,
+ "dependencies": {
+ "define-data-property": "^1.0.1",
+ "functions-have-names": "^1.2.3",
+ "has-property-descriptors": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
"node_modules/setprototypeof": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz",
@@ -18958,6 +17662,15 @@
"node": ">=8"
}
},
+ "node_modules/slide": {
+ "version": "1.1.6",
+ "resolved": "https://registry.npmjs.org/slide/-/slide-1.1.6.tgz",
+ "integrity": "sha512-NwrtjCg+lZoqhFU8fOwl4ay2ei8PaqCBOUV3/ektPY9trO1yQ1oXEfmHAhKArUVUr/hOHvy5f6AdP17dCM0zMw==",
+ "dev": true,
+ "engines": {
+ "node": "*"
+ }
+ },
"node_modules/sockjs": {
"version": "0.3.24",
"resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz",
@@ -18978,11 +17691,13 @@
"peer": true
},
"node_modules/source-map": {
- "version": "0.7.4",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz",
- "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==",
+ "version": "0.5.7",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
+ "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==",
+ "dev": true,
+ "peer": true,
"engines": {
- "node": ">= 8"
+ "node": ">=0.10.0"
}
},
"node_modules/source-map-js": {
@@ -19017,6 +17732,19 @@
"webpack": "^5.0.0"
}
},
+ "node_modules/source-map-loader/node_modules/iconv-lite": {
+ "version": "0.6.3",
+ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz",
+ "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==",
+ "dev": true,
+ "peer": true,
+ "dependencies": {
+ "safer-buffer": ">= 2.1.2 < 3.0.0"
+ },
+ "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",
@@ -19042,6 +17770,17 @@
"dev": true,
"peer": true
},
+ "node_modules/spdx-compare": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/spdx-compare/-/spdx-compare-1.0.0.tgz",
+ "integrity": "sha512-C1mDZOX0hnu0ep9dfmuoi03+eOdDoz2yvK79RxbcrVEG1NO1Ph35yW102DHWKN4pk80nwCgeMmSY5L25VE4D9A==",
+ "dev": true,
+ "dependencies": {
+ "array-find-index": "^1.0.2",
+ "spdx-expression-parse": "^3.0.0",
+ "spdx-ranges": "^2.0.0"
+ }
+ },
"node_modules/spdx-correct": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz",
@@ -19074,6 +17813,23 @@
"integrity": "sha512-eWN+LnM3GR6gPu35WxNgbGl8rmY1AEmoMDvL/QD6zYmPWgywxWqJWNdLGT+ke8dKNWrcYgYjPpG5gbTfghP8rw==",
"dev": true
},
+ "node_modules/spdx-ranges": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/spdx-ranges/-/spdx-ranges-2.1.1.tgz",
+ "integrity": "sha512-mcdpQFV7UDAgLpXEE/jOMqvK4LBoO0uTQg0uvXUewmEFhpiZx5yJSZITHB8w1ZahKdhfZqP5GPEOKLyEq5p8XA==",
+ "dev": true
+ },
+ "node_modules/spdx-satisfies": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/spdx-satisfies/-/spdx-satisfies-4.0.1.tgz",
+ "integrity": "sha512-WVzZ/cXAzoNmjCWiEluEA3BjHp5tiUmmhn9MK+X0tBbR9sOqtC6UQwmgCNrAIZvNlMuBUYAaHYfb2oqlF9SwKA==",
+ "dev": true,
+ "dependencies": {
+ "spdx-compare": "^1.0.0",
+ "spdx-expression-parse": "^3.0.0",
+ "spdx-ranges": "^2.0.0"
+ }
+ },
"node_modules/spdy": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz",
@@ -19154,6 +17910,115 @@
"dev": true,
"peer": true
},
+ "node_modules/static-eval": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/static-eval/-/static-eval-2.0.2.tgz",
+ "integrity": "sha512-N/D219Hcr2bPjLxPiV+TQE++Tsmrady7TqAJugLy7Xk1EumfDWS/f5dtBbkRCGE7wKKXuYockQoj8Rm2/pVKyg==",
+ "dev": true,
+ "peer": true,
+ "dependencies": {
+ "escodegen": "^1.8.1"
+ }
+ },
+ "node_modules/static-eval/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,
+ "peer": 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/static-eval/node_modules/estraverse": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz",
+ "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==",
+ "dev": true,
+ "peer": true,
+ "engines": {
+ "node": ">=4.0"
+ }
+ },
+ "node_modules/static-eval/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,
+ "peer": true,
+ "dependencies": {
+ "prelude-ls": "~1.1.2",
+ "type-check": "~0.3.2"
+ },
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/static-eval/node_modules/optionator": {
+ "version": "0.8.3",
+ "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz",
+ "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==",
+ "dev": true,
+ "peer": 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/static-eval/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,
+ "peer": true,
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/static-eval/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,
+ "optional": true,
+ "peer": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/static-eval/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,
+ "peer": true,
+ "dependencies": {
+ "prelude-ls": "~1.1.2"
+ },
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
"node_modules/statuses": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz",
@@ -19175,19 +18040,6 @@
"url": "https://github.com/sponsors/typicode"
}
},
- "node_modules/stop-iteration-iterator": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz",
- "integrity": "sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==",
- "dev": true,
- "peer": true,
- "dependencies": {
- "internal-slot": "^1.0.4"
- },
- "engines": {
- "node": ">= 0.4"
- }
- },
"node_modules/string_decoder": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz",
@@ -19217,9 +18069,25 @@
"peer": true
},
"node_modules/string-width": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz",
+ "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==",
+ "dev": true,
+ "dependencies": {
+ "is-fullwidth-code-point": "^2.0.0",
+ "strip-ansi": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/string-width-cjs": {
+ "name": "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,
+ "peer": true,
"dependencies": {
"emoji-regex": "^8.0.0",
"is-fullwidth-code-point": "^3.0.0",
@@ -19229,24 +18097,58 @@
"node": ">=8"
}
},
- "node_modules/string-width/node_modules/emoji-regex": {
+ "node_modules/string-width-cjs/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=="
+ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
+ "dev": true,
+ "peer": true
+ },
+ "node_modules/string-width-cjs/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,
+ "peer": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/string-width/node_modules/ansi-regex": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz",
+ "integrity": "sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==",
+ "dev": true,
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/string-width/node_modules/strip-ansi": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz",
+ "integrity": "sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==",
+ "dev": true,
+ "dependencies": {
+ "ansi-regex": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=4"
+ }
},
"node_modules/string.prototype.matchall": {
- "version": "4.0.8",
- "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz",
- "integrity": "sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==",
+ "version": "4.0.10",
+ "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.10.tgz",
+ "integrity": "sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ==",
"dev": true,
"dependencies": {
"call-bind": "^1.0.2",
- "define-properties": "^1.1.4",
- "es-abstract": "^1.20.4",
- "get-intrinsic": "^1.1.3",
+ "define-properties": "^1.2.0",
+ "es-abstract": "^1.22.1",
+ "get-intrinsic": "^1.2.1",
"has-symbols": "^1.0.3",
- "internal-slot": "^1.0.3",
- "regexp.prototype.flags": "^1.4.3",
+ "internal-slot": "^1.0.5",
+ "regexp.prototype.flags": "^1.5.0",
+ "set-function-name": "^2.0.0",
"side-channel": "^1.0.4"
},
"funding": {
@@ -19254,14 +18156,14 @@
}
},
"node_modules/string.prototype.trim": {
- "version": "1.2.7",
- "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz",
- "integrity": "sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==",
+ "version": "1.2.8",
+ "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.8.tgz",
+ "integrity": "sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==",
"dev": true,
"dependencies": {
"call-bind": "^1.0.2",
- "define-properties": "^1.1.4",
- "es-abstract": "^1.20.4"
+ "define-properties": "^1.2.0",
+ "es-abstract": "^1.22.1"
},
"engines": {
"node": ">= 0.4"
@@ -19271,28 +18173,28 @@
}
},
"node_modules/string.prototype.trimend": {
- "version": "1.0.6",
- "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz",
- "integrity": "sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==",
+ "version": "1.0.7",
+ "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.7.tgz",
+ "integrity": "sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==",
"dev": true,
"dependencies": {
"call-bind": "^1.0.2",
- "define-properties": "^1.1.4",
- "es-abstract": "^1.20.4"
+ "define-properties": "^1.2.0",
+ "es-abstract": "^1.22.1"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/string.prototype.trimstart": {
- "version": "1.0.6",
- "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz",
- "integrity": "sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==",
+ "version": "1.0.7",
+ "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.7.tgz",
+ "integrity": "sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==",
"dev": true,
"dependencies": {
"call-bind": "^1.0.2",
- "define-properties": "^1.1.4",
- "es-abstract": "^1.20.4"
+ "define-properties": "^1.2.0",
+ "es-abstract": "^1.22.1"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
@@ -19313,6 +18215,16 @@
"node": ">=4"
}
},
+ "node_modules/stringify-object/node_modules/is-obj": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz",
+ "integrity": "sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==",
+ "dev": true,
+ "peer": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
"node_modules/strip-ansi": {
"version": "6.0.1",
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
@@ -19324,6 +18236,20 @@
"node": ">=8"
}
},
+ "node_modules/strip-ansi-cjs": {
+ "name": "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,
+ "peer": true,
+ "dependencies": {
+ "ansi-regex": "^5.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
"node_modules/strip-bom": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz",
@@ -19374,9 +18300,9 @@
}
},
"node_modules/style-loader": {
- "version": "3.3.2",
- "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-3.3.2.tgz",
- "integrity": "sha512-RHs/vcrKdQK8wZliteNK4NKzxvLBzpuHMqYmUVWeKa6MkaIQ97ZTOS0b+zapZhy6GcrgWnvWYCMHRirC3FsUmw==",
+ "version": "3.3.4",
+ "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-3.3.4.tgz",
+ "integrity": "sha512-0WqXzrsMTyb8yjZJHDqwmnwRJvhALK9LfRtRc6B4UTWe8AijYLZYZ9thuJTZc2VfQWINADW/j+LiJnfy2RoC1w==",
"dev": true,
"peer": true,
"engines": {
@@ -19415,15 +18341,15 @@
"peer": true
},
"node_modules/sucrase": {
- "version": "3.32.0",
- "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.32.0.tgz",
- "integrity": "sha512-ydQOU34rpSyj2TGyz4D2p8rbktIOZ8QY9s+DGLvFU1i5pWJE8vkpruCjGCMHsdXwnD7JDcS+noSwM/a7zyNFDQ==",
+ "version": "3.35.0",
+ "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.0.tgz",
+ "integrity": "sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==",
"dev": true,
"peer": true,
"dependencies": {
"@jridgewell/gen-mapping": "^0.3.2",
"commander": "^4.0.0",
- "glob": "7.1.6",
+ "glob": "^10.3.10",
"lines-and-columns": "^1.1.6",
"mz": "^2.7.0",
"pirates": "^4.0.1",
@@ -19434,7 +18360,17 @@
"sucrase-node": "bin/sucrase-node"
},
"engines": {
- "node": ">=8"
+ "node": ">=16 || 14 >=14.17"
+ }
+ },
+ "node_modules/sucrase/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,
+ "peer": true,
+ "dependencies": {
+ "balanced-match": "^1.0.0"
}
},
"node_modules/sucrase/node_modules/commander": {
@@ -19448,21 +18384,39 @@
}
},
"node_modules/sucrase/node_modules/glob": {
- "version": "7.1.6",
- "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz",
- "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==",
+ "version": "10.3.10",
+ "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz",
+ "integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==",
"dev": true,
"peer": 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"
+ "foreground-child": "^3.1.0",
+ "jackspeak": "^2.3.5",
+ "minimatch": "^9.0.1",
+ "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0",
+ "path-scurry": "^1.10.1"
+ },
+ "bin": {
+ "glob": "dist/esm/bin.mjs"
},
"engines": {
- "node": "*"
+ "node": ">=16 || 14 >=14.17"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/sucrase/node_modules/minimatch": {
+ "version": "9.0.3",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz",
+ "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==",
+ "dev": true,
+ "peer": true,
+ "dependencies": {
+ "brace-expansion": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=16 || 14 >=14.17"
},
"funding": {
"url": "https://github.com/sponsors/isaacs"
@@ -19501,17 +18455,6 @@
"node": ">= 6"
}
},
- "node_modules/superagent/node_modules/mime": {
- "version": "2.6.0",
- "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz",
- "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==",
- "bin": {
- "mime": "cli.js"
- },
- "engines": {
- "node": ">=4.0.0"
- }
- },
"node_modules/supertest": {
"version": "6.3.4",
"resolved": "https://registry.npmjs.org/supertest/-/supertest-6.3.4.tgz",
@@ -19525,14 +18468,14 @@
}
},
"node_modules/supports-color": {
- "version": "5.5.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
- "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
"dependencies": {
- "has-flag": "^3.0.0"
+ "has-flag": "^4.0.0"
},
"engines": {
- "node": ">=4"
+ "node": ">=8"
}
},
"node_modules/supports-hyperlinks": {
@@ -19547,25 +18490,6 @@
"node": ">=8"
}
},
- "node_modules/supports-hyperlinks/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==",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/supports-hyperlinks/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==",
- "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",
@@ -19613,6 +18537,61 @@
"node": ">=4.0.0"
}
},
+ "node_modules/svgo/node_modules/ansi-styles": {
+ "version": "3.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
+ "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
+ "dev": true,
+ "peer": true,
+ "dependencies": {
+ "color-convert": "^1.9.0"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/svgo/node_modules/argparse": {
+ "version": "1.0.10",
+ "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
+ "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
+ "dev": true,
+ "peer": true,
+ "dependencies": {
+ "sprintf-js": "~1.0.2"
+ }
+ },
+ "node_modules/svgo/node_modules/chalk": {
+ "version": "2.4.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
+ "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
+ "dev": true,
+ "peer": true,
+ "dependencies": {
+ "ansi-styles": "^3.2.1",
+ "escape-string-regexp": "^1.0.5",
+ "supports-color": "^5.3.0"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/svgo/node_modules/color-convert": {
+ "version": "1.9.3",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
+ "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
+ "dev": true,
+ "peer": true,
+ "dependencies": {
+ "color-name": "1.1.3"
+ }
+ },
+ "node_modules/svgo/node_modules/color-name": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
+ "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==",
+ "dev": true,
+ "peer": true
+ },
"node_modules/svgo/node_modules/css-select": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz",
@@ -19668,6 +18647,40 @@
"dev": true,
"peer": true
},
+ "node_modules/svgo/node_modules/escape-string-regexp": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
+ "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==",
+ "dev": true,
+ "peer": true,
+ "engines": {
+ "node": ">=0.8.0"
+ }
+ },
+ "node_modules/svgo/node_modules/has-flag": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
+ "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==",
+ "dev": true,
+ "peer": true,
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/svgo/node_modules/js-yaml": {
+ "version": "3.14.1",
+ "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz",
+ "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==",
+ "dev": true,
+ "peer": true,
+ "dependencies": {
+ "argparse": "^1.0.7",
+ "esprima": "^4.0.0"
+ },
+ "bin": {
+ "js-yaml": "bin/js-yaml.js"
+ }
+ },
"node_modules/svgo/node_modules/nth-check": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz",
@@ -19678,15 +18691,28 @@
"boolbase": "~1.0.0"
}
},
+ "node_modules/svgo/node_modules/supports-color": {
+ "version": "5.5.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
+ "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
+ "dev": true,
+ "peer": true,
+ "dependencies": {
+ "has-flag": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
"node_modules/symbol-tree": {
"version": "3.2.4",
"resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz",
"integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw=="
},
"node_modules/tailwindcss": {
- "version": "3.3.2",
- "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.3.2.tgz",
- "integrity": "sha512-9jPkMiIBXvPc2KywkraqsUfbfj+dHDb+JPWtSJa9MLFdrPyazI7q6WX2sUrm7R9eVR7qqv3Pas7EvQFzxKnI6w==",
+ "version": "3.4.1",
+ "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.1.tgz",
+ "integrity": "sha512-qAYmXRfk3ENzuPBakNK0SRrUDipP8NQnEY6772uDhflcQz5EhRdD7JNZxyrFHVQNCwULPBn6FNPp9brpO7ctcA==",
"dev": true,
"peer": true,
"dependencies": {
@@ -19695,10 +18721,10 @@
"chokidar": "^3.5.3",
"didyoumean": "^1.2.2",
"dlv": "^1.1.3",
- "fast-glob": "^3.2.12",
+ "fast-glob": "^3.3.0",
"glob-parent": "^6.0.2",
"is-glob": "^4.0.3",
- "jiti": "^1.18.2",
+ "jiti": "^1.19.1",
"lilconfig": "^2.1.0",
"micromatch": "^4.0.5",
"normalize-path": "^3.0.0",
@@ -19710,7 +18736,6 @@
"postcss-load-config": "^4.0.1",
"postcss-nested": "^6.0.1",
"postcss-selector-parser": "^6.0.11",
- "postcss-value-parser": "^4.2.0",
"resolve": "^1.22.2",
"sucrase": "^3.32.0"
},
@@ -19789,15 +18814,40 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
+ "node_modules/terminal-link/node_modules/ansi-escapes": {
+ "version": "4.3.2",
+ "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz",
+ "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==",
+ "dependencies": {
+ "type-fest": "^0.21.3"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/terminal-link/node_modules/type-fest": {
+ "version": "0.21.3",
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz",
+ "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==",
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
"node_modules/terser": {
- "version": "5.17.3",
- "resolved": "https://registry.npmjs.org/terser/-/terser-5.17.3.tgz",
- "integrity": "sha512-AudpAZKmZHkG9jueayypz4duuCFJMMNGRMwaPvQKWfxKedh8Z2x3OCoDqIIi1xx5+iwx1u6Au8XQcc9Lke65Yg==",
+ "version": "5.27.0",
+ "resolved": "https://registry.npmjs.org/terser/-/terser-5.27.0.tgz",
+ "integrity": "sha512-bi1HRwVRskAjheeYl291n3JC4GgO/Ty4z1nVs5AAsmonJulGxpSektecnNedrwK9C7vpvVtcX3cw00VSLt7U2A==",
"dev": true,
"peer": true,
"dependencies": {
- "@jridgewell/source-map": "^0.3.2",
- "acorn": "^8.5.0",
+ "@jridgewell/source-map": "^0.3.3",
+ "acorn": "^8.8.2",
"commander": "^2.20.0",
"source-map-support": "~0.5.20"
},
@@ -19809,17 +18859,17 @@
}
},
"node_modules/terser-webpack-plugin": {
- "version": "5.3.8",
- "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.8.tgz",
- "integrity": "sha512-WiHL3ElchZMsK27P8uIUh4604IgJyAW47LVXGbEoB21DbQcZ+OuMpGjVYnEUaqcWM6dO8uS2qUbA7LSCWqvsbg==",
+ "version": "5.3.10",
+ "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.10.tgz",
+ "integrity": "sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==",
"dev": true,
"peer": true,
"dependencies": {
- "@jridgewell/trace-mapping": "^0.3.17",
+ "@jridgewell/trace-mapping": "^0.3.20",
"jest-worker": "^27.4.5",
"schema-utils": "^3.1.1",
"serialize-javascript": "^6.0.1",
- "terser": "^5.16.8"
+ "terser": "^5.26.0"
},
"engines": {
"node": ">= 10.13.0"
@@ -19999,9 +19049,9 @@
"peer": true
},
"node_modules/tough-cookie": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.2.tgz",
- "integrity": "sha512-G9fqXWoYFZgTc2z8Q5zaHy/vJMjm+WV0AkAeHxVCQiEB1b+dGvWzFW6QV07cY5jQ5gRkeid2qIkzkxUnmoQZUQ==",
+ "version": "4.1.3",
+ "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.3.tgz",
+ "integrity": "sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==",
"dependencies": {
"psl": "^1.1.33",
"punycode": "^2.1.1",
@@ -20031,6 +19081,15 @@
"node": ">=8"
}
},
+ "node_modules/treeify": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/treeify/-/treeify-1.1.0.tgz",
+ "integrity": "sha512-1m4RA7xVAJrSGrrXGs0L3YTwyvBs2S8PbRHaLZAkFw7JR8oIFwYtysxlBZhYIa7xSyiYJKZ3iGrrk55cGA3i9A==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.6"
+ }
+ },
"node_modules/trim-newlines": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.1.tgz",
@@ -20113,9 +19172,9 @@
"devOptional": true
},
"node_modules/tsconfig-paths": {
- "version": "3.14.2",
- "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz",
- "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==",
+ "version": "3.15.0",
+ "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz",
+ "integrity": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==",
"dev": true,
"dependencies": {
"@types/json5": "^0.0.29",
@@ -20146,9 +19205,9 @@
}
},
"node_modules/tslib": {
- "version": "1.14.1",
- "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
- "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==",
+ "version": "2.6.2",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz",
+ "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==",
"dev": true
},
"node_modules/tsutils": {
@@ -20185,54 +19244,19 @@
}
},
"node_modules/tsutils-etc/node_modules/@types/yargs": {
- "version": "17.0.24",
- "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.24.tgz",
- "integrity": "sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==",
+ "version": "17.0.32",
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz",
+ "integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==",
"dev": true,
"dependencies": {
"@types/yargs-parser": "*"
}
},
- "node_modules/tsutils-etc/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/tsutils-etc/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/tsutils-etc/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/tsutils/node_modules/tslib": {
+ "version": "1.14.1",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
+ "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==",
+ "dev": true
},
"node_modules/type-check": {
"version": "0.4.0",
@@ -20255,9 +19279,10 @@
}
},
"node_modules/type-fest": {
- "version": "0.21.3",
- "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz",
- "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==",
+ "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"
},
@@ -20279,6 +19304,57 @@
"node": ">= 0.6"
}
},
+ "node_modules/typed-array-buffer": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz",
+ "integrity": "sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.2",
+ "get-intrinsic": "^1.2.1",
+ "is-typed-array": "^1.1.10"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/typed-array-byte-length": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz",
+ "integrity": "sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.2",
+ "for-each": "^0.3.3",
+ "has-proto": "^1.0.1",
+ "is-typed-array": "^1.1.10"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/typed-array-byte-offset": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz",
+ "integrity": "sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==",
+ "dev": true,
+ "dependencies": {
+ "available-typed-arrays": "^1.0.5",
+ "call-bind": "^1.0.2",
+ "for-each": "^0.3.3",
+ "has-proto": "^1.0.1",
+ "is-typed-array": "^1.1.10"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
"node_modules/typed-array-length": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz",
@@ -20315,9 +19391,9 @@
}
},
"node_modules/ua-parser-js": {
- "version": "1.0.35",
- "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-1.0.35.tgz",
- "integrity": "sha512-fKnGuqmTBnIE+/KXSzCn4db8RTigUzw1AN0DmdU6hJovUTbYJKyqj+8Mt1c4VfRDnOVJnENmfYkIPZ946UrSAA==",
+ "version": "1.0.37",
+ "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-1.0.37.tgz",
+ "integrity": "sha512-bhTyI94tZofjo+Dn8SN6Zv8nBDvyXTymAdM3LDI/0IboIUwTu1rEhW7v2TfiVsoYWgkQ4kOVqnI8APUFbIQIFQ==",
"dev": true,
"funding": [
{
@@ -20327,6 +19403,10 @@
{
"type": "paypal",
"url": "https://paypal.me/faisalman"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/faisalman"
}
],
"peer": true,
@@ -20349,6 +19429,13 @@
"url": "https://github.com/sponsors/ljharb"
}
},
+ "node_modules/underscore": {
+ "version": "1.12.1",
+ "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.12.1.tgz",
+ "integrity": "sha512-hEQt0+ZLDVUMhebKxL4x1BTtDY7bavVofhZ9KZ4aI26X9SRaE+Y3m83XUL1UP2jn8ynjndwCCpEHdUG+9pP1Tw==",
+ "dev": true,
+ "peer": true
+ },
"node_modules/unicode-canonical-property-names-ecmascript": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz",
@@ -20407,9 +19494,9 @@
}
},
"node_modules/universalify": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
- "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz",
+ "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==",
"dev": true,
"engines": {
"node": ">= 10.0.0"
@@ -20444,9 +19531,9 @@
}
},
"node_modules/update-browserslist-db": {
- "version": "1.0.11",
- "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz",
- "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==",
+ "version": "1.0.13",
+ "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz",
+ "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==",
"funding": [
{
"type": "opencollective",
@@ -20505,6 +19592,12 @@
"integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==",
"dev": true
},
+ "node_modules/util-extend": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/util-extend/-/util-extend-1.0.3.tgz",
+ "integrity": "sha512-mLs5zAK+ctllYBj+iAQvlDCwoxU/WDOUaJkcFudeiAX6OajC6BKXJUa9a+tbtkC11dz2Ufb7h0lyvIOVn4LADA==",
+ "dev": true
+ },
"node_modules/util.promisify": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.1.tgz",
@@ -20578,6 +19671,14 @@
"node": ">=10.12.0"
}
},
+ "node_modules/v8-to-istanbul/node_modules/source-map": {
+ "version": "0.7.4",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz",
+ "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==",
+ "engines": {
+ "node": ">= 8"
+ }
+ },
"node_modules/validate-npm-package-license": {
"version": "3.0.4",
"resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz",
@@ -20659,22 +19760,22 @@
}
},
"node_modules/webpack": {
- "version": "5.82.0",
- "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.82.0.tgz",
- "integrity": "sha512-iGNA2fHhnDcV1bONdUu554eZx+XeldsaeQ8T67H6KKHl2nUSwX8Zm7cmzOA46ox/X1ARxf7Bjv8wQ/HsB5fxBg==",
+ "version": "5.90.1",
+ "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.90.1.tgz",
+ "integrity": "sha512-SstPdlAC5IvgFnhiRok8hqJo/+ArAbNv7rhU4fnWGHNVfN59HSQFaxZDSAL3IFG2YmqxuRs+IU33milSxbPlog==",
"dev": true,
"peer": true,
"dependencies": {
"@types/eslint-scope": "^3.7.3",
- "@types/estree": "^1.0.0",
+ "@types/estree": "^1.0.5",
"@webassemblyjs/ast": "^1.11.5",
"@webassemblyjs/wasm-edit": "^1.11.5",
"@webassemblyjs/wasm-parser": "^1.11.5",
"acorn": "^8.7.1",
- "acorn-import-assertions": "^1.7.6",
- "browserslist": "^4.14.5",
+ "acorn-import-assertions": "^1.9.0",
+ "browserslist": "^4.21.10",
"chrome-trace-event": "^1.0.2",
- "enhanced-resolve": "^5.13.0",
+ "enhanced-resolve": "^5.15.0",
"es-module-lexer": "^1.2.1",
"eslint-scope": "5.1.1",
"events": "^3.2.0",
@@ -20684,9 +19785,9 @@
"loader-runner": "^4.2.0",
"mime-types": "^2.1.27",
"neo-async": "^2.6.2",
- "schema-utils": "^3.1.2",
+ "schema-utils": "^3.2.0",
"tapable": "^2.1.1",
- "terser-webpack-plugin": "^5.3.7",
+ "terser-webpack-plugin": "^5.3.10",
"watchpack": "^2.4.0",
"webpack-sources": "^3.2.3"
},
@@ -20730,47 +19831,10 @@
"webpack": "^4.0.0 || ^5.0.0"
}
},
- "node_modules/webpack-dev-middleware/node_modules/ajv": {
- "version": "8.12.0",
- "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz",
- "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==",
- "dev": true,
- "peer": true,
- "dependencies": {
- "fast-deep-equal": "^3.1.1",
- "json-schema-traverse": "^1.0.0",
- "require-from-string": "^2.0.2",
- "uri-js": "^4.2.2"
- },
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/epoberezkin"
- }
- },
- "node_modules/webpack-dev-middleware/node_modules/ajv-keywords": {
- "version": "5.1.0",
- "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz",
- "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==",
- "dev": true,
- "peer": true,
- "dependencies": {
- "fast-deep-equal": "^3.1.3"
- },
- "peerDependencies": {
- "ajv": "^8.8.2"
- }
- },
- "node_modules/webpack-dev-middleware/node_modules/json-schema-traverse": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
- "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
- "dev": true,
- "peer": true
- },
"node_modules/webpack-dev-middleware/node_modules/schema-utils": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.1.tgz",
- "integrity": "sha512-lELhBAAly9NowEsX0yZBlw9ahZG+sK/1RJ21EpzdYHKEs13Vku3LJ+MIPhh4sMs0oCCeufZQEQbMekiA4vuVIQ==",
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz",
+ "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==",
"dev": true,
"peer": true,
"dependencies": {
@@ -20788,9 +19852,9 @@
}
},
"node_modules/webpack-dev-server": {
- "version": "4.15.0",
- "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.15.0.tgz",
- "integrity": "sha512-HmNB5QeSl1KpulTBQ8UT4FPrByYyaLxpJoQ0+s7EvUrMc16m0ZS1sgb1XGqzmgCPk0c9y+aaXxn11tbLzuM7NQ==",
+ "version": "4.15.1",
+ "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.15.1.tgz",
+ "integrity": "sha512-5hbAst3h3C3L8w6W4P96L5vaV0PxSmJhxZvWKYIdgxOQm8pNZ5dEOmmSLBVpP85ReeyRt6AS1QJNyo/oFFPeVA==",
"dev": true,
"peer": true,
"dependencies": {
@@ -20800,7 +19864,7 @@
"@types/serve-index": "^1.9.1",
"@types/serve-static": "^1.13.10",
"@types/sockjs": "^0.3.33",
- "@types/ws": "^8.5.1",
+ "@types/ws": "^8.5.5",
"ansi-html-community": "^0.0.8",
"bonjour-service": "^1.0.11",
"chokidar": "^3.5.3",
@@ -20847,47 +19911,10 @@
}
}
},
- "node_modules/webpack-dev-server/node_modules/ajv": {
- "version": "8.12.0",
- "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz",
- "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==",
- "dev": true,
- "peer": true,
- "dependencies": {
- "fast-deep-equal": "^3.1.1",
- "json-schema-traverse": "^1.0.0",
- "require-from-string": "^2.0.2",
- "uri-js": "^4.2.2"
- },
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/epoberezkin"
- }
- },
- "node_modules/webpack-dev-server/node_modules/ajv-keywords": {
- "version": "5.1.0",
- "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz",
- "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==",
- "dev": true,
- "peer": true,
- "dependencies": {
- "fast-deep-equal": "^3.1.3"
- },
- "peerDependencies": {
- "ajv": "^8.8.2"
- }
- },
- "node_modules/webpack-dev-server/node_modules/json-schema-traverse": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
- "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
- "dev": true,
- "peer": true
- },
"node_modules/webpack-dev-server/node_modules/schema-utils": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.1.tgz",
- "integrity": "sha512-lELhBAAly9NowEsX0yZBlw9ahZG+sK/1RJ21EpzdYHKEs13Vku3LJ+MIPhh4sMs0oCCeufZQEQbMekiA4vuVIQ==",
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz",
+ "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==",
"dev": true,
"peer": true,
"dependencies": {
@@ -20905,9 +19932,9 @@
}
},
"node_modules/webpack-dev-server/node_modules/ws": {
- "version": "8.13.0",
- "resolved": "https://registry.npmjs.org/ws/-/ws-8.13.0.tgz",
- "integrity": "sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==",
+ "version": "8.16.0",
+ "resolved": "https://registry.npmjs.org/ws/-/ws-8.16.0.tgz",
+ "integrity": "sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==",
"dev": true,
"peer": true,
"engines": {
@@ -21034,21 +20061,10 @@
"iconv-lite": "0.4.24"
}
},
- "node_modules/whatwg-encoding/node_modules/iconv-lite": {
- "version": "0.4.24",
- "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
- "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
- "dependencies": {
- "safer-buffer": ">= 2.1.2 < 3"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
"node_modules/whatwg-fetch": {
- "version": "3.6.2",
- "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.2.tgz",
- "integrity": "sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==",
+ "version": "3.6.20",
+ "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.20.tgz",
+ "integrity": "sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==",
"dev": true,
"peer": true
},
@@ -21100,12 +20116,37 @@
"url": "https://github.com/sponsors/ljharb"
}
},
+ "node_modules/which-builtin-type": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.1.3.tgz",
+ "integrity": "sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==",
+ "dev": true,
+ "dependencies": {
+ "function.prototype.name": "^1.1.5",
+ "has-tostringtag": "^1.0.0",
+ "is-async-function": "^2.0.0",
+ "is-date-object": "^1.0.5",
+ "is-finalizationregistry": "^1.0.2",
+ "is-generator-function": "^1.0.10",
+ "is-regex": "^1.1.4",
+ "is-weakref": "^1.0.2",
+ "isarray": "^2.0.5",
+ "which-boxed-primitive": "^1.0.2",
+ "which-collection": "^1.0.1",
+ "which-typed-array": "^1.1.9"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
"node_modules/which-collection": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz",
"integrity": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==",
"dev": true,
- "peer": true,
"dependencies": {
"is-map": "^2.0.1",
"is-set": "^2.0.1",
@@ -21117,17 +20158,16 @@
}
},
"node_modules/which-typed-array": {
- "version": "1.1.9",
- "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz",
- "integrity": "sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==",
+ "version": "1.1.14",
+ "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.14.tgz",
+ "integrity": "sha512-VnXFiIW8yNn9kIHN88xvZ4yOWchftKDsRJ8fEPacX/wl1lOvBrhsJ/OeJCXq7B0AaijRuqgzSKalJoPk+D8MPg==",
"dev": true,
"dependencies": {
- "available-typed-arrays": "^1.0.5",
- "call-bind": "^1.0.2",
+ "available-typed-arrays": "^1.0.6",
+ "call-bind": "^1.0.5",
"for-each": "^0.3.3",
"gopd": "^1.0.1",
- "has-tostringtag": "^1.0.0",
- "is-typed-array": "^1.1.10"
+ "has-tostringtag": "^1.0.1"
},
"engines": {
"node": ">= 0.4"
@@ -21137,38 +20177,40 @@
}
},
"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==",
+ "version": "1.2.5",
+ "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz",
+ "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==",
+ "dev": true,
+ "peer": true,
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/workbox-background-sync": {
- "version": "6.5.4",
- "resolved": "https://registry.npmjs.org/workbox-background-sync/-/workbox-background-sync-6.5.4.tgz",
- "integrity": "sha512-0r4INQZMyPky/lj4Ou98qxcThrETucOde+7mRGJl13MPJugQNKeZQOdIJe/1AchOP23cTqHcN/YVpD6r8E6I8g==",
+ "version": "6.6.0",
+ "resolved": "https://registry.npmjs.org/workbox-background-sync/-/workbox-background-sync-6.6.0.tgz",
+ "integrity": "sha512-jkf4ZdgOJxC9u2vztxLuPT/UjlH7m/nWRQ/MgGL0v8BJHoZdVGJd18Kck+a0e55wGXdqyHO+4IQTk0685g4MUw==",
"dev": true,
"peer": true,
"dependencies": {
"idb": "^7.0.1",
- "workbox-core": "6.5.4"
+ "workbox-core": "6.6.0"
}
},
"node_modules/workbox-broadcast-update": {
- "version": "6.5.4",
- "resolved": "https://registry.npmjs.org/workbox-broadcast-update/-/workbox-broadcast-update-6.5.4.tgz",
- "integrity": "sha512-I/lBERoH1u3zyBosnpPEtcAVe5lwykx9Yg1k6f8/BGEPGaMMgZrwVrqL1uA9QZ1NGGFoyE6t9i7lBjOlDhFEEw==",
+ "version": "6.6.0",
+ "resolved": "https://registry.npmjs.org/workbox-broadcast-update/-/workbox-broadcast-update-6.6.0.tgz",
+ "integrity": "sha512-nm+v6QmrIFaB/yokJmQ/93qIJ7n72NICxIwQwe5xsZiV2aI93MGGyEyzOzDPVz5THEr5rC3FJSsO3346cId64Q==",
"dev": true,
"peer": true,
"dependencies": {
- "workbox-core": "6.5.4"
+ "workbox-core": "6.6.0"
}
},
"node_modules/workbox-build": {
- "version": "6.5.4",
- "resolved": "https://registry.npmjs.org/workbox-build/-/workbox-build-6.5.4.tgz",
- "integrity": "sha512-kgRevLXEYvUW9WS4XoziYqZ8Q9j/2ziJYEtTrjdz5/L/cTUa2XfyMP2i7c3p34lgqJ03+mTiz13SdFef2POwbA==",
+ "version": "6.6.0",
+ "resolved": "https://registry.npmjs.org/workbox-build/-/workbox-build-6.6.0.tgz",
+ "integrity": "sha512-Tjf+gBwOTuGyZwMz2Nk/B13Fuyeo0Q84W++bebbVsfr9iLkDSo6j6PST8tET9HYA58mlRXwlMGpyWO8ETJiXdQ==",
"dev": true,
"peer": true,
"dependencies": {
@@ -21194,61 +20236,26 @@
"strip-comments": "^2.0.1",
"tempy": "^0.6.0",
"upath": "^1.2.0",
- "workbox-background-sync": "6.5.4",
- "workbox-broadcast-update": "6.5.4",
- "workbox-cacheable-response": "6.5.4",
- "workbox-core": "6.5.4",
- "workbox-expiration": "6.5.4",
- "workbox-google-analytics": "6.5.4",
- "workbox-navigation-preload": "6.5.4",
- "workbox-precaching": "6.5.4",
- "workbox-range-requests": "6.5.4",
- "workbox-recipes": "6.5.4",
- "workbox-routing": "6.5.4",
- "workbox-strategies": "6.5.4",
- "workbox-streams": "6.5.4",
- "workbox-sw": "6.5.4",
- "workbox-window": "6.5.4"
+ "workbox-background-sync": "6.6.0",
+ "workbox-broadcast-update": "6.6.0",
+ "workbox-cacheable-response": "6.6.0",
+ "workbox-core": "6.6.0",
+ "workbox-expiration": "6.6.0",
+ "workbox-google-analytics": "6.6.0",
+ "workbox-navigation-preload": "6.6.0",
+ "workbox-precaching": "6.6.0",
+ "workbox-range-requests": "6.6.0",
+ "workbox-recipes": "6.6.0",
+ "workbox-routing": "6.6.0",
+ "workbox-strategies": "6.6.0",
+ "workbox-streams": "6.6.0",
+ "workbox-sw": "6.6.0",
+ "workbox-window": "6.6.0"
},
"engines": {
"node": ">=10.0.0"
}
},
- "node_modules/workbox-build/node_modules/@apideck/better-ajv-errors": {
- "version": "0.3.6",
- "resolved": "https://registry.npmjs.org/@apideck/better-ajv-errors/-/better-ajv-errors-0.3.6.tgz",
- "integrity": "sha512-P+ZygBLZtkp0qqOAJJVX4oX/sFo5JR3eBWwwuqHHhK0GIgQOKWrAfiAaWX0aArHkRWHMuggFEgAZNxVPwPZYaA==",
- "dev": true,
- "peer": true,
- "dependencies": {
- "json-schema": "^0.4.0",
- "jsonpointer": "^5.0.0",
- "leven": "^3.1.0"
- },
- "engines": {
- "node": ">=10"
- },
- "peerDependencies": {
- "ajv": ">=8"
- }
- },
- "node_modules/workbox-build/node_modules/ajv": {
- "version": "8.12.0",
- "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz",
- "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==",
- "dev": true,
- "peer": true,
- "dependencies": {
- "fast-deep-equal": "^3.1.1",
- "json-schema-traverse": "^1.0.0",
- "require-from-string": "^2.0.2",
- "uri-js": "^4.2.2"
- },
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/epoberezkin"
- }
- },
"node_modules/workbox-build/node_modules/fs-extra": {
"version": "9.1.0",
"resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz",
@@ -21265,13 +20272,6 @@
"node": ">=10"
}
},
- "node_modules/workbox-build/node_modules/json-schema-traverse": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
- "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
- "dev": true,
- "peer": true
- },
"node_modules/workbox-build/node_modules/source-map": {
"version": "0.8.0-beta.0",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.8.0-beta.0.tgz",
@@ -21315,135 +20315,136 @@
}
},
"node_modules/workbox-cacheable-response": {
- "version": "6.5.4",
- "resolved": "https://registry.npmjs.org/workbox-cacheable-response/-/workbox-cacheable-response-6.5.4.tgz",
- "integrity": "sha512-DCR9uD0Fqj8oB2TSWQEm1hbFs/85hXXoayVwFKLVuIuxwJaihBsLsp4y7J9bvZbqtPJ1KlCkmYVGQKrBU4KAug==",
+ "version": "6.6.0",
+ "resolved": "https://registry.npmjs.org/workbox-cacheable-response/-/workbox-cacheable-response-6.6.0.tgz",
+ "integrity": "sha512-JfhJUSQDwsF1Xv3EV1vWzSsCOZn4mQ38bWEBR3LdvOxSPgB65gAM6cS2CX8rkkKHRgiLrN7Wxoyu+TuH67kHrw==",
+ "deprecated": "workbox-background-sync@6.6.0",
"dev": true,
"peer": true,
"dependencies": {
- "workbox-core": "6.5.4"
+ "workbox-core": "6.6.0"
}
},
"node_modules/workbox-core": {
- "version": "6.5.4",
- "resolved": "https://registry.npmjs.org/workbox-core/-/workbox-core-6.5.4.tgz",
- "integrity": "sha512-OXYb+m9wZm8GrORlV2vBbE5EC1FKu71GGp0H4rjmxmF4/HLbMCoTFws87M3dFwgpmg0v00K++PImpNQ6J5NQ6Q==",
+ "version": "6.6.0",
+ "resolved": "https://registry.npmjs.org/workbox-core/-/workbox-core-6.6.0.tgz",
+ "integrity": "sha512-GDtFRF7Yg3DD859PMbPAYPeJyg5gJYXuBQAC+wyrWuuXgpfoOrIQIvFRZnQ7+czTIQjIr1DhLEGFzZanAT/3bQ==",
"dev": true,
"peer": true
},
"node_modules/workbox-expiration": {
- "version": "6.5.4",
- "resolved": "https://registry.npmjs.org/workbox-expiration/-/workbox-expiration-6.5.4.tgz",
- "integrity": "sha512-jUP5qPOpH1nXtjGGh1fRBa1wJL2QlIb5mGpct3NzepjGG2uFFBn4iiEBiI9GUmfAFR2ApuRhDydjcRmYXddiEQ==",
+ "version": "6.6.0",
+ "resolved": "https://registry.npmjs.org/workbox-expiration/-/workbox-expiration-6.6.0.tgz",
+ "integrity": "sha512-baplYXcDHbe8vAo7GYvyAmlS4f6998Jff513L4XvlzAOxcl8F620O91guoJ5EOf5qeXG4cGdNZHkkVAPouFCpw==",
"dev": true,
"peer": true,
"dependencies": {
"idb": "^7.0.1",
- "workbox-core": "6.5.4"
+ "workbox-core": "6.6.0"
}
},
"node_modules/workbox-google-analytics": {
- "version": "6.5.4",
- "resolved": "https://registry.npmjs.org/workbox-google-analytics/-/workbox-google-analytics-6.5.4.tgz",
- "integrity": "sha512-8AU1WuaXsD49249Wq0B2zn4a/vvFfHkpcFfqAFHNHwln3jK9QUYmzdkKXGIZl9wyKNP+RRX30vcgcyWMcZ9VAg==",
+ "version": "6.6.0",
+ "resolved": "https://registry.npmjs.org/workbox-google-analytics/-/workbox-google-analytics-6.6.0.tgz",
+ "integrity": "sha512-p4DJa6OldXWd6M9zRl0H6vB9lkrmqYFkRQ2xEiNdBFp9U0LhsGO7hsBscVEyH9H2/3eZZt8c97NB2FD9U2NJ+Q==",
"dev": true,
"peer": true,
"dependencies": {
- "workbox-background-sync": "6.5.4",
- "workbox-core": "6.5.4",
- "workbox-routing": "6.5.4",
- "workbox-strategies": "6.5.4"
+ "workbox-background-sync": "6.6.0",
+ "workbox-core": "6.6.0",
+ "workbox-routing": "6.6.0",
+ "workbox-strategies": "6.6.0"
}
},
"node_modules/workbox-navigation-preload": {
- "version": "6.5.4",
- "resolved": "https://registry.npmjs.org/workbox-navigation-preload/-/workbox-navigation-preload-6.5.4.tgz",
- "integrity": "sha512-IIwf80eO3cr8h6XSQJF+Hxj26rg2RPFVUmJLUlM0+A2GzB4HFbQyKkrgD5y2d84g2IbJzP4B4j5dPBRzamHrng==",
+ "version": "6.6.0",
+ "resolved": "https://registry.npmjs.org/workbox-navigation-preload/-/workbox-navigation-preload-6.6.0.tgz",
+ "integrity": "sha512-utNEWG+uOfXdaZmvhshrh7KzhDu/1iMHyQOV6Aqup8Mm78D286ugu5k9MFD9SzBT5TcwgwSORVvInaXWbvKz9Q==",
"dev": true,
"peer": true,
"dependencies": {
- "workbox-core": "6.5.4"
+ "workbox-core": "6.6.0"
}
},
"node_modules/workbox-precaching": {
- "version": "6.5.4",
- "resolved": "https://registry.npmjs.org/workbox-precaching/-/workbox-precaching-6.5.4.tgz",
- "integrity": "sha512-hSMezMsW6btKnxHB4bFy2Qfwey/8SYdGWvVIKFaUm8vJ4E53JAY+U2JwLTRD8wbLWoP6OVUdFlXsTdKu9yoLTg==",
+ "version": "6.6.0",
+ "resolved": "https://registry.npmjs.org/workbox-precaching/-/workbox-precaching-6.6.0.tgz",
+ "integrity": "sha512-eYu/7MqtRZN1IDttl/UQcSZFkHP7dnvr/X3Vn6Iw6OsPMruQHiVjjomDFCNtd8k2RdjLs0xiz9nq+t3YVBcWPw==",
"dev": true,
"peer": true,
"dependencies": {
- "workbox-core": "6.5.4",
- "workbox-routing": "6.5.4",
- "workbox-strategies": "6.5.4"
+ "workbox-core": "6.6.0",
+ "workbox-routing": "6.6.0",
+ "workbox-strategies": "6.6.0"
}
},
"node_modules/workbox-range-requests": {
- "version": "6.5.4",
- "resolved": "https://registry.npmjs.org/workbox-range-requests/-/workbox-range-requests-6.5.4.tgz",
- "integrity": "sha512-Je2qR1NXCFC8xVJ/Lux6saH6IrQGhMpDrPXWZWWS8n/RD+WZfKa6dSZwU+/QksfEadJEr/NfY+aP/CXFFK5JFg==",
+ "version": "6.6.0",
+ "resolved": "https://registry.npmjs.org/workbox-range-requests/-/workbox-range-requests-6.6.0.tgz",
+ "integrity": "sha512-V3aICz5fLGq5DpSYEU8LxeXvsT//mRWzKrfBOIxzIdQnV/Wj7R+LyJVTczi4CQ4NwKhAaBVaSujI1cEjXW+hTw==",
"dev": true,
"peer": true,
"dependencies": {
- "workbox-core": "6.5.4"
+ "workbox-core": "6.6.0"
}
},
"node_modules/workbox-recipes": {
- "version": "6.5.4",
- "resolved": "https://registry.npmjs.org/workbox-recipes/-/workbox-recipes-6.5.4.tgz",
- "integrity": "sha512-QZNO8Ez708NNwzLNEXTG4QYSKQ1ochzEtRLGaq+mr2PyoEIC1xFW7MrWxrONUxBFOByksds9Z4//lKAX8tHyUA==",
+ "version": "6.6.0",
+ "resolved": "https://registry.npmjs.org/workbox-recipes/-/workbox-recipes-6.6.0.tgz",
+ "integrity": "sha512-TFi3kTgYw73t5tg73yPVqQC8QQjxJSeqjXRO4ouE/CeypmP2O/xqmB/ZFBBQazLTPxILUQ0b8aeh0IuxVn9a6A==",
"dev": true,
"peer": true,
"dependencies": {
- "workbox-cacheable-response": "6.5.4",
- "workbox-core": "6.5.4",
- "workbox-expiration": "6.5.4",
- "workbox-precaching": "6.5.4",
- "workbox-routing": "6.5.4",
- "workbox-strategies": "6.5.4"
+ "workbox-cacheable-response": "6.6.0",
+ "workbox-core": "6.6.0",
+ "workbox-expiration": "6.6.0",
+ "workbox-precaching": "6.6.0",
+ "workbox-routing": "6.6.0",
+ "workbox-strategies": "6.6.0"
}
},
"node_modules/workbox-routing": {
- "version": "6.5.4",
- "resolved": "https://registry.npmjs.org/workbox-routing/-/workbox-routing-6.5.4.tgz",
- "integrity": "sha512-apQswLsbrrOsBUWtr9Lf80F+P1sHnQdYodRo32SjiByYi36IDyL2r7BH1lJtFX8fwNHDa1QOVY74WKLLS6o5Pg==",
+ "version": "6.6.0",
+ "resolved": "https://registry.npmjs.org/workbox-routing/-/workbox-routing-6.6.0.tgz",
+ "integrity": "sha512-x8gdN7VDBiLC03izAZRfU+WKUXJnbqt6PG9Uh0XuPRzJPpZGLKce/FkOX95dWHRpOHWLEq8RXzjW0O+POSkKvw==",
"dev": true,
"peer": true,
"dependencies": {
- "workbox-core": "6.5.4"
+ "workbox-core": "6.6.0"
}
},
"node_modules/workbox-strategies": {
- "version": "6.5.4",
- "resolved": "https://registry.npmjs.org/workbox-strategies/-/workbox-strategies-6.5.4.tgz",
- "integrity": "sha512-DEtsxhx0LIYWkJBTQolRxG4EI0setTJkqR4m7r4YpBdxtWJH1Mbg01Cj8ZjNOO8etqfA3IZaOPHUxCs8cBsKLw==",
+ "version": "6.6.0",
+ "resolved": "https://registry.npmjs.org/workbox-strategies/-/workbox-strategies-6.6.0.tgz",
+ "integrity": "sha512-eC07XGuINAKUWDnZeIPdRdVja4JQtTuc35TZ8SwMb1ztjp7Ddq2CJ4yqLvWzFWGlYI7CG/YGqaETntTxBGdKgQ==",
"dev": true,
"peer": true,
"dependencies": {
- "workbox-core": "6.5.4"
+ "workbox-core": "6.6.0"
}
},
"node_modules/workbox-streams": {
- "version": "6.5.4",
- "resolved": "https://registry.npmjs.org/workbox-streams/-/workbox-streams-6.5.4.tgz",
- "integrity": "sha512-FXKVh87d2RFXkliAIheBojBELIPnWbQdyDvsH3t74Cwhg0fDheL1T8BqSM86hZvC0ZESLsznSYWw+Va+KVbUzg==",
+ "version": "6.6.0",
+ "resolved": "https://registry.npmjs.org/workbox-streams/-/workbox-streams-6.6.0.tgz",
+ "integrity": "sha512-rfMJLVvwuED09CnH1RnIep7L9+mj4ufkTyDPVaXPKlhi9+0czCu+SJggWCIFbPpJaAZmp2iyVGLqS3RUmY3fxg==",
"dev": true,
"peer": true,
"dependencies": {
- "workbox-core": "6.5.4",
- "workbox-routing": "6.5.4"
+ "workbox-core": "6.6.0",
+ "workbox-routing": "6.6.0"
}
},
"node_modules/workbox-sw": {
- "version": "6.5.4",
- "resolved": "https://registry.npmjs.org/workbox-sw/-/workbox-sw-6.5.4.tgz",
- "integrity": "sha512-vo2RQo7DILVRoH5LjGqw3nphavEjK4Qk+FenXeUsknKn14eCNedHOXWbmnvP4ipKhlE35pvJ4yl4YYf6YsJArA==",
+ "version": "6.6.0",
+ "resolved": "https://registry.npmjs.org/workbox-sw/-/workbox-sw-6.6.0.tgz",
+ "integrity": "sha512-R2IkwDokbtHUE4Kus8pKO5+VkPHD2oqTgl+XJwh4zbF1HyjAbgNmK/FneZHVU7p03XUt9ICfuGDYISWG9qV/CQ==",
"dev": true,
"peer": true
},
"node_modules/workbox-webpack-plugin": {
- "version": "6.5.4",
- "resolved": "https://registry.npmjs.org/workbox-webpack-plugin/-/workbox-webpack-plugin-6.5.4.tgz",
- "integrity": "sha512-LmWm/zoaahe0EGmMTrSLUi+BjyR3cdGEfU3fS6PN1zKFYbqAKuQ+Oy/27e4VSXsyIwAw8+QDfk1XHNGtZu9nQg==",
+ "version": "6.6.0",
+ "resolved": "https://registry.npmjs.org/workbox-webpack-plugin/-/workbox-webpack-plugin-6.6.0.tgz",
+ "integrity": "sha512-xNZIZHalboZU66Wa7x1YkjIqEy1gTR+zPM+kjrYJzqN7iurYZBctBLISyScjhkJKYuRrZUP0iqViZTh8rS0+3A==",
"dev": true,
"peer": true,
"dependencies": {
@@ -21451,7 +20452,7 @@
"pretty-bytes": "^5.4.1",
"upath": "^1.2.0",
"webpack-sources": "^1.4.3",
- "workbox-build": "6.5.4"
+ "workbox-build": "6.6.0"
},
"engines": {
"node": ">=10.0.0"
@@ -21482,14 +20483,14 @@
}
},
"node_modules/workbox-window": {
- "version": "6.5.4",
- "resolved": "https://registry.npmjs.org/workbox-window/-/workbox-window-6.5.4.tgz",
- "integrity": "sha512-HnLZJDwYBE+hpG25AQBO8RUWBJRaCsI9ksQJEp3aCOFCaG5kqaToAYXFRAHxzRluM2cQbGzdQF5rjKPWPA1fug==",
+ "version": "6.6.0",
+ "resolved": "https://registry.npmjs.org/workbox-window/-/workbox-window-6.6.0.tgz",
+ "integrity": "sha512-L4N9+vka17d16geaJXXRjENLFldvkWy7JyGxElRD0JvBxvFEd8LOhr+uXCcar/NzAmIBRv9EZ+M+Qr4mOoBITw==",
"dev": true,
"peer": true,
"dependencies": {
"@types/trusted-types": "^2.0.2",
- "workbox-core": "6.5.4"
+ "workbox-core": "6.6.0"
}
},
"node_modules/wrap-ansi": {
@@ -21508,35 +20509,82 @@
"url": "https://github.com/chalk/wrap-ansi?sponsor=1"
}
},
- "node_modules/wrap-ansi/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==",
+ "node_modules/wrap-ansi-cjs": {
+ "name": "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,
+ "peer": true,
"dependencies": {
- "color-convert": "^2.0.1"
+ "ansi-styles": "^4.0.0",
+ "string-width": "^4.1.0",
+ "strip-ansi": "^6.0.0"
},
"engines": {
- "node": ">=8"
+ "node": ">=10"
},
"funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
}
},
- "node_modules/wrap-ansi/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==",
+ "node_modules/wrap-ansi-cjs/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,
+ "peer": true
+ },
+ "node_modules/wrap-ansi-cjs/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,
+ "peer": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/wrap-ansi-cjs/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,
+ "peer": true,
"dependencies": {
- "color-name": "~1.1.4"
+ "emoji-regex": "^8.0.0",
+ "is-fullwidth-code-point": "^3.0.0",
+ "strip-ansi": "^6.0.1"
},
"engines": {
- "node": ">=7.0.0"
+ "node": ">=8"
}
},
- "node_modules/wrap-ansi/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=="
+ "node_modules/wrap-ansi/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=="
+ },
+ "node_modules/wrap-ansi/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==",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/wrap-ansi/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==",
+ "dependencies": {
+ "emoji-regex": "^8.0.0",
+ "is-fullwidth-code-point": "^3.0.0",
+ "strip-ansi": "^6.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
},
"node_modules/wrappy": {
"version": "1.0.2",
@@ -21608,20 +20656,21 @@
}
},
"node_modules/yargs": {
- "version": "16.2.0",
- "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz",
- "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==",
+ "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": "^7.0.2",
+ "cliui": "^8.0.1",
"escalade": "^3.1.1",
"get-caller-file": "^2.0.5",
"require-directory": "^2.1.1",
- "string-width": "^4.2.0",
+ "string-width": "^4.2.3",
"y18n": "^5.0.5",
- "yargs-parser": "^20.2.2"
+ "yargs-parser": "^21.1.1"
},
"engines": {
- "node": ">=10"
+ "node": ">=12"
}
},
"node_modules/yargs-parser": {
@@ -21632,6 +20681,44 @@
"node": ">=10"
}
},
+ "node_modules/yargs/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/yargs/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/yargs/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/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/yn": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz",
@@ -21696,58 +20783,127 @@
"@jridgewell/trace-mapping": "^0.3.9"
}
},
+ "@apideck/better-ajv-errors": {
+ "version": "0.3.6",
+ "resolved": "https://registry.npmjs.org/@apideck/better-ajv-errors/-/better-ajv-errors-0.3.6.tgz",
+ "integrity": "sha512-P+ZygBLZtkp0qqOAJJVX4oX/sFo5JR3eBWwwuqHHhK0GIgQOKWrAfiAaWX0aArHkRWHMuggFEgAZNxVPwPZYaA==",
+ "dev": true,
+ "peer": true,
+ "requires": {
+ "json-schema": "^0.4.0",
+ "jsonpointer": "^5.0.0",
+ "leven": "^3.1.0"
+ }
+ },
"@babel/code-frame": {
- "version": "7.21.4",
- "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.21.4.tgz",
- "integrity": "sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g==",
+ "version": "7.23.5",
+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.23.5.tgz",
+ "integrity": "sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==",
"requires": {
- "@babel/highlight": "^7.18.6"
+ "@babel/highlight": "^7.23.4",
+ "chalk": "^2.4.2"
+ },
+ "dependencies": {
+ "ansi-styles": {
+ "version": "3.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
+ "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
+ "requires": {
+ "color-convert": "^1.9.0"
+ }
+ },
+ "chalk": {
+ "version": "2.4.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
+ "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
+ "requires": {
+ "ansi-styles": "^3.2.1",
+ "escape-string-regexp": "^1.0.5",
+ "supports-color": "^5.3.0"
+ }
+ },
+ "color-convert": {
+ "version": "1.9.3",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
+ "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
+ "requires": {
+ "color-name": "1.1.3"
+ }
+ },
+ "color-name": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
+ "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw=="
+ },
+ "escape-string-regexp": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
+ "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg=="
+ },
+ "has-flag": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
+ "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw=="
+ },
+ "supports-color": {
+ "version": "5.5.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
+ "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
+ "requires": {
+ "has-flag": "^3.0.0"
+ }
+ }
}
},
"@babel/compat-data": {
- "version": "7.21.7",
- "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.21.7.tgz",
- "integrity": "sha512-KYMqFYTaenzMK4yUtf4EW9wc4N9ef80FsbMtkwool5zpwl4YrT1SdWYSTRcT94KO4hannogdS+LxY7L+arP3gA=="
+ "version": "7.23.5",
+ "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.23.5.tgz",
+ "integrity": "sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw=="
},
"@babel/core": {
- "version": "7.21.8",
- "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.21.8.tgz",
- "integrity": "sha512-YeM22Sondbo523Sz0+CirSPnbj9bG3P0CdHcBZdqUuaeOaYEFbOLoGU7lebvGP6P5J/WE9wOn7u7C4J9HvS1xQ==",
+ "version": "7.23.9",
+ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.9.tgz",
+ "integrity": "sha512-5q0175NOjddqpvvzU+kDiSOAk4PfdO6FvwCWoQ6RO7rTzEe8vlo+4HVfcnAREhD4npMs0e9uZypjTwzZPCf/cw==",
"requires": {
"@ampproject/remapping": "^2.2.0",
- "@babel/code-frame": "^7.21.4",
- "@babel/generator": "^7.21.5",
- "@babel/helper-compilation-targets": "^7.21.5",
- "@babel/helper-module-transforms": "^7.21.5",
- "@babel/helpers": "^7.21.5",
- "@babel/parser": "^7.21.8",
- "@babel/template": "^7.20.7",
- "@babel/traverse": "^7.21.5",
- "@babel/types": "^7.21.5",
- "convert-source-map": "^1.7.0",
+ "@babel/code-frame": "^7.23.5",
+ "@babel/generator": "^7.23.6",
+ "@babel/helper-compilation-targets": "^7.23.6",
+ "@babel/helper-module-transforms": "^7.23.3",
+ "@babel/helpers": "^7.23.9",
+ "@babel/parser": "^7.23.9",
+ "@babel/template": "^7.23.9",
+ "@babel/traverse": "^7.23.9",
+ "@babel/types": "^7.23.9",
+ "convert-source-map": "^2.0.0",
"debug": "^4.1.0",
"gensync": "^1.0.0-beta.2",
- "json5": "^2.2.2",
- "semver": "^6.3.0"
+ "json5": "^2.2.3",
+ "semver": "^6.3.1"
},
"dependencies": {
+ "convert-source-map": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
+ "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg=="
+ },
"semver": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
- "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw=="
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="
}
}
},
"@babel/eslint-parser": {
- "version": "7.21.8",
- "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.21.8.tgz",
- "integrity": "sha512-HLhI+2q+BP3sf78mFUZNCGc10KEmoUqtUT1OCdMZsN+qr4qFeLUod62/zAnF3jNQstwyasDkZnVXwfK2Bml7MQ==",
+ "version": "7.23.10",
+ "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.23.10.tgz",
+ "integrity": "sha512-3wSYDPZVnhseRnxRJH6ZVTNknBz76AEnyC+AYYhasjP3Yy23qz0ERR7Fcd2SHmYuSFJ2kY9gaaDd3vyqU09eSw==",
"dev": true,
"peer": true,
"requires": {
"@nicolo-ribaudo/eslint-scope-5-internals": "5.1.1-v1",
"eslint-visitor-keys": "^2.1.0",
- "semver": "^6.3.0"
+ "semver": "^6.3.1"
},
"dependencies": {
"eslint-visitor-keys": {
@@ -21758,346 +20914,377 @@
"peer": true
},
"semver": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
- "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
"dev": true,
"peer": true
}
}
},
"@babel/generator": {
- "version": "7.21.5",
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.21.5.tgz",
- "integrity": "sha512-SrKK/sRv8GesIW1bDagf9cCG38IOMYZusoe1dfg0D8aiUe3Amvoj1QtjTPAWcfrZFvIwlleLb0gxzQidL9w14w==",
+ "version": "7.23.6",
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.6.tgz",
+ "integrity": "sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==",
"requires": {
- "@babel/types": "^7.21.5",
+ "@babel/types": "^7.23.6",
"@jridgewell/gen-mapping": "^0.3.2",
"@jridgewell/trace-mapping": "^0.3.17",
"jsesc": "^2.5.1"
}
},
"@babel/helper-annotate-as-pure": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz",
- "integrity": "sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==",
+ "version": "7.22.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz",
+ "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==",
"dev": true,
"peer": true,
"requires": {
- "@babel/types": "^7.18.6"
+ "@babel/types": "^7.22.5"
}
},
"@babel/helper-builder-binary-assignment-operator-visitor": {
- "version": "7.21.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.21.5.tgz",
- "integrity": "sha512-uNrjKztPLkUk7bpCNC0jEKDJzzkvel/W+HguzbN8krA+LPfC1CEobJEvAvGka2A/M+ViOqXdcRL0GqPUJSjx9g==",
+ "version": "7.22.15",
+ "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.15.tgz",
+ "integrity": "sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==",
"dev": true,
"peer": true,
"requires": {
- "@babel/types": "^7.21.5"
+ "@babel/types": "^7.22.15"
}
},
"@babel/helper-compilation-targets": {
- "version": "7.21.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.21.5.tgz",
- "integrity": "sha512-1RkbFGUKex4lvsB9yhIfWltJM5cZKUftB2eNajaDv3dCMEp49iBG0K14uH8NnX9IPux2+mK7JGEOB0jn48/J6w==",
+ "version": "7.23.6",
+ "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.23.6.tgz",
+ "integrity": "sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==",
"requires": {
- "@babel/compat-data": "^7.21.5",
- "@babel/helper-validator-option": "^7.21.0",
- "browserslist": "^4.21.3",
+ "@babel/compat-data": "^7.23.5",
+ "@babel/helper-validator-option": "^7.23.5",
+ "browserslist": "^4.22.2",
"lru-cache": "^5.1.1",
- "semver": "^6.3.0"
+ "semver": "^6.3.1"
},
"dependencies": {
"semver": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
- "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw=="
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="
}
}
},
"@babel/helper-create-class-features-plugin": {
- "version": "7.21.8",
- "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.21.8.tgz",
- "integrity": "sha512-+THiN8MqiH2AczyuZrnrKL6cAxFRRQDKW9h1YkBvbgKmAm6mwiacig1qT73DHIWMGo40GRnsEfN3LA+E6NtmSw==",
+ "version": "7.23.10",
+ "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.23.10.tgz",
+ "integrity": "sha512-2XpP2XhkXzgxecPNEEK8Vz8Asj9aRxt08oKOqtiZoqV2UGZ5T+EkyP9sXQ9nwMxBIG34a7jmasVqoMop7VdPUw==",
"dev": true,
"peer": true,
"requires": {
- "@babel/helper-annotate-as-pure": "^7.18.6",
- "@babel/helper-environment-visitor": "^7.21.5",
- "@babel/helper-function-name": "^7.21.0",
- "@babel/helper-member-expression-to-functions": "^7.21.5",
- "@babel/helper-optimise-call-expression": "^7.18.6",
- "@babel/helper-replace-supers": "^7.21.5",
- "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0",
- "@babel/helper-split-export-declaration": "^7.18.6",
- "semver": "^6.3.0"
+ "@babel/helper-annotate-as-pure": "^7.22.5",
+ "@babel/helper-environment-visitor": "^7.22.20",
+ "@babel/helper-function-name": "^7.23.0",
+ "@babel/helper-member-expression-to-functions": "^7.23.0",
+ "@babel/helper-optimise-call-expression": "^7.22.5",
+ "@babel/helper-replace-supers": "^7.22.20",
+ "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5",
+ "@babel/helper-split-export-declaration": "^7.22.6",
+ "semver": "^6.3.1"
},
"dependencies": {
"semver": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
- "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
"dev": true,
"peer": true
}
}
},
"@babel/helper-create-regexp-features-plugin": {
- "version": "7.21.8",
- "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.21.8.tgz",
- "integrity": "sha512-zGuSdedkFtsFHGbexAvNuipg1hbtitDLo2XE8/uf6Y9sOQV1xsYX/2pNbtedp/X0eU1pIt+kGvaqHCowkRbS5g==",
+ "version": "7.22.15",
+ "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.15.tgz",
+ "integrity": "sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==",
"dev": true,
"peer": true,
"requires": {
- "@babel/helper-annotate-as-pure": "^7.18.6",
+ "@babel/helper-annotate-as-pure": "^7.22.5",
"regexpu-core": "^5.3.1",
- "semver": "^6.3.0"
+ "semver": "^6.3.1"
},
"dependencies": {
"semver": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
- "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
"dev": true,
"peer": true
}
}
},
"@babel/helper-define-polyfill-provider": {
- "version": "0.3.3",
- "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.3.tgz",
- "integrity": "sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==",
+ "version": "0.5.0",
+ "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.5.0.tgz",
+ "integrity": "sha512-NovQquuQLAQ5HuyjCz7WQP9MjRj7dx++yspwiyUiGl9ZyadHRSql1HZh5ogRd8W8w6YM6EQ/NTB8rgjLt5W65Q==",
"dev": true,
"peer": true,
"requires": {
- "@babel/helper-compilation-targets": "^7.17.7",
- "@babel/helper-plugin-utils": "^7.16.7",
+ "@babel/helper-compilation-targets": "^7.22.6",
+ "@babel/helper-plugin-utils": "^7.22.5",
"debug": "^4.1.1",
"lodash.debounce": "^4.0.8",
- "resolve": "^1.14.2",
- "semver": "^6.1.2"
- },
- "dependencies": {
- "semver": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
- "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
- "dev": true,
- "peer": true
- }
+ "resolve": "^1.14.2"
}
},
"@babel/helper-environment-visitor": {
- "version": "7.21.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.21.5.tgz",
- "integrity": "sha512-IYl4gZ3ETsWocUWgsFZLM5i1BYx9SoemminVEXadgLBa9TdeorzgLKm8wWLA6J1N/kT3Kch8XIk1laNzYoHKvQ=="
+ "version": "7.22.20",
+ "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz",
+ "integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA=="
},
"@babel/helper-function-name": {
- "version": "7.21.0",
- "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.21.0.tgz",
- "integrity": "sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg==",
+ "version": "7.23.0",
+ "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz",
+ "integrity": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==",
"requires": {
- "@babel/template": "^7.20.7",
- "@babel/types": "^7.21.0"
+ "@babel/template": "^7.22.15",
+ "@babel/types": "^7.23.0"
}
},
"@babel/helper-hoist-variables": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz",
- "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==",
+ "version": "7.22.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz",
+ "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==",
"requires": {
- "@babel/types": "^7.18.6"
+ "@babel/types": "^7.22.5"
}
},
"@babel/helper-member-expression-to-functions": {
- "version": "7.21.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.21.5.tgz",
- "integrity": "sha512-nIcGfgwpH2u4n9GG1HpStW5Ogx7x7ekiFHbjjFRKXbn5zUvqO9ZgotCO4x1aNbKn/x/xOUaXEhyNHCwtFCpxWg==",
+ "version": "7.23.0",
+ "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.23.0.tgz",
+ "integrity": "sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==",
"dev": true,
"peer": true,
"requires": {
- "@babel/types": "^7.21.5"
+ "@babel/types": "^7.23.0"
}
},
"@babel/helper-module-imports": {
- "version": "7.21.4",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.21.4.tgz",
- "integrity": "sha512-orajc5T2PsRYUN3ZryCEFeMDYwyw09c/pZeaQEZPH0MpKzSvn3e0uXsDBu3k03VI+9DBiRo+l22BfKTpKwa/Wg==",
+ "version": "7.22.15",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz",
+ "integrity": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==",
"requires": {
- "@babel/types": "^7.21.4"
+ "@babel/types": "^7.22.15"
}
},
"@babel/helper-module-transforms": {
- "version": "7.21.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.21.5.tgz",
- "integrity": "sha512-bI2Z9zBGY2q5yMHoBvJ2a9iX3ZOAzJPm7Q8Yz6YeoUjU/Cvhmi2G4QyTNyPBqqXSgTjUxRg3L0xV45HvkNWWBw==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.23.3.tgz",
+ "integrity": "sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==",
"requires": {
- "@babel/helper-environment-visitor": "^7.21.5",
- "@babel/helper-module-imports": "^7.21.4",
- "@babel/helper-simple-access": "^7.21.5",
- "@babel/helper-split-export-declaration": "^7.18.6",
- "@babel/helper-validator-identifier": "^7.19.1",
- "@babel/template": "^7.20.7",
- "@babel/traverse": "^7.21.5",
- "@babel/types": "^7.21.5"
+ "@babel/helper-environment-visitor": "^7.22.20",
+ "@babel/helper-module-imports": "^7.22.15",
+ "@babel/helper-simple-access": "^7.22.5",
+ "@babel/helper-split-export-declaration": "^7.22.6",
+ "@babel/helper-validator-identifier": "^7.22.20"
}
},
"@babel/helper-optimise-call-expression": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz",
- "integrity": "sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==",
+ "version": "7.22.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz",
+ "integrity": "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==",
"dev": true,
"peer": true,
"requires": {
- "@babel/types": "^7.18.6"
+ "@babel/types": "^7.22.5"
}
},
"@babel/helper-plugin-utils": {
- "version": "7.21.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.21.5.tgz",
- "integrity": "sha512-0WDaIlXKOX/3KfBK/dwP1oQGiPh6rjMkT7HIRv7i5RR2VUMwrx5ZL0dwBkKx7+SW1zwNdgjHd34IMk5ZjTeHVg=="
+ "version": "7.22.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz",
+ "integrity": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg=="
},
"@babel/helper-remap-async-to-generator": {
- "version": "7.18.9",
- "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz",
- "integrity": "sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==",
+ "version": "7.22.20",
+ "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.20.tgz",
+ "integrity": "sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==",
"dev": true,
"peer": true,
"requires": {
- "@babel/helper-annotate-as-pure": "^7.18.6",
- "@babel/helper-environment-visitor": "^7.18.9",
- "@babel/helper-wrap-function": "^7.18.9",
- "@babel/types": "^7.18.9"
+ "@babel/helper-annotate-as-pure": "^7.22.5",
+ "@babel/helper-environment-visitor": "^7.22.20",
+ "@babel/helper-wrap-function": "^7.22.20"
}
},
"@babel/helper-replace-supers": {
- "version": "7.21.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.21.5.tgz",
- "integrity": "sha512-/y7vBgsr9Idu4M6MprbOVUfH3vs7tsIfnVWv/Ml2xgwvyH6LTngdfbf5AdsKwkJy4zgy1X/kuNrEKvhhK28Yrg==",
+ "version": "7.22.20",
+ "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.22.20.tgz",
+ "integrity": "sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==",
"dev": true,
"peer": true,
"requires": {
- "@babel/helper-environment-visitor": "^7.21.5",
- "@babel/helper-member-expression-to-functions": "^7.21.5",
- "@babel/helper-optimise-call-expression": "^7.18.6",
- "@babel/template": "^7.20.7",
- "@babel/traverse": "^7.21.5",
- "@babel/types": "^7.21.5"
+ "@babel/helper-environment-visitor": "^7.22.20",
+ "@babel/helper-member-expression-to-functions": "^7.22.15",
+ "@babel/helper-optimise-call-expression": "^7.22.5"
}
},
"@babel/helper-simple-access": {
- "version": "7.21.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.21.5.tgz",
- "integrity": "sha512-ENPDAMC1wAjR0uaCUwliBdiSl1KBJAVnMTzXqi64c2MG8MPR6ii4qf7bSXDqSFbr4W6W028/rf5ivoHop5/mkg==",
+ "version": "7.22.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz",
+ "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==",
"requires": {
- "@babel/types": "^7.21.5"
+ "@babel/types": "^7.22.5"
}
},
"@babel/helper-skip-transparent-expression-wrappers": {
- "version": "7.20.0",
- "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.20.0.tgz",
- "integrity": "sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==",
+ "version": "7.22.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz",
+ "integrity": "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==",
"dev": true,
"peer": true,
"requires": {
- "@babel/types": "^7.20.0"
+ "@babel/types": "^7.22.5"
}
},
"@babel/helper-split-export-declaration": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz",
- "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==",
+ "version": "7.22.6",
+ "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz",
+ "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==",
"requires": {
- "@babel/types": "^7.18.6"
+ "@babel/types": "^7.22.5"
}
},
"@babel/helper-string-parser": {
- "version": "7.21.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.21.5.tgz",
- "integrity": "sha512-5pTUx3hAJaZIdW99sJ6ZUUgWq/Y+Hja7TowEnLNMm1VivRgZQL3vpBY3qUACVsvw+yQU6+YgfBVmcbLaZtrA1w=="
+ "version": "7.23.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz",
+ "integrity": "sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ=="
},
"@babel/helper-validator-identifier": {
- "version": "7.19.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz",
- "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w=="
+ "version": "7.22.20",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz",
+ "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A=="
},
"@babel/helper-validator-option": {
- "version": "7.21.0",
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.21.0.tgz",
- "integrity": "sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ=="
+ "version": "7.23.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz",
+ "integrity": "sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw=="
},
"@babel/helper-wrap-function": {
- "version": "7.20.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.20.5.tgz",
- "integrity": "sha512-bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q==",
+ "version": "7.22.20",
+ "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.22.20.tgz",
+ "integrity": "sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==",
"dev": true,
"peer": true,
"requires": {
- "@babel/helper-function-name": "^7.19.0",
- "@babel/template": "^7.18.10",
- "@babel/traverse": "^7.20.5",
- "@babel/types": "^7.20.5"
+ "@babel/helper-function-name": "^7.22.5",
+ "@babel/template": "^7.22.15",
+ "@babel/types": "^7.22.19"
}
},
"@babel/helpers": {
- "version": "7.21.5",
- "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.21.5.tgz",
- "integrity": "sha512-BSY+JSlHxOmGsPTydUkPf1MdMQ3M81x5xGCOVgWM3G8XH77sJ292Y2oqcp0CbbgxhqBuI46iUz1tT7hqP7EfgA==",
+ "version": "7.23.9",
+ "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.23.9.tgz",
+ "integrity": "sha512-87ICKgU5t5SzOT7sBMfCOZQ2rHjRU+Pcb9BoILMYz600W6DkVRLFBPwQ18gwUVvggqXivaUakpnxWQGbpywbBQ==",
"requires": {
- "@babel/template": "^7.20.7",
- "@babel/traverse": "^7.21.5",
- "@babel/types": "^7.21.5"
+ "@babel/template": "^7.23.9",
+ "@babel/traverse": "^7.23.9",
+ "@babel/types": "^7.23.9"
}
},
"@babel/highlight": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz",
- "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==",
+ "version": "7.23.4",
+ "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.23.4.tgz",
+ "integrity": "sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==",
"requires": {
- "@babel/helper-validator-identifier": "^7.18.6",
- "chalk": "^2.0.0",
+ "@babel/helper-validator-identifier": "^7.22.20",
+ "chalk": "^2.4.2",
"js-tokens": "^4.0.0"
+ },
+ "dependencies": {
+ "ansi-styles": {
+ "version": "3.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
+ "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
+ "requires": {
+ "color-convert": "^1.9.0"
+ }
+ },
+ "chalk": {
+ "version": "2.4.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
+ "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
+ "requires": {
+ "ansi-styles": "^3.2.1",
+ "escape-string-regexp": "^1.0.5",
+ "supports-color": "^5.3.0"
+ }
+ },
+ "color-convert": {
+ "version": "1.9.3",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
+ "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
+ "requires": {
+ "color-name": "1.1.3"
+ }
+ },
+ "color-name": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
+ "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw=="
+ },
+ "escape-string-regexp": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
+ "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg=="
+ },
+ "has-flag": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
+ "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw=="
+ },
+ "supports-color": {
+ "version": "5.5.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
+ "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
+ "requires": {
+ "has-flag": "^3.0.0"
+ }
+ }
}
},
"@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=="
+ "version": "7.23.9",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.9.tgz",
+ "integrity": "sha512-9tcKgqKbs3xGJ+NtKF2ndOBBLVwPjl1SHxPQkd36r3Dlirw3xWUeGaTbqr7uGZcTaxkVNwc+03SVP7aCdWrTlA=="
},
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6.tgz",
- "integrity": "sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.23.3.tgz",
+ "integrity": "sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==",
"dev": true,
"peer": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.18.6"
+ "@babel/helper-plugin-utils": "^7.22.5"
}
},
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": {
- "version": "7.20.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.20.7.tgz",
- "integrity": "sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.23.3.tgz",
+ "integrity": "sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ==",
"dev": true,
"peer": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.20.2",
- "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0",
- "@babel/plugin-proposal-optional-chaining": "^7.20.7"
+ "@babel/helper-plugin-utils": "^7.22.5",
+ "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5",
+ "@babel/plugin-transform-optional-chaining": "^7.23.3"
}
},
- "@babel/plugin-proposal-async-generator-functions": {
- "version": "7.20.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.7.tgz",
- "integrity": "sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==",
+ "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": {
+ "version": "7.23.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.23.7.tgz",
+ "integrity": "sha512-LlRT7HgaifEpQA1ZgLVOIJZZFVPWN5iReq/7/JixwBtwcoeVGDBD53ZV28rrsLYOZs1Y/EHhA8N/Z6aazHR8cw==",
"dev": true,
"peer": true,
"requires": {
- "@babel/helper-environment-visitor": "^7.18.9",
- "@babel/helper-plugin-utils": "^7.20.2",
- "@babel/helper-remap-async-to-generator": "^7.18.9",
- "@babel/plugin-syntax-async-generators": "^7.8.4"
+ "@babel/helper-environment-visitor": "^7.22.20",
+ "@babel/helper-plugin-utils": "^7.22.5"
}
},
"@babel/plugin-proposal-class-properties": {
@@ -22111,74 +21298,16 @@
"@babel/helper-plugin-utils": "^7.18.6"
}
},
- "@babel/plugin-proposal-class-static-block": {
- "version": "7.21.0",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.21.0.tgz",
- "integrity": "sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==",
- "dev": true,
- "peer": true,
- "requires": {
- "@babel/helper-create-class-features-plugin": "^7.21.0",
- "@babel/helper-plugin-utils": "^7.20.2",
- "@babel/plugin-syntax-class-static-block": "^7.14.5"
- }
- },
"@babel/plugin-proposal-decorators": {
- "version": "7.21.0",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.21.0.tgz",
- "integrity": "sha512-MfgX49uRrFUTL/HvWtmx3zmpyzMMr4MTj3d527MLlr/4RTT9G/ytFFP7qet2uM2Ve03b+BkpWUpK+lRXnQ+v9w==",
- "dev": true,
- "peer": true,
- "requires": {
- "@babel/helper-create-class-features-plugin": "^7.21.0",
- "@babel/helper-plugin-utils": "^7.20.2",
- "@babel/helper-replace-supers": "^7.20.7",
- "@babel/helper-split-export-declaration": "^7.18.6",
- "@babel/plugin-syntax-decorators": "^7.21.0"
- }
- },
- "@babel/plugin-proposal-dynamic-import": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.18.6.tgz",
- "integrity": "sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==",
- "dev": true,
- "peer": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.18.6",
- "@babel/plugin-syntax-dynamic-import": "^7.8.3"
- }
- },
- "@babel/plugin-proposal-export-namespace-from": {
- "version": "7.18.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz",
- "integrity": "sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==",
- "dev": true,
- "peer": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.18.9",
- "@babel/plugin-syntax-export-namespace-from": "^7.8.3"
- }
- },
- "@babel/plugin-proposal-json-strings": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.18.6.tgz",
- "integrity": "sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==",
- "dev": true,
- "peer": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.18.6",
- "@babel/plugin-syntax-json-strings": "^7.8.3"
- }
- },
- "@babel/plugin-proposal-logical-assignment-operators": {
- "version": "7.20.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.20.7.tgz",
- "integrity": "sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==",
+ "version": "7.23.9",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.23.9.tgz",
+ "integrity": "sha512-hJhBCb0+NnTWybvWq2WpbCYDOcflSbx0t+BYP65e5R9GVnukiDTi+on5bFkk4p7QGuv190H6KfNiV9Knf/3cZA==",
"dev": true,
"peer": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.20.2",
- "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4"
+ "@babel/helper-create-class-features-plugin": "^7.23.9",
+ "@babel/helper-plugin-utils": "^7.22.5",
+ "@babel/plugin-syntax-decorators": "^7.23.3"
}
},
"@babel/plugin-proposal-nullish-coalescing-operator": {
@@ -22203,31 +21332,6 @@
"@babel/plugin-syntax-numeric-separator": "^7.10.4"
}
},
- "@babel/plugin-proposal-object-rest-spread": {
- "version": "7.20.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz",
- "integrity": "sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==",
- "dev": true,
- "peer": true,
- "requires": {
- "@babel/compat-data": "^7.20.5",
- "@babel/helper-compilation-targets": "^7.20.7",
- "@babel/helper-plugin-utils": "^7.20.2",
- "@babel/plugin-syntax-object-rest-spread": "^7.8.3",
- "@babel/plugin-transform-parameters": "^7.20.7"
- }
- },
- "@babel/plugin-proposal-optional-catch-binding": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz",
- "integrity": "sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==",
- "dev": true,
- "peer": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.18.6",
- "@babel/plugin-syntax-optional-catch-binding": "^7.8.3"
- }
- },
"@babel/plugin-proposal-optional-chaining": {
"version": "7.21.0",
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz",
@@ -22252,28 +21356,12 @@
}
},
"@babel/plugin-proposal-private-property-in-object": {
- "version": "7.21.0",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0.tgz",
- "integrity": "sha512-ha4zfehbJjc5MmXBlHec1igel5TJXXLDDRbuJ4+XT2TJcyD9/V1919BA8gMvsdHcNMBy4WBUBiRb3nw/EQUtBw==",
+ "version": "7.21.0-placeholder-for-preset-env.2",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz",
+ "integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==",
"dev": true,
"peer": true,
- "requires": {
- "@babel/helper-annotate-as-pure": "^7.18.6",
- "@babel/helper-create-class-features-plugin": "^7.21.0",
- "@babel/helper-plugin-utils": "^7.20.2",
- "@babel/plugin-syntax-private-property-in-object": "^7.14.5"
- }
- },
- "@babel/plugin-proposal-unicode-property-regex": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz",
- "integrity": "sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==",
- "dev": true,
- "peer": true,
- "requires": {
- "@babel/helper-create-regexp-features-plugin": "^7.18.6",
- "@babel/helper-plugin-utils": "^7.18.6"
- }
+ "requires": {}
},
"@babel/plugin-syntax-async-generators": {
"version": "7.8.4",
@@ -22310,13 +21398,13 @@
}
},
"@babel/plugin-syntax-decorators": {
- "version": "7.21.0",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.21.0.tgz",
- "integrity": "sha512-tIoPpGBR8UuM4++ccWN3gifhVvQu7ZizuR1fklhRJrd5ewgbkUS+0KVFeWWxELtn18NTLoW32XV7zyOgIAiz+w==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.23.3.tgz",
+ "integrity": "sha512-cf7Niq4/+/juY67E0PbgH0TDhLQ5J7zS8C/Q5FFx+DWyrRa9sUQdTXkjqKu8zGvuqr7vw1muKiukseihU+PJDA==",
"dev": true,
"peer": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.20.2"
+ "@babel/helper-plugin-utils": "^7.22.5"
}
},
"@babel/plugin-syntax-dynamic-import": {
@@ -22340,23 +21428,33 @@
}
},
"@babel/plugin-syntax-flow": {
- "version": "7.21.4",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.21.4.tgz",
- "integrity": "sha512-l9xd3N+XG4fZRxEP3vXdK6RW7vN1Uf5dxzRC/09wV86wqZ/YYQooBIGNsiRdfNR3/q2/5pPzV4B54J/9ctX5jw==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.23.3.tgz",
+ "integrity": "sha512-YZiAIpkJAwQXBJLIQbRFayR5c+gJ35Vcz3bg954k7cd73zqjvhacJuL9RbrzPz8qPmZdgqP6EUKwy0PCNhaaPA==",
"dev": true,
"peer": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.20.2"
+ "@babel/helper-plugin-utils": "^7.22.5"
}
},
"@babel/plugin-syntax-import-assertions": {
- "version": "7.20.0",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.20.0.tgz",
- "integrity": "sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.23.3.tgz",
+ "integrity": "sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw==",
+ "dev": true,
+ "peer": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.22.5"
+ }
+ },
+ "@babel/plugin-syntax-import-attributes": {
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.23.3.tgz",
+ "integrity": "sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==",
"dev": true,
"peer": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.19.0"
+ "@babel/helper-plugin-utils": "^7.22.5"
}
},
"@babel/plugin-syntax-import-meta": {
@@ -22376,13 +21474,13 @@
}
},
"@babel/plugin-syntax-jsx": {
- "version": "7.21.4",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.21.4.tgz",
- "integrity": "sha512-5hewiLct5OKyh6PLKEYaFclcqtIgCb6bmELouxjF6up5q3Sov7rOayW4RwhbaBL0dit8rA80GNfY+UuDp2mBbQ==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.23.3.tgz",
+ "integrity": "sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==",
"dev": true,
"peer": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.20.2"
+ "@babel/helper-plugin-utils": "^7.22.5"
}
},
"@babel/plugin-syntax-logical-assignment-operators": {
@@ -22452,497 +21550,690 @@
}
},
"@babel/plugin-syntax-typescript": {
- "version": "7.21.4",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.21.4.tgz",
- "integrity": "sha512-xz0D39NvhQn4t4RNsHmDnnsaQizIlUkdtYvLs8La1BlfjQ6JEwxkJGeqJMW2tAXx+q6H+WFuUTXNdYVpEya0YA==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.23.3.tgz",
+ "integrity": "sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==",
"requires": {
- "@babel/helper-plugin-utils": "^7.20.2"
+ "@babel/helper-plugin-utils": "^7.22.5"
+ }
+ },
+ "@babel/plugin-syntax-unicode-sets-regex": {
+ "version": "7.18.6",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz",
+ "integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==",
+ "dev": true,
+ "peer": true,
+ "requires": {
+ "@babel/helper-create-regexp-features-plugin": "^7.18.6",
+ "@babel/helper-plugin-utils": "^7.18.6"
}
},
"@babel/plugin-transform-arrow-functions": {
- "version": "7.21.5",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.21.5.tgz",
- "integrity": "sha512-wb1mhwGOCaXHDTcsRYMKF9e5bbMgqwxtqa2Y1ifH96dXJPwbuLX9qHy3clhrxVqgMz7nyNXs8VkxdH8UBcjKqA==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.23.3.tgz",
+ "integrity": "sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==",
"dev": true,
"peer": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.21.5"
+ "@babel/helper-plugin-utils": "^7.22.5"
+ }
+ },
+ "@babel/plugin-transform-async-generator-functions": {
+ "version": "7.23.9",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.23.9.tgz",
+ "integrity": "sha512-8Q3veQEDGe14dTYuwagbRtwxQDnytyg1JFu4/HwEMETeofocrB0U0ejBJIXoeG/t2oXZ8kzCyI0ZZfbT80VFNQ==",
+ "dev": true,
+ "peer": true,
+ "requires": {
+ "@babel/helper-environment-visitor": "^7.22.20",
+ "@babel/helper-plugin-utils": "^7.22.5",
+ "@babel/helper-remap-async-to-generator": "^7.22.20",
+ "@babel/plugin-syntax-async-generators": "^7.8.4"
}
},
"@babel/plugin-transform-async-to-generator": {
- "version": "7.20.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.20.7.tgz",
- "integrity": "sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.23.3.tgz",
+ "integrity": "sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw==",
"dev": true,
"peer": true,
"requires": {
- "@babel/helper-module-imports": "^7.18.6",
- "@babel/helper-plugin-utils": "^7.20.2",
- "@babel/helper-remap-async-to-generator": "^7.18.9"
+ "@babel/helper-module-imports": "^7.22.15",
+ "@babel/helper-plugin-utils": "^7.22.5",
+ "@babel/helper-remap-async-to-generator": "^7.22.20"
}
},
"@babel/plugin-transform-block-scoped-functions": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.18.6.tgz",
- "integrity": "sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.23.3.tgz",
+ "integrity": "sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==",
"dev": true,
"peer": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.18.6"
+ "@babel/helper-plugin-utils": "^7.22.5"
}
},
"@babel/plugin-transform-block-scoping": {
- "version": "7.21.0",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.21.0.tgz",
- "integrity": "sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ==",
+ "version": "7.23.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.23.4.tgz",
+ "integrity": "sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw==",
+ "dev": true,
+ "peer": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.22.5"
+ }
+ },
+ "@babel/plugin-transform-class-properties": {
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.23.3.tgz",
+ "integrity": "sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg==",
+ "dev": true,
+ "peer": true,
+ "requires": {
+ "@babel/helper-create-class-features-plugin": "^7.22.15",
+ "@babel/helper-plugin-utils": "^7.22.5"
+ }
+ },
+ "@babel/plugin-transform-class-static-block": {
+ "version": "7.23.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.23.4.tgz",
+ "integrity": "sha512-nsWu/1M+ggti1SOALj3hfx5FXzAY06fwPJsUZD4/A5e1bWi46VUIWtD+kOX6/IdhXGsXBWllLFDSnqSCdUNydQ==",
"dev": true,
"peer": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.20.2"
+ "@babel/helper-create-class-features-plugin": "^7.22.15",
+ "@babel/helper-plugin-utils": "^7.22.5",
+ "@babel/plugin-syntax-class-static-block": "^7.14.5"
}
},
"@babel/plugin-transform-classes": {
- "version": "7.21.0",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.21.0.tgz",
- "integrity": "sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ==",
+ "version": "7.23.8",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.23.8.tgz",
+ "integrity": "sha512-yAYslGsY1bX6Knmg46RjiCiNSwJKv2IUC8qOdYKqMMr0491SXFhcHqOdRDeCRohOOIzwN/90C6mQ9qAKgrP7dg==",
"dev": true,
"peer": true,
"requires": {
- "@babel/helper-annotate-as-pure": "^7.18.6",
- "@babel/helper-compilation-targets": "^7.20.7",
- "@babel/helper-environment-visitor": "^7.18.9",
- "@babel/helper-function-name": "^7.21.0",
- "@babel/helper-optimise-call-expression": "^7.18.6",
- "@babel/helper-plugin-utils": "^7.20.2",
- "@babel/helper-replace-supers": "^7.20.7",
- "@babel/helper-split-export-declaration": "^7.18.6",
+ "@babel/helper-annotate-as-pure": "^7.22.5",
+ "@babel/helper-compilation-targets": "^7.23.6",
+ "@babel/helper-environment-visitor": "^7.22.20",
+ "@babel/helper-function-name": "^7.23.0",
+ "@babel/helper-plugin-utils": "^7.22.5",
+ "@babel/helper-replace-supers": "^7.22.20",
+ "@babel/helper-split-export-declaration": "^7.22.6",
"globals": "^11.1.0"
+ },
+ "dependencies": {
+ "globals": {
+ "version": "11.12.0",
+ "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz",
+ "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==",
+ "dev": true,
+ "peer": true
+ }
}
},
"@babel/plugin-transform-computed-properties": {
- "version": "7.21.5",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.21.5.tgz",
- "integrity": "sha512-TR653Ki3pAwxBxUe8srfF3e4Pe3FTA46uaNHYyQwIoM4oWKSoOZiDNyHJ0oIoDIUPSRQbQG7jzgVBX3FPVne1Q==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.23.3.tgz",
+ "integrity": "sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==",
"dev": true,
"peer": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.21.5",
- "@babel/template": "^7.20.7"
+ "@babel/helper-plugin-utils": "^7.22.5",
+ "@babel/template": "^7.22.15"
}
},
"@babel/plugin-transform-destructuring": {
- "version": "7.21.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.21.3.tgz",
- "integrity": "sha512-bp6hwMFzuiE4HqYEyoGJ/V2LeIWn+hLVKc4pnj++E5XQptwhtcGmSayM029d/j2X1bPKGTlsyPwAubuU22KhMA==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.23.3.tgz",
+ "integrity": "sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==",
"dev": true,
"peer": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.20.2"
+ "@babel/helper-plugin-utils": "^7.22.5"
}
},
"@babel/plugin-transform-dotall-regex": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.18.6.tgz",
- "integrity": "sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.23.3.tgz",
+ "integrity": "sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ==",
"dev": true,
"peer": true,
"requires": {
- "@babel/helper-create-regexp-features-plugin": "^7.18.6",
- "@babel/helper-plugin-utils": "^7.18.6"
+ "@babel/helper-create-regexp-features-plugin": "^7.22.15",
+ "@babel/helper-plugin-utils": "^7.22.5"
}
},
"@babel/plugin-transform-duplicate-keys": {
- "version": "7.18.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.9.tgz",
- "integrity": "sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.23.3.tgz",
+ "integrity": "sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA==",
+ "dev": true,
+ "peer": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.22.5"
+ }
+ },
+ "@babel/plugin-transform-dynamic-import": {
+ "version": "7.23.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.23.4.tgz",
+ "integrity": "sha512-V6jIbLhdJK86MaLh4Jpghi8ho5fGzt3imHOBu/x0jlBaPYqDoWz4RDXjmMOfnh+JWNaQleEAByZLV0QzBT4YQQ==",
"dev": true,
"peer": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.18.9"
+ "@babel/helper-plugin-utils": "^7.22.5",
+ "@babel/plugin-syntax-dynamic-import": "^7.8.3"
}
},
"@babel/plugin-transform-exponentiation-operator": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.18.6.tgz",
- "integrity": "sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.23.3.tgz",
+ "integrity": "sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ==",
"dev": true,
"peer": true,
"requires": {
- "@babel/helper-builder-binary-assignment-operator-visitor": "^7.18.6",
- "@babel/helper-plugin-utils": "^7.18.6"
+ "@babel/helper-builder-binary-assignment-operator-visitor": "^7.22.15",
+ "@babel/helper-plugin-utils": "^7.22.5"
+ }
+ },
+ "@babel/plugin-transform-export-namespace-from": {
+ "version": "7.23.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.23.4.tgz",
+ "integrity": "sha512-GzuSBcKkx62dGzZI1WVgTWvkkz84FZO5TC5T8dl/Tht/rAla6Dg/Mz9Yhypg+ezVACf/rgDuQt3kbWEv7LdUDQ==",
+ "dev": true,
+ "peer": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.22.5",
+ "@babel/plugin-syntax-export-namespace-from": "^7.8.3"
}
},
"@babel/plugin-transform-flow-strip-types": {
- "version": "7.21.0",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.21.0.tgz",
- "integrity": "sha512-FlFA2Mj87a6sDkW4gfGrQQqwY/dLlBAyJa2dJEZ+FHXUVHBflO2wyKvg+OOEzXfrKYIa4HWl0mgmbCzt0cMb7w==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.23.3.tgz",
+ "integrity": "sha512-26/pQTf9nQSNVJCrLB1IkHUKyPxR+lMrH2QDPG89+Znu9rAMbtrybdbWeE9bb7gzjmE5iXHEY+e0HUwM6Co93Q==",
"dev": true,
"peer": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.20.2",
- "@babel/plugin-syntax-flow": "^7.18.6"
+ "@babel/helper-plugin-utils": "^7.22.5",
+ "@babel/plugin-syntax-flow": "^7.23.3"
}
},
"@babel/plugin-transform-for-of": {
- "version": "7.21.5",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.21.5.tgz",
- "integrity": "sha512-nYWpjKW/7j/I/mZkGVgHJXh4bA1sfdFnJoOXwJuj4m3Q2EraO/8ZyrkCau9P5tbHQk01RMSt6KYLCsW7730SXQ==",
+ "version": "7.23.6",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.23.6.tgz",
+ "integrity": "sha512-aYH4ytZ0qSuBbpfhuofbg/e96oQ7U2w1Aw/UQmKT+1l39uEhUPoFS3fHevDc1G0OvewyDudfMKY1OulczHzWIw==",
"dev": true,
"peer": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.21.5"
+ "@babel/helper-plugin-utils": "^7.22.5",
+ "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5"
}
},
"@babel/plugin-transform-function-name": {
- "version": "7.18.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.9.tgz",
- "integrity": "sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.23.3.tgz",
+ "integrity": "sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw==",
"dev": true,
"peer": true,
"requires": {
- "@babel/helper-compilation-targets": "^7.18.9",
- "@babel/helper-function-name": "^7.18.9",
- "@babel/helper-plugin-utils": "^7.18.9"
+ "@babel/helper-compilation-targets": "^7.22.15",
+ "@babel/helper-function-name": "^7.23.0",
+ "@babel/helper-plugin-utils": "^7.22.5"
+ }
+ },
+ "@babel/plugin-transform-json-strings": {
+ "version": "7.23.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.23.4.tgz",
+ "integrity": "sha512-81nTOqM1dMwZ/aRXQ59zVubN9wHGqk6UtqRK+/q+ciXmRy8fSolhGVvG09HHRGo4l6fr/c4ZhXUQH0uFW7PZbg==",
+ "dev": true,
+ "peer": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.22.5",
+ "@babel/plugin-syntax-json-strings": "^7.8.3"
}
},
"@babel/plugin-transform-literals": {
- "version": "7.18.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz",
- "integrity": "sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.23.3.tgz",
+ "integrity": "sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==",
"dev": true,
"peer": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.18.9"
+ "@babel/helper-plugin-utils": "^7.22.5"
+ }
+ },
+ "@babel/plugin-transform-logical-assignment-operators": {
+ "version": "7.23.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.23.4.tgz",
+ "integrity": "sha512-Mc/ALf1rmZTP4JKKEhUwiORU+vcfarFVLfcFiolKUo6sewoxSEgl36ak5t+4WamRsNr6nzjZXQjM35WsU+9vbg==",
+ "dev": true,
+ "peer": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.22.5",
+ "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4"
}
},
"@babel/plugin-transform-member-expression-literals": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.18.6.tgz",
- "integrity": "sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.23.3.tgz",
+ "integrity": "sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==",
"dev": true,
"peer": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.18.6"
+ "@babel/helper-plugin-utils": "^7.22.5"
}
},
"@babel/plugin-transform-modules-amd": {
- "version": "7.20.11",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.20.11.tgz",
- "integrity": "sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.23.3.tgz",
+ "integrity": "sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw==",
"dev": true,
"peer": true,
"requires": {
- "@babel/helper-module-transforms": "^7.20.11",
- "@babel/helper-plugin-utils": "^7.20.2"
+ "@babel/helper-module-transforms": "^7.23.3",
+ "@babel/helper-plugin-utils": "^7.22.5"
}
},
"@babel/plugin-transform-modules-commonjs": {
- "version": "7.21.5",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.21.5.tgz",
- "integrity": "sha512-OVryBEgKUbtqMoB7eG2rs6UFexJi6Zj6FDXx+esBLPTCxCNxAY9o+8Di7IsUGJ+AVhp5ncK0fxWUBd0/1gPhrQ==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.23.3.tgz",
+ "integrity": "sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==",
"dev": true,
"peer": true,
"requires": {
- "@babel/helper-module-transforms": "^7.21.5",
- "@babel/helper-plugin-utils": "^7.21.5",
- "@babel/helper-simple-access": "^7.21.5"
+ "@babel/helper-module-transforms": "^7.23.3",
+ "@babel/helper-plugin-utils": "^7.22.5",
+ "@babel/helper-simple-access": "^7.22.5"
}
},
"@babel/plugin-transform-modules-systemjs": {
- "version": "7.20.11",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.20.11.tgz",
- "integrity": "sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==",
+ "version": "7.23.9",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.23.9.tgz",
+ "integrity": "sha512-KDlPRM6sLo4o1FkiSlXoAa8edLXFsKKIda779fbLrvmeuc3itnjCtaO6RrtoaANsIJANj+Vk1zqbZIMhkCAHVw==",
"dev": true,
"peer": true,
"requires": {
- "@babel/helper-hoist-variables": "^7.18.6",
- "@babel/helper-module-transforms": "^7.20.11",
- "@babel/helper-plugin-utils": "^7.20.2",
- "@babel/helper-validator-identifier": "^7.19.1"
+ "@babel/helper-hoist-variables": "^7.22.5",
+ "@babel/helper-module-transforms": "^7.23.3",
+ "@babel/helper-plugin-utils": "^7.22.5",
+ "@babel/helper-validator-identifier": "^7.22.20"
}
},
"@babel/plugin-transform-modules-umd": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.18.6.tgz",
- "integrity": "sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.23.3.tgz",
+ "integrity": "sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg==",
"dev": true,
"peer": true,
"requires": {
- "@babel/helper-module-transforms": "^7.18.6",
- "@babel/helper-plugin-utils": "^7.18.6"
+ "@babel/helper-module-transforms": "^7.23.3",
+ "@babel/helper-plugin-utils": "^7.22.5"
}
},
"@babel/plugin-transform-named-capturing-groups-regex": {
- "version": "7.20.5",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.20.5.tgz",
- "integrity": "sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==",
+ "version": "7.22.5",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz",
+ "integrity": "sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==",
"dev": true,
"peer": true,
"requires": {
- "@babel/helper-create-regexp-features-plugin": "^7.20.5",
- "@babel/helper-plugin-utils": "^7.20.2"
+ "@babel/helper-create-regexp-features-plugin": "^7.22.5",
+ "@babel/helper-plugin-utils": "^7.22.5"
}
},
"@babel/plugin-transform-new-target": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.18.6.tgz",
- "integrity": "sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.23.3.tgz",
+ "integrity": "sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ==",
"dev": true,
"peer": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.18.6"
+ "@babel/helper-plugin-utils": "^7.22.5"
+ }
+ },
+ "@babel/plugin-transform-nullish-coalescing-operator": {
+ "version": "7.23.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.23.4.tgz",
+ "integrity": "sha512-jHE9EVVqHKAQx+VePv5LLGHjmHSJR76vawFPTdlxR/LVJPfOEGxREQwQfjuZEOPTwG92X3LINSh3M40Rv4zpVA==",
+ "dev": true,
+ "peer": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.22.5",
+ "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3"
+ }
+ },
+ "@babel/plugin-transform-numeric-separator": {
+ "version": "7.23.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.23.4.tgz",
+ "integrity": "sha512-mps6auzgwjRrwKEZA05cOwuDc9FAzoyFS4ZsG/8F43bTLf/TgkJg7QXOrPO1JO599iA3qgK9MXdMGOEC8O1h6Q==",
+ "dev": true,
+ "peer": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.22.5",
+ "@babel/plugin-syntax-numeric-separator": "^7.10.4"
+ }
+ },
+ "@babel/plugin-transform-object-rest-spread": {
+ "version": "7.23.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.23.4.tgz",
+ "integrity": "sha512-9x9K1YyeQVw0iOXJlIzwm8ltobIIv7j2iLyP2jIhEbqPRQ7ScNgwQufU2I0Gq11VjyG4gI4yMXt2VFags+1N3g==",
+ "dev": true,
+ "peer": true,
+ "requires": {
+ "@babel/compat-data": "^7.23.3",
+ "@babel/helper-compilation-targets": "^7.22.15",
+ "@babel/helper-plugin-utils": "^7.22.5",
+ "@babel/plugin-syntax-object-rest-spread": "^7.8.3",
+ "@babel/plugin-transform-parameters": "^7.23.3"
}
},
"@babel/plugin-transform-object-super": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.18.6.tgz",
- "integrity": "sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.23.3.tgz",
+ "integrity": "sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==",
"dev": true,
"peer": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.18.6",
- "@babel/helper-replace-supers": "^7.18.6"
+ "@babel/helper-plugin-utils": "^7.22.5",
+ "@babel/helper-replace-supers": "^7.22.20"
+ }
+ },
+ "@babel/plugin-transform-optional-catch-binding": {
+ "version": "7.23.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.23.4.tgz",
+ "integrity": "sha512-XIq8t0rJPHf6Wvmbn9nFxU6ao4c7WhghTR5WyV8SrJfUFzyxhCm4nhC+iAp3HFhbAKLfYpgzhJ6t4XCtVwqO5A==",
+ "dev": true,
+ "peer": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.22.5",
+ "@babel/plugin-syntax-optional-catch-binding": "^7.8.3"
+ }
+ },
+ "@babel/plugin-transform-optional-chaining": {
+ "version": "7.23.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.23.4.tgz",
+ "integrity": "sha512-ZU8y5zWOfjM5vZ+asjgAPwDaBjJzgufjES89Rs4Lpq63O300R/kOz30WCLo6BxxX6QVEilwSlpClnG5cZaikTA==",
+ "dev": true,
+ "peer": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.22.5",
+ "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5",
+ "@babel/plugin-syntax-optional-chaining": "^7.8.3"
}
},
"@babel/plugin-transform-parameters": {
- "version": "7.21.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.21.3.tgz",
- "integrity": "sha512-Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.23.3.tgz",
+ "integrity": "sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==",
+ "dev": true,
+ "peer": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.22.5"
+ }
+ },
+ "@babel/plugin-transform-private-methods": {
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.23.3.tgz",
+ "integrity": "sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g==",
"dev": true,
"peer": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.20.2"
+ "@babel/helper-create-class-features-plugin": "^7.22.15",
+ "@babel/helper-plugin-utils": "^7.22.5"
+ }
+ },
+ "@babel/plugin-transform-private-property-in-object": {
+ "version": "7.23.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.23.4.tgz",
+ "integrity": "sha512-9G3K1YqTq3F4Vt88Djx1UZ79PDyj+yKRnUy7cZGSMe+a7jkwD259uKKuUzQlPkGam7R+8RJwh5z4xO27fA1o2A==",
+ "dev": true,
+ "peer": true,
+ "requires": {
+ "@babel/helper-annotate-as-pure": "^7.22.5",
+ "@babel/helper-create-class-features-plugin": "^7.22.15",
+ "@babel/helper-plugin-utils": "^7.22.5",
+ "@babel/plugin-syntax-private-property-in-object": "^7.14.5"
}
},
"@babel/plugin-transform-property-literals": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.18.6.tgz",
- "integrity": "sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.23.3.tgz",
+ "integrity": "sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==",
"dev": true,
"peer": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.18.6"
+ "@babel/helper-plugin-utils": "^7.22.5"
}
},
"@babel/plugin-transform-react-constant-elements": {
- "version": "7.21.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.21.3.tgz",
- "integrity": "sha512-4DVcFeWe/yDYBLp0kBmOGFJ6N2UYg7coGid1gdxb4co62dy/xISDMaYBXBVXEDhfgMk7qkbcYiGtwd5Q/hwDDQ==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.23.3.tgz",
+ "integrity": "sha512-zP0QKq/p6O42OL94udMgSfKXyse4RyJ0JqbQ34zDAONWjyrEsghYEyTSK5FIpmXmCpB55SHokL1cRRKHv8L2Qw==",
"dev": true,
"peer": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.20.2"
+ "@babel/helper-plugin-utils": "^7.22.5"
}
},
"@babel/plugin-transform-react-display-name": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.18.6.tgz",
- "integrity": "sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.23.3.tgz",
+ "integrity": "sha512-GnvhtVfA2OAtzdX58FJxU19rhoGeQzyVndw3GgtdECQvQFXPEZIOVULHVZGAYmOgmqjXpVpfocAbSjh99V/Fqw==",
"dev": true,
"peer": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.18.6"
+ "@babel/helper-plugin-utils": "^7.22.5"
}
},
"@babel/plugin-transform-react-jsx": {
- "version": "7.21.5",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.21.5.tgz",
- "integrity": "sha512-ELdlq61FpoEkHO6gFRpfj0kUgSwQTGoaEU8eMRoS8Dv3v6e7BjEAj5WMtIBRdHUeAioMhKP5HyxNzNnP+heKbA==",
+ "version": "7.23.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.23.4.tgz",
+ "integrity": "sha512-5xOpoPguCZCRbo/JeHlloSkTA8Bld1J/E1/kLfD1nsuiW1m8tduTA1ERCgIZokDflX/IBzKcqR3l7VlRgiIfHA==",
"dev": true,
"peer": true,
"requires": {
- "@babel/helper-annotate-as-pure": "^7.18.6",
- "@babel/helper-module-imports": "^7.21.4",
- "@babel/helper-plugin-utils": "^7.21.5",
- "@babel/plugin-syntax-jsx": "^7.21.4",
- "@babel/types": "^7.21.5"
+ "@babel/helper-annotate-as-pure": "^7.22.5",
+ "@babel/helper-module-imports": "^7.22.15",
+ "@babel/helper-plugin-utils": "^7.22.5",
+ "@babel/plugin-syntax-jsx": "^7.23.3",
+ "@babel/types": "^7.23.4"
}
},
"@babel/plugin-transform-react-jsx-development": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.18.6.tgz",
- "integrity": "sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==",
+ "version": "7.22.5",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.22.5.tgz",
+ "integrity": "sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==",
"dev": true,
"peer": true,
"requires": {
- "@babel/plugin-transform-react-jsx": "^7.18.6"
+ "@babel/plugin-transform-react-jsx": "^7.22.5"
}
},
"@babel/plugin-transform-react-pure-annotations": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.18.6.tgz",
- "integrity": "sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.23.3.tgz",
+ "integrity": "sha512-qMFdSS+TUhB7Q/3HVPnEdYJDQIk57jkntAwSuz9xfSE4n+3I+vHYCli3HoHawN1Z3RfCz/y1zXA/JXjG6cVImQ==",
"dev": true,
"peer": true,
"requires": {
- "@babel/helper-annotate-as-pure": "^7.18.6",
- "@babel/helper-plugin-utils": "^7.18.6"
+ "@babel/helper-annotate-as-pure": "^7.22.5",
+ "@babel/helper-plugin-utils": "^7.22.5"
}
},
"@babel/plugin-transform-regenerator": {
- "version": "7.21.5",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.21.5.tgz",
- "integrity": "sha512-ZoYBKDb6LyMi5yCsByQ5jmXsHAQDDYeexT1Szvlmui+lADvfSecr5Dxd/PkrTC3pAD182Fcju1VQkB4oCp9M+w==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.23.3.tgz",
+ "integrity": "sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ==",
"dev": true,
"peer": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.21.5",
- "regenerator-transform": "^0.15.1"
+ "@babel/helper-plugin-utils": "^7.22.5",
+ "regenerator-transform": "^0.15.2"
}
},
"@babel/plugin-transform-reserved-words": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.18.6.tgz",
- "integrity": "sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.23.3.tgz",
+ "integrity": "sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg==",
"dev": true,
"peer": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.18.6"
+ "@babel/helper-plugin-utils": "^7.22.5"
}
},
"@babel/plugin-transform-runtime": {
- "version": "7.21.4",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.21.4.tgz",
- "integrity": "sha512-1J4dhrw1h1PqnNNpzwxQ2UBymJUF8KuPjAAnlLwZcGhHAIqUigFW7cdK6GHoB64ubY4qXQNYknoUeks4Wz7CUA==",
+ "version": "7.23.9",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.23.9.tgz",
+ "integrity": "sha512-A7clW3a0aSjm3ONU9o2HAILSegJCYlEZmOhmBRReVtIpY/Z/p7yIZ+wR41Z+UipwdGuqwtID/V/dOdZXjwi9gQ==",
"dev": true,
"peer": true,
"requires": {
- "@babel/helper-module-imports": "^7.21.4",
- "@babel/helper-plugin-utils": "^7.20.2",
- "babel-plugin-polyfill-corejs2": "^0.3.3",
- "babel-plugin-polyfill-corejs3": "^0.6.0",
- "babel-plugin-polyfill-regenerator": "^0.4.1",
- "semver": "^6.3.0"
+ "@babel/helper-module-imports": "^7.22.15",
+ "@babel/helper-plugin-utils": "^7.22.5",
+ "babel-plugin-polyfill-corejs2": "^0.4.8",
+ "babel-plugin-polyfill-corejs3": "^0.9.0",
+ "babel-plugin-polyfill-regenerator": "^0.5.5",
+ "semver": "^6.3.1"
},
"dependencies": {
"semver": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
- "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
"dev": true,
"peer": true
}
}
},
"@babel/plugin-transform-shorthand-properties": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.18.6.tgz",
- "integrity": "sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.23.3.tgz",
+ "integrity": "sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg==",
"dev": true,
"peer": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.18.6"
+ "@babel/helper-plugin-utils": "^7.22.5"
}
},
"@babel/plugin-transform-spread": {
- "version": "7.20.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.20.7.tgz",
- "integrity": "sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.23.3.tgz",
+ "integrity": "sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==",
"dev": true,
"peer": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.20.2",
- "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0"
+ "@babel/helper-plugin-utils": "^7.22.5",
+ "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5"
}
},
"@babel/plugin-transform-sticky-regex": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.18.6.tgz",
- "integrity": "sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.23.3.tgz",
+ "integrity": "sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg==",
"dev": true,
"peer": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.18.6"
+ "@babel/helper-plugin-utils": "^7.22.5"
}
},
"@babel/plugin-transform-template-literals": {
- "version": "7.18.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.9.tgz",
- "integrity": "sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.23.3.tgz",
+ "integrity": "sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==",
"dev": true,
"peer": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.18.9"
+ "@babel/helper-plugin-utils": "^7.22.5"
}
},
"@babel/plugin-transform-typeof-symbol": {
- "version": "7.18.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.9.tgz",
- "integrity": "sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.23.3.tgz",
+ "integrity": "sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ==",
"dev": true,
"peer": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.18.9"
+ "@babel/helper-plugin-utils": "^7.22.5"
}
},
"@babel/plugin-transform-typescript": {
- "version": "7.21.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.21.3.tgz",
- "integrity": "sha512-RQxPz6Iqt8T0uw/WsJNReuBpWpBqs/n7mNo18sKLoTbMp+UrEekhH+pKSVC7gWz+DNjo9gryfV8YzCiT45RgMw==",
+ "version": "7.23.6",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.23.6.tgz",
+ "integrity": "sha512-6cBG5mBvUu4VUD04OHKnYzbuHNP8huDsD3EDqqpIpsswTDoqHCjLoHb6+QgsV1WsT2nipRqCPgxD3LXnEO7XfA==",
"dev": true,
"peer": true,
"requires": {
- "@babel/helper-annotate-as-pure": "^7.18.6",
- "@babel/helper-create-class-features-plugin": "^7.21.0",
- "@babel/helper-plugin-utils": "^7.20.2",
- "@babel/plugin-syntax-typescript": "^7.20.0"
+ "@babel/helper-annotate-as-pure": "^7.22.5",
+ "@babel/helper-create-class-features-plugin": "^7.23.6",
+ "@babel/helper-plugin-utils": "^7.22.5",
+ "@babel/plugin-syntax-typescript": "^7.23.3"
}
},
"@babel/plugin-transform-unicode-escapes": {
- "version": "7.21.5",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.21.5.tgz",
- "integrity": "sha512-LYm/gTOwZqsYohlvFUe/8Tujz75LqqVC2w+2qPHLR+WyWHGCZPN1KBpJCJn+4Bk4gOkQy/IXKIge6az5MqwlOg==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.23.3.tgz",
+ "integrity": "sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q==",
+ "dev": true,
+ "peer": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.22.5"
+ }
+ },
+ "@babel/plugin-transform-unicode-property-regex": {
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.23.3.tgz",
+ "integrity": "sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA==",
"dev": true,
"peer": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.21.5"
+ "@babel/helper-create-regexp-features-plugin": "^7.22.15",
+ "@babel/helper-plugin-utils": "^7.22.5"
}
},
"@babel/plugin-transform-unicode-regex": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.18.6.tgz",
- "integrity": "sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.23.3.tgz",
+ "integrity": "sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw==",
"dev": true,
"peer": true,
"requires": {
- "@babel/helper-create-regexp-features-plugin": "^7.18.6",
- "@babel/helper-plugin-utils": "^7.18.6"
+ "@babel/helper-create-regexp-features-plugin": "^7.22.15",
+ "@babel/helper-plugin-utils": "^7.22.5"
+ }
+ },
+ "@babel/plugin-transform-unicode-sets-regex": {
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.23.3.tgz",
+ "integrity": "sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw==",
+ "dev": true,
+ "peer": true,
+ "requires": {
+ "@babel/helper-create-regexp-features-plugin": "^7.22.15",
+ "@babel/helper-plugin-utils": "^7.22.5"
}
},
"@babel/preset-env": {
- "version": "7.21.5",
- "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.21.5.tgz",
- "integrity": "sha512-wH00QnTTldTbf/IefEVyChtRdw5RJvODT/Vb4Vcxq1AZvtXj6T0YeX0cAcXhI6/BdGuiP3GcNIL4OQbI2DVNxg==",
- "dev": true,
- "peer": true,
- "requires": {
- "@babel/compat-data": "^7.21.5",
- "@babel/helper-compilation-targets": "^7.21.5",
- "@babel/helper-plugin-utils": "^7.21.5",
- "@babel/helper-validator-option": "^7.21.0",
- "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.18.6",
- "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.20.7",
- "@babel/plugin-proposal-async-generator-functions": "^7.20.7",
- "@babel/plugin-proposal-class-properties": "^7.18.6",
- "@babel/plugin-proposal-class-static-block": "^7.21.0",
- "@babel/plugin-proposal-dynamic-import": "^7.18.6",
- "@babel/plugin-proposal-export-namespace-from": "^7.18.9",
- "@babel/plugin-proposal-json-strings": "^7.18.6",
- "@babel/plugin-proposal-logical-assignment-operators": "^7.20.7",
- "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
- "@babel/plugin-proposal-numeric-separator": "^7.18.6",
- "@babel/plugin-proposal-object-rest-spread": "^7.20.7",
- "@babel/plugin-proposal-optional-catch-binding": "^7.18.6",
- "@babel/plugin-proposal-optional-chaining": "^7.21.0",
- "@babel/plugin-proposal-private-methods": "^7.18.6",
- "@babel/plugin-proposal-private-property-in-object": "^7.21.0",
- "@babel/plugin-proposal-unicode-property-regex": "^7.18.6",
+ "version": "7.23.9",
+ "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.23.9.tgz",
+ "integrity": "sha512-3kBGTNBBk9DQiPoXYS0g0BYlwTQYUTifqgKTjxUwEUkduRT2QOa0FPGBJ+NROQhGyYO5BuTJwGvBnqKDykac6A==",
+ "dev": true,
+ "peer": true,
+ "requires": {
+ "@babel/compat-data": "^7.23.5",
+ "@babel/helper-compilation-targets": "^7.23.6",
+ "@babel/helper-plugin-utils": "^7.22.5",
+ "@babel/helper-validator-option": "^7.23.5",
+ "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.23.3",
+ "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.23.3",
+ "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.23.7",
+ "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2",
"@babel/plugin-syntax-async-generators": "^7.8.4",
"@babel/plugin-syntax-class-properties": "^7.12.13",
"@babel/plugin-syntax-class-static-block": "^7.14.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-export-namespace-from": "^7.8.3",
- "@babel/plugin-syntax-import-assertions": "^7.20.0",
+ "@babel/plugin-syntax-import-assertions": "^7.23.3",
+ "@babel/plugin-syntax-import-attributes": "^7.23.3",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/plugin-syntax-json-strings": "^7.8.3",
"@babel/plugin-syntax-logical-assignment-operators": "^7.10.4",
@@ -22953,97 +22244,111 @@
"@babel/plugin-syntax-optional-chaining": "^7.8.3",
"@babel/plugin-syntax-private-property-in-object": "^7.14.5",
"@babel/plugin-syntax-top-level-await": "^7.14.5",
- "@babel/plugin-transform-arrow-functions": "^7.21.5",
- "@babel/plugin-transform-async-to-generator": "^7.20.7",
- "@babel/plugin-transform-block-scoped-functions": "^7.18.6",
- "@babel/plugin-transform-block-scoping": "^7.21.0",
- "@babel/plugin-transform-classes": "^7.21.0",
- "@babel/plugin-transform-computed-properties": "^7.21.5",
- "@babel/plugin-transform-destructuring": "^7.21.3",
- "@babel/plugin-transform-dotall-regex": "^7.18.6",
- "@babel/plugin-transform-duplicate-keys": "^7.18.9",
- "@babel/plugin-transform-exponentiation-operator": "^7.18.6",
- "@babel/plugin-transform-for-of": "^7.21.5",
- "@babel/plugin-transform-function-name": "^7.18.9",
- "@babel/plugin-transform-literals": "^7.18.9",
- "@babel/plugin-transform-member-expression-literals": "^7.18.6",
- "@babel/plugin-transform-modules-amd": "^7.20.11",
- "@babel/plugin-transform-modules-commonjs": "^7.21.5",
- "@babel/plugin-transform-modules-systemjs": "^7.20.11",
- "@babel/plugin-transform-modules-umd": "^7.18.6",
- "@babel/plugin-transform-named-capturing-groups-regex": "^7.20.5",
- "@babel/plugin-transform-new-target": "^7.18.6",
- "@babel/plugin-transform-object-super": "^7.18.6",
- "@babel/plugin-transform-parameters": "^7.21.3",
- "@babel/plugin-transform-property-literals": "^7.18.6",
- "@babel/plugin-transform-regenerator": "^7.21.5",
- "@babel/plugin-transform-reserved-words": "^7.18.6",
- "@babel/plugin-transform-shorthand-properties": "^7.18.6",
- "@babel/plugin-transform-spread": "^7.20.7",
- "@babel/plugin-transform-sticky-regex": "^7.18.6",
- "@babel/plugin-transform-template-literals": "^7.18.9",
- "@babel/plugin-transform-typeof-symbol": "^7.18.9",
- "@babel/plugin-transform-unicode-escapes": "^7.21.5",
- "@babel/plugin-transform-unicode-regex": "^7.18.6",
- "@babel/preset-modules": "^0.1.5",
- "@babel/types": "^7.21.5",
- "babel-plugin-polyfill-corejs2": "^0.3.3",
- "babel-plugin-polyfill-corejs3": "^0.6.0",
- "babel-plugin-polyfill-regenerator": "^0.4.1",
- "core-js-compat": "^3.25.1",
- "semver": "^6.3.0"
+ "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6",
+ "@babel/plugin-transform-arrow-functions": "^7.23.3",
+ "@babel/plugin-transform-async-generator-functions": "^7.23.9",
+ "@babel/plugin-transform-async-to-generator": "^7.23.3",
+ "@babel/plugin-transform-block-scoped-functions": "^7.23.3",
+ "@babel/plugin-transform-block-scoping": "^7.23.4",
+ "@babel/plugin-transform-class-properties": "^7.23.3",
+ "@babel/plugin-transform-class-static-block": "^7.23.4",
+ "@babel/plugin-transform-classes": "^7.23.8",
+ "@babel/plugin-transform-computed-properties": "^7.23.3",
+ "@babel/plugin-transform-destructuring": "^7.23.3",
+ "@babel/plugin-transform-dotall-regex": "^7.23.3",
+ "@babel/plugin-transform-duplicate-keys": "^7.23.3",
+ "@babel/plugin-transform-dynamic-import": "^7.23.4",
+ "@babel/plugin-transform-exponentiation-operator": "^7.23.3",
+ "@babel/plugin-transform-export-namespace-from": "^7.23.4",
+ "@babel/plugin-transform-for-of": "^7.23.6",
+ "@babel/plugin-transform-function-name": "^7.23.3",
+ "@babel/plugin-transform-json-strings": "^7.23.4",
+ "@babel/plugin-transform-literals": "^7.23.3",
+ "@babel/plugin-transform-logical-assignment-operators": "^7.23.4",
+ "@babel/plugin-transform-member-expression-literals": "^7.23.3",
+ "@babel/plugin-transform-modules-amd": "^7.23.3",
+ "@babel/plugin-transform-modules-commonjs": "^7.23.3",
+ "@babel/plugin-transform-modules-systemjs": "^7.23.9",
+ "@babel/plugin-transform-modules-umd": "^7.23.3",
+ "@babel/plugin-transform-named-capturing-groups-regex": "^7.22.5",
+ "@babel/plugin-transform-new-target": "^7.23.3",
+ "@babel/plugin-transform-nullish-coalescing-operator": "^7.23.4",
+ "@babel/plugin-transform-numeric-separator": "^7.23.4",
+ "@babel/plugin-transform-object-rest-spread": "^7.23.4",
+ "@babel/plugin-transform-object-super": "^7.23.3",
+ "@babel/plugin-transform-optional-catch-binding": "^7.23.4",
+ "@babel/plugin-transform-optional-chaining": "^7.23.4",
+ "@babel/plugin-transform-parameters": "^7.23.3",
+ "@babel/plugin-transform-private-methods": "^7.23.3",
+ "@babel/plugin-transform-private-property-in-object": "^7.23.4",
+ "@babel/plugin-transform-property-literals": "^7.23.3",
+ "@babel/plugin-transform-regenerator": "^7.23.3",
+ "@babel/plugin-transform-reserved-words": "^7.23.3",
+ "@babel/plugin-transform-shorthand-properties": "^7.23.3",
+ "@babel/plugin-transform-spread": "^7.23.3",
+ "@babel/plugin-transform-sticky-regex": "^7.23.3",
+ "@babel/plugin-transform-template-literals": "^7.23.3",
+ "@babel/plugin-transform-typeof-symbol": "^7.23.3",
+ "@babel/plugin-transform-unicode-escapes": "^7.23.3",
+ "@babel/plugin-transform-unicode-property-regex": "^7.23.3",
+ "@babel/plugin-transform-unicode-regex": "^7.23.3",
+ "@babel/plugin-transform-unicode-sets-regex": "^7.23.3",
+ "@babel/preset-modules": "0.1.6-no-external-plugins",
+ "babel-plugin-polyfill-corejs2": "^0.4.8",
+ "babel-plugin-polyfill-corejs3": "^0.9.0",
+ "babel-plugin-polyfill-regenerator": "^0.5.5",
+ "core-js-compat": "^3.31.0",
+ "semver": "^6.3.1"
},
"dependencies": {
"semver": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
- "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
"dev": true,
"peer": true
}
}
},
"@babel/preset-modules": {
- "version": "0.1.5",
- "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz",
- "integrity": "sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==",
+ "version": "0.1.6-no-external-plugins",
+ "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz",
+ "integrity": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==",
"dev": true,
"peer": true,
"requires": {
"@babel/helper-plugin-utils": "^7.0.0",
- "@babel/plugin-proposal-unicode-property-regex": "^7.4.4",
- "@babel/plugin-transform-dotall-regex": "^7.4.4",
"@babel/types": "^7.4.4",
"esutils": "^2.0.2"
}
},
"@babel/preset-react": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.18.6.tgz",
- "integrity": "sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.23.3.tgz",
+ "integrity": "sha512-tbkHOS9axH6Ysf2OUEqoSZ6T3Fa2SrNH6WTWSPBboxKzdxNc9qOICeLXkNG0ZEwbQ1HY8liwOce4aN/Ceyuq6w==",
"dev": true,
"peer": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.18.6",
- "@babel/helper-validator-option": "^7.18.6",
- "@babel/plugin-transform-react-display-name": "^7.18.6",
- "@babel/plugin-transform-react-jsx": "^7.18.6",
- "@babel/plugin-transform-react-jsx-development": "^7.18.6",
- "@babel/plugin-transform-react-pure-annotations": "^7.18.6"
+ "@babel/helper-plugin-utils": "^7.22.5",
+ "@babel/helper-validator-option": "^7.22.15",
+ "@babel/plugin-transform-react-display-name": "^7.23.3",
+ "@babel/plugin-transform-react-jsx": "^7.22.15",
+ "@babel/plugin-transform-react-jsx-development": "^7.22.5",
+ "@babel/plugin-transform-react-pure-annotations": "^7.23.3"
}
},
"@babel/preset-typescript": {
- "version": "7.21.5",
- "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.21.5.tgz",
- "integrity": "sha512-iqe3sETat5EOrORXiQ6rWfoOg2y68Cs75B9wNxdPW4kixJxh7aXQE1KPdWLDniC24T/6dSnguF33W9j/ZZQcmA==",
+ "version": "7.23.3",
+ "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.23.3.tgz",
+ "integrity": "sha512-17oIGVlqz6CchO9RFYn5U6ZpWRZIngayYCtrPRSgANSwC2V1Jb+iP74nVxzzXJte8b8BYxrL1yY96xfhTBrNNQ==",
"dev": true,
"peer": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.21.5",
- "@babel/helper-validator-option": "^7.21.0",
- "@babel/plugin-syntax-jsx": "^7.21.4",
- "@babel/plugin-transform-modules-commonjs": "^7.21.5",
- "@babel/plugin-transform-typescript": "^7.21.3"
+ "@babel/helper-plugin-utils": "^7.22.5",
+ "@babel/helper-validator-option": "^7.22.15",
+ "@babel/plugin-syntax-jsx": "^7.23.3",
+ "@babel/plugin-transform-modules-commonjs": "^7.23.3",
+ "@babel/plugin-transform-typescript": "^7.23.3"
}
},
"@babel/regjsgen": {
@@ -23054,48 +22359,55 @@
"peer": true
},
"@babel/runtime": {
- "version": "7.21.5",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.5.tgz",
- "integrity": "sha512-8jI69toZqqcsnqGGqwGS4Qb1VwLOEp4hz+CXPywcvjs60u3B4Pom/U/7rm4W8tMOYEB+E9wgD0mW1l3r8qlI9Q==",
+ "version": "7.23.9",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.9.tgz",
+ "integrity": "sha512-0CX6F+BI2s9dkUqr08KFrAIZgNFj75rdBU/DjCyYLIaV/quFjkk6T+EJ2LkZHyZTbEV4L5p97mNkUsHl2wLFAw==",
"dev": true,
"requires": {
- "regenerator-runtime": "^0.13.11"
+ "regenerator-runtime": "^0.14.0"
}
},
"@babel/template": {
- "version": "7.20.7",
- "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.20.7.tgz",
- "integrity": "sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==",
+ "version": "7.23.9",
+ "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.23.9.tgz",
+ "integrity": "sha512-+xrD2BWLpvHKNmX2QbpdpsBaWnRxahMwJjO+KZk2JOElj5nSmKezyS1B4u+QbHMTX69t4ukm6hh9lsYQ7GHCKA==",
"requires": {
- "@babel/code-frame": "^7.18.6",
- "@babel/parser": "^7.20.7",
- "@babel/types": "^7.20.7"
+ "@babel/code-frame": "^7.23.5",
+ "@babel/parser": "^7.23.9",
+ "@babel/types": "^7.23.9"
}
},
"@babel/traverse": {
- "version": "7.21.5",
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.21.5.tgz",
- "integrity": "sha512-AhQoI3YjWi6u/y/ntv7k48mcrCXmus0t79J9qPNlk/lAsFlCiJ047RmbfMOawySTHtywXhbXgpx/8nXMYd+oFw==",
- "requires": {
- "@babel/code-frame": "^7.21.4",
- "@babel/generator": "^7.21.5",
- "@babel/helper-environment-visitor": "^7.21.5",
- "@babel/helper-function-name": "^7.21.0",
- "@babel/helper-hoist-variables": "^7.18.6",
- "@babel/helper-split-export-declaration": "^7.18.6",
- "@babel/parser": "^7.21.5",
- "@babel/types": "^7.21.5",
- "debug": "^4.1.0",
+ "version": "7.23.9",
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.9.tgz",
+ "integrity": "sha512-I/4UJ9vs90OkBtY6iiiTORVMyIhJ4kAVmsKo9KFc8UOxMeUfi2hvtIBsET5u9GizXE6/GFSuKCTNfgCswuEjRg==",
+ "requires": {
+ "@babel/code-frame": "^7.23.5",
+ "@babel/generator": "^7.23.6",
+ "@babel/helper-environment-visitor": "^7.22.20",
+ "@babel/helper-function-name": "^7.23.0",
+ "@babel/helper-hoist-variables": "^7.22.5",
+ "@babel/helper-split-export-declaration": "^7.22.6",
+ "@babel/parser": "^7.23.9",
+ "@babel/types": "^7.23.9",
+ "debug": "^4.3.1",
"globals": "^11.1.0"
+ },
+ "dependencies": {
+ "globals": {
+ "version": "11.12.0",
+ "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz",
+ "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="
+ }
}
},
"@babel/types": {
- "version": "7.21.5",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.21.5.tgz",
- "integrity": "sha512-m4AfNvVF2mVC/F7fDEdH2El3HzUg9It/XsCxZiOTTA3m3qYfcSVSbTfM6Q9xG+hYDniZssYhlXKKUMD5m8tF4Q==",
+ "version": "7.23.9",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.9.tgz",
+ "integrity": "sha512-dQjSq/7HaSjRM43FFGnv5keM2HsxpmyV1PfaSVm0nzzjwwTmjOe6J4bC8e3+pTEIgHaHj+1ZlLThRJ2auc/w1Q==",
"requires": {
- "@babel/helper-string-parser": "^7.21.5",
- "@babel/helper-validator-identifier": "^7.19.1",
+ "@babel/helper-string-parser": "^7.23.4",
+ "@babel/helper-validator-identifier": "^7.22.20",
"to-fast-properties": "^2.0.0"
}
},
@@ -23120,40 +22432,6 @@
"resolve-from": "5.0.0",
"resolve-global": "1.0.0",
"yargs": "^17.0.0"
- },
- "dependencies": {
- "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,
- "requires": {
- "string-width": "^4.2.0",
- "strip-ansi": "^6.0.1",
- "wrap-ansi": "^7.0.0"
- }
- },
- "yargs": {
- "version": "17.7.2",
- "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz",
- "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==",
- "dev": true,
- "requires": {
- "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"
- }
- },
- "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
- }
}
},
"@commitlint/config-conventional": {
@@ -23173,26 +22451,6 @@
"requires": {
"@commitlint/types": "^17.8.1",
"ajv": "^8.11.0"
- },
- "dependencies": {
- "ajv": {
- "version": "8.12.0",
- "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz",
- "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==",
- "dev": true,
- "requires": {
- "fast-deep-equal": "^3.1.1",
- "json-schema-traverse": "^1.0.0",
- "require-from-string": "^2.0.2",
- "uri-js": "^4.2.2"
- }
- },
- "json-schema-traverse": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
- "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
- "dev": true
- }
}
},
"@commitlint/ensure": {
@@ -23223,57 +22481,6 @@
"requires": {
"@commitlint/types": "^17.8.1",
"chalk": "^4.1.0"
- },
- "dependencies": {
- "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,
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "dev": true,
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "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,
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "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
- },
- "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
- },
- "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,
- "requires": {
- "has-flag": "^4.0.0"
- }
- }
}
},
"@commitlint/is-ignored": {
@@ -23318,84 +22525,6 @@
"resolve-from": "^5.0.0",
"ts-node": "^10.8.1",
"typescript": "^4.6.4 || ^5.2.2"
- },
- "dependencies": {
- "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,
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "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
- },
- "chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "dev": true,
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "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,
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "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
- },
- "cosmiconfig": {
- "version": "8.3.6",
- "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.3.6.tgz",
- "integrity": "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==",
- "dev": true,
- "requires": {
- "import-fresh": "^3.3.0",
- "js-yaml": "^4.1.0",
- "parse-json": "^5.2.0",
- "path-type": "^4.0.0"
- }
- },
- "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
- },
- "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,
- "requires": {
- "argparse": "^2.0.1"
- }
- },
- "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,
- "requires": {
- "has-flag": "^4.0.0"
- }
- }
}
},
"@commitlint/message": {
@@ -23426,57 +22555,6 @@
"@commitlint/types": "^17.8.1",
"chalk": "^4.1.0",
"inquirer": "^6.5.2"
- },
- "dependencies": {
- "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,
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "dev": true,
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "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,
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "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
- },
- "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
- },
- "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,
- "requires": {
- "has-flag": "^4.0.0"
- }
- }
}
},
"@commitlint/prompt-cli": {
@@ -23501,19 +22579,6 @@
"fs-extra": "^11.0.0",
"git-raw-commits": "^2.0.11",
"minimist": "^1.2.6"
- },
- "dependencies": {
- "fs-extra": {
- "version": "11.2.0",
- "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz",
- "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==",
- "dev": true,
- "requires": {
- "graceful-fs": "^4.2.0",
- "jsonfile": "^6.0.1",
- "universalify": "^2.0.0"
- }
- }
}
},
"@commitlint/resolve-extends": {
@@ -23565,57 +22630,6 @@
"dev": true,
"requires": {
"chalk": "^4.1.0"
- },
- "dependencies": {
- "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,
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "dev": true,
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "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,
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "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
- },
- "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
- },
- "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,
- "requires": {
- "has-flag": "^4.0.0"
- }
- }
}
},
"@cspotcode/source-map-support": {
@@ -23640,9 +22654,9 @@
}
},
"@csstools/normalize.css": {
- "version": "12.0.0",
- "resolved": "https://registry.npmjs.org/@csstools/normalize.css/-/normalize.css-12.0.0.tgz",
- "integrity": "sha512-M0qqxAcwCsIVfpFQSlGN5XjXWu8l5JDZN+fPt1LeW5SZexQTgnaEvgXAY+CeygRw0EeppWHi12JxESWiWrB0Sg==",
+ "version": "12.1.1",
+ "resolved": "https://registry.npmjs.org/@csstools/normalize.css/-/normalize.css-12.1.1.tgz",
+ "integrity": "sha512-YAYeJ+Xqh7fUou1d1j9XHl44BmsuThiTr4iNrgCQ3J27IbhXsxXDGZ1cXv8Qvs99d4rBbLiSKy3+WZiet32PcQ==",
"dev": true,
"peer": true
},
@@ -23815,22 +22829,6 @@
"find-root": "^1.1.0",
"source-map": "^0.5.7",
"stylis": "4.2.0"
- },
- "dependencies": {
- "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,
- "peer": true
- },
- "source-map": {
- "version": "0.5.7",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
- "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==",
- "dev": true,
- "peer": true
- }
}
},
"@emotion/cache": {
@@ -23872,16 +22870,16 @@
"peer": true
},
"@emotion/react": {
- "version": "11.11.0",
- "resolved": "https://registry.npmjs.org/@emotion/react/-/react-11.11.0.tgz",
- "integrity": "sha512-ZSK3ZJsNkwfjT3JpDAWJZlrGD81Z3ytNDsxw1LKq1o+xkmO5pnWfr6gmCC8gHEFf3nSSX/09YrG67jybNPxSUw==",
+ "version": "11.11.3",
+ "resolved": "https://registry.npmjs.org/@emotion/react/-/react-11.11.3.tgz",
+ "integrity": "sha512-Cnn0kuq4DoONOMcnoVsTOR8E+AdnKFf//6kUWc4LCdnxj31pZWn7rIULd6Y7/Js1PiPHzn7SKCM9vB/jBni8eA==",
"dev": true,
"peer": true,
"requires": {
"@babel/runtime": "^7.18.3",
"@emotion/babel-plugin": "^11.11.0",
"@emotion/cache": "^11.11.0",
- "@emotion/serialize": "^1.1.2",
+ "@emotion/serialize": "^1.1.3",
"@emotion/use-insertion-effect-with-fallbacks": "^1.0.1",
"@emotion/utils": "^1.2.1",
"@emotion/weak-memoize": "^0.3.1",
@@ -23889,9 +22887,9 @@
}
},
"@emotion/serialize": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-1.1.2.tgz",
- "integrity": "sha512-zR6a/fkFP4EAcCMQtLOhIgpprZOwNmCldtpaISpvz348+DP4Mz8ZoKaGGCQpbzepNIUWbq4w6hNZkwDyKoS+HA==",
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-1.1.3.tgz",
+ "integrity": "sha512-iD4D6QVZFDhcbH0RAG1uVu1CwVLMWUkCvAqqlewO/rxf8+87yIBAlt4+AxMiiKPLs5hFc0owNk/sLLAOROw3cA==",
"dev": true,
"peer": true,
"requires": {
@@ -23985,34 +22983,22 @@
"strip-json-comments": "^3.1.1"
},
"dependencies": {
- "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
- },
- "globals": {
- "version": "13.24.0",
- "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz",
- "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==",
- "dev": true,
- "requires": {
- "type-fest": "^0.20.2"
- }
- },
- "js-yaml": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
- "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
+ "ajv": {
+ "version": "6.12.6",
+ "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
+ "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
"dev": true,
"requires": {
- "argparse": "^2.0.1"
+ "fast-deep-equal": "^3.1.1",
+ "fast-json-stable-stringify": "^2.0.0",
+ "json-schema-traverse": "^0.4.1",
+ "uri-js": "^4.2.2"
}
},
- "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==",
+ "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
}
}
@@ -24051,6 +23037,71 @@
"integrity": "sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==",
"dev": true
},
+ "@isaacs/cliui": {
+ "version": "8.0.2",
+ "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz",
+ "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==",
+ "dev": true,
+ "peer": true,
+ "requires": {
+ "string-width": "^5.1.2",
+ "string-width-cjs": "npm:string-width@^4.2.0",
+ "strip-ansi": "^7.0.1",
+ "strip-ansi-cjs": "npm:strip-ansi@^6.0.1",
+ "wrap-ansi": "^8.1.0",
+ "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0"
+ },
+ "dependencies": {
+ "ansi-regex": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz",
+ "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==",
+ "dev": true,
+ "peer": true
+ },
+ "ansi-styles": {
+ "version": "6.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz",
+ "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==",
+ "dev": true,
+ "peer": true
+ },
+ "string-width": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz",
+ "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==",
+ "dev": true,
+ "peer": true,
+ "requires": {
+ "eastasianwidth": "^0.2.0",
+ "emoji-regex": "^9.2.2",
+ "strip-ansi": "^7.0.1"
+ }
+ },
+ "strip-ansi": {
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz",
+ "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
+ "dev": true,
+ "peer": true,
+ "requires": {
+ "ansi-regex": "^6.0.1"
+ }
+ },
+ "wrap-ansi": {
+ "version": "8.1.0",
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz",
+ "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==",
+ "dev": true,
+ "peer": true,
+ "requires": {
+ "ansi-styles": "^6.1.0",
+ "string-width": "^5.0.1",
+ "strip-ansi": "^7.0.1"
+ }
+ }
+ }
+ },
"@istanbuljs/load-nyc-config": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz",
@@ -24063,10 +23114,13 @@
"resolve-from": "^5.0.0"
},
"dependencies": {
- "camelcase": {
- "version": "5.3.1",
- "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz",
- "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg=="
+ "argparse": {
+ "version": "1.0.10",
+ "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
+ "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
+ "requires": {
+ "sprintf-js": "~1.0.2"
+ }
},
"find-up": {
"version": "4.1.0",
@@ -24077,6 +23131,15 @@
"path-exists": "^4.0.0"
}
},
+ "js-yaml": {
+ "version": "3.14.1",
+ "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz",
+ "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==",
+ "requires": {
+ "argparse": "^1.0.7",
+ "esprima": "^4.0.0"
+ }
+ },
"locate-path": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
@@ -24119,51 +23182,6 @@
"jest-message-util": "^27.5.1",
"jest-util": "^27.5.1",
"slash": "^3.0.0"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "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==",
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "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=="
- },
- "has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
- },
- "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==",
- "requires": {
- "has-flag": "^4.0.0"
- }
- }
}
},
"@jest/core": {
@@ -24201,48 +23219,18 @@
"strip-ansi": "^6.0.0"
},
"dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "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==",
+ "ansi-escapes": {
+ "version": "4.3.2",
+ "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz",
+ "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==",
"requires": {
- "color-name": "~1.1.4"
+ "type-fest": "^0.21.3"
}
},
- "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=="
- },
- "has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
- },
- "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==",
- "requires": {
- "has-flag": "^4.0.0"
- }
+ "type-fest": {
+ "version": "0.21.3",
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz",
+ "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w=="
}
}
},
@@ -24312,53 +23300,10 @@
"v8-to-istanbul": "^8.1.0"
},
"dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "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==",
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "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=="
- },
- "has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
- },
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
- },
- "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==",
- "requires": {
- "has-flag": "^4.0.0"
- }
}
}
},
@@ -24433,53 +23378,10 @@
"write-file-atomic": "^3.0.0"
},
"dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "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==",
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "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=="
- },
- "has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
- },
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
- },
- "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==",
- "requires": {
- "has-flag": "^4.0.0"
- }
}
}
},
@@ -24493,51 +23395,6 @@
"@types/node": "*",
"@types/yargs": "^16.0.0",
"chalk": "^4.0.0"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "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==",
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "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=="
- },
- "has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
- },
- "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==",
- "requires": {
- "has-flag": "^4.0.0"
- }
- }
}
},
"@jridgewell/gen-mapping": {
@@ -24551,9 +23408,9 @@
}
},
"@jridgewell/resolve-uri": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz",
- "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w=="
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz",
+ "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA=="
},
"@jridgewell/set-array": {
"version": "1.1.2",
@@ -24561,9 +23418,9 @@
"integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw=="
},
"@jridgewell/source-map": {
- "version": "0.3.3",
- "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.3.tgz",
- "integrity": "sha512-b+fsZXeLYi9fEULmfBrhxn4IrPlINf8fiNarzTof004v3lFdntdwa9PF7vFJqm3mg7s+ScJMxXaE3Acp1irZcg==",
+ "version": "0.3.5",
+ "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.5.tgz",
+ "integrity": "sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==",
"dev": true,
"peer": true,
"requires": {
@@ -24577,19 +23434,12 @@
"integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg=="
},
"@jridgewell/trace-mapping": {
- "version": "0.3.18",
- "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz",
- "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==",
+ "version": "0.3.22",
+ "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.22.tgz",
+ "integrity": "sha512-Wf963MzWtA2sjrNt+g18IAln9lKnlRp+K2eH4jjIoF1wYeq3aMREpG09xhlhdzS0EjwU7qmUJYangWa+151vZw==",
"requires": {
- "@jridgewell/resolve-uri": "3.1.0",
- "@jridgewell/sourcemap-codec": "1.4.14"
- },
- "dependencies": {
- "@jridgewell/sourcemap-codec": {
- "version": "1.4.14",
- "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz",
- "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw=="
- }
+ "@jridgewell/resolve-uri": "^3.1.0",
+ "@jridgewell/sourcemap-codec": "^1.4.14"
}
},
"@leichtgewicht/ip-codec": {
@@ -24599,142 +23449,6 @@
"dev": true,
"peer": true
},
- "@mui/base": {
- "version": "5.0.0-alpha.128",
- "resolved": "https://registry.npmjs.org/@mui/base/-/base-5.0.0-alpha.128.tgz",
- "integrity": "sha512-wub3wxNN+hUp8hzilMlXX3sZrPo75vsy1cXEQpqdTfIFlE9HprP1jlulFiPg5tfPst2OKmygXr2hhmgvAKRrzQ==",
- "dev": true,
- "peer": true,
- "requires": {
- "@babel/runtime": "^7.21.0",
- "@emotion/is-prop-valid": "^1.2.0",
- "@mui/types": "^7.2.4",
- "@mui/utils": "^5.12.3",
- "@popperjs/core": "^2.11.7",
- "clsx": "^1.2.1",
- "prop-types": "^15.8.1",
- "react-is": "^18.2.0"
- },
- "dependencies": {
- "react-is": {
- "version": "18.2.0",
- "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz",
- "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==",
- "dev": true,
- "peer": true
- }
- }
- },
- "@mui/core-downloads-tracker": {
- "version": "5.12.3",
- "resolved": "https://registry.npmjs.org/@mui/core-downloads-tracker/-/core-downloads-tracker-5.12.3.tgz",
- "integrity": "sha512-yiJZ+knaknPHuRKhRk4L6XiwppwkAahVal3LuYpvBH7GkA2g+D9WLEXOEnNYtVFUggyKf6fWGLGnx0iqzkU5YA==",
- "dev": true,
- "peer": true
- },
- "@mui/material": {
- "version": "5.12.3",
- "resolved": "https://registry.npmjs.org/@mui/material/-/material-5.12.3.tgz",
- "integrity": "sha512-xNmKlrEN4HsTaKFNLZfc7ie7CXx2YqEeO//hsXZx2p3MGtDdeMr2sV3jC4hsFs57RhQlF79weY7uVvC8xSuVbg==",
- "dev": true,
- "peer": true,
- "requires": {
- "@babel/runtime": "^7.21.0",
- "@mui/base": "5.0.0-alpha.128",
- "@mui/core-downloads-tracker": "^5.12.3",
- "@mui/system": "^5.12.3",
- "@mui/types": "^7.2.4",
- "@mui/utils": "^5.12.3",
- "@types/react-transition-group": "^4.4.5",
- "clsx": "^1.2.1",
- "csstype": "^3.1.2",
- "prop-types": "^15.8.1",
- "react-is": "^18.2.0",
- "react-transition-group": "^4.4.5"
- },
- "dependencies": {
- "react-is": {
- "version": "18.2.0",
- "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz",
- "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==",
- "dev": true,
- "peer": true
- }
- }
- },
- "@mui/private-theming": {
- "version": "5.12.3",
- "resolved": "https://registry.npmjs.org/@mui/private-theming/-/private-theming-5.12.3.tgz",
- "integrity": "sha512-o1e7Z1Bp27n4x2iUHhegV4/Jp6H3T6iBKHJdLivS5GbwsuAE/5l4SnZ+7+K+e5u9TuhwcAKZLkjvqzkDe8zqfA==",
- "dev": true,
- "peer": true,
- "requires": {
- "@babel/runtime": "^7.21.0",
- "@mui/utils": "^5.12.3",
- "prop-types": "^15.8.1"
- }
- },
- "@mui/styled-engine": {
- "version": "5.12.3",
- "resolved": "https://registry.npmjs.org/@mui/styled-engine/-/styled-engine-5.12.3.tgz",
- "integrity": "sha512-AhZtiRyT8Bjr7fufxE/mLS+QJ3LxwX1kghIcM2B2dvJzSSg9rnIuXDXM959QfUVIM3C8U4x3mgVoPFMQJvc4/g==",
- "dev": true,
- "peer": true,
- "requires": {
- "@babel/runtime": "^7.21.0",
- "@emotion/cache": "^11.10.8",
- "csstype": "^3.1.2",
- "prop-types": "^15.8.1"
- }
- },
- "@mui/system": {
- "version": "5.12.3",
- "resolved": "https://registry.npmjs.org/@mui/system/-/system-5.12.3.tgz",
- "integrity": "sha512-JB/6sypHqeJCqwldWeQ1MKkijH829EcZAKKizxbU2MJdxGG5KSwZvTBa5D9qiJUA1hJFYYupjiuy9ZdJt6rV6w==",
- "dev": true,
- "peer": true,
- "requires": {
- "@babel/runtime": "^7.21.0",
- "@mui/private-theming": "^5.12.3",
- "@mui/styled-engine": "^5.12.3",
- "@mui/types": "^7.2.4",
- "@mui/utils": "^5.12.3",
- "clsx": "^1.2.1",
- "csstype": "^3.1.2",
- "prop-types": "^15.8.1"
- }
- },
- "@mui/types": {
- "version": "7.2.4",
- "resolved": "https://registry.npmjs.org/@mui/types/-/types-7.2.4.tgz",
- "integrity": "sha512-LBcwa8rN84bKF+f5sDyku42w1NTxaPgPyYKODsh01U1fVstTClbUoSA96oyRBnSNyEiAVjKm6Gwx9vjR+xyqHA==",
- "dev": true,
- "peer": true,
- "requires": {}
- },
- "@mui/utils": {
- "version": "5.12.3",
- "resolved": "https://registry.npmjs.org/@mui/utils/-/utils-5.12.3.tgz",
- "integrity": "sha512-D/Z4Ub3MRl7HiUccid7sQYclTr24TqUAQFFlxHQF8FR177BrCTQ0JJZom7EqYjZCdXhwnSkOj2ph685MSKNtIA==",
- "dev": true,
- "peer": true,
- "requires": {
- "@babel/runtime": "^7.21.0",
- "@types/prop-types": "^15.7.5",
- "@types/react-is": "^16.7.1 || ^17.0.0",
- "prop-types": "^15.8.1",
- "react-is": "^18.2.0"
- },
- "dependencies": {
- "react-is": {
- "version": "18.2.0",
- "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz",
- "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==",
- "dev": true,
- "peer": true
- }
- }
- },
"@nicolo-ribaudo/eslint-scope-5-internals": {
"version": "5.1.1-v1",
"resolved": "https://registry.npmjs.org/@nicolo-ribaudo/eslint-scope-5-internals/-/eslint-scope-5-internals-5.1.1-v1.tgz",
@@ -24792,18 +23506,26 @@
}
},
"@phenomnomnominal/tsquery": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/@phenomnomnominal/tsquery/-/tsquery-4.2.0.tgz",
- "integrity": "sha512-hR2U3uVcrrdkuG30ItQ+uFDs4ncZAybxWG0OjTE8ptPzVoU7GVeXpy+vMU8zX9EbmjGeITPw/su5HjYQyAH8bA==",
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/@phenomnomnominal/tsquery/-/tsquery-5.0.1.tgz",
+ "integrity": "sha512-3nVv+e2FQwsW8Aw6qTU6f+1rfcJ3hrcnvH/mu9i8YhxO+9sqbOfpL8m6PbET5+xKOlz/VSbp0RoYWYCtIsnmuA==",
"dev": true,
"requires": {
- "esquery": "^1.0.1"
+ "esquery": "^1.4.0"
}
},
+ "@pkgjs/parseargs": {
+ "version": "0.11.0",
+ "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz",
+ "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==",
+ "dev": true,
+ "optional": true,
+ "peer": true
+ },
"@pmmmwh/react-refresh-webpack-plugin": {
- "version": "0.5.10",
- "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.10.tgz",
- "integrity": "sha512-j0Ya0hCFZPd4x40qLzbhGsh9TMtdb+CJQiso+WxLOPNasohq9cc5SNUcwsZaRH6++Xh91Xkm/xHCkuIiIu0LUA==",
+ "version": "0.5.11",
+ "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.11.tgz",
+ "integrity": "sha512-7j/6vdTym0+qZ6u4XbSAxrWBGYSdCfTzySkj7WAFgDLmSyWlOrWvpyzxlFh5jtw9dn0oL/jtW+06XfFiisN3JQ==",
"dev": true,
"peer": true,
"requires": {
@@ -24816,19 +23538,21 @@
"loader-utils": "^2.0.4",
"schema-utils": "^3.0.0",
"source-map": "^0.7.3"
+ },
+ "dependencies": {
+ "source-map": {
+ "version": "0.7.4",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz",
+ "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==",
+ "dev": true,
+ "peer": true
+ }
}
},
- "@popperjs/core": {
- "version": "2.11.7",
- "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.7.tgz",
- "integrity": "sha512-Cr4OjIkipTtcXKjAsm8agyleBuDHvxzeBoa1v543lbv1YaIwQjESsVcmjiWiPEbC1FIeHOG/Op9kdCmAmiS3Kw==",
- "dev": true,
- "peer": true
- },
"@reduxjs/toolkit": {
- "version": "1.9.5",
- "resolved": "https://registry.npmjs.org/@reduxjs/toolkit/-/toolkit-1.9.5.tgz",
- "integrity": "sha512-Rt97jHmfTeaxL4swLRNPD/zV4OxTes4la07Xc4hetpUW/vc75t5m1ANyxG6ymnEQ2FsLQsoMlYB2vV1sO3m8tQ==",
+ "version": "1.9.7",
+ "resolved": "https://registry.npmjs.org/@reduxjs/toolkit/-/toolkit-1.9.7.tgz",
+ "integrity": "sha512-t7v8ZPxhhKgOKtU+uyJT13lu4vL7az5aFi4IdoDs/eS548edn2M8Ik9h8fxgvMjGoAUVFSt6ZC1P5cWmQ014QQ==",
"dev": true,
"peer": true,
"requires": {
@@ -24906,9 +23630,9 @@
}
},
"@rushstack/eslint-patch": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.2.0.tgz",
- "integrity": "sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg==",
+ "version": "1.7.2",
+ "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.7.2.tgz",
+ "integrity": "sha512-RbhOOTCNoCrbfkRyoXODZp75MlpiHMgbE5MEBZAnnnLyQNgrigEj4p0lzsMDyc1zVsJDLrivB58tgg3emX0eEA==",
"dev": true,
"peer": true
},
@@ -25031,6 +23755,29 @@
"@svgr/plugin-jsx": "^5.5.0",
"camelcase": "^6.2.0",
"cosmiconfig": "^7.0.0"
+ },
+ "dependencies": {
+ "camelcase": {
+ "version": "6.3.0",
+ "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz",
+ "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==",
+ "dev": true,
+ "peer": true
+ },
+ "cosmiconfig": {
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz",
+ "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==",
+ "dev": true,
+ "peer": true,
+ "requires": {
+ "@types/parse-json": "^4.0.0",
+ "import-fresh": "^3.2.1",
+ "parse-json": "^5.0.0",
+ "path-type": "^4.0.0",
+ "yaml": "^1.10.0"
+ }
+ }
}
},
"@svgr/hast-util-to-babel-ast": {
@@ -25068,6 +23815,20 @@
"svgo": "^1.2.2"
},
"dependencies": {
+ "cosmiconfig": {
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz",
+ "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==",
+ "dev": true,
+ "peer": true,
+ "requires": {
+ "@types/parse-json": "^4.0.0",
+ "import-fresh": "^3.2.1",
+ "parse-json": "^5.0.0",
+ "path-type": "^4.0.0",
+ "yaml": "^1.10.0"
+ }
+ },
"deepmerge": {
"version": "4.3.1",
"resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz",
@@ -25131,9 +23892,9 @@
"devOptional": true
},
"@types/babel__core": {
- "version": "7.20.0",
- "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.0.tgz",
- "integrity": "sha512-+n8dL/9GWblDO0iU6eZAwEIJVr5DWigtle+Q6HLOrh/pdbXOhOtqzq8VPPE2zvNJzSKY4vH/z3iT3tn0A3ypiQ==",
+ "version": "7.20.5",
+ "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz",
+ "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==",
"requires": {
"@babel/parser": "^7.20.7",
"@babel/types": "^7.20.7",
@@ -25143,34 +23904,34 @@
}
},
"@types/babel__generator": {
- "version": "7.6.4",
- "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz",
- "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==",
+ "version": "7.6.8",
+ "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.8.tgz",
+ "integrity": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==",
"requires": {
"@babel/types": "^7.0.0"
}
},
"@types/babel__template": {
- "version": "7.4.1",
- "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz",
- "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==",
+ "version": "7.4.4",
+ "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz",
+ "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==",
"requires": {
"@babel/parser": "^7.1.0",
"@babel/types": "^7.0.0"
}
},
"@types/babel__traverse": {
- "version": "7.18.5",
- "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.18.5.tgz",
- "integrity": "sha512-enCvTL8m/EHS/zIvJno9nE+ndYPh1/oNFzRYRmtUqJICG2VnCSBzMLW5VN2KCQU91f23tsNKR8v7VJJQMatl7Q==",
+ "version": "7.20.5",
+ "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.5.tgz",
+ "integrity": "sha512-WXCyOcRtH37HAUkpXhUduaxdm82b4GSlyTqajXviN4EfiuPgNYR109xMCKvpl6zPIpua0DGlMEDCq+g8EdoheQ==",
"requires": {
- "@babel/types": "^7.3.0"
+ "@babel/types": "^7.20.7"
}
},
"@types/body-parser": {
- "version": "1.19.2",
- "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.2.tgz",
- "integrity": "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==",
+ "version": "1.19.5",
+ "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.5.tgz",
+ "integrity": "sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==",
"dev": true,
"peer": true,
"requires": {
@@ -25179,9 +23940,9 @@
}
},
"@types/bonjour": {
- "version": "3.5.10",
- "resolved": "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.10.tgz",
- "integrity": "sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==",
+ "version": "3.5.13",
+ "resolved": "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.13.tgz",
+ "integrity": "sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==",
"dev": true,
"peer": true,
"requires": {
@@ -25189,9 +23950,9 @@
}
},
"@types/connect": {
- "version": "3.4.35",
- "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz",
- "integrity": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==",
+ "version": "3.4.38",
+ "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.38.tgz",
+ "integrity": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==",
"dev": true,
"peer": true,
"requires": {
@@ -25199,9 +23960,9 @@
}
},
"@types/connect-history-api-fallback": {
- "version": "1.5.0",
- "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.0.tgz",
- "integrity": "sha512-4x5FkPpLipqwthjPsF7ZRbOv3uoLUFkTA9G9v583qi4pACvq0uTELrB8OLUzPWUI4IJIyvM85vzkV1nyiI2Lig==",
+ "version": "1.5.4",
+ "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.4.tgz",
+ "integrity": "sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==",
"dev": true,
"peer": true,
"requires": {
@@ -25210,9 +23971,9 @@
}
},
"@types/eslint": {
- "version": "8.37.0",
- "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.37.0.tgz",
- "integrity": "sha512-Piet7dG2JBuDIfohBngQ3rCt7MgO9xCO4xIMKxBThCq5PNRB91IjlJ10eJVwfoNtvTErmxLzwBZ7rHZtbOMmFQ==",
+ "version": "8.56.2",
+ "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.56.2.tgz",
+ "integrity": "sha512-uQDwm1wFHmbBbCZCqAlq6Do9LYwByNZHWzXppSnay9SuwJ+VRbjkbLABer54kcPnMSlG6Fdiy2yaFXm/z9Z5gw==",
"dev": true,
"peer": true,
"requires": {
@@ -25221,9 +23982,9 @@
}
},
"@types/eslint-scope": {
- "version": "3.7.4",
- "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz",
- "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==",
+ "version": "3.7.7",
+ "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz",
+ "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==",
"dev": true,
"peer": true,
"requires": {
@@ -25232,16 +23993,16 @@
}
},
"@types/estree": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.1.tgz",
- "integrity": "sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==",
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz",
+ "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==",
"dev": true,
"peer": true
},
"@types/express": {
- "version": "4.17.17",
- "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.17.tgz",
- "integrity": "sha512-Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q==",
+ "version": "4.17.21",
+ "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.21.tgz",
+ "integrity": "sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==",
"dev": true,
"peer": true,
"requires": {
@@ -25252,9 +24013,9 @@
}
},
"@types/express-serve-static-core": {
- "version": "4.17.34",
- "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.34.tgz",
- "integrity": "sha512-fvr49XlCGoUj2Pp730AItckfjat4WNb0lb3kfrLWffd+RLeoGAMsq7UOy04PAPtoL01uKwcp6u8nhzpgpDYr3w==",
+ "version": "4.17.42",
+ "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.42.tgz",
+ "integrity": "sha512-ckM3jm2bf/MfB3+spLPWYPUH573plBFwpOhqQ2WottxYV85j1HQFlxmnTq57X1yHY9awZPig06hL/cLMgNWHIQ==",
"dev": true,
"peer": true,
"requires": {
@@ -25265,17 +24026,17 @@
}
},
"@types/graceful-fs": {
- "version": "4.1.6",
- "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.6.tgz",
- "integrity": "sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==",
+ "version": "4.1.9",
+ "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz",
+ "integrity": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==",
"requires": {
"@types/node": "*"
}
},
"@types/hoist-non-react-statics": {
- "version": "3.3.1",
- "resolved": "https://registry.npmjs.org/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.1.tgz",
- "integrity": "sha512-iMIqiko6ooLrTh1joXodJK5X9xeEALT1kM5G3ZLhD3hszxBdIEd5C75U834D9mLcINgD4OyZf5uQXjkuYydWvA==",
+ "version": "3.3.5",
+ "resolved": "https://registry.npmjs.org/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.5.tgz",
+ "integrity": "sha512-SbcrWzkKBw2cdwRTwQAswfpB9g9LJWfjtUeW/jvNwbhC8cpmmNYVePa+ncbUe0rGTQ7G3Ff6mYUN2VMfLVr+Sg==",
"dev": true,
"requires": {
"@types/react": "*",
@@ -25289,10 +24050,17 @@
"dev": true,
"peer": true
},
+ "@types/http-errors": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.4.tgz",
+ "integrity": "sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==",
+ "dev": true,
+ "peer": true
+ },
"@types/http-proxy": {
- "version": "1.17.11",
- "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.11.tgz",
- "integrity": "sha512-HC8G7c1WmaF2ekqpnFq626xd3Zz0uvaqFmBJNRZCGEZCXkvSdJoNFn/8Ygbd9fKNQj8UzLdCETaI0UWPAjK7IA==",
+ "version": "1.17.14",
+ "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.14.tgz",
+ "integrity": "sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w==",
"dev": true,
"peer": true,
"requires": {
@@ -25300,30 +24068,30 @@
}
},
"@types/istanbul-lib-coverage": {
- "version": "2.0.4",
- "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz",
- "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g=="
+ "version": "2.0.6",
+ "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz",
+ "integrity": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w=="
},
"@types/istanbul-lib-report": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz",
- "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==",
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz",
+ "integrity": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==",
"requires": {
"@types/istanbul-lib-coverage": "*"
}
},
"@types/istanbul-reports": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz",
- "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==",
+ "version": "3.0.4",
+ "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz",
+ "integrity": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==",
"requires": {
"@types/istanbul-lib-report": "*"
}
},
"@types/json-schema": {
- "version": "7.0.11",
- "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz",
- "integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==",
+ "version": "7.0.15",
+ "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz",
+ "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==",
"dev": true
},
"@types/json5": {
@@ -25333,16 +24101,16 @@
"dev": true
},
"@types/lodash": {
- "version": "4.14.194",
- "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.194.tgz",
- "integrity": "sha512-r22s9tAS7imvBt2lyHC9B8AGwWnXaYb1tY09oyLkXDs4vArpYJzw09nj8MLx5VfciBPGIb+ZwG0ssYnEPJxn/g==",
+ "version": "4.14.202",
+ "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.202.tgz",
+ "integrity": "sha512-OvlIYQK9tNneDlS0VN54LLd5uiPCBOp7gS5Z0f1mjoJYBrtStzgmJBxONW3U6OZqdtNzZPmn9BS/7WI7BFFcFQ==",
"dev": true,
"peer": true
},
"@types/mime": {
- "version": "1.3.2",
- "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.2.tgz",
- "integrity": "sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==",
+ "version": "1.3.5",
+ "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.5.tgz",
+ "integrity": "sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==",
"dev": true,
"peer": true
},
@@ -25357,6 +24125,16 @@
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.5.1.tgz",
"integrity": "sha512-4tT2UrL5LBqDwoed9wZ6N3umC4Yhz3W3FloMmiiG4JwmUJWpie0c7lcnUNd4gtMKuDEO4wRVS8B6Xa0uMRsMKg=="
},
+ "@types/node-forge": {
+ "version": "1.3.11",
+ "resolved": "https://registry.npmjs.org/@types/node-forge/-/node-forge-1.3.11.tgz",
+ "integrity": "sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==",
+ "dev": true,
+ "peer": true,
+ "requires": {
+ "@types/node": "*"
+ }
+ },
"@types/normalize-package-data": {
"version": "2.4.4",
"resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz",
@@ -25364,48 +24142,48 @@
"dev": true
},
"@types/parse-json": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz",
- "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==",
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.2.tgz",
+ "integrity": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==",
"dev": true,
"peer": true
},
"@types/prettier": {
- "version": "2.7.2",
- "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.2.tgz",
- "integrity": "sha512-KufADq8uQqo1pYKVIYzfKbJfBAc0sOeXqGbFaSpv8MRmC/zXgowNZmFcbngndGk922QDmOASEXUZCaY48gs4cg=="
+ "version": "2.7.3",
+ "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.3.tgz",
+ "integrity": "sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA=="
},
"@types/prop-types": {
- "version": "15.7.5",
- "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz",
- "integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==",
+ "version": "15.7.11",
+ "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.11.tgz",
+ "integrity": "sha512-ga8y9v9uyeiLdpKddhxYQkxNDrfvuPrlFb0N1qnZZByvcElJaXthF1UhvCh9TLWJBEHeNtdnbysW7Y6Uq8CVng==",
"dev": true
},
"@types/q": {
- "version": "1.5.5",
- "resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.5.tgz",
- "integrity": "sha512-L28j2FcJfSZOnL1WBjDYp2vUHCeIFlyYI/53EwD/rKUBQ7MtUUfbQWiyKJGpcnv4/WgrhWsFKrcPstcAt/J0tQ==",
+ "version": "1.5.8",
+ "resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.8.tgz",
+ "integrity": "sha512-hroOstUScF6zhIi+5+x0dzqrHA1EJi+Irri6b1fxolMTqqHIV/Cg77EtnQcZqZCu8hR3mX2BzIxN4/GzI68Kfw==",
"dev": true,
"peer": true
},
"@types/qs": {
- "version": "6.9.7",
- "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz",
- "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==",
+ "version": "6.9.11",
+ "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.11.tgz",
+ "integrity": "sha512-oGk0gmhnEJK4Yyk+oI7EfXsLayXatCWPHary1MtcmbAifkobT9cM9yutG/hZKIseOU0MqbIwQ/u2nn/Gb+ltuQ==",
"dev": true,
"peer": true
},
"@types/range-parser": {
- "version": "1.2.4",
- "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz",
- "integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==",
+ "version": "1.2.7",
+ "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.7.tgz",
+ "integrity": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==",
"dev": true,
"peer": true
},
"@types/react": {
- "version": "18.2.6",
- "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.6.tgz",
- "integrity": "sha512-wRZClXn//zxCFW+ye/D2qY65UsYP1Fpex2YXorHc8awoNamkMZSvBxwxdYVInsHOZZd2Ppq8isnSzJL5Mpf8OA==",
+ "version": "18.2.52",
+ "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.52.tgz",
+ "integrity": "sha512-E/YjWh3tH+qsLKaUzgpZb5AY0ChVa+ZJzF7ogehVILrFpdQk6nC/WXOv0bfFEABbXbgNxLBGU7IIZByPKb6eBw==",
"dev": true,
"requires": {
"@types/prop-types": "*",
@@ -25413,40 +24191,6 @@
"csstype": "^3.0.2"
}
},
- "@types/react-is": {
- "version": "17.0.4",
- "resolved": "https://registry.npmjs.org/@types/react-is/-/react-is-17.0.4.tgz",
- "integrity": "sha512-FLzd0K9pnaEvKz4D1vYxK9JmgQPiGk1lu23o1kqGsLeT0iPbRSF7b76+S5T9fD8aRa0B8bY7I/3DebEj+1ysBA==",
- "dev": true,
- "peer": true,
- "requires": {
- "@types/react": "^17"
- },
- "dependencies": {
- "@types/react": {
- "version": "17.0.59",
- "resolved": "https://registry.npmjs.org/@types/react/-/react-17.0.59.tgz",
- "integrity": "sha512-gSON5zWYIGyoBcycCE75E9+r6dCC2dHdsrVkOEiIYNU5+Q28HcBAuqvDuxHcCbMfHBHdeT5Tva/AFn3rnMKE4g==",
- "dev": true,
- "peer": true,
- "requires": {
- "@types/prop-types": "*",
- "@types/scheduler": "*",
- "csstype": "^3.0.2"
- }
- }
- }
- },
- "@types/react-transition-group": {
- "version": "4.4.6",
- "resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.6.tgz",
- "integrity": "sha512-VnCdSxfcm08KjsJVQcfBmhEQAPnLB8G08hAxn39azX1qYBQ/5RVQuoHuKIcfKOdncuaUvEpFKFzEvbtIMsfVew==",
- "dev": true,
- "peer": true,
- "requires": {
- "@types/react": "*"
- }
- },
"@types/resolve": {
"version": "1.17.1",
"resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-1.17.1.tgz",
@@ -25465,21 +24209,21 @@
"peer": true
},
"@types/scheduler": {
- "version": "0.16.3",
- "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.3.tgz",
- "integrity": "sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==",
+ "version": "0.16.8",
+ "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.8.tgz",
+ "integrity": "sha512-WZLiwShhwLRmeV6zH+GkbOFT6Z6VklCItrDioxUnv+u4Ll+8vKeFySoFyK/0ctcRpOmwAicELfmys1sDc/Rw+A==",
"dev": true
},
"@types/semver": {
- "version": "7.5.0",
- "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.0.tgz",
- "integrity": "sha512-G8hZ6XJiHnuhQKR7ZmysCeJWE08o8T0AXtk5darsCaTVsYZhhgUrq53jizaR2FvsoeCwJhlmwTjkXBY5Pn/ZHw==",
+ "version": "7.5.6",
+ "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.6.tgz",
+ "integrity": "sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A==",
"dev": true
},
"@types/send": {
- "version": "0.17.1",
- "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.1.tgz",
- "integrity": "sha512-Cwo8LE/0rnvX7kIIa3QHCkcuF21c05Ayb0ZfxPiv0W8VRiZiNW/WuRupHKpqqGVGf7SUA44QSOUKaEd9lIrd/Q==",
+ "version": "0.17.4",
+ "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.4.tgz",
+ "integrity": "sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==",
"dev": true,
"peer": true,
"requires": {
@@ -25488,9 +24232,9 @@
}
},
"@types/serve-index": {
- "version": "1.9.1",
- "resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.1.tgz",
- "integrity": "sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==",
+ "version": "1.9.4",
+ "resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.4.tgz",
+ "integrity": "sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==",
"dev": true,
"peer": true,
"requires": {
@@ -25498,20 +24242,21 @@
}
},
"@types/serve-static": {
- "version": "1.15.1",
- "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.1.tgz",
- "integrity": "sha512-NUo5XNiAdULrJENtJXZZ3fHtfMolzZwczzBbnAeBbqBwG+LaG6YaJtuwzwGSQZ2wsCrxjEhNNjAkKigy3n8teQ==",
+ "version": "1.15.5",
+ "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.5.tgz",
+ "integrity": "sha512-PDRk21MnK70hja/YF8AHfC7yIsiQHn1rcXx7ijCFBX/k+XQJhQT/gw3xekXKJvx+5SXaMMS8oqQy09Mzvz2TuQ==",
"dev": true,
"peer": true,
"requires": {
+ "@types/http-errors": "*",
"@types/mime": "*",
"@types/node": "*"
}
},
"@types/sockjs": {
- "version": "0.3.33",
- "resolved": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.33.tgz",
- "integrity": "sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==",
+ "version": "0.3.36",
+ "resolved": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.36.tgz",
+ "integrity": "sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==",
"dev": true,
"peer": true,
"requires": {
@@ -25519,14 +24264,14 @@
}
},
"@types/stack-utils": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz",
- "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw=="
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.3.tgz",
+ "integrity": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw=="
},
"@types/trusted-types": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.3.tgz",
- "integrity": "sha512-NfQ4gyz38SL8sDNrSixxU2Os1a5xcdFxipAFxYEuLUlvU2uDwS4NUpsImcf1//SlWItCVMMLiylsxbmNMToV/g==",
+ "version": "2.0.7",
+ "resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.7.tgz",
+ "integrity": "sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==",
"dev": true,
"peer": true
},
@@ -25544,9 +24289,9 @@
"peer": true
},
"@types/ws": {
- "version": "8.5.4",
- "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.4.tgz",
- "integrity": "sha512-zdQDHKUgcX/zBc4GrwsE/7dVdAD8JR4EuiAXiiUhhfyIJXXb2+PrGshFyeXWQPMmmZ2XxgaqclgpIC7eTXc1mg==",
+ "version": "8.5.10",
+ "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.10.tgz",
+ "integrity": "sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==",
"dev": true,
"peer": true,
"requires": {
@@ -25554,31 +24299,31 @@
}
},
"@types/yargs": {
- "version": "16.0.5",
- "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.5.tgz",
- "integrity": "sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==",
+ "version": "16.0.9",
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz",
+ "integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==",
"requires": {
"@types/yargs-parser": "*"
}
},
"@types/yargs-parser": {
- "version": "21.0.0",
- "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz",
- "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA=="
+ "version": "21.0.3",
+ "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz",
+ "integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ=="
},
"@typescript-eslint/eslint-plugin": {
- "version": "5.59.5",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.59.5.tgz",
- "integrity": "sha512-feA9xbVRWJZor+AnLNAr7A8JRWeZqHUf4T9tlP+TN04b05pFVhO5eN7/O93Y/1OUlLMHKbnJisgDURs/qvtqdg==",
+ "version": "5.62.0",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.62.0.tgz",
+ "integrity": "sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==",
"dev": true,
"peer": true,
"requires": {
"@eslint-community/regexpp": "^4.4.0",
- "@typescript-eslint/scope-manager": "5.59.5",
- "@typescript-eslint/type-utils": "5.59.5",
- "@typescript-eslint/utils": "5.59.5",
+ "@typescript-eslint/scope-manager": "5.62.0",
+ "@typescript-eslint/type-utils": "5.62.0",
+ "@typescript-eslint/utils": "5.62.0",
"debug": "^4.3.4",
- "grapheme-splitter": "^1.0.4",
+ "graphemer": "^1.4.0",
"ignore": "^5.2.0",
"natural-compare-lite": "^1.4.0",
"semver": "^7.3.7",
@@ -25586,64 +24331,64 @@
}
},
"@typescript-eslint/experimental-utils": {
- "version": "5.59.5",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-5.59.5.tgz",
- "integrity": "sha512-ArcSSBifznsKNA/p4h2w3Olt/T8AZf3bNglxD8OnuTsSDJbRpjPPmI8qpr6ijyvk1J/T3GMJHwRIluS/Kuz9kA==",
+ "version": "5.62.0",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-5.62.0.tgz",
+ "integrity": "sha512-RTXpeB3eMkpoclG3ZHft6vG/Z30azNHuqY6wKPBHlVMZFuEvrtlEDe8gMqDb+SO+9hjC/pLekeSCryf9vMZlCw==",
"dev": true,
"requires": {
- "@typescript-eslint/utils": "5.59.5"
+ "@typescript-eslint/utils": "5.62.0"
}
},
"@typescript-eslint/parser": {
- "version": "5.59.5",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.59.5.tgz",
- "integrity": "sha512-NJXQC4MRnF9N9yWqQE2/KLRSOLvrrlZb48NGVfBa+RuPMN6B7ZcK5jZOvhuygv4D64fRKnZI4L4p8+M+rfeQuw==",
+ "version": "5.62.0",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.62.0.tgz",
+ "integrity": "sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==",
"dev": true,
"peer": true,
"requires": {
- "@typescript-eslint/scope-manager": "5.59.5",
- "@typescript-eslint/types": "5.59.5",
- "@typescript-eslint/typescript-estree": "5.59.5",
+ "@typescript-eslint/scope-manager": "5.62.0",
+ "@typescript-eslint/types": "5.62.0",
+ "@typescript-eslint/typescript-estree": "5.62.0",
"debug": "^4.3.4"
}
},
"@typescript-eslint/scope-manager": {
- "version": "5.59.5",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.59.5.tgz",
- "integrity": "sha512-jVecWwnkX6ZgutF+DovbBJirZcAxgxC0EOHYt/niMROf8p4PwxxG32Qdhj/iIQQIuOflLjNkxoXyArkcIP7C3A==",
+ "version": "5.62.0",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz",
+ "integrity": "sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==",
"dev": true,
"requires": {
- "@typescript-eslint/types": "5.59.5",
- "@typescript-eslint/visitor-keys": "5.59.5"
+ "@typescript-eslint/types": "5.62.0",
+ "@typescript-eslint/visitor-keys": "5.62.0"
}
},
"@typescript-eslint/type-utils": {
- "version": "5.59.5",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.59.5.tgz",
- "integrity": "sha512-4eyhS7oGym67/pSxA2mmNq7X164oqDYNnZCUayBwJZIRVvKpBCMBzFnFxjeoDeShjtO6RQBHBuwybuX3POnDqg==",
+ "version": "5.62.0",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.62.0.tgz",
+ "integrity": "sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==",
"dev": true,
"peer": true,
"requires": {
- "@typescript-eslint/typescript-estree": "5.59.5",
- "@typescript-eslint/utils": "5.59.5",
+ "@typescript-eslint/typescript-estree": "5.62.0",
+ "@typescript-eslint/utils": "5.62.0",
"debug": "^4.3.4",
"tsutils": "^3.21.0"
}
},
"@typescript-eslint/types": {
- "version": "5.59.5",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.5.tgz",
- "integrity": "sha512-xkfRPHbqSH4Ggx4eHRIO/eGL8XL4Ysb4woL8c87YuAo8Md7AUjyWKa9YMwTL519SyDPrfEgKdewjkxNCVeJW7w==",
+ "version": "5.62.0",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.62.0.tgz",
+ "integrity": "sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==",
"dev": true
},
"@typescript-eslint/typescript-estree": {
- "version": "5.59.5",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.5.tgz",
- "integrity": "sha512-+XXdLN2CZLZcD/mO7mQtJMvCkzRfmODbeSKuMY/yXbGkzvA9rJyDY5qDYNoiz2kP/dmyAxXquL2BvLQLJFPQIg==",
+ "version": "5.62.0",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz",
+ "integrity": "sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==",
"dev": true,
"requires": {
- "@typescript-eslint/types": "5.59.5",
- "@typescript-eslint/visitor-keys": "5.59.5",
+ "@typescript-eslint/types": "5.62.0",
+ "@typescript-eslint/visitor-keys": "5.62.0",
"debug": "^4.3.4",
"globby": "^11.1.0",
"is-glob": "^4.0.3",
@@ -25652,17 +24397,17 @@
}
},
"@typescript-eslint/utils": {
- "version": "5.59.5",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.59.5.tgz",
- "integrity": "sha512-sCEHOiw+RbyTii9c3/qN74hYDPNORb8yWCoPLmB7BIflhplJ65u2PBpdRla12e3SSTJ2erRkPjz7ngLHhUegxA==",
+ "version": "5.62.0",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.62.0.tgz",
+ "integrity": "sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==",
"dev": true,
"requires": {
"@eslint-community/eslint-utils": "^4.2.0",
"@types/json-schema": "^7.0.9",
"@types/semver": "^7.3.12",
- "@typescript-eslint/scope-manager": "5.59.5",
- "@typescript-eslint/types": "5.59.5",
- "@typescript-eslint/typescript-estree": "5.59.5",
+ "@typescript-eslint/scope-manager": "5.62.0",
+ "@typescript-eslint/types": "5.62.0",
+ "@typescript-eslint/typescript-estree": "5.62.0",
"eslint-scope": "^5.1.1",
"semver": "^7.3.7"
},
@@ -25686,12 +24431,12 @@
}
},
"@typescript-eslint/visitor-keys": {
- "version": "5.59.5",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.5.tgz",
- "integrity": "sha512-qL+Oz+dbeBRTeyJTIy0eniD3uvqU7x+y1QceBismZ41hd4aBSRh8UAw4pZP0+XzLuPZmx4raNMq/I+59W2lXKA==",
+ "version": "5.62.0",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz",
+ "integrity": "sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==",
"dev": true,
"requires": {
- "@typescript-eslint/types": "5.59.5",
+ "@typescript-eslint/types": "5.62.0",
"eslint-visitor-keys": "^3.3.0"
}
},
@@ -25863,16 +24608,16 @@
}
},
"@wrappid/core": {
- "version": "0.0.276",
- "resolved": "https://npm.pkg.github.com/download/@wrappid/core/0.0.276/1c315bf3c21a5a3a13b5bb87eedf3b09ed9184f7",
- "integrity": "sha512-qMXZPwGU3BcLmfVzGRW4BD5W7g2GnSNakckwDiP9+4h7J+QIH9TbuwKZF3tGk+M0cVPKhVB78YsbXBgHHRGi3A==",
+ "version": "0.0.408",
+ "resolved": "https://npm.pkg.github.com/download/@wrappid/core/0.0.408/7d9e2c061773e21399164c4ccbc255d48238b4b5",
+ "integrity": "sha512-zC1hdYKzMOMxT6VDDadooV+ENnAXYMmggAmRfTYwRi8RAMdq8HJT1TqoS1+4Lnlyhr87u2HktxeYR9x4BUAtIA==",
"dev": true,
"requires": {}
},
"@wrappid/styles": {
- "version": "0.0.88",
- "resolved": "https://npm.pkg.github.com/download/@wrappid/styles/0.0.88/2b74ff14154481caae3a924bcf412789745d3b69",
- "integrity": "sha512-Thalza6HDimmm/jXC3QlkQfIsWJahFjlzZaQQfNWaCtcjvjfGDOzyuZWcioEg/82ADREyYABWuIQAFaliZX7TQ==",
+ "version": "0.0.121",
+ "resolved": "https://npm.pkg.github.com/download/@wrappid/styles/0.0.121/208db10693c8d7e1bf26166f8496064160344490",
+ "integrity": "sha512-L3E5ATIzC11X2cbfPg6PnI5ziFTPbWWO23Ng6zxW2LiTmByeXvw6x9XzOyrrdKAGFZI2xooTy0d8PWnEEeP+8A==",
"dev": true,
"requires": {}
},
@@ -25895,6 +24640,12 @@
"resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz",
"integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA=="
},
+ "abbrev": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz",
+ "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==",
+ "dev": true
+ },
"accepts": {
"version": "1.3.8",
"resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz",
@@ -25907,9 +24658,9 @@
}
},
"acorn": {
- "version": "8.10.0",
- "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz",
- "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw=="
+ "version": "8.11.3",
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz",
+ "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg=="
},
"acorn-globals": {
"version": "6.0.0",
@@ -25928,9 +24679,9 @@
}
},
"acorn-import-assertions": {
- "version": "1.8.0",
- "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz",
- "integrity": "sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==",
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz",
+ "integrity": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==",
"dev": true,
"peer": true,
"requires": {}
@@ -25974,14 +24725,14 @@
}
},
"ajv": {
- "version": "6.12.6",
- "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
- "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
+ "version": "8.12.0",
+ "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz",
+ "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==",
"dev": true,
"requires": {
"fast-deep-equal": "^3.1.1",
- "fast-json-stable-stringify": "^2.0.0",
- "json-schema-traverse": "^0.4.1",
+ "json-schema-traverse": "^1.0.0",
+ "require-from-string": "^2.0.2",
"uri-js": "^4.2.2"
}
},
@@ -25993,46 +24744,24 @@
"peer": true,
"requires": {
"ajv": "^8.0.0"
- },
- "dependencies": {
- "ajv": {
- "version": "8.12.0",
- "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz",
- "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==",
- "dev": true,
- "peer": true,
- "requires": {
- "fast-deep-equal": "^3.1.1",
- "json-schema-traverse": "^1.0.0",
- "require-from-string": "^2.0.2",
- "uri-js": "^4.2.2"
- }
- },
- "json-schema-traverse": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
- "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
- "dev": true,
- "peer": true
- }
}
},
"ajv-keywords": {
- "version": "3.5.2",
- "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz",
- "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==",
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz",
+ "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==",
"dev": true,
"peer": true,
- "requires": {}
- },
- "ansi-escapes": {
- "version": "4.3.2",
- "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz",
- "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==",
"requires": {
- "type-fest": "^0.21.3"
+ "fast-deep-equal": "^3.1.3"
}
},
+ "ansi-escapes": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz",
+ "integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==",
+ "dev": true
+ },
"ansi-html-community": {
"version": "0.0.8",
"resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz",
@@ -26046,11 +24775,11 @@
"integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="
},
"ansi-styles": {
- "version": "3.2.1",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
- "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
"requires": {
- "color-convert": "^1.9.0"
+ "color-convert": "^2.0.1"
}
},
"any-promise": {
@@ -26077,21 +24806,19 @@
"peer": true
},
"argparse": {
- "version": "1.0.10",
- "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
- "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
- "requires": {
- "sprintf-js": "~1.0.2"
- }
+ "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
},
"aria-query": {
- "version": "5.1.3",
- "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.1.3.tgz",
- "integrity": "sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==",
+ "version": "5.3.0",
+ "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz",
+ "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==",
"dev": true,
"peer": true,
"requires": {
- "deep-equal": "^2.0.5"
+ "dequal": "^2.0.3"
}
},
"array-buffer-byte-length": {
@@ -26104,10 +24831,16 @@
"is-array-buffer": "^3.0.1"
}
},
+ "array-find-index": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz",
+ "integrity": "sha512-M1HQyIXcBGtVywBt8WVdim+lrNaK7VHp99Qt5pSNziXznKHViIBbXWtfRTpEFpF/c4FdfxNAsCCwPp5phBYJtw==",
+ "dev": true
+ },
"array-flatten": {
- "version": "2.1.2",
- "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz",
- "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==",
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz",
+ "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==",
"dev": true,
"peer": true
},
@@ -26118,15 +24851,15 @@
"dev": true
},
"array-includes": {
- "version": "3.1.6",
- "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz",
- "integrity": "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==",
+ "version": "3.1.7",
+ "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.7.tgz",
+ "integrity": "sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==",
"dev": true,
"requires": {
"call-bind": "^1.0.2",
- "define-properties": "^1.1.4",
- "es-abstract": "^1.20.4",
- "get-intrinsic": "^1.1.3",
+ "define-properties": "^1.2.0",
+ "es-abstract": "^1.22.1",
+ "get-intrinsic": "^1.2.1",
"is-string": "^1.0.7"
}
},
@@ -26136,55 +24869,83 @@
"integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==",
"dev": true
},
+ "array.prototype.findlastindex": {
+ "version": "1.2.3",
+ "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.3.tgz",
+ "integrity": "sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==",
+ "dev": true,
+ "requires": {
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.2.0",
+ "es-abstract": "^1.22.1",
+ "es-shim-unscopables": "^1.0.0",
+ "get-intrinsic": "^1.2.1"
+ }
+ },
"array.prototype.flat": {
- "version": "1.3.1",
- "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz",
- "integrity": "sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==",
+ "version": "1.3.2",
+ "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz",
+ "integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==",
"dev": true,
"requires": {
"call-bind": "^1.0.2",
- "define-properties": "^1.1.4",
- "es-abstract": "^1.20.4",
+ "define-properties": "^1.2.0",
+ "es-abstract": "^1.22.1",
"es-shim-unscopables": "^1.0.0"
}
},
"array.prototype.flatmap": {
- "version": "1.3.1",
- "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz",
- "integrity": "sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==",
+ "version": "1.3.2",
+ "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz",
+ "integrity": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==",
"dev": true,
"requires": {
"call-bind": "^1.0.2",
- "define-properties": "^1.1.4",
- "es-abstract": "^1.20.4",
+ "define-properties": "^1.2.0",
+ "es-abstract": "^1.22.1",
"es-shim-unscopables": "^1.0.0"
}
},
"array.prototype.reduce": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/array.prototype.reduce/-/array.prototype.reduce-1.0.5.tgz",
- "integrity": "sha512-kDdugMl7id9COE8R7MHF5jWk7Dqt/fs4Pv+JXoICnYwqpjjjbUurz6w5fT5IG6brLdJhv6/VoHB0H7oyIBXd+Q==",
+ "version": "1.0.6",
+ "resolved": "https://registry.npmjs.org/array.prototype.reduce/-/array.prototype.reduce-1.0.6.tgz",
+ "integrity": "sha512-UW+Mz8LG/sPSU8jRDCjVr6J/ZKAGpHfwrZ6kWTG5qCxIEiXdVshqGnu5vEZA8S1y6X4aCSbQZ0/EEsfvEvBiSg==",
"dev": true,
"peer": true,
"requires": {
"call-bind": "^1.0.2",
- "define-properties": "^1.1.4",
- "es-abstract": "^1.20.4",
+ "define-properties": "^1.2.0",
+ "es-abstract": "^1.22.1",
"es-array-method-boxes-properly": "^1.0.0",
"is-string": "^1.0.7"
}
},
"array.prototype.tosorted": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz",
- "integrity": "sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==",
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.2.tgz",
+ "integrity": "sha512-HuQCHOlk1Weat5jzStICBCd83NxiIMwqDg/dHEsoefabn/hJRj5pVdWcPUSpRrwhwxZOsQassMpgN/xRYFBMIg==",
"dev": true,
"requires": {
"call-bind": "^1.0.2",
- "define-properties": "^1.1.4",
- "es-abstract": "^1.20.4",
+ "define-properties": "^1.2.0",
+ "es-abstract": "^1.22.1",
"es-shim-unscopables": "^1.0.0",
- "get-intrinsic": "^1.1.3"
+ "get-intrinsic": "^1.2.1"
+ }
+ },
+ "arraybuffer.prototype.slice": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.2.tgz",
+ "integrity": "sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==",
+ "dev": true,
+ "requires": {
+ "array-buffer-byte-length": "^1.0.0",
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.2.0",
+ "es-abstract": "^1.22.1",
+ "get-intrinsic": "^1.2.1",
+ "is-array-buffer": "^3.0.2",
+ "is-shared-array-buffer": "^1.0.2"
}
},
"arrify": {
@@ -26199,19 +24960,28 @@
"integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA=="
},
"ast-types-flow": {
- "version": "0.0.7",
- "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz",
- "integrity": "sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==",
+ "version": "0.0.8",
+ "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.8.tgz",
+ "integrity": "sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==",
"dev": true,
"peer": true
},
"async": {
- "version": "3.2.4",
- "resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz",
- "integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==",
+ "version": "3.2.5",
+ "resolved": "https://registry.npmjs.org/async/-/async-3.2.5.tgz",
+ "integrity": "sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==",
"dev": true,
"peer": true
},
+ "asynciterator.prototype": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/asynciterator.prototype/-/asynciterator.prototype-1.0.0.tgz",
+ "integrity": "sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg==",
+ "dev": true,
+ "requires": {
+ "has-symbols": "^1.0.3"
+ }
+ },
"asynckit": {
"version": "0.4.0",
"resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
@@ -26225,24 +24995,24 @@
"peer": true
},
"autoprefixer": {
- "version": "10.4.14",
- "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.14.tgz",
- "integrity": "sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==",
+ "version": "10.4.17",
+ "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.17.tgz",
+ "integrity": "sha512-/cpVNRLSfhOtcGflT13P2794gVSgmPgTR+erw5ifnMLZb0UnSlkK4tquLmkd3BhA+nLo5tX8Cu0upUsGKvKbmg==",
"dev": true,
"peer": true,
"requires": {
- "browserslist": "^4.21.5",
- "caniuse-lite": "^1.0.30001464",
- "fraction.js": "^4.2.0",
+ "browserslist": "^4.22.2",
+ "caniuse-lite": "^1.0.30001578",
+ "fraction.js": "^4.3.7",
"normalize-range": "^0.1.2",
"picocolors": "^1.0.0",
"postcss-value-parser": "^4.2.0"
}
},
"available-typed-arrays": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz",
- "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==",
+ "version": "1.0.6",
+ "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.6.tgz",
+ "integrity": "sha512-j1QzY8iPNPG4o4xmO3ptzpRxTciqD3MgEHtifP/YnJpIo58Xu+ne4BejlbkuaLfXn/nz6HFiw29bLpj2PNMdGg==",
"dev": true
},
"axe-core": {
@@ -26253,13 +25023,13 @@
"peer": true
},
"axobject-query": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.1.1.tgz",
- "integrity": "sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==",
+ "version": "3.2.1",
+ "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.2.1.tgz",
+ "integrity": "sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==",
"dev": true,
"peer": true,
"requires": {
- "deep-equal": "^2.0.5"
+ "dequal": "^2.0.3"
}
},
"babel-jest": {
@@ -26275,51 +25045,6 @@
"chalk": "^4.0.0",
"graceful-fs": "^4.2.9",
"slash": "^3.0.0"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "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==",
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "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=="
- },
- "has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
- },
- "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==",
- "requires": {
- "has-flag": "^4.0.0"
- }
- }
}
},
"babel-loader": {
@@ -26335,6 +25060,44 @@
"schema-utils": "^2.6.5"
},
"dependencies": {
+ "ajv": {
+ "version": "6.12.6",
+ "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
+ "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
+ "dev": true,
+ "peer": true,
+ "requires": {
+ "fast-deep-equal": "^3.1.1",
+ "fast-json-stable-stringify": "^2.0.0",
+ "json-schema-traverse": "^0.4.1",
+ "uri-js": "^4.2.2"
+ }
+ },
+ "ajv-keywords": {
+ "version": "3.5.2",
+ "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz",
+ "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==",
+ "dev": true,
+ "peer": true,
+ "requires": {}
+ },
+ "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,
+ "peer": true
+ },
+ "make-dir": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz",
+ "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==",
+ "dev": true,
+ "peer": true,
+ "requires": {
+ "semver": "^6.0.0"
+ }
+ },
"schema-utils": {
"version": "2.7.1",
"resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz",
@@ -26346,6 +25109,13 @@
"ajv": "^6.12.4",
"ajv-keywords": "^3.5.2"
}
+ },
+ "semver": {
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
+ "dev": true,
+ "peer": true
}
}
},
@@ -26382,6 +25152,22 @@
"@babel/runtime": "^7.12.5",
"cosmiconfig": "^7.0.0",
"resolve": "^1.19.0"
+ },
+ "dependencies": {
+ "cosmiconfig": {
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz",
+ "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==",
+ "dev": true,
+ "peer": true,
+ "requires": {
+ "@types/parse-json": "^4.0.0",
+ "import-fresh": "^3.2.1",
+ "parse-json": "^5.0.0",
+ "path-type": "^4.0.0",
+ "yaml": "^1.10.0"
+ }
+ }
}
},
"babel-plugin-named-asset-import": {
@@ -26393,45 +25179,45 @@
"requires": {}
},
"babel-plugin-polyfill-corejs2": {
- "version": "0.3.3",
- "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.3.tgz",
- "integrity": "sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==",
+ "version": "0.4.8",
+ "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.8.tgz",
+ "integrity": "sha512-OtIuQfafSzpo/LhnJaykc0R/MMnuLSSVjVYy9mHArIZ9qTCSZ6TpWCuEKZYVoN//t8HqBNScHrOtCrIK5IaGLg==",
"dev": true,
"peer": true,
"requires": {
- "@babel/compat-data": "^7.17.7",
- "@babel/helper-define-polyfill-provider": "^0.3.3",
- "semver": "^6.1.1"
+ "@babel/compat-data": "^7.22.6",
+ "@babel/helper-define-polyfill-provider": "^0.5.0",
+ "semver": "^6.3.1"
},
"dependencies": {
"semver": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
- "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
"dev": true,
"peer": true
}
}
},
"babel-plugin-polyfill-corejs3": {
- "version": "0.6.0",
- "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.6.0.tgz",
- "integrity": "sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==",
+ "version": "0.9.0",
+ "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.9.0.tgz",
+ "integrity": "sha512-7nZPG1uzK2Ymhy/NbaOWTg3uibM2BmGASS4vHS4szRZAIR8R6GwA/xAujpdrXU5iyklrimWnLWU+BLF9suPTqg==",
"dev": true,
"peer": true,
"requires": {
- "@babel/helper-define-polyfill-provider": "^0.3.3",
- "core-js-compat": "^3.25.1"
+ "@babel/helper-define-polyfill-provider": "^0.5.0",
+ "core-js-compat": "^3.34.0"
}
},
"babel-plugin-polyfill-regenerator": {
- "version": "0.4.1",
- "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.1.tgz",
- "integrity": "sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==",
+ "version": "0.5.5",
+ "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.5.tgz",
+ "integrity": "sha512-OJGYZlhLqBh2DDHeqAxWB1XIvr49CxiJ2gIt61/PU55CQK4Z58OzMqjDe1zwQdQk+rBYsRc+1rJmdajM3gimHg==",
"dev": true,
"peer": true,
"requires": {
- "@babel/helper-define-polyfill-provider": "^0.3.3"
+ "@babel/helper-define-polyfill-provider": "^0.5.0"
}
},
"babel-plugin-transform-react-remove-prop-types": {
@@ -26507,15 +25293,16 @@
"peer": true
},
"bfj": {
- "version": "7.0.2",
- "resolved": "https://registry.npmjs.org/bfj/-/bfj-7.0.2.tgz",
- "integrity": "sha512-+e/UqUzwmzJamNF50tBV6tZPTORow7gQ96iFow+8b562OdMpEK0BcJEq2OSPEDmAbSMBQ7PKZ87ubFkgxpYWgw==",
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/bfj/-/bfj-7.1.0.tgz",
+ "integrity": "sha512-I6MMLkn+anzNdCUp9hMRyui1HaNEUCco50lxbvNS4+EyXg8lN3nJ48PjPWtbH8UVS9CuMoaKE9U2V3l29DaRQw==",
"dev": true,
"peer": true,
"requires": {
- "bluebird": "^3.5.5",
- "check-types": "^11.1.1",
+ "bluebird": "^3.7.2",
+ "check-types": "^11.2.3",
"hoopy": "^0.1.4",
+ "jsonpath": "^1.1.1",
"tryer": "^1.0.1"
}
},
@@ -26578,34 +25365,32 @@
"ms": "2.0.0"
}
},
- "iconv-lite": {
- "version": "0.4.24",
- "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
- "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
- "dev": true,
- "peer": true,
- "requires": {
- "safer-buffer": ">= 2.1.2 < 3"
- }
- },
"ms": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
"integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
"dev": true,
"peer": true
+ },
+ "qs": {
+ "version": "6.11.0",
+ "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz",
+ "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==",
+ "dev": true,
+ "peer": true,
+ "requires": {
+ "side-channel": "^1.0.4"
+ }
}
}
},
"bonjour-service": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.1.1.tgz",
- "integrity": "sha512-Z/5lQRMOG9k7W+FkeGTNjh7htqn/2LMnfOvBZ8pynNZCM9MwkQkI3zeI4oz09uWdcgmgHugVvBqxGg4VQJ5PCg==",
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.2.1.tgz",
+ "integrity": "sha512-oSzCS2zV14bh2kji6vNe7vrpJYCHGvcZnlffFQ1MEoX/WOeQ/teD8SYWKR942OI3INjq8OMNJlbPK5LLLUxFDw==",
"dev": true,
"peer": true,
"requires": {
- "array-flatten": "^2.1.2",
- "dns-equal": "^1.0.0",
"fast-deep-equal": "^3.1.3",
"multicast-dns": "^7.2.5"
}
@@ -26640,14 +25425,14 @@
"integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow=="
},
"browserslist": {
- "version": "4.21.5",
- "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.5.tgz",
- "integrity": "sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==",
+ "version": "4.22.3",
+ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.3.tgz",
+ "integrity": "sha512-UAp55yfwNv0klWNapjs/ktHoguxuQNGnOzxYmfnXIS+8AsRDZkSDxg7R1AX3GKzn078SBI5dzwzj/Yx0Or0e3A==",
"requires": {
- "caniuse-lite": "^1.0.30001449",
- "electron-to-chromium": "^1.4.284",
- "node-releases": "^2.0.8",
- "update-browserslist-db": "^1.0.10"
+ "caniuse-lite": "^1.0.30001580",
+ "electron-to-chromium": "^1.4.648",
+ "node-releases": "^2.0.14",
+ "update-browserslist-db": "^1.0.13"
}
},
"bser": {
@@ -26683,12 +25468,13 @@
"peer": true
},
"call-bind": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz",
- "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==",
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.5.tgz",
+ "integrity": "sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==",
"requires": {
- "function-bind": "^1.1.1",
- "get-intrinsic": "^1.0.2"
+ "function-bind": "^1.1.2",
+ "get-intrinsic": "^1.2.1",
+ "set-function-length": "^1.1.1"
}
},
"callsites": {
@@ -26705,21 +25491,12 @@
"requires": {
"pascal-case": "^3.1.2",
"tslib": "^2.0.3"
- },
- "dependencies": {
- "tslib": {
- "version": "2.5.0",
- "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz",
- "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==",
- "dev": true,
- "peer": true
- }
}
},
"camelcase": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz",
- "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA=="
+ "version": "5.3.1",
+ "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz",
+ "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg=="
},
"camelcase-css": {
"version": "2.0.1",
@@ -26737,14 +25514,6 @@
"camelcase": "^5.3.1",
"map-obj": "^4.0.0",
"quick-lru": "^4.0.1"
- },
- "dependencies": {
- "camelcase": {
- "version": "5.3.1",
- "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz",
- "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==",
- "dev": true
- }
}
},
"caniuse-api": {
@@ -26761,9 +25530,9 @@
}
},
"caniuse-lite": {
- "version": "1.0.30001486",
- "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001486.tgz",
- "integrity": "sha512-uv7/gXuHi10Whlj0pp5q/tsK/32J2QSqVRKQhs2j8VsDCjgyruAh/eEXHF822VqO9yT6iZKw3nRwZRSPBE9OQg=="
+ "version": "1.0.30001583",
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001583.tgz",
+ "integrity": "sha512-acWTYaha8xfhA/Du/z4sNZjHUWjkiuoAi2LM+T/aL+kemKQgPT1xBb/YKjlQ0Qo8gvbHsGNplrEJ+9G3gL7i4Q=="
},
"case-sensitive-paths-webpack-plugin": {
"version": "2.4.0",
@@ -26773,13 +25542,12 @@
"peer": true
},
"chalk": {
- "version": "2.4.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
- "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
"requires": {
- "ansi-styles": "^3.2.1",
- "escape-string-regexp": "^1.0.5",
- "supports-color": "^5.3.0"
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
}
},
"char-regex": {
@@ -26794,9 +25562,9 @@
"dev": true
},
"check-types": {
- "version": "11.2.2",
- "resolved": "https://registry.npmjs.org/check-types/-/check-types-11.2.2.tgz",
- "integrity": "sha512-HBiYvXvn9Z70Z88XKjz3AEKd4HJhBXsa3j7xFnITAzoS8+q6eIGi8qDB8FKPBAjtuxjI/zFpwuiCb8oDtKOYrA==",
+ "version": "11.2.3",
+ "resolved": "https://registry.npmjs.org/check-types/-/check-types-11.2.3.tgz",
+ "integrity": "sha512-+67P1GkJRaxQD6PKK0Et9DhwQB+vGg3PM5+aavopCpZT1lj9jeqfvpgTLAWErNj8qApkkmXlu/Ug74kmhagkXg==",
"dev": true,
"peer": true
},
@@ -26837,19 +25605,19 @@
"peer": true
},
"ci-info": {
- "version": "3.8.0",
- "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.8.0.tgz",
- "integrity": "sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw=="
+ "version": "3.9.0",
+ "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz",
+ "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ=="
},
"cjs-module-lexer": {
- "version": "1.2.2",
- "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz",
- "integrity": "sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA=="
+ "version": "1.2.3",
+ "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz",
+ "integrity": "sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ=="
},
"clean-css": {
- "version": "5.3.2",
- "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.3.2.tgz",
- "integrity": "sha512-JVJbM+f3d3Q704rF4bqQ5UUyTtuJ0JRKNbTKVEeujCCBoMdkEi+V+e8oktO9qGQNSvHrFTM6JZRXrUvGR1czww==",
+ "version": "5.3.3",
+ "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.3.3.tgz",
+ "integrity": "sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==",
"dev": true,
"peer": true,
"requires": {
@@ -26881,22 +25649,41 @@
"dev": true
},
"cliui": {
- "version": "7.0.4",
- "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz",
- "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==",
+ "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,
"requires": {
"string-width": "^4.2.0",
- "strip-ansi": "^6.0.0",
+ "strip-ansi": "^6.0.1",
"wrap-ansi": "^7.0.0"
+ },
+ "dependencies": {
+ "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
+ },
+ "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
+ },
+ "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,
+ "requires": {
+ "emoji-regex": "^8.0.0",
+ "is-fullwidth-code-point": "^3.0.0",
+ "strip-ansi": "^6.0.1"
+ }
+ }
}
},
- "clsx": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/clsx/-/clsx-1.2.1.tgz",
- "integrity": "sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==",
- "dev": true,
- "peer": true
- },
"co": {
"version": "4.6.0",
"resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz",
@@ -26912,25 +25699,90 @@
"@types/q": "^1.5.1",
"chalk": "^2.4.1",
"q": "^1.1.2"
+ },
+ "dependencies": {
+ "ansi-styles": {
+ "version": "3.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
+ "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
+ "dev": true,
+ "peer": true,
+ "requires": {
+ "color-convert": "^1.9.0"
+ }
+ },
+ "chalk": {
+ "version": "2.4.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
+ "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
+ "dev": true,
+ "peer": true,
+ "requires": {
+ "ansi-styles": "^3.2.1",
+ "escape-string-regexp": "^1.0.5",
+ "supports-color": "^5.3.0"
+ }
+ },
+ "color-convert": {
+ "version": "1.9.3",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
+ "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
+ "dev": true,
+ "peer": true,
+ "requires": {
+ "color-name": "1.1.3"
+ }
+ },
+ "color-name": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
+ "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==",
+ "dev": true,
+ "peer": true
+ },
+ "escape-string-regexp": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
+ "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==",
+ "dev": true,
+ "peer": true
+ },
+ "has-flag": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
+ "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==",
+ "dev": true,
+ "peer": true
+ },
+ "supports-color": {
+ "version": "5.5.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
+ "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
+ "dev": true,
+ "peer": true,
+ "requires": {
+ "has-flag": "^3.0.0"
+ }
+ }
}
},
"collect-v8-coverage": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz",
- "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg=="
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz",
+ "integrity": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q=="
},
"color-convert": {
- "version": "1.9.3",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
- "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
"requires": {
- "color-name": "1.1.3"
+ "color-name": "~1.1.4"
}
},
"color-name": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
- "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw=="
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
},
"colord": {
"version": "2.9.3",
@@ -27140,26 +25992,26 @@
"integrity": "sha512-LDx6oHrK+PhzLKJU9j5S7/Y3jM/mUHvD/DeI1WQmJn652iPC5Y4TBzC9l+5OMOXlyTTA+SmVUPm0HQUwpD5Jqw=="
},
"core-js": {
- "version": "3.30.2",
- "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.30.2.tgz",
- "integrity": "sha512-uBJiDmwqsbJCWHAwjrx3cvjbMXP7xD72Dmsn5LOJpiRmE3WbBbN5rCqQ2Qh6Ek6/eOrjlWngEynBWo4VxerQhg==",
+ "version": "3.35.1",
+ "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.35.1.tgz",
+ "integrity": "sha512-IgdsbxNyMskrTFxa9lWHyMwAJU5gXOPP+1yO+K59d50VLVAIDAbs7gIv705KzALModfK3ZrSZTPNpC0PQgIZuw==",
"dev": true,
"peer": true
},
"core-js-compat": {
- "version": "3.30.2",
- "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.30.2.tgz",
- "integrity": "sha512-nriW1nuJjUgvkEjIot1Spwakz52V9YkYHZAQG6A1eCgC8AA1p0zngrQEP9R0+V6hji5XilWKG1Bd0YRppmGimA==",
+ "version": "3.35.1",
+ "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.35.1.tgz",
+ "integrity": "sha512-sftHa5qUJY3rs9Zht1WEnmkvXputCyDBczPnr7QDgL8n3qrF3CMXY4VPSYtOLLiOUJcah2WNXREd48iOl6mQIw==",
"dev": true,
"peer": true,
"requires": {
- "browserslist": "^4.21.5"
+ "browserslist": "^4.22.2"
}
},
"core-js-pure": {
- "version": "3.30.2",
- "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.30.2.tgz",
- "integrity": "sha512-p/npFUJXXBkCCTIlEGBdghofn00jWG6ZOtdoIXSJmAu2QBvN0IqpZXWweOytcwE6cfx8ZvVUy1vw8zxhe4Y2vg==",
+ "version": "3.35.1",
+ "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.35.1.tgz",
+ "integrity": "sha512-zcIdi/CL3MWbBJYo5YCeVAAx+Sy9yJE9I3/u9LkFABwbeaPhTMRWraM8mYFp9jW5Z50hOy7FVzCc8dCrpZqtIQ==",
"dev": true,
"peer": true
},
@@ -27171,17 +26023,15 @@
"peer": true
},
"cosmiconfig": {
- "version": "7.1.0",
- "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz",
- "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==",
+ "version": "8.3.6",
+ "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.3.6.tgz",
+ "integrity": "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==",
"dev": true,
- "peer": true,
"requires": {
- "@types/parse-json": "^4.0.0",
- "import-fresh": "^3.2.1",
- "parse-json": "^5.0.0",
- "path-type": "^4.0.0",
- "yaml": "^1.10.0"
+ "import-fresh": "^3.3.0",
+ "js-yaml": "^4.1.0",
+ "parse-json": "^5.2.0",
+ "path-type": "^4.0.0"
}
},
"cosmiconfig-typescript-loader": {
@@ -27225,9 +26075,9 @@
}
},
"css-declaration-sorter": {
- "version": "6.4.0",
- "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.4.0.tgz",
- "integrity": "sha512-jDfsatwWMWN0MODAFuHszfjphEXfNw9JUAhmY4pLu3TyTU+ohUpsbVtbU+1MZn4a47D9kqh03i4eyOm+74+zew==",
+ "version": "6.4.1",
+ "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.4.1.tgz",
+ "integrity": "sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==",
"dev": true,
"peer": true,
"requires": {}
@@ -27243,20 +26093,20 @@
}
},
"css-loader": {
- "version": "6.7.3",
- "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.7.3.tgz",
- "integrity": "sha512-qhOH1KlBMnZP8FzRO6YCH9UHXQhVMcEGLyNdb7Hv2cpcmJbW0YrddO+tG1ab5nT41KpHIYGsbeHqxB9xPu1pKQ==",
+ "version": "6.10.0",
+ "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.10.0.tgz",
+ "integrity": "sha512-LTSA/jWbwdMlk+rhmElbDR2vbtQoTBPr7fkJE+mxrHj+7ru0hUmHafDRzWIjIHTwpitWVaqY2/UWGRca3yUgRw==",
"dev": true,
"peer": true,
"requires": {
"icss-utils": "^5.1.0",
- "postcss": "^8.4.19",
+ "postcss": "^8.4.33",
"postcss-modules-extract-imports": "^3.0.0",
- "postcss-modules-local-by-default": "^4.0.0",
- "postcss-modules-scope": "^3.0.0",
+ "postcss-modules-local-by-default": "^4.0.4",
+ "postcss-modules-scope": "^3.1.1",
"postcss-modules-values": "^4.0.0",
"postcss-value-parser": "^4.2.0",
- "semver": "^7.3.8"
+ "semver": "^7.5.4"
}
},
"css-minimizer-webpack-plugin": {
@@ -27274,40 +26124,10 @@
"source-map": "^0.6.1"
},
"dependencies": {
- "ajv": {
- "version": "8.12.0",
- "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz",
- "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==",
- "dev": true,
- "peer": true,
- "requires": {
- "fast-deep-equal": "^3.1.1",
- "json-schema-traverse": "^1.0.0",
- "require-from-string": "^2.0.2",
- "uri-js": "^4.2.2"
- }
- },
- "ajv-keywords": {
- "version": "5.1.0",
- "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz",
- "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==",
- "dev": true,
- "peer": true,
- "requires": {
- "fast-deep-equal": "^3.1.3"
- }
- },
- "json-schema-traverse": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
- "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
- "dev": true,
- "peer": true
- },
"schema-utils": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.1.tgz",
- "integrity": "sha512-lELhBAAly9NowEsX0yZBlw9ahZG+sK/1RJ21EpzdYHKEs13Vku3LJ+MIPhh4sMs0oCCeufZQEQbMekiA4vuVIQ==",
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz",
+ "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==",
"dev": true,
"peer": true,
"requires": {
@@ -27383,9 +26203,9 @@
"peer": true
},
"cssdb": {
- "version": "7.5.4",
- "resolved": "https://registry.npmjs.org/cssdb/-/cssdb-7.5.4.tgz",
- "integrity": "sha512-fGD+J6Jlq+aurfE1VDXlLS4Pt0VtNlu2+YgfGOdMxRyl/HQ9bDiHTwSck1Yz8A97Dt/82izSK6Bp/4nVqacOsg==",
+ "version": "7.10.0",
+ "resolved": "https://registry.npmjs.org/cssdb/-/cssdb-7.10.0.tgz",
+ "integrity": "sha512-yGZ5tmA57gWh/uvdQBHs45wwFY0IBh3ypABk5sEubPBPSzXzkNgsWReqx7gdx6uhC+QoFBe+V8JwBB9/hQ6cIA==",
"dev": true,
"peer": true
},
@@ -27512,9 +26332,9 @@
}
},
"csstype": {
- "version": "3.1.2",
- "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz",
- "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==",
+ "version": "3.1.3",
+ "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz",
+ "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==",
"dev": true
},
"damerau-levenshtein": {
@@ -27548,6 +26368,12 @@
"ms": "2.1.2"
}
},
+ "debuglog": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/debuglog/-/debuglog-1.0.1.tgz",
+ "integrity": "sha512-syBZ+rnAK3EgMsH2aYEOLUW7mZSY9Gb+0wUMCFsZvcmiz+HigA0LOcq/HoQqVuGG+EKykunc7QG2bzrponfaSw==",
+ "dev": true
+ },
"decamelize": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz",
@@ -27582,37 +26408,11 @@
"resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz",
"integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA=="
},
- "deep-equal": {
- "version": "2.2.1",
- "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.1.tgz",
- "integrity": "sha512-lKdkdV6EOGoVn65XaOsPdH4rMxTZOnmFyuIkMjM1i5HHCbfjC97dawgTAy0deYNfuqUqW+Q5VrVaQYtUpSd6yQ==",
- "dev": true,
- "peer": true,
- "requires": {
- "array-buffer-byte-length": "^1.0.0",
- "call-bind": "^1.0.2",
- "es-get-iterator": "^1.1.3",
- "get-intrinsic": "^1.2.0",
- "is-arguments": "^1.1.1",
- "is-array-buffer": "^3.0.2",
- "is-date-object": "^1.0.5",
- "is-regex": "^1.1.4",
- "is-shared-array-buffer": "^1.0.2",
- "isarray": "^2.0.5",
- "object-is": "^1.1.5",
- "object-keys": "^1.1.1",
- "object.assign": "^4.1.4",
- "regexp.prototype.flags": "^1.5.0",
- "side-channel": "^1.0.4",
- "which-boxed-primitive": "^1.0.2",
- "which-collection": "^1.0.1",
- "which-typed-array": "^1.1.9"
- }
- },
"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=="
+ "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==",
+ "dev": true
},
"deepmerge": {
"version": "2.2.1",
@@ -27631,6 +26431,16 @@
"execa": "^5.0.0"
}
},
+ "define-data-property": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.1.tgz",
+ "integrity": "sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==",
+ "requires": {
+ "get-intrinsic": "^1.2.1",
+ "gopd": "^1.0.1",
+ "has-property-descriptors": "^1.0.0"
+ }
+ },
"define-lazy-prop": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz",
@@ -27639,11 +26449,12 @@
"peer": true
},
"define-properties": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz",
- "integrity": "sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==",
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz",
+ "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==",
"dev": true,
"requires": {
+ "define-data-property": "^1.0.1",
"has-property-descriptors": "^1.0.0",
"object-keys": "^1.1.1"
}
@@ -27660,6 +26471,13 @@
"dev": true,
"peer": true
},
+ "dequal": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz",
+ "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==",
+ "dev": true,
+ "peer": true
+ },
"destroy": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz",
@@ -27752,17 +26570,10 @@
"dev": true,
"peer": true
},
- "dns-equal": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz",
- "integrity": "sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==",
- "dev": true,
- "peer": true
- },
"dns-packet": {
- "version": "5.6.0",
- "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-5.6.0.tgz",
- "integrity": "sha512-rza3UH1LwdHh9qyPXp8lkwpjSNk/AMD3dPytUoRoqnypDUhY0xvbdmVhWOfxO68frEfV9BU8V12Ez7ZsHGZpCQ==",
+ "version": "5.6.1",
+ "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-5.6.1.tgz",
+ "integrity": "sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==",
"dev": true,
"peer": true,
"requires": {
@@ -27788,17 +26599,6 @@
"utila": "~0.4"
}
},
- "dom-helpers": {
- "version": "5.2.1",
- "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz",
- "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==",
- "dev": true,
- "peer": true,
- "requires": {
- "@babel/runtime": "^7.8.7",
- "csstype": "^3.0.2"
- }
- },
"dom-serializer": {
"version": "1.4.1",
"resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz",
@@ -27864,15 +26664,6 @@
"requires": {
"no-case": "^3.0.4",
"tslib": "^2.0.3"
- },
- "dependencies": {
- "tslib": {
- "version": "2.5.0",
- "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz",
- "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==",
- "dev": true,
- "peer": true
- }
}
},
"dot-prop": {
@@ -27882,14 +26673,6 @@
"dev": true,
"requires": {
"is-obj": "^2.0.0"
- },
- "dependencies": {
- "is-obj": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz",
- "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==",
- "dev": true
- }
}
},
"dotenv": {
@@ -27913,6 +26696,13 @@
"dev": true,
"peer": true
},
+ "eastasianwidth": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz",
+ "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==",
+ "dev": true,
+ "peer": true
+ },
"ee-first": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
@@ -27931,9 +26721,9 @@
}
},
"electron-to-chromium": {
- "version": "1.4.388",
- "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.388.tgz",
- "integrity": "sha512-xZ0y4zjWZgp65okzwwt00f2rYibkFPHUv9qBz+Vzn8cB9UXIo9Zc6Dw81LJYhhNt0G/vR1OJEfStZ49NKl0YxQ=="
+ "version": "1.4.656",
+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.656.tgz",
+ "integrity": "sha512-9AQB5eFTHyR3Gvt2t/NwR0le2jBSUNwCnMbUCejFWHD+so4tH40/dRLgoE+jxlPeWS43XJewyvCv+I8LPMl49Q=="
},
"emittery": {
"version": "0.8.1",
@@ -27962,9 +26752,9 @@
"peer": true
},
"enhanced-resolve": {
- "version": "5.14.0",
- "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.14.0.tgz",
- "integrity": "sha512-+DCows0XNwLDcUhbFJPdlQEVnT2zXlCv7hPxemTz86/O+B/hCQ+mb7ydkPKiflpVraqLPCAfu7lDy+hBXueojw==",
+ "version": "5.15.0",
+ "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz",
+ "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==",
"dev": true,
"peer": true,
"requires": {
@@ -27998,25 +26788,26 @@
}
},
"es-abstract": {
- "version": "1.21.2",
- "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.21.2.tgz",
- "integrity": "sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==",
+ "version": "1.22.3",
+ "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.3.tgz",
+ "integrity": "sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==",
"dev": true,
"requires": {
"array-buffer-byte-length": "^1.0.0",
+ "arraybuffer.prototype.slice": "^1.0.2",
"available-typed-arrays": "^1.0.5",
- "call-bind": "^1.0.2",
+ "call-bind": "^1.0.5",
"es-set-tostringtag": "^2.0.1",
"es-to-primitive": "^1.2.1",
- "function.prototype.name": "^1.1.5",
- "get-intrinsic": "^1.2.0",
+ "function.prototype.name": "^1.1.6",
+ "get-intrinsic": "^1.2.2",
"get-symbol-description": "^1.0.0",
"globalthis": "^1.0.3",
"gopd": "^1.0.1",
- "has": "^1.0.3",
"has-property-descriptors": "^1.0.0",
"has-proto": "^1.0.1",
"has-symbols": "^1.0.3",
+ "hasown": "^2.0.0",
"internal-slot": "^1.0.5",
"is-array-buffer": "^3.0.2",
"is-callable": "^1.2.7",
@@ -28024,19 +26815,23 @@
"is-regex": "^1.1.4",
"is-shared-array-buffer": "^1.0.2",
"is-string": "^1.0.7",
- "is-typed-array": "^1.1.10",
+ "is-typed-array": "^1.1.12",
"is-weakref": "^1.0.2",
- "object-inspect": "^1.12.3",
+ "object-inspect": "^1.13.1",
"object-keys": "^1.1.1",
"object.assign": "^4.1.4",
- "regexp.prototype.flags": "^1.4.3",
+ "regexp.prototype.flags": "^1.5.1",
+ "safe-array-concat": "^1.0.1",
"safe-regex-test": "^1.0.0",
- "string.prototype.trim": "^1.2.7",
- "string.prototype.trimend": "^1.0.6",
- "string.prototype.trimstart": "^1.0.6",
+ "string.prototype.trim": "^1.2.8",
+ "string.prototype.trimend": "^1.0.7",
+ "string.prototype.trimstart": "^1.0.7",
+ "typed-array-buffer": "^1.0.0",
+ "typed-array-byte-length": "^1.0.0",
+ "typed-array-byte-offset": "^1.0.0",
"typed-array-length": "^1.0.4",
"unbox-primitive": "^1.0.2",
- "which-typed-array": "^1.1.9"
+ "which-typed-array": "^1.1.13"
}
},
"es-array-method-boxes-properly": {
@@ -28046,49 +26841,53 @@
"dev": true,
"peer": true
},
- "es-get-iterator": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.3.tgz",
- "integrity": "sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==",
+ "es-iterator-helpers": {
+ "version": "1.0.15",
+ "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.0.15.tgz",
+ "integrity": "sha512-GhoY8uYqd6iwUl2kgjTm4CZAf6oo5mHK7BPqx3rKgx893YSsy0LGHV6gfqqQvZt/8xM8xeOnfXBCfqclMKkJ5g==",
"dev": true,
- "peer": true,
"requires": {
+ "asynciterator.prototype": "^1.0.0",
"call-bind": "^1.0.2",
- "get-intrinsic": "^1.1.3",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.22.1",
+ "es-set-tostringtag": "^2.0.1",
+ "function-bind": "^1.1.1",
+ "get-intrinsic": "^1.2.1",
+ "globalthis": "^1.0.3",
+ "has-property-descriptors": "^1.0.0",
+ "has-proto": "^1.0.1",
"has-symbols": "^1.0.3",
- "is-arguments": "^1.1.1",
- "is-map": "^2.0.2",
- "is-set": "^2.0.2",
- "is-string": "^1.0.7",
- "isarray": "^2.0.5",
- "stop-iteration-iterator": "^1.0.0"
+ "internal-slot": "^1.0.5",
+ "iterator.prototype": "^1.1.2",
+ "safe-array-concat": "^1.0.1"
}
},
"es-module-lexer": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.2.1.tgz",
- "integrity": "sha512-9978wrXM50Y4rTMmW5kXIC09ZdXQZqkE4mxhwkd8VbzsGkXGPgV4zWuqQJgCEzYngdo2dYDa0l8xhX4fkSwJSg==",
+ "version": "1.4.1",
+ "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.4.1.tgz",
+ "integrity": "sha512-cXLGjP0c4T3flZJKQSuziYoq7MlT+rnvfZjfp7h+I7K9BNX54kP9nyWvdbwjQ4u1iWbOL4u96fgeZLToQlZC7w==",
"dev": true,
"peer": true
},
"es-set-tostringtag": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz",
- "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==",
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.2.tgz",
+ "integrity": "sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==",
"dev": true,
"requires": {
- "get-intrinsic": "^1.1.3",
- "has": "^1.0.3",
- "has-tostringtag": "^1.0.0"
+ "get-intrinsic": "^1.2.2",
+ "has-tostringtag": "^1.0.0",
+ "hasown": "^2.0.0"
}
},
"es-shim-unscopables": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz",
- "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==",
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz",
+ "integrity": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==",
"dev": true,
"requires": {
- "has": "^1.0.3"
+ "hasown": "^2.0.0"
}
},
"es-to-primitive": {
@@ -28115,62 +26914,27 @@
"peer": true
},
"escape-string-regexp": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
- "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg=="
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
+ "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
+ "dev": true
},
"escodegen": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.0.0.tgz",
- "integrity": "sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==",
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz",
+ "integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==",
"requires": {
"esprima": "^4.0.1",
"estraverse": "^5.2.0",
"esutils": "^2.0.2",
- "optionator": "^0.8.1",
"source-map": "~0.6.1"
},
"dependencies": {
- "levn": {
- "version": "0.3.0",
- "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz",
- "integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==",
- "requires": {
- "prelude-ls": "~1.1.2",
- "type-check": "~0.3.2"
- }
- },
- "optionator": {
- "version": "0.8.3",
- "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz",
- "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==",
- "requires": {
- "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"
- }
- },
- "prelude-ls": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz",
- "integrity": "sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w=="
- },
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"optional": true
- },
- "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==",
- "requires": {
- "prelude-ls": "~1.1.2"
- }
}
}
},
@@ -28220,89 +26984,22 @@
"text-table": "^0.2.0"
},
"dependencies": {
- "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,
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "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
- },
- "chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "dev": true,
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "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,
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "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
- },
- "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
- },
- "globals": {
- "version": "13.20.0",
- "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz",
- "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==",
- "dev": true,
- "requires": {
- "type-fest": "^0.20.2"
- }
- },
- "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
- },
- "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,
- "requires": {
- "argparse": "^2.0.1"
- }
- },
- "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==",
+ "ajv": {
+ "version": "6.12.6",
+ "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
+ "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
"dev": true,
"requires": {
- "has-flag": "^4.0.0"
+ "fast-deep-equal": "^3.1.1",
+ "fast-json-stable-stringify": "^2.0.0",
+ "json-schema-traverse": "^0.4.1",
+ "uri-js": "^4.2.2"
}
},
- "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==",
+ "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
}
}
@@ -28342,14 +27039,14 @@
}
},
"eslint-import-resolver-node": {
- "version": "0.3.7",
- "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz",
- "integrity": "sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==",
+ "version": "0.3.9",
+ "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz",
+ "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==",
"dev": true,
"requires": {
"debug": "^3.2.7",
- "is-core-module": "^2.11.0",
- "resolve": "^1.22.1"
+ "is-core-module": "^2.13.0",
+ "resolve": "^1.22.4"
},
"dependencies": {
"debug": {
@@ -28391,45 +27088,20 @@
"requires": {
"eslint-utils": "^2.0.0",
"regexpp": "^3.0.0"
- },
- "dependencies": {
- "eslint-utils": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz",
- "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==",
- "dev": true,
- "requires": {
- "eslint-visitor-keys": "^1.1.0"
- }
- },
- "eslint-visitor-keys": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz",
- "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==",
- "dev": true
- }
}
},
"eslint-plugin-etc": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/eslint-plugin-etc/-/eslint-plugin-etc-2.0.2.tgz",
- "integrity": "sha512-g3b95LCdTCwZA8On9EICYL8m1NMWaiGfmNUd/ftZTeGZDXrwujKXUr+unYzqKjKFo1EbqJ31vt+Dqzrdm/sUcw==",
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-etc/-/eslint-plugin-etc-2.0.3.tgz",
+ "integrity": "sha512-o5RS/0YwtjlGKWjhKojgmm82gV1b4NQUuwk9zqjy9/EjxNFKKYCaF+0M7DkYBn44mJ6JYFZw3Ft249dkKuR1ew==",
"dev": true,
"requires": {
- "@phenomnomnominal/tsquery": "^4.0.0",
+ "@phenomnomnominal/tsquery": "^5.0.0",
"@typescript-eslint/experimental-utils": "^5.0.0",
"eslint-etc": "^5.1.0",
"requireindex": "~1.2.0",
"tslib": "^2.0.0",
"tsutils": "^3.0.0"
- },
- "dependencies": {
- "tslib": {
- "version": "2.5.0",
- "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz",
- "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==",
- "dev": true
- }
}
},
"eslint-plugin-flowtype": {
@@ -28444,26 +27116,28 @@
}
},
"eslint-plugin-import": {
- "version": "2.27.5",
- "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.27.5.tgz",
- "integrity": "sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==",
+ "version": "2.29.1",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.29.1.tgz",
+ "integrity": "sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==",
"dev": true,
"requires": {
- "array-includes": "^3.1.6",
- "array.prototype.flat": "^1.3.1",
- "array.prototype.flatmap": "^1.3.1",
+ "array-includes": "^3.1.7",
+ "array.prototype.findlastindex": "^1.2.3",
+ "array.prototype.flat": "^1.3.2",
+ "array.prototype.flatmap": "^1.3.2",
"debug": "^3.2.7",
"doctrine": "^2.1.0",
- "eslint-import-resolver-node": "^0.3.7",
- "eslint-module-utils": "^2.7.4",
- "has": "^1.0.3",
- "is-core-module": "^2.11.0",
+ "eslint-import-resolver-node": "^0.3.9",
+ "eslint-module-utils": "^2.8.0",
+ "hasown": "^2.0.0",
+ "is-core-module": "^2.13.1",
"is-glob": "^4.0.3",
"minimatch": "^3.1.2",
- "object.values": "^1.1.6",
- "resolve": "^1.22.1",
- "semver": "^6.3.0",
- "tsconfig-paths": "^3.14.1"
+ "object.fromentries": "^2.0.7",
+ "object.groupby": "^1.0.1",
+ "object.values": "^1.1.7",
+ "semver": "^6.3.1",
+ "tsconfig-paths": "^3.15.0"
},
"dependencies": {
"debug": {
@@ -28485,9 +27159,9 @@
}
},
"semver": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
- "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
"dev": true
}
}
@@ -28503,37 +27177,28 @@
}
},
"eslint-plugin-jsx-a11y": {
- "version": "6.7.1",
- "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.7.1.tgz",
- "integrity": "sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==",
+ "version": "6.8.0",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.8.0.tgz",
+ "integrity": "sha512-Hdh937BS3KdwwbBaKd5+PLCOmYY6U4f2h9Z2ktwtNKvIdIEu137rjYbcb9ApSbVJfWxANNuiKTD/9tOKjK9qOA==",
"dev": true,
"peer": true,
"requires": {
- "@babel/runtime": "^7.20.7",
- "aria-query": "^5.1.3",
- "array-includes": "^3.1.6",
- "array.prototype.flatmap": "^1.3.1",
- "ast-types-flow": "^0.0.7",
- "axe-core": "^4.6.2",
- "axobject-query": "^3.1.1",
+ "@babel/runtime": "^7.23.2",
+ "aria-query": "^5.3.0",
+ "array-includes": "^3.1.7",
+ "array.prototype.flatmap": "^1.3.2",
+ "ast-types-flow": "^0.0.8",
+ "axe-core": "=4.7.0",
+ "axobject-query": "^3.2.1",
"damerau-levenshtein": "^1.0.8",
"emoji-regex": "^9.2.2",
- "has": "^1.0.3",
- "jsx-ast-utils": "^3.3.3",
- "language-tags": "=1.0.5",
+ "es-iterator-helpers": "^1.0.15",
+ "hasown": "^2.0.0",
+ "jsx-ast-utils": "^3.3.5",
+ "language-tags": "^1.0.9",
"minimatch": "^3.1.2",
- "object.entries": "^1.1.6",
- "object.fromentries": "^2.0.6",
- "semver": "^6.3.0"
- },
- "dependencies": {
- "semver": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
- "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
- "dev": true,
- "peer": true
- }
+ "object.entries": "^1.1.7",
+ "object.fromentries": "^2.0.7"
}
},
"eslint-plugin-node": {
@@ -28550,21 +27215,6 @@
"semver": "^6.1.0"
},
"dependencies": {
- "eslint-utils": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz",
- "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==",
- "dev": true,
- "requires": {
- "eslint-visitor-keys": "^1.1.0"
- }
- },
- "eslint-visitor-keys": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz",
- "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==",
- "dev": true
- },
"semver": {
"version": "6.3.1",
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
@@ -28581,15 +27231,16 @@
"requires": {}
},
"eslint-plugin-react": {
- "version": "7.32.2",
- "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.32.2.tgz",
- "integrity": "sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==",
+ "version": "7.33.2",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.33.2.tgz",
+ "integrity": "sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==",
"dev": true,
"requires": {
"array-includes": "^3.1.6",
"array.prototype.flatmap": "^1.3.1",
"array.prototype.tosorted": "^1.1.1",
"doctrine": "^2.1.0",
+ "es-iterator-helpers": "^1.0.12",
"estraverse": "^5.3.0",
"jsx-ast-utils": "^2.4.1 || ^3.0.0",
"minimatch": "^3.1.2",
@@ -28599,7 +27250,7 @@
"object.values": "^1.1.6",
"prop-types": "^15.8.1",
"resolve": "^2.0.0-next.4",
- "semver": "^6.3.0",
+ "semver": "^6.3.1",
"string.prototype.matchall": "^4.0.8"
},
"dependencies": {
@@ -28613,20 +27264,20 @@
}
},
"resolve": {
- "version": "2.0.0-next.4",
- "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz",
- "integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==",
+ "version": "2.0.0-next.5",
+ "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.5.tgz",
+ "integrity": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==",
"dev": true,
"requires": {
- "is-core-module": "^2.9.0",
+ "is-core-module": "^2.13.0",
"path-parse": "^1.0.7",
"supports-preserve-symlinks-flag": "^1.0.0"
}
},
"semver": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
- "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
"dev": true
}
}
@@ -28684,9 +27335,9 @@
}
},
"eslint-plugin-testing-library": {
- "version": "5.10.3",
- "resolved": "https://registry.npmjs.org/eslint-plugin-testing-library/-/eslint-plugin-testing-library-5.10.3.tgz",
- "integrity": "sha512-0yhsKFsjHLud5PM+f2dWr9K3rqYzMy4cSHs3lcmFYMa1CdSzRvHGgXvsFarBjZ41gU8jhTdMIkg8jHLxGJqLqw==",
+ "version": "5.11.1",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-testing-library/-/eslint-plugin-testing-library-5.11.1.tgz",
+ "integrity": "sha512-5eX9e1Kc2PqVRed3taaLnAAqPZGEX75C+M/rXzUAI3wIg/ZxzUm1OVAwfe/O+vE+6YXOLetSe9g5GKD2ecXipw==",
"dev": true,
"peer": true,
"requires": {
@@ -28718,6 +27369,23 @@
"estraverse": "^5.2.0"
}
},
+ "eslint-utils": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz",
+ "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==",
+ "dev": true,
+ "requires": {
+ "eslint-visitor-keys": "^1.1.0"
+ },
+ "dependencies": {
+ "eslint-visitor-keys": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz",
+ "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==",
+ "dev": true
+ }
+ }
+ },
"eslint-visitor-keys": {
"version": "3.4.3",
"resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz",
@@ -28738,36 +27406,6 @@
"schema-utils": "^4.0.0"
},
"dependencies": {
- "ajv": {
- "version": "8.12.0",
- "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz",
- "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==",
- "dev": true,
- "peer": true,
- "requires": {
- "fast-deep-equal": "^3.1.1",
- "json-schema-traverse": "^1.0.0",
- "require-from-string": "^2.0.2",
- "uri-js": "^4.2.2"
- }
- },
- "ajv-keywords": {
- "version": "5.1.0",
- "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz",
- "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==",
- "dev": true,
- "peer": true,
- "requires": {
- "fast-deep-equal": "^3.1.3"
- }
- },
- "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,
- "peer": true
- },
"jest-worker": {
"version": "28.1.3",
"resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-28.1.3.tgz",
@@ -28780,17 +27418,10 @@
"supports-color": "^8.0.0"
}
},
- "json-schema-traverse": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
- "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
- "dev": true,
- "peer": true
- },
"schema-utils": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.1.tgz",
- "integrity": "sha512-lELhBAAly9NowEsX0yZBlw9ahZG+sK/1RJ21EpzdYHKEs13Vku3LJ+MIPhh4sMs0oCCeufZQEQbMekiA4vuVIQ==",
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz",
+ "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==",
"dev": true,
"peer": true,
"requires": {
@@ -28956,13 +27587,6 @@
"vary": "~1.1.2"
},
"dependencies": {
- "array-flatten": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz",
- "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==",
- "dev": true,
- "peer": true
- },
"debug": {
"version": "2.6.9",
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
@@ -28979,6 +27603,16 @@
"integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
"dev": true,
"peer": true
+ },
+ "qs": {
+ "version": "6.11.0",
+ "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz",
+ "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==",
+ "dev": true,
+ "peer": true,
+ "requires": {
+ "side-channel": "^1.0.4"
+ }
}
}
},
@@ -28991,17 +27625,6 @@
"chardet": "^0.7.0",
"iconv-lite": "^0.4.24",
"tmp": "^0.0.33"
- },
- "dependencies": {
- "iconv-lite": {
- "version": "0.4.24",
- "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
- "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
- "dev": true,
- "requires": {
- "safer-buffer": ">= 2.1.2 < 3"
- }
- }
}
},
"fast-deep-equal": {
@@ -29011,9 +27634,9 @@
"dev": true
},
"fast-glob": {
- "version": "3.2.12",
- "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz",
- "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==",
+ "version": "3.3.2",
+ "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz",
+ "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==",
"dev": true,
"requires": {
"@nodelib/fs.stat": "^2.0.2",
@@ -29042,7 +27665,8 @@
"fast-levenshtein": {
"version": "2.0.6",
"resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
- "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw=="
+ "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==",
+ "dev": true
},
"fast-safe-stringify": {
"version": "2.1.1",
@@ -29050,9 +27674,9 @@
"integrity": "sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA=="
},
"fastq": {
- "version": "1.15.0",
- "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz",
- "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==",
+ "version": "1.17.0",
+ "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.0.tgz",
+ "integrity": "sha512-zGygtijUMT7jnk3h26kUms3BkSDp4IfIKjmnqI2tvx6nuBfiF1UqOxbnLfzdv+apBy+53oaImsKtMw/xYbW+1w==",
"dev": true,
"requires": {
"reusify": "^1.0.4"
@@ -29083,6 +27707,14 @@
"dev": true,
"requires": {
"escape-string-regexp": "^1.0.5"
+ },
+ "dependencies": {
+ "escape-string-regexp": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
+ "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==",
+ "dev": true
+ }
}
},
"file-entry-cache": {
@@ -29197,6 +27829,25 @@
"commondir": "^1.0.1",
"make-dir": "^3.0.2",
"pkg-dir": "^4.1.0"
+ },
+ "dependencies": {
+ "make-dir": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz",
+ "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==",
+ "dev": true,
+ "peer": true,
+ "requires": {
+ "semver": "^6.0.0"
+ }
+ },
+ "semver": {
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
+ "dev": true,
+ "peer": true
+ }
}
},
"find-root": {
@@ -29217,25 +27868,26 @@
}
},
"flat-cache": {
- "version": "3.0.4",
- "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz",
- "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==",
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz",
+ "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==",
"dev": true,
"requires": {
- "flatted": "^3.1.0",
+ "flatted": "^3.2.9",
+ "keyv": "^4.5.3",
"rimraf": "^3.0.2"
}
},
"flatted": {
- "version": "3.2.7",
- "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz",
- "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==",
+ "version": "3.2.9",
+ "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.9.tgz",
+ "integrity": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==",
"dev": true
},
"follow-redirects": {
- "version": "1.15.2",
- "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz",
- "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==",
+ "version": "1.15.5",
+ "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.5.tgz",
+ "integrity": "sha512-vSFWUON1B+yAw1VN4xMfxgn5fTUiaOzAJCKBwIIgT/+7CuGy9+r+5gITvP62j3RmaD5Ph65UaERdOSRGUzZtgw==",
"dev": true,
"peer": true
},
@@ -29248,6 +27900,26 @@
"is-callable": "^1.1.3"
}
},
+ "foreground-child": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz",
+ "integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==",
+ "dev": true,
+ "peer": true,
+ "requires": {
+ "cross-spawn": "^7.0.0",
+ "signal-exit": "^4.0.1"
+ },
+ "dependencies": {
+ "signal-exit": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz",
+ "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
+ "dev": true,
+ "peer": true
+ }
+ }
+ },
"fork-ts-checker-webpack-plugin": {
"version": "6.5.3",
"resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.5.3.tgz",
@@ -29270,43 +27942,26 @@
"tapable": "^1.0.0"
},
"dependencies": {
- "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,
- "peer": true,
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "ajv": {
+ "version": "6.12.6",
+ "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
+ "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
"dev": true,
"peer": true,
"requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
+ "fast-deep-equal": "^3.1.1",
+ "fast-json-stable-stringify": "^2.0.0",
+ "json-schema-traverse": "^0.4.1",
+ "uri-js": "^4.2.2"
}
},
- "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==",
+ "ajv-keywords": {
+ "version": "3.5.2",
+ "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz",
+ "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==",
"dev": true,
"peer": true,
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "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,
- "peer": true
+ "requires": {}
},
"cosmiconfig": {
"version": "6.0.0",
@@ -29342,10 +27997,10 @@
"universalify": "^2.0.0"
}
},
- "has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "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,
"peer": true
},
@@ -29361,16 +28016,6 @@
"ajv-keywords": "^3.4.1"
}
},
- "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,
- "peer": true,
- "requires": {
- "has-flag": "^4.0.0"
- }
- },
"tapable": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz",
@@ -29402,19 +28047,20 @@
}
},
"formik": {
- "version": "2.2.9",
- "resolved": "https://registry.npmjs.org/formik/-/formik-2.2.9.tgz",
- "integrity": "sha512-LQLcISMmf1r5at4/gyJigGn0gOwFbeEAlji+N9InZF6LIMXnFNkO42sCI8Jt84YZggpD4cPWObAZaxpEFtSzNA==",
+ "version": "2.4.5",
+ "resolved": "https://registry.npmjs.org/formik/-/formik-2.4.5.tgz",
+ "integrity": "sha512-Gxlht0TD3vVdzMDHwkiNZqJ7Mvg77xQNfmBRrNtvzcHZs72TJppSTDKHpImCMJZwcWPBJ8jSQQ95GJzXFf1nAQ==",
"dev": true,
"peer": true,
"requires": {
+ "@types/hoist-non-react-statics": "^3.3.1",
"deepmerge": "^2.1.1",
"hoist-non-react-statics": "^3.3.0",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"react-fast-compare": "^2.0.1",
"tiny-warning": "^1.0.2",
- "tslib": "^1.10.0"
+ "tslib": "^2.0.0"
}
},
"forwarded": {
@@ -29425,9 +28071,9 @@
"peer": true
},
"fraction.js": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz",
- "integrity": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==",
+ "version": "4.3.7",
+ "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz",
+ "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==",
"dev": true,
"peer": true
},
@@ -29439,11 +28085,10 @@
"peer": true
},
"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==",
+ "version": "11.2.0",
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz",
+ "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==",
"dev": true,
- "peer": true,
"requires": {
"graceful-fs": "^4.2.0",
"jsonfile": "^6.0.1",
@@ -29451,9 +28096,9 @@
}
},
"fs-monkey": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.3.tgz",
- "integrity": "sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==",
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.5.tgz",
+ "integrity": "sha512-8uMbBjrhzW76TYgEV27Y5E//W2f/lTFmx78P2w19FZSxarhI/798APGQyuGCwmkNxgwGRhrLfvWyLBvNtuOmew==",
"dev": true,
"peer": true
},
@@ -29463,26 +28108,26 @@
"integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw=="
},
"fsevents": {
- "version": "2.3.2",
- "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz",
- "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==",
+ "version": "2.3.3",
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
+ "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
"optional": true
},
"function-bind": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
- "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
+ "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA=="
},
"function.prototype.name": {
- "version": "1.1.5",
- "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz",
- "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==",
+ "version": "1.1.6",
+ "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz",
+ "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==",
"dev": true,
"requires": {
"call-bind": "^1.0.2",
- "define-properties": "^1.1.3",
- "es-abstract": "^1.19.0",
- "functions-have-names": "^1.2.2"
+ "define-properties": "^1.2.0",
+ "es-abstract": "^1.22.1",
+ "functions-have-names": "^1.2.3"
}
},
"functions-have-names": {
@@ -29502,13 +28147,14 @@
"integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg=="
},
"get-intrinsic": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.0.tgz",
- "integrity": "sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==",
+ "version": "1.2.2",
+ "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.2.tgz",
+ "integrity": "sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==",
"requires": {
- "function-bind": "^1.1.1",
- "has": "^1.0.3",
- "has-symbols": "^1.0.3"
+ "function-bind": "^1.1.2",
+ "has-proto": "^1.0.1",
+ "has-symbols": "^1.0.3",
+ "hasown": "^2.0.0"
}
},
"get-own-enumerable-property-symbols": {
@@ -29624,9 +28270,13 @@
}
},
"globals": {
- "version": "11.12.0",
- "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz",
- "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="
+ "version": "13.24.0",
+ "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz",
+ "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==",
+ "dev": true,
+ "requires": {
+ "type-fest": "^0.20.2"
+ }
},
"globalthis": {
"version": "1.0.3",
@@ -29655,7 +28305,6 @@
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz",
"integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==",
- "dev": true,
"requires": {
"get-intrinsic": "^1.1.3"
}
@@ -29665,13 +28314,6 @@
"resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
"integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ=="
},
- "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,
- "peer": true
- },
"graphemer": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz",
@@ -29708,14 +28350,6 @@
"dev": true,
"peer": true
},
- "has": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz",
- "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==",
- "requires": {
- "function-bind": "^1.1.1"
- }
- },
"has-bigints": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz",
@@ -29723,24 +28357,22 @@
"dev": true
},
"has-flag": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
- "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw=="
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
},
"has-property-descriptors": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz",
- "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==",
- "dev": true,
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.1.tgz",
+ "integrity": "sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==",
"requires": {
- "get-intrinsic": "^1.1.1"
+ "get-intrinsic": "^1.2.2"
}
},
"has-proto": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz",
- "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==",
- "dev": true
+ "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg=="
},
"has-symbols": {
"version": "1.0.3",
@@ -29748,12 +28380,20 @@
"integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A=="
},
"has-tostringtag": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz",
- "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==",
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz",
+ "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==",
"dev": true,
"requires": {
- "has-symbols": "^1.0.2"
+ "has-symbols": "^1.0.3"
+ }
+ },
+ "hasown": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz",
+ "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==",
+ "requires": {
+ "function-bind": "^1.1.2"
}
},
"he": {
@@ -29874,9 +28514,9 @@
}
},
"html-entities": {
- "version": "2.3.3",
- "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.3.3.tgz",
- "integrity": "sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA==",
+ "version": "2.4.0",
+ "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.4.0.tgz",
+ "integrity": "sha512-igBTJcNNNhvZFRtm8uA6xMY6xYleeDwn3PeBCkDz7tHttv4F2hsDI2aPgNERWzvRcNYHNT3ymRaQzllmXj4YsQ==",
"dev": true,
"peer": true
},
@@ -29902,9 +28542,9 @@
}
},
"html-webpack-plugin": {
- "version": "5.5.1",
- "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.5.1.tgz",
- "integrity": "sha512-cTUzZ1+NqjGEKjmVgZKLMdiFg3m9MdRXkZW2OEe69WYVi5ONLMmlnSZdXzGGMOq0C8jGDrL6EWyEDDUioHO/pA==",
+ "version": "5.6.0",
+ "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.6.0.tgz",
+ "integrity": "sha512-iwaY4wzbe48AfKLZ/Cc8k0L+FKG6oSNRaZ8x5A/T/IVDGyXcbHncM9TdDa93wn0FsSm82FhTKW7f3vS61thXAw==",
"dev": true,
"peer": true,
"requires": {
@@ -29990,6 +28630,15 @@
"is-glob": "^4.0.1",
"is-plain-obj": "^3.0.0",
"micromatch": "^4.0.2"
+ },
+ "dependencies": {
+ "is-plain-obj": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz",
+ "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==",
+ "dev": true,
+ "peer": true
+ }
}
},
"https-proxy-agent": {
@@ -30013,13 +28662,11 @@
"dev": true
},
"iconv-lite": {
- "version": "0.6.3",
- "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz",
- "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==",
- "dev": true,
- "peer": true,
+ "version": "0.4.24",
+ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
+ "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
"requires": {
- "safer-buffer": ">= 2.1.2 < 3.0.0"
+ "safer-buffer": ">= 2.1.2 < 3"
}
},
"icss-utils": {
@@ -30048,9 +28695,9 @@
}
},
"ignore": {
- "version": "5.2.4",
- "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz",
- "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==",
+ "version": "5.3.1",
+ "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz",
+ "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==",
"dev": true
},
"immer": {
@@ -30139,51 +28786,59 @@
"through": "^2.3.6"
},
"dependencies": {
- "ansi-escapes": {
- "version": "3.2.0",
- "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz",
- "integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==",
- "dev": true
- },
"ansi-regex": {
"version": "4.1.1",
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz",
"integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==",
"dev": true
},
- "is-fullwidth-code-point": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz",
- "integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==",
- "dev": true
+ "ansi-styles": {
+ "version": "3.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
+ "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
+ "dev": true,
+ "requires": {
+ "color-convert": "^1.9.0"
+ }
},
- "string-width": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz",
- "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==",
+ "chalk": {
+ "version": "2.4.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
+ "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
"dev": true,
"requires": {
- "is-fullwidth-code-point": "^2.0.0",
- "strip-ansi": "^4.0.0"
- },
- "dependencies": {
- "ansi-regex": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz",
- "integrity": "sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==",
- "dev": true
- },
- "strip-ansi": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz",
- "integrity": "sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==",
- "dev": true,
- "requires": {
- "ansi-regex": "^3.0.0"
- }
- }
+ "ansi-styles": "^3.2.1",
+ "escape-string-regexp": "^1.0.5",
+ "supports-color": "^5.3.0"
}
},
+ "color-convert": {
+ "version": "1.9.3",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
+ "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
+ "dev": true,
+ "requires": {
+ "color-name": "1.1.3"
+ }
+ },
+ "color-name": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
+ "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==",
+ "dev": true
+ },
+ "escape-string-regexp": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
+ "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==",
+ "dev": true
+ },
+ "has-flag": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
+ "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==",
+ "dev": true
+ },
"strip-ansi": {
"version": "5.2.0",
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz",
@@ -30192,47 +28847,44 @@
"requires": {
"ansi-regex": "^4.1.0"
}
+ },
+ "supports-color": {
+ "version": "5.5.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
+ "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^3.0.0"
+ }
}
}
},
"internal-slot": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz",
- "integrity": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==",
+ "version": "1.0.6",
+ "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.6.tgz",
+ "integrity": "sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==",
"dev": true,
"requires": {
- "get-intrinsic": "^1.2.0",
- "has": "^1.0.3",
+ "get-intrinsic": "^1.2.2",
+ "hasown": "^2.0.0",
"side-channel": "^1.0.4"
}
},
"ipaddr.js": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.0.1.tgz",
- "integrity": "sha512-1qTgH9NG+IIJ4yfKs2e6Pp1bZg8wbDbKHT21HrLIeYBTRLgMYKnMTPAuI3Lcs61nfx5h1xlXnbJtH1kX5/d/ng==",
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.1.0.tgz",
+ "integrity": "sha512-LlbxQ7xKzfBusov6UMi4MFpEg0m+mAm9xyNGEduwXMEDuf4WfzB/RZwMVYEd7IKGvh4IUkEXYxtAVu9T3OelJQ==",
"dev": true,
"peer": true
},
- "is-arguments": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz",
- "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==",
- "dev": true,
- "peer": true,
- "requires": {
- "call-bind": "^1.0.2",
- "has-tostringtag": "^1.0.0"
- }
- },
"is-array-buffer": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz",
- "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==",
+ "version": "3.0.4",
+ "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz",
+ "integrity": "sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==",
"dev": true,
"requires": {
"call-bind": "^1.0.2",
- "get-intrinsic": "^1.2.0",
- "is-typed-array": "^1.1.10"
+ "get-intrinsic": "^1.2.1"
}
},
"is-arrayish": {
@@ -30240,6 +28892,15 @@
"resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz",
"integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg=="
},
+ "is-async-function": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.0.0.tgz",
+ "integrity": "sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==",
+ "dev": true,
+ "requires": {
+ "has-tostringtag": "^1.0.0"
+ }
+ },
"is-bigint": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz",
@@ -30276,11 +28937,11 @@
"dev": true
},
"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==",
+ "version": "2.13.1",
+ "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz",
+ "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==",
"requires": {
- "has": "^1.0.3"
+ "hasown": "^2.0.0"
}
},
"is-date-object": {
@@ -30305,16 +28966,35 @@
"integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
"dev": true
},
+ "is-finalizationregistry": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.0.2.tgz",
+ "integrity": "sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==",
+ "dev": true,
+ "requires": {
+ "call-bind": "^1.0.2"
+ }
+ },
"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=="
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz",
+ "integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==",
+ "dev": true
},
"is-generator-fn": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz",
"integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ=="
},
+ "is-generator-function": {
+ "version": "1.0.10",
+ "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz",
+ "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==",
+ "dev": true,
+ "requires": {
+ "has-tostringtag": "^1.0.0"
+ }
+ },
"is-glob": {
"version": "4.0.3",
"resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
@@ -30328,8 +29008,7 @@
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz",
"integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==",
- "dev": true,
- "peer": true
+ "dev": true
},
"is-module": {
"version": "1.0.0",
@@ -30359,11 +29038,10 @@
}
},
"is-obj": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz",
- "integrity": "sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==",
- "dev": true,
- "peer": true
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz",
+ "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==",
+ "dev": true
},
"is-path-inside": {
"version": "3.0.3",
@@ -30372,11 +29050,10 @@
"dev": true
},
"is-plain-obj": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz",
- "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==",
- "dev": true,
- "peer": true
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz",
+ "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==",
+ "dev": true
},
"is-potential-custom-element-name": {
"version": "1.0.1",
@@ -30411,8 +29088,7 @@
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz",
"integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==",
- "dev": true,
- "peer": true
+ "dev": true
},
"is-shared-array-buffer": {
"version": "1.0.2",
@@ -30456,16 +29132,12 @@
}
},
"is-typed-array": {
- "version": "1.1.10",
- "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz",
- "integrity": "sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==",
+ "version": "1.1.13",
+ "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz",
+ "integrity": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==",
"dev": true,
"requires": {
- "available-typed-arrays": "^1.0.5",
- "call-bind": "^1.0.2",
- "for-each": "^0.3.3",
- "gopd": "^1.0.1",
- "has-tostringtag": "^1.0.0"
+ "which-typed-array": "^1.1.14"
}
},
"is-typedarray": {
@@ -30477,8 +29149,7 @@
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz",
"integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==",
- "dev": true,
- "peer": true
+ "dev": true
},
"is-weakref": {
"version": "1.0.2",
@@ -30494,7 +29165,6 @@
"resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz",
"integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==",
"dev": true,
- "peer": true,
"requires": {
"call-bind": "^1.0.2",
"get-intrinsic": "^1.1.1"
@@ -30514,8 +29184,7 @@
"version": "2.0.5",
"resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz",
"integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==",
- "dev": true,
- "peer": true
+ "dev": true
},
"isexe": {
"version": "2.0.0",
@@ -30523,9 +29192,9 @@
"integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw=="
},
"istanbul-lib-coverage": {
- "version": "3.2.0",
- "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz",
- "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw=="
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz",
+ "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg=="
},
"istanbul-lib-instrument": {
"version": "5.2.1",
@@ -30540,35 +29209,20 @@
},
"dependencies": {
"semver": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
- "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw=="
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="
}
}
},
"istanbul-lib-report": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz",
- "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==",
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz",
+ "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==",
"requires": {
"istanbul-lib-coverage": "^3.0.0",
- "make-dir": "^3.0.0",
+ "make-dir": "^4.0.0",
"supports-color": "^7.1.0"
- },
- "dependencies": {
- "has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
- },
- "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==",
- "requires": {
- "has-flag": "^4.0.0"
- }
- }
}
},
"istanbul-lib-source-maps": {
@@ -30589,82 +29243,49 @@
}
},
"istanbul-reports": {
- "version": "3.1.5",
- "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.5.tgz",
- "integrity": "sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==",
+ "version": "3.1.6",
+ "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.6.tgz",
+ "integrity": "sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==",
"requires": {
"html-escaper": "^2.0.0",
"istanbul-lib-report": "^3.0.0"
}
},
+ "iterator.prototype": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.2.tgz",
+ "integrity": "sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==",
+ "dev": true,
+ "requires": {
+ "define-properties": "^1.2.1",
+ "get-intrinsic": "^1.2.1",
+ "has-symbols": "^1.0.3",
+ "reflect.getprototypeof": "^1.0.4",
+ "set-function-name": "^2.0.1"
+ }
+ },
+ "jackspeak": {
+ "version": "2.3.6",
+ "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.3.6.tgz",
+ "integrity": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==",
+ "dev": true,
+ "peer": true,
+ "requires": {
+ "@isaacs/cliui": "^8.0.2",
+ "@pkgjs/parseargs": "^0.11.0"
+ }
+ },
"jake": {
- "version": "10.8.5",
- "resolved": "https://registry.npmjs.org/jake/-/jake-10.8.5.tgz",
- "integrity": "sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw==",
+ "version": "10.8.7",
+ "resolved": "https://registry.npmjs.org/jake/-/jake-10.8.7.tgz",
+ "integrity": "sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==",
"dev": true,
"peer": true,
"requires": {
"async": "^3.2.3",
"chalk": "^4.0.2",
- "filelist": "^1.0.1",
- "minimatch": "^3.0.4"
- },
- "dependencies": {
- "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,
- "peer": true,
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "dev": true,
- "peer": true,
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "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,
- "peer": true,
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "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,
- "peer": true
- },
- "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,
- "peer": true
- },
- "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,
- "peer": true,
- "requires": {
- "has-flag": "^4.0.0"
- }
- }
+ "filelist": "^1.0.4",
+ "minimatch": "^3.1.2"
}
},
"jest": {
@@ -30711,51 +29332,6 @@
"slash": "^3.0.0",
"stack-utils": "^2.0.3",
"throat": "^6.0.1"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "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==",
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "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=="
- },
- "has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
- },
- "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==",
- "requires": {
- "has-flag": "^4.0.0"
- }
- }
}
},
"jest-cli": {
@@ -30777,47 +29353,48 @@
"yargs": "^16.2.0"
},
"dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "cliui": {
+ "version": "7.0.4",
+ "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz",
+ "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==",
"requires": {
- "color-convert": "^2.0.1"
+ "string-width": "^4.2.0",
+ "strip-ansi": "^6.0.0",
+ "wrap-ansi": "^7.0.0"
}
},
- "chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
+ "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=="
},
- "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==",
+ "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=="
+ },
+ "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==",
"requires": {
- "color-name": "~1.1.4"
+ "emoji-regex": "^8.0.0",
+ "is-fullwidth-code-point": "^3.0.0",
+ "strip-ansi": "^6.0.1"
}
},
- "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=="
- },
- "has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
- },
- "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==",
+ "yargs": {
+ "version": "16.2.0",
+ "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz",
+ "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==",
"requires": {
- "has-flag": "^4.0.0"
+ "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"
}
}
}
@@ -30853,53 +29430,10 @@
"strip-json-comments": "^3.1.1"
},
"dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "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==",
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "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=="
- },
"deepmerge": {
"version": "4.3.1",
"resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz",
"integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A=="
- },
- "has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
- },
- "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==",
- "requires": {
- "has-flag": "^4.0.0"
- }
}
}
},
@@ -30912,51 +29446,6 @@
"diff-sequences": "^27.5.1",
"jest-get-type": "^27.5.1",
"pretty-format": "^27.5.1"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "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==",
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "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=="
- },
- "has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
- },
- "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==",
- "requires": {
- "has-flag": "^4.0.0"
- }
- }
}
},
"jest-docblock": {
@@ -30977,51 +29466,6 @@
"jest-get-type": "^27.5.1",
"jest-util": "^27.5.1",
"pretty-format": "^27.5.1"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "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==",
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "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=="
- },
- "has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
- },
- "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==",
- "requires": {
- "has-flag": "^4.0.0"
- }
- }
}
},
"jest-environment-jsdom": {
@@ -31098,51 +29542,6 @@
"jest-util": "^27.5.1",
"pretty-format": "^27.5.1",
"throat": "^6.0.1"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "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==",
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "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=="
- },
- "has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
- },
- "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==",
- "requires": {
- "has-flag": "^4.0.0"
- }
- }
}
},
"jest-leak-detector": {
@@ -31163,51 +29562,6 @@
"jest-diff": "^27.5.1",
"jest-get-type": "^27.5.1",
"pretty-format": "^27.5.1"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "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==",
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "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=="
- },
- "has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
- },
- "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==",
- "requires": {
- "has-flag": "^4.0.0"
- }
- }
}
},
"jest-message-util": {
@@ -31224,51 +29578,6 @@
"pretty-format": "^27.5.1",
"slash": "^3.0.0",
"stack-utils": "^2.0.3"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "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==",
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "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=="
- },
- "has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
- },
- "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==",
- "requires": {
- "has-flag": "^4.0.0"
- }
- }
}
},
"jest-mock": {
@@ -31306,51 +29615,6 @@
"resolve": "^1.20.0",
"resolve.exports": "^1.1.0",
"slash": "^3.0.0"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "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==",
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "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=="
- },
- "has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
- },
- "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==",
- "requires": {
- "has-flag": "^4.0.0"
- }
- }
}
},
"jest-resolve-dependencies": {
@@ -31389,51 +29653,6 @@
"jest-worker": "^27.5.1",
"source-map-support": "^0.5.6",
"throat": "^6.0.1"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "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==",
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "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=="
- },
- "has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
- },
- "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==",
- "requires": {
- "has-flag": "^4.0.0"
- }
- }
}
},
"jest-runtime": {
@@ -31463,51 +29682,6 @@
"jest-util": "^27.5.1",
"slash": "^3.0.0",
"strip-bom": "^4.0.0"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "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==",
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "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=="
- },
- "has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
- },
- "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==",
- "requires": {
- "has-flag": "^4.0.0"
- }
- }
}
},
"jest-serializer": {
@@ -31546,51 +29720,6 @@
"natural-compare": "^1.4.0",
"pretty-format": "^27.5.1",
"semver": "^7.3.2"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "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==",
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "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=="
- },
- "has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
- },
- "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==",
- "requires": {
- "has-flag": "^4.0.0"
- }
- }
}
},
"jest-util": {
@@ -31604,51 +29733,6 @@
"ci-info": "^3.2.0",
"graceful-fs": "^4.2.9",
"picomatch": "^2.2.3"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "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==",
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "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=="
- },
- "has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
- },
- "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==",
- "requires": {
- "has-flag": "^4.0.0"
- }
- }
}
},
"jest-validate": {
@@ -31664,48 +29748,10 @@
"pretty-format": "^27.5.1"
},
"dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "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==",
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "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=="
- },
- "has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
- },
- "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==",
- "requires": {
- "has-flag": "^4.0.0"
- }
+ "camelcase": {
+ "version": "6.3.0",
+ "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz",
+ "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA=="
}
}
},
@@ -31778,50 +29824,29 @@
}
},
"@types/yargs": {
- "version": "17.0.24",
- "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.24.tgz",
- "integrity": "sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==",
+ "version": "17.0.32",
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz",
+ "integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==",
"dev": true,
"peer": true,
"requires": {
"@types/yargs-parser": "*"
}
},
- "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,
- "peer": true,
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "dev": true,
- "peer": true,
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "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==",
+ "ansi-escapes": {
+ "version": "4.3.2",
+ "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz",
+ "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==",
"dev": true,
"peer": true,
"requires": {
- "color-name": "~1.1.4"
+ "type-fest": "^0.21.3"
}
},
- "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==",
+ "ansi-styles": {
+ "version": "5.2.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz",
+ "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==",
"dev": true,
"peer": true
},
@@ -31832,13 +29857,6 @@
"dev": true,
"peer": true
},
- "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,
- "peer": true
- },
"jest-message-util": {
"version": "28.1.3",
"resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-28.1.3.tgz",
@@ -31939,15 +29957,6 @@
"ansi-regex": "^5.0.1",
"ansi-styles": "^5.0.0",
"react-is": "^18.0.0"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "5.2.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz",
- "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==",
- "dev": true,
- "peer": true
- }
}
},
"react-is": {
@@ -31985,9 +29994,9 @@
}
},
"strip-ansi": {
- "version": "7.0.1",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.0.1.tgz",
- "integrity": "sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==",
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz",
+ "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
"dev": true,
"peer": true,
"requires": {
@@ -32003,15 +30012,12 @@
}
}
},
- "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==",
+ "type-fest": {
+ "version": "0.21.3",
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz",
+ "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==",
"dev": true,
- "peer": true,
- "requires": {
- "has-flag": "^4.0.0"
- }
+ "peer": true
}
}
},
@@ -32029,48 +30035,18 @@
"string-length": "^4.0.1"
},
"dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "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==",
+ "ansi-escapes": {
+ "version": "4.3.2",
+ "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz",
+ "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==",
"requires": {
- "color-name": "~1.1.4"
+ "type-fest": "^0.21.3"
}
},
- "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=="
- },
- "has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
- },
- "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==",
- "requires": {
- "has-flag": "^4.0.0"
- }
+ "type-fest": {
+ "version": "0.21.3",
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz",
+ "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w=="
}
}
},
@@ -32084,11 +30060,6 @@
"supports-color": "^8.0.0"
},
"dependencies": {
- "has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
- },
"supports-color": {
"version": "8.1.1",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
@@ -32100,9 +30071,9 @@
}
},
"jiti": {
- "version": "1.18.2",
- "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.18.2.tgz",
- "integrity": "sha512-QAdOptna2NYiSSpv0O/BwoHBSmz4YhpzJHyi+fnMRTXFjp7B8i/YG5Z8IfusxB1ufjcD2Sre1F3R+nX3fvy7gg==",
+ "version": "1.21.0",
+ "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.0.tgz",
+ "integrity": "sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==",
"dev": true,
"peer": true
},
@@ -32112,12 +30083,12 @@
"integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="
},
"js-yaml": {
- "version": "3.14.1",
- "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz",
- "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==",
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
+ "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
+ "dev": true,
"requires": {
- "argparse": "^1.0.7",
- "esprima": "^4.0.0"
+ "argparse": "^2.0.1"
}
},
"jsdom": {
@@ -32159,6 +30130,12 @@
"resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz",
"integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA=="
},
+ "json-buffer": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz",
+ "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==",
+ "dev": true
+ },
"json-parse-even-better-errors": {
"version": "2.3.1",
"resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz",
@@ -32172,9 +30149,9 @@
"peer": true
},
"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==",
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
+ "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
"dev": true
},
"json-stable-stringify-without-jsonify": {
@@ -32204,6 +30181,27 @@
"integrity": "sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==",
"dev": true
},
+ "jsonpath": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/jsonpath/-/jsonpath-1.1.1.tgz",
+ "integrity": "sha512-l6Cg7jRpixfbgoWgkrl77dgEj8RPvND0wMH6TwQmi9Qs4TFfS9u5cUFnbeKTwj5ga5Y3BTGGNI28k117LJ009w==",
+ "dev": true,
+ "peer": true,
+ "requires": {
+ "esprima": "1.2.2",
+ "static-eval": "2.0.2",
+ "underscore": "1.12.1"
+ },
+ "dependencies": {
+ "esprima": {
+ "version": "1.2.2",
+ "resolved": "https://registry.npmjs.org/esprima/-/esprima-1.2.2.tgz",
+ "integrity": "sha512-+JpPZam9w5DuJ3Q67SqsMGtiHKENSMRVoxvArfJZK01/BfLEObtZ6orJa/MtoGNR/rfMgp5837T41PAmTwAv/A==",
+ "dev": true,
+ "peer": true
+ }
+ }
+ },
"jsonpointer": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-5.0.1.tgz",
@@ -32222,13 +30220,24 @@
}
},
"jsx-ast-utils": {
- "version": "3.3.3",
- "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.3.tgz",
- "integrity": "sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==",
+ "version": "3.3.5",
+ "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz",
+ "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==",
+ "dev": true,
+ "requires": {
+ "array-includes": "^3.1.6",
+ "array.prototype.flat": "^1.3.1",
+ "object.assign": "^4.1.4",
+ "object.values": "^1.1.6"
+ }
+ },
+ "keyv": {
+ "version": "4.5.4",
+ "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz",
+ "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==",
"dev": true,
"requires": {
- "array-includes": "^3.1.5",
- "object.assign": "^4.1.3"
+ "json-buffer": "3.0.1"
}
},
"kind-of": {
@@ -32257,24 +30266,24 @@
"peer": true
},
"language-tags": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz",
- "integrity": "sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==",
+ "version": "1.0.9",
+ "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.9.tgz",
+ "integrity": "sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==",
"dev": true,
"peer": true,
"requires": {
- "language-subtag-registry": "~0.3.2"
+ "language-subtag-registry": "^0.3.20"
}
},
"launch-editor": {
- "version": "2.6.0",
- "resolved": "https://registry.npmjs.org/launch-editor/-/launch-editor-2.6.0.tgz",
- "integrity": "sha512-JpDCcQnyAAzZZaZ7vEiSqL690w7dAEyLao+KC96zBplnYbJS7TYNjvM3M7y3dGz+v7aIsJk3hllWuc0kWAjyRQ==",
+ "version": "2.6.1",
+ "resolved": "https://registry.npmjs.org/launch-editor/-/launch-editor-2.6.1.tgz",
+ "integrity": "sha512-eB/uXmFVpY4zezmGp5XtU21kwo7GBbKB+EQ+UZeWtGb9yAM5xt/Evk+lYH3eRNAtId+ej4u7TYPFZ07w4s7rRw==",
"dev": true,
"peer": true,
"requires": {
"picocolors": "^1.0.0",
- "shell-quote": "^1.7.3"
+ "shell-quote": "^1.8.1"
}
},
"leven": {
@@ -32292,6 +30301,97 @@
"type-check": "~0.4.0"
}
},
+ "license-checker": {
+ "version": "25.0.1",
+ "resolved": "https://registry.npmjs.org/license-checker/-/license-checker-25.0.1.tgz",
+ "integrity": "sha512-mET5AIwl7MR2IAKYYoVBBpV0OnkKQ1xGj2IMMeEFIs42QAkEVjRtFZGWmQ28WeU7MP779iAgOaOy93Mn44mn6g==",
+ "dev": true,
+ "requires": {
+ "chalk": "^2.4.1",
+ "debug": "^3.1.0",
+ "mkdirp": "^0.5.1",
+ "nopt": "^4.0.1",
+ "read-installed": "~4.0.3",
+ "semver": "^5.5.0",
+ "spdx-correct": "^3.0.0",
+ "spdx-expression-parse": "^3.0.0",
+ "spdx-satisfies": "^4.0.0",
+ "treeify": "^1.1.0"
+ },
+ "dependencies": {
+ "ansi-styles": {
+ "version": "3.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
+ "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
+ "dev": true,
+ "requires": {
+ "color-convert": "^1.9.0"
+ }
+ },
+ "chalk": {
+ "version": "2.4.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
+ "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^3.2.1",
+ "escape-string-regexp": "^1.0.5",
+ "supports-color": "^5.3.0"
+ }
+ },
+ "color-convert": {
+ "version": "1.9.3",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
+ "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
+ "dev": true,
+ "requires": {
+ "color-name": "1.1.3"
+ }
+ },
+ "color-name": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
+ "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==",
+ "dev": true
+ },
+ "debug": {
+ "version": "3.2.7",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
+ "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
+ "dev": true,
+ "requires": {
+ "ms": "^2.1.1"
+ }
+ },
+ "escape-string-regexp": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
+ "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==",
+ "dev": true
+ },
+ "has-flag": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
+ "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==",
+ "dev": true
+ },
+ "semver": {
+ "version": "5.7.2",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz",
+ "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==",
+ "dev": true
+ },
+ "supports-color": {
+ "version": "5.5.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
+ "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^3.0.0"
+ }
+ }
+ }
+ },
"lilconfig": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz",
@@ -32450,15 +30550,6 @@
"peer": true,
"requires": {
"tslib": "^2.0.3"
- },
- "dependencies": {
- "tslib": {
- "version": "2.5.0",
- "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz",
- "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==",
- "dev": true,
- "peer": true
- }
}
},
"lru-cache": {
@@ -32480,18 +30571,11 @@
}
},
"make-dir": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz",
- "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==",
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz",
+ "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==",
"requires": {
- "semver": "^6.0.0"
- },
- "dependencies": {
- "semver": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
- "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw=="
- }
+ "semver": "^7.5.3"
}
},
"make-error": {
@@ -32536,13 +30620,13 @@
"peer": true
},
"memfs": {
- "version": "3.5.1",
- "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.5.1.tgz",
- "integrity": "sha512-UWbFJKvj5k+nETdteFndTpYxdeTMox/ULeqX5k/dpaQJCCFmj5EeKv3dBcyO2xmkRAx2vppRu5dVG7SOtsGOzA==",
+ "version": "3.5.3",
+ "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.5.3.tgz",
+ "integrity": "sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==",
"dev": true,
"peer": true,
"requires": {
- "fs-monkey": "^1.0.3"
+ "fs-monkey": "^1.0.4"
}
},
"meow": {
@@ -32605,11 +30689,9 @@
}
},
"mime": {
- "version": "1.6.0",
- "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz",
- "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==",
- "dev": true,
- "peer": true
+ "version": "2.6.0",
+ "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz",
+ "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg=="
},
"mime-db": {
"version": "1.52.0",
@@ -32636,49 +30718,20 @@
"dev": true
},
"mini-css-extract-plugin": {
- "version": "2.7.5",
- "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.7.5.tgz",
- "integrity": "sha512-9HaR++0mlgom81s95vvNjxkg52n2b5s//3ZTI1EtzFb98awsLSivs2LMsVqnQ3ay0PVhqWcGNyDaTE961FOcjQ==",
+ "version": "2.8.0",
+ "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.8.0.tgz",
+ "integrity": "sha512-CxmUYPFcTgET1zImteG/LZOy/4T5rTojesQXkSNBiquhydn78tfbCE9sjIjnJ/UcjNjOC1bphTCCW5rrS7cXAg==",
"dev": true,
"peer": true,
"requires": {
- "schema-utils": "^4.0.0"
+ "schema-utils": "^4.0.0",
+ "tapable": "^2.2.1"
},
"dependencies": {
- "ajv": {
- "version": "8.12.0",
- "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz",
- "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==",
- "dev": true,
- "peer": true,
- "requires": {
- "fast-deep-equal": "^3.1.1",
- "json-schema-traverse": "^1.0.0",
- "require-from-string": "^2.0.2",
- "uri-js": "^4.2.2"
- }
- },
- "ajv-keywords": {
- "version": "5.1.0",
- "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz",
- "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==",
- "dev": true,
- "peer": true,
- "requires": {
- "fast-deep-equal": "^3.1.3"
- }
- },
- "json-schema-traverse": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
- "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
- "dev": true,
- "peer": true
- },
"schema-utils": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.1.tgz",
- "integrity": "sha512-lELhBAAly9NowEsX0yZBlw9ahZG+sK/1RJ21EpzdYHKEs13Vku3LJ+MIPhh4sMs0oCCeufZQEQbMekiA4vuVIQ==",
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz",
+ "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==",
"dev": true,
"peer": true,
"requires": {
@@ -32720,30 +30773,28 @@
"arrify": "^1.0.1",
"is-plain-obj": "^1.1.0",
"kind-of": "^6.0.3"
- },
- "dependencies": {
- "is-plain-obj": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz",
- "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==",
- "dev": true
- }
}
},
+ "minipass": {
+ "version": "7.0.4",
+ "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.4.tgz",
+ "integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==",
+ "dev": true,
+ "peer": true
+ },
"mkdirp": {
"version": "0.5.6",
"resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz",
"integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==",
"dev": true,
- "peer": true,
"requires": {
"minimist": "^1.2.6"
}
},
"moment": {
- "version": "2.29.4",
- "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.4.tgz",
- "integrity": "sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==",
+ "version": "2.30.1",
+ "resolved": "https://registry.npmjs.org/moment/-/moment-2.30.1.tgz",
+ "integrity": "sha512-uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how==",
"dev": true,
"peer": true
},
@@ -32789,9 +30840,9 @@
"peer": true
},
"nanoid": {
- "version": "3.3.6",
- "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz",
- "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==",
+ "version": "3.3.7",
+ "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz",
+ "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==",
"dev": true,
"peer": true
},
@@ -32830,15 +30881,6 @@
"requires": {
"lower-case": "^2.0.2",
"tslib": "^2.0.3"
- },
- "dependencies": {
- "tslib": {
- "version": "2.5.0",
- "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz",
- "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==",
- "dev": true,
- "peer": true
- }
}
},
"node-forge": {
@@ -32854,9 +30896,19 @@
"integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw=="
},
"node-releases": {
- "version": "2.0.10",
- "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.10.tgz",
- "integrity": "sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w=="
+ "version": "2.0.14",
+ "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz",
+ "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw=="
+ },
+ "nopt": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/nopt/-/nopt-4.0.3.tgz",
+ "integrity": "sha512-CvaGwVMztSMJLOeXPrez7fyfObdZqNUK1cPAEzLHrTybIua9pMdmmPR5YwtfNftIOMv3DPUhFaxsZMNTQO20Kg==",
+ "dev": true,
+ "requires": {
+ "abbrev": "1",
+ "osenv": "^0.1.4"
+ }
},
"normalize-package-data": {
"version": "3.0.3",
@@ -32889,6 +30941,12 @@
"dev": true,
"peer": true
},
+ "npm-normalize-package-bin": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz",
+ "integrity": "sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==",
+ "dev": true
+ },
"npm-run-path": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz",
@@ -32908,9 +30966,9 @@
}
},
"nwsapi": {
- "version": "2.2.4",
- "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.4.tgz",
- "integrity": "sha512-NHj4rzRo0tQdijE9ZqAx6kYDcoRwYwSYzCA8MY3JzfxlrvEU0jhnhJT9BhqhJs7I/dKcrDm6TyulaRqZPIhN5g=="
+ "version": "2.2.7",
+ "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.7.tgz",
+ "integrity": "sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ=="
},
"object-assign": {
"version": "4.1.1",
@@ -32926,20 +30984,9 @@
"peer": true
},
"object-inspect": {
- "version": "1.12.3",
- "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz",
- "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g=="
- },
- "object-is": {
- "version": "1.1.5",
- "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz",
- "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==",
- "dev": true,
- "peer": true,
- "requires": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.3"
- }
+ "version": "1.13.1",
+ "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz",
+ "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ=="
},
"object-keys": {
"version": "1.1.1",
@@ -32948,72 +30995,84 @@
"dev": true
},
"object.assign": {
- "version": "4.1.4",
- "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz",
- "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==",
+ "version": "4.1.5",
+ "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz",
+ "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==",
"dev": true,
"requires": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.4",
+ "call-bind": "^1.0.5",
+ "define-properties": "^1.2.1",
"has-symbols": "^1.0.3",
"object-keys": "^1.1.1"
}
},
"object.entries": {
- "version": "1.1.6",
- "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz",
- "integrity": "sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==",
+ "version": "1.1.7",
+ "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.7.tgz",
+ "integrity": "sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA==",
"dev": true,
"requires": {
"call-bind": "^1.0.2",
- "define-properties": "^1.1.4",
- "es-abstract": "^1.20.4"
+ "define-properties": "^1.2.0",
+ "es-abstract": "^1.22.1"
}
},
"object.fromentries": {
- "version": "2.0.6",
- "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.6.tgz",
- "integrity": "sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==",
+ "version": "2.0.7",
+ "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.7.tgz",
+ "integrity": "sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==",
"dev": true,
"requires": {
"call-bind": "^1.0.2",
- "define-properties": "^1.1.4",
- "es-abstract": "^1.20.4"
+ "define-properties": "^1.2.0",
+ "es-abstract": "^1.22.1"
}
},
"object.getownpropertydescriptors": {
- "version": "2.1.6",
- "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.6.tgz",
- "integrity": "sha512-lq+61g26E/BgHv0ZTFgRvi7NMEPuAxLkFU7rukXjc/AlwH4Am5xXVnIXy3un1bg/JPbXHrixRkK1itUzzPiIjQ==",
+ "version": "2.1.7",
+ "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.7.tgz",
+ "integrity": "sha512-PrJz0C2xJ58FNn11XV2lr4Jt5Gzl94qpy9Lu0JlfEj14z88sqbSBJCBEzdlNUCzY2gburhbrwOZ5BHCmuNUy0g==",
"dev": true,
"peer": true,
"requires": {
- "array.prototype.reduce": "^1.0.5",
+ "array.prototype.reduce": "^1.0.6",
"call-bind": "^1.0.2",
"define-properties": "^1.2.0",
- "es-abstract": "^1.21.2",
+ "es-abstract": "^1.22.1",
"safe-array-concat": "^1.0.0"
}
},
+ "object.groupby": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.1.tgz",
+ "integrity": "sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==",
+ "dev": true,
+ "requires": {
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.2.0",
+ "es-abstract": "^1.22.1",
+ "get-intrinsic": "^1.2.1"
+ }
+ },
"object.hasown": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.2.tgz",
- "integrity": "sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==",
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.3.tgz",
+ "integrity": "sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA==",
"dev": true,
"requires": {
- "define-properties": "^1.1.4",
- "es-abstract": "^1.20.4"
+ "define-properties": "^1.2.0",
+ "es-abstract": "^1.22.1"
}
},
"object.values": {
- "version": "1.1.6",
- "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz",
- "integrity": "sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==",
+ "version": "1.1.7",
+ "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.7.tgz",
+ "integrity": "sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==",
"dev": true,
"requires": {
"call-bind": "^1.0.2",
- "define-properties": "^1.1.4",
- "es-abstract": "^1.20.4"
+ "define-properties": "^1.2.0",
+ "es-abstract": "^1.22.1"
}
},
"obuf": {
@@ -33082,12 +31141,28 @@
"type-check": "^0.4.0"
}
},
+ "os-homedir": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz",
+ "integrity": "sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==",
+ "dev": true
+ },
"os-tmpdir": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz",
"integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==",
"dev": true
},
+ "osenv": {
+ "version": "0.1.5",
+ "resolved": "https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz",
+ "integrity": "sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==",
+ "dev": true,
+ "requires": {
+ "os-homedir": "^1.0.0",
+ "os-tmpdir": "^1.0.0"
+ }
+ },
"p-limit": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
@@ -33131,15 +31206,6 @@
"requires": {
"dot-case": "^3.0.4",
"tslib": "^2.0.3"
- },
- "dependencies": {
- "tslib": {
- "version": "2.5.0",
- "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz",
- "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==",
- "dev": true,
- "peer": true
- }
}
},
"parent-module": {
@@ -33183,15 +31249,6 @@
"requires": {
"no-case": "^3.0.4",
"tslib": "^2.0.3"
- },
- "dependencies": {
- "tslib": {
- "version": "2.5.0",
- "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz",
- "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==",
- "dev": true,
- "peer": true
- }
}
},
"path-exists": {
@@ -33214,6 +31271,26 @@
"resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
"integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw=="
},
+ "path-scurry": {
+ "version": "1.10.1",
+ "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.1.tgz",
+ "integrity": "sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==",
+ "dev": true,
+ "peer": true,
+ "requires": {
+ "lru-cache": "^9.1.1 || ^10.0.0",
+ "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0"
+ },
+ "dependencies": {
+ "lru-cache": {
+ "version": "10.2.0",
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.0.tgz",
+ "integrity": "sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==",
+ "dev": true,
+ "peer": true
+ }
+ }
+ },
"path-to-regexp": {
"version": "0.1.7",
"resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz",
@@ -33252,9 +31329,9 @@
"peer": true
},
"pirates": {
- "version": "4.0.5",
- "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.5.tgz",
- "integrity": "sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ=="
+ "version": "4.0.6",
+ "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz",
+ "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg=="
},
"pkg-dir": {
"version": "4.2.0",
@@ -33360,13 +31437,13 @@
}
},
"postcss": {
- "version": "8.4.23",
- "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.23.tgz",
- "integrity": "sha512-bQ3qMcpF6A/YjR55xtoTr0jGOlnPOKAIMdOWiv0EIT6HVPEaJiJB4NLljSbiHoC2RX7DN5Uvjtpbg1NPdwv1oA==",
+ "version": "8.4.33",
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.33.tgz",
+ "integrity": "sha512-Kkpbhhdjw2qQs2O2DGX+8m5OVqEcbB9HRBvuYM9pgrjEFUg30A9LmXNlTAUj4S9kgtGyrMbTzVjH7E+s5Re2yg==",
"dev": true,
"peer": true,
"requires": {
- "nanoid": "^3.3.6",
+ "nanoid": "^3.3.7",
"picocolors": "^1.0.0",
"source-map-js": "^1.0.2"
}
@@ -33653,20 +31730,27 @@
}
},
"postcss-load-config": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.1.tgz",
- "integrity": "sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==",
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.2.tgz",
+ "integrity": "sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==",
"dev": true,
"peer": true,
"requires": {
- "lilconfig": "^2.0.5",
- "yaml": "^2.1.1"
+ "lilconfig": "^3.0.0",
+ "yaml": "^2.3.4"
},
"dependencies": {
+ "lilconfig": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.0.0.tgz",
+ "integrity": "sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g==",
+ "dev": true,
+ "peer": true
+ },
"yaml": {
- "version": "2.2.2",
- "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.2.2.tgz",
- "integrity": "sha512-CBKFWExMn46Foo4cldiChEzn7S7SRV+wqiluAb6xmueD/fGyRHIhX8m14vVGgeFWjN540nKCNVj6P21eQjgTuA==",
+ "version": "2.3.4",
+ "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.4.tgz",
+ "integrity": "sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==",
"dev": true,
"peer": true
}
@@ -33682,6 +31766,22 @@
"cosmiconfig": "^7.0.0",
"klona": "^2.0.5",
"semver": "^7.3.5"
+ },
+ "dependencies": {
+ "cosmiconfig": {
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz",
+ "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==",
+ "dev": true,
+ "peer": true,
+ "requires": {
+ "@types/parse-json": "^4.0.0",
+ "import-fresh": "^3.2.1",
+ "parse-json": "^5.0.0",
+ "path-type": "^4.0.0",
+ "yaml": "^1.10.0"
+ }
+ }
}
},
"postcss-logical": {
@@ -33777,9 +31877,9 @@
"requires": {}
},
"postcss-modules-local-by-default": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz",
- "integrity": "sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==",
+ "version": "4.0.4",
+ "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.4.tgz",
+ "integrity": "sha512-L4QzMnOdVwRm1Qb8m4x8jsZzKAaPAgrUF1r/hjDR2Xj7R+8Zsf97jAlSQzWtKx5YNiNGN8QxmPFIc/sh+RQl+Q==",
"dev": true,
"peer": true,
"requires": {
@@ -33789,9 +31889,9 @@
}
},
"postcss-modules-scope": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz",
- "integrity": "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==",
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.1.1.tgz",
+ "integrity": "sha512-uZgqzdTleelWjzJY+Fhti6F3C9iF1JR/dODLs/JDefozYcKTBCdD8BIl6nNPbTbcLnGrk56hzwZC2DaGNvYjzA==",
"dev": true,
"peer": true,
"requires": {
@@ -34086,9 +32186,9 @@
}
},
"postcss-selector-parser": {
- "version": "6.0.12",
- "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.12.tgz",
- "integrity": "sha512-NdxGCAZdRrwVI1sy59+Wzrh+pMMHxapGnpfenDVlMEXoOcvt4pGE0JLK9YY2F5dLxcFYA/YbVQKhcGU+FtSYQg==",
+ "version": "6.0.15",
+ "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.15.tgz",
+ "integrity": "sha512-rEYkQOMUCEMhsKbK66tbEU9QVIxbhN18YiniAwA7XQYTVBqrBy+P2p5JcdqsHgKM2zWylp8d7J6eszocfds5Sw==",
"dev": true,
"peer": true,
"requires": {
@@ -34180,12 +32280,6 @@
"integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==",
"dev": true
},
- "prettier": {
- "version": "2.5.1",
- "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.5.1.tgz",
- "integrity": "sha512-vBZcPRUR5MZJwoyi3ZoyQlc1rXeEck8KgeC9AwwOn+exuxLxq5toTRDTSaVrXHxelDMHy9zlicw8u66yxoSUFg==",
- "dev": true
- },
"pretty-bytes": {
"version": "5.6.0",
"resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz",
@@ -34264,9 +32358,9 @@
}
},
"property-expr": {
- "version": "2.0.5",
- "resolved": "https://registry.npmjs.org/property-expr/-/property-expr-2.0.5.tgz",
- "integrity": "sha512-IJUkICM5dP5znhCckHSv30Q4b5/JA5enCtkRHYaOVOAocnH/1BQEYTC5NMfT3AVl/iXKdr3aqQbQn9DxyWknwA==",
+ "version": "2.0.6",
+ "resolved": "https://registry.npmjs.org/property-expr/-/property-expr-2.0.6.tgz",
+ "integrity": "sha512-SVtmxhRE/CGkn3eZY1T6pC8Nln6Fr/lu1mKSgRud0eC73whjGfoAogbn78LkD8aFL0zz3bAFerKSnOl7NlErBA==",
"dev": true,
"peer": true
},
@@ -34296,9 +32390,9 @@
"integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag=="
},
"punycode": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz",
- "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA=="
+ "version": "2.3.1",
+ "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz",
+ "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg=="
},
"q": {
"version": "1.5.1",
@@ -34308,9 +32402,9 @@
"peer": true
},
"qs": {
- "version": "6.11.0",
- "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz",
- "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==",
+ "version": "6.11.2",
+ "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.2.tgz",
+ "integrity": "sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA==",
"requires": {
"side-channel": "^1.0.4"
}
@@ -34378,16 +32472,6 @@
"integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==",
"dev": true,
"peer": true
- },
- "iconv-lite": {
- "version": "0.4.24",
- "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
- "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
- "dev": true,
- "peer": true,
- "requires": {
- "safer-buffer": ">= 2.1.2 < 3"
- }
}
}
},
@@ -34414,6 +32498,15 @@
"raf": "^3.4.1",
"regenerator-runtime": "^0.13.9",
"whatwg-fetch": "^3.6.2"
+ },
+ "dependencies": {
+ "regenerator-runtime": {
+ "version": "0.13.11",
+ "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz",
+ "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==",
+ "dev": true,
+ "peer": true
+ }
}
},
"react-dev-utils": {
@@ -34449,74 +32542,12 @@
"text-table": "^0.2.0"
},
"dependencies": {
- "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,
- "peer": true,
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "dev": true,
- "peer": true,
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "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,
- "peer": true,
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "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,
- "peer": true
- },
- "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,
- "peer": true
- },
- "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,
- "peer": true
- },
"loader-utils": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.2.1.tgz",
"integrity": "sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==",
"dev": true,
"peer": true
- },
- "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,
- "peer": true,
- "requires": {
- "has-flag": "^4.0.0"
- }
}
}
},
@@ -34572,9 +32603,9 @@
"dev": true
},
"react-redux": {
- "version": "8.0.5",
- "resolved": "https://registry.npmjs.org/react-redux/-/react-redux-8.0.5.tgz",
- "integrity": "sha512-Q2f6fCKxPFpkXt1qNRZdEDLlScsDWyrgSj0mliK59qU6W5gvBiKkdMEG2lJzhd1rCctf0hb6EtePPLZ2e0m1uw==",
+ "version": "8.1.3",
+ "resolved": "https://registry.npmjs.org/react-redux/-/react-redux-8.1.3.tgz",
+ "integrity": "sha512-n0ZrutD7DaX/j9VscF+uTALI3oUPa/pO4Z3soOBIjuRn/FzVu6aehhysxZCLi6y7duMf52WNZGMl7CtuK5EnRw==",
"dev": true,
"requires": {
"@babel/runtime": "^7.12.1",
@@ -34655,19 +32686,27 @@
"webpack-dev-server": "^4.6.0",
"webpack-manifest-plugin": "^4.0.2",
"workbox-webpack-plugin": "^6.4.1"
- }
- },
- "react-transition-group": {
- "version": "4.4.5",
- "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.5.tgz",
- "integrity": "sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==",
- "dev": true,
- "peer": true,
- "requires": {
- "@babel/runtime": "^7.5.5",
- "dom-helpers": "^5.0.1",
- "loose-envify": "^1.4.0",
- "prop-types": "^15.6.2"
+ },
+ "dependencies": {
+ "camelcase": {
+ "version": "6.3.0",
+ "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz",
+ "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==",
+ "dev": true,
+ "peer": true
+ },
+ "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,
+ "peer": true,
+ "requires": {
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^6.0.1",
+ "universalify": "^2.0.0"
+ }
+ }
}
},
"read-cache": {
@@ -34680,6 +32719,67 @@
"pify": "^2.3.0"
}
},
+ "read-installed": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/read-installed/-/read-installed-4.0.3.tgz",
+ "integrity": "sha512-O03wg/IYuV/VtnK2h/KXEt9VIbMUFbk3ERG0Iu4FhLZw0EP0T9znqrYDGn6ncbEsXUFaUjiVAWXHzxwt3lhRPQ==",
+ "dev": true,
+ "requires": {
+ "debuglog": "^1.0.1",
+ "graceful-fs": "^4.1.2",
+ "read-package-json": "^2.0.0",
+ "readdir-scoped-modules": "^1.0.0",
+ "semver": "2 || 3 || 4 || 5",
+ "slide": "~1.1.3",
+ "util-extend": "^1.0.1"
+ },
+ "dependencies": {
+ "semver": {
+ "version": "5.7.2",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz",
+ "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==",
+ "dev": true
+ }
+ }
+ },
+ "read-package-json": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/read-package-json/-/read-package-json-2.1.2.tgz",
+ "integrity": "sha512-D1KmuLQr6ZSJS0tW8hf3WGpRlwszJOXZ3E8Yd/DNRaM5d+1wVRZdHlpGBLAuovjr28LbWvjpWkBHMxpRGGjzNA==",
+ "dev": true,
+ "requires": {
+ "glob": "^7.1.1",
+ "json-parse-even-better-errors": "^2.3.0",
+ "normalize-package-data": "^2.0.0",
+ "npm-normalize-package-bin": "^1.0.0"
+ },
+ "dependencies": {
+ "hosted-git-info": {
+ "version": "2.8.9",
+ "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz",
+ "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==",
+ "dev": true
+ },
+ "normalize-package-data": {
+ "version": "2.5.0",
+ "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz",
+ "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==",
+ "dev": true,
+ "requires": {
+ "hosted-git-info": "^2.1.4",
+ "resolve": "^1.10.0",
+ "semver": "2 || 3 || 4 || 5",
+ "validate-npm-package-license": "^3.0.1"
+ }
+ },
+ "semver": {
+ "version": "5.7.2",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz",
+ "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==",
+ "dev": true
+ }
+ }
+ },
"read-pkg": {
"version": "5.2.0",
"resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz",
@@ -34791,6 +32891,18 @@
"util-deprecate": "^1.0.1"
}
},
+ "readdir-scoped-modules": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/readdir-scoped-modules/-/readdir-scoped-modules-1.1.0.tgz",
+ "integrity": "sha512-asaikDeqAQg7JifRsZn1NJZXo9E+VwlyCfbkZhwyISinqk5zNS6266HS5kah6P0SaQKGF6SkNnZVHUzHFYxYDw==",
+ "dev": true,
+ "requires": {
+ "debuglog": "^1.0.1",
+ "dezalgo": "^1.0.0",
+ "graceful-fs": "^4.1.2",
+ "once": "^1.3.0"
+ }
+ },
"readdirp": {
"version": "3.6.0",
"resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
@@ -34847,6 +32959,20 @@
"peer": true,
"requires": {}
},
+ "reflect.getprototypeof": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.4.tgz",
+ "integrity": "sha512-ECkTw8TmJwW60lOTR+ZkODISW6RQ8+2CL3COqtiJKLd6MmB45hN51HprHFziKLGkAuTGQhBb91V8cy+KHlaCjw==",
+ "dev": true,
+ "requires": {
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.2.0",
+ "es-abstract": "^1.22.1",
+ "get-intrinsic": "^1.2.1",
+ "globalthis": "^1.0.3",
+ "which-builtin-type": "^1.1.3"
+ }
+ },
"regenerate": {
"version": "1.4.2",
"resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz",
@@ -34855,9 +32981,9 @@
"peer": true
},
"regenerate-unicode-properties": {
- "version": "10.1.0",
- "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz",
- "integrity": "sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==",
+ "version": "10.1.1",
+ "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.1.tgz",
+ "integrity": "sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==",
"dev": true,
"peer": true,
"requires": {
@@ -34865,15 +32991,15 @@
}
},
"regenerator-runtime": {
- "version": "0.13.11",
- "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz",
- "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==",
+ "version": "0.14.1",
+ "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz",
+ "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==",
"dev": true
},
"regenerator-transform": {
- "version": "0.15.1",
- "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.1.tgz",
- "integrity": "sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==",
+ "version": "0.15.2",
+ "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz",
+ "integrity": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==",
"dev": true,
"peer": true,
"requires": {
@@ -34881,21 +33007,21 @@
}
},
"regex-parser": {
- "version": "2.2.11",
- "resolved": "https://registry.npmjs.org/regex-parser/-/regex-parser-2.2.11.tgz",
- "integrity": "sha512-jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q==",
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/regex-parser/-/regex-parser-2.3.0.tgz",
+ "integrity": "sha512-TVILVSz2jY5D47F4mA4MppkBrafEaiUWJO/TcZHEIuI13AqoZMkK1WMA4Om1YkYbTx+9Ki1/tSUXbceyr9saRg==",
"dev": true,
"peer": true
},
"regexp.prototype.flags": {
- "version": "1.5.0",
- "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz",
- "integrity": "sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==",
+ "version": "1.5.1",
+ "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.1.tgz",
+ "integrity": "sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==",
"dev": true,
"requires": {
"call-bind": "^1.0.2",
"define-properties": "^1.2.0",
- "functions-have-names": "^1.2.3"
+ "set-function-name": "^2.0.0"
}
},
"regexpp": {
@@ -34989,11 +33115,11 @@
"peer": true
},
"resolve": {
- "version": "1.22.2",
- "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz",
- "integrity": "sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==",
+ "version": "1.22.8",
+ "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz",
+ "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==",
"requires": {
- "is-core-module": "^2.11.0",
+ "is-core-module": "^2.13.0",
"path-parse": "^1.0.7",
"supports-preserve-symlinks-flag": "^1.0.0"
}
@@ -35137,13 +33263,6 @@
"terser": "^5.0.0"
},
"dependencies": {
- "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,
- "peer": true
- },
"jest-worker": {
"version": "26.6.2",
"resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz",
@@ -35165,16 +33284,6 @@
"requires": {
"randombytes": "^2.1.0"
}
- },
- "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,
- "peer": true,
- "requires": {
- "has-flag": "^4.0.0"
- }
}
}
},
@@ -35200,17 +33309,24 @@
"dev": true,
"requires": {
"tslib": "^1.9.0"
+ },
+ "dependencies": {
+ "tslib": {
+ "version": "1.14.1",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
+ "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==",
+ "dev": true
+ }
}
},
"safe-array-concat": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.0.0.tgz",
- "integrity": "sha512-9dVEFruWIsnie89yym+xWTAYASdpw3CJV7Li/6zBewGf9z2i1j31rP6jnY0pHEO4QZh6N0K11bFjWmdR8UGdPQ==",
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.0.tgz",
+ "integrity": "sha512-ZdQ0Jeb9Ofti4hbt5lX3T2JcAamT9hfzYU1MNB+z/jaEbB6wfFfPIR/zEORmZqobkCCJhSjodobH6WHNmJ97dg==",
"dev": true,
- "peer": true,
"requires": {
- "call-bind": "^1.0.2",
- "get-intrinsic": "^1.2.0",
+ "call-bind": "^1.0.5",
+ "get-intrinsic": "^1.2.2",
"has-symbols": "^1.0.3",
"isarray": "^2.0.5"
}
@@ -35222,13 +33338,13 @@
"dev": true
},
"safe-regex-test": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz",
- "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==",
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.2.tgz",
+ "integrity": "sha512-83S9w6eFq12BBIJYvjMux6/dkirb8+4zJRA9cxNBVb7Wq5fJBW+Xze48WqR8pxua7bDuAaaAxtVVd4Idjp1dBQ==",
"dev": true,
"requires": {
- "call-bind": "^1.0.2",
- "get-intrinsic": "^1.1.3",
+ "call-bind": "^1.0.5",
+ "get-intrinsic": "^1.2.2",
"is-regex": "^1.1.4"
}
},
@@ -35281,15 +33397,45 @@
}
},
"schema-utils": {
- "version": "3.1.2",
- "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.2.tgz",
- "integrity": "sha512-pvjEHOgWc9OWA/f/DE3ohBWTD6EleVLf7iFUkoSwAxttdBhB9QUebQgxER2kWueOvRJXPHNnyrvvh9eZINB8Eg==",
+ "version": "3.3.0",
+ "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz",
+ "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==",
"dev": true,
"peer": true,
"requires": {
"@types/json-schema": "^7.0.8",
"ajv": "^6.12.5",
"ajv-keywords": "^3.5.2"
+ },
+ "dependencies": {
+ "ajv": {
+ "version": "6.12.6",
+ "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
+ "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
+ "dev": true,
+ "peer": true,
+ "requires": {
+ "fast-deep-equal": "^3.1.1",
+ "fast-json-stable-stringify": "^2.0.0",
+ "json-schema-traverse": "^0.4.1",
+ "uri-js": "^4.2.2"
+ }
+ },
+ "ajv-keywords": {
+ "version": "3.5.2",
+ "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz",
+ "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==",
+ "dev": true,
+ "peer": true,
+ "requires": {}
+ },
+ "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,
+ "peer": true
+ }
}
},
"select-hose": {
@@ -35300,12 +33446,13 @@
"peer": true
},
"selfsigned": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.1.1.tgz",
- "integrity": "sha512-GSL3aowiF7wa/WtSFwnUrludWFoNhftq8bUkH9pkzjpN2XSPOAYEgg6e0sS9s0rZwgJzJiQRPU18A6clnoW5wQ==",
+ "version": "2.4.1",
+ "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.4.1.tgz",
+ "integrity": "sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==",
"dev": true,
"peer": true,
"requires": {
+ "@types/node-forge": "^1.3.0",
"node-forge": "^1"
}
},
@@ -35373,6 +33520,13 @@
}
}
},
+ "mime": {
+ "version": "1.6.0",
+ "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz",
+ "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==",
+ "dev": true,
+ "peer": true
+ },
"ms": {
"version": "2.1.3",
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
@@ -35383,9 +33537,9 @@
}
},
"serialize-javascript": {
- "version": "6.0.1",
- "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz",
- "integrity": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==",
+ "version": "6.0.2",
+ "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz",
+ "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==",
"dev": true,
"peer": true,
"requires": {
@@ -35490,6 +33644,29 @@
"lowdb": "^3.0.0"
}
},
+ "set-function-length": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.0.tgz",
+ "integrity": "sha512-4DBHDoyHlM1IRPGYcoxexgh67y4ueR53FKV1yyxwFMY7aCqcN/38M1+SwZ/qJQ8iLv7+ck385ot4CcisOAPT9w==",
+ "requires": {
+ "define-data-property": "^1.1.1",
+ "function-bind": "^1.1.2",
+ "get-intrinsic": "^1.2.2",
+ "gopd": "^1.0.1",
+ "has-property-descriptors": "^1.0.1"
+ }
+ },
+ "set-function-name": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.1.tgz",
+ "integrity": "sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==",
+ "dev": true,
+ "requires": {
+ "define-data-property": "^1.0.1",
+ "functions-have-names": "^1.2.3",
+ "has-property-descriptors": "^1.0.0"
+ }
+ },
"setprototypeof": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz",
@@ -35542,6 +33719,12 @@
"resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
"integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q=="
},
+ "slide": {
+ "version": "1.1.6",
+ "resolved": "https://registry.npmjs.org/slide/-/slide-1.1.6.tgz",
+ "integrity": "sha512-NwrtjCg+lZoqhFU8fOwl4ay2ei8PaqCBOUV3/ektPY9trO1yQ1oXEfmHAhKArUVUr/hOHvy5f6AdP17dCM0zMw==",
+ "dev": true
+ },
"sockjs": {
"version": "0.3.24",
"resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz",
@@ -35562,9 +33745,11 @@
"peer": true
},
"source-map": {
- "version": "0.7.4",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz",
- "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA=="
+ "version": "0.5.7",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
+ "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==",
+ "dev": true,
+ "peer": true
},
"source-map-js": {
"version": "1.0.2",
@@ -35583,6 +33768,18 @@
"abab": "^2.0.5",
"iconv-lite": "^0.6.3",
"source-map-js": "^1.0.1"
+ },
+ "dependencies": {
+ "iconv-lite": {
+ "version": "0.6.3",
+ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz",
+ "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==",
+ "dev": true,
+ "peer": true,
+ "requires": {
+ "safer-buffer": ">= 2.1.2 < 3.0.0"
+ }
+ }
}
},
"source-map-support": {
@@ -35608,6 +33805,17 @@
"dev": true,
"peer": true
},
+ "spdx-compare": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/spdx-compare/-/spdx-compare-1.0.0.tgz",
+ "integrity": "sha512-C1mDZOX0hnu0ep9dfmuoi03+eOdDoz2yvK79RxbcrVEG1NO1Ph35yW102DHWKN4pk80nwCgeMmSY5L25VE4D9A==",
+ "dev": true,
+ "requires": {
+ "array-find-index": "^1.0.2",
+ "spdx-expression-parse": "^3.0.0",
+ "spdx-ranges": "^2.0.0"
+ }
+ },
"spdx-correct": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz",
@@ -35640,6 +33848,23 @@
"integrity": "sha512-eWN+LnM3GR6gPu35WxNgbGl8rmY1AEmoMDvL/QD6zYmPWgywxWqJWNdLGT+ke8dKNWrcYgYjPpG5gbTfghP8rw==",
"dev": true
},
+ "spdx-ranges": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/spdx-ranges/-/spdx-ranges-2.1.1.tgz",
+ "integrity": "sha512-mcdpQFV7UDAgLpXEE/jOMqvK4LBoO0uTQg0uvXUewmEFhpiZx5yJSZITHB8w1ZahKdhfZqP5GPEOKLyEq5p8XA==",
+ "dev": true
+ },
+ "spdx-satisfies": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/spdx-satisfies/-/spdx-satisfies-4.0.1.tgz",
+ "integrity": "sha512-WVzZ/cXAzoNmjCWiEluEA3BjHp5tiUmmhn9MK+X0tBbR9sOqtC6UQwmgCNrAIZvNlMuBUYAaHYfb2oqlF9SwKA==",
+ "dev": true,
+ "requires": {
+ "spdx-compare": "^1.0.0",
+ "spdx-expression-parse": "^3.0.0",
+ "spdx-ranges": "^2.0.0"
+ }
+ },
"spdy": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz",
@@ -35712,6 +33937,90 @@
"dev": true,
"peer": true
},
+ "static-eval": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/static-eval/-/static-eval-2.0.2.tgz",
+ "integrity": "sha512-N/D219Hcr2bPjLxPiV+TQE++Tsmrady7TqAJugLy7Xk1EumfDWS/f5dtBbkRCGE7wKKXuYockQoj8Rm2/pVKyg==",
+ "dev": true,
+ "peer": true,
+ "requires": {
+ "escodegen": "^1.8.1"
+ },
+ "dependencies": {
+ "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,
+ "peer": true,
+ "requires": {
+ "esprima": "^4.0.1",
+ "estraverse": "^4.2.0",
+ "esutils": "^2.0.2",
+ "optionator": "^0.8.1",
+ "source-map": "~0.6.1"
+ }
+ },
+ "estraverse": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz",
+ "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==",
+ "dev": true,
+ "peer": true
+ },
+ "levn": {
+ "version": "0.3.0",
+ "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz",
+ "integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==",
+ "dev": true,
+ "peer": true,
+ "requires": {
+ "prelude-ls": "~1.1.2",
+ "type-check": "~0.3.2"
+ }
+ },
+ "optionator": {
+ "version": "0.8.3",
+ "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz",
+ "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==",
+ "dev": true,
+ "peer": true,
+ "requires": {
+ "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"
+ }
+ },
+ "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,
+ "peer": true
+ },
+ "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,
+ "optional": true,
+ "peer": true
+ },
+ "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,
+ "peer": true,
+ "requires": {
+ "prelude-ls": "~1.1.2"
+ }
+ }
+ }
+ },
"statuses": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz",
@@ -35724,16 +34033,6 @@
"resolved": "https://registry.npmjs.org/steno/-/steno-2.1.0.tgz",
"integrity": "sha512-mauOsiaqTNGFkWqIfwcm3y/fq+qKKaIWf1vf3ocOuTdco9XoHCO2AGF1gFYXuZFSWuP38Q8LBHBGJv2KnJSXyA=="
},
- "stop-iteration-iterator": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz",
- "integrity": "sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==",
- "dev": true,
- "peer": true,
- "requires": {
- "internal-slot": "^1.0.4"
- }
- },
"string_decoder": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz",
@@ -35760,9 +34059,38 @@
"peer": true
},
"string-width": {
- "version": "4.2.3",
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz",
+ "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==",
+ "dev": true,
+ "requires": {
+ "is-fullwidth-code-point": "^2.0.0",
+ "strip-ansi": "^4.0.0"
+ },
+ "dependencies": {
+ "ansi-regex": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz",
+ "integrity": "sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==",
+ "dev": true
+ },
+ "strip-ansi": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz",
+ "integrity": "sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==",
+ "dev": true,
+ "requires": {
+ "ansi-regex": "^3.0.0"
+ }
+ }
+ }
+ },
+ "string-width-cjs": {
+ "version": "npm:string-width@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,
+ "peer": true,
"requires": {
"emoji-regex": "^8.0.0",
"is-fullwidth-code-point": "^3.0.0",
@@ -35772,57 +34100,67 @@
"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=="
+ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
+ "dev": true,
+ "peer": true
+ },
+ "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,
+ "peer": true
}
}
},
"string.prototype.matchall": {
- "version": "4.0.8",
- "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz",
- "integrity": "sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==",
+ "version": "4.0.10",
+ "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.10.tgz",
+ "integrity": "sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ==",
"dev": true,
"requires": {
"call-bind": "^1.0.2",
- "define-properties": "^1.1.4",
- "es-abstract": "^1.20.4",
- "get-intrinsic": "^1.1.3",
+ "define-properties": "^1.2.0",
+ "es-abstract": "^1.22.1",
+ "get-intrinsic": "^1.2.1",
"has-symbols": "^1.0.3",
- "internal-slot": "^1.0.3",
- "regexp.prototype.flags": "^1.4.3",
+ "internal-slot": "^1.0.5",
+ "regexp.prototype.flags": "^1.5.0",
+ "set-function-name": "^2.0.0",
"side-channel": "^1.0.4"
}
},
"string.prototype.trim": {
- "version": "1.2.7",
- "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz",
- "integrity": "sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==",
+ "version": "1.2.8",
+ "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.8.tgz",
+ "integrity": "sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==",
"dev": true,
"requires": {
"call-bind": "^1.0.2",
- "define-properties": "^1.1.4",
- "es-abstract": "^1.20.4"
+ "define-properties": "^1.2.0",
+ "es-abstract": "^1.22.1"
}
},
"string.prototype.trimend": {
- "version": "1.0.6",
- "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz",
- "integrity": "sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==",
+ "version": "1.0.7",
+ "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.7.tgz",
+ "integrity": "sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==",
"dev": true,
"requires": {
"call-bind": "^1.0.2",
- "define-properties": "^1.1.4",
- "es-abstract": "^1.20.4"
+ "define-properties": "^1.2.0",
+ "es-abstract": "^1.22.1"
}
},
"string.prototype.trimstart": {
- "version": "1.0.6",
- "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz",
- "integrity": "sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==",
+ "version": "1.0.7",
+ "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.7.tgz",
+ "integrity": "sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==",
"dev": true,
"requires": {
"call-bind": "^1.0.2",
- "define-properties": "^1.1.4",
- "es-abstract": "^1.20.4"
+ "define-properties": "^1.2.0",
+ "es-abstract": "^1.22.1"
}
},
"stringify-object": {
@@ -35835,6 +34173,15 @@
"get-own-enumerable-property-symbols": "^3.0.0",
"is-obj": "^1.0.1",
"is-regexp": "^1.0.0"
+ },
+ "dependencies": {
+ "is-obj": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz",
+ "integrity": "sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==",
+ "dev": true,
+ "peer": true
+ }
}
},
"strip-ansi": {
@@ -35845,6 +34192,16 @@
"ansi-regex": "^5.0.1"
}
},
+ "strip-ansi-cjs": {
+ "version": "npm:strip-ansi@6.0.1",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
+ "dev": true,
+ "peer": true,
+ "requires": {
+ "ansi-regex": "^5.0.1"
+ }
+ },
"strip-bom": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz",
@@ -35877,9 +34234,9 @@
"integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig=="
},
"style-loader": {
- "version": "3.3.2",
- "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-3.3.2.tgz",
- "integrity": "sha512-RHs/vcrKdQK8wZliteNK4NKzxvLBzpuHMqYmUVWeKa6MkaIQ97ZTOS0b+zapZhy6GcrgWnvWYCMHRirC3FsUmw==",
+ "version": "3.3.4",
+ "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-3.3.4.tgz",
+ "integrity": "sha512-0WqXzrsMTyb8yjZJHDqwmnwRJvhALK9LfRtRc6B4UTWe8AijYLZYZ9thuJTZc2VfQWINADW/j+LiJnfy2RoC1w==",
"dev": true,
"peer": true,
"requires": {}
@@ -35903,21 +34260,31 @@
"peer": true
},
"sucrase": {
- "version": "3.32.0",
- "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.32.0.tgz",
- "integrity": "sha512-ydQOU34rpSyj2TGyz4D2p8rbktIOZ8QY9s+DGLvFU1i5pWJE8vkpruCjGCMHsdXwnD7JDcS+noSwM/a7zyNFDQ==",
+ "version": "3.35.0",
+ "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.0.tgz",
+ "integrity": "sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==",
"dev": true,
"peer": true,
"requires": {
"@jridgewell/gen-mapping": "^0.3.2",
"commander": "^4.0.0",
- "glob": "7.1.6",
+ "glob": "^10.3.10",
"lines-and-columns": "^1.1.6",
"mz": "^2.7.0",
"pirates": "^4.0.1",
"ts-interface-checker": "^0.1.9"
},
"dependencies": {
+ "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,
+ "peer": true,
+ "requires": {
+ "balanced-match": "^1.0.0"
+ }
+ },
"commander": {
"version": "4.1.1",
"resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz",
@@ -35926,18 +34293,27 @@
"peer": true
},
"glob": {
- "version": "7.1.6",
- "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz",
- "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==",
+ "version": "10.3.10",
+ "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz",
+ "integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==",
"dev": true,
"peer": true,
"requires": {
- "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"
+ "foreground-child": "^3.1.0",
+ "jackspeak": "^2.3.5",
+ "minimatch": "^9.0.1",
+ "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0",
+ "path-scurry": "^1.10.1"
+ }
+ },
+ "minimatch": {
+ "version": "9.0.3",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz",
+ "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==",
+ "dev": true,
+ "peer": true,
+ "requires": {
+ "brace-expansion": "^2.0.1"
}
}
}
@@ -35968,11 +34344,6 @@
"combined-stream": "^1.0.8",
"mime-types": "^2.1.12"
}
- },
- "mime": {
- "version": "2.6.0",
- "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz",
- "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg=="
}
}
},
@@ -35986,11 +34357,11 @@
}
},
"supports-color": {
- "version": "5.5.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
- "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
"requires": {
- "has-flag": "^3.0.0"
+ "has-flag": "^4.0.0"
}
},
"supports-hyperlinks": {
@@ -36000,21 +34371,6 @@
"requires": {
"has-flag": "^4.0.0",
"supports-color": "^7.0.0"
- },
- "dependencies": {
- "has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
- },
- "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==",
- "requires": {
- "has-flag": "^4.0.0"
- }
- }
}
},
"supports-preserve-symlinks-flag": {
@@ -36051,6 +34407,55 @@
"util.promisify": "~1.0.0"
},
"dependencies": {
+ "ansi-styles": {
+ "version": "3.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
+ "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
+ "dev": true,
+ "peer": true,
+ "requires": {
+ "color-convert": "^1.9.0"
+ }
+ },
+ "argparse": {
+ "version": "1.0.10",
+ "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
+ "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
+ "dev": true,
+ "peer": true,
+ "requires": {
+ "sprintf-js": "~1.0.2"
+ }
+ },
+ "chalk": {
+ "version": "2.4.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
+ "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
+ "dev": true,
+ "peer": true,
+ "requires": {
+ "ansi-styles": "^3.2.1",
+ "escape-string-regexp": "^1.0.5",
+ "supports-color": "^5.3.0"
+ }
+ },
+ "color-convert": {
+ "version": "1.9.3",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
+ "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
+ "dev": true,
+ "peer": true,
+ "requires": {
+ "color-name": "1.1.3"
+ }
+ },
+ "color-name": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
+ "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==",
+ "dev": true,
+ "peer": true
+ },
"css-select": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz",
@@ -36102,6 +34507,31 @@
}
}
},
+ "escape-string-regexp": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
+ "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==",
+ "dev": true,
+ "peer": true
+ },
+ "has-flag": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
+ "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==",
+ "dev": true,
+ "peer": true
+ },
+ "js-yaml": {
+ "version": "3.14.1",
+ "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz",
+ "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==",
+ "dev": true,
+ "peer": true,
+ "requires": {
+ "argparse": "^1.0.7",
+ "esprima": "^4.0.0"
+ }
+ },
"nth-check": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz",
@@ -36111,6 +34541,16 @@
"requires": {
"boolbase": "~1.0.0"
}
+ },
+ "supports-color": {
+ "version": "5.5.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
+ "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
+ "dev": true,
+ "peer": true,
+ "requires": {
+ "has-flag": "^3.0.0"
+ }
}
}
},
@@ -36120,9 +34560,9 @@
"integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw=="
},
"tailwindcss": {
- "version": "3.3.2",
- "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.3.2.tgz",
- "integrity": "sha512-9jPkMiIBXvPc2KywkraqsUfbfj+dHDb+JPWtSJa9MLFdrPyazI7q6WX2sUrm7R9eVR7qqv3Pas7EvQFzxKnI6w==",
+ "version": "3.4.1",
+ "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.1.tgz",
+ "integrity": "sha512-qAYmXRfk3ENzuPBakNK0SRrUDipP8NQnEY6772uDhflcQz5EhRdD7JNZxyrFHVQNCwULPBn6FNPp9brpO7ctcA==",
"dev": true,
"peer": true,
"requires": {
@@ -36131,10 +34571,10 @@
"chokidar": "^3.5.3",
"didyoumean": "^1.2.2",
"dlv": "^1.1.3",
- "fast-glob": "^3.2.12",
+ "fast-glob": "^3.3.0",
"glob-parent": "^6.0.2",
"is-glob": "^4.0.3",
- "jiti": "^1.18.2",
+ "jiti": "^1.19.1",
"lilconfig": "^2.1.0",
"micromatch": "^4.0.5",
"normalize-path": "^3.0.0",
@@ -36146,7 +34586,6 @@
"postcss-load-config": "^4.0.1",
"postcss-nested": "^6.0.1",
"postcss-selector-parser": "^6.0.11",
- "postcss-value-parser": "^4.2.0",
"resolve": "^1.22.2",
"sucrase": "^3.32.0"
}
@@ -36194,17 +34633,32 @@
"requires": {
"ansi-escapes": "^4.2.1",
"supports-hyperlinks": "^2.0.0"
+ },
+ "dependencies": {
+ "ansi-escapes": {
+ "version": "4.3.2",
+ "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz",
+ "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==",
+ "requires": {
+ "type-fest": "^0.21.3"
+ }
+ },
+ "type-fest": {
+ "version": "0.21.3",
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz",
+ "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w=="
+ }
}
},
"terser": {
- "version": "5.17.3",
- "resolved": "https://registry.npmjs.org/terser/-/terser-5.17.3.tgz",
- "integrity": "sha512-AudpAZKmZHkG9jueayypz4duuCFJMMNGRMwaPvQKWfxKedh8Z2x3OCoDqIIi1xx5+iwx1u6Au8XQcc9Lke65Yg==",
+ "version": "5.27.0",
+ "resolved": "https://registry.npmjs.org/terser/-/terser-5.27.0.tgz",
+ "integrity": "sha512-bi1HRwVRskAjheeYl291n3JC4GgO/Ty4z1nVs5AAsmonJulGxpSektecnNedrwK9C7vpvVtcX3cw00VSLt7U2A==",
"dev": true,
"peer": true,
"requires": {
- "@jridgewell/source-map": "^0.3.2",
- "acorn": "^8.5.0",
+ "@jridgewell/source-map": "^0.3.3",
+ "acorn": "^8.8.2",
"commander": "^2.20.0",
"source-map-support": "~0.5.20"
},
@@ -36219,17 +34673,17 @@
}
},
"terser-webpack-plugin": {
- "version": "5.3.8",
- "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.8.tgz",
- "integrity": "sha512-WiHL3ElchZMsK27P8uIUh4604IgJyAW47LVXGbEoB21DbQcZ+OuMpGjVYnEUaqcWM6dO8uS2qUbA7LSCWqvsbg==",
+ "version": "5.3.10",
+ "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.10.tgz",
+ "integrity": "sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==",
"dev": true,
"peer": true,
"requires": {
- "@jridgewell/trace-mapping": "^0.3.17",
+ "@jridgewell/trace-mapping": "^0.3.20",
"jest-worker": "^27.4.5",
"schema-utils": "^3.1.1",
"serialize-javascript": "^6.0.1",
- "terser": "^5.16.8"
+ "terser": "^5.26.0"
}
},
"test-exclude": {
@@ -36357,9 +34811,9 @@
"peer": true
},
"tough-cookie": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.2.tgz",
- "integrity": "sha512-G9fqXWoYFZgTc2z8Q5zaHy/vJMjm+WV0AkAeHxVCQiEB1b+dGvWzFW6QV07cY5jQ5gRkeid2qIkzkxUnmoQZUQ==",
+ "version": "4.1.3",
+ "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.3.tgz",
+ "integrity": "sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==",
"requires": {
"psl": "^1.1.33",
"punycode": "^2.1.1",
@@ -36382,6 +34836,12 @@
"punycode": "^2.1.1"
}
},
+ "treeify": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/treeify/-/treeify-1.1.0.tgz",
+ "integrity": "sha512-1m4RA7xVAJrSGrrXGs0L3YTwyvBs2S8PbRHaLZAkFw7JR8oIFwYtysxlBZhYIa7xSyiYJKZ3iGrrk55cGA3i9A==",
+ "dev": true
+ },
"trim-newlines": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.1.tgz",
@@ -36438,9 +34898,9 @@
}
},
"tsconfig-paths": {
- "version": "3.14.2",
- "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz",
- "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==",
+ "version": "3.15.0",
+ "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz",
+ "integrity": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==",
"dev": true,
"requires": {
"@types/json5": "^0.0.29",
@@ -36467,9 +34927,9 @@
}
},
"tslib": {
- "version": "1.14.1",
- "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
- "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==",
+ "version": "2.6.2",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz",
+ "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==",
"dev": true
},
"tsutils": {
@@ -36479,6 +34939,14 @@
"dev": true,
"requires": {
"tslib": "^1.8.1"
+ },
+ "dependencies": {
+ "tslib": {
+ "version": "1.14.1",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
+ "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==",
+ "dev": true
+ }
}
},
"tsutils-etc": {
@@ -36492,45 +34960,13 @@
},
"dependencies": {
"@types/yargs": {
- "version": "17.0.24",
- "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.24.tgz",
- "integrity": "sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==",
+ "version": "17.0.32",
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz",
+ "integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==",
"dev": true,
"requires": {
"@types/yargs-parser": "*"
}
- },
- "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,
- "requires": {
- "string-width": "^4.2.0",
- "strip-ansi": "^6.0.1",
- "wrap-ansi": "^7.0.0"
- }
- },
- "yargs": {
- "version": "17.7.2",
- "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz",
- "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==",
- "dev": true,
- "requires": {
- "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"
- }
- },
- "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
}
}
},
@@ -36549,9 +34985,10 @@
"integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g=="
},
"type-fest": {
- "version": "0.21.3",
- "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz",
- "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w=="
+ "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
},
"type-is": {
"version": "1.6.18",
@@ -36564,6 +35001,42 @@
"mime-types": "~2.1.24"
}
},
+ "typed-array-buffer": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz",
+ "integrity": "sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==",
+ "dev": true,
+ "requires": {
+ "call-bind": "^1.0.2",
+ "get-intrinsic": "^1.2.1",
+ "is-typed-array": "^1.1.10"
+ }
+ },
+ "typed-array-byte-length": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz",
+ "integrity": "sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==",
+ "dev": true,
+ "requires": {
+ "call-bind": "^1.0.2",
+ "for-each": "^0.3.3",
+ "has-proto": "^1.0.1",
+ "is-typed-array": "^1.1.10"
+ }
+ },
+ "typed-array-byte-offset": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz",
+ "integrity": "sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==",
+ "dev": true,
+ "requires": {
+ "available-typed-arrays": "^1.0.5",
+ "call-bind": "^1.0.2",
+ "for-each": "^0.3.3",
+ "has-proto": "^1.0.1",
+ "is-typed-array": "^1.1.10"
+ }
+ },
"typed-array-length": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz",
@@ -36590,9 +35063,9 @@
"devOptional": true
},
"ua-parser-js": {
- "version": "1.0.35",
- "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-1.0.35.tgz",
- "integrity": "sha512-fKnGuqmTBnIE+/KXSzCn4db8RTigUzw1AN0DmdU6hJovUTbYJKyqj+8Mt1c4VfRDnOVJnENmfYkIPZ946UrSAA==",
+ "version": "1.0.37",
+ "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-1.0.37.tgz",
+ "integrity": "sha512-bhTyI94tZofjo+Dn8SN6Zv8nBDvyXTymAdM3LDI/0IboIUwTu1rEhW7v2TfiVsoYWgkQ4kOVqnI8APUFbIQIFQ==",
"dev": true,
"peer": true
},
@@ -36608,6 +35081,13 @@
"which-boxed-primitive": "^1.0.2"
}
},
+ "underscore": {
+ "version": "1.12.1",
+ "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.12.1.tgz",
+ "integrity": "sha512-hEQt0+ZLDVUMhebKxL4x1BTtDY7bavVofhZ9KZ4aI26X9SRaE+Y3m83XUL1UP2jn8ynjndwCCpEHdUG+9pP1Tw==",
+ "dev": true,
+ "peer": true
+ },
"unicode-canonical-property-names-ecmascript": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz",
@@ -36651,9 +35131,9 @@
}
},
"universalify": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
- "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz",
+ "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==",
"dev": true
},
"unpipe": {
@@ -36678,9 +35158,9 @@
"peer": true
},
"update-browserslist-db": {
- "version": "1.0.11",
- "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz",
- "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==",
+ "version": "1.0.13",
+ "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz",
+ "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==",
"requires": {
"escalade": "^3.1.1",
"picocolors": "^1.0.0"
@@ -36717,6 +35197,12 @@
"integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==",
"dev": true
},
+ "util-extend": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/util-extend/-/util-extend-1.0.3.tgz",
+ "integrity": "sha512-mLs5zAK+ctllYBj+iAQvlDCwoxU/WDOUaJkcFudeiAX6OajC6BKXJUa9a+tbtkC11dz2Ufb7h0lyvIOVn4LADA==",
+ "dev": true
+ },
"util.promisify": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.1.tgz",
@@ -36776,6 +35262,13 @@
"@types/istanbul-lib-coverage": "^2.0.1",
"convert-source-map": "^1.6.0",
"source-map": "^0.7.3"
+ },
+ "dependencies": {
+ "source-map": {
+ "version": "0.7.4",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz",
+ "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA=="
+ }
}
},
"validate-npm-package-license": {
@@ -36846,22 +35339,22 @@
"integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w=="
},
"webpack": {
- "version": "5.82.0",
- "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.82.0.tgz",
- "integrity": "sha512-iGNA2fHhnDcV1bONdUu554eZx+XeldsaeQ8T67H6KKHl2nUSwX8Zm7cmzOA46ox/X1ARxf7Bjv8wQ/HsB5fxBg==",
+ "version": "5.90.1",
+ "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.90.1.tgz",
+ "integrity": "sha512-SstPdlAC5IvgFnhiRok8hqJo/+ArAbNv7rhU4fnWGHNVfN59HSQFaxZDSAL3IFG2YmqxuRs+IU33milSxbPlog==",
"dev": true,
"peer": true,
"requires": {
"@types/eslint-scope": "^3.7.3",
- "@types/estree": "^1.0.0",
+ "@types/estree": "^1.0.5",
"@webassemblyjs/ast": "^1.11.5",
"@webassemblyjs/wasm-edit": "^1.11.5",
"@webassemblyjs/wasm-parser": "^1.11.5",
"acorn": "^8.7.1",
- "acorn-import-assertions": "^1.7.6",
- "browserslist": "^4.14.5",
+ "acorn-import-assertions": "^1.9.0",
+ "browserslist": "^4.21.10",
"chrome-trace-event": "^1.0.2",
- "enhanced-resolve": "^5.13.0",
+ "enhanced-resolve": "^5.15.0",
"es-module-lexer": "^1.2.1",
"eslint-scope": "5.1.1",
"events": "^3.2.0",
@@ -36871,9 +35364,9 @@
"loader-runner": "^4.2.0",
"mime-types": "^2.1.27",
"neo-async": "^2.6.2",
- "schema-utils": "^3.1.2",
+ "schema-utils": "^3.2.0",
"tapable": "^2.1.1",
- "terser-webpack-plugin": "^5.3.7",
+ "terser-webpack-plugin": "^5.3.10",
"watchpack": "^2.4.0",
"webpack-sources": "^3.2.3"
},
@@ -36912,40 +35405,10 @@
"schema-utils": "^4.0.0"
},
"dependencies": {
- "ajv": {
- "version": "8.12.0",
- "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz",
- "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==",
- "dev": true,
- "peer": true,
- "requires": {
- "fast-deep-equal": "^3.1.1",
- "json-schema-traverse": "^1.0.0",
- "require-from-string": "^2.0.2",
- "uri-js": "^4.2.2"
- }
- },
- "ajv-keywords": {
- "version": "5.1.0",
- "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz",
- "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==",
- "dev": true,
- "peer": true,
- "requires": {
- "fast-deep-equal": "^3.1.3"
- }
- },
- "json-schema-traverse": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
- "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
- "dev": true,
- "peer": true
- },
"schema-utils": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.1.tgz",
- "integrity": "sha512-lELhBAAly9NowEsX0yZBlw9ahZG+sK/1RJ21EpzdYHKEs13Vku3LJ+MIPhh4sMs0oCCeufZQEQbMekiA4vuVIQ==",
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz",
+ "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==",
"dev": true,
"peer": true,
"requires": {
@@ -36958,9 +35421,9 @@
}
},
"webpack-dev-server": {
- "version": "4.15.0",
- "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.15.0.tgz",
- "integrity": "sha512-HmNB5QeSl1KpulTBQ8UT4FPrByYyaLxpJoQ0+s7EvUrMc16m0ZS1sgb1XGqzmgCPk0c9y+aaXxn11tbLzuM7NQ==",
+ "version": "4.15.1",
+ "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.15.1.tgz",
+ "integrity": "sha512-5hbAst3h3C3L8w6W4P96L5vaV0PxSmJhxZvWKYIdgxOQm8pNZ5dEOmmSLBVpP85ReeyRt6AS1QJNyo/oFFPeVA==",
"dev": true,
"peer": true,
"requires": {
@@ -36970,7 +35433,7 @@
"@types/serve-index": "^1.9.1",
"@types/serve-static": "^1.13.10",
"@types/sockjs": "^0.3.33",
- "@types/ws": "^8.5.1",
+ "@types/ws": "^8.5.5",
"ansi-html-community": "^0.0.8",
"bonjour-service": "^1.0.11",
"chokidar": "^3.5.3",
@@ -36996,40 +35459,10 @@
"ws": "^8.13.0"
},
"dependencies": {
- "ajv": {
- "version": "8.12.0",
- "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz",
- "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==",
- "dev": true,
- "peer": true,
- "requires": {
- "fast-deep-equal": "^3.1.1",
- "json-schema-traverse": "^1.0.0",
- "require-from-string": "^2.0.2",
- "uri-js": "^4.2.2"
- }
- },
- "ajv-keywords": {
- "version": "5.1.0",
- "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz",
- "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==",
- "dev": true,
- "peer": true,
- "requires": {
- "fast-deep-equal": "^3.1.3"
- }
- },
- "json-schema-traverse": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
- "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
- "dev": true,
- "peer": true
- },
"schema-utils": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.1.tgz",
- "integrity": "sha512-lELhBAAly9NowEsX0yZBlw9ahZG+sK/1RJ21EpzdYHKEs13Vku3LJ+MIPhh4sMs0oCCeufZQEQbMekiA4vuVIQ==",
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz",
+ "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==",
"dev": true,
"peer": true,
"requires": {
@@ -37040,9 +35473,9 @@
}
},
"ws": {
- "version": "8.13.0",
- "resolved": "https://registry.npmjs.org/ws/-/ws-8.13.0.tgz",
- "integrity": "sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==",
+ "version": "8.16.0",
+ "resolved": "https://registry.npmjs.org/ws/-/ws-8.16.0.tgz",
+ "integrity": "sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==",
"dev": true,
"peer": true,
"requires": {}
@@ -37112,22 +35545,12 @@
"integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==",
"requires": {
"iconv-lite": "0.4.24"
- },
- "dependencies": {
- "iconv-lite": {
- "version": "0.4.24",
- "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
- "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
- "requires": {
- "safer-buffer": ">= 2.1.2 < 3"
- }
- }
}
},
"whatwg-fetch": {
- "version": "3.6.2",
- "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.2.tgz",
- "integrity": "sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==",
+ "version": "3.6.20",
+ "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.20.tgz",
+ "integrity": "sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==",
"dev": true,
"peer": true
},
@@ -37167,12 +35590,31 @@
"is-symbol": "^1.0.3"
}
},
+ "which-builtin-type": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.1.3.tgz",
+ "integrity": "sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==",
+ "dev": true,
+ "requires": {
+ "function.prototype.name": "^1.1.5",
+ "has-tostringtag": "^1.0.0",
+ "is-async-function": "^2.0.0",
+ "is-date-object": "^1.0.5",
+ "is-finalizationregistry": "^1.0.2",
+ "is-generator-function": "^1.0.10",
+ "is-regex": "^1.1.4",
+ "is-weakref": "^1.0.2",
+ "isarray": "^2.0.5",
+ "which-boxed-primitive": "^1.0.2",
+ "which-collection": "^1.0.1",
+ "which-typed-array": "^1.1.9"
+ }
+ },
"which-collection": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz",
"integrity": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==",
"dev": true,
- "peer": true,
"requires": {
"is-map": "^2.0.1",
"is-set": "^2.0.1",
@@ -37181,49 +35623,50 @@
}
},
"which-typed-array": {
- "version": "1.1.9",
- "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz",
- "integrity": "sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==",
+ "version": "1.1.14",
+ "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.14.tgz",
+ "integrity": "sha512-VnXFiIW8yNn9kIHN88xvZ4yOWchftKDsRJ8fEPacX/wl1lOvBrhsJ/OeJCXq7B0AaijRuqgzSKalJoPk+D8MPg==",
"dev": true,
"requires": {
- "available-typed-arrays": "^1.0.5",
- "call-bind": "^1.0.2",
+ "available-typed-arrays": "^1.0.6",
+ "call-bind": "^1.0.5",
"for-each": "^0.3.3",
"gopd": "^1.0.1",
- "has-tostringtag": "^1.0.0",
- "is-typed-array": "^1.1.10"
+ "has-tostringtag": "^1.0.1"
}
},
"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=="
+ "version": "1.2.5",
+ "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz",
+ "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==",
+ "dev": true,
+ "peer": true
},
"workbox-background-sync": {
- "version": "6.5.4",
- "resolved": "https://registry.npmjs.org/workbox-background-sync/-/workbox-background-sync-6.5.4.tgz",
- "integrity": "sha512-0r4INQZMyPky/lj4Ou98qxcThrETucOde+7mRGJl13MPJugQNKeZQOdIJe/1AchOP23cTqHcN/YVpD6r8E6I8g==",
+ "version": "6.6.0",
+ "resolved": "https://registry.npmjs.org/workbox-background-sync/-/workbox-background-sync-6.6.0.tgz",
+ "integrity": "sha512-jkf4ZdgOJxC9u2vztxLuPT/UjlH7m/nWRQ/MgGL0v8BJHoZdVGJd18Kck+a0e55wGXdqyHO+4IQTk0685g4MUw==",
"dev": true,
"peer": true,
"requires": {
"idb": "^7.0.1",
- "workbox-core": "6.5.4"
+ "workbox-core": "6.6.0"
}
},
"workbox-broadcast-update": {
- "version": "6.5.4",
- "resolved": "https://registry.npmjs.org/workbox-broadcast-update/-/workbox-broadcast-update-6.5.4.tgz",
- "integrity": "sha512-I/lBERoH1u3zyBosnpPEtcAVe5lwykx9Yg1k6f8/BGEPGaMMgZrwVrqL1uA9QZ1NGGFoyE6t9i7lBjOlDhFEEw==",
+ "version": "6.6.0",
+ "resolved": "https://registry.npmjs.org/workbox-broadcast-update/-/workbox-broadcast-update-6.6.0.tgz",
+ "integrity": "sha512-nm+v6QmrIFaB/yokJmQ/93qIJ7n72NICxIwQwe5xsZiV2aI93MGGyEyzOzDPVz5THEr5rC3FJSsO3346cId64Q==",
"dev": true,
"peer": true,
"requires": {
- "workbox-core": "6.5.4"
+ "workbox-core": "6.6.0"
}
},
"workbox-build": {
- "version": "6.5.4",
- "resolved": "https://registry.npmjs.org/workbox-build/-/workbox-build-6.5.4.tgz",
- "integrity": "sha512-kgRevLXEYvUW9WS4XoziYqZ8Q9j/2ziJYEtTrjdz5/L/cTUa2XfyMP2i7c3p34lgqJ03+mTiz13SdFef2POwbA==",
+ "version": "6.6.0",
+ "resolved": "https://registry.npmjs.org/workbox-build/-/workbox-build-6.6.0.tgz",
+ "integrity": "sha512-Tjf+gBwOTuGyZwMz2Nk/B13Fuyeo0Q84W++bebbVsfr9iLkDSo6j6PST8tET9HYA58mlRXwlMGpyWO8ETJiXdQ==",
"dev": true,
"peer": true,
"requires": {
@@ -37249,48 +35692,23 @@
"strip-comments": "^2.0.1",
"tempy": "^0.6.0",
"upath": "^1.2.0",
- "workbox-background-sync": "6.5.4",
- "workbox-broadcast-update": "6.5.4",
- "workbox-cacheable-response": "6.5.4",
- "workbox-core": "6.5.4",
- "workbox-expiration": "6.5.4",
- "workbox-google-analytics": "6.5.4",
- "workbox-navigation-preload": "6.5.4",
- "workbox-precaching": "6.5.4",
- "workbox-range-requests": "6.5.4",
- "workbox-recipes": "6.5.4",
- "workbox-routing": "6.5.4",
- "workbox-strategies": "6.5.4",
- "workbox-streams": "6.5.4",
- "workbox-sw": "6.5.4",
- "workbox-window": "6.5.4"
- },
- "dependencies": {
- "@apideck/better-ajv-errors": {
- "version": "0.3.6",
- "resolved": "https://registry.npmjs.org/@apideck/better-ajv-errors/-/better-ajv-errors-0.3.6.tgz",
- "integrity": "sha512-P+ZygBLZtkp0qqOAJJVX4oX/sFo5JR3eBWwwuqHHhK0GIgQOKWrAfiAaWX0aArHkRWHMuggFEgAZNxVPwPZYaA==",
- "dev": true,
- "peer": true,
- "requires": {
- "json-schema": "^0.4.0",
- "jsonpointer": "^5.0.0",
- "leven": "^3.1.0"
- }
- },
- "ajv": {
- "version": "8.12.0",
- "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz",
- "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==",
- "dev": true,
- "peer": true,
- "requires": {
- "fast-deep-equal": "^3.1.1",
- "json-schema-traverse": "^1.0.0",
- "require-from-string": "^2.0.2",
- "uri-js": "^4.2.2"
- }
- },
+ "workbox-background-sync": "6.6.0",
+ "workbox-broadcast-update": "6.6.0",
+ "workbox-cacheable-response": "6.6.0",
+ "workbox-core": "6.6.0",
+ "workbox-expiration": "6.6.0",
+ "workbox-google-analytics": "6.6.0",
+ "workbox-navigation-preload": "6.6.0",
+ "workbox-precaching": "6.6.0",
+ "workbox-range-requests": "6.6.0",
+ "workbox-recipes": "6.6.0",
+ "workbox-routing": "6.6.0",
+ "workbox-strategies": "6.6.0",
+ "workbox-streams": "6.6.0",
+ "workbox-sw": "6.6.0",
+ "workbox-window": "6.6.0"
+ },
+ "dependencies": {
"fs-extra": {
"version": "9.1.0",
"resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz",
@@ -37304,13 +35722,6 @@
"universalify": "^2.0.0"
}
},
- "json-schema-traverse": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
- "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
- "dev": true,
- "peer": true
- },
"source-map": {
"version": "0.8.0-beta.0",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.8.0-beta.0.tgz",
@@ -37353,135 +35764,135 @@
}
},
"workbox-cacheable-response": {
- "version": "6.5.4",
- "resolved": "https://registry.npmjs.org/workbox-cacheable-response/-/workbox-cacheable-response-6.5.4.tgz",
- "integrity": "sha512-DCR9uD0Fqj8oB2TSWQEm1hbFs/85hXXoayVwFKLVuIuxwJaihBsLsp4y7J9bvZbqtPJ1KlCkmYVGQKrBU4KAug==",
+ "version": "6.6.0",
+ "resolved": "https://registry.npmjs.org/workbox-cacheable-response/-/workbox-cacheable-response-6.6.0.tgz",
+ "integrity": "sha512-JfhJUSQDwsF1Xv3EV1vWzSsCOZn4mQ38bWEBR3LdvOxSPgB65gAM6cS2CX8rkkKHRgiLrN7Wxoyu+TuH67kHrw==",
"dev": true,
"peer": true,
"requires": {
- "workbox-core": "6.5.4"
+ "workbox-core": "6.6.0"
}
},
"workbox-core": {
- "version": "6.5.4",
- "resolved": "https://registry.npmjs.org/workbox-core/-/workbox-core-6.5.4.tgz",
- "integrity": "sha512-OXYb+m9wZm8GrORlV2vBbE5EC1FKu71GGp0H4rjmxmF4/HLbMCoTFws87M3dFwgpmg0v00K++PImpNQ6J5NQ6Q==",
+ "version": "6.6.0",
+ "resolved": "https://registry.npmjs.org/workbox-core/-/workbox-core-6.6.0.tgz",
+ "integrity": "sha512-GDtFRF7Yg3DD859PMbPAYPeJyg5gJYXuBQAC+wyrWuuXgpfoOrIQIvFRZnQ7+czTIQjIr1DhLEGFzZanAT/3bQ==",
"dev": true,
"peer": true
},
"workbox-expiration": {
- "version": "6.5.4",
- "resolved": "https://registry.npmjs.org/workbox-expiration/-/workbox-expiration-6.5.4.tgz",
- "integrity": "sha512-jUP5qPOpH1nXtjGGh1fRBa1wJL2QlIb5mGpct3NzepjGG2uFFBn4iiEBiI9GUmfAFR2ApuRhDydjcRmYXddiEQ==",
+ "version": "6.6.0",
+ "resolved": "https://registry.npmjs.org/workbox-expiration/-/workbox-expiration-6.6.0.tgz",
+ "integrity": "sha512-baplYXcDHbe8vAo7GYvyAmlS4f6998Jff513L4XvlzAOxcl8F620O91guoJ5EOf5qeXG4cGdNZHkkVAPouFCpw==",
"dev": true,
"peer": true,
"requires": {
"idb": "^7.0.1",
- "workbox-core": "6.5.4"
+ "workbox-core": "6.6.0"
}
},
"workbox-google-analytics": {
- "version": "6.5.4",
- "resolved": "https://registry.npmjs.org/workbox-google-analytics/-/workbox-google-analytics-6.5.4.tgz",
- "integrity": "sha512-8AU1WuaXsD49249Wq0B2zn4a/vvFfHkpcFfqAFHNHwln3jK9QUYmzdkKXGIZl9wyKNP+RRX30vcgcyWMcZ9VAg==",
+ "version": "6.6.0",
+ "resolved": "https://registry.npmjs.org/workbox-google-analytics/-/workbox-google-analytics-6.6.0.tgz",
+ "integrity": "sha512-p4DJa6OldXWd6M9zRl0H6vB9lkrmqYFkRQ2xEiNdBFp9U0LhsGO7hsBscVEyH9H2/3eZZt8c97NB2FD9U2NJ+Q==",
"dev": true,
"peer": true,
"requires": {
- "workbox-background-sync": "6.5.4",
- "workbox-core": "6.5.4",
- "workbox-routing": "6.5.4",
- "workbox-strategies": "6.5.4"
+ "workbox-background-sync": "6.6.0",
+ "workbox-core": "6.6.0",
+ "workbox-routing": "6.6.0",
+ "workbox-strategies": "6.6.0"
}
},
"workbox-navigation-preload": {
- "version": "6.5.4",
- "resolved": "https://registry.npmjs.org/workbox-navigation-preload/-/workbox-navigation-preload-6.5.4.tgz",
- "integrity": "sha512-IIwf80eO3cr8h6XSQJF+Hxj26rg2RPFVUmJLUlM0+A2GzB4HFbQyKkrgD5y2d84g2IbJzP4B4j5dPBRzamHrng==",
+ "version": "6.6.0",
+ "resolved": "https://registry.npmjs.org/workbox-navigation-preload/-/workbox-navigation-preload-6.6.0.tgz",
+ "integrity": "sha512-utNEWG+uOfXdaZmvhshrh7KzhDu/1iMHyQOV6Aqup8Mm78D286ugu5k9MFD9SzBT5TcwgwSORVvInaXWbvKz9Q==",
"dev": true,
"peer": true,
"requires": {
- "workbox-core": "6.5.4"
+ "workbox-core": "6.6.0"
}
},
"workbox-precaching": {
- "version": "6.5.4",
- "resolved": "https://registry.npmjs.org/workbox-precaching/-/workbox-precaching-6.5.4.tgz",
- "integrity": "sha512-hSMezMsW6btKnxHB4bFy2Qfwey/8SYdGWvVIKFaUm8vJ4E53JAY+U2JwLTRD8wbLWoP6OVUdFlXsTdKu9yoLTg==",
+ "version": "6.6.0",
+ "resolved": "https://registry.npmjs.org/workbox-precaching/-/workbox-precaching-6.6.0.tgz",
+ "integrity": "sha512-eYu/7MqtRZN1IDttl/UQcSZFkHP7dnvr/X3Vn6Iw6OsPMruQHiVjjomDFCNtd8k2RdjLs0xiz9nq+t3YVBcWPw==",
"dev": true,
"peer": true,
"requires": {
- "workbox-core": "6.5.4",
- "workbox-routing": "6.5.4",
- "workbox-strategies": "6.5.4"
+ "workbox-core": "6.6.0",
+ "workbox-routing": "6.6.0",
+ "workbox-strategies": "6.6.0"
}
},
"workbox-range-requests": {
- "version": "6.5.4",
- "resolved": "https://registry.npmjs.org/workbox-range-requests/-/workbox-range-requests-6.5.4.tgz",
- "integrity": "sha512-Je2qR1NXCFC8xVJ/Lux6saH6IrQGhMpDrPXWZWWS8n/RD+WZfKa6dSZwU+/QksfEadJEr/NfY+aP/CXFFK5JFg==",
+ "version": "6.6.0",
+ "resolved": "https://registry.npmjs.org/workbox-range-requests/-/workbox-range-requests-6.6.0.tgz",
+ "integrity": "sha512-V3aICz5fLGq5DpSYEU8LxeXvsT//mRWzKrfBOIxzIdQnV/Wj7R+LyJVTczi4CQ4NwKhAaBVaSujI1cEjXW+hTw==",
"dev": true,
"peer": true,
"requires": {
- "workbox-core": "6.5.4"
+ "workbox-core": "6.6.0"
}
},
"workbox-recipes": {
- "version": "6.5.4",
- "resolved": "https://registry.npmjs.org/workbox-recipes/-/workbox-recipes-6.5.4.tgz",
- "integrity": "sha512-QZNO8Ez708NNwzLNEXTG4QYSKQ1ochzEtRLGaq+mr2PyoEIC1xFW7MrWxrONUxBFOByksds9Z4//lKAX8tHyUA==",
+ "version": "6.6.0",
+ "resolved": "https://registry.npmjs.org/workbox-recipes/-/workbox-recipes-6.6.0.tgz",
+ "integrity": "sha512-TFi3kTgYw73t5tg73yPVqQC8QQjxJSeqjXRO4ouE/CeypmP2O/xqmB/ZFBBQazLTPxILUQ0b8aeh0IuxVn9a6A==",
"dev": true,
"peer": true,
"requires": {
- "workbox-cacheable-response": "6.5.4",
- "workbox-core": "6.5.4",
- "workbox-expiration": "6.5.4",
- "workbox-precaching": "6.5.4",
- "workbox-routing": "6.5.4",
- "workbox-strategies": "6.5.4"
+ "workbox-cacheable-response": "6.6.0",
+ "workbox-core": "6.6.0",
+ "workbox-expiration": "6.6.0",
+ "workbox-precaching": "6.6.0",
+ "workbox-routing": "6.6.0",
+ "workbox-strategies": "6.6.0"
}
},
"workbox-routing": {
- "version": "6.5.4",
- "resolved": "https://registry.npmjs.org/workbox-routing/-/workbox-routing-6.5.4.tgz",
- "integrity": "sha512-apQswLsbrrOsBUWtr9Lf80F+P1sHnQdYodRo32SjiByYi36IDyL2r7BH1lJtFX8fwNHDa1QOVY74WKLLS6o5Pg==",
+ "version": "6.6.0",
+ "resolved": "https://registry.npmjs.org/workbox-routing/-/workbox-routing-6.6.0.tgz",
+ "integrity": "sha512-x8gdN7VDBiLC03izAZRfU+WKUXJnbqt6PG9Uh0XuPRzJPpZGLKce/FkOX95dWHRpOHWLEq8RXzjW0O+POSkKvw==",
"dev": true,
"peer": true,
"requires": {
- "workbox-core": "6.5.4"
+ "workbox-core": "6.6.0"
}
},
"workbox-strategies": {
- "version": "6.5.4",
- "resolved": "https://registry.npmjs.org/workbox-strategies/-/workbox-strategies-6.5.4.tgz",
- "integrity": "sha512-DEtsxhx0LIYWkJBTQolRxG4EI0setTJkqR4m7r4YpBdxtWJH1Mbg01Cj8ZjNOO8etqfA3IZaOPHUxCs8cBsKLw==",
+ "version": "6.6.0",
+ "resolved": "https://registry.npmjs.org/workbox-strategies/-/workbox-strategies-6.6.0.tgz",
+ "integrity": "sha512-eC07XGuINAKUWDnZeIPdRdVja4JQtTuc35TZ8SwMb1ztjp7Ddq2CJ4yqLvWzFWGlYI7CG/YGqaETntTxBGdKgQ==",
"dev": true,
"peer": true,
"requires": {
- "workbox-core": "6.5.4"
+ "workbox-core": "6.6.0"
}
},
"workbox-streams": {
- "version": "6.5.4",
- "resolved": "https://registry.npmjs.org/workbox-streams/-/workbox-streams-6.5.4.tgz",
- "integrity": "sha512-FXKVh87d2RFXkliAIheBojBELIPnWbQdyDvsH3t74Cwhg0fDheL1T8BqSM86hZvC0ZESLsznSYWw+Va+KVbUzg==",
+ "version": "6.6.0",
+ "resolved": "https://registry.npmjs.org/workbox-streams/-/workbox-streams-6.6.0.tgz",
+ "integrity": "sha512-rfMJLVvwuED09CnH1RnIep7L9+mj4ufkTyDPVaXPKlhi9+0czCu+SJggWCIFbPpJaAZmp2iyVGLqS3RUmY3fxg==",
"dev": true,
"peer": true,
"requires": {
- "workbox-core": "6.5.4",
- "workbox-routing": "6.5.4"
+ "workbox-core": "6.6.0",
+ "workbox-routing": "6.6.0"
}
},
"workbox-sw": {
- "version": "6.5.4",
- "resolved": "https://registry.npmjs.org/workbox-sw/-/workbox-sw-6.5.4.tgz",
- "integrity": "sha512-vo2RQo7DILVRoH5LjGqw3nphavEjK4Qk+FenXeUsknKn14eCNedHOXWbmnvP4ipKhlE35pvJ4yl4YYf6YsJArA==",
+ "version": "6.6.0",
+ "resolved": "https://registry.npmjs.org/workbox-sw/-/workbox-sw-6.6.0.tgz",
+ "integrity": "sha512-R2IkwDokbtHUE4Kus8pKO5+VkPHD2oqTgl+XJwh4zbF1HyjAbgNmK/FneZHVU7p03XUt9ICfuGDYISWG9qV/CQ==",
"dev": true,
"peer": true
},
"workbox-webpack-plugin": {
- "version": "6.5.4",
- "resolved": "https://registry.npmjs.org/workbox-webpack-plugin/-/workbox-webpack-plugin-6.5.4.tgz",
- "integrity": "sha512-LmWm/zoaahe0EGmMTrSLUi+BjyR3cdGEfU3fS6PN1zKFYbqAKuQ+Oy/27e4VSXsyIwAw8+QDfk1XHNGtZu9nQg==",
+ "version": "6.6.0",
+ "resolved": "https://registry.npmjs.org/workbox-webpack-plugin/-/workbox-webpack-plugin-6.6.0.tgz",
+ "integrity": "sha512-xNZIZHalboZU66Wa7x1YkjIqEy1gTR+zPM+kjrYJzqN7iurYZBctBLISyScjhkJKYuRrZUP0iqViZTh8rS0+3A==",
"dev": true,
"peer": true,
"requires": {
@@ -37489,7 +35900,7 @@
"pretty-bytes": "^5.4.1",
"upath": "^1.2.0",
"webpack-sources": "^1.4.3",
- "workbox-build": "6.5.4"
+ "workbox-build": "6.6.0"
},
"dependencies": {
"source-map": {
@@ -37513,14 +35924,14 @@
}
},
"workbox-window": {
- "version": "6.5.4",
- "resolved": "https://registry.npmjs.org/workbox-window/-/workbox-window-6.5.4.tgz",
- "integrity": "sha512-HnLZJDwYBE+hpG25AQBO8RUWBJRaCsI9ksQJEp3aCOFCaG5kqaToAYXFRAHxzRluM2cQbGzdQF5rjKPWPA1fug==",
+ "version": "6.6.0",
+ "resolved": "https://registry.npmjs.org/workbox-window/-/workbox-window-6.6.0.tgz",
+ "integrity": "sha512-L4N9+vka17d16geaJXXRjENLFldvkWy7JyGxElRD0JvBxvFEd8LOhr+uXCcar/NzAmIBRv9EZ+M+Qr4mOoBITw==",
"dev": true,
"peer": true,
"requires": {
"@types/trusted-types": "^2.0.2",
- "workbox-core": "6.5.4"
+ "workbox-core": "6.6.0"
}
},
"wrap-ansi": {
@@ -37533,26 +35944,65 @@
"strip-ansi": "^6.0.0"
},
"dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "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=="
+ },
+ "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=="
+ },
+ "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==",
"requires": {
- "color-convert": "^2.0.1"
+ "emoji-regex": "^8.0.0",
+ "is-fullwidth-code-point": "^3.0.0",
+ "strip-ansi": "^6.0.1"
}
+ }
+ }
+ },
+ "wrap-ansi-cjs": {
+ "version": "npm:wrap-ansi@7.0.0",
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
+ "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
+ "dev": true,
+ "peer": true,
+ "requires": {
+ "ansi-styles": "^4.0.0",
+ "string-width": "^4.1.0",
+ "strip-ansi": "^6.0.0"
+ },
+ "dependencies": {
+ "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,
+ "peer": true
},
- "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==",
+ "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,
+ "peer": true
+ },
+ "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,
+ "peer": true,
"requires": {
- "color-name": "~1.1.4"
+ "emoji-regex": "^8.0.0",
+ "is-fullwidth-code-point": "^3.0.0",
+ "strip-ansi": "^6.0.1"
}
- },
- "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=="
}
}
},
@@ -37606,17 +36056,49 @@
"peer": true
},
"yargs": {
- "version": "16.2.0",
- "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz",
- "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==",
+ "version": "17.7.2",
+ "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz",
+ "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==",
+ "dev": true,
"requires": {
- "cliui": "^7.0.2",
+ "cliui": "^8.0.1",
"escalade": "^3.1.1",
"get-caller-file": "^2.0.5",
"require-directory": "^2.1.1",
- "string-width": "^4.2.0",
+ "string-width": "^4.2.3",
"y18n": "^5.0.5",
- "yargs-parser": "^20.2.2"
+ "yargs-parser": "^21.1.1"
+ },
+ "dependencies": {
+ "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
+ },
+ "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
+ },
+ "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,
+ "requires": {
+ "emoji-regex": "^8.0.0",
+ "is-fullwidth-code-point": "^3.0.0",
+ "strip-ansi": "^6.0.1"
+ }
+ },
+ "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
+ }
}
},
"yargs-parser": {
diff --git a/package.json b/package.json
index 0ccc869..21c30e6 100644
--- a/package.json
+++ b/package.json
@@ -5,6 +5,7 @@
"main": "index.js",
"scripts": {
"prepare": "husky install",
+ "attributions:gen": "node ./scripts/attributions.gen.js",
"code:lint": "eslint -c .eslintrc.js --ignore-path .gitignore .",
"code:format": "npm run code:lint:app -- --fix",
"code:lint:app": "eslint -c .eslintrc.js --ignore-path .gitignore ./app",
@@ -13,11 +14,13 @@
"code:format:service": "npm run code:lint:service -- --fix",
"test": "echo \"Error: no test specified\" && exit 0"
},
+ "license": "MIT",
"author": {
- "name": "wrappid",
- "email": "wrappid.framework@gmail.com",
- "url": "https://www.github.com/wrappid/core"
- },
+ "name": "Wrappid",
+ "email": "wrappid.framework@gmail.com",
+ "url": "https://www.github.com/wrappid"
+ },
+ "homepage": "https://github.com/wrappid/wrappid-module",
"repository": {
"type": "git",
"url": "git:https://github.com/Rxefy/profile-module.git"
@@ -29,7 +32,6 @@
"react-native",
"template"
],
- "license": "MIT",
"devDependencies": {
"@commitlint/cli": "^17.5.0",
"@commitlint/config-conventional": "^17.4.4",
@@ -45,9 +47,9 @@
"eslint-plugin-require-extensions": "^0.1.3",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-unused-imports": "^2.0.0",
- "prettier": "^2.5.1",
"husky": "^8.0.3",
- "react-redux": "^8.0.5"
+ "react-redux": "^8.0.5",
+ "license-checker": "^25.0.1"
},
"dependencies": {
"@faker-js/faker": "^8.1.0",
diff --git a/scripts/attributions.gen.js b/scripts/attributions.gen.js
new file mode 100644
index 0000000..7615fc1
--- /dev/null
+++ b/scripts/attributions.gen.js
@@ -0,0 +1,130 @@
+#!/usr/bin/env node
+/* eslint-disable import/order */
+/* eslint-disable no-console */
+// eslint-disable-next-line no-undef
+const path = require("path");
+
+// eslint-disable-next-line no-undef
+const licenseChecker = require("license-checker");
+
+// eslint-disable-next-line no-undef, no-var
+const fileSystem = require("fs");
+
+/**
+ * @todo
+ *
+ * need to use content directly without the below command
+ * license-checker --json --out attributions.json
+ *
+
+packageName@version
+
+#### Basic details about the package
+>|Key|Value|
+>|:--|:--|
+>|**Name**|packageName|
+>|**Version**|0.0.402|
+>|**Repository**|https://github.com/wrappid/core|
+>|**Licenses**|MIT|
+>|**Publisher**|Wrappid Framework|
+>|**Contact**|wrappid.framework@gmail.com|
+>|**Homepage**|https://github.com/wrappid|
+
+#### Use this package in your project
+```bash
+npm i @wrappid/core
+```
+
+ */
+
+/**
+ * @todo
+ * 1. get license of the used package using license-checker
+ * 2. convert the content to .md
+ */
+
+try {
+ // eslint-disable-next-line no-undef
+ let packagePath = path.join(__dirname, "./../");
+ // eslint-disable-next-line no-undef
+ let attributionMdPath = path.join(__dirname, "./../ATTRIBUTIONS.md");
+
+ licenseChecker.init({ start: packagePath }, function(err, packages) {
+ if (err) {
+ //Handle error
+ throw err;
+ } else {
+ // eslint-disable-next-line no-console
+ // console.log(packages);
+
+ /**
+ * @todo
+ * 1. convert to markdown
+ */
+ let markdownContent = "";
+
+ markdownContent += Object.keys(packages).map((packageKey) => {
+ return convertJsonToMDFormat(packageKey, packages[packageKey]);
+ }).join("\n");
+ // eslint-disable-next-line etc/no-commented-out-code
+ console.log(markdownContent);
+ fileSystem.writeFileSync(attributionMdPath, markdownContent);
+ }
+ });
+} catch (error) {
+ // eslint-disable-next-line no-console
+ console.error("Something went wrong, please re-run `npm run attributions:gen`");
+ // eslint-disable-next-line no-console
+ console.error(error);
+}
+
+/**
+ *
+ * @param {*} attributionJSON
+ * @returns
+ */
+const convertJsonToMDFormat = (packageName, packageInfo) => {
+ let mdContent = "";
+
+ let {
+ licenses,
+ repository,
+ publisher,
+ url,
+ // path,
+ licenseFile,
+ email
+ } = packageInfo;
+
+ const extractedNumbers = packageName.match(/[0-9.]+/g);
+ let packageVersion = "";
+
+ if (extractedNumbers) {
+ packageVersion = extractedNumbers.join("");
+
+ // eslint-disable-next-line etc/no-commented-out-code
+ // console.log(packageVersion);
+ }
+
+ mdContent = `
+ ${packageName}
+
+ #### Basic details about the package
+ >|Key|Value|
+ >|:--|:--|
+ >|**Name**|${packageName || "NA"}|
+ >|**Version**|${"@" + packageVersion || "NA"}|
+ >|**Repository**|${repository || "NA"}|
+ >|**Licenses**|${licenses || "NA"}|
+ >|**Publisher**|${publisher || "NA"}|
+ >|**Contact**|${email || "NA"}|
+ >|**Homepage**|${url || "NA"}|
+
+ #### Use this package in your project
+ \`\`\`bash
+ npm i ${packageName}
+ \`\`\`
+ `;
+
+ return mdContent;
+};
\ No newline at end of file
diff --git a/service/tasks/TestTask.js b/service/tasks/TestTask.js
index 3fc3961..b9675de 100644
--- a/service/tasks/TestTask.js
+++ b/service/tasks/TestTask.js
@@ -1,18 +1,18 @@
/* eslint-disable no-console */
module.exports = {
- handleError: () => {},
- perform : () => {
- console.log(
- `Test task is running in every minute @ ${new Date()}`
- );
- },
- postPerform: () => {
- console.log(`Test Task is completed @ ${new Date()}`);
- console.log("<---------------------------------------------------------->");
- },
- prePerform: () => {
- console.log(`Test Task is initated @ ${new Date()}`);
- return true;
- },
+ prePerform: () => {
+ console.log(`Test Task is initated @ ${new Date()}`);
+ return true;
+ },
+ perform: () => {
+ console.log(
+ `Test task is running in every minute @ ${new Date()}`
+ );
+ },
+ postPerform: () => {
+ console.log(`Test Task is completed @ ${new Date()}`);
+ console.log("<---------------------------------------------------------->");
+ },
+ handleError: () => {},
};