diff --git a/.github/workflows/homebrew.yaml b/.github/workflows/homebrew.yaml
index 5533fb5..c5651e9 100644
--- a/.github/workflows/homebrew.yaml
+++ b/.github/workflows/homebrew.yaml
@@ -3,21 +3,28 @@ name: homebrew
on:
push:
branches:
- - master
+ - main
jobs:
homebrew:
runs-on: ubuntu-latest
+ env:
+ NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
+ AWS_SDK_LOAD_CONFIG: true
+ AWS_PROFILE: cloudgraph-iac
+ NODE_ENV: "cicd"
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
persist-credentials: false
- token: ${{secrets.gh_token}}
- - uses: actions/setup-node@v2
+ token: ${{secrets.GH_TOKEN}}
+
+ - uses: actions/setup-node@v3
with:
node-version: 16
- registry-url: 'https://registry.npmjs.org'
+ registry-url: "https://registry.npmjs.org"
+ cache: yarn
- name: Mkdir .aws
run: mkdir -p ~/.aws
@@ -28,47 +35,40 @@ jobs:
[default]
region=us-east-1
output=json
-
+
[profile cloudgraph-iac]
- role_arn = $AWS_ROLE_ARN
+ role_arn = ${{ secrets.AWS_ROLE_ARN }}
source_profile = default
EOF
- name: Set .aws/credentials
run: |
cat << EOF > ~/.aws/credentials
[default]
- aws_access_key_id = $AWS_ACCESS_KEY_ID
- aws_secret_access_key = $AWS_SECRET_ACCESS_KEY
+ aws_access_key_id = ${{ secrets.AWS_ACCESS_KEY_ID }}
+ aws_secret_access_key = ${{ secrets.AWS_SECRET_ACCESS_KEY }}
EOF
- - name: Get cache directory
- id: npm-cache-dir
- run: |
- echo "::set-output name=dir::$(npm config get cache)"
-
- - name: Restoring cache
- id: npm-cache # use this to check for `cache-hit` ==> if: steps.npm-cache.outputs.cache-hit != 'true'
- uses: actions/cache@v2
- with:
- path: ${{ steps.npm-cache-dir.outputs.dir }}
- key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
- restore-keys: |
- ${{ runner.os }}-yarn-
- name: Install Packages
- if: steps.npm-cache.outputs.cache-hit != 'true'
- run: yarn install --frozen-lockfile --cache-folder .npm --prefer-offline
+ run: yarn install --prefer-offline --frozen-lockfile
- name: Build
run: yarn build
- - name: Homebrew
- run: yarn homebrew
+ - name: Add SSH key
env:
- NODE_AUTH_TOKEN: ${{secrets.npm_token}}
- AWS_SDK_LOAD_CONFIG: true
- AWS_PROFILE: cloudgraph-iac
- AWS_ACCESS_KEY_ID: ${{secrets.aws_access_key_id}}
- AWS_SECRET_ACCESS_KEY: ${{secrets.aws_secret_access_key}}
- AWS_ROLE_ARN: ${{secrets.aws_role_arn}}
- NODE_ENV: 'cicd'
-
\ No newline at end of file
+ SSH_AUTH_SOCK: /tmp/ssh_agent.sock
+ run: |
+ mkdir -p ~/.ssh
+ ssh-keyscan github.com >> ~/.ssh/known_hosts
+ echo "${{ secrets.AUTODEPLOY_SSH_KEY }}" > ~/.ssh/github_actions
+ chmod 600 ~/.ssh/github_actions
+ ssh-agent -a $SSH_AUTH_SOCK > /dev/null
+ ssh-add ~/.ssh/github_actions
+
+ - name: Homebrew
+ env:
+ SSH_AUTH_SOCK: /tmp/ssh_agent.sock
+ run: |
+ git config --global user.email "no-reply@autocloud.dev"
+ git config --global user.name "autocloud-deploy-bot"
+ yarn homebrew
diff --git a/.github/workflows/notify.yml b/.github/workflows/notify.yml
index 3d5c9aa..4fc01bd 100644
--- a/.github/workflows/notify.yml
+++ b/.github/workflows/notify.yml
@@ -1,3 +1,4 @@
+---
name: notify
on:
@@ -9,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- - uses: actions/setup-node@v2
+ - uses: actions/setup-node@v3
with:
node-version: 16
- run: |
@@ -17,6 +18,6 @@ jobs:
curl -X POST --data-urlencode "payload={\"attachments\":[{\"fallback\":\"$GIT_AUTHOR_NAME released new $ORGANIZATION_NAME $REPO_NAME version of $GITHUB_REF_NAME\",\"color\":\"good\",\"title\":\"Version $GITHUB_REF_NAME of $ORGANIZATION_NAME $REPO_NAME released\",\"title_link\":\"$GITHUB_SERVER_URL/$GITHUB_REPOSITORY/releases/tag/$GITHUB_REF_NAME\",\"fields\":[{\"title\":\"Tag\",\"value\":\"<$GITHUB_SERVER_URL/$GITHUB_REPOSITORY/commits/$GITHUB_REF_NAME|$GITHUB_REF_NAME>\",\"short\":true},{\"title\":\"Commit\",\"value\":\"<$GITHUB_SERVER_URL/$GITHUB_REPOSITORY/tree/$GITHUB_REF_NAME|$GIT_COMMIT_TILE>\",\"short\":true}],\"footer\":\"$ORGANIZATION_NAME $REPO_NAME \",\"ts\":\"$( date +%s )\"}]}" $SLACK_WEBHOOK
env:
REPO_NAME: ${{ github.event.repository.name }}
- GIT_AUTHOR_NAME: 'AutoCloud Deploy Bot'
+ GIT_AUTHOR_NAME: "AutoCloud Deploy Bot"
SLACK_WEBHOOK: ${{secrets.slack_api_endpoint}}
- ORGANIZATION_NAME: ${{secrets.organization_name}}
\ No newline at end of file
+ ORGANIZATION_NAME: ${{secrets.organization_name}}
diff --git a/.github/workflows/pr-validator.yml b/.github/workflows/pr-validator.yml
index 63fcb13..96511e9 100644
--- a/.github/workflows/pr-validator.yml
+++ b/.github/workflows/pr-validator.yml
@@ -1,10 +1,11 @@
+---
name: pr-validator
on:
pull_request:
types: [synchronize, opened, reopened, edited]
branches:
- - master
+ - main
- beta
jobs:
@@ -12,8 +13,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- - run : |
- if [ "$TARGET_BRANCH" == "master" ] && [ "$SOURCE_BRANCH" == "beta" ]; then
+ - run: |
+ if [ "$TARGET_BRANCH" == "main" ] && [ "$SOURCE_BRANCH" == "beta" ]; then
echo "Merge from $SOURCE_BRANCH to $TARGET_BRANCH is valid"
exit 0
elif [ "$TARGET_BRANCH" == "beta" ] && [ "$SOURCE_BRANCH" == "alpha" ]; then
@@ -25,6 +26,4 @@ jobs:
fi
env:
SOURCE_BRANCH: ${{ github.head_ref }}
- TARGET_BRANCH: ${{ github.base_ref }}
-
-
\ No newline at end of file
+ TARGET_BRANCH: ${{ github.base_ref }}
diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml
index aba621c..14695fa 100644
--- a/.github/workflows/publish.yml
+++ b/.github/workflows/publish.yml
@@ -1,15 +1,12 @@
-# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
-# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages
-
+---
name: publish
-
on:
push:
branches:
- - master
- alpha
- beta
+ - main
jobs:
build:
@@ -20,41 +17,43 @@ jobs:
fetch-depth: 0
persist-credentials: false
token: ${{secrets.gh_token}}
- - uses: actions/setup-node@v2
+ - uses: actions/setup-node@v3
with:
node-version: 16
- registry-url: 'https://registry.npmjs.org'
+ registry-url: "https://registry.npmjs.org"
- name: Get cache directory
- id: npm-cache-dir
+ id: yarn-cache-dir
run: |
- echo "::set-output name=dir::$(npm config get cache)"
-
+ echo "::set-output name=dir::$(yarn cache dir)"
+
- name: Restoring cache
- uses: actions/cache@v2
- id: npm-cache # use this to check for `cache-hit` ==> if: steps.npm-cache.outputs.cache-hit != 'true'
+ uses: actions/cache@v3
+ id: yarn-cache # use this to check for `cache-hit` ==> if: steps.yarn-cache.outputs.cache-hit != 'true'
with:
- path: ${{ steps.npm-cache-dir.outputs.dir }}
+ path: ${{ steps.yarn-cache-dir.outputs.dir }}
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install Packages
- run: yarn install --frozen-lockfile --cache-folder .npm --prefer-offline
+ # NOTE: The --ignore-scripts flag is required to prevent leakage of NPM_TOKEN value
+ # See https://github.com/actions/setup-node/blob/main/docs/advanced-usage.md#use-private-packages
+ run: yarn install --frozen-lockfile --prefer-offline --ignore-scripts
- name: Build
run: yarn prepack
- - name: Test
- run: yarn lint
+ # - name: Test
+ # run: yarn lint
- - name: Publish
- run: npx semantic-release -r $GITHUB_SERVER_URL/$GITHUB_REPOSITORY
+ - name: Publish
+ run: npx semantic-release
env:
+ NODE_ENV: "cicd"
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
GITHUB_TOKEN: ${{secrets.gh_token}}
- GIT_AUTHOR_NAME: 'autocloud-deploy-bot'
- GIT_AUTHOR_EMAIL: 'no-reply@autocloud.dev'
- GIT_COMMITTER_NAME: 'autocloud-deploy-bot'
- GIT_COMMITTER_EMAIL: 'no-reply@autocloud.dev'
- NODE_ENV: 'cicd'
+ GIT_AUTHOR_NAME: "autocloud-deploy-bot"
+ GIT_AUTHOR_EMAIL: "no-reply@autocloud.dev"
+ GIT_COMMITTER_NAME: "autocloud-deploy-bot"
+ GIT_COMMITTER_EMAIL: "no-reply@autocloud.dev"
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
deleted file mode 100644
index a73922c..0000000
--- a/.gitlab-ci.yml
+++ /dev/null
@@ -1,175 +0,0 @@
----
-.install-packages: &install-packages
- - apk --quiet --no-progress --update --no-cache add git openssh curl
- - ln -s /usr/bin/sha256sum /usr/bin/shasum
-
-.configure-registry: &configure-registry
- - |
- {
- echo "//registry.npmjs.com/:_authToken=${NPM_TOKEN}"
- echo "@cloudgraph:registry=https://registry.npmjs.com/"
- } | tee -a .npmrc
- - |
- {
- echo "\"@cloudgraph:registry\" \"https://registry.npmjs.com/\""
- echo "\"//registry.npmjs.com/:_authToken\" \"${NPM_TOKEN}\""
- } | tee -a .yarnrc
- - NODE_ENV=cicd yarn install --frozen-lockfile --cache-folder .npm --prefer-offline
-
-.configure-ssh: &configure-ssh
- - mkdir -p ~/.ssh
- - chmod 700 ~/.ssh
- - echo "$GITHUB_SSH_KEY" | tr -d '\r' > ~/.ssh/github_autodeploy
- - chmod 600 ~/.ssh/github_autodeploy
- - |
- {
- echo "Host github.com"
- echo "HostName github.com"
- echo "User git"
- echo "PreferredAuthentications publickey"
- echo "Port 22"
- echo "TCPKeepAlive yes"
- echo "IdentitiesOnly yes"
- echo "AddKeysToAgent yes"
- echo "IdentityFile ~/.ssh/github_autodeploy"
- echo "StrictHostKeyChecking no"
- } | tee -a /root/.ssh/config
- - chmod 0600 /root/.ssh/config
-
-default:
- image: node:16-alpine
- before_script:
- - *install-packages
- - *configure-registry
- cache:
- key: ${CI_COMMIT_REF_SLUG}
- paths:
- - .npm/
- - lib/
-
-workflow:
- rules:
- - if: '$CI_PIPELINE_SOURCE == "push"'
-
-variables:
- NPM_TOKEN: ${NPM_TOKEN}
-
-stages:
- - build
- - test
- - release
- - publish
- - notify
-
-build:
- stage: build
- rules:
- - if: $CI_COMMIT_TAG
- when: never
- - if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE =~ /^chore\(release\)/'
- when: never
- - if: $CI_COMMIT_BRANCH
- when: always
- script:
- - yarn prepack
-
-lint:
- stage: test
- rules:
- - when: always
- script:
- - yarn lint
-
-# test:
-# image: node:16-alpine
-# stage: test
-# rules:
-# - when: always
-# script:
-# - yarn test
-
-semantic release:
- stage: release
- rules:
- - if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE =~ /^chore\(release\)/'
- when: never
- - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
- - if: $CI_COMMIT_BRANCH == "alpha"
- - if: $CI_COMMIT_BRANCH == "beta"
- variables:
- # Set git commit identity
- GIT_AUTHOR_NAME: 'AutoCloud Deploy Bot'
- GIT_AUTHOR_EMAIL: 'no-reply@loudcloud.dev'
- GIT_COMMITTER_NAME: 'AutoCloud Deploy Bot'
- GIT_COMMITTER_EMAIL: 'no-reply@loudcloud.dev'
- # Disable Husky for the git step of semantic release (handles all versions, env var name changed in v6)
- HUSKY_SKIP_HOOKS: 1
- HUSKY: 0
- script:
- - npx semantic-release -r $CI_PROJECT_URL
-
-homebrew:
- image: node:16
- stage: release
- rules:
- - if: $CI_COMMIT_BRANCH
- when: never
- - if: $CI_COMMIT_TAG =~ /alpha/
- when: never
- - if: $CI_COMMIT_TAG =~ /beta/
- when: never
- - if: $CI_COMMIT_TAG
- when: always
- variables:
- # Set git commit identity
- GIT_AUTHOR_NAME: 'AutoCloud Deploy Bot'
- GIT_AUTHOR_EMAIL: 'no-reply@loudcloud.dev'
- GIT_COMMITTER_NAME: 'AutoCloud Deploy Bot'
- GIT_COMMITTER_EMAIL: 'no-reply@loudcloud.dev'
- before_script:
- # - *install-packages
- - *configure-registry
- - *configure-ssh
- - mkdir -p /home/node/.aws
- - |
- cat << EOF > /home/node/.aws/config
- [default]
- region=us-east-1
- output=json
-
- [profile cloudgraph-iac]
- role_arn = ${AWS_ROLE_ARN}
- source_profile = default
- EOF
- - |
- cat << EOF > /home/node/.aws/credentials
- [default]
- aws_access_key_id = ${AWS_ACCESS_KEY_ID}
- aws_secret_access_key = ${AWS_SECRET_ACCESS_KEY}
- EOF
- - export AWS_SHARED_CREDENTIALS_FILE=/home/node/.aws/credentials
- - export AWS_CONFIG_FILE=/home/node/.aws/config
- - export AWS_SDK_LOAD_CONFIG=true
- - export AWS_PROFILE=cloudgraph-iac
- script:
- - yarn build
- - yarn homebrew
-
-.curlcmd: &curlcmd >
- curl
- -sS
- -X POST
- --data-urlencode "payload={\"attachments\":[{\"fallback\":\"$GITLAB_USER_NAME released new $CI_PROJECT_TITLE version $CI_COMMIT_TAG\",\"color\":\"good\",\"author_name\":\"$GITLAB_USER_NAME ($GITLAB_USER_LOGIN)\",\"author_icon\":\"$GITLAB_USER_AVATAR\",\"author_link\":\"https://gitlab.com/$GITLAB_USER_LOGIN\",\"title\":\"Version $CI_COMMIT_TAG of $CI_PROJECT_NAME released\",\"title_link\":\"$CI_PROJECT_URL/-/tags/$CI_COMMIT_TAG\",\"fields\":[{\"title\":\"Tag\",\"value\":\"<$CI_PROJECT_URL/commits/$CI_COMMIT_TAG|$CI_COMMIT_TAG>\",\"short\":true},{\"title\":\"Commit\",\"value\":\"<$CI_PROJECT_URL/tree/$CI_COMMIT_SHA|$CI_COMMIT_TITLE>\",\"short\":true}],\"footer\":\"$CI_PROJECT_NAME\",\"ts\":$( date +%s )}]}"
- $SLACK_API_ENDPOINT
-
-notify:
- stage: notify
- rules:
- - if: $CI_COMMIT_TAG
- # Overwrite the default before script with a no-op action to disable the node specific actions
- before_script:
- - echo "noop"
- script:
- - apk add --no-cache curl
- - GITLAB_USER_AVATAR=$( echo $GITLAB_USER_EMAIL | tr '[:upper:]' '[:lower:]' | tr -d '[:space:]' | md5sum | awk -F' ' '{print $1}' | xargs -I{} echo 'https://www.gravatar.com/avatar/{}?s=80&d=identicon' )
- - *curlcmd
diff --git a/.releaserc.yml b/.releaserc.yml
index fcce6a7..2106544 100644
--- a/.releaserc.yml
+++ b/.releaserc.yml
@@ -1,13 +1,13 @@
---
branches:
- - name: master
- channel: latest
- - name: beta
- channel: beta
- prerelease: true
- name: alpha
channel: alpha
prerelease: true
+ - name: beta
+ channel: beta
+ prerelease: true
+ - name: main
+
plugins:
- "@semantic-release/commit-analyzer"
- "@semantic-release/release-notes-generator"
diff --git a/CHANGELOG.md b/CHANGELOG.md
index c36b561..89f9a65 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,186 @@
+## [0.25.1](https://github.com/cloudgraphdev/cli/compare/0.25.0...0.25.1) (2022-12-13)
+
+
+### Bug Fixes
+
+* **dgraph:** update dgraph version to latest ([6f75da7](https://github.com/cloudgraphdev/cli/commit/6f75da704169418b88ef1bca13692cc066235a76))
+
+## [0.25.1-beta.1](https://github.com/cloudgraphdev/cli/compare/0.25.0...0.25.1-beta.1) (2022-12-13)
+
+
+### Bug Fixes
+
+* **dgraph:** update dgraph version to latest ([6f75da7](https://github.com/cloudgraphdev/cli/commit/6f75da704169418b88ef1bca13692cc066235a76))
+
+## [0.25.1-alpha.1](https://github.com/cloudgraphdev/cli/compare/0.25.0...0.25.1-alpha.1) (2022-12-13)
+
+
+### Bug Fixes
+
+* **dgraph:** update dgraph version to latest ([6f75da7](https://github.com/cloudgraphdev/cli/commit/6f75da704169418b88ef1bca13692cc066235a76))
+
+# [0.25.0](https://github.com/cloudgraphdev/cli/compare/0.24.0...0.25.0) (2022-12-08)
+
+
+### Features
+
+* **cli:** convert ASTNode to string since now providers return raw schemas instead of strings ([55e6468](https://github.com/cloudgraphdev/cli/commit/55e646870e222c90a6218e2701d53ffe864a5c99))
+* **cli:** handle provider schema type ([074b03e](https://github.com/cloudgraphdev/cli/commit/074b03ef1d1d7e23ccb01c234050741311aee9d6))
+* **cli:** Updated sdk version ([1f02b6c](https://github.com/cloudgraphdev/cli/commit/1f02b6c743bca6cbbdba982c5980b174ca2624be))
+
+# [0.25.0-beta.1](https://github.com/cloudgraphdev/cli/compare/0.24.0...0.25.0-beta.1) (2022-12-08)
+
+
+### Features
+
+* **cli:** convert ASTNode to string since now providers return raw schemas instead of strings ([55e6468](https://github.com/cloudgraphdev/cli/commit/55e646870e222c90a6218e2701d53ffe864a5c99))
+* **cli:** handle provider schema type ([074b03e](https://github.com/cloudgraphdev/cli/commit/074b03ef1d1d7e23ccb01c234050741311aee9d6))
+* **cli:** Updated sdk version ([1f02b6c](https://github.com/cloudgraphdev/cli/commit/1f02b6c743bca6cbbdba982c5980b174ca2624be))
+
+# [0.25.0-alpha.1](https://github.com/cloudgraphdev/cli/compare/0.24.0...0.25.0-alpha.1) (2022-12-08)
+
+
+### Features
+
+* **cli:** convert ASTNode to string since now providers return raw schemas instead of strings ([55e6468](https://github.com/cloudgraphdev/cli/commit/55e646870e222c90a6218e2701d53ffe864a5c99))
+* **cli:** handle provider schema type ([074b03e](https://github.com/cloudgraphdev/cli/commit/074b03ef1d1d7e23ccb01c234050741311aee9d6))
+* **cli:** Updated sdk version ([1f02b6c](https://github.com/cloudgraphdev/cli/commit/1f02b6c743bca6cbbdba982c5980b174ca2624be))
+
+# [0.24.0](https://github.com/cloudgraphdev/cli/compare/0.23.1...0.24.0) (2022-08-05)
+
+
+### Features
+
+* exclude subscription from scan report ([47a398c](https://github.com/cloudgraphdev/cli/commit/47a398c16af7f6ddf2b9078fc5eeaaa8aea27bb6))
+
+# [0.24.0-beta.1](https://github.com/cloudgraphdev/cli/compare/0.23.1...0.24.0-beta.1) (2022-08-05)
+
+
+### Features
+
+* exclude subscription from scan report ([47a398c](https://github.com/cloudgraphdev/cli/commit/47a398c16af7f6ddf2b9078fc5eeaaa8aea27bb6))
+
+# [0.24.0-alpha.1](https://github.com/cloudgraphdev/cli/compare/0.23.1...0.24.0-alpha.1) (2022-08-05)
+
+
+### Features
+
+* exclude subscription from scan report ([47a398c](https://github.com/cloudgraphdev/cli/commit/47a398c16af7f6ddf2b9078fc5eeaaa8aea27bb6))
+
+## [0.23.1](https://github.com/cloudgraphdev/cli/compare/0.23.0...0.23.1) (2022-07-18)
+
+
+### Bug Fixes
+
+* Updated sdk version ([19c63e2](https://github.com/cloudgraphdev/cli/commit/19c63e2b8db44377f7b3d6a226bcf5a7c68bd5e2))
+* Updated yarn.lock sdk version ([63d5487](https://github.com/cloudgraphdev/cli/commit/63d54877724f6a046c99446ff42383ab783e8466))
+
+## [0.23.1-beta.1](https://github.com/cloudgraphdev/cli/compare/0.23.0...0.23.1-beta.1) (2022-07-18)
+
+
+### Bug Fixes
+
+* Updated sdk version ([19c63e2](https://github.com/cloudgraphdev/cli/commit/19c63e2b8db44377f7b3d6a226bcf5a7c68bd5e2))
+* Updated yarn.lock sdk version ([63d5487](https://github.com/cloudgraphdev/cli/commit/63d54877724f6a046c99446ff42383ab783e8466))
+
+## [0.23.1-alpha.1](https://github.com/cloudgraphdev/cli/compare/0.23.0...0.23.1-alpha.1) (2022-07-18)
+
+
+### Bug Fixes
+
+* Updated sdk version ([19c63e2](https://github.com/cloudgraphdev/cli/commit/19c63e2b8db44377f7b3d6a226bcf5a7c68bd5e2))
+* Updated yarn.lock sdk version ([63d5487](https://github.com/cloudgraphdev/cli/commit/63d54877724f6a046c99446ff42383ab783e8466))
+
+# [0.23.0](https://github.com/cloudgraphdev/cli/compare/0.22.0...0.23.0) (2022-07-07)
+
+
+### Features
+
+* adapt CLI to pass data instead of queries ([1244617](https://github.com/cloudgraphdev/cli/commit/1244617f21abb7ae0686b16487c246b51be8dd21))
+* update sdk version ([fc6ad87](https://github.com/cloudgraphdev/cli/commit/fc6ad873761d02cf9e5961e4713ac027d99d0bb0))
+
+# [0.23.0-beta.1](https://github.com/cloudgraphdev/cli/compare/0.22.0...0.23.0-beta.1) (2022-07-07)
+
+
+### Features
+
+* adapt CLI to pass data instead of queries ([1244617](https://github.com/cloudgraphdev/cli/commit/1244617f21abb7ae0686b16487c246b51be8dd21))
+* update sdk version ([fc6ad87](https://github.com/cloudgraphdev/cli/commit/fc6ad873761d02cf9e5961e4713ac027d99d0bb0))
+
+# [0.23.0-alpha.1](https://github.com/cloudgraphdev/cli/compare/0.22.0...0.23.0-alpha.1) (2022-07-07)
+
+
+### Features
+
+* adapt CLI to pass data instead of queries ([1244617](https://github.com/cloudgraphdev/cli/commit/1244617f21abb7ae0686b16487c246b51be8dd21))
+* update sdk version ([fc6ad87](https://github.com/cloudgraphdev/cli/commit/fc6ad873761d02cf9e5961e4713ac027d99d0bb0))
+
+# [0.22.0](https://github.com/cloudgraphdev/cli/compare/0.21.4...0.22.0) (2022-05-27)
+
+
+### Features
+
+* **tencent:** add tencent in provider list ([f4ade5b](https://github.com/cloudgraphdev/cli/commit/f4ade5b3dbf6343e7595afb2ee8ecf5c7dbb412b))
+
+# [0.22.0-beta.1](https://github.com/cloudgraphdev/cli/compare/0.21.4...0.22.0-beta.1) (2022-05-20)
+
+
+### Features
+
+* **tencent:** add tencent in provider list ([f4ade5b](https://github.com/cloudgraphdev/cli/commit/f4ade5b3dbf6343e7595afb2ee8ecf5c7dbb412b))
+
+# [0.22.0-alpha.1](https://github.com/cloudgraphdev/cli/compare/0.21.4...0.22.0-alpha.1) (2022-05-10)
+
+
+### Features
+
+* **tencent:** add tencent in provider list ([f4ade5b](https://github.com/cloudgraphdev/cli/commit/f4ade5b3dbf6343e7595afb2ee8ecf5c7dbb412b))
+
+## [0.21.4](https://github.com/cloudgraphdev/cli/compare/0.21.3...0.21.4) (2022-04-27)
+
+
+### Bug Fixes
+
+* **rebase:** fastforward alpha to main ([a2416f4](https://github.com/cloudgraphdev/cli/commit/a2416f4a4c83836c0f65aa4f7ed22026f35bceba))
+* Update scan/load output of query engine location to be accurate ([af74605](https://github.com/cloudgraphdev/cli/commit/af746059eab95ec8163fc4d14c9e2d7321e84e46))
+
+## [0.21.4-beta.1](https://github.com/cloudgraphdev/cli/compare/0.21.3...0.21.4-beta.1) (2022-04-14)
+
+
+### Bug Fixes
+
+* **rebase:** fastforward alpha to main ([a2416f4](https://github.com/cloudgraphdev/cli/commit/a2416f4a4c83836c0f65aa4f7ed22026f35bceba))
+* Update scan/load output of query engine location to be accurate ([af74605](https://github.com/cloudgraphdev/cli/commit/af746059eab95ec8163fc4d14c9e2d7321e84e46))
+
+## [0.21.4-alpha.1](https://github.com/cloudgraphdev/cli/compare/0.21.3...0.21.4-alpha.1) (2022-04-14)
+
+
+### Bug Fixes
+
+* **rebase:** fastforward alpha to main ([a2416f4](https://github.com/cloudgraphdev/cli/commit/a2416f4a4c83836c0f65aa4f7ed22026f35bceba))
+* Update scan/load output of query engine location to be accurate ([af74605](https://github.com/cloudgraphdev/cli/commit/af746059eab95ec8163fc4d14c9e2d7321e84e46))
+
+## [0.21.3](https://github.com/cloudgraphdev/cli/compare/0.21.2...0.21.3) (2022-04-06)
+
+
+### Bug Fixes
+
+* Handle add policy without a cg config file ([4813b16](https://github.com/cloudgraphdev/cli/commit/4813b1605717e30fcfa6689f044b74e029fe0427))
+
+## [0.21.3-beta.1](https://github.com/cloudgraphdev/cli/compare/0.21.2...0.21.3-beta.1) (2022-04-06)
+
+
+### Bug Fixes
+
+* Handle add policy without a cg config file ([4813b16](https://github.com/cloudgraphdev/cli/commit/4813b1605717e30fcfa6689f044b74e029fe0427))
+
+## [0.21.3-alpha.1](https://github.com/cloudgraphdev/cli/compare/0.21.2...0.21.3-alpha.1) (2022-04-06)
+
+
+### Bug Fixes
+
+* Handle add policy without a cg config file ([4813b16](https://github.com/cloudgraphdev/cli/commit/4813b1605717e30fcfa6689f044b74e029fe0427))
+
## [0.21.2](https://github.com/cloudgraphdev/cli/compare/0.21.1...0.21.2) (2022-03-23)
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index c23ed58..6c0a935 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -13,31 +13,6 @@
- [Adding new data to an existing entity](#Adding-new-data-to-an-existing-entity)
-## Paid Contributions
-
-At CloudGraph, we believe in paying contributors for their time when it comes to adding new providers. To that end we have initiated a paid provider program as a thank you to the people in the OSS community that want to support us and our mission of creating the GraphQL API for everything. To that end, we pay $1,000 USD for each provider with 10 initial services and authentication. Here are the current providers you can be paid to build out:
-
-- Oracle Cloud
-
-- Ali Cloud
-
-- Digital Ocean
-
-- IMB Cloud
-
-- Open Stack
-
-- Tencent Cloud
-
-- DataDog
-
-- VMware
-
-- HyperV
-
-- Snowflake
-
-Interested in learning more? Here is a [spreadsheet](https://docs.google.com/spreadsheets/d/1twlflwXiMrWJ9VYpVX2whpYvoY715blIKEpejEdy9VY/edit?usp=sharing) shows the desired 10 initial services for each provider. All you have to do to get started is open up an issue with the name of the provider you want to build so everyone knows it's claimed and we will be in touch. Thanks for helping to make OSS a better place!
## Getting Started
diff --git a/README.md b/README.md
index 099452a..9934c3d 100644
--- a/README.md
+++ b/README.md
@@ -1,8 +1,8 @@
-
-
+
+
@@ -11,7 +11,7 @@
CloudGraph is the free open-source universal **GraphQL API and Cloud Security Posture Management (CSPM) tool for AWS, Azure, GCP, and K8s**. With CloudGraph you get:
-- Free and effortless _compliance checks_ (i.e. CIS 1.2)
+- Free and effortless _compliance checks_ (i.e. Azure CIS 1.3.1, GCP CIS 1.2, AWS CIS 1.2, AWS CIS 1.3, AWS CIS 1.4, AWS PCI 3.2.1, AWS NIST 800-53 Rev. 4)
- _Type-Safe asset inventories_ for all of your resources in all of your cloud environments
- Automatically generated documentation and query validation - know if your query is valid before you send it!
- Full resource data including _relationships_ between resources so you can understand context
@@ -28,7 +28,7 @@ Cloud Graph lets you **Know your cloud** in 5 minutes. Built and maintained with
💻 [Documentation](https://docs.cloudgraph.dev)
-💰 [Get paid to build CloudGraph providers](https://github.com/cloudgraphdev/cli/blob/master/CONTRIBUTING.md)
+💰 [Get paid to build CloudGraph providers](https://github.com/cloudgraphdev/cli/blob/main/CONTRIBUTING.md)
@@ -36,7 +36,7 @@ Cloud Graph lets you **Know your cloud** in 5 minutes. Built and maintained with
[](https://npmjs.org/package/@cloudgraph/cli)

[](https://npmjs.org/package/@cloudgraph/cli)
-[](https://github.com/cloudgraphdev/cli/blob/master/package.json)
+[](https://github.com/cloudgraphdev/cli/blob/main/package.json)



@@ -130,8 +130,8 @@ Wouldn't it be great if we as DevOps/Cloud engineers had a simpler way to get ou
It is for these reasons that we built CloudGraph, the GraphQL API for everything cloud. CloudGraph extracts, normalizes, processes, and enriches your cloud data allowing you to access deep insights across multiple providers effortlessly. Check out our blog post [The GraphQL API for everything](https://www.autocloud.dev/blog/the-graphql-api-for-all-clouds) to learn more.
-
-
+
+
@@ -149,7 +149,7 @@ Under the hood, CloudGraph reaches out to your cloud provider(s), sucks up all o
# Authentication and Permissions
-CloudGraph currently supports AWS, Azure, GCP, and K8s (several others coming soon). CloudGraph needs read permissions in order to ingest your data. To keep things easy you can use the same permissions that we use internally when we run CloudGraph to power AutoCloud. Here are the auth guides and details for how to generate credentials for each provider (feel free to leave out AutoCloud specific configuration):
+CloudGraph currently supports AWS, Azure, GCP, K8s, and Tencent (several others coming soon). CloudGraph needs read permissions in order to ingest your data. To keep things easy you can use the same permissions that we use internally when we run CloudGraph to power AutoCloud. Here are the auth guides and details for how to generate credentials for each provider (feel free to leave out AutoCloud specific configuration):
@@ -157,6 +157,7 @@ CloudGraph currently supports AWS, Azure, GCP, and K8s (several others coming so
- [Azure Docs](https://docs.autocloud.dev/azure-subscription)
- [GCP Docs](https://docs.autocloud.dev/gcp-project)
- [K8s Docs](https://github.com/cloudgraphdev/cloudgraph-provider-kubernetes)
+- [Tencent Docs](https://github.com/cloudgraphdev/cloudgraph-provider-tencent)
@@ -186,34 +187,39 @@ npm i -g @cloudgraph/cli
```
-
-
+
+
-You can then add the providers you want (links to provider repos: [AWS](https://github.com/cloudgraphdev/cloudgraph-provider-aws), [Azure](https://github.com/cloudgraphdev/cloudgraph-provider-azure), [GCP](https://github.com/cloudgraphdev/cloudgraph-provider-gcp), [K8s](https://github.com/cloudgraphdev/cloudgraph-provider-k8s)):
+You can then add the providers you want (links to provider repos: [AWS](https://github.com/cloudgraphdev/cloudgraph-provider-aws), [Azure](https://github.com/cloudgraphdev/cloudgraph-provider-azure), [GCP](https://github.com/cloudgraphdev/cloudgraph-provider-gcp), [K8s](https://github.com/cloudgraphdev/cloudgraph-provider-k8s), [Tencent Docs](https://github.com/cloudgraphdev/cloudgraph-provider-tencent)):
```bash
cg init aws
cg init azure
cg init gcp
cg init k8s
+cg init tencent
```
You can also add as many as you want all at once
```bash
-cg init aws azure gcp k8s
+cg init aws azure gcp k8s tencent
```
And add in compliance policy packs to supplement your data with instant security insights:
```bash
-cg policy add aws-cis-1.2.0
cg policy add gcp-cis-1.2.0
cg policy add azure-cis-1.3.1
+cg policy add aws-cis-1.2.0
+cg policy add aws-cis-1.3.0
+cg policy add aws-cis-1.2.0
+cg policy add aws-pci-dss-3.2.1
+cg policy add aws-nist-800-53-rev4
```
You can find a list of currently supported policy packs in the [Policy Packs repo](https://github.com/cloudgraphdev/cloudgraph-policy-packs)
@@ -237,8 +243,8 @@ cg init
1. This initializes CloudGraph's configuration. This command will ask you a series of questions about what providers you are using and how you would like CloudGraph configured.
-
-
+
+
@@ -257,8 +263,8 @@ cg launch
2. This command launches an instance of [Dgraph](https://dgraph.io/), the graphdb CloudGraph uses to store data under the hood. Note that there are 2 ways to launch an instance. **BOTH** of these require [Docker](https://www.docker.com/) to be installed and running. The preferred solution is to use our `cg launch` convenience command.
-
-
+
+
@@ -282,8 +288,8 @@ cg scan
3. Scan for cloud infrastructure for all configured providers. This command will reach out and read all of the metadata on your cloud infrastructure. Note that it is **completely normal** to see warnings and errors while the `cg scan` command runs, these are usually caused by permissions issues. That said, if you encounter any problematic errors running CloudGraph you can prepend `CG_DEBUG=5` to the beginning of your command as in, `CG_DEBUG=5 cg scan`. This will print out the verbose logs with more information and save the output to `cg-debug.log`. Please share your logs with us either by opening an [issue on GitHub](https://github.com/cloudgraphdev/cli/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc) or let us know in our [Slack Workspace](https://join.slack.com/t/cloudgraph-workspace/shared_invite/zt-ytjemoz7-yKWwElynDp1eHAAB55sbpg).
-
-
+
+
@@ -330,8 +336,8 @@ CloudGraph stores as many previous versions of your data as you configured in th
-
-
+
+
@@ -1276,8 +1282,8 @@ GraphQL playground has a fluid and engaging UX that is great for querying a Grap
-
-
+
+
@@ -1290,8 +1296,8 @@ Altair is another great GraphQL query tool that packs a ton of [features](https:
-
-
+
+
@@ -1304,8 +1310,8 @@ GraphQL Voyager is an awesome way to explore the schema(s) for your CG providers
-
-
+
+
@@ -1323,7 +1329,7 @@ Comments, questions, or feedback? Please [Join Our Slack Workspace](https://join
# Contribution Guidelines
-If you're interested in contributing to CloudGraph please check out our [Contribution Guidelines](https://github.com/cloudgraphdev/cli/blob/master/CONTRIBUTING.md).
+If you're interested in contributing to CloudGraph please check out our [Contribution Guidelines](https://github.com/cloudgraphdev/cli/blob/main/CONTRIBUTING.md).
@@ -1341,7 +1347,7 @@ Interested in a fully managed SaaS/self hosted version of CloudGraph that has bu
-
+
@@ -1444,7 +1450,7 @@ EXAMPLES
$ cg init aws -r [Specify resources to crawl]
```
-_See code: [src/commands/init.ts](https://github.com/cloudgraphdev/cli/blob/v0.21.2/src/commands/init.ts)_
+_See code: [src/commands/init.ts](https://github.com/cloudgraphdev/cli/blob/v0.25.1/src/commands/init.ts)_
## `cg launch [PROVIDER]`
@@ -1476,7 +1482,7 @@ EXAMPLES
$ cg launch
```
-_See code: [src/commands/launch.ts](https://github.com/cloudgraphdev/cli/blob/v0.21.2/src/commands/launch.ts)_
+_See code: [src/commands/launch.ts](https://github.com/cloudgraphdev/cli/blob/v0.25.1/src/commands/launch.ts)_
## `cg load [PROVIDER]`
@@ -1510,7 +1516,7 @@ EXAMPLES
$ cg load aws [Load data for AWS]
```
-_See code: [src/commands/load.ts](https://github.com/cloudgraphdev/cli/blob/v0.21.2/src/commands/load.ts)_
+_See code: [src/commands/load.ts](https://github.com/cloudgraphdev/cli/blob/v0.25.1/src/commands/load.ts)_
## `cg policy [PROVIDER]`
@@ -1539,7 +1545,7 @@ DESCRIPTION
Commands to manage policy pack modules, run $ cg policy for more info.
```
-_See code: [src/commands/policy/index.ts](https://github.com/cloudgraphdev/cli/blob/v0.21.2/src/commands/policy/index.ts)_
+_See code: [src/commands/policy/index.ts](https://github.com/cloudgraphdev/cli/blob/v0.25.1/src/commands/policy/index.ts)_
## `cg policy add [PROVIDER]`
@@ -1752,7 +1758,7 @@ DESCRIPTION
Commands to manage provider modules, run $ cg provider for more info.
```
-_See code: [src/commands/provider/index.ts](https://github.com/cloudgraphdev/cli/blob/v0.21.2/src/commands/provider/index.ts)_
+_See code: [src/commands/provider/index.ts](https://github.com/cloudgraphdev/cli/blob/v0.25.1/src/commands/provider/index.ts)_
## `cg provider add [PROVIDER]`
@@ -1974,7 +1980,7 @@ EXAMPLES
$ cg scan aws --no-serve [Do not start the query engine]
```
-_See code: [src/commands/scan.ts](https://github.com/cloudgraphdev/cli/blob/v0.21.2/src/commands/scan.ts)_
+_See code: [src/commands/scan.ts](https://github.com/cloudgraphdev/cli/blob/v0.25.1/src/commands/scan.ts)_
## `cg serve [PROVIDER]`
@@ -2006,7 +2012,7 @@ EXAMPLES
$ cg serve
```
-_See code: [src/commands/serve.ts](https://github.com/cloudgraphdev/cli/blob/v0.21.2/src/commands/serve.ts)_
+_See code: [src/commands/serve.ts](https://github.com/cloudgraphdev/cli/blob/v0.25.1/src/commands/serve.ts)_
## `cg teardown [PROVIDER]`
@@ -2028,7 +2034,7 @@ EXAMPLES
$ cg teardown --delete-image
```
-_See code: [src/commands/teardown.ts](https://github.com/cloudgraphdev/cli/blob/v0.21.2/src/commands/teardown.ts)_
+_See code: [src/commands/teardown.ts](https://github.com/cloudgraphdev/cli/blob/v0.25.1/src/commands/teardown.ts)_
## `cg update [PROVIDER]`
@@ -2064,5 +2070,5 @@ EXAMPLES
$ cg update
```
-_See code: [src/commands/update.ts](https://github.com/cloudgraphdev/cli/blob/v0.21.2/src/commands/update.ts)_
+_See code: [src/commands/update.ts](https://github.com/cloudgraphdev/cli/blob/v0.25.1/src/commands/update.ts)_
diff --git a/package.json b/package.json
index 870dfcb..7345a33 100644
--- a/package.json
+++ b/package.json
@@ -1,7 +1,7 @@
{
"name": "@cloudgraph/cli",
"description": "Scan your cloud infrastructure data and query it with GraphQL",
- "version": "0.21.2",
+ "version": "0.25.1",
"author": "AutoCloud",
"license": "MPL-2.0",
"publishConfig": {
@@ -15,7 +15,7 @@
},
"bugs": "https://github.com/cloudgraphdev/cli/issues",
"dependencies": {
- "@cloudgraph/sdk": "^0.18.1",
+ "@cloudgraph/sdk": "^0.22.0",
"@graphql-tools/load-files": "^6.3.2",
"@graphql-tools/merge": "^8.2.0",
"@oclif/core": "1.6.1",
@@ -46,10 +46,10 @@
"devDependencies": {
"@autocloud/eslint-config": "^0.1.0",
"@oclif/test": "^2.1.0",
- "@semantic-release/changelog": "^5.0.1",
- "@semantic-release/git": "^9.0.0",
- "@semantic-release/gitlab": "^6.2.2",
- "@semantic-release/npm": "^7.1.3",
+ "@semantic-release/changelog": "^6.0.1",
+ "@semantic-release/git": "^10.0.1",
+ "@semantic-release/github": "^8.0.1",
+ "@semantic-release/npm": "^9.0.1",
"@types/chai": "^4",
"@types/cli-table": "^0.3.0",
"@types/detect-port": "^1.3.1",
@@ -78,7 +78,7 @@
"lint-staged": "^11.1.1",
"mkdirp": "^1.0.4",
"rimraf": "^3.0.2",
- "semantic-release": "^17.4.4",
+ "semantic-release": "^19.0.2",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "4.3.5"
diff --git a/release/scripts/_github_setup b/release/scripts/_github_setup
deleted file mode 100644
index 5182ccd..0000000
--- a/release/scripts/_github_setup
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/usr/bin/env bash
-
-set -e
-
-# if [[ "${CIRCLECI:-}" != "true" ]]; then
-# echo "skipping github setup since not on circle"
-# exit
-# fi
-
-git config --global user.email "149658+cloudgraph-cli@users.noreply.github.com"
-git config --global user.name "cloudgraph-cli"
\ No newline at end of file
diff --git a/release/scripts/homebrew.js b/release/scripts/homebrew.js
index 456b926..420e4e1 100644
--- a/release/scripts/homebrew.js
+++ b/release/scripts/homebrew.js
@@ -17,7 +17,6 @@ const DIST_DIR = path.join(CLI_DIR, 'dist')
const PJSON = require(path.join(CLI_DIR, 'package.json'))
const NODE_VERSION = PJSON.oclif.update.node.version
const SHORT_VERSION = PJSON.version
-const pathToDist = path.join(DIST_DIR, `cg-v${SHORT_VERSION}`)
async function getText(url) {
return new Promise((resolve, reject) => {
https
@@ -65,7 +64,7 @@ async function calculateSHA256(fileName) {
async function uploadToS3(file) {
console.log(`Uploading ${file} to S3`)
await new Promise((resolve, reject) => {
- const pathToFile = path.join(pathToDist, file)
+ const pathToFile = path.join(DIST_DIR, file)
const fileStream = fs.createReadStream(pathToFile)
fileStream.on('error', err => {
if (err) {
@@ -130,7 +129,7 @@ async function uploadToS3(file) {
}
function getFilesByOS(os) {
- const files = fs.readdirSync(pathToDist)
+ const files = fs.readdirSync(DIST_DIR)
return files.filter(file => file.includes(os) && !file.includes('.xz'))
}
@@ -145,7 +144,7 @@ async function updateCgFormula(brewDir) {
const template = fs.readFileSync(templatePath).toString('utf-8')
const files = getFilesByOS('darwin-x64')
const zipFile = files.find(file => file.includes('tar.gz'))
- const pathToFile = path.join(pathToDist, zipFile)
+ const pathToFile = path.join(DIST_DIR, zipFile)
const sha256 = await calculateSHA256(pathToFile)
const url = `${CLI_ASSETS_URL}/cg-v${SHORT_VERSION}/${zipFile}`
@@ -186,19 +185,12 @@ async function updateCgNodeFormula(brewDir) {
console.log(`done updating cg-node Formula in ${formulaPath}`)
}
-async function setupGit() {
- const githubSetupPath = path.join(__dirname, '_github_setup')
- await execa(githubSetupPath)
-}
-
async function updateHomebrew() {
const tmp = path.join(__dirname, 'tmp')
const homebrewDir = path.join(tmp, 'homebrew-tap')
mkdirp.sync(tmp)
rm.sync(homebrewDir)
- // await setupGit()
-
console.log(
`cloning https://github.com/cloudgraphdev/homebrew-tap to ${homebrewDir}`
)
diff --git a/src/commands/base.ts b/src/commands/base.ts
index 0a38715..7157554 100644
--- a/src/commands/base.ts
+++ b/src/commands/base.ts
@@ -156,18 +156,15 @@ homebrew: 1. ${chalk.italic.green('brew update')} \n
await queryEngine.startServer(
this.getHost(await this.getConnectionSettings())
)
+ const queryEngineUrl = `http://localhost:${availablePort}/${await this.getQueryEngine()}`
this.logger.success(
- `Serving query engine at ${chalk.underline.green(
- `http://localhost:${availablePort}`
- )}`
+ `Serving query engine at ${chalk.underline.green(queryEngineUrl)}`
)
try {
- await openBrowser(
- `http://localhost:${availablePort}/${await this.getQueryEngine()}`
- )
+ await openBrowser(queryEngineUrl)
} catch (error) {
this.logger.warn(
- `Could not open a browser tab with query engine, open manually at http://localhost:${availablePort}`
+ `Could not open a browser tab with query engine, open manually at ${queryEngineUrl}`
)
}
}
diff --git a/src/commands/policy/add.ts b/src/commands/policy/add.ts
index 4833f59..ed4c09a 100644
--- a/src/commands/policy/add.ts
+++ b/src/commands/policy/add.ts
@@ -1,5 +1,6 @@
import { PluginType } from '@cloudgraph/sdk'
import { isEmpty, uniqBy } from 'lodash'
+import { DEFAULT_CG_CONFIG } from '../../utils/constants'
import OperationBaseCommand from '../operation'
@@ -28,37 +29,35 @@ export default class AddPolicy extends OperationBaseCommand {
} = installedPolicy
// Save policy to CG config file
- const config = this.getCGConfig()
- if (config) {
- let configuredPolicies =
- config.cloudGraph.plugins?.[PluginType.PolicyPack] || []
- if (isEmpty(configuredPolicies)) {
- // Set new Policy Pack Plugin array
- configuredPolicies = [
- {
- name: key,
- providers: [provider],
- },
- ]
- } else {
- // Add policy to Policy Pack Plugin array
- configuredPolicies = [
- ...configuredPolicies,
- {
- name: key,
- providers: [provider],
- },
- ]
- }
- if (!config.cloudGraph.plugin) {
- config.cloudGraph.plugins = {}
- }
- config.cloudGraph.plugins[PluginType.PolicyPack] = uniqBy(
- configuredPolicies,
- 'name'
- )
- this.saveCloudGraphConfigFile(config)
+ const config = this.getCGConfig() || DEFAULT_CG_CONFIG
+ let configuredPolicies =
+ config.cloudGraph.plugins?.[PluginType.PolicyPack] || []
+ if (isEmpty(configuredPolicies)) {
+ // Set new Policy Pack Plugin array
+ configuredPolicies = [
+ {
+ name: key,
+ providers: [provider],
+ },
+ ]
+ } else {
+ // Add policy to Policy Pack Plugin array
+ configuredPolicies = [
+ ...configuredPolicies,
+ {
+ name: key,
+ providers: [provider],
+ },
+ ]
}
+ if (!config.cloudGraph.plugin) {
+ config.cloudGraph.plugins = {}
+ }
+ config.cloudGraph.plugins[PluginType.PolicyPack] = uniqBy(
+ configuredPolicies,
+ 'name'
+ )
+ this.saveCloudGraphConfigFile(config)
}
} catch (error) {
this.logger.debug(error)
diff --git a/src/commands/scan.ts b/src/commands/scan.ts
index b62e856..bc73701 100644
--- a/src/commands/scan.ts
+++ b/src/commands/scan.ts
@@ -1,8 +1,15 @@
import chalk from 'chalk'
import fs from 'fs'
import path from 'path'
-import { Opts, pluginMap, PluginType, StorageEngine } from '@cloudgraph/sdk'
+import {
+ Opts,
+ pluginMap,
+ PluginType,
+ ProviderData,
+ StorageEngine,
+} from '@cloudgraph/sdk'
import { range } from 'lodash'
+import { print } from 'graphql'
import Command from './base'
import { fileUtils } from '../utils'
@@ -34,6 +41,7 @@ export default class Scan extends Command {
private async plugins({
storage: { isRunning, engine },
flags,
+ providerData,
}: {
storage: {
isRunning: boolean
@@ -42,6 +50,7 @@ export default class Scan extends Command {
flags: {
[flag: string]: any
}
+ providerData: ProviderData
}): Promise {
const config = this.getCGConfig('cloudGraph')
const { plugins = {} } = config
@@ -80,6 +89,7 @@ export default class Scan extends Command {
await PluginInstance.execute({
storageRunning: isRunning,
storageEngine: engine,
+ providerData,
processConnectionsBetweenEntities,
})
}
@@ -167,6 +177,7 @@ export default class Scan extends Command {
* loop through providers and attempt to scan each of them
*/
const failedProviderList: string[] = []
+ const allProviderData: ProviderData = { entities: [], connections: {} }
for (const provider of allProviders) {
this.logger.info(
`Beginning ${chalk.italic.green('SCAN')} for ${provider}`
@@ -203,13 +214,21 @@ export default class Scan extends Command {
`${chalk.italic.green(provider)} data scanned successfully`
)
+ // Merge all providers data
+ allProviderData.entities.push(...providerData.entities)
+ Object.assign(allProviderData.connections, providerData.connections)
+
// Handle schema, write provider and combined schema to file and store in Dgraph if running
this.logger.startSpinner(
`updating ${chalk.italic.green('Schema')} for ${chalk.italic.green(
provider
)}`
)
- const providerSchema: string = providerClient.getSchema()
+
+ const rawSchema = providerClient.getSchema()
+ const providerSchema: string =
+ typeof rawSchema === 'object' ? print(rawSchema) : rawSchema
+
if (!providerSchema) {
this.logger.warn(`No schema found for ${provider}, moving on`)
continue // eslint-disable-line no-continue
@@ -297,6 +316,7 @@ export default class Scan extends Command {
isRunning: storageRunning,
engine: storageEngine,
},
+ providerData: allProviderData,
})
}
diff --git a/src/reports/scan-report.ts b/src/reports/scan-report.ts
index b51fab8..6d4a339 100644
--- a/src/reports/scan-report.ts
+++ b/src/reports/scan-report.ts
@@ -31,6 +31,7 @@ const servicesToIgnore = [
/^label$/,
/^billing$/,
/Findings$/,
+ /^subscription$/,
]
// TODO: come back and add tests once testing strategy is determined
diff --git a/src/utils/constants.ts b/src/utils/constants.ts
index 19937fa..403144d 100644
--- a/src/utils/constants.ts
+++ b/src/utils/constants.ts
@@ -13,7 +13,7 @@ export const DEFAULT_CONFIG = {
}
export const DGRAPH_CONTAINER_LABEL = 'cloudgraph-cli-dgraph-standalone'
-export const DGRAPH_DOCKER_IMAGE_NAME = 'dgraph/standalone:v21.03.1'
+export const DGRAPH_DOCKER_IMAGE_NAME = 'dgraph/standalone:v22.0.1'
export const messages = {
[PluginType.PolicyPack]: {
@@ -25,3 +25,13 @@ export const messages = {
plural: 'providers',
},
}
+
+export const DEFAULT_CG_CONFIG = {
+ cloudGraph: {
+ plugins: {},
+ storageConfig: DEFAULT_CONFIG,
+ versionLimit: 10,
+ queryEngine: 'playground',
+ port: '5555',
+ },
+}
diff --git a/src/utils/data.ts b/src/utils/data.ts
index 1759bdf..0b425b4 100644
--- a/src/utils/data.ts
+++ b/src/utils/data.ts
@@ -135,7 +135,7 @@ export const processConnectionsBetweenEntities = ({
// Add service mutation to promises array
storageEngine.push({
query:
- mutation ||
+ mutation?.toString() ||
(provider &&
generateMutation({ type: 'add', provider, entity, schemaMap })) ||
'',
@@ -166,7 +166,7 @@ export function insertEntitiesAndConnections({
})
if (storageRunning) {
const query =
- mutation ||
+ mutation?.toString() ||
generateMutation({ type: 'add', provider, entity, schemaMap })
storageEngine.push({ query, input: connectedData, name })
}
diff --git a/src/utils/questions.ts b/src/utils/questions.ts
index 59f5472..6c23180 100644
--- a/src/utils/questions.ts
+++ b/src/utils/questions.ts
@@ -17,7 +17,7 @@ export const getProviderQuestion: ListQuestion[] = [
type: 'list',
name: 'provider',
message: 'Which cloud provider would you like to use?',
- choices: ['aws', 'azure', 'gcp', 'k8s'],
+ choices: ['aws', 'azure', 'gcp', 'k8s', 'tencent'],
},
]
diff --git a/yarn.lock b/yarn.lock
index a0bbb20..eda6de3 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -379,10 +379,10 @@
resolved "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz"
integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==
-"@cloudgraph/sdk@^0.18.1":
- version "0.18.1"
- resolved "https://registry.yarnpkg.com/@cloudgraph/sdk/-/sdk-0.18.1.tgz#568a780f4185600f3c5f427427148699681181f3"
- integrity sha512-74aHorS3e5K/BoesyKSR+XJI11SZaQvWK4+rX2EJuKxAvPbKOwJqc3FFIGnomvmTKroyBdHDAlNuBti765TJvQ==
+"@cloudgraph/sdk@^0.22.0":
+ version "0.22.0"
+ resolved "https://registry.yarnpkg.com/@cloudgraph/sdk/-/sdk-0.22.0.tgz#c2a4e817a70ae9b123e0fcd401d55f79e24386ab"
+ integrity sha512-EJ7vLgrMRh52tOH14TKHgOI62BYy9ZH4WuEhcVr8S8RDnLxBO1XsXOKKjIsE+SmawMBzck8qxiEKttppalhJ8g==
dependencies:
"@graphql-tools/load-files" "^6.5.3"
"@graphql-tools/merge" "^8.2.1"
@@ -392,7 +392,6 @@
inquirer "^8.1.2"
jsonpath "^1.1.1"
lodash "^4.17.21"
- node-jq "2.1.0"
ora "^5.4.1"
"@cspotcode/source-map-consumer@0.8.0":
@@ -427,6 +426,11 @@
resolved "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.2.tgz"
integrity sha512-82cpyJyKRoQoRi+14ibCeGPu0CwypgtBAdBhq1WfvagpCZNKqwXbKwXllYSMG91DhmG4jt9gN8eP6lGOtozuaw==
+"@gar/promisify@^1.1.3":
+ version "1.1.3"
+ resolved "https://registry.yarnpkg.com/@gar/promisify/-/promisify-1.1.3.tgz#555193ab2e3bb3b6adc3d551c9c030d9e860daf6"
+ integrity sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==
+
"@graphql-tools/load-files@^6.3.2", "@graphql-tools/load-files@^6.5.3":
version "6.5.3"
resolved "https://registry.npmjs.org/@graphql-tools/load-files/-/load-files-6.5.3.tgz"
@@ -466,18 +470,6 @@
resolved "https://registry.npmjs.org/@graphql-typed-document-node/core/-/core-3.1.1.tgz"
integrity sha512-NQ17ii0rK1b34VZonlmT2QMJFI70m0TRwbknO/ihlbatXyaktDhN/98vBiUU6kNBPljqGqyIrl2T4nY2RpFANg==
-"@hapi/hoek@^9.0.0":
- version "9.2.1"
- resolved "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.2.1.tgz"
- integrity sha512-gfta+H8aziZsm8pZa0vj04KO6biEiisppNgA1kbJvFrrWu9Vm7eaUEy76DIxsuTaWvti5fkJVhllWc6ZTE+Mdw==
-
-"@hapi/topo@^5.0.0":
- version "5.1.0"
- resolved "https://registry.npmjs.org/@hapi/topo/-/topo-5.1.0.tgz"
- integrity sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==
- dependencies:
- "@hapi/hoek" "^9.0.0"
-
"@humanwhocodes/config-array@^0.5.0":
version "0.5.0"
resolved "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.5.0.tgz"
@@ -492,7 +484,7 @@
resolved "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz"
integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==
-"@isaacs/string-locale-compare@^1.0.1", "@isaacs/string-locale-compare@^1.1.0":
+"@isaacs/string-locale-compare@^1.1.0":
version "1.1.0"
resolved "https://registry.npmjs.org/@isaacs/string-locale-compare/-/string-locale-compare-1.1.0.tgz"
integrity sha512-SQ7Kzhh9+D+ZW9MA0zkYv3VXhIDNx+LzM6EJ+/65I3QY+enU6Itte7E5XX7EWrqLW2FN4n06GWzBnPoC3th2aQ==
@@ -703,21 +695,21 @@
"@nodelib/fs.scandir" "2.1.5"
fastq "^1.6.0"
-"@npmcli/arborist@^2.3.0", "@npmcli/arborist@^2.5.0", "@npmcli/arborist@^2.9.0":
- version "2.10.0"
- resolved "https://registry.yarnpkg.com/@npmcli/arborist/-/arborist-2.10.0.tgz#424c2d73a7ae59c960b0cc7f74fed043e4316c2c"
- integrity sha512-CLnD+zXG9oijEEzViimz8fbOoFVb7hoypiaf7p6giJhvYtrxLAyY3cZAMPIFQvsG731+02eMDp3LqVBNo7BaZA==
+"@npmcli/arborist@^4.0.0", "@npmcli/arborist@^4.2.1":
+ version "4.2.1"
+ resolved "https://registry.npmjs.org/@npmcli/arborist/-/arborist-4.2.1.tgz"
+ integrity sha512-vAIfPwW6alsyjfv7wzGPMJv6Dun8xs9VugdqfwkWEyRajzOLjeifxeDqlJYQ8G8FTU38grIWjkoUmd9cAnJnPg==
dependencies:
- "@isaacs/string-locale-compare" "^1.0.1"
+ "@isaacs/string-locale-compare" "^1.1.0"
"@npmcli/installed-package-contents" "^1.0.7"
- "@npmcli/map-workspaces" "^1.0.2"
- "@npmcli/metavuln-calculator" "^1.1.0"
+ "@npmcli/map-workspaces" "^2.0.0"
+ "@npmcli/metavuln-calculator" "^2.0.0"
"@npmcli/move-file" "^1.1.0"
"@npmcli/name-from-folder" "^1.0.1"
- "@npmcli/node-gyp" "^1.0.1"
+ "@npmcli/node-gyp" "^1.0.3"
"@npmcli/package-json" "^1.0.1"
- "@npmcli/run-script" "^1.8.2"
- bin-links "^2.2.1"
+ "@npmcli/run-script" "^2.0.0"
+ bin-links "^3.0.0"
cacache "^15.0.3"
common-ancestor-path "^1.0.1"
json-parse-even-better-errors "^2.3.1"
@@ -728,8 +720,8 @@
npm-package-arg "^8.1.5"
npm-pick-manifest "^6.1.0"
npm-registry-fetch "^11.0.0"
- pacote "^11.3.5"
- parse-conflict-json "^1.1.1"
+ pacote "^12.0.2"
+ parse-conflict-json "^2.0.1"
proc-log "^1.0.0"
promise-all-reject-late "^1.0.0"
promise-call-limit "^1.0.1"
@@ -741,10 +733,10 @@
treeverse "^1.0.4"
walk-up-path "^1.0.0"
-"@npmcli/arborist@^4.0.0", "@npmcli/arborist@^4.2.1":
- version "4.2.1"
- resolved "https://registry.npmjs.org/@npmcli/arborist/-/arborist-4.2.1.tgz"
- integrity sha512-vAIfPwW6alsyjfv7wzGPMJv6Dun8xs9VugdqfwkWEyRajzOLjeifxeDqlJYQ8G8FTU38grIWjkoUmd9cAnJnPg==
+"@npmcli/arborist@^4.0.4":
+ version "4.2.0"
+ resolved "https://registry.npmjs.org/@npmcli/arborist/-/arborist-4.2.0.tgz"
+ integrity sha512-uQmPnwuhNHkN8IgCwda6wXklUf3BUfuuIUFuJMT224frUS5u2AuEAeCr2fiRVsz7AHcW3iSDai2j3WhVFlfbRQ==
dependencies:
"@isaacs/string-locale-compare" "^1.1.0"
"@npmcli/installed-package-contents" "^1.0.7"
@@ -755,7 +747,7 @@
"@npmcli/node-gyp" "^1.0.3"
"@npmcli/package-json" "^1.0.1"
"@npmcli/run-script" "^2.0.0"
- bin-links "^3.0.0"
+ bin-links "^2.3.0"
cacache "^15.0.3"
common-ancestor-path "^1.0.1"
json-parse-even-better-errors "^2.3.1"
@@ -779,34 +771,36 @@
treeverse "^1.0.4"
walk-up-path "^1.0.0"
-"@npmcli/arborist@^4.0.4":
- version "4.2.0"
- resolved "https://registry.npmjs.org/@npmcli/arborist/-/arborist-4.2.0.tgz"
- integrity sha512-uQmPnwuhNHkN8IgCwda6wXklUf3BUfuuIUFuJMT224frUS5u2AuEAeCr2fiRVsz7AHcW3iSDai2j3WhVFlfbRQ==
+"@npmcli/arborist@^5.0.0", "@npmcli/arborist@^5.0.4":
+ version "5.0.4"
+ resolved "https://registry.yarnpkg.com/@npmcli/arborist/-/arborist-5.0.4.tgz#b10099088e74c376f4b0df96ea8316085e8e689b"
+ integrity sha512-w3N7gvCLBS1uwOmGEYAlE81bGzLc+mSbfMkWVT++y4G7w4fhjLMmVCJlerOLIf8u5Xsf5Js1tT6UClhGz5p19Q==
dependencies:
"@isaacs/string-locale-compare" "^1.1.0"
"@npmcli/installed-package-contents" "^1.0.7"
"@npmcli/map-workspaces" "^2.0.0"
- "@npmcli/metavuln-calculator" "^2.0.0"
+ "@npmcli/metavuln-calculator" "^3.0.1"
"@npmcli/move-file" "^1.1.0"
"@npmcli/name-from-folder" "^1.0.1"
"@npmcli/node-gyp" "^1.0.3"
"@npmcli/package-json" "^1.0.1"
- "@npmcli/run-script" "^2.0.0"
- bin-links "^2.3.0"
- cacache "^15.0.3"
+ "@npmcli/run-script" "^3.0.0"
+ bin-links "^3.0.0"
+ cacache "^16.0.0"
common-ancestor-path "^1.0.1"
json-parse-even-better-errors "^2.3.1"
json-stringify-nice "^1.1.4"
mkdirp "^1.0.4"
mkdirp-infer-owner "^2.0.0"
+ nopt "^5.0.0"
npm-install-checks "^4.0.0"
- npm-package-arg "^8.1.5"
- npm-pick-manifest "^6.1.0"
- npm-registry-fetch "^11.0.0"
- pacote "^12.0.2"
+ npm-package-arg "^9.0.0"
+ npm-pick-manifest "^7.0.0"
+ npm-registry-fetch "^13.0.0"
+ npmlog "^6.0.1"
+ pacote "^13.0.5"
parse-conflict-json "^2.0.1"
- proc-log "^1.0.0"
+ proc-log "^2.0.0"
promise-all-reject-late "^1.0.0"
promise-call-limit "^1.0.1"
read-package-json-fast "^2.0.2"
@@ -817,12 +811,17 @@
treeverse "^1.0.4"
walk-up-path "^1.0.0"
-"@npmcli/ci-detect@^1.2.0", "@npmcli/ci-detect@^1.3.0", "@npmcli/ci-detect@^1.4.0":
+"@npmcli/ci-detect@^1.3.0", "@npmcli/ci-detect@^1.4.0":
version "1.4.0"
resolved "https://registry.npmjs.org/@npmcli/ci-detect/-/ci-detect-1.4.0.tgz"
integrity sha512-3BGrt6FLjqM6br5AhWRKTr3u5GIVkjRYeAFrMp3HjnfICrg4xOrVRwFavKT6tsp++bq5dluL5t8ME/Nha/6c1Q==
-"@npmcli/config@^2.3.0", "@npmcli/config@^2.4.0":
+"@npmcli/ci-detect@^2.0.0":
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/@npmcli/ci-detect/-/ci-detect-2.0.0.tgz#e63c91bcd4185ac1e85720a34fc48e164ece5b89"
+ integrity sha512-8yQtQ9ArHh/TzdUDKQwEvwCgpDuhSWTDAbiKMl3854PcT+Dk4UmWaiawuFTLy9n5twzXOBXVflWe+90/ffXQrA==
+
+"@npmcli/config@^2.4.0":
version "2.4.0"
resolved "https://registry.npmjs.org/@npmcli/config/-/config-2.4.0.tgz"
integrity sha512-fwxu/zaZnvBJohXM3igzqa3P1IVYWi5N343XcKvKkJbAx+rTqegS5tAul4NLiMPQh6WoS5a4er6oo/ieUx1f4g==
@@ -833,6 +832,20 @@
semver "^7.3.4"
walk-up-path "^1.0.0"
+"@npmcli/config@^4.0.1":
+ version "4.0.2"
+ resolved "https://registry.yarnpkg.com/@npmcli/config/-/config-4.0.2.tgz#cecb171225d8325cee30ee45893eebd9503bb203"
+ integrity sha512-UqD4h4LgyNOb7xRmAK7QXiMu0/k2x7wEzrEqXZ1wGIQVmCl3vamsAprDjAhi7IKlgRulg09hpwYs2/57OP22xw==
+ dependencies:
+ "@npmcli/map-workspaces" "^2.0.2"
+ ini "^3.0.0"
+ mkdirp-infer-owner "^2.0.0"
+ nopt "^5.0.0"
+ proc-log "^2.0.0"
+ read-package-json-fast "^2.0.3"
+ semver "^7.3.5"
+ walk-up-path "^1.0.0"
+
"@npmcli/disparity-colors@^1.0.1":
version "1.0.1"
resolved "https://registry.npmjs.org/@npmcli/disparity-colors/-/disparity-colors-1.0.1.tgz"
@@ -848,6 +861,14 @@
"@gar/promisify" "^1.0.1"
semver "^7.3.5"
+"@npmcli/fs@^2.1.0":
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/@npmcli/fs/-/fs-2.1.0.tgz#f2a21c28386e299d1a9fae8051d35ad180e33109"
+ integrity sha512-DmfBvNXGaetMxj9LTp8NAN9vEidXURrf5ZTslQzEAi/6GbW+4yjaLFQc6Tue5cpZ9Frlk4OBo/Snf1Bh/S7qTQ==
+ dependencies:
+ "@gar/promisify" "^1.1.3"
+ semver "^7.3.5"
+
"@npmcli/git@^2.0.7", "@npmcli/git@^2.1.0":
version "2.1.0"
resolved "https://registry.npmjs.org/@npmcli/git/-/git-2.1.0.tgz"
@@ -862,6 +883,21 @@
semver "^7.3.5"
which "^2.0.2"
+"@npmcli/git@^3.0.0":
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/@npmcli/git/-/git-3.0.0.tgz#466a18980da6b646a8112a7676688ae5347deba3"
+ integrity sha512-xfSBJ+KBMZWWqRHFbEgIaXG/LtELHrQZMJ72Gkb3yWdHysu/7+VGOs8ME0c3td7QNQX57Ggo3kYL6ylcd70/kA==
+ dependencies:
+ "@npmcli/promise-spawn" "^1.3.2"
+ lru-cache "^7.3.1"
+ mkdirp "^1.0.4"
+ npm-pick-manifest "^7.0.0"
+ proc-log "^2.0.0"
+ promise-inflight "^1.0.1"
+ promise-retry "^2.0.1"
+ semver "^7.3.5"
+ which "^2.0.2"
+
"@npmcli/installed-package-contents@^1.0.6", "@npmcli/installed-package-contents@^1.0.7":
version "1.0.7"
resolved "https://registry.npmjs.org/@npmcli/installed-package-contents/-/installed-package-contents-1.0.7.tgz"
@@ -870,16 +906,6 @@
npm-bundled "^1.1.1"
npm-normalize-package-bin "^1.0.1"
-"@npmcli/map-workspaces@^1.0.2", "@npmcli/map-workspaces@^1.0.4":
- version "1.0.4"
- resolved "https://registry.npmjs.org/@npmcli/map-workspaces/-/map-workspaces-1.0.4.tgz"
- integrity sha512-wVR8QxhyXsFcD/cORtJwGQodeeaDf0OxcHie8ema4VgFeqwYkFsDPnSrIRSytX8xR6nKPAH89WnwTcaU608b/Q==
- dependencies:
- "@npmcli/name-from-folder" "^1.0.1"
- glob "^7.1.6"
- minimatch "^3.0.4"
- read-package-json-fast "^2.0.1"
-
"@npmcli/map-workspaces@^2.0.0":
version "2.0.0"
resolved "https://registry.npmjs.org/@npmcli/map-workspaces/-/map-workspaces-2.0.0.tgz"
@@ -890,14 +916,15 @@
minimatch "^3.0.4"
read-package-json-fast "^2.0.1"
-"@npmcli/metavuln-calculator@^1.1.0":
- version "1.1.1"
- resolved "https://registry.npmjs.org/@npmcli/metavuln-calculator/-/metavuln-calculator-1.1.1.tgz"
- integrity sha512-9xe+ZZ1iGVaUovBVFI9h3qW+UuECUzhvZPxK9RaEA2mjU26o5D0JloGYWwLYvQELJNmBdQB6rrpuN8jni6LwzQ==
+"@npmcli/map-workspaces@^2.0.2":
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/@npmcli/map-workspaces/-/map-workspaces-2.0.2.tgz#dfc87ced615afeb98a081da2aa9bba072bf6712d"
+ integrity sha512-ED54EslGsHFWBPN5x8JAOszuWywuoXYSi9E3HQRsgVkWnqsdTBJDSM4IFMRwmmBUbCHAxmP3wGLu1WMm4fhrOw==
dependencies:
- cacache "^15.0.5"
- pacote "^11.1.11"
- semver "^7.3.2"
+ "@npmcli/name-from-folder" "^1.0.1"
+ glob "^7.2.0"
+ minimatch "^5.0.1"
+ read-package-json-fast "^2.0.3"
"@npmcli/metavuln-calculator@^2.0.0":
version "2.0.0"
@@ -909,6 +936,16 @@
pacote "^12.0.0"
semver "^7.3.2"
+"@npmcli/metavuln-calculator@^3.0.1":
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/@npmcli/metavuln-calculator/-/metavuln-calculator-3.1.0.tgz#b1c2f0991c4f2d992b1615a54d4358c05efc3702"
+ integrity sha512-Q5fbQqGDlYqk7kWrbg6E2j/mtqQjZop0ZE6735wYA1tYNHguIDjAuWs+kFb5rJCkLIlXllfapvsyotYKiZOTBA==
+ dependencies:
+ cacache "^16.0.0"
+ json-parse-even-better-errors "^2.3.1"
+ pacote "^13.0.3"
+ semver "^7.3.5"
+
"@npmcli/move-file@^1.0.1", "@npmcli/move-file@^1.1.0", "@npmcli/move-file@^1.1.2":
version "1.1.2"
resolved "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.2.tgz"
@@ -922,7 +959,7 @@
resolved "https://registry.npmjs.org/@npmcli/name-from-folder/-/name-from-folder-1.0.1.tgz"
integrity sha512-qq3oEfcLFwNfEYOQ8HLimRGKlD8WSeGEdtUa7hmzpR8Sa7haL1KVQrvgO6wqMjhWFFVjgtrh1gIxDz+P8sjUaA==
-"@npmcli/node-gyp@^1.0.1", "@npmcli/node-gyp@^1.0.2", "@npmcli/node-gyp@^1.0.3":
+"@npmcli/node-gyp@^1.0.2", "@npmcli/node-gyp@^1.0.3":
version "1.0.3"
resolved "https://registry.npmjs.org/@npmcli/node-gyp/-/node-gyp-1.0.3.tgz"
integrity sha512-fnkhw+fmX65kiLqk6E3BFLXNC26rUhK90zVwe2yncPliVT/Qos3xjhTLE59Df8KnPlcwIERXKVlU1bXoUQ+liA==
@@ -941,16 +978,6 @@
dependencies:
infer-owner "^1.0.4"
-"@npmcli/run-script@^1.8.2", "@npmcli/run-script@^1.8.3", "@npmcli/run-script@^1.8.4", "@npmcli/run-script@^1.8.6":
- version "1.8.6"
- resolved "https://registry.npmjs.org/@npmcli/run-script/-/run-script-1.8.6.tgz"
- integrity sha512-e42bVZnC6VluBZBAFEr3YrdqSspG3bgilyg4nSLBJ7TRGNCzxHa92XAHxQBLYg0BmgwO4b2mf3h/l5EkEWRn3g==
- dependencies:
- "@npmcli/node-gyp" "^1.0.2"
- "@npmcli/promise-spawn" "^1.3.2"
- node-gyp "^7.1.0"
- read-package-json-fast "^2.0.1"
-
"@npmcli/run-script@^2.0.0":
version "2.0.0"
resolved "https://registry.npmjs.org/@npmcli/run-script/-/run-script-2.0.0.tgz"
@@ -961,6 +988,16 @@
node-gyp "^8.2.0"
read-package-json-fast "^2.0.1"
+"@npmcli/run-script@^3.0.0", "@npmcli/run-script@^3.0.1":
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/@npmcli/run-script/-/run-script-3.0.1.tgz#9d10b46586300074cc9e53ef320130a69567e1ce"
+ integrity sha512-o2fkld5hYwu9sKYzoXTpqEocMnDLaigobaPzLaGB63k/ExmLBTaB+KpfKlpcIePPnuP8RFR+0GDI4KopJCM6Xg==
+ dependencies:
+ "@npmcli/node-gyp" "^1.0.3"
+ "@npmcli/promise-spawn" "^1.3.2"
+ node-gyp "^9.0.0"
+ read-package-json-fast "^2.0.3"
+
"@oclif/color@^1.0.0":
version "1.0.1"
resolved "https://registry.npmjs.org/@oclif/color/-/color-1.0.1.tgz"
@@ -1191,16 +1228,6 @@
dependencies:
"@octokit/openapi-types" "^11.2.0"
-"@semantic-release/changelog@^5.0.1":
- version "5.0.1"
- resolved "https://registry.npmjs.org/@semantic-release/changelog/-/changelog-5.0.1.tgz"
- integrity sha512-unvqHo5jk4dvAf2nZ3aw4imrlwQ2I50eVVvq9D47Qc3R+keNqepx1vDYwkjF8guFXnOYaYcR28yrZWno1hFbiw==
- dependencies:
- "@semantic-release/error" "^2.1.0"
- aggregate-error "^3.0.0"
- fs-extra "^9.0.0"
- lodash "^4.17.4"
-
"@semantic-release/changelog@^6.0.1":
version "6.0.1"
resolved "https://registry.npmjs.org/@semantic-release/changelog/-/changelog-6.0.1.tgz"
@@ -1211,20 +1238,20 @@
fs-extra "^9.0.0"
lodash "^4.17.4"
-"@semantic-release/commit-analyzer@^8.0.0":
- version "8.0.1"
- resolved "https://registry.npmjs.org/@semantic-release/commit-analyzer/-/commit-analyzer-8.0.1.tgz"
- integrity sha512-5bJma/oB7B4MtwUkZC2Bf7O1MHfi4gWe4mA+MIQ3lsEV0b422Bvl1z5HRpplDnMLHH3EXMoRdEng6Ds5wUqA3A==
+"@semantic-release/commit-analyzer@^9.0.2":
+ version "9.0.2"
+ resolved "https://registry.yarnpkg.com/@semantic-release/commit-analyzer/-/commit-analyzer-9.0.2.tgz#a78e54f9834193b55f1073fa6258eecc9a545e03"
+ integrity sha512-E+dr6L+xIHZkX4zNMe6Rnwg4YQrWNXK+rNsvwOPpdFppvZO1olE2fIgWhv89TkQErygevbjsZFSIxp+u6w2e5g==
dependencies:
conventional-changelog-angular "^5.0.0"
conventional-commits-filter "^2.0.0"
- conventional-commits-parser "^3.0.7"
+ conventional-commits-parser "^3.2.3"
debug "^4.0.0"
- import-from "^3.0.0"
+ import-from "^4.0.0"
lodash "^4.17.4"
micromatch "^4.0.2"
-"@semantic-release/error@^2.1.0", "@semantic-release/error@^2.2.0":
+"@semantic-release/error@^2.2.0":
version "2.2.0"
resolved "https://registry.npmjs.org/@semantic-release/error/-/error-2.2.0.tgz"
integrity sha512-9Tj/qn+y2j+sjCI3Jd+qseGtHjOAeg7dU2/lVcqIQ9TV3QDaDXDYXcoOHU+7o2Hwh8L8ymL4gfuO7KxDs3q2zg==
@@ -1248,24 +1275,10 @@
micromatch "^4.0.0"
p-reduce "^2.0.0"
-"@semantic-release/git@^9.0.0":
- version "9.0.1"
- resolved "https://registry.npmjs.org/@semantic-release/git/-/git-9.0.1.tgz"
- integrity sha512-75P03s9v0xfrH9ffhDVWRIX0fgWBvJMmXhUU0rMTKYz47oMXU5O95M/ocgIKnVJlWZYoC+LpIe4Ye6ev8CrlUQ==
- dependencies:
- "@semantic-release/error" "^2.1.0"
- aggregate-error "^3.0.0"
- debug "^4.0.0"
- dir-glob "^3.0.0"
- execa "^5.0.0"
- lodash "^4.17.4"
- micromatch "^4.0.0"
- p-reduce "^2.0.0"
-
-"@semantic-release/github@^7.0.0":
- version "7.2.3"
- resolved "https://registry.npmjs.org/@semantic-release/github/-/github-7.2.3.tgz"
- integrity sha512-lWjIVDLal+EQBzy697ayUNN8MoBpp+jYIyW2luOdqn5XBH4d9bQGfTnjuLyzARZBHejqh932HVjiH/j4+R7VHw==
+"@semantic-release/github@^8.0.0", "@semantic-release/github@^8.0.1":
+ version "8.0.4"
+ resolved "https://registry.yarnpkg.com/@semantic-release/github/-/github-8.0.4.tgz#4ea242f6ad10a0474b0fbb09462e10c43518002a"
+ integrity sha512-But4e8oqqP3anZI5tjzZssZc2J6eoUdeeE0s7LVKKwyiAXJiQDWNNvtPOpgG2DsIz4+Exuse7cEQgjGMxwtLmg==
dependencies:
"@octokit/rest" "^18.0.0"
"@semantic-release/error" "^2.2.0"
@@ -1275,95 +1288,50 @@
dir-glob "^3.0.0"
fs-extra "^10.0.0"
globby "^11.0.0"
- http-proxy-agent "^4.0.0"
+ http-proxy-agent "^5.0.0"
https-proxy-agent "^5.0.0"
issue-parser "^6.0.0"
lodash "^4.17.4"
- mime "^2.4.3"
+ mime "^3.0.0"
p-filter "^2.0.0"
p-retry "^4.0.0"
url-join "^4.0.0"
-"@semantic-release/gitlab@^6.2.2":
- version "6.2.2"
- resolved "https://registry.npmjs.org/@semantic-release/gitlab/-/gitlab-6.2.2.tgz"
- integrity sha512-AEz1MpTVttQITTXYmsryQQi+f6ybLUIXoLSXhNwhNB/P/kFYs9P/X8GU/ARip/J5twByoWw07S5KldMCP2zZNQ==
- dependencies:
- "@semantic-release/error" "^2.2.0"
- aggregate-error "^3.0.0"
- debug "^4.0.0"
- dir-glob "^3.0.0"
- escape-string-regexp "^3.0.0"
- form-data "^3.0.0"
- fs-extra "^9.0.0"
- globby "^11.0.0"
- got "^10.5.2"
- lodash "^4.17.11"
- parse-path "^4.0.0"
- url-join "^4.0.0"
-
-"@semantic-release/npm@^7.0.0", "@semantic-release/npm@^7.1.3":
- version "7.1.3"
- resolved "https://registry.npmjs.org/@semantic-release/npm/-/npm-7.1.3.tgz"
- integrity sha512-x52kQ/jR09WjuWdaTEHgQCvZYMOTx68WnS+TZ4fya5ZAJw4oRtJETtrvUw10FdfM28d/keInQdc66R1Gw5+OEQ==
+"@semantic-release/npm@^9.0.0", "@semantic-release/npm@^9.0.1":
+ version "9.0.1"
+ resolved "https://registry.yarnpkg.com/@semantic-release/npm/-/npm-9.0.1.tgz#d81828eb1fb771e2767b3a8ee989915e1af27075"
+ integrity sha512-I5nVZklxBzfMFwemhRNbSrkiN/dsH3c7K9+KSk6jUnq0rdLFUuJt7EBsysq4Ir3moajQgFkfEryEHPqiKJj20g==
dependencies:
- "@semantic-release/error" "^2.2.0"
+ "@semantic-release/error" "^3.0.0"
aggregate-error "^3.0.0"
execa "^5.0.0"
fs-extra "^10.0.0"
lodash "^4.17.15"
nerf-dart "^1.0.0"
normalize-url "^6.0.0"
- npm "^7.0.0"
+ npm "^8.3.0"
rc "^1.2.8"
read-pkg "^5.0.0"
registry-auth-token "^4.0.0"
semver "^7.1.2"
tempy "^1.0.0"
-"@semantic-release/release-notes-generator@^9.0.0":
- version "9.0.3"
- resolved "https://registry.npmjs.org/@semantic-release/release-notes-generator/-/release-notes-generator-9.0.3.tgz"
- integrity sha512-hMZyddr0u99OvM2SxVOIelHzly+PP3sYtJ8XOLHdMp8mrluN5/lpeTnIO27oeCYdupY/ndoGfvrqDjHqkSyhVg==
+"@semantic-release/release-notes-generator@^10.0.0":
+ version "10.0.3"
+ resolved "https://registry.yarnpkg.com/@semantic-release/release-notes-generator/-/release-notes-generator-10.0.3.tgz#85f7ca78bfa6b01fb5fda0ac48112855d69171dc"
+ integrity sha512-k4x4VhIKneOWoBGHkx0qZogNjCldLPRiAjnIpMnlUh6PtaWXp/T+C9U7/TaNDDtgDa5HMbHl4WlREdxHio6/3w==
dependencies:
conventional-changelog-angular "^5.0.0"
- conventional-changelog-writer "^4.0.0"
+ conventional-changelog-writer "^5.0.0"
conventional-commits-filter "^2.0.0"
- conventional-commits-parser "^3.0.0"
+ conventional-commits-parser "^3.2.3"
debug "^4.0.0"
get-stream "^6.0.0"
- import-from "^3.0.0"
+ import-from "^4.0.0"
into-stream "^6.0.0"
lodash "^4.17.4"
read-pkg-up "^7.0.0"
-"@sideway/address@^4.1.3":
- version "4.1.3"
- resolved "https://registry.npmjs.org/@sideway/address/-/address-4.1.3.tgz"
- integrity sha512-8ncEUtmnTsMmL7z1YPB47kPUq7LpKWJNFPsRzHiIajGC5uXlWGn+AmkYPcHNl8S4tcEGx+cnORnNYaw2wvL+LQ==
- dependencies:
- "@hapi/hoek" "^9.0.0"
-
-"@sideway/formula@^3.0.0":
- version "3.0.0"
- resolved "https://registry.npmjs.org/@sideway/formula/-/formula-3.0.0.tgz"
- integrity sha512-vHe7wZ4NOXVfkoRb8T5otiENVlT7a3IAiw7H5M2+GO+9CDgcVUUsX1zalAztCmwyOr2RUTGJdgB+ZvSVqmdHmg==
-
-"@sideway/pinpoint@^2.0.0":
- version "2.0.0"
- resolved "https://registry.npmjs.org/@sideway/pinpoint/-/pinpoint-2.0.0.tgz"
- integrity sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==
-
-"@sindresorhus/is@^0.7.0":
- version "0.7.0"
- resolved "https://registry.npmjs.org/@sindresorhus/is/-/is-0.7.0.tgz"
- integrity sha512-ONhaKPIufzzrlNbqtWFFd+jlnemX6lJAgq9ZeiZtS7I1PIf/la7CW4m83rTXRnVnsMbW2k56pGYu7AUFJD9Pow==
-
-"@sindresorhus/is@^2.0.0":
- version "2.1.1"
- resolved "https://registry.npmjs.org/@sindresorhus/is/-/is-2.1.1.tgz"
- integrity sha512-/aPsuoj/1Dw/kzhkgz+ES6TxG0zfTMGLwuK2ZG00k/iJzYHTLCE8mVU8EPqEOp/lmxPoq1C1C9RYToRKb2KEfg==
-
"@sinonjs/commons@^1.7.0":
version "1.8.3"
resolved "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.3.tgz"
@@ -1378,13 +1346,6 @@
dependencies:
"@sinonjs/commons" "^1.7.0"
-"@szmarczak/http-timer@^4.0.0":
- version "4.0.6"
- resolved "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-4.0.6.tgz"
- integrity sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==
- dependencies:
- defer-to-connect "^2.0.0"
-
"@tootallnate/once@1":
version "1.1.2"
resolved "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz"
@@ -1456,16 +1417,6 @@
"@types/connect" "*"
"@types/node" "*"
-"@types/cacheable-request@^6.0.1":
- version "6.0.2"
- resolved "https://registry.npmjs.org/@types/cacheable-request/-/cacheable-request-6.0.2.tgz"
- integrity sha512-B3xVo+dlKM6nnKTcmm5ZtY/OL8bOAOd2Olee9M1zft65ox50OzjEHW91sDiU9j6cvW8Ejg1/Qkf4xd2kugApUA==
- dependencies:
- "@types/http-cache-semantics" "*"
- "@types/keyv" "*"
- "@types/node" "*"
- "@types/responselike" "*"
-
"@types/chai@*", "@types/chai@^4":
version "4.3.0"
resolved "https://registry.npmjs.org/@types/chai/-/chai-4.3.0.tgz"
@@ -1527,11 +1478,6 @@
dependencies:
"@types/node" "*"
-"@types/http-cache-semantics@*":
- version "4.0.1"
- resolved "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.1.tgz"
- integrity sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ==
-
"@types/inquirer@^7.3.2":
version "7.3.3"
resolved "https://registry.npmjs.org/@types/inquirer/-/inquirer-7.3.3.tgz"
@@ -1582,13 +1528,6 @@
resolved "https://registry.npmjs.org/@types/jsonpath/-/jsonpath-0.2.0.tgz"
integrity sha512-v7qlPA0VpKUlEdhghbDqRoKMxFB3h3Ch688TApBJ6v+XLDdvWCGLJIYiPKGZnS6MAOie+IorCfNYVHOPIHSWwQ==
-"@types/keyv@*", "@types/keyv@^3.1.1":
- version "3.1.3"
- resolved "https://registry.npmjs.org/@types/keyv/-/keyv-3.1.3.tgz"
- integrity sha512-FXCJgyyN3ivVgRoml4h94G/p3kY+u/B86La+QptcqJaWtBWtmc6TtkNfS40n9bIvyLteHh7zXOtgbobORKPbDg==
- dependencies:
- "@types/node" "*"
-
"@types/lodash@*", "@types/lodash@^4.14.175":
version "4.14.178"
resolved "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.178.tgz"
@@ -1681,13 +1620,6 @@
resolved "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz"
integrity sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==
-"@types/responselike@*":
- version "1.0.0"
- resolved "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.0.tgz"
- integrity sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==
- dependencies:
- "@types/node" "*"
-
"@types/retry@^0.12.0":
version "0.12.1"
resolved "https://registry.npmjs.org/@types/retry/-/retry-0.12.1.tgz"
@@ -1963,7 +1895,7 @@ aggregate-error@^3.0.0:
clean-stack "^2.0.0"
indent-string "^4.0.0"
-ajv@^6.10.0, ajv@^6.12.3, ajv@^6.12.4:
+ajv@^6.10.0, ajv@^6.12.4:
version "6.12.6"
resolved "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz"
integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==
@@ -2038,13 +1970,20 @@ ansi-escapes@^3.1.0:
resolved "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz"
integrity sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==
-ansi-escapes@^4.2.1, ansi-escapes@^4.3.0, ansi-escapes@^4.3.1, ansi-escapes@^4.3.2:
+ansi-escapes@^4.2.1, ansi-escapes@^4.3.0, ansi-escapes@^4.3.2:
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"
+ansi-escapes@^5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-5.0.0.tgz#b6a0caf0eef0c41af190e9a749e0c00ec04bb2a6"
+ integrity sha512-5GFMVX8HqE/TB+FuBJGuO5XG0WrsA6ptUqoODaT/n9mmUaZFkqnBueB4leqGBCmrUHnCnC4PCZTCd0E7QQ83bA==
+ dependencies:
+ type-fest "^1.0.2"
+
ansi-regex@^2.0.0:
version "2.1.1"
resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz"
@@ -2167,23 +2106,11 @@ apollo-utilities@^1.3.0, apollo-utilities@^1.3.4:
ts-invariant "^0.4.0"
tslib "^1.10.0"
-aproba@^1.0.3:
- version "1.2.0"
- resolved "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz"
- integrity sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==
-
"aproba@^1.0.3 || ^2.0.0", aproba@^2.0.0:
version "2.0.0"
resolved "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz"
integrity sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==
-archive-type@^4.0.0:
- version "4.0.0"
- resolved "https://registry.npmjs.org/archive-type/-/archive-type-4.0.0.tgz"
- integrity sha1-+S5yIzBW38aWlHJ0nCZ72wRrHXA=
- dependencies:
- file-type "^4.2.0"
-
archy@~1.0.0:
version "1.0.0"
resolved "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz"
@@ -2197,13 +2124,13 @@ are-we-there-yet@^2.0.0:
delegates "^1.0.0"
readable-stream "^3.6.0"
-are-we-there-yet@~1.1.2:
- version "1.1.7"
- resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.7.tgz#b15474a932adab4ff8a50d9adfa7e4e926f21146"
- integrity sha512-nxwy40TuMiUGqMyRHgCSWZ9FM4VAoRP4xUYSTv5ImRog+h9yISPbVH7H8fASCIzYn9wlEv4zvFL7uKDMCFQm3g==
+are-we-there-yet@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-3.0.0.tgz#ba20bd6b553e31d62fc8c31bd23d22b95734390d"
+ integrity sha512-0GWpv50YSOcLXaN6/FAKY3vfRbllXWV2xvfA/oKJF8pzFhWXPV+yjhJXDBbjscDYowv7Yw1A3uigpzn5iEGTyw==
dependencies:
delegates "^1.0.0"
- readable-stream "^2.0.6"
+ readable-stream "^3.6.0"
arg@^4.1.0:
version "4.1.3"
@@ -2309,18 +2236,6 @@ asap@^2.0.0:
resolved "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz"
integrity sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=
-asn1@~0.2.3:
- version "0.2.6"
- resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.6.tgz#0d3a7bb6e64e02a90c0303b31f292868ea09a08d"
- integrity sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==
- dependencies:
- safer-buffer "~2.1.0"
-
-assert-plus@1.0.0, assert-plus@^1.0.0:
- version "1.0.0"
- resolved "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz"
- integrity sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=
-
assertion-error@^1.1.0:
version "1.1.0"
resolved "https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz"
@@ -2405,16 +2320,6 @@ aws-sdk@^2.1060.0, aws-sdk@^2.1069.0:
uuid "3.3.2"
xml2js "0.4.19"
-aws-sign2@~0.7.0:
- version "0.7.0"
- resolved "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz"
- integrity sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=
-
-aws4@^1.8.0:
- version "1.11.0"
- resolved "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz"
- integrity sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==
-
axios@^0.21.1:
version "0.21.4"
resolved "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz"
@@ -2519,30 +2424,12 @@ base@^0.11.1:
mixin-deep "^1.2.0"
pascalcase "^0.1.1"
-bcrypt-pbkdf@^1.0.0:
- version "1.0.2"
- resolved "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz"
- integrity sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=
- dependencies:
- tweetnacl "^0.14.3"
-
before-after-hook@^2.2.0:
version "2.2.2"
resolved "https://registry.npmjs.org/before-after-hook/-/before-after-hook-2.2.2.tgz"
integrity sha512-3pZEU3NT5BFUo/AD5ERPWOgQOCZITni6iavr5AUw5AUwQjMlI0kzu5btnyD39AF0gUEsDPwJT+oY1ORBJijPjQ==
-bin-build@^3.0.0:
- version "3.0.0"
- resolved "https://registry.npmjs.org/bin-build/-/bin-build-3.0.0.tgz"
- integrity sha512-jcUOof71/TNAI2uM5uoUaDq2ePcVBQ3R/qhxAz1rX7UfvduAL/RXD3jXzvn8cVcDJdGVkiR1shal3OH0ImpuhA==
- dependencies:
- decompress "^4.0.0"
- download "^6.2.2"
- execa "^0.7.0"
- p-map-series "^1.0.0"
- tempfile "^2.0.0"
-
-bin-links@^2.2.1, bin-links@^2.3.0:
+bin-links@^2.3.0:
version "2.3.0"
resolved "https://registry.npmjs.org/bin-links/-/bin-links-2.3.0.tgz"
integrity sha512-JzrOLHLwX2zMqKdyYZjkDgQGT+kHDkIhv2/IK2lJ00qLxV4TmFoHi8drDBb6H5Zrz1YfgHkai4e2MGPqnoUhqA==
@@ -2588,14 +2475,6 @@ bindings@^1.5.0:
dependencies:
file-uri-to-path "1.0.0"
-bl@^1.0.0:
- version "1.2.3"
- resolved "https://registry.npmjs.org/bl/-/bl-1.2.3.tgz"
- integrity sha512-pvcNpa0UU69UT341rO6AYy4FVAIkUHuZXRIWbq+zHnsVcRzDDjIAhGuuYoi0d//cwIwtt4pkpKycWEfjdV+vww==
- dependencies:
- readable-stream "^2.3.5"
- safe-buffer "^5.1.1"
-
bl@^4.0.3, bl@^4.1.0:
version "4.1.0"
resolved "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz"
@@ -2648,6 +2527,13 @@ brace-expansion@^1.1.7:
balanced-match "^1.0.0"
concat-map "0.0.1"
+brace-expansion@^2.0.1:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae"
+ integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==
+ dependencies:
+ balanced-match "^1.0.0"
+
braces@^1.8.2:
version "1.8.5"
resolved "https://registry.npmjs.org/braces/-/braces-1.8.5.tgz"
@@ -2710,29 +2596,6 @@ bser@2.1.1:
dependencies:
node-int64 "^0.4.0"
-buffer-alloc-unsafe@^1.1.0:
- version "1.1.0"
- resolved "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz"
- integrity sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==
-
-buffer-alloc@^1.2.0:
- version "1.2.0"
- resolved "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz"
- integrity sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==
- dependencies:
- buffer-alloc-unsafe "^1.1.0"
- buffer-fill "^1.0.0"
-
-buffer-crc32@~0.2.3:
- version "0.2.13"
- resolved "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz"
- integrity sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI=
-
-buffer-fill@^1.0.0:
- version "1.0.0"
- resolved "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz"
- integrity sha1-+PeLdniYiO858gXNY39o5wISKyw=
-
buffer-from@^1.0.0:
version "1.1.2"
resolved "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz"
@@ -2747,7 +2610,7 @@ buffer@4.9.2:
ieee754 "^1.1.4"
isarray "^1.0.0"
-buffer@^5.2.1, buffer@^5.5.0:
+buffer@^5.5.0:
version "5.7.1"
resolved "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz"
integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==
@@ -2760,6 +2623,13 @@ builtins@^1.0.3:
resolved "https://registry.npmjs.org/builtins/-/builtins-1.0.3.tgz"
integrity sha1-y5T662HIaWRR2zZTThQi+U8K7og=
+builtins@^5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/builtins/-/builtins-5.0.0.tgz#20d87e7f95d46481b1abe4adc616a9cb6b492cba"
+ integrity sha512-aizhtbxgT1Udg0Fj6GssXshAVK+nxbtCV+1OtTrMNy67jffDFBY6CUBAkhO4owbleAx6fdbnWdpsmmcXydbzNw==
+ dependencies:
+ semver "^7.0.0"
+
bytes@3.1.1:
version "3.1.1"
resolved "https://registry.npmjs.org/bytes/-/bytes-3.1.1.tgz"
@@ -2813,6 +2683,30 @@ cacache@^16.0.0:
tar "^6.1.11"
unique-filename "^1.1.1"
+cacache@^16.0.2, cacache@^16.0.3:
+ version "16.0.3"
+ resolved "https://registry.yarnpkg.com/cacache/-/cacache-16.0.3.tgz#0b6314bde969bd4098b03a5f90a351e8a1483f48"
+ integrity sha512-eC7wYodNCVb97kuHGk5P+xZsvUJHkhSEOyNwkenqQPAsOtrTjvWOE5vSPNBpz9d8X3acIf6w2Ub5s4rvOCTs4g==
+ dependencies:
+ "@npmcli/fs" "^2.1.0"
+ "@npmcli/move-file" "^1.1.2"
+ chownr "^2.0.0"
+ fs-minipass "^2.1.0"
+ glob "^7.2.0"
+ infer-owner "^1.0.4"
+ lru-cache "^7.7.1"
+ minipass "^3.1.6"
+ minipass-collect "^1.0.2"
+ minipass-flush "^1.0.5"
+ minipass-pipeline "^1.2.4"
+ mkdirp "^1.0.4"
+ p-map "^4.0.0"
+ promise-inflight "^1.0.1"
+ rimraf "^3.0.2"
+ ssri "^8.0.1"
+ tar "^6.1.11"
+ unique-filename "^1.1.1"
+
cache-base@^1.0.1:
version "1.0.1"
resolved "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz"
@@ -2828,40 +2722,6 @@ cache-base@^1.0.1:
union-value "^1.0.0"
unset-value "^1.0.0"
-cacheable-lookup@^2.0.0:
- version "2.0.1"
- resolved "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-2.0.1.tgz"
- integrity sha512-EMMbsiOTcdngM/K6gV/OxF2x0t07+vMOWxZNSCRQMjO2MY2nhZQ6OYhOOpyQrbhqsgtvKGI7hcq6xjnA92USjg==
- dependencies:
- "@types/keyv" "^3.1.1"
- keyv "^4.0.0"
-
-cacheable-request@^2.1.1:
- version "2.1.4"
- resolved "https://registry.npmjs.org/cacheable-request/-/cacheable-request-2.1.4.tgz"
- integrity sha1-DYCIAbY0KtM8kd+dC0TcCbkeXD0=
- dependencies:
- clone-response "1.0.2"
- get-stream "3.0.0"
- http-cache-semantics "3.8.1"
- keyv "3.0.0"
- lowercase-keys "1.0.0"
- normalize-url "2.0.1"
- responselike "1.0.2"
-
-cacheable-request@^7.0.1:
- version "7.0.2"
- resolved "https://registry.npmjs.org/cacheable-request/-/cacheable-request-7.0.2.tgz"
- integrity sha512-pouW8/FmiPQbuGpkXQ9BAPv/Mo5xDGANgSNXzTzJ8DrKGuXOssM4wIQRjfanNRh3Yu5cfYPvcorqbhg2KIJtew==
- dependencies:
- clone-response "^1.0.2"
- get-stream "^5.1.0"
- http-cache-semantics "^4.0.0"
- keyv "^4.0.0"
- lowercase-keys "^2.0.0"
- normalize-url "^6.0.1"
- responselike "^2.0.0"
-
call-bind@^1.0.0, call-bind@^1.0.2:
version "1.0.2"
resolved "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz"
@@ -2907,21 +2767,6 @@ cardinal@^2.1.1:
ansicolors "~0.3.2"
redeyed "~2.1.0"
-caseless@~0.12.0:
- version "0.12.0"
- resolved "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz"
- integrity sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=
-
-caw@^2.0.0:
- version "2.0.1"
- resolved "https://registry.npmjs.org/caw/-/caw-2.0.1.tgz"
- integrity sha512-Cg8/ZSBEa8ZVY9HspcGUYaK63d/bN7rqS3CYCzEGUxuYv6UlmcjzDUz2fCFFHyTvUW5Pk0I+3hkA3iXlIj6guA==
- dependencies:
- get-proxy "^2.0.0"
- isurl "^1.0.0-alpha5"
- tunnel-agent "^0.6.0"
- url-to-options "^1.0.1"
-
cfonts@^2.9.3:
version "2.10.0"
resolved "https://registry.npmjs.org/cfonts/-/cfonts-2.10.0.tgz"
@@ -2970,6 +2815,11 @@ chalk@^4.0.0, chalk@^4.1.0, chalk@^4.1.1, chalk@^4.1.2:
ansi-styles "^4.1.0"
supports-color "^7.1.0"
+chalk@^5.0.0:
+ version "5.0.1"
+ resolved "https://registry.yarnpkg.com/chalk/-/chalk-5.0.1.tgz#ca57d71e82bb534a296df63bbacc4a1c22b2a4b6"
+ integrity sha512-Fo07WOYGqMfCWHOzSXOt2CxDbC6skS/jO9ynEcmpANMoPrD+W1r1K6Vx7iNm+AQmETU1Xr2t+n8nzkV9t6xh3w==
+
char-regex@^1.0.2:
version "1.0.2"
resolved "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz"
@@ -3065,14 +2915,6 @@ cli-boxes@^2.2.1:
resolved "https://registry.npmjs.org/cli-boxes/-/cli-boxes-2.2.1.tgz"
integrity sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==
-cli-columns@^3.1.2:
- version "3.1.2"
- resolved "https://registry.npmjs.org/cli-columns/-/cli-columns-3.1.2.tgz"
- integrity sha1-ZzLZcpee/CrkRKHwjgj6E5yWoY4=
- dependencies:
- string-width "^2.0.0"
- strip-ansi "^3.0.1"
-
cli-columns@^4.0.0:
version "4.0.0"
resolved "https://registry.npmjs.org/cli-columns/-/cli-columns-4.0.0.tgz"
@@ -3100,7 +2942,7 @@ cli-spinners@^2.5.0:
resolved "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.6.1.tgz"
integrity sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==
-cli-table3@^0.6.0:
+cli-table3@^0.6.0, cli-table3@^0.6.1:
version "0.6.1"
resolved "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.1.tgz"
integrity sha512-w0q/enDHhPLq44ovMGdQeeDLvwxwavsJX7oQGYt/LrBlYsyaxyDnp6z3QzFut/6kLLKnlcUVJLrpB7KBfgG/RA==
@@ -3143,13 +2985,6 @@ clone-buffer@^1.0.0:
resolved "https://registry.npmjs.org/clone-buffer/-/clone-buffer-1.0.0.tgz"
integrity sha1-4+JbIHrE5wGvch4staFnksrD3Fg=
-clone-response@1.0.2, clone-response@^1.0.2:
- version "1.0.2"
- resolved "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz"
- integrity sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=
- dependencies:
- mimic-response "^1.0.0"
-
clone-stats@^1.0.0:
version "1.0.0"
resolved "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz"
@@ -3253,6 +3088,14 @@ colors@1.4.0:
resolved "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz"
integrity sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==
+columnify@^1.6.0:
+ version "1.6.0"
+ resolved "https://registry.yarnpkg.com/columnify/-/columnify-1.6.0.tgz#6989531713c9008bb29735e61e37acf5bd553cf3"
+ integrity sha512-lomjuFZKfM6MSAnV9aCZC9sc0qGbmZdfygNv+nCpqVkSKdCxCklLtd16O0EILGkImHw9ZpHkAnHaB+8Zxq5W6Q==
+ dependencies:
+ strip-ansi "^6.0.1"
+ wcwidth "^1.0.0"
+
columnify@~1.5.4:
version "1.5.4"
resolved "https://registry.npmjs.org/columnify/-/columnify-1.5.4.tgz"
@@ -3261,7 +3104,7 @@ columnify@~1.5.4:
strip-ansi "^3.0.0"
wcwidth "^1.0.0"
-combined-stream@^1.0.6, combined-stream@^1.0.8, combined-stream@~1.0.6:
+combined-stream@^1.0.8:
version "1.0.8"
resolved "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz"
integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==
@@ -3273,7 +3116,7 @@ commander@7.1.0:
resolved "https://registry.npmjs.org/commander/-/commander-7.1.0.tgz"
integrity sha512-pRxBna3MJe6HKnBGsDyMv8ETbptw3axEdYHoqNh7gu5oDcew8fs0xnivZGm06Ogk8zGAJ9VX+OPEr2GXEQK4dg==
-commander@^2.20.3, commander@^2.8.1:
+commander@^2.20.3:
version "2.20.3"
resolved "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz"
integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==
@@ -3330,25 +3173,17 @@ concurrently@^7.0.0:
tree-kill "^1.2.2"
yargs "^16.2.0"
-config-chain@^1.1.11:
- version "1.1.13"
- resolved "https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz"
- integrity sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==
- dependencies:
- ini "^1.3.4"
- proto-list "~1.2.1"
-
confusing-browser-globals@^1.0.10:
version "1.0.11"
resolved "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz"
integrity sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==
-console-control-strings@^1.0.0, console-control-strings@^1.1.0, console-control-strings@~1.1.0:
+console-control-strings@^1.0.0, console-control-strings@^1.1.0:
version "1.1.0"
resolved "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz"
integrity sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=
-content-disposition@0.5.4, content-disposition@^0.5.2:
+content-disposition@0.5.4:
version "0.5.4"
resolved "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz"
integrity sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==
@@ -3368,15 +3203,14 @@ conventional-changelog-angular@^5.0.0:
compare-func "^2.0.0"
q "^1.5.1"
-conventional-changelog-writer@^4.0.0:
- version "4.1.0"
- resolved "https://registry.npmjs.org/conventional-changelog-writer/-/conventional-changelog-writer-4.1.0.tgz"
- integrity sha512-WwKcUp7WyXYGQmkLsX4QmU42AZ1lqlvRW9mqoyiQzdD+rJWbTepdWoKJuwXTS+yq79XKnQNa93/roViPQrAQgw==
+conventional-changelog-writer@^5.0.0:
+ version "5.0.1"
+ resolved "https://registry.yarnpkg.com/conventional-changelog-writer/-/conventional-changelog-writer-5.0.1.tgz#e0757072f045fe03d91da6343c843029e702f359"
+ integrity sha512-5WsuKUfxW7suLblAbFnxAcrvf6r+0b7GvNaWUwUIk0bXMnENP/PEieGKVUQrjPqwPT4o3EPAASBXiY6iHooLOQ==
dependencies:
- compare-func "^2.0.0"
conventional-commits-filter "^2.0.7"
dateformat "^3.0.0"
- handlebars "^4.7.6"
+ handlebars "^4.7.7"
json-stringify-safe "^5.0.1"
lodash "^4.17.15"
meow "^8.0.0"
@@ -3392,9 +3226,9 @@ conventional-commits-filter@^2.0.0, conventional-commits-filter@^2.0.7:
lodash.ismatch "^4.4.0"
modify-values "^1.0.0"
-conventional-commits-parser@^3.0.0, conventional-commits-parser@^3.0.7:
+conventional-commits-parser@^3.2.3:
version "3.2.4"
- resolved "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-3.2.4.tgz"
+ resolved "https://registry.yarnpkg.com/conventional-commits-parser/-/conventional-commits-parser-3.2.4.tgz#a7d3b77758a202a9b2293d2112a8d8052c740972"
integrity sha512-nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q==
dependencies:
JSONStream "^1.0.4"
@@ -3439,11 +3273,6 @@ core-js@^2.4.0:
resolved "https://registry.npmjs.org/core-js/-/core-js-2.6.12.tgz"
integrity sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==
-core-util-is@1.0.2:
- version "1.0.2"
- resolved "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz"
- integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=
-
core-util-is@~1.0.0:
version "1.0.3"
resolved "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz"
@@ -3489,15 +3318,6 @@ cross-env@^7.0.3:
dependencies:
cross-spawn "^7.0.1"
-cross-spawn@^5.0.1:
- version "5.1.0"
- resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz"
- integrity sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=
- dependencies:
- lru-cache "^4.0.1"
- shebang-command "^1.2.0"
- which "^1.2.9"
-
cross-spawn@^6.0.0, cross-spawn@^6.0.5:
version "6.0.5"
resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz"
@@ -3560,13 +3380,6 @@ dargs@^7.0.0:
resolved "https://registry.npmjs.org/dargs/-/dargs-7.0.0.tgz"
integrity sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==
-dashdash@^1.12.0:
- version "1.14.1"
- resolved "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz"
- integrity sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=
- dependencies:
- assert-plus "^1.0.0"
-
data-urls@^2.0.0:
version "2.0.0"
resolved "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz"
@@ -3640,73 +3453,6 @@ decode-uri-component@^0.2.0:
resolved "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz"
integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=
-decompress-response@^3.2.0, decompress-response@^3.3.0:
- version "3.3.0"
- resolved "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz"
- integrity sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=
- dependencies:
- mimic-response "^1.0.0"
-
-decompress-response@^5.0.0:
- version "5.0.0"
- resolved "https://registry.npmjs.org/decompress-response/-/decompress-response-5.0.0.tgz"
- integrity sha512-TLZWWybuxWgoW7Lykv+gq9xvzOsUjQ9tF09Tj6NSTYGMTCHNXzrPnD6Hi+TgZq19PyTAGH4Ll/NIM/eTGglnMw==
- dependencies:
- mimic-response "^2.0.0"
-
-decompress-tar@^4.0.0, decompress-tar@^4.1.0, decompress-tar@^4.1.1:
- version "4.1.1"
- resolved "https://registry.npmjs.org/decompress-tar/-/decompress-tar-4.1.1.tgz"
- integrity sha512-JdJMaCrGpB5fESVyxwpCx4Jdj2AagLmv3y58Qy4GE6HMVjWz1FeVQk1Ct4Kye7PftcdOo/7U7UKzYBJgqnGeUQ==
- dependencies:
- file-type "^5.2.0"
- is-stream "^1.1.0"
- tar-stream "^1.5.2"
-
-decompress-tarbz2@^4.0.0:
- version "4.1.1"
- resolved "https://registry.npmjs.org/decompress-tarbz2/-/decompress-tarbz2-4.1.1.tgz"
- integrity sha512-s88xLzf1r81ICXLAVQVzaN6ZmX4A6U4z2nMbOwobxkLoIIfjVMBg7TeguTUXkKeXni795B6y5rnvDw7rxhAq9A==
- dependencies:
- decompress-tar "^4.1.0"
- file-type "^6.1.0"
- is-stream "^1.1.0"
- seek-bzip "^1.0.5"
- unbzip2-stream "^1.0.9"
-
-decompress-targz@^4.0.0:
- version "4.1.1"
- resolved "https://registry.npmjs.org/decompress-targz/-/decompress-targz-4.1.1.tgz"
- integrity sha512-4z81Znfr6chWnRDNfFNqLwPvm4db3WuZkqV+UgXQzSngG3CEKdBkw5jrv3axjjL96glyiiKjsxJG3X6WBZwX3w==
- dependencies:
- decompress-tar "^4.1.1"
- file-type "^5.2.0"
- is-stream "^1.1.0"
-
-decompress-unzip@^4.0.1:
- version "4.0.1"
- resolved "https://registry.npmjs.org/decompress-unzip/-/decompress-unzip-4.0.1.tgz"
- integrity sha1-3qrM39FK6vhVePczroIQ+bSEj2k=
- dependencies:
- file-type "^3.8.0"
- get-stream "^2.2.0"
- pify "^2.3.0"
- yauzl "^2.4.2"
-
-decompress@^4.0.0, decompress@^4.2.1:
- version "4.2.1"
- resolved "https://registry.npmjs.org/decompress/-/decompress-4.2.1.tgz"
- integrity sha512-e48kc2IjU+2Zw8cTb6VZcJQ3lgVbS4uuB1TfCHbiZIP/haNXm+SVyhu+87jts5/3ROpd82GSVCoNs/z8l4ZOaQ==
- dependencies:
- decompress-tar "^4.0.0"
- decompress-tarbz2 "^4.0.0"
- decompress-targz "^4.0.0"
- decompress-unzip "^4.0.1"
- graceful-fs "^4.1.10"
- make-dir "^1.0.0"
- pify "^2.3.0"
- strip-dirs "^2.0.0"
-
dedent@^0.7.0:
version "0.7.0"
resolved "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz"
@@ -3741,11 +3487,6 @@ defaults@^1.0.3:
dependencies:
clone "^1.0.2"
-defer-to-connect@^2.0.0:
- version "2.0.1"
- resolved "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz"
- integrity sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==
-
define-lazy-prop@^2.0.0:
version "2.0.0"
resolved "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz"
@@ -3895,40 +3636,6 @@ dot-prop@^5.1.0:
dependencies:
is-obj "^2.0.0"
-download@^6.2.2:
- version "6.2.5"
- resolved "https://registry.npmjs.org/download/-/download-6.2.5.tgz"
- integrity sha512-DpO9K1sXAST8Cpzb7kmEhogJxymyVUd5qz/vCOSyvwtp2Klj2XcDt5YUuasgxka44SxF0q5RriKIwJmQHG2AuA==
- dependencies:
- caw "^2.0.0"
- content-disposition "^0.5.2"
- decompress "^4.0.0"
- ext-name "^5.0.0"
- file-type "5.2.0"
- filenamify "^2.0.0"
- get-stream "^3.0.0"
- got "^7.0.0"
- make-dir "^1.0.0"
- p-event "^1.0.0"
- pify "^3.0.0"
-
-download@^8.0.0:
- version "8.0.0"
- resolved "https://registry.npmjs.org/download/-/download-8.0.0.tgz"
- integrity sha512-ASRY5QhDk7FK+XrQtQyvhpDKanLluEEQtWl/J7Lxuf/b+i8RYh997QeXvL85xitrmRKVlx9c7eTrcRdq2GS4eA==
- dependencies:
- archive-type "^4.0.0"
- content-disposition "^0.5.2"
- decompress "^4.2.1"
- ext-name "^5.0.0"
- file-type "^11.1.0"
- filenamify "^3.0.0"
- get-stream "^4.1.0"
- got "^8.3.1"
- make-dir "^2.1.0"
- p-event "^2.1.0"
- pify "^4.0.1"
-
duplexer2@~0.1.0:
version "0.1.4"
resolved "https://registry.npmjs.org/duplexer2/-/duplexer2-0.1.4.tgz"
@@ -3936,24 +3643,11 @@ duplexer2@~0.1.0:
dependencies:
readable-stream "^2.0.2"
-duplexer3@^0.1.4:
- version "0.1.4"
- resolved "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz"
- integrity sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=
-
duplexer@^0.1.1:
version "0.1.2"
resolved "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz"
integrity sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==
-ecc-jsbn@~0.1.1:
- version "0.1.2"
- resolved "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz"
- integrity sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=
- dependencies:
- jsbn "~0.1.0"
- safer-buffer "^2.1.0"
-
ee-first@1.1.1:
version "1.1.1"
resolved "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz"
@@ -3993,7 +3687,7 @@ encoding@^0.1.12, encoding@^0.1.13:
dependencies:
iconv-lite "^0.6.2"
-end-of-stream@^1.0.0, end-of-stream@^1.1.0, end-of-stream@^1.4.1:
+end-of-stream@^1.1.0, end-of-stream@^1.4.1:
version "1.4.4"
resolved "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz"
integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==
@@ -4098,11 +3792,6 @@ escape-string-regexp@^2.0.0:
resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz"
integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==
-escape-string-regexp@^3.0.0:
- version "3.0.0"
- resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-3.0.0.tgz"
- integrity sha512-11dXIUC3umvzEViLP117d0KN6LJzZxh5+9F4E/7WLAAw7GrHk8NpUR+g9iJi/pe9C0py4F8rs0hreyRCwlAuZg==
-
escodegen@^1.8.1:
version "1.14.3"
resolved "https://registry.npmjs.org/escodegen/-/escodegen-1.14.3.tgz"
@@ -4344,19 +4033,6 @@ execa@^0.10.0:
signal-exit "^3.0.0"
strip-eof "^1.0.0"
-execa@^0.7.0:
- version "0.7.0"
- resolved "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz"
- integrity sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c=
- dependencies:
- cross-spawn "^5.0.1"
- get-stream "^3.0.0"
- is-stream "^1.1.0"
- npm-run-path "^2.0.0"
- p-finally "^1.0.0"
- signal-exit "^3.0.0"
- strip-eof "^1.0.0"
-
execa@^4.1.0:
version "4.1.0"
resolved "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz"
@@ -4465,21 +4141,6 @@ express@^4.16.2, express@^4.17.1:
utils-merge "1.0.1"
vary "~1.1.2"
-ext-list@^2.0.0:
- version "2.2.2"
- resolved "https://registry.npmjs.org/ext-list/-/ext-list-2.2.2.tgz"
- integrity sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==
- dependencies:
- mime-db "^1.28.0"
-
-ext-name@^5.0.0:
- version "5.0.0"
- resolved "https://registry.npmjs.org/ext-name/-/ext-name-5.0.0.tgz"
- integrity sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==
- dependencies:
- ext-list "^2.0.0"
- sort-keys-length "^1.0.0"
-
extend-shallow@^2.0.1:
version "2.0.1"
resolved "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz"
@@ -4495,11 +4156,6 @@ extend-shallow@^3.0.0, extend-shallow@^3.0.2:
assign-symbols "^1.0.0"
is-extendable "^1.0.1"
-extend@~3.0.2:
- version "3.0.2"
- resolved "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz"
- integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==
-
external-editor@^3.0.3:
version "3.1.0"
resolved "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz"
@@ -4530,11 +4186,6 @@ extglob@^2.0.4:
snapdragon "^0.8.1"
to-regex "^3.0.1"
-extsprintf@1.3.0, extsprintf@^1.2.0:
- version "1.3.0"
- resolved "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz"
- integrity sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=
-
fancy-test@^2.0.0:
version "2.0.0"
resolved "https://registry.npmjs.org/fancy-test/-/fancy-test-2.0.0.tgz"
@@ -4606,13 +4257,6 @@ fb-watchman@^2.0.0:
dependencies:
bser "2.1.1"
-fd-slicer@~1.1.0:
- version "1.1.0"
- resolved "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz"
- integrity sha1-JcfInLH5B3+IkbvmHY85Dq4lbx4=
- dependencies:
- pend "~1.2.0"
-
figures@^2.0.0:
version "2.0.0"
resolved "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz"
@@ -4634,31 +4278,6 @@ file-entry-cache@^6.0.1:
dependencies:
flat-cache "^3.0.4"
-file-type@5.2.0, file-type@^5.2.0:
- version "5.2.0"
- resolved "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz"
- integrity sha1-LdvqfHP/42No365J3DOMBYwritY=
-
-file-type@^11.1.0:
- version "11.1.0"
- resolved "https://registry.npmjs.org/file-type/-/file-type-11.1.0.tgz"
- integrity sha512-rM0UO7Qm9K7TWTtA6AShI/t7H5BPjDeGVDaNyg9BjHAj3PysKy7+8C8D137R88jnR3rFJZQB/tFgydl5sN5m7g==
-
-file-type@^3.8.0:
- version "3.9.0"
- resolved "https://registry.npmjs.org/file-type/-/file-type-3.9.0.tgz"
- integrity sha1-JXoHg4TR24CHvESdEH1SpSZyuek=
-
-file-type@^4.2.0:
- version "4.4.0"
- resolved "https://registry.npmjs.org/file-type/-/file-type-4.4.0.tgz"
- integrity sha1-G2AOX8ofvcboDApwxxyNul95BsU=
-
-file-type@^6.1.0:
- version "6.2.0"
- resolved "https://registry.npmjs.org/file-type/-/file-type-6.2.0.tgz"
- integrity sha512-YPcTBDV+2Tm0VqjybVd32MHdlEGAtuxS3VAYsumFokDSMG+ROT5wawGlnHDoz7bfMcMDt9hxuXvXwoKUx2fkOg==
-
file-uri-to-path@1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd"
@@ -4676,29 +4295,6 @@ filename-regex@^2.0.0:
resolved "https://registry.npmjs.org/filename-regex/-/filename-regex-2.0.1.tgz"
integrity sha1-wcS5vuPglyXdsQa3XB4wH+LxiyY=
-filename-reserved-regex@^2.0.0:
- version "2.0.0"
- resolved "https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz"
- integrity sha1-q/c9+rc10EVECr/qLZHzieu/oik=
-
-filenamify@^2.0.0:
- version "2.1.0"
- resolved "https://registry.npmjs.org/filenamify/-/filenamify-2.1.0.tgz"
- integrity sha512-ICw7NTT6RsDp2rnYKVd8Fu4cr6ITzGy3+u4vUujPkabyaz+03F24NWEX7fs5fp+kBonlaqPH8fAO2NM+SXt/JA==
- dependencies:
- filename-reserved-regex "^2.0.0"
- strip-outer "^1.0.0"
- trim-repeated "^1.0.0"
-
-filenamify@^3.0.0:
- version "3.0.0"
- resolved "https://registry.npmjs.org/filenamify/-/filenamify-3.0.0.tgz"
- integrity sha512-5EFZ//MsvJgXjBAFJ+Bh2YaCTRF/VP1YOmGrgt+KJ4SFRLjI87EIdwLLuT6wQX0I4F9W41xutobzczjsOKlI/g==
- dependencies:
- filename-reserved-regex "^2.0.0"
- strip-outer "^1.0.0"
- trim-repeated "^1.0.0"
-
fill-range@^2.1.0:
version "2.2.4"
resolved "https://registry.npmjs.org/fill-range/-/fill-range-2.2.4.tgz"
@@ -4727,11 +4323,6 @@ fill-range@^7.0.1:
dependencies:
to-regex-range "^5.0.1"
-filter-obj@^1.1.0:
- version "1.1.0"
- resolved "https://registry.npmjs.org/filter-obj/-/filter-obj-1.1.0.tgz"
- integrity sha1-mzERErxsYSehbgFsbF1/GeCAXFs=
-
finalhandler@~1.1.2:
version "1.1.2"
resolved "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz"
@@ -4837,11 +4428,6 @@ foreach@^2.0.5:
resolved "https://registry.npmjs.org/foreach/-/foreach-2.0.5.tgz"
integrity sha1-C+4AUBiusmDQo6865ljdATbsG5k=
-forever-agent@~0.6.1:
- version "0.6.1"
- resolved "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz"
- integrity sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=
-
form-data@^3.0.0:
version "3.0.1"
resolved "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz"
@@ -4851,15 +4437,6 @@ form-data@^3.0.0:
combined-stream "^1.0.8"
mime-types "^2.1.12"
-form-data@~2.3.2:
- version "2.3.3"
- resolved "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz"
- integrity sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==
- dependencies:
- asynckit "^0.4.0"
- combined-stream "^1.0.6"
- mime-types "^2.1.12"
-
forwarded@0.2.0:
version "0.2.0"
resolved "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz"
@@ -4877,7 +4454,7 @@ fresh@0.5.2:
resolved "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz"
integrity sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=
-from2@^2.1.1, from2@^2.3.0:
+from2@^2.3.0:
version "2.3.0"
resolved "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz"
integrity sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=
@@ -4997,20 +4574,6 @@ gauge@^4.0.0:
strip-ansi "^6.0.1"
wide-align "^1.1.2"
-gauge@~2.7.3:
- version "2.7.4"
- resolved "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz"
- integrity sha1-LANAXHU4w51+s3sxcCLjJfsBi/c=
- dependencies:
- aproba "^1.0.3"
- console-control-strings "^1.0.0"
- has-unicode "^2.0.0"
- object-assign "^4.1.0"
- signal-exit "^3.0.0"
- string-width "^1.0.1"
- strip-ansi "^3.0.1"
- wide-align "^1.1.0"
-
gensync@^1.0.0-beta.2:
version "1.0.0-beta.2"
resolved "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz"
@@ -5045,13 +4608,6 @@ get-package-type@^0.1.0:
resolved "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz"
integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==
-get-proxy@^2.0.0:
- version "2.1.0"
- resolved "https://registry.npmjs.org/get-proxy/-/get-proxy-2.1.0.tgz"
- integrity sha512-zmZIaQTWnNQb4R4fJUEp/FC51eZsc6EkErspy3xtIYStaq8EB/hDIWipxsal+E8rz0qD7f2sL/NA9Xee4RInJw==
- dependencies:
- npm-conf "^1.1.0"
-
get-stdin@^4.0.1:
version "4.0.1"
resolved "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz"
@@ -5062,26 +4618,11 @@ get-stdin@^6.0.0:
resolved "https://registry.npmjs.org/get-stdin/-/get-stdin-6.0.0.tgz"
integrity sha512-jp4tHawyV7+fkkSKyvjuLZswblUtz+SQKzSWnBbii16BuZksJlU1wuBYXY75r+duh/llF1ur6oNwi+2ZzjKZ7g==
-get-stream@3.0.0, get-stream@^3.0.0:
+get-stream@^3.0.0:
version "3.0.0"
resolved "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz"
integrity sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=
-get-stream@^2.2.0:
- version "2.3.1"
- resolved "https://registry.npmjs.org/get-stream/-/get-stream-2.3.1.tgz"
- integrity sha1-Xzj5PzRgCWZu4BUKBUFn+Rvdld4=
- dependencies:
- object-assign "^4.0.1"
- pinkie-promise "^2.0.0"
-
-get-stream@^4.1.0:
- version "4.1.0"
- resolved "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz"
- integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==
- dependencies:
- pump "^3.0.0"
-
get-stream@^5.0.0, get-stream@^5.1.0:
version "5.2.0"
resolved "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz"
@@ -5107,13 +4648,6 @@ get-value@^2.0.3, get-value@^2.0.6:
resolved "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz"
integrity sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=
-getpass@^0.1.1:
- version "0.1.7"
- resolved "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz"
- integrity sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=
- dependencies:
- assert-plus "^1.0.0"
-
git-log-parser@^1.2.0:
version "1.2.0"
resolved "https://registry.npmjs.org/git-log-parser/-/git-log-parser-1.2.0.tgz"
@@ -5229,75 +4763,16 @@ globby@^11.0.0, globby@^11.0.1, globby@^11.0.3, globby@^11.1.0:
merge2 "^1.4.1"
slash "^3.0.0"
-got@^10.5.2:
- version "10.7.0"
- resolved "https://registry.npmjs.org/got/-/got-10.7.0.tgz"
- integrity sha512-aWTDeNw9g+XqEZNcTjMMZSy7B7yE9toWOFYip7ofFTLleJhvZwUxxTxkTpKvF+p1SAA4VHmuEy7PiHTHyq8tJg==
- dependencies:
- "@sindresorhus/is" "^2.0.0"
- "@szmarczak/http-timer" "^4.0.0"
- "@types/cacheable-request" "^6.0.1"
- cacheable-lookup "^2.0.0"
- cacheable-request "^7.0.1"
- decompress-response "^5.0.0"
- duplexer3 "^0.1.4"
- get-stream "^5.0.0"
- lowercase-keys "^2.0.0"
- mimic-response "^2.1.0"
- p-cancelable "^2.0.0"
- p-event "^4.0.0"
- responselike "^2.0.0"
- to-readable-stream "^2.0.0"
- type-fest "^0.10.0"
-
-got@^7.0.0:
- version "7.1.0"
- resolved "https://registry.npmjs.org/got/-/got-7.1.0.tgz"
- integrity sha512-Y5WMo7xKKq1muPsxD+KmrR8DH5auG7fBdDVueZwETwV6VytKyU9OX/ddpq2/1hp1vIPvVb4T81dKQz3BivkNLw==
- dependencies:
- decompress-response "^3.2.0"
- duplexer3 "^0.1.4"
- get-stream "^3.0.0"
- is-plain-obj "^1.1.0"
- is-retry-allowed "^1.0.0"
- is-stream "^1.0.0"
- isurl "^1.0.0-alpha5"
- lowercase-keys "^1.0.0"
- p-cancelable "^0.3.0"
- p-timeout "^1.1.1"
- safe-buffer "^5.0.1"
- timed-out "^4.0.0"
- url-parse-lax "^1.0.0"
- url-to-options "^1.0.1"
-
-got@^8.3.1:
- version "8.3.2"
- resolved "https://registry.npmjs.org/got/-/got-8.3.2.tgz"
- integrity sha512-qjUJ5U/hawxosMryILofZCkm3C84PLJS/0grRIpjAwu+Lkxxj5cxeCU25BG0/3mDSpXKTyZr8oh8wIgLaH0QCw==
- dependencies:
- "@sindresorhus/is" "^0.7.0"
- cacheable-request "^2.1.1"
- decompress-response "^3.3.0"
- duplexer3 "^0.1.4"
- get-stream "^3.0.0"
- into-stream "^3.1.0"
- is-retry-allowed "^1.1.0"
- isurl "^1.0.0-alpha5"
- lowercase-keys "^1.0.0"
- mimic-response "^1.0.0"
- p-cancelable "^0.4.0"
- p-timeout "^2.0.1"
- pify "^3.0.0"
- safe-buffer "^5.1.1"
- timed-out "^4.0.1"
- url-parse-lax "^3.0.0"
- url-to-options "^1.0.1"
-
-graceful-fs@^4.1.10, graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.5, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.3, graceful-fs@^4.2.4, graceful-fs@^4.2.6, graceful-fs@^4.2.8:
+graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.5, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.4, graceful-fs@^4.2.6, graceful-fs@^4.2.8:
version "4.2.9"
resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.9.tgz"
integrity sha512-NtNxqUcXgpW2iMrfqSfR73Glt39K+BLwWsPs94yR63v45T0Wbej7eRmL5cWfwEgqXnmjQp3zaJTshdRW/qC2ZQ==
+graceful-fs@^4.2.9:
+ version "4.2.10"
+ resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c"
+ integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==
+
graphql-playground-html@^1.6.30:
version "1.6.30"
resolved "https://registry.npmjs.org/graphql-playground-html/-/graphql-playground-html-1.6.30.tgz"
@@ -5349,9 +4824,9 @@ grouped-queue@^2.0.0:
resolved "https://registry.npmjs.org/grouped-queue/-/grouped-queue-2.0.0.tgz"
integrity sha512-/PiFUa7WIsl48dUeCvhIHnwNmAAzlI/eHoJl0vu3nsFA366JleY7Ff8EVTplZu5kO0MIdZjKTTnzItL61ahbnw==
-handlebars@^4.7.6:
+handlebars@^4.7.7:
version "4.7.7"
- resolved "https://registry.npmjs.org/handlebars/-/handlebars-4.7.7.tgz"
+ resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.7.tgz#9ce33416aad02dbd6c8fafa8240d5d98004945a1"
integrity sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==
dependencies:
minimist "^1.2.5"
@@ -5361,19 +4836,6 @@ handlebars@^4.7.6:
optionalDependencies:
uglify-js "^3.1.4"
-har-schema@^2.0.0:
- version "2.0.0"
- resolved "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz"
- integrity sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=
-
-har-validator@~5.1.3:
- version "5.1.5"
- resolved "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz"
- integrity sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==
- dependencies:
- ajv "^6.12.3"
- har-schema "^2.0.0"
-
hard-rejection@^2.1.0:
version "2.1.0"
resolved "https://registry.npmjs.org/hard-rejection/-/hard-rejection-2.1.0.tgz"
@@ -5401,23 +4863,11 @@ has-flag@^4.0.0:
resolved "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz"
integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
-has-symbol-support-x@^1.4.1:
- version "1.4.2"
- resolved "https://registry.npmjs.org/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz"
- integrity sha512-3ToOva++HaW+eCpgqZrCfN51IPB+7bJNVT6CUATzueB5Heb8o6Nam0V3HG5dlDvZU1Gn5QLcbahiKw/XVk5JJw==
-
has-symbols@^1.0.1, has-symbols@^1.0.2:
version "1.0.2"
resolved "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz"
integrity sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==
-has-to-string-tag-x@^1.2.0:
- version "1.4.1"
- resolved "https://registry.npmjs.org/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz"
- integrity sha512-vdbKfmw+3LoOYVr+mtxHaX5a96+0f3DljYd8JOqvOLsf5mw2Otda2qCDT9qRqLAhrjyQ0h7ual5nOiASpsGNFw==
- dependencies:
- has-symbol-support-x "^1.4.1"
-
has-tostringtag@^1.0.0:
version "1.0.0"
resolved "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz"
@@ -5425,7 +4875,7 @@ has-tostringtag@^1.0.0:
dependencies:
has-symbols "^1.0.2"
-has-unicode@^2.0.0, has-unicode@^2.0.1:
+has-unicode@^2.0.1:
version "2.0.1"
resolved "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz"
integrity sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=
@@ -5485,13 +4935,20 @@ hosted-git-info@^2.1.4:
resolved "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz"
integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==
-hosted-git-info@^4.0.0, hosted-git-info@^4.0.1, hosted-git-info@^4.0.2, hosted-git-info@^4.1.0:
+hosted-git-info@^4.0.0, hosted-git-info@^4.0.1, hosted-git-info@^4.1.0:
version "4.1.0"
resolved "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz"
integrity sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==
dependencies:
lru-cache "^6.0.0"
+hosted-git-info@^5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-5.0.0.tgz#df7a06678b4ebd722139786303db80fdf302ea56"
+ integrity sha512-rRnjWu0Bxj+nIfUOkz0695C0H6tRrN5iYIzYejb0tDEefe2AekHu/U5Kn9pEie5vsJqpNQU02az7TGSH3qpz4Q==
+ dependencies:
+ lru-cache "^7.5.1"
+
html-encoding-sniffer@^2.0.1:
version "2.0.1"
resolved "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz"
@@ -5504,12 +4961,7 @@ html-escaper@^2.0.0:
resolved "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz"
integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==
-http-cache-semantics@3.8.1:
- version "3.8.1"
- resolved "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz"
- integrity sha512-5ai2iksyV8ZXmnZhHH4rWPoxxistEexSi5936zIQ1bnNTW5VnA85B6P/VpXiRM017IgRvb2kKo1a//y+0wSp3w==
-
-http-cache-semantics@^4.0.0, http-cache-semantics@^4.1.0:
+http-cache-semantics@^4.1.0:
version "4.1.0"
resolved "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz"
integrity sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==
@@ -5537,7 +4989,7 @@ http-errors@1.8.1:
statuses ">= 1.5.0 < 2"
toidentifier "1.0.1"
-http-proxy-agent@^4.0.0, http-proxy-agent@^4.0.1:
+http-proxy-agent@^4.0.1:
version "4.0.1"
resolved "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz"
integrity sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==
@@ -5555,15 +5007,6 @@ http-proxy-agent@^5.0.0:
agent-base "6"
debug "4"
-http-signature@~1.2.0:
- version "1.2.0"
- resolved "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz"
- integrity sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=
- dependencies:
- assert-plus "^1.0.0"
- jsprim "^1.2.2"
- sshpk "^1.7.0"
-
https-proxy-agent@^5.0.0:
version "5.0.0"
resolved "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz"
@@ -5634,13 +5077,6 @@ ieee754@^1.1.13, ieee754@^1.1.4:
resolved "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz"
integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==
-ignore-walk@^3.0.3:
- version "3.0.4"
- resolved "https://registry.npmjs.org/ignore-walk/-/ignore-walk-3.0.4.tgz"
- integrity sha512-PY6Ii8o1jMRA1z4F2hRkH/xN59ox43DavKvD3oDpfurRlOJyAHpifIwpbdv1n4jt4ov0jSpw3kQ4GhJnpBL6WQ==
- dependencies:
- minimatch "^3.0.4"
-
ignore-walk@^4.0.1:
version "4.0.1"
resolved "https://registry.npmjs.org/ignore-walk/-/ignore-walk-4.0.1.tgz"
@@ -5666,12 +5102,10 @@ import-fresh@^3.0.0, import-fresh@^3.2.1:
parent-module "^1.0.0"
resolve-from "^4.0.0"
-import-from@^3.0.0:
- version "3.0.0"
- resolved "https://registry.npmjs.org/import-from/-/import-from-3.0.0.tgz"
- integrity sha512-CiuXOFFSzkU5x/CR0+z7T91Iht4CXgfCxVOFRhh2Zyhg5wOpWvvDLQUsWl+gcN+QscYBjez8hDCt85O7RLDttQ==
- dependencies:
- resolve-from "^5.0.0"
+import-from@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/import-from/-/import-from-4.0.0.tgz#2710b8d66817d232e16f4166e319248d3d5492e2"
+ integrity sha512-P9J71vT5nLlDeV8FHs5nNxaLbrpfAV5cF5srvbZfpwpcJoM/xZR3hiv+q+SAnuSmuGbXMWud063iIMx/V/EWZQ==
import-local@^3.0.2:
version "3.1.0"
@@ -5709,16 +5143,21 @@ inherits@2, inherits@2.0.4, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, i
resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz"
integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
-ini@^1.3.4, ini@~1.3.0:
- version "1.3.8"
- resolved "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz"
- integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==
-
ini@^2.0.0:
version "2.0.0"
resolved "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz"
integrity sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==
+ini@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/ini/-/ini-3.0.0.tgz#2f6de95006923aa75feed8894f5686165adc08f1"
+ integrity sha512-TxYQaeNW/N8ymDvwAxPyRbhMBtnEwuvaTYpOQkFx1nSeusgezHniEc/l35Vo4iCq/mMiTJbpD7oYxN98hFlfmw==
+
+ini@~1.3.0:
+ version "1.3.8"
+ resolved "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz"
+ integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==
+
init-package-json@^2.0.5:
version "2.0.5"
resolved "https://registry.npmjs.org/init-package-json/-/init-package-json-2.0.5.tgz"
@@ -5732,6 +5171,19 @@ init-package-json@^2.0.5:
validate-npm-package-license "^3.0.4"
validate-npm-package-name "^3.0.0"
+init-package-json@^3.0.2:
+ version "3.0.2"
+ resolved "https://registry.yarnpkg.com/init-package-json/-/init-package-json-3.0.2.tgz#f5bc9bac93f2bdc005778bc2271be642fecfcd69"
+ integrity sha512-YhlQPEjNFqlGdzrBfDNRLhvoSgX7iQRgSxgsNknRQ9ITXFT7UMfVMWhBTOh2Y+25lRnGrv5Xz8yZwQ3ACR6T3A==
+ dependencies:
+ npm-package-arg "^9.0.1"
+ promzard "^0.3.0"
+ read "^1.0.7"
+ read-package-json "^5.0.0"
+ semver "^7.3.5"
+ validate-npm-package-license "^3.0.4"
+ validate-npm-package-name "^4.0.0"
+
inquirer@^8.0.0, inquirer@^8.1.1, inquirer@^8.1.2:
version "8.2.0"
resolved "https://registry.npmjs.org/inquirer/-/inquirer-8.2.0.tgz"
@@ -5766,14 +5218,6 @@ interpret@^1.0.0:
resolved "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz"
integrity sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==
-into-stream@^3.1.0:
- version "3.1.0"
- resolved "https://registry.npmjs.org/into-stream/-/into-stream-3.1.0.tgz"
- integrity sha1-lvsKk2wSur1v8XUqF9BWFqvQlMY=
- dependencies:
- from2 "^2.1.1"
- p-is-promise "^1.1.0"
-
into-stream@^6.0.0:
version "6.0.0"
resolved "https://registry.npmjs.org/into-stream/-/into-stream-6.0.0.tgz"
@@ -6003,23 +5447,11 @@ is-interactive@^1.0.0:
resolved "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz"
integrity sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==
-is-invalid-path@^0.1.0:
- version "0.1.0"
- resolved "https://registry.npmjs.org/is-invalid-path/-/is-invalid-path-0.1.0.tgz"
- integrity sha1-MHqFWzzxqTi0TqcNLGEQYFNxTzQ=
- dependencies:
- is-glob "^2.0.0"
-
is-lambda@^1.0.1:
version "1.0.1"
resolved "https://registry.npmjs.org/is-lambda/-/is-lambda-1.0.1.tgz"
integrity sha1-PZh3iZ5qU+/AFgUEzeFfgubwYdU=
-is-natural-number@^4.0.1:
- version "4.0.1"
- resolved "https://registry.npmjs.org/is-natural-number/-/is-natural-number-4.0.1.tgz"
- integrity sha1-q5124dtM7VHjXeDHLr7PCfc0zeg=
-
is-negative-zero@^2.0.1:
version "2.0.2"
resolved "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz"
@@ -6066,11 +5498,6 @@ is-obj@^2.0.0:
resolved "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz"
integrity sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==
-is-object@^1.0.1:
- version "1.0.2"
- resolved "https://registry.npmjs.org/is-object/-/is-object-1.0.2.tgz"
- integrity sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA==
-
is-path-cwd@^2.2.0:
version "2.2.0"
resolved "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz"
@@ -6081,7 +5508,7 @@ is-path-inside@^3.0.2:
resolved "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz"
integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==
-is-plain-obj@^1.0.0, is-plain-obj@^1.1.0:
+is-plain-obj@^1.1.0:
version "1.1.0"
resolved "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz"
integrity sha1-caUMhCnfync8kqOQpKA7OfzVHT4=
@@ -6131,7 +5558,7 @@ is-regexp@^1.0.0:
resolved "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz"
integrity sha1-/S2INUXEa6xaYz57mgnof6LLUGk=
-is-retry-allowed@^1.0.0, is-retry-allowed@^1.1.0:
+is-retry-allowed@^1.1.0:
version "1.2.0"
resolved "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz"
integrity sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==
@@ -6148,14 +5575,7 @@ is-shared-array-buffer@^1.0.1:
resolved "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.1.tgz"
integrity sha512-IU0NmyknYZN0rChcKhRO1X8LYz5Isj/Fsqh8NJOSf+N/hCOTwy29F32Ik7a+QszE63IdvmwdTPDd6cZ5pg4cwA==
-is-ssh@^1.3.0:
- version "1.3.3"
- resolved "https://registry.npmjs.org/is-ssh/-/is-ssh-1.3.3.tgz"
- integrity sha512-NKzJmQzJfEEma3w5cJNcUMxoXfDjz0Zj0eyCalHn2E6VOwlzjZo0yuO2fcBSf8zhFuVCL/82/r5gRcoi6aEPVQ==
- dependencies:
- protocols "^1.1.0"
-
-is-stream@^1.0.0, is-stream@^1.1.0:
+is-stream@^1.1.0:
version "1.1.0"
resolved "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz"
integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ=
@@ -6197,7 +5617,7 @@ is-typed-array@^1.1.3, is-typed-array@^1.1.7:
foreach "^2.0.5"
has-tostringtag "^1.0.0"
-is-typedarray@^1.0.0, is-typedarray@~1.0.0:
+is-typedarray@^1.0.0:
version "1.0.0"
resolved "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz"
integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=
@@ -6212,13 +5632,6 @@ is-utf8@^0.2.0, is-utf8@^0.2.1:
resolved "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz"
integrity sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=
-is-valid-path@^0.1.1:
- version "0.1.1"
- resolved "https://registry.npmjs.org/is-valid-path/-/is-valid-path-0.1.1.tgz"
- integrity sha1-EQ+f90w39mPh7HkV60UfLbk6yd8=
- dependencies:
- is-invalid-path "^0.1.0"
-
is-weakref@^1.0.1:
version "1.0.2"
resolved "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz"
@@ -6265,11 +5678,6 @@ isobject@^3.0.0, isobject@^3.0.1:
resolved "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz"
integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8=
-isstream@~0.1.2:
- version "0.1.2"
- resolved "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz"
- integrity sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=
-
issue-parser@^6.0.0:
version "6.0.0"
resolved "https://registry.npmjs.org/issue-parser/-/issue-parser-6.0.0.tgz"
@@ -6323,14 +5731,6 @@ istanbul-reports@^3.1.3:
html-escaper "^2.0.0"
istanbul-lib-report "^3.0.0"
-isurl@^1.0.0-alpha5:
- version "1.0.0"
- resolved "https://registry.npmjs.org/isurl/-/isurl-1.0.0.tgz"
- integrity sha512-1P/yWsxPlDtn7QeRD+ULKQPaIaN6yF368GZ2vDfv0AL0NwpStafjWCDDdn0k8wgFMWpVAqG7oJhxHnlud42i9w==
- dependencies:
- has-to-string-tag-x "^1.2.0"
- is-object "^1.0.1"
-
iterall@^1.2.1:
version "1.3.0"
resolved "https://registry.npmjs.org/iterall/-/iterall-1.3.0.tgz"
@@ -6760,17 +6160,6 @@ jmespath@0.16.0:
resolved "https://registry.npmjs.org/jmespath/-/jmespath-0.16.0.tgz"
integrity sha512-9FzQjJ7MATs1tSpnco1K6ayiYE3figslrXA72G2HQ/n76RzvYlofyi5QM+iX4YRs/pu3yzxlVQSST23+dMDknw==
-joi@^17.4.0:
- version "17.6.0"
- resolved "https://registry.npmjs.org/joi/-/joi-17.6.0.tgz"
- integrity sha512-OX5dG6DTbcr/kbMFj0KGYxuew69HPcAE3K/sZpEV2nP6e/j/C0HV+HNiBPCASxdx5T7DMoa0s8UeHWMnb6n2zw==
- dependencies:
- "@hapi/hoek" "^9.0.0"
- "@hapi/topo" "^5.0.0"
- "@sideway/address" "^4.1.3"
- "@sideway/formula" "^3.0.0"
- "@sideway/pinpoint" "^2.0.0"
-
"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0:
version "4.0.0"
resolved "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz"
@@ -6784,11 +6173,6 @@ js-yaml@^3.13.0, js-yaml@^3.13.1, js-yaml@^3.14.1:
argparse "^1.0.7"
esprima "^4.0.0"
-jsbn@~0.1.0:
- version "0.1.1"
- resolved "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz"
- integrity sha1-peZUwuWi3rXyAdls77yoDA7y9RM=
-
jsdom@^16.6.0:
version "16.7.0"
resolved "https://registry.npmjs.org/jsdom/-/jsdom-16.7.0.tgz"
@@ -6827,16 +6211,6 @@ jsesc@^2.5.1:
resolved "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz"
integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==
-json-buffer@3.0.0:
- version "3.0.0"
- resolved "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz"
- integrity sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg=
-
-json-buffer@3.0.1:
- version "3.0.1"
- resolved "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz"
- integrity sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==
-
json-parse-better-errors@^1.0.1:
version "1.0.2"
resolved "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz"
@@ -6857,11 +6231,6 @@ json-schema-traverse@^1.0.0:
resolved "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz"
integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==
-json-schema@0.4.0:
- version "0.4.0"
- resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.4.0.tgz#f7de4cf6efab838ebaeb3236474cbba5a1930ab5"
- integrity sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==
-
json-stable-stringify-without-jsonify@^1.0.1:
version "1.0.1"
resolved "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz"
@@ -6872,7 +6241,7 @@ json-stringify-nice@^1.1.4:
resolved "https://registry.npmjs.org/json-stringify-nice/-/json-stringify-nice-1.1.4.tgz"
integrity sha512-5Z5RFW63yxReJ7vANgW6eZFGWaQvnPE3WNmZoOJrSkGju2etKA2L5rrOa1sm877TVTFt57A80BH1bArcmlLfPw==
-json-stringify-safe@^5.0.1, json-stringify-safe@~5.0.1:
+json-stringify-safe@^5.0.1:
version "5.0.1"
resolved "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz"
integrity sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=
@@ -6921,50 +6290,21 @@ jsonpath@^1.1.1:
static-eval "2.0.2"
underscore "1.12.1"
-jsprim@^1.2.2:
- version "1.4.2"
- resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.2.tgz#712c65533a15c878ba59e9ed5f0e26d5b77c5feb"
- integrity sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==
- dependencies:
- assert-plus "1.0.0"
- extsprintf "1.3.0"
- json-schema "0.4.0"
- verror "1.10.0"
-
-just-diff-apply@^3.0.0:
- version "3.1.2"
- resolved "https://registry.yarnpkg.com/just-diff-apply/-/just-diff-apply-3.1.2.tgz#710d8cda00c65dc4e692df50dbe9bac5581c2193"
- integrity sha512-TCa7ZdxCeq6q3Rgms2JCRHTCfWAETPZ8SzYUbkYF6KR3I03sN29DaOIC+xyWboIcMvjAsD5iG2u/RWzHD8XpgQ==
-
just-diff-apply@^4.0.1:
version "4.0.1"
resolved "https://registry.npmjs.org/just-diff-apply/-/just-diff-apply-4.0.1.tgz"
integrity sha512-AKOkzB5P6FkfP21UlZVX/OPXx/sC2GagpLX9cBxqHqDuRjwmZ/AJRKSNrB9jHPpRW1W1ONs6gly1gW46t055nQ==
-just-diff@^3.0.1:
- version "3.1.1"
- resolved "https://registry.npmjs.org/just-diff/-/just-diff-3.1.1.tgz"
- integrity sha512-sdMWKjRq8qWZEjDcVA6llnUT8RDEBIfOiGpYFPYa9u+2c39JCsejktSP7mj5eRid5EIvTzIpQ2kDOCw1Nq9BjQ==
+just-diff-apply@^5.2.0:
+ version "5.2.0"
+ resolved "https://registry.yarnpkg.com/just-diff-apply/-/just-diff-apply-5.2.0.tgz#15da3888ab3acecc14ce9a067f2d7589c653cb89"
+ integrity sha512-unjtin7rnng0KUpE4RPWwTl8iwWiZuyZqOQ+vm8orV6aIXX8mHN8zlKCPPbOycfDNuLh2PBazbFhNoDJv4S/FA==
just-diff@^5.0.1:
version "5.0.1"
resolved "https://registry.npmjs.org/just-diff/-/just-diff-5.0.1.tgz"
integrity sha512-X00TokkRIDotUIf3EV4xUm6ELc/IkqhS/vPSHdWnsM5y0HoNMfEqrazizI7g78lpHvnRSRt/PFfKtRqJCOGIuQ==
-keyv@3.0.0:
- version "3.0.0"
- resolved "https://registry.npmjs.org/keyv/-/keyv-3.0.0.tgz"
- integrity sha512-eguHnq22OE3uVoSYG0LVWNP+4ppamWr9+zWBe1bsNcovIMy6huUJFPgy4mGwCd/rnl3vOLGW1MTlu4c57CT1xA==
- dependencies:
- json-buffer "3.0.0"
-
-keyv@^4.0.0:
- version "4.0.5"
- resolved "https://registry.npmjs.org/keyv/-/keyv-4.0.5.tgz"
- integrity sha512-531pkGLqV3BMg0eDqqJFI0R1mkK1Nm5xIP2mM6keP5P8WfFtCkg2IOwplTUmlGoTgIg9yQYZ/kdihhz89XH3vA==
- dependencies:
- json-buffer "3.0.1"
-
kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0:
version "3.2.2"
resolved "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz"
@@ -7015,16 +6355,6 @@ levn@~0.3.0:
prelude-ls "~1.1.2"
type-check "~0.3.2"
-libnpmaccess@^4.0.2:
- version "4.0.3"
- resolved "https://registry.npmjs.org/libnpmaccess/-/libnpmaccess-4.0.3.tgz"
- integrity sha512-sPeTSNImksm8O2b6/pf3ikv4N567ERYEpeKRPSmqlNt1dTZbvgpJIzg5vAhXHpw2ISBsELFRelk0jEahj1c6nQ==
- dependencies:
- aproba "^2.0.0"
- minipass "^3.1.1"
- npm-package-arg "^8.1.2"
- npm-registry-fetch "^11.0.0"
-
libnpmaccess@^5.0.0:
version "5.0.1"
resolved "https://registry.yarnpkg.com/libnpmaccess/-/libnpmaccess-5.0.1.tgz#c0309abe73839dd37c52986b7abb89e46c4cf42d"
@@ -7035,19 +6365,15 @@ libnpmaccess@^5.0.0:
npm-package-arg "^8.1.2"
npm-registry-fetch "^12.0.1"
-libnpmdiff@^2.0.4:
- version "2.0.4"
- resolved "https://registry.npmjs.org/libnpmdiff/-/libnpmdiff-2.0.4.tgz"
- integrity sha512-q3zWePOJLHwsLEUjZw3Kyu/MJMYfl4tWCg78Vl6QGSfm4aXBUSVzMzjJ6jGiyarsT4d+1NH4B1gxfs62/+y9iQ==
+libnpmaccess@^6.0.2:
+ version "6.0.2"
+ resolved "https://registry.yarnpkg.com/libnpmaccess/-/libnpmaccess-6.0.2.tgz#a694908ce7ee923ac2c2c2ca4ac457d52ce61b8f"
+ integrity sha512-/o/Kdio2IO0RJq8D+1K18FlNzt8CxF5hNDCQdPivMUcQyf3sCSZiS1Z86wDXlrmRtUvmsr31SK46vmPx66zaKQ==
dependencies:
- "@npmcli/disparity-colors" "^1.0.1"
- "@npmcli/installed-package-contents" "^1.0.7"
- binary-extensions "^2.2.0"
- diff "^5.0.0"
- minimatch "^3.0.4"
- npm-package-arg "^8.1.1"
- pacote "^11.3.0"
- tar "^6.1.0"
+ aproba "^2.0.0"
+ minipass "^3.1.1"
+ npm-package-arg "^9.0.1"
+ npm-registry-fetch "^13.0.0"
libnpmdiff@^3.0.0:
version "3.0.0"
@@ -7063,22 +6389,19 @@ libnpmdiff@^3.0.0:
pacote "^12.0.0"
tar "^6.1.0"
-libnpmexec@^2.0.1:
- version "2.0.1"
- resolved "https://registry.npmjs.org/libnpmexec/-/libnpmexec-2.0.1.tgz"
- integrity sha512-4SqBB7eJvJWmUKNF42Q5qTOn20DRjEE4TgvEh2yneKlAiRlwlhuS9MNR45juWwmoURJlf2K43bozlVt7OZiIOw==
+libnpmdiff@^4.0.2:
+ version "4.0.2"
+ resolved "https://registry.yarnpkg.com/libnpmdiff/-/libnpmdiff-4.0.2.tgz#42081867ceef748783332030dafbece8b667336e"
+ integrity sha512-VKayY5f1dGVGpuar0Nqp6tabgk2sQE7+lmqiKidokRtMl68mWGxRHbf4mnUmFV3K3GLk3LKaw6qOjQCfMR8A+g==
dependencies:
- "@npmcli/arborist" "^2.3.0"
- "@npmcli/ci-detect" "^1.3.0"
- "@npmcli/run-script" "^1.8.4"
- chalk "^4.1.0"
- mkdirp-infer-owner "^2.0.0"
- npm-package-arg "^8.1.2"
- pacote "^11.3.1"
- proc-log "^1.0.0"
- read "^1.0.7"
- read-package-json-fast "^2.0.2"
- walk-up-path "^1.0.0"
+ "@npmcli/disparity-colors" "^1.0.1"
+ "@npmcli/installed-package-contents" "^1.0.7"
+ binary-extensions "^2.2.0"
+ diff "^5.0.0"
+ minimatch "^3.0.4"
+ npm-package-arg "^9.0.1"
+ pacote "^13.0.5"
+ tar "^6.1.0"
libnpmexec@^3.0.2:
version "3.0.3"
@@ -7097,12 +6420,23 @@ libnpmexec@^3.0.2:
read-package-json-fast "^2.0.2"
walk-up-path "^1.0.0"
-libnpmfund@^1.1.0:
- version "1.1.0"
- resolved "https://registry.npmjs.org/libnpmfund/-/libnpmfund-1.1.0.tgz"
- integrity sha512-Kfmh3pLS5/RGKG5WXEig8mjahPVOxkik6lsbH4iX0si1xxNi6eeUh/+nF1MD+2cgalsQif3O5qyr6mNz2ryJrQ==
+libnpmexec@^4.0.2:
+ version "4.0.2"
+ resolved "https://registry.yarnpkg.com/libnpmexec/-/libnpmexec-4.0.2.tgz#321b40c4bf77ca5e2735f5a312b270bb2eb445bf"
+ integrity sha512-3vTHWX5XfvyHa+7xrlErkNo0o+16WT0je+4pZcBBhh1Nx5NhWrTvBpyNCZAszJn4LyhKctVz/ZSTkxIZfDJBLg==
dependencies:
- "@npmcli/arborist" "^2.5.0"
+ "@npmcli/arborist" "^5.0.0"
+ "@npmcli/ci-detect" "^2.0.0"
+ "@npmcli/run-script" "^3.0.0"
+ chalk "^4.1.0"
+ mkdirp-infer-owner "^2.0.0"
+ npm-package-arg "^9.0.1"
+ npmlog "^6.0.1"
+ pacote "^13.0.5"
+ proc-log "^2.0.0"
+ read "^1.0.7"
+ read-package-json-fast "^2.0.2"
+ walk-up-path "^1.0.0"
libnpmfund@^2.0.2:
version "2.0.2"
@@ -7111,13 +6445,12 @@ libnpmfund@^2.0.2:
dependencies:
"@npmcli/arborist" "^4.0.0"
-libnpmhook@^6.0.2:
- version "6.0.3"
- resolved "https://registry.npmjs.org/libnpmhook/-/libnpmhook-6.0.3.tgz"
- integrity sha512-3fmkZJibIybzmAvxJ65PeV3NzRc0m4xmYt6scui5msocThbEp4sKFT80FhgrCERYDjlUuFahU6zFNbJDHbQ++g==
+libnpmfund@^3.0.1:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/libnpmfund/-/libnpmfund-3.0.1.tgz#18dcf25c7d4d28dca73fa73ef5bcd3f7e8aaef1a"
+ integrity sha512-VXtKDWCfgyNgY9ioAx0/KmI4dQwCt4kkOEjfMa1ygTXMQisj3HvWa3ppMtrwp/LSE6VIGSaniRI/8YNomcwebA==
dependencies:
- aproba "^2.0.0"
- npm-registry-fetch "^11.0.0"
+ "@npmcli/arborist" "^5.0.0"
libnpmhook@^7.0.0:
version "7.0.1"
@@ -7127,13 +6460,13 @@ libnpmhook@^7.0.0:
aproba "^2.0.0"
npm-registry-fetch "^12.0.1"
-libnpmorg@^2.0.2:
- version "2.0.3"
- resolved "https://registry.npmjs.org/libnpmorg/-/libnpmorg-2.0.3.tgz"
- integrity sha512-JSGl3HFeiRFUZOUlGdiNcUZOsUqkSYrg6KMzvPZ1WVZ478i47OnKSS0vkPmX45Pai5mTKuwIqBMcGWG7O8HfdA==
+libnpmhook@^8.0.2:
+ version "8.0.2"
+ resolved "https://registry.yarnpkg.com/libnpmhook/-/libnpmhook-8.0.2.tgz#a0a03c09df79553516377068c91c91152be63c18"
+ integrity sha512-2Rgz+vuQEpzmgxZvnUNA6tjwPPvlwAT6DwUp+CDFlvBcFZsVGlmSrHgZRea5X1hknyqOz3or8l9REja42w7Yow==
dependencies:
aproba "^2.0.0"
- npm-registry-fetch "^11.0.0"
+ npm-registry-fetch "^13.0.0"
libnpmorg@^3.0.0:
version "3.0.1"
@@ -7143,14 +6476,13 @@ libnpmorg@^3.0.0:
aproba "^2.0.0"
npm-registry-fetch "^12.0.1"
-libnpmpack@^2.0.1:
- version "2.0.1"
- resolved "https://registry.npmjs.org/libnpmpack/-/libnpmpack-2.0.1.tgz"
- integrity sha512-He4/jxOwlaQ7YG7sIC1+yNeXeUDQt8RLBvpI68R3RzPMZPa4/VpxhlDo8GtBOBDYoU8eq6v1wKL38sq58u4ibQ==
+libnpmorg@^4.0.2:
+ version "4.0.2"
+ resolved "https://registry.yarnpkg.com/libnpmorg/-/libnpmorg-4.0.2.tgz#40b73b90aded260e1597c4be247cc1d1983c8881"
+ integrity sha512-e64VgxlZesrRDW2mpwrIFTWi8nGHsInuS7qDp7iO1C3KQ4Z0LwVPRwomVt5pq28Da1aJzOaM77Sox+0EWVzhFg==
dependencies:
- "@npmcli/run-script" "^1.8.3"
- npm-package-arg "^8.1.0"
- pacote "^11.2.6"
+ aproba "^2.0.0"
+ npm-registry-fetch "^13.0.0"
libnpmpack@^3.0.1:
version "3.0.1"
@@ -7161,16 +6493,14 @@ libnpmpack@^3.0.1:
npm-package-arg "^8.1.0"
pacote "^12.0.0"
-libnpmpublish@^4.0.1:
+libnpmpack@^4.0.2:
version "4.0.2"
- resolved "https://registry.npmjs.org/libnpmpublish/-/libnpmpublish-4.0.2.tgz"
- integrity sha512-+AD7A2zbVeGRCFI2aO//oUmapCwy7GHqPXFJh3qpToSRNU+tXKJ2YFUgjt04LPPAf2dlEH95s6EhIHM1J7bmOw==
+ resolved "https://registry.yarnpkg.com/libnpmpack/-/libnpmpack-4.0.2.tgz#da12a656a3516b90171b09086498dc3b9063fe5c"
+ integrity sha512-BeRDo3isvb7g4n2aOIytEUlJg6CPTKSRuH+6GYue/CyRMXGGl6sqUWIy6Fj8fcXKAIoR2QEWOkSM5HzTWV8Liw==
dependencies:
- normalize-package-data "^3.0.2"
- npm-package-arg "^8.1.2"
- npm-registry-fetch "^11.0.0"
- semver "^7.1.3"
- ssri "^8.0.1"
+ "@npmcli/run-script" "^3.0.0"
+ npm-package-arg "^9.0.1"
+ pacote "^13.0.5"
libnpmpublish@^5.0.0:
version "5.0.1"
@@ -7183,12 +6513,16 @@ libnpmpublish@^5.0.0:
semver "^7.1.3"
ssri "^8.0.1"
-libnpmsearch@^3.1.1:
- version "3.1.2"
- resolved "https://registry.npmjs.org/libnpmsearch/-/libnpmsearch-3.1.2.tgz"
- integrity sha512-BaQHBjMNnsPYk3Bl6AiOeVuFgp72jviShNBw5aHaHNKWqZxNi38iVNoXbo6bG/Ccc/m1To8s0GtMdtn6xZ1HAw==
+libnpmpublish@^6.0.2:
+ version "6.0.2"
+ resolved "https://registry.yarnpkg.com/libnpmpublish/-/libnpmpublish-6.0.2.tgz#b9edb96edf69ae54bf93e312b4e5f8c27bc20cb3"
+ integrity sha512-A9RBB1KTh8/xPMt5n8Le+lyOMEgKpG+/2OuZQOjLPiW5iFfuoQJjSHtaRipvjmBdO0XpwqAmeaHZzPtmy++Fjg==
dependencies:
- npm-registry-fetch "^11.0.0"
+ normalize-package-data "^4.0.0"
+ npm-package-arg "^9.0.1"
+ npm-registry-fetch "^13.0.0"
+ semver "^7.1.3"
+ ssri "^8.0.1"
libnpmsearch@^4.0.0:
version "4.0.1"
@@ -7197,13 +6531,12 @@ libnpmsearch@^4.0.0:
dependencies:
npm-registry-fetch "^12.0.1"
-libnpmteam@^2.0.3:
- version "2.0.4"
- resolved "https://registry.npmjs.org/libnpmteam/-/libnpmteam-2.0.4.tgz"
- integrity sha512-FPrVJWv820FZFXaflAEVTLRWZrerCvfe7ZHSMzJ/62EBlho2KFlYKjyNEsPW3JiV7TLSXi3vo8u0gMwIkXSMTw==
+libnpmsearch@^5.0.2:
+ version "5.0.2"
+ resolved "https://registry.yarnpkg.com/libnpmsearch/-/libnpmsearch-5.0.2.tgz#e44bdd47a3dc85f0daab76d73235e42eb808f3fb"
+ integrity sha512-lx3qLm+vOQzdYFGfL2tNldQVN08EatkvpOLRghsWQ47Y+jINFvDe3s5unsMLLF89CfQFqdaYLJ992yQLCwDbtQ==
dependencies:
- aproba "^2.0.0"
- npm-registry-fetch "^11.0.0"
+ npm-registry-fetch "^13.0.0"
libnpmteam@^3.0.0:
version "3.0.1"
@@ -7213,16 +6546,13 @@ libnpmteam@^3.0.0:
aproba "^2.0.0"
npm-registry-fetch "^12.0.1"
-libnpmversion@^1.2.1:
- version "1.2.1"
- resolved "https://registry.npmjs.org/libnpmversion/-/libnpmversion-1.2.1.tgz"
- integrity sha512-AA7x5CFgBFN+L4/JWobnY5t4OAHjQuPbAwUYJ7/NtHuyLut5meb+ne/aj0n7PWNiTGCJcRw/W6Zd2LoLT7EZuQ==
+libnpmteam@^4.0.2:
+ version "4.0.2"
+ resolved "https://registry.yarnpkg.com/libnpmteam/-/libnpmteam-4.0.2.tgz#0b2411275a43ca3fe59526f3ee2fd297cf12c2ea"
+ integrity sha512-1ZuzHLEMzOBsAALjupZnaFx2qG9Ki/XvB92vmR1HpSFA3ltEKjPMz9mB0JJZsRTZ+ajvUI7Gy8VuAIkNLXW1xA==
dependencies:
- "@npmcli/git" "^2.0.7"
- "@npmcli/run-script" "^1.8.4"
- json-parse-even-better-errors "^2.3.1"
- semver "^7.3.5"
- stringify-package "^1.0.1"
+ aproba "^2.0.0"
+ npm-registry-fetch "^13.0.0"
libnpmversion@^2.0.2:
version "2.0.2"
@@ -7235,6 +6565,18 @@ libnpmversion@^2.0.2:
semver "^7.3.5"
stringify-package "^1.0.1"
+libnpmversion@^3.0.1:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/libnpmversion/-/libnpmversion-3.0.1.tgz#378ef2b092a4a633772b1e66620ce3c431dc3697"
+ integrity sha512-ZxOVWmMX+RBkOeJSiNPdhMqRaAOJXf3EDfvC6Mr90+NaM+gKptiw/NJBT3jKfZKbLn/wuC0Ey/sc4YNLoBk0Qw==
+ dependencies:
+ "@npmcli/git" "^3.0.0"
+ "@npmcli/run-script" "^3.0.0"
+ json-parse-even-better-errors "^2.3.1"
+ proc-log "^2.0.0"
+ semver "^7.3.5"
+ stringify-package "^1.0.1"
+
lines-and-columns@^1.1.6:
version "1.2.4"
resolved "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz"
@@ -7416,29 +6758,6 @@ loose-envify@^1.4.0:
dependencies:
js-tokens "^3.0.0 || ^4.0.0"
-lowercase-keys@1.0.0:
- version "1.0.0"
- resolved "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.0.tgz"
- integrity sha1-TjNms55/VFfjXxMkvfb4jQv8cwY=
-
-lowercase-keys@^1.0.0:
- version "1.0.1"
- resolved "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz"
- integrity sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==
-
-lowercase-keys@^2.0.0:
- version "2.0.0"
- resolved "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz"
- integrity sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==
-
-lru-cache@^4.0.1:
- version "4.1.5"
- resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz"
- integrity sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==
- dependencies:
- pseudomap "^1.0.2"
- yallist "^2.1.2"
-
lru-cache@^6.0.0:
version "6.0.0"
resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz"
@@ -7446,26 +6765,16 @@ lru-cache@^6.0.0:
dependencies:
yallist "^4.0.0"
+lru-cache@^7.3.1, lru-cache@^7.7.1:
+ version "7.7.3"
+ resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-7.7.3.tgz#98cd19eef89ce6a4a3c4502c17c833888677c252"
+ integrity sha512-WY9wjJNQt9+PZilnLbuFKM+SwDull9+6IAguOrarOMoOHTcJ9GnXSO11+Gw6c7xtDkBkthR57OZMtZKYr+1CEw==
+
lru-cache@^7.5.1:
version "7.7.1"
resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-7.7.1.tgz#03d2846b1ad2dcc7931a9340b8711d9798fcb0c6"
integrity sha512-cRffBiTW8s73eH4aTXqBcTLU0xQnwGV3/imttRHGWCrbergmnK4D6JXQd8qin5z43HnDwRI+o7mVW0LEB+tpAw==
-make-dir@^1.0.0:
- version "1.3.0"
- resolved "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz"
- integrity sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==
- dependencies:
- pify "^3.0.0"
-
-make-dir@^2.1.0:
- version "2.1.0"
- resolved "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz"
- integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==
- dependencies:
- pify "^4.0.1"
- semver "^5.6.0"
-
make-dir@^3.0.0:
version "3.1.0"
resolved "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz"
@@ -7500,6 +6809,28 @@ make-fetch-happen@^10.0.1:
socks-proxy-agent "^6.1.1"
ssri "^8.0.1"
+make-fetch-happen@^10.0.3, make-fetch-happen@^10.0.6, make-fetch-happen@^10.1.1:
+ version "10.1.2"
+ resolved "https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-10.1.2.tgz#acffef43f86250602b932eecc0ad3acc992ae233"
+ integrity sha512-GWMGiZsKVeJACQGJ1P3Z+iNec7pLsU6YW1q11eaPn3RR8nRXHppFWfP7Eu0//55JK3hSjrAQRl8sDa5uXpq1Ew==
+ dependencies:
+ agentkeepalive "^4.2.1"
+ cacache "^16.0.2"
+ http-cache-semantics "^4.1.0"
+ http-proxy-agent "^5.0.0"
+ https-proxy-agent "^5.0.0"
+ is-lambda "^1.0.1"
+ lru-cache "^7.7.1"
+ minipass "^3.1.6"
+ minipass-collect "^1.0.2"
+ minipass-fetch "^2.0.3"
+ minipass-flush "^1.0.5"
+ minipass-pipeline "^1.2.4"
+ negotiator "^0.6.3"
+ promise-retry "^2.0.1"
+ socks-proxy-agent "^6.1.1"
+ ssri "^9.0.0"
+
make-fetch-happen@^9.0.1, make-fetch-happen@^9.1.0:
version "9.1.0"
resolved "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-9.1.0.tgz"
@@ -7551,22 +6882,22 @@ map-visit@^1.0.0:
dependencies:
object-visit "^1.0.0"
-marked-terminal@^4.1.1:
- version "4.2.0"
- resolved "https://registry.npmjs.org/marked-terminal/-/marked-terminal-4.2.0.tgz"
- integrity sha512-DQfNRV9svZf0Dm9Cf5x5xaVJ1+XjxQW6XjFJ5HFkVyK52SDpj5PCBzS5X5r2w9nHr3mlB0T5201UMLue9fmhUw==
+marked-terminal@^5.0.0:
+ version "5.1.1"
+ resolved "https://registry.yarnpkg.com/marked-terminal/-/marked-terminal-5.1.1.tgz#d2edc2991841d893ee943b44b40b2ee9518b4d9f"
+ integrity sha512-+cKTOx9P4l7HwINYhzbrBSyzgxO2HaHKGZGuB1orZsMIgXYaJyfidT81VXRdpelW/PcHEWxywscePVgI/oUF6g==
dependencies:
- ansi-escapes "^4.3.1"
+ ansi-escapes "^5.0.0"
cardinal "^2.1.1"
- chalk "^4.1.0"
- cli-table3 "^0.6.0"
- node-emoji "^1.10.0"
- supports-hyperlinks "^2.1.0"
+ chalk "^5.0.0"
+ cli-table3 "^0.6.1"
+ node-emoji "^1.11.0"
+ supports-hyperlinks "^2.2.0"
-marked@^2.0.0:
- version "2.1.3"
- resolved "https://registry.npmjs.org/marked/-/marked-2.1.3.tgz"
- integrity sha512-/Q+7MGzaETqifOMWYEA7HVMaZb4XbcRfaOzcSsHZEith83KGlvaSG33u0SKu89Mj5h+T8V2hM+8O45Qc5XTgwA==
+marked@^4.0.10:
+ version "4.0.12"
+ resolved "https://registry.yarnpkg.com/marked/-/marked-4.0.12.tgz#2262a4e6fd1afd2f13557726238b69a48b982f7d"
+ integrity sha512-hgibXWrEDNBWgGiK18j/4lkS6ihTe9sxtV4Q1OQppb/0zzyPSzoFANBa5MfsG/zgsWklmNnhm0XACZOH/0HBiQ==
math-random@^1.0.1:
version "1.0.4"
@@ -7687,16 +7018,11 @@ micromatch@^4.0.0, micromatch@^4.0.2, micromatch@^4.0.4:
braces "^3.0.1"
picomatch "^2.2.3"
-mime-db@1.51.0, mime-db@^1.28.0:
+mime-db@1.51.0:
version "1.51.0"
resolved "https://registry.npmjs.org/mime-db/-/mime-db-1.51.0.tgz"
integrity sha512-5y8A56jg7XVQx2mbv1lu49NR4dokRnhZYTtL+KGfaa27uq4pSTXkwQkFJl4pkRMyNFz/EtYDSkiiEHx3F7UN6g==
-mime-db@1.52.0:
- version "1.52.0"
- resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70"
- integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==
-
mime-types@^2.1.12, mime-types@~2.1.24:
version "2.1.34"
resolved "https://registry.npmjs.org/mime-types/-/mime-types-2.1.34.tgz"
@@ -7704,38 +7030,21 @@ mime-types@^2.1.12, mime-types@~2.1.24:
dependencies:
mime-db "1.51.0"
-mime-types@~2.1.19:
- version "2.1.35"
- resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a"
- integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==
- dependencies:
- mime-db "1.52.0"
-
mime@1.6.0:
version "1.6.0"
resolved "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz"
integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==
-mime@^2.4.3:
- version "2.6.0"
- resolved "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz"
- integrity sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==
+mime@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/mime/-/mime-3.0.0.tgz#b374550dca3a0c18443b0c950a6a58f1931cf7a7"
+ integrity sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==
mimic-fn@^2.1.0:
version "2.1.0"
resolved "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz"
integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==
-mimic-response@^1.0.0:
- version "1.0.1"
- resolved "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz"
- integrity sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==
-
-mimic-response@^2.0.0, mimic-response@^2.1.0:
- version "2.1.0"
- resolved "https://registry.npmjs.org/mimic-response/-/mimic-response-2.1.0.tgz"
- integrity sha512-wXqjST+SLt7R009ySCglWBCFpjUygmCIfD790/kVbiGmUgfYGuB14PiTd5DwVxSV4NcYHjzMkoj5LjQZwTQLEA==
-
min-indent@^1.0.0:
version "1.0.1"
resolved "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz"
@@ -7748,6 +7057,13 @@ minimatch@^3.0.2, minimatch@^3.0.4:
dependencies:
brace-expansion "^1.1.7"
+minimatch@^5.0.1:
+ version "5.0.1"
+ resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-5.0.1.tgz#fb9022f7528125187c92bd9e9b6366be1cf3415b"
+ integrity sha512-nLDxIFRyhDblz3qMuq+SoRZED4+miJ/G+tdDrjkkkRnjAsBexeGpgjLEQ0blJy7rHhR2b93rhQY4SvyWu9v03g==
+ dependencies:
+ brace-expansion "^2.0.1"
+
minimist-options@4.1.0:
version "4.1.0"
resolved "https://registry.npmjs.org/minimist-options/-/minimist-options-4.1.0.tgz"
@@ -7977,9 +7293,9 @@ nock@^13.0.0:
lodash.set "^4.3.2"
propagate "^2.0.0"
-node-emoji@^1.10.0:
+node-emoji@^1.11.0:
version "1.11.0"
- resolved "https://registry.npmjs.org/node-emoji/-/node-emoji-1.11.0.tgz"
+ resolved "https://registry.yarnpkg.com/node-emoji/-/node-emoji-1.11.0.tgz#69a0150e6946e2f115e9d7ea4df7971e2628301c"
integrity sha512-wo2DpQkQp7Sjm2A0cq+sN7EHKO6Sl0ctXeBdFZrL9T9+UywORbufTcTZxom8YqpLQt/FqNMUkOpkZrJVYSKD3A==
dependencies:
lodash "^4.17.21"
@@ -7991,31 +7307,31 @@ node-fetch@^2.6.7:
dependencies:
whatwg-url "^5.0.0"
-node-gyp@^7.1.0, node-gyp@^7.1.2:
- version "7.1.2"
- resolved "https://registry.npmjs.org/node-gyp/-/node-gyp-7.1.2.tgz"
- integrity sha512-CbpcIo7C3eMu3dL1c3d0xw449fHIGALIJsRP4DDPHpyiW8vcriNY7ubh9TE4zEKfSxscY7PjeFnshE7h75ynjQ==
+node-gyp@^8.2.0, node-gyp@^8.4.1:
+ version "8.4.1"
+ resolved "https://registry.npmjs.org/node-gyp/-/node-gyp-8.4.1.tgz"
+ integrity sha512-olTJRgUtAb/hOXG0E93wZDs5YiJlgbXxTwQAFHyNlRsXQnYzUaF2aGgujZbw+hR8aF4ZG/rST57bWMWD16jr9w==
dependencies:
env-paths "^2.2.0"
glob "^7.1.4"
- graceful-fs "^4.2.3"
+ graceful-fs "^4.2.6"
+ make-fetch-happen "^9.1.0"
nopt "^5.0.0"
- npmlog "^4.1.2"
- request "^2.88.2"
+ npmlog "^6.0.0"
rimraf "^3.0.2"
- semver "^7.3.2"
- tar "^6.0.2"
+ semver "^7.3.5"
+ tar "^6.1.2"
which "^2.0.2"
-node-gyp@^8.2.0, node-gyp@^8.4.1:
- version "8.4.1"
- resolved "https://registry.npmjs.org/node-gyp/-/node-gyp-8.4.1.tgz"
- integrity sha512-olTJRgUtAb/hOXG0E93wZDs5YiJlgbXxTwQAFHyNlRsXQnYzUaF2aGgujZbw+hR8aF4ZG/rST57bWMWD16jr9w==
+node-gyp@^9.0.0:
+ version "9.0.0"
+ resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-9.0.0.tgz#e1da2067427f3eb5bb56820cb62bc6b1e4bd2089"
+ integrity sha512-Ma6p4s+XCTPxCuAMrOA/IJRmVy16R8Sdhtwl4PrCr7IBlj4cPawF0vg/l7nOT1jPbuNS7lIRJpBSvVsXwEZuzw==
dependencies:
env-paths "^2.2.0"
glob "^7.1.4"
graceful-fs "^4.2.6"
- make-fetch-happen "^9.1.0"
+ make-fetch-happen "^10.0.3"
nopt "^5.0.0"
npmlog "^6.0.0"
rimraf "^3.0.2"
@@ -8028,21 +7344,6 @@ node-int64@^0.4.0:
resolved "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz"
integrity sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=
-node-jq@2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/node-jq/-/node-jq-2.1.0.tgz#4530cb1fd767bf05b643f0bddc2769c2ced847e0"
- integrity sha512-4wv/W8rejWADH1Jqz+O2hCaZEFTIBp7EOcYo7orFcK9t11DtVQBBQHrN89MiGenk5HzrAMrZluOo5PQ0fP/AoQ==
- dependencies:
- "@semantic-release/changelog" "^6.0.1"
- "@semantic-release/git" "^10.0.1"
- bin-build "^3.0.0"
- download "^8.0.0"
- is-valid-path "^0.1.1"
- joi "^17.4.0"
- strip-eof "^2.0.0"
- strip-final-newline "^2.0.0"
- tempfile "^3.0.0"
-
node-releases@^2.0.1:
version "2.0.1"
resolved "https://registry.npmjs.org/node-releases/-/node-releases-2.0.1.tgz"
@@ -8075,6 +7376,16 @@ normalize-package-data@^3.0.0, normalize-package-data@^3.0.2, normalize-package-
semver "^7.3.4"
validate-npm-package-license "^3.0.1"
+normalize-package-data@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-4.0.0.tgz#1122d5359af21d4cd08718b92b058a658594177c"
+ integrity sha512-m+GL22VXJKkKbw62ZaBBjv8u6IE3UI4Mh5QakIqs3fWiKe0Xyi6L97hakwZK41/LD4R/2ly71Bayx0NLMwLA/g==
+ dependencies:
+ hosted-git-info "^5.0.0"
+ is-core-module "^2.8.1"
+ semver "^7.3.5"
+ validate-npm-package-license "^3.0.4"
+
normalize-path@^2.0.0, normalize-path@^2.0.1, normalize-path@^2.1.1:
version "2.1.1"
resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz"
@@ -8087,16 +7398,7 @@ normalize-path@^3.0.0:
resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz"
integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==
-normalize-url@2.0.1:
- version "2.0.1"
- resolved "https://registry.npmjs.org/normalize-url/-/normalize-url-2.0.1.tgz"
- integrity sha512-D6MUW4K/VzoJ4rJ01JFKxDrtY1v9wrgzCX5f2qj/lzH1m/lW6MhUZFKerVsnyjOhOsYzI9Kqqak+10l4LvLpMw==
- dependencies:
- prepend-http "^2.0.0"
- query-string "^5.0.1"
- sort-keys "^2.0.0"
-
-normalize-url@^6.0.0, normalize-url@^6.0.1:
+normalize-url@^6.0.0:
version "6.1.0"
resolved "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz"
integrity sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==
@@ -8108,21 +7410,20 @@ npm-audit-report@^2.1.5:
dependencies:
chalk "^4.0.0"
-npm-bundled@^1.1.1:
+npm-audit-report@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/npm-audit-report/-/npm-audit-report-3.0.0.tgz#1bf3e531208b5f77347c8d00c3d9badf5be30cd6"
+ integrity sha512-tWQzfbwz1sc4244Bx2BVELw0EmZlCsCF0X93RDcmmwhonCsPMoEviYsi+32R+mdRvOWXolPce9zo64n2xgPESw==
+ dependencies:
+ chalk "^4.0.0"
+
+npm-bundled@^1.1.1, npm-bundled@^1.1.2:
version "1.1.2"
resolved "https://registry.npmjs.org/npm-bundled/-/npm-bundled-1.1.2.tgz"
integrity sha512-x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ==
dependencies:
npm-normalize-package-bin "^1.0.1"
-npm-conf@^1.1.0:
- version "1.1.3"
- resolved "https://registry.npmjs.org/npm-conf/-/npm-conf-1.1.3.tgz"
- integrity sha512-Yic4bZHJOt9RCFbRP3GgpqhScOY4HH3V2P8yBj6CeYq118Qr+BLXqT2JvpJ00mryLESpgOxf5XlFv4ZjXxLScw==
- dependencies:
- config-chain "^1.1.11"
- pify "^3.0.0"
-
npm-install-checks@^4.0.0:
version "4.0.0"
resolved "https://registry.npmjs.org/npm-install-checks/-/npm-install-checks-4.0.0.tgz"
@@ -8130,12 +7431,19 @@ npm-install-checks@^4.0.0:
dependencies:
semver "^7.1.1"
+npm-install-checks@^5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/npm-install-checks/-/npm-install-checks-5.0.0.tgz#5ff27d209a4e3542b8ac6b0c1db6063506248234"
+ integrity sha512-65lUsMI8ztHCxFz5ckCEC44DRvEGdZX5usQFriauxHEwt7upv1FKaQEmAtU0YnOAdwuNWCmk64xYiQABNrEyLA==
+ dependencies:
+ semver "^7.1.1"
+
npm-normalize-package-bin@^1.0.0, npm-normalize-package-bin@^1.0.1:
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==
-npm-package-arg@^8.0.0, npm-package-arg@^8.0.1, npm-package-arg@^8.1.0, npm-package-arg@^8.1.1, npm-package-arg@^8.1.2, npm-package-arg@^8.1.4, npm-package-arg@^8.1.5:
+npm-package-arg@^8.0.0, npm-package-arg@^8.0.1, npm-package-arg@^8.1.0, npm-package-arg@^8.1.2, npm-package-arg@^8.1.4, npm-package-arg@^8.1.5:
version "8.1.5"
resolved "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-8.1.5.tgz"
integrity sha512-LhgZrg0n0VgvzVdSm1oiZworPbTxYHUJCgtsJW8mGvlDpxTM1vSJc3m5QZeUkhAHIzbz3VCHd/R4osi1L1Tg/Q==
@@ -8144,15 +7452,14 @@ npm-package-arg@^8.0.0, npm-package-arg@^8.0.1, npm-package-arg@^8.1.0, npm-pack
semver "^7.3.4"
validate-npm-package-name "^3.0.0"
-npm-packlist@^2.1.4:
- version "2.2.2"
- resolved "https://registry.npmjs.org/npm-packlist/-/npm-packlist-2.2.2.tgz"
- integrity sha512-Jt01acDvJRhJGthnUJVF/w6gumWOZxO7IkpY/lsX9//zqQgnF7OJaxgQXcerd4uQOLu7W5bkb4mChL9mdfm+Zg==
+npm-package-arg@^9.0.0, npm-package-arg@^9.0.1:
+ version "9.0.2"
+ resolved "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-9.0.2.tgz#f3ef7b1b3b02e82564af2d5228b4c36567dcd389"
+ integrity sha512-v/miORuX8cndiOheW8p2moNuPJ7QhcFh9WGlTorruG8hXSA23vMTEp5hTCmDxic0nD8KHhj/NQgFuySD3GYY3g==
dependencies:
- glob "^7.1.6"
- ignore-walk "^3.0.3"
- npm-bundled "^1.1.1"
- npm-normalize-package-bin "^1.0.1"
+ hosted-git-info "^5.0.0"
+ semver "^7.3.5"
+ validate-npm-package-name "^4.0.0"
npm-packlist@^3.0.0:
version "3.0.0"
@@ -8164,6 +7471,16 @@ npm-packlist@^3.0.0:
npm-bundled "^1.1.1"
npm-normalize-package-bin "^1.0.1"
+npm-packlist@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-4.0.0.tgz#ba54713f8ee2ad919a6dc9f1b9ec7aa291466703"
+ integrity sha512-gL6XC/iw9YSmqArmZOGSkyy+yIZf2f7uH0p4Vmxef/irn73vd9/rDkCtvm+a9rh/QK2xGYfCAMOghM06ymzC0A==
+ dependencies:
+ glob "^7.2.0"
+ ignore-walk "^4.0.1"
+ npm-bundled "^1.1.2"
+ npm-normalize-package-bin "^1.0.1"
+
npm-pick-manifest@^6.0.0, npm-pick-manifest@^6.1.0, npm-pick-manifest@^6.1.1:
version "6.1.1"
resolved "https://registry.npmjs.org/npm-pick-manifest/-/npm-pick-manifest-6.1.1.tgz"
@@ -8174,6 +7491,16 @@ npm-pick-manifest@^6.0.0, npm-pick-manifest@^6.1.0, npm-pick-manifest@^6.1.1:
npm-package-arg "^8.1.2"
semver "^7.3.4"
+npm-pick-manifest@^7.0.0:
+ version "7.0.1"
+ resolved "https://registry.yarnpkg.com/npm-pick-manifest/-/npm-pick-manifest-7.0.1.tgz#76dda30a7cd6b99be822217a935c2f5eacdaca4c"
+ integrity sha512-IA8+tuv8KujbsbLQvselW2XQgmXWS47t3CB0ZrzsRZ82DbDfkcFunOaPm4X7qNuhMfq+FmV7hQT4iFVpHqV7mg==
+ dependencies:
+ npm-install-checks "^5.0.0"
+ npm-normalize-package-bin "^1.0.1"
+ npm-package-arg "^9.0.0"
+ semver "^7.3.5"
+
npm-profile@^5.0.3:
version "5.0.4"
resolved "https://registry.npmjs.org/npm-profile/-/npm-profile-5.0.4.tgz"
@@ -8181,6 +7508,14 @@ npm-profile@^5.0.3:
dependencies:
npm-registry-fetch "^11.0.0"
+npm-profile@^6.0.2:
+ version "6.0.2"
+ resolved "https://registry.yarnpkg.com/npm-profile/-/npm-profile-6.0.2.tgz#b2da9887d16d1f0d1ce8a9c3b37a48454a372919"
+ integrity sha512-0Fq8l+A10YXnnS63E3HThWjOb7+19Wsh1nOVutC2fKuowar8t/5PpINsbcm5xQ2dA28uAu+wjFfUyiEVSMz4Jw==
+ dependencies:
+ npm-registry-fetch "^13.0.0"
+ proc-log "^2.0.0"
+
npm-registry-fetch@^11.0.0:
version "11.0.0"
resolved "https://registry.npmjs.org/npm-registry-fetch/-/npm-registry-fetch-11.0.0.tgz"
@@ -8205,6 +7540,19 @@ npm-registry-fetch@^12.0.1:
minizlib "^2.1.2"
npm-package-arg "^8.1.5"
+npm-registry-fetch@^13.0.0, npm-registry-fetch@^13.0.1, npm-registry-fetch@^13.1.0:
+ version "13.1.0"
+ resolved "https://registry.yarnpkg.com/npm-registry-fetch/-/npm-registry-fetch-13.1.0.tgz#71bed52e30a4b27441604bbba79c7db8e0e34cb5"
+ integrity sha512-TIYL5X8CcwDhbFMXFDShNcpG6OMCYK6VzvSr6MUWP20tCU2DJ4ao2qQg3DT+3Pet8mO6/cgbZpon4LMh3duYLg==
+ dependencies:
+ make-fetch-happen "^10.0.6"
+ minipass "^3.1.6"
+ minipass-fetch "^2.0.3"
+ minipass-json-stream "^1.0.1"
+ minizlib "^2.1.2"
+ npm-package-arg "^9.0.1"
+ proc-log "^2.0.0"
+
npm-run-path@^2.0.0:
version "2.0.2"
resolved "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz"
@@ -8219,86 +7567,10 @@ npm-run-path@^4.0.0, npm-run-path@^4.0.1:
dependencies:
path-key "^3.0.0"
-npm-user-validate@^1.0.1:
- version "1.0.1"
- resolved "https://registry.npmjs.org/npm-user-validate/-/npm-user-validate-1.0.1.tgz"
- integrity sha512-uQwcd/tY+h1jnEaze6cdX/LrhWhoBxfSknxentoqmIuStxUExxjWd3ULMLFPiFUrZKbOVMowH6Jq2FRWfmhcEw==
-
-npm@^7.0.0:
- version "7.24.2"
- resolved "https://registry.npmjs.org/npm/-/npm-7.24.2.tgz"
- integrity sha512-120p116CE8VMMZ+hk8IAb1inCPk4Dj3VZw29/n2g6UI77urJKVYb7FZUDW8hY+EBnfsjI/2yrobBgFyzo7YpVQ==
- dependencies:
- "@isaacs/string-locale-compare" "^1.1.0"
- "@npmcli/arborist" "^2.9.0"
- "@npmcli/ci-detect" "^1.2.0"
- "@npmcli/config" "^2.3.0"
- "@npmcli/map-workspaces" "^1.0.4"
- "@npmcli/package-json" "^1.0.1"
- "@npmcli/run-script" "^1.8.6"
- abbrev "~1.1.1"
- ansicolors "~0.3.2"
- ansistyles "~0.1.3"
- archy "~1.0.0"
- cacache "^15.3.0"
- chalk "^4.1.2"
- chownr "^2.0.0"
- cli-columns "^3.1.2"
- cli-table3 "^0.6.0"
- columnify "~1.5.4"
- fastest-levenshtein "^1.0.12"
- glob "^7.2.0"
- graceful-fs "^4.2.8"
- hosted-git-info "^4.0.2"
- ini "^2.0.0"
- init-package-json "^2.0.5"
- is-cidr "^4.0.2"
- json-parse-even-better-errors "^2.3.1"
- libnpmaccess "^4.0.2"
- libnpmdiff "^2.0.4"
- libnpmexec "^2.0.1"
- libnpmfund "^1.1.0"
- libnpmhook "^6.0.2"
- libnpmorg "^2.0.2"
- libnpmpack "^2.0.1"
- libnpmpublish "^4.0.1"
- libnpmsearch "^3.1.1"
- libnpmteam "^2.0.3"
- libnpmversion "^1.2.1"
- make-fetch-happen "^9.1.0"
- minipass "^3.1.3"
- minipass-pipeline "^1.2.4"
- mkdirp "^1.0.4"
- mkdirp-infer-owner "^2.0.0"
- ms "^2.1.2"
- node-gyp "^7.1.2"
- nopt "^5.0.0"
- npm-audit-report "^2.1.5"
- npm-install-checks "^4.0.0"
- npm-package-arg "^8.1.5"
- npm-pick-manifest "^6.1.1"
- npm-profile "^5.0.3"
- npm-registry-fetch "^11.0.0"
- npm-user-validate "^1.0.1"
- npmlog "^5.0.1"
- opener "^1.5.2"
- pacote "^11.3.5"
- parse-conflict-json "^1.1.1"
- qrcode-terminal "^0.12.0"
- read "~1.0.7"
- read-package-json "^4.1.1"
- read-package-json-fast "^2.0.3"
- readdir-scoped-modules "^1.1.0"
- rimraf "^3.0.2"
- semver "^7.3.5"
- ssri "^8.0.1"
- tar "^6.1.11"
- text-table "~0.2.0"
- tiny-relative-date "^1.3.0"
- treeverse "^1.0.4"
- validate-npm-package-name "~3.0.0"
- which "^2.0.2"
- write-file-atomic "^3.0.3"
+npm-user-validate@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.npmjs.org/npm-user-validate/-/npm-user-validate-1.0.1.tgz"
+ integrity sha512-uQwcd/tY+h1jnEaze6cdX/LrhWhoBxfSknxentoqmIuStxUExxjWd3ULMLFPiFUrZKbOVMowH6Jq2FRWfmhcEw==
npm@^8.1.2:
version "8.3.2"
@@ -8377,15 +7649,83 @@ npm@^8.1.2:
which "^2.0.2"
write-file-atomic "^4.0.0"
-npmlog@^4.1.2:
- version "4.1.2"
- resolved "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz"
- integrity sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==
+npm@^8.3.0:
+ version "8.6.0"
+ resolved "https://registry.yarnpkg.com/npm/-/npm-8.6.0.tgz#46a601fdffa80b018e1dcf08e10d5efb625e5c9e"
+ integrity sha512-icekvN8FJFESIFkLaFEVl05Nocl5Id5HnoVhJzhCUvtNY8tj9kfUlH/J527fZq/8ltsAUqpettfutwRjQYS2fA==
dependencies:
- are-we-there-yet "~1.1.2"
- console-control-strings "~1.1.0"
- gauge "~2.7.3"
- set-blocking "~2.0.0"
+ "@isaacs/string-locale-compare" "^1.1.0"
+ "@npmcli/arborist" "^5.0.4"
+ "@npmcli/ci-detect" "^2.0.0"
+ "@npmcli/config" "^4.0.1"
+ "@npmcli/fs" "^2.1.0"
+ "@npmcli/map-workspaces" "^2.0.2"
+ "@npmcli/package-json" "^1.0.1"
+ "@npmcli/run-script" "^3.0.1"
+ abbrev "~1.1.1"
+ ansicolors "~0.3.2"
+ ansistyles "~0.1.3"
+ archy "~1.0.0"
+ cacache "^16.0.3"
+ chalk "^4.1.2"
+ chownr "^2.0.0"
+ cli-columns "^4.0.0"
+ cli-table3 "^0.6.1"
+ columnify "^1.6.0"
+ fastest-levenshtein "^1.0.12"
+ glob "^7.2.0"
+ graceful-fs "^4.2.9"
+ hosted-git-info "^5.0.0"
+ ini "^2.0.0"
+ init-package-json "^3.0.2"
+ is-cidr "^4.0.2"
+ json-parse-even-better-errors "^2.3.1"
+ libnpmaccess "^6.0.2"
+ libnpmdiff "^4.0.2"
+ libnpmexec "^4.0.2"
+ libnpmfund "^3.0.1"
+ libnpmhook "^8.0.2"
+ libnpmorg "^4.0.2"
+ libnpmpack "^4.0.2"
+ libnpmpublish "^6.0.2"
+ libnpmsearch "^5.0.2"
+ libnpmteam "^4.0.2"
+ libnpmversion "^3.0.1"
+ make-fetch-happen "^10.1.1"
+ minipass "^3.1.6"
+ minipass-pipeline "^1.2.4"
+ mkdirp "^1.0.4"
+ mkdirp-infer-owner "^2.0.0"
+ ms "^2.1.2"
+ node-gyp "^9.0.0"
+ nopt "^5.0.0"
+ npm-audit-report "^3.0.0"
+ npm-install-checks "^4.0.0"
+ npm-package-arg "^9.0.1"
+ npm-pick-manifest "^7.0.0"
+ npm-profile "^6.0.2"
+ npm-registry-fetch "^13.1.0"
+ npm-user-validate "^1.0.1"
+ npmlog "^6.0.1"
+ opener "^1.5.2"
+ pacote "^13.0.5"
+ parse-conflict-json "^2.0.2"
+ proc-log "^2.0.1"
+ qrcode-terminal "^0.12.0"
+ read "~1.0.7"
+ read-package-json "^5.0.0"
+ read-package-json-fast "^2.0.3"
+ readdir-scoped-modules "^1.1.0"
+ rimraf "^3.0.2"
+ semver "^7.3.5"
+ ssri "^8.0.1"
+ tar "^6.1.11"
+ text-table "~0.2.0"
+ tiny-relative-date "^1.3.0"
+ treeverse "^1.0.4"
+ validate-npm-package-name "^4.0.0"
+ which "^2.0.2"
+ write-file-atomic "^4.0.1"
npmlog@^5.0.1:
version "5.0.1"
@@ -8407,6 +7747,16 @@ npmlog@^6.0.0:
gauge "^4.0.0"
set-blocking "^2.0.0"
+npmlog@^6.0.1:
+ version "6.0.1"
+ resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-6.0.1.tgz#06f1344a174c06e8de9c6c70834cfba2964bba17"
+ integrity sha512-BTHDvY6nrRHuRfyjt1MAufLxYdVXZfd099H4+i1f0lPywNQyI4foeNXJRObB/uy+TYqUW0vAD9gbdSOXPst7Eg==
+ dependencies:
+ are-we-there-yet "^3.0.0"
+ console-control-strings "^1.1.0"
+ gauge "^4.0.0"
+ set-blocking "^2.0.0"
+
number-is-nan@^1.0.0:
version "1.0.1"
resolved "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz"
@@ -8417,12 +7767,7 @@ nwsapi@^2.2.0:
resolved "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.0.tgz"
integrity sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==
-oauth-sign@~0.9.0:
- version "0.9.0"
- resolved "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz"
- integrity sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==
-
-object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1:
+object-assign@^4.1.1:
version "4.1.1"
resolved "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz"
integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=
@@ -8624,47 +7969,11 @@ os-tmpdir@~1.0.2:
resolved "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz"
integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=
-p-cancelable@^0.3.0:
- version "0.3.0"
- resolved "https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.3.0.tgz"
- integrity sha512-RVbZPLso8+jFeq1MfNvgXtCRED2raz/dKpacfTNxsx6pLEpEomM7gah6VeHSYV3+vo0OAi4MkArtQcWWXuQoyw==
-
-p-cancelable@^0.4.0:
- version "0.4.1"
- resolved "https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.4.1.tgz"
- integrity sha512-HNa1A8LvB1kie7cERyy21VNeHb2CWJJYqyyC2o3klWFfMGlFmWv2Z7sFgZH8ZiaYL95ydToKTFVXgMV/Os0bBQ==
-
-p-cancelable@^2.0.0:
- version "2.1.1"
- resolved "https://registry.npmjs.org/p-cancelable/-/p-cancelable-2.1.1.tgz"
- integrity sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==
-
p-each-series@^2.1.0:
version "2.2.0"
resolved "https://registry.npmjs.org/p-each-series/-/p-each-series-2.2.0.tgz"
integrity sha512-ycIL2+1V32th+8scbpTvyHNaHe02z0sjgh91XXjAk+ZeXoPN4Z46DVUnzdso0aX4KckKw0FNNFHdjZ2UsZvxiA==
-p-event@^1.0.0:
- version "1.3.0"
- resolved "https://registry.npmjs.org/p-event/-/p-event-1.3.0.tgz"
- integrity sha1-jmtPT2XHK8W2/ii3XtqHT5akoIU=
- dependencies:
- p-timeout "^1.1.1"
-
-p-event@^2.1.0:
- version "2.3.1"
- resolved "https://registry.npmjs.org/p-event/-/p-event-2.3.1.tgz"
- integrity sha512-NQCqOFhbpVTMX4qMe8PF8lbGtzZ+LCiN7pcNrb/413Na7+TRoe1xkKUzuWa/YEJdGQ0FvKtj35EEbDoVPO2kbA==
- dependencies:
- p-timeout "^2.0.1"
-
-p-event@^4.0.0:
- version "4.2.0"
- resolved "https://registry.npmjs.org/p-event/-/p-event-4.2.0.tgz"
- integrity sha512-KXatOjCRXXkSePPb1Nbi0p0m+gQAwdlbhi4wQKJPI1HsMQS9g+Sqp2o+QHziPr7eYJyOZet836KoHEVM1mwOrQ==
- dependencies:
- p-timeout "^3.1.0"
-
p-filter@^2.0.0:
version "2.1.0"
resolved "https://registry.npmjs.org/p-filter/-/p-filter-2.1.0.tgz"
@@ -8677,11 +7986,6 @@ p-finally@^1.0.0:
resolved "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz"
integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=
-p-is-promise@^1.1.0:
- version "1.1.0"
- resolved "https://registry.npmjs.org/p-is-promise/-/p-is-promise-1.1.0.tgz"
- integrity sha1-nJRWmJ6fZYgBewQ01WCXZ1w9oF4=
-
p-is-promise@^3.0.0:
version "3.0.0"
resolved "https://registry.npmjs.org/p-is-promise/-/p-is-promise-3.0.0.tgz"
@@ -8729,13 +8033,6 @@ p-locate@^5.0.0:
dependencies:
p-limit "^3.0.2"
-p-map-series@^1.0.0:
- version "1.0.0"
- resolved "https://registry.npmjs.org/p-map-series/-/p-map-series-1.0.0.tgz"
- integrity sha1-v5j+V1cFZYqeE1G++4WuTB8Hvco=
- dependencies:
- p-reduce "^1.0.0"
-
p-map@^2.0.0:
version "2.1.0"
resolved "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz"
@@ -8756,11 +8053,6 @@ p-queue@^6.6.2:
eventemitter3 "^4.0.4"
p-timeout "^3.2.0"
-p-reduce@^1.0.0:
- version "1.0.0"
- resolved "https://registry.npmjs.org/p-reduce/-/p-reduce-1.0.0.tgz"
- integrity sha1-GMKw3ZNqRpClKfgjH1ig/bakffo=
-
p-reduce@^2.0.0:
version "2.1.0"
resolved "https://registry.npmjs.org/p-reduce/-/p-reduce-2.1.0.tgz"
@@ -8774,21 +8066,7 @@ p-retry@^4.0.0:
"@types/retry" "^0.12.0"
retry "^0.13.1"
-p-timeout@^1.1.1:
- version "1.2.1"
- resolved "https://registry.npmjs.org/p-timeout/-/p-timeout-1.2.1.tgz"
- integrity sha1-XrOzU7f86Z8QGhA4iAuwVOu+o4Y=
- dependencies:
- p-finally "^1.0.0"
-
-p-timeout@^2.0.1:
- version "2.0.1"
- resolved "https://registry.npmjs.org/p-timeout/-/p-timeout-2.0.1.tgz"
- integrity sha512-88em58dDVB/KzPEx1X0N3LwFfYZPyDc4B6eF38M1rk9VTZMbxXXgjugz8mmwpS9Ox4BDZ+t6t3QP5+/gazweIA==
- dependencies:
- p-finally "^1.0.0"
-
-p-timeout@^3.1.0, p-timeout@^3.2.0:
+p-timeout@^3.2.0:
version "3.2.0"
resolved "https://registry.npmjs.org/p-timeout/-/p-timeout-3.2.0.tgz"
integrity sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==
@@ -8813,15 +8091,15 @@ p-try@^2.0.0:
resolved "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz"
integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==
-pacote@^11.1.11, pacote@^11.2.6, pacote@^11.3.0, pacote@^11.3.1, pacote@^11.3.5:
- version "11.3.5"
- resolved "https://registry.npmjs.org/pacote/-/pacote-11.3.5.tgz"
- integrity sha512-fT375Yczn4zi+6Hkk2TBe1x1sP8FgFsEIZ2/iWaXY2r/NkhDJfxbcn5paz1+RTFCyNf+dPnaoBDJoAxXSU8Bkg==
+pacote@^12.0.0, pacote@^12.0.2:
+ version "12.0.2"
+ resolved "https://registry.npmjs.org/pacote/-/pacote-12.0.2.tgz"
+ integrity sha512-Ar3mhjcxhMzk+OVZ8pbnXdb0l8+pimvlsqBGRNkble2NVgyqOGE3yrCGi/lAYq7E7NRDMz89R1Wx5HIMCGgeYg==
dependencies:
"@npmcli/git" "^2.1.0"
"@npmcli/installed-package-contents" "^1.0.6"
"@npmcli/promise-spawn" "^1.2.0"
- "@npmcli/run-script" "^1.8.2"
+ "@npmcli/run-script" "^2.0.0"
cacache "^15.0.5"
chownr "^2.0.0"
fs-minipass "^2.1.0"
@@ -8829,7 +8107,7 @@ pacote@^11.1.11, pacote@^11.2.6, pacote@^11.3.0, pacote@^11.3.1, pacote@^11.3.5:
minipass "^3.1.3"
mkdirp "^1.0.3"
npm-package-arg "^8.0.1"
- npm-packlist "^2.1.4"
+ npm-packlist "^3.0.0"
npm-pick-manifest "^6.0.0"
npm-registry-fetch "^11.0.0"
promise-retry "^2.0.1"
@@ -8838,30 +8116,32 @@ pacote@^11.1.11, pacote@^11.2.6, pacote@^11.3.0, pacote@^11.3.1, pacote@^11.3.5:
ssri "^8.0.1"
tar "^6.1.0"
-pacote@^12.0.0, pacote@^12.0.2:
- version "12.0.2"
- resolved "https://registry.npmjs.org/pacote/-/pacote-12.0.2.tgz"
- integrity sha512-Ar3mhjcxhMzk+OVZ8pbnXdb0l8+pimvlsqBGRNkble2NVgyqOGE3yrCGi/lAYq7E7NRDMz89R1Wx5HIMCGgeYg==
+pacote@^13.0.3, pacote@^13.0.5:
+ version "13.0.5"
+ resolved "https://registry.yarnpkg.com/pacote/-/pacote-13.0.5.tgz#d6f370b11112492d8257ae1178a003b36d4bb261"
+ integrity sha512-6CYfot3/rUAn3qqzF2d/jrrXm5HlBtvaSgfmg0VtOUAdJ8fbSq21BJwftMGArkL71yXHIbUJ7Bt5B04547HELA==
dependencies:
- "@npmcli/git" "^2.1.0"
- "@npmcli/installed-package-contents" "^1.0.6"
+ "@npmcli/git" "^3.0.0"
+ "@npmcli/installed-package-contents" "^1.0.7"
"@npmcli/promise-spawn" "^1.2.0"
- "@npmcli/run-script" "^2.0.0"
- cacache "^15.0.5"
+ "@npmcli/run-script" "^3.0.1"
+ cacache "^16.0.0"
chownr "^2.0.0"
fs-minipass "^2.1.0"
infer-owner "^1.0.4"
- minipass "^3.1.3"
- mkdirp "^1.0.3"
- npm-package-arg "^8.0.1"
- npm-packlist "^3.0.0"
- npm-pick-manifest "^6.0.0"
- npm-registry-fetch "^11.0.0"
+ minipass "^3.1.6"
+ mkdirp "^1.0.4"
+ npm-package-arg "^9.0.0"
+ npm-packlist "^4.0.0"
+ npm-pick-manifest "^7.0.0"
+ npm-registry-fetch "^13.0.1"
+ proc-log "^2.0.0"
promise-retry "^2.0.1"
- read-package-json-fast "^2.0.1"
+ read-package-json "^5.0.0"
+ read-package-json-fast "^2.0.3"
rimraf "^3.0.2"
ssri "^8.0.1"
- tar "^6.1.0"
+ tar "^6.1.11"
pad-component@0.0.1:
version "0.0.1"
@@ -8875,15 +8155,6 @@ parent-module@^1.0.0:
dependencies:
callsites "^3.0.0"
-parse-conflict-json@^1.1.1:
- version "1.1.1"
- resolved "https://registry.npmjs.org/parse-conflict-json/-/parse-conflict-json-1.1.1.tgz"
- integrity sha512-4gySviBiW5TRl7XHvp1agcS7SOe0KZOjC//71dzZVWJrY9hCrgtvl5v3SyIxCZ4fZF47TxD9nfzmxcx76xmbUw==
- dependencies:
- json-parse-even-better-errors "^2.3.0"
- just-diff "^3.0.1"
- just-diff-apply "^3.0.0"
-
parse-conflict-json@^2.0.1:
version "2.0.1"
resolved "https://registry.npmjs.org/parse-conflict-json/-/parse-conflict-json-2.0.1.tgz"
@@ -8893,6 +8164,15 @@ parse-conflict-json@^2.0.1:
just-diff "^5.0.1"
just-diff-apply "^4.0.1"
+parse-conflict-json@^2.0.2:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/parse-conflict-json/-/parse-conflict-json-2.0.2.tgz#3d05bc8ffe07d39600dc6436c6aefe382033d323"
+ integrity sha512-jDbRGb00TAPFsKWCpZZOT93SxVP9nONOSgES3AevqRq/CHvavEBvKAjxX9p5Y5F0RZLxH9Ufd9+RwtCsa+lFDA==
+ dependencies:
+ json-parse-even-better-errors "^2.3.1"
+ just-diff "^5.0.1"
+ just-diff-apply "^5.2.0"
+
parse-glob@^3.0.4:
version "3.0.4"
resolved "https://registry.npmjs.org/parse-glob/-/parse-glob-3.0.4.tgz"
@@ -8921,16 +8201,6 @@ parse-json@^5.0.0:
json-parse-even-better-errors "^2.3.0"
lines-and-columns "^1.1.6"
-parse-path@^4.0.0:
- version "4.0.3"
- resolved "https://registry.npmjs.org/parse-path/-/parse-path-4.0.3.tgz"
- integrity sha512-9Cepbp2asKnWTJ9x2kpw6Fe8y9JDbqwahGCTvklzd/cEq5C5JC59x2Xb0Kx+x0QZ8bvNquGO8/BWP0cwBHzSAA==
- dependencies:
- is-ssh "^1.3.0"
- protocols "^1.4.0"
- qs "^6.9.4"
- query-string "^6.13.8"
-
parse5@6.0.1:
version "6.0.1"
resolved "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz"
@@ -8999,16 +8269,6 @@ pathval@^1.1.1:
resolved "https://registry.npmjs.org/pathval/-/pathval-1.1.1.tgz"
integrity sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==
-pend@~1.2.0:
- version "1.2.0"
- resolved "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz"
- integrity sha1-elfrVQpng/kRUzH89GY9XI4AelA=
-
-performance-now@^2.1.0:
- version "2.1.0"
- resolved "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz"
- integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=
-
picocolors@^1.0.0:
version "1.0.0"
resolved "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz"
@@ -9034,18 +8294,6 @@ pify@^4.0.1:
resolved "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz"
integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==
-pinkie-promise@^2.0.0:
- version "2.0.1"
- resolved "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz"
- integrity sha1-ITXW36ejWMBprJsXh3YogihFD/o=
- dependencies:
- pinkie "^2.0.0"
-
-pinkie@^2.0.0:
- version "2.0.4"
- resolved "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz"
- integrity sha1-clVrgM+g1IqXToDnckjoDtT3+HA=
-
pirates@^4.0.4:
version "4.0.5"
resolved "https://registry.npmjs.org/pirates/-/pirates-4.0.5.tgz"
@@ -9105,16 +8353,6 @@ prelude-ls@~1.1.2:
resolved "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz"
integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=
-prepend-http@^1.0.1:
- version "1.0.4"
- resolved "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz"
- integrity sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=
-
-prepend-http@^2.0.0:
- version "2.0.0"
- resolved "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz"
- integrity sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=
-
preserve@^0.2.0:
version "0.2.0"
resolved "https://registry.npmjs.org/preserve/-/preserve-0.2.0.tgz"
@@ -9146,6 +8384,11 @@ proc-log@^1.0.0:
resolved "https://registry.npmjs.org/proc-log/-/proc-log-1.0.0.tgz"
integrity sha512-aCk8AO51s+4JyuYGg3Q/a6gnrlDO09NpVWePtjp7xwphcoQ04x5WAfCyugcsbLooWcMJ87CLkD4+604IckEdhg==
+proc-log@^2.0.0, proc-log@^2.0.1:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/proc-log/-/proc-log-2.0.1.tgz#8f3f69a1f608de27878f91f5c688b225391cb685"
+ integrity sha512-Kcmo2FhfDTXdcbfDH76N7uBYHINxc/8GW7UAVuVP9I+Va3uHSerrnKV6dLooga/gh7GlgzuCCr/eoldnL1muGw==
+
process-nextick-args@^2.0.0, process-nextick-args@~2.0.0:
version "2.0.1"
resolved "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz"
@@ -9208,16 +8451,6 @@ propagate@^2.0.0:
resolved "https://registry.npmjs.org/propagate/-/propagate-2.0.1.tgz"
integrity sha512-vGrhOavPSTz4QVNuBNdcNXePNdNMaO1xj9yBeH1ScQPjk/rhg9sSlCXPhMkFuaNNW/syTvYqsnbIJxMBfRbbag==
-proto-list@~1.2.1:
- version "1.2.4"
- resolved "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz"
- integrity sha1-IS1b/hMYMGpCD2QCuOJv85ZHqEk=
-
-protocols@^1.1.0, protocols@^1.4.0:
- version "1.4.8"
- resolved "https://registry.npmjs.org/protocols/-/protocols-1.4.8.tgz"
- integrity sha512-IgjKyaUSjsROSO8/D49Ab7hP8mJgTYcqApOqdPhLoPxAplXmkp+zRvsrSQjFn5by0rhm4VH0GAUELIPpx7B1yg==
-
proxy-addr@~2.0.7:
version "2.0.7"
resolved "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz"
@@ -9226,12 +8459,7 @@ proxy-addr@~2.0.7:
forwarded "0.2.0"
ipaddr.js "1.9.1"
-pseudomap@^1.0.2:
- version "1.0.2"
- resolved "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz"
- integrity sha1-8FKijacOYYkX7wqKw0wa5aaChrM=
-
-psl@^1.1.28, psl@^1.1.33:
+psl@^1.1.33:
version "1.8.0"
resolved "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz"
integrity sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==
@@ -9288,37 +8516,6 @@ qs@6.9.6:
resolved "https://registry.npmjs.org/qs/-/qs-6.9.6.tgz"
integrity sha512-TIRk4aqYLNoJUbd+g2lEdz5kLWIuTMRagAXxl78Q0RiVjAOugHmeKNGdd3cwo/ktpf9aL9epCfFqWDEKysUlLQ==
-qs@^6.9.4:
- version "6.10.3"
- resolved "https://registry.npmjs.org/qs/-/qs-6.10.3.tgz"
- integrity sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==
- dependencies:
- side-channel "^1.0.4"
-
-qs@~6.5.2:
- version "6.5.3"
- resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.3.tgz#3aeeffc91967ef6e35c0e488ef46fb296ab76aad"
- integrity sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==
-
-query-string@^5.0.1:
- version "5.1.1"
- resolved "https://registry.npmjs.org/query-string/-/query-string-5.1.1.tgz"
- integrity sha512-gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw==
- dependencies:
- decode-uri-component "^0.2.0"
- object-assign "^4.1.0"
- strict-uri-encode "^1.0.0"
-
-query-string@^6.13.8:
- version "6.14.1"
- resolved "https://registry.npmjs.org/query-string/-/query-string-6.14.1.tgz"
- integrity sha512-XDxAeVmpfu1/6IjyT/gXHOl+S0vQ9owggJ30hhWKdHAsNPOcasn5o9BW0eejZqL2e4vMjhAxoW3jVHcD6mbcYw==
- dependencies:
- decode-uri-component "^0.2.0"
- filter-obj "^1.1.0"
- split-on-first "^1.0.0"
- strict-uri-encode "^2.0.0"
-
querystring@0.2.0:
version "0.2.0"
resolved "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz"
@@ -9401,6 +8598,16 @@ read-package-json@^4.1.1:
normalize-package-data "^3.0.0"
npm-normalize-package-bin "^1.0.0"
+read-package-json@^5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/read-package-json/-/read-package-json-5.0.0.tgz#d62602755547e152a3923c220238d9a7f0b60745"
+ integrity sha512-1cjk2MV5ONDMn34uxSID3X8NY7VKsXfJnjbcVdFMvHEnJOBzU6MJ7/3yg6QFVZDq5/1yFNrKBUK9kGnonyGP2Q==
+ dependencies:
+ glob "^7.2.0"
+ json-parse-even-better-errors "^2.3.1"
+ normalize-package-data "^4.0.0"
+ npm-normalize-package-bin "^1.0.1"
+
read-pkg-up@^7.0.0, read-pkg-up@^7.0.1:
version "7.0.1"
resolved "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz"
@@ -9436,7 +8643,7 @@ readable-stream@3, readable-stream@^3.0.0, readable-stream@^3.1.1, readable-stre
string_decoder "^1.1.1"
util-deprecate "^1.0.1"
-readable-stream@^2.0.0, readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.3.0, readable-stream@^2.3.5, readable-stream@~2.3.6:
+readable-stream@^2.0.0, readable-stream@^2.0.2, readable-stream@^2.3.5, readable-stream@~2.3.6:
version "2.3.7"
resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz"
integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==
@@ -9542,32 +8749,6 @@ replace-ext@^1.0.0:
resolved "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.1.tgz"
integrity sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==
-request@^2.88.2:
- version "2.88.2"
- resolved "https://registry.npmjs.org/request/-/request-2.88.2.tgz"
- integrity sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==
- dependencies:
- aws-sign2 "~0.7.0"
- aws4 "^1.8.0"
- caseless "~0.12.0"
- combined-stream "~1.0.6"
- extend "~3.0.2"
- forever-agent "~0.6.1"
- form-data "~2.3.2"
- har-validator "~5.1.3"
- http-signature "~1.2.0"
- is-typedarray "~1.0.0"
- isstream "~0.1.2"
- json-stringify-safe "~5.0.1"
- mime-types "~2.1.19"
- oauth-sign "~0.9.0"
- performance-now "^2.1.0"
- qs "~6.5.2"
- safe-buffer "^5.1.2"
- tough-cookie "~2.5.0"
- tunnel-agent "^0.6.0"
- uuid "^3.3.2"
-
require-directory@^2.1.1:
version "2.1.1"
resolved "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz"
@@ -9623,20 +8804,6 @@ resolve@^1.1.7, resolve@^1.10.0, resolve@^1.20.0:
path-parse "^1.0.7"
supports-preserve-symlinks-flag "^1.0.0"
-responselike@1.0.2:
- version "1.0.2"
- resolved "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz"
- integrity sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec=
- dependencies:
- lowercase-keys "^1.0.0"
-
-responselike@^2.0.0:
- version "2.0.0"
- resolved "https://registry.npmjs.org/responselike/-/responselike-2.0.0.tgz"
- integrity sha512-xH48u3FTB9VsZw7R+vvgaKeLKzT6jOogbQhEe/jewwnZgzPcnyWui2Av6JpoYZF/91uueC+lqhWqeURw5/qhCw==
- dependencies:
- lowercase-keys "^2.0.0"
-
restore-cursor@^3.1.0:
version "3.1.0"
resolved "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz"
@@ -9710,7 +8877,7 @@ rxjs@^7.1.0, rxjs@^7.2.0, rxjs@^7.5.1:
dependencies:
tslib "^2.1.0"
-safe-buffer@5.2.1, safe-buffer@^5.0.1, safe-buffer@^5.1.1, safe-buffer@^5.1.2:
+safe-buffer@5.2.1, safe-buffer@^5.0.1, safe-buffer@^5.1.2:
version "5.2.1"
resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz"
integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==
@@ -9727,7 +8894,7 @@ safe-regex@^1.1.0:
dependencies:
ret "~0.1.10"
-"safer-buffer@>= 2.1.2 < 3", "safer-buffer@>= 2.1.2 < 3.0.0", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0:
+"safer-buffer@>= 2.1.2 < 3", "safer-buffer@>= 2.1.2 < 3.0.0":
version "2.1.2"
resolved "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz"
integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==
@@ -9754,23 +8921,16 @@ scoped-regex@^2.0.0:
resolved "https://registry.npmjs.org/scoped-regex/-/scoped-regex-2.1.0.tgz"
integrity sha512-g3WxHrqSWCZHGHlSrF51VXFdjImhwvH8ZO/pryFH56Qi0cDsZfylQa/t0jCzVQFNbNvM00HfHjkDPEuarKDSWQ==
-seek-bzip@^1.0.5:
- version "1.0.6"
- resolved "https://registry.npmjs.org/seek-bzip/-/seek-bzip-1.0.6.tgz"
- integrity sha512-e1QtP3YL5tWww8uKaOCQ18UxIT2laNBXHjV/S2WYCiK4udiv8lkG89KRIoCjUagnAmCBurjF4zEVX2ByBbnCjQ==
- dependencies:
- commander "^2.8.1"
-
-semantic-release@^17.4.4:
- version "17.4.7"
- resolved "https://registry.npmjs.org/semantic-release/-/semantic-release-17.4.7.tgz"
- integrity sha512-3Ghu8mKCJgCG3QzE5xphkYWM19lGE3XjFdOXQIKBM2PBpBvgFQ/lXv31oX0+fuN/UjNFO/dqhNs8ATLBhg6zBg==
+semantic-release@^19.0.2:
+ version "19.0.2"
+ resolved "https://registry.yarnpkg.com/semantic-release/-/semantic-release-19.0.2.tgz#6011683c06d7b416e5faa5a3f43b22bbf3798aa8"
+ integrity sha512-7tPonjZxukKECmClhsfyMKDt0GR38feIC2HxgyYaBi+9tDySBLjK/zYDLhh+m6yjnHIJa9eBTKYE7k63ZQcYbw==
dependencies:
- "@semantic-release/commit-analyzer" "^8.0.0"
- "@semantic-release/error" "^2.2.0"
- "@semantic-release/github" "^7.0.0"
- "@semantic-release/npm" "^7.0.0"
- "@semantic-release/release-notes-generator" "^9.0.0"
+ "@semantic-release/commit-analyzer" "^9.0.2"
+ "@semantic-release/error" "^3.0.0"
+ "@semantic-release/github" "^8.0.0"
+ "@semantic-release/npm" "^9.0.0"
+ "@semantic-release/release-notes-generator" "^10.0.0"
aggregate-error "^3.0.0"
cosmiconfig "^7.0.0"
debug "^4.0.0"
@@ -9783,8 +8943,8 @@ semantic-release@^17.4.4:
hook-std "^2.0.0"
hosted-git-info "^4.0.0"
lodash "^4.17.21"
- marked "^2.0.0"
- marked-terminal "^4.1.1"
+ marked "^4.0.10"
+ marked-terminal "^5.0.0"
micromatch "^4.0.2"
p-each-series "^2.1.0"
p-reduce "^2.0.0"
@@ -9812,12 +8972,12 @@ semver-regex@^3.1.2:
resolved "https://registry.npmjs.org/semver-regex/-/semver-regex-3.1.3.tgz"
integrity sha512-Aqi54Mk9uYTjVexLnR67rTyBusmwd04cLkHy9hNvk3+G3nT2Oyg7E0l4XVbOaNwIvQ3hHeYxGcyEy+mKreyBFQ==
-"semver@2 || 3 || 4 || 5", semver@^5.5.0, semver@^5.6.0:
+"semver@2 || 3 || 4 || 5", semver@^5.5.0:
version "5.7.1"
resolved "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz"
integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==
-semver@7.x, semver@^7.1.1, semver@^7.1.2, semver@^7.1.3, semver@^7.2.1, semver@^7.3.2, semver@^7.3.4, semver@^7.3.5:
+semver@7.x, semver@^7.0.0, semver@^7.1.1, semver@^7.1.2, semver@^7.1.3, semver@^7.2.1, semver@^7.3.2, semver@^7.3.4, semver@^7.3.5:
version "7.3.5"
resolved "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz"
integrity sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==
@@ -9858,7 +9018,7 @@ serve-static@1.14.2:
parseurl "~1.3.3"
send "0.17.2"
-set-blocking@^2.0.0, set-blocking@~2.0.0:
+set-blocking@^2.0.0:
version "2.0.0"
resolved "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz"
integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc=
@@ -9930,6 +9090,11 @@ signal-exit@^3.0.0, signal-exit@^3.0.2, signal-exit@^3.0.3:
resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.6.tgz"
integrity sha512-sDl4qMFpijcGw22U5w63KmD3cZJfBuFlVNbVMKje2keoKML7X2UzWbc4XrmEbDwg0NXJc3yv4/ox7b+JWb57kQ==
+signal-exit@^3.0.7:
+ version "3.0.7"
+ resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9"
+ integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==
+
signale@^1.2.1:
version "1.4.0"
resolved "https://registry.npmjs.org/signale/-/signale-1.4.0.tgz"
@@ -10026,27 +9191,6 @@ sonic-boom@^2.1.0:
dependencies:
atomic-sleep "^1.0.0"
-sort-keys-length@^1.0.0:
- version "1.0.1"
- resolved "https://registry.npmjs.org/sort-keys-length/-/sort-keys-length-1.0.1.tgz"
- integrity sha1-nLb09OnkgVWmqgZx7dM2/xR5oYg=
- dependencies:
- sort-keys "^1.0.0"
-
-sort-keys@^1.0.0:
- version "1.1.2"
- resolved "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz"
- integrity sha1-RBttTTRnmPG05J6JIK37oOVD+a0=
- dependencies:
- is-plain-obj "^1.0.0"
-
-sort-keys@^2.0.0:
- version "2.0.0"
- resolved "https://registry.npmjs.org/sort-keys/-/sort-keys-2.0.0.tgz"
- integrity sha1-ZYU1WEhh7JfXMNbPQYIuH1ZoQSg=
- dependencies:
- is-plain-obj "^1.0.0"
-
sort-keys@^4.0.0, sort-keys@^4.2.0:
version "4.2.0"
resolved "https://registry.npmjs.org/sort-keys/-/sort-keys-4.2.0.tgz"
@@ -10129,11 +9273,6 @@ spdx-license-ids@^3.0.0:
resolved "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.11.tgz"
integrity sha512-Ctl2BrFiM0X3MANYgj3CkygxhRmr9mi6xhejbdO960nF6EDJApTYpn0BQnDKlnNBULKiCN1n3w9EBkHK8ZWg+g==
-split-on-first@^1.0.0:
- version "1.1.0"
- resolved "https://registry.npmjs.org/split-on-first/-/split-on-first-1.1.0.tgz"
- integrity sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==
-
split-string@^3.0.1, split-string@^3.0.2:
version "3.1.0"
resolved "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz"
@@ -10167,21 +9306,6 @@ sprintf-js@~1.0.2:
resolved "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz"
integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=
-sshpk@^1.7.0:
- version "1.17.0"
- resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.17.0.tgz#578082d92d4fe612b13007496e543fa0fbcbe4c5"
- integrity sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ==
- dependencies:
- asn1 "~0.2.3"
- assert-plus "^1.0.0"
- bcrypt-pbkdf "^1.0.0"
- dashdash "^1.12.0"
- ecc-jsbn "~0.1.1"
- getpass "^0.1.1"
- jsbn "~0.1.0"
- safer-buffer "^2.0.2"
- tweetnacl "~0.14.0"
-
ssri@^8.0.0, ssri@^8.0.1:
version "8.0.1"
resolved "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz"
@@ -10189,6 +9313,13 @@ ssri@^8.0.0, ssri@^8.0.1:
dependencies:
minipass "^3.1.1"
+ssri@^9.0.0:
+ version "9.0.0"
+ resolved "https://registry.yarnpkg.com/ssri/-/ssri-9.0.0.tgz#70ad90e339eb910f1a7ff1dcf4afc268326c4547"
+ integrity sha512-Y1Z6J8UYnexKFN1R/hxUaYoY2LVdKEzziPmVAFKiKX8fiwvCJTVzn/xYE9TEWod5OVyNfIHHuVfIEuBClL/uJQ==
+ dependencies:
+ minipass "^3.1.1"
+
stack-utils@^2.0.3:
version "2.0.5"
resolved "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.5.tgz"
@@ -10232,16 +9363,6 @@ stream-combiner2@~1.1.1:
duplexer2 "~0.1.0"
readable-stream "^2.0.2"
-strict-uri-encode@^1.0.0:
- version "1.1.0"
- resolved "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz"
- integrity sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM=
-
-strict-uri-encode@^2.0.0:
- version "2.0.0"
- resolved "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz"
- integrity sha1-ucczDHBChi9rFC3CdLvMWGbONUY=
-
string-argv@0.3.1:
version "0.3.1"
resolved "https://registry.npmjs.org/string-argv/-/string-argv-0.3.1.tgz"
@@ -10371,23 +9492,11 @@ strip-bom@^4.0.0:
resolved "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz"
integrity sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==
-strip-dirs@^2.0.0:
- version "2.1.0"
- resolved "https://registry.npmjs.org/strip-dirs/-/strip-dirs-2.1.0.tgz"
- integrity sha512-JOCxOeKLm2CAS73y/U4ZeZPTkE+gNVCzKt7Eox84Iej1LT/2pTWYpZKJuxwQpvX1LiZb1xokNR7RLfuBAa7T3g==
- dependencies:
- is-natural-number "^4.0.1"
-
strip-eof@^1.0.0:
version "1.0.0"
resolved "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz"
integrity sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=
-strip-eof@^2.0.0:
- version "2.0.0"
- resolved "https://registry.npmjs.org/strip-eof/-/strip-eof-2.0.0.tgz"
- integrity sha512-zLsJC+5P5hGu4Zmoq6I4uo6bTf1Nx6Z/vnZedxwnrcfkc38Vz6UiuqGOtS9bewFaoTCDErpqkV7v02htp9KEow==
-
strip-final-newline@^2.0.0:
version "2.0.0"
resolved "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz"
@@ -10410,13 +9519,6 @@ strip-json-comments@~2.0.1:
resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz"
integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo=
-strip-outer@^1.0.0:
- version "1.0.1"
- resolved "https://registry.npmjs.org/strip-outer/-/strip-outer-1.0.1.tgz"
- integrity sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==
- dependencies:
- escape-string-regexp "^1.0.2"
-
subarg@^1.0.0:
version "1.0.0"
resolved "https://registry.npmjs.org/subarg/-/subarg-1.0.0.tgz"
@@ -10461,7 +9563,7 @@ supports-color@^7.0.0, supports-color@^7.1.0:
dependencies:
has-flag "^4.0.0"
-supports-hyperlinks@^2.0.0, supports-hyperlinks@^2.1.0, supports-hyperlinks@^2.2.0:
+supports-hyperlinks@^2.0.0, supports-hyperlinks@^2.2.0:
version "2.2.0"
resolved "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.2.0.tgz"
integrity sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ==
@@ -10518,19 +9620,6 @@ tar-fs@^2.0.0:
pump "^3.0.0"
tar-stream "^2.1.4"
-tar-stream@^1.5.2:
- version "1.6.2"
- resolved "https://registry.npmjs.org/tar-stream/-/tar-stream-1.6.2.tgz"
- integrity sha512-rzS0heiNf8Xn7/mpdSVVSMAWAoy9bfb1WOTYC78Z0UQKeKa/CWS8FOq0lKGNa8DWKAn9gxjCvMLYc5PGXYlK2A==
- dependencies:
- bl "^1.0.0"
- buffer-alloc "^1.2.0"
- end-of-stream "^1.0.0"
- fs-constants "^1.0.0"
- readable-stream "^2.3.0"
- to-buffer "^1.1.1"
- xtend "^4.0.0"
-
tar-stream@^2.1.4:
version "2.2.0"
resolved "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz"
@@ -10554,32 +9643,11 @@ tar@^6.0.2, tar@^6.1.0, tar@^6.1.11, tar@^6.1.2:
mkdirp "^1.0.3"
yallist "^4.0.0"
-temp-dir@^1.0.0:
- version "1.0.0"
- resolved "https://registry.npmjs.org/temp-dir/-/temp-dir-1.0.0.tgz"
- integrity sha1-CnwOom06Oa+n4OvqnB/AvE2qAR0=
-
temp-dir@^2.0.0:
version "2.0.0"
resolved "https://registry.npmjs.org/temp-dir/-/temp-dir-2.0.0.tgz"
integrity sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==
-tempfile@^2.0.0:
- version "2.0.0"
- resolved "https://registry.npmjs.org/tempfile/-/tempfile-2.0.0.tgz"
- integrity sha1-awRGhWqbERTRhW/8vlCczLCXcmU=
- dependencies:
- temp-dir "^1.0.0"
- uuid "^3.0.1"
-
-tempfile@^3.0.0:
- version "3.0.0"
- resolved "https://registry.npmjs.org/tempfile/-/tempfile-3.0.0.tgz"
- integrity sha512-uNFCg478XovRi85iD42egu+eSFUmmka750Jy7L5tfHI5hQKKtbPnxaSaXAbBqCDYrw3wx4tXjKwci4/QmsZJxw==
- dependencies:
- temp-dir "^2.0.0"
- uuid "^3.3.2"
-
tempy@^1.0.0:
version "1.0.1"
resolved "https://registry.npmjs.org/tempy/-/tempy-1.0.1.tgz"
@@ -10648,11 +9716,6 @@ through@2, "through@>=2.2.7 <3", through@^2.3.6, through@^2.3.8:
resolved "https://registry.npmjs.org/through/-/through-2.3.8.tgz"
integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=
-timed-out@^4.0.0, timed-out@^4.0.1:
- version "4.0.1"
- resolved "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz"
- integrity sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8=
-
tiny-relative-date@^1.3.0:
version "1.3.0"
resolved "https://registry.npmjs.org/tiny-relative-date/-/tiny-relative-date-1.3.0.tgz"
@@ -10677,11 +9740,6 @@ tmpl@1.0.5:
resolved "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz"
integrity sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==
-to-buffer@^1.1.1:
- version "1.1.1"
- resolved "https://registry.npmjs.org/to-buffer/-/to-buffer-1.1.1.tgz"
- integrity sha512-lx9B5iv7msuFYE3dytT+KE5tap+rNYw+K4jVkb9R/asAb+pbBSM17jtunHplhBe6RRJdZx3Pn2Jph24O32mOVg==
-
to-fast-properties@^2.0.0:
version "2.0.0"
resolved "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz"
@@ -10694,11 +9752,6 @@ to-object-path@^0.3.0:
dependencies:
kind-of "^3.0.2"
-to-readable-stream@^2.0.0:
- version "2.1.0"
- resolved "https://registry.npmjs.org/to-readable-stream/-/to-readable-stream-2.1.0.tgz"
- integrity sha512-o3Qa6DGg1CEXshSdvWNX2sN4QHqg03SPq7U6jPXRahlQdl5dK8oXjkU/2/sGrnOZKeGV1zLSO8qPwyKklPPE7w==
-
to-regex-range@^2.1.0:
version "2.1.1"
resolved "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz"
@@ -10738,14 +9791,6 @@ tough-cookie@^4.0.0:
punycode "^2.1.1"
universalify "^0.1.2"
-tough-cookie@~2.5.0:
- version "2.5.0"
- resolved "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz"
- integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==
- dependencies:
- psl "^1.1.28"
- punycode "^2.1.1"
-
tr46@^2.1.0:
version "2.1.0"
resolved "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz"
@@ -10778,13 +9823,6 @@ trim-newlines@^3.0.0:
resolved "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.1.tgz"
integrity sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==
-trim-repeated@^1.0.0:
- version "1.0.0"
- resolved "https://registry.npmjs.org/trim-repeated/-/trim-repeated-1.0.0.tgz"
- integrity sha1-42RqLqTokTEr9+rObPsFOAvAHCE=
- dependencies:
- escape-string-regexp "^1.0.2"
-
ts-invariant@^0.4.0:
version "0.4.4"
resolved "https://registry.npmjs.org/ts-invariant/-/ts-invariant-0.4.4.tgz"
@@ -10865,11 +9903,6 @@ tunnel-agent@^0.6.0:
dependencies:
safe-buffer "^5.0.1"
-tweetnacl@^0.14.3, tweetnacl@~0.14.0:
- version "0.14.5"
- resolved "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz"
- integrity sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=
-
type-check@^0.4.0, type-check@~0.4.0:
version "0.4.0"
resolved "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz"
@@ -10889,11 +9922,6 @@ type-detect@4.0.8, type-detect@^4.0.0, type-detect@^4.0.5:
resolved "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz"
integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==
-type-fest@^0.10.0:
- version "0.10.0"
- resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.10.0.tgz"
- integrity sha512-EUV9jo4sffrwlg8s0zDhP0T2WD3pru5Xi0+HTE3zTUmBaZNhfkite9PdSJwdXLwPVW0jnAHT56pZHIOYckPEiw==
-
type-fest@^0.16.0:
version "0.16.0"
resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.16.0.tgz"
@@ -10924,6 +9952,11 @@ type-fest@^0.8.1:
resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz"
integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==
+type-fest@^1.0.2:
+ version "1.4.0"
+ resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-1.4.0.tgz#e9fb813fe3bf1744ec359d55d1affefa76f14be1"
+ integrity sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==
+
type-is@~1.6.18:
version "1.6.18"
resolved "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz"
@@ -10964,14 +9997,6 @@ unbox-primitive@^1.0.1:
has-symbols "^1.0.2"
which-boxed-primitive "^1.0.2"
-unbzip2-stream@^1.0.9:
- version "1.4.3"
- resolved "https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz"
- integrity sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==
- dependencies:
- buffer "^5.2.1"
- through "^2.3.8"
-
underscore@1.12.1:
version "1.12.1"
resolved "https://registry.npmjs.org/underscore/-/underscore-1.12.1.tgz"
@@ -11065,25 +10090,6 @@ url-join@^4.0.0:
resolved "https://registry.npmjs.org/url-join/-/url-join-4.0.1.tgz"
integrity sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==
-url-parse-lax@^1.0.0:
- version "1.0.0"
- resolved "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-1.0.0.tgz"
- integrity sha1-evjzA2Rem9eaJy56FKxovAYJ2nM=
- dependencies:
- prepend-http "^1.0.1"
-
-url-parse-lax@^3.0.0:
- version "3.0.0"
- resolved "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz"
- integrity sha1-FrXK/Afb42dsGxmZF3gj1lA6yww=
- dependencies:
- prepend-http "^2.0.0"
-
-url-to-options@^1.0.1:
- version "1.0.1"
- resolved "https://registry.npmjs.org/url-to-options/-/url-to-options-1.0.1.tgz"
- integrity sha1-FQWgOiiaSMvXpDTvuu7FBV9WM6k=
-
url@0.10.3:
version "0.10.3"
resolved "https://registry.npmjs.org/url/-/url-0.10.3.tgz"
@@ -11132,11 +10138,6 @@ uuid@3.3.2:
resolved "https://registry.npmjs.org/uuid/-/uuid-3.3.2.tgz"
integrity sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==
-uuid@^3.0.1, uuid@^3.3.2:
- version "3.4.0"
- resolved "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz"
- integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==
-
uuid@^8.3.2:
version "8.3.2"
resolved "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz"
@@ -11171,6 +10172,13 @@ validate-npm-package-name@^3.0.0, validate-npm-package-name@~3.0.0:
dependencies:
builtins "^1.0.3"
+validate-npm-package-name@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/validate-npm-package-name/-/validate-npm-package-name-4.0.0.tgz#fe8f1c50ac20afdb86f177da85b3600f0ac0d747"
+ integrity sha512-mzR0L8ZDktZjpX4OB46KT+56MAhl4EIazWP/+G/HPGuvfdaqg4YsCdtOm6U9+LOFyYDoh4dpnpxZRB9MQQns5Q==
+ dependencies:
+ builtins "^5.0.0"
+
value-or-promise@1.0.11:
version "1.0.11"
resolved "https://registry.npmjs.org/value-or-promise/-/value-or-promise-1.0.11.tgz"
@@ -11181,15 +10189,6 @@ vary@~1.1.2:
resolved "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz"
integrity sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=
-verror@1.10.0:
- version "1.10.0"
- resolved "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz"
- integrity sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=
- dependencies:
- assert-plus "^1.0.0"
- core-util-is "1.0.2"
- extsprintf "^1.2.0"
-
vinyl-file@^3.0.0:
version "3.0.0"
resolved "https://registry.npmjs.org/vinyl-file/-/vinyl-file-3.0.0.tgz"
@@ -11340,7 +10339,7 @@ which@^2.0.1, which@^2.0.2:
dependencies:
isexe "^2.0.0"
-wide-align@^1.1.0, wide-align@^1.1.2:
+wide-align@^1.1.2:
version "1.1.5"
resolved "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz"
integrity sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==
@@ -11423,6 +10422,14 @@ write-file-atomic@^4.0.0:
signal-exit "^3.0.2"
typedarray-to-buffer "^4.0.0"
+write-file-atomic@^4.0.1:
+ version "4.0.1"
+ resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-4.0.1.tgz#9faa33a964c1c85ff6f849b80b42a88c2c537c8f"
+ integrity sha512-nSKUxgAbyioruk6hU87QzVbY279oYT6uiwgDoujth2ju4mJ+TZau7SQBhtbTmUyuNYTuXnSyRn66FV0+eCgcrQ==
+ dependencies:
+ imurmurhash "^0.1.4"
+ signal-exit "^3.0.7"
+
write-json-file@^4.1.1:
version "4.3.0"
resolved "https://registry.npmjs.org/write-json-file/-/write-json-file-4.3.0.tgz"
@@ -11471,7 +10478,7 @@ xss@^1.0.6:
commander "^2.20.3"
cssfilter "0.0.10"
-xtend@^4.0.0, xtend@~4.0.1:
+xtend@~4.0.1:
version "4.0.2"
resolved "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz"
integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==
@@ -11481,11 +10488,6 @@ y18n@^5.0.5:
resolved "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz"
integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==
-yallist@^2.1.2:
- version "2.1.2"
- resolved "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz"
- integrity sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=
-
yallist@^4.0.0:
version "4.0.0"
resolved "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz"
@@ -11514,14 +10516,6 @@ yargs@^16.2.0:
y18n "^5.0.5"
yargs-parser "^20.2.2"
-yauzl@^2.4.2:
- version "2.10.0"
- resolved "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz"
- integrity sha1-x+sXyT4RLLEIb6bY5R+wZnt5pfk=
- dependencies:
- buffer-crc32 "~0.2.3"
- fd-slicer "~1.1.0"
-
yeoman-environment@^3.9.1:
version "3.9.1"
resolved "https://registry.npmjs.org/yeoman-environment/-/yeoman-environment-3.9.1.tgz"