| @ -1,15 +0,0 @@ | |||
| #!/bin/sh | |||
| basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')") | |||
| case `uname` in | |||
| *CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;; | |||
| esac | |||
| if [ -x "$basedir/node" ]; then | |||
| "$basedir/node" "$basedir/../acorn/bin/acorn" "$@" | |||
| ret=$? | |||
| else | |||
| node "$basedir/../acorn/bin/acorn" "$@" | |||
| ret=$? | |||
| fi | |||
| exit $ret | |||
| @ -0,0 +1 @@ | |||
| ../acorn/bin/acorn | |||
| @ -1,17 +0,0 @@ | |||
| @ECHO off | |||
| SETLOCAL | |||
| CALL :find_dp0 | |||
| IF EXIST "%dp0%\node.exe" ( | |||
| SET "_prog=%dp0%\node.exe" | |||
| ) ELSE ( | |||
| SET "_prog=node" | |||
| SET PATHEXT=%PATHEXT:;.JS;=;% | |||
| ) | |||
| "%_prog%" "%dp0%\..\acorn\bin\acorn" %* | |||
| ENDLOCAL | |||
| EXIT /b %errorlevel% | |||
| :find_dp0 | |||
| SET dp0=%~dp0 | |||
| EXIT /b | |||
| @ -1,18 +0,0 @@ | |||
| #!/usr/bin/env pwsh | |||
| $basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent | |||
| $exe="" | |||
| if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { | |||
| # Fix case when both the Windows and Linux builds of Node | |||
| # are installed in the same directory | |||
| $exe=".exe" | |||
| } | |||
| $ret=0 | |||
| if (Test-Path "$basedir/node$exe") { | |||
| & "$basedir/node$exe" "$basedir/../acorn/bin/acorn" $args | |||
| $ret=$LASTEXITCODE | |||
| } else { | |||
| & "node$exe" "$basedir/../acorn/bin/acorn" $args | |||
| $ret=$LASTEXITCODE | |||
| } | |||
| exit $ret | |||
| @ -1,15 +0,0 @@ | |||
| #!/bin/sh | |||
| basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')") | |||
| case `uname` in | |||
| *CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;; | |||
| esac | |||
| if [ -x "$basedir/node" ]; then | |||
| "$basedir/node" "$basedir/../eslint/bin/eslint.js" "$@" | |||
| ret=$? | |||
| else | |||
| node "$basedir/../eslint/bin/eslint.js" "$@" | |||
| ret=$? | |||
| fi | |||
| exit $ret | |||
| @ -0,0 +1 @@ | |||
| ../eslint/bin/eslint.js | |||
| @ -1,17 +0,0 @@ | |||
| @ECHO off | |||
| SETLOCAL | |||
| CALL :find_dp0 | |||
| IF EXIST "%dp0%\node.exe" ( | |||
| SET "_prog=%dp0%\node.exe" | |||
| ) ELSE ( | |||
| SET "_prog=node" | |||
| SET PATHEXT=%PATHEXT:;.JS;=;% | |||
| ) | |||
| "%_prog%" "%dp0%\..\eslint\bin\eslint.js" %* | |||
| ENDLOCAL | |||
| EXIT /b %errorlevel% | |||
| :find_dp0 | |||
| SET dp0=%~dp0 | |||
| EXIT /b | |||
| @ -1,18 +0,0 @@ | |||
| #!/usr/bin/env pwsh | |||
| $basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent | |||
| $exe="" | |||
| if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { | |||
| # Fix case when both the Windows and Linux builds of Node | |||
| # are installed in the same directory | |||
| $exe=".exe" | |||
| } | |||
| $ret=0 | |||
| if (Test-Path "$basedir/node$exe") { | |||
| & "$basedir/node$exe" "$basedir/../eslint/bin/eslint.js" $args | |||
| $ret=$LASTEXITCODE | |||
| } else { | |||
| & "node$exe" "$basedir/../eslint/bin/eslint.js" $args | |||
| $ret=$LASTEXITCODE | |||
| } | |||
| exit $ret | |||
| @ -1,15 +0,0 @@ | |||
| #!/bin/sh | |||
| basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')") | |||
| case `uname` in | |||
| *CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;; | |||
| esac | |||
| if [ -x "$basedir/node" ]; then | |||
| "$basedir/node" "$basedir/../js-yaml/bin/js-yaml.js" "$@" | |||
| ret=$? | |||
| else | |||
| node "$basedir/../js-yaml/bin/js-yaml.js" "$@" | |||
| ret=$? | |||
| fi | |||
| exit $ret | |||
| @ -0,0 +1 @@ | |||
| ../js-yaml/bin/js-yaml.js | |||
| @ -1,17 +0,0 @@ | |||
| @ECHO off | |||
| SETLOCAL | |||
| CALL :find_dp0 | |||
| IF EXIST "%dp0%\node.exe" ( | |||
| SET "_prog=%dp0%\node.exe" | |||
| ) ELSE ( | |||
| SET "_prog=node" | |||
| SET PATHEXT=%PATHEXT:;.JS;=;% | |||
| ) | |||
| "%_prog%" "%dp0%\..\js-yaml\bin\js-yaml.js" %* | |||
| ENDLOCAL | |||
| EXIT /b %errorlevel% | |||
| :find_dp0 | |||
| SET dp0=%~dp0 | |||
| EXIT /b | |||
| @ -1,18 +0,0 @@ | |||
| #!/usr/bin/env pwsh | |||
| $basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent | |||
| $exe="" | |||
| if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { | |||
| # Fix case when both the Windows and Linux builds of Node | |||
| # are installed in the same directory | |||
| $exe=".exe" | |||
| } | |||
| $ret=0 | |||
| if (Test-Path "$basedir/node$exe") { | |||
| & "$basedir/node$exe" "$basedir/../js-yaml/bin/js-yaml.js" $args | |||
| $ret=$LASTEXITCODE | |||
| } else { | |||
| & "node$exe" "$basedir/../js-yaml/bin/js-yaml.js" $args | |||
| $ret=$LASTEXITCODE | |||
| } | |||
| exit $ret | |||
| @ -1,15 +0,0 @@ | |||
| #!/bin/sh | |||
| basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')") | |||
| case `uname` in | |||
| *CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;; | |||
| esac | |||
| if [ -x "$basedir/node" ]; then | |||
| "$basedir/node" "$basedir/../mime/cli.js" "$@" | |||
| ret=$? | |||
| else | |||
| node "$basedir/../mime/cli.js" "$@" | |||
| ret=$? | |||
| fi | |||
| exit $ret | |||
| @ -0,0 +1 @@ | |||
| ../mime/cli.js | |||
| @ -1,17 +0,0 @@ | |||
| @ECHO off | |||
| SETLOCAL | |||
| CALL :find_dp0 | |||
| IF EXIST "%dp0%\node.exe" ( | |||
| SET "_prog=%dp0%\node.exe" | |||
| ) ELSE ( | |||
| SET "_prog=node" | |||
| SET PATHEXT=%PATHEXT:;.JS;=;% | |||
| ) | |||
| "%_prog%" "%dp0%\..\mime\cli.js" %* | |||
| ENDLOCAL | |||
| EXIT /b %errorlevel% | |||
| :find_dp0 | |||
| SET dp0=%~dp0 | |||
| EXIT /b | |||
| @ -1,18 +0,0 @@ | |||
| #!/usr/bin/env pwsh | |||
| $basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent | |||
| $exe="" | |||
| if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { | |||
| # Fix case when both the Windows and Linux builds of Node | |||
| # are installed in the same directory | |||
| $exe=".exe" | |||
| } | |||
| $ret=0 | |||
| if (Test-Path "$basedir/node$exe") { | |||
| & "$basedir/node$exe" "$basedir/../mime/cli.js" $args | |||
| $ret=$LASTEXITCODE | |||
| } else { | |||
| & "node$exe" "$basedir/../mime/cli.js" $args | |||
| $ret=$LASTEXITCODE | |||
| } | |||
| exit $ret | |||
| @ -1,15 +0,0 @@ | |||
| #!/bin/sh | |||
| basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')") | |||
| case `uname` in | |||
| *CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;; | |||
| esac | |||
| if [ -x "$basedir/node" ]; then | |||
| "$basedir/node" "$basedir/../mkdirp/bin/cmd.js" "$@" | |||
| ret=$? | |||
| else | |||
| node "$basedir/../mkdirp/bin/cmd.js" "$@" | |||
| ret=$? | |||
| fi | |||
| exit $ret | |||
| @ -0,0 +1 @@ | |||
| ../mkdirp/bin/cmd.js | |||
| @ -1,17 +0,0 @@ | |||
| @ECHO off | |||
| SETLOCAL | |||
| CALL :find_dp0 | |||
| IF EXIST "%dp0%\node.exe" ( | |||
| SET "_prog=%dp0%\node.exe" | |||
| ) ELSE ( | |||
| SET "_prog=node" | |||
| SET PATHEXT=%PATHEXT:;.JS;=;% | |||
| ) | |||
| "%_prog%" "%dp0%\..\mkdirp\bin\cmd.js" %* | |||
| ENDLOCAL | |||
| EXIT /b %errorlevel% | |||
| :find_dp0 | |||
| SET dp0=%~dp0 | |||
| EXIT /b | |||
| @ -1,18 +0,0 @@ | |||
| #!/usr/bin/env pwsh | |||
| $basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent | |||
| $exe="" | |||
| if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { | |||
| # Fix case when both the Windows and Linux builds of Node | |||
| # are installed in the same directory | |||
| $exe=".exe" | |||
| } | |||
| $ret=0 | |||
| if (Test-Path "$basedir/node$exe") { | |||
| & "$basedir/node$exe" "$basedir/../mkdirp/bin/cmd.js" $args | |||
| $ret=$LASTEXITCODE | |||
| } else { | |||
| & "node$exe" "$basedir/../mkdirp/bin/cmd.js" $args | |||
| $ret=$LASTEXITCODE | |||
| } | |||
| exit $ret | |||
| @ -1,15 +0,0 @@ | |||
| #!/bin/sh | |||
| basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')") | |||
| case `uname` in | |||
| *CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;; | |||
| esac | |||
| if [ -x "$basedir/node" ]; then | |||
| "$basedir/node" "$basedir/../which/bin/node-which" "$@" | |||
| ret=$? | |||
| else | |||
| node "$basedir/../which/bin/node-which" "$@" | |||
| ret=$? | |||
| fi | |||
| exit $ret | |||
| @ -0,0 +1 @@ | |||
| ../which/bin/node-which | |||
| @ -1,17 +0,0 @@ | |||
| @ECHO off | |||
| SETLOCAL | |||
| CALL :find_dp0 | |||
| IF EXIST "%dp0%\node.exe" ( | |||
| SET "_prog=%dp0%\node.exe" | |||
| ) ELSE ( | |||
| SET "_prog=node" | |||
| SET PATHEXT=%PATHEXT:;.JS;=;% | |||
| ) | |||
| "%_prog%" "%dp0%\..\which\bin\node-which" %* | |||
| ENDLOCAL | |||
| EXIT /b %errorlevel% | |||
| :find_dp0 | |||
| SET dp0=%~dp0 | |||
| EXIT /b | |||
| @ -1,18 +0,0 @@ | |||
| #!/usr/bin/env pwsh | |||
| $basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent | |||
| $exe="" | |||
| if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { | |||
| # Fix case when both the Windows and Linux builds of Node | |||
| # are installed in the same directory | |||
| $exe=".exe" | |||
| } | |||
| $ret=0 | |||
| if (Test-Path "$basedir/node$exe") { | |||
| & "$basedir/node$exe" "$basedir/../which/bin/node-which" $args | |||
| $ret=$LASTEXITCODE | |||
| } else { | |||
| & "node$exe" "$basedir/../which/bin/node-which" $args | |||
| $ret=$LASTEXITCODE | |||
| } | |||
| exit $ret | |||
| @ -1,15 +0,0 @@ | |||
| #!/bin/sh | |||
| basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')") | |||
| case `uname` in | |||
| *CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;; | |||
| esac | |||
| if [ -x "$basedir/node" ]; then | |||
| "$basedir/node" "$basedir/../os-name/cli.js" "$@" | |||
| ret=$? | |||
| else | |||
| node "$basedir/../os-name/cli.js" "$@" | |||
| ret=$? | |||
| fi | |||
| exit $ret | |||
| @ -0,0 +1 @@ | |||
| ../os-name/cli.js | |||
| @ -1,17 +0,0 @@ | |||
| @ECHO off | |||
| SETLOCAL | |||
| CALL :find_dp0 | |||
| IF EXIST "%dp0%\node.exe" ( | |||
| SET "_prog=%dp0%\node.exe" | |||
| ) ELSE ( | |||
| SET "_prog=node" | |||
| SET PATHEXT=%PATHEXT:;.JS;=;% | |||
| ) | |||
| "%_prog%" "%dp0%\..\os-name\cli.js" %* | |||
| ENDLOCAL | |||
| EXIT /b %errorlevel% | |||
| :find_dp0 | |||
| SET dp0=%~dp0 | |||
| EXIT /b | |||
| @ -1,18 +0,0 @@ | |||
| #!/usr/bin/env pwsh | |||
| $basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent | |||
| $exe="" | |||
| if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { | |||
| # Fix case when both the Windows and Linux builds of Node | |||
| # are installed in the same directory | |||
| $exe=".exe" | |||
| } | |||
| $ret=0 | |||
| if (Test-Path "$basedir/node$exe") { | |||
| & "$basedir/node$exe" "$basedir/../os-name/cli.js" $args | |||
| $ret=$LASTEXITCODE | |||
| } else { | |||
| & "node$exe" "$basedir/../os-name/cli.js" $args | |||
| $ret=$LASTEXITCODE | |||
| } | |||
| exit $ret | |||
| @ -1,15 +0,0 @@ | |||
| #!/bin/sh | |||
| basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')") | |||
| case `uname` in | |||
| *CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;; | |||
| esac | |||
| if [ -x "$basedir/node" ]; then | |||
| "$basedir/node" "$basedir/../osx-release/cli.js" "$@" | |||
| ret=$? | |||
| else | |||
| node "$basedir/../osx-release/cli.js" "$@" | |||
| ret=$? | |||
| fi | |||
| exit $ret | |||
| @ -0,0 +1 @@ | |||
| ../osx-release/cli.js | |||
| @ -1,17 +0,0 @@ | |||
| @ECHO off | |||
| SETLOCAL | |||
| CALL :find_dp0 | |||
| IF EXIST "%dp0%\node.exe" ( | |||
| SET "_prog=%dp0%\node.exe" | |||
| ) ELSE ( | |||
| SET "_prog=node" | |||
| SET PATHEXT=%PATHEXT:;.JS;=;% | |||
| ) | |||
| "%_prog%" "%dp0%\..\osx-release\cli.js" %* | |||
| ENDLOCAL | |||
| EXIT /b %errorlevel% | |||
| :find_dp0 | |||
| SET dp0=%~dp0 | |||
| EXIT /b | |||
| @ -1,18 +0,0 @@ | |||
| #!/usr/bin/env pwsh | |||
| $basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent | |||
| $exe="" | |||
| if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { | |||
| # Fix case when both the Windows and Linux builds of Node | |||
| # are installed in the same directory | |||
| $exe=".exe" | |||
| } | |||
| $ret=0 | |||
| if (Test-Path "$basedir/node$exe") { | |||
| & "$basedir/node$exe" "$basedir/../osx-release/cli.js" $args | |||
| $ret=$LASTEXITCODE | |||
| } else { | |||
| & "node$exe" "$basedir/../osx-release/cli.js" $args | |||
| $ret=$LASTEXITCODE | |||
| } | |||
| exit $ret | |||
| @ -1,15 +0,0 @@ | |||
| #!/bin/sh | |||
| basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')") | |||
| case `uname` in | |||
| *CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;; | |||
| esac | |||
| if [ -x "$basedir/node" ]; then | |||
| "$basedir/node" "$basedir/../rimraf/bin.js" "$@" | |||
| ret=$? | |||
| else | |||
| node "$basedir/../rimraf/bin.js" "$@" | |||
| ret=$? | |||
| fi | |||
| exit $ret | |||
| @ -0,0 +1 @@ | |||
| ../rimraf/bin.js | |||
| @ -1,17 +0,0 @@ | |||
| @ECHO off | |||
| SETLOCAL | |||
| CALL :find_dp0 | |||
| IF EXIST "%dp0%\node.exe" ( | |||
| SET "_prog=%dp0%\node.exe" | |||
| ) ELSE ( | |||
| SET "_prog=node" | |||
| SET PATHEXT=%PATHEXT:;.JS;=;% | |||
| ) | |||
| "%_prog%" "%dp0%\..\rimraf\bin.js" %* | |||
| ENDLOCAL | |||
| EXIT /b %errorlevel% | |||
| :find_dp0 | |||
| SET dp0=%~dp0 | |||
| EXIT /b | |||
| @ -1,18 +0,0 @@ | |||
| #!/usr/bin/env pwsh | |||
| $basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent | |||
| $exe="" | |||
| if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { | |||
| # Fix case when both the Windows and Linux builds of Node | |||
| # are installed in the same directory | |||
| $exe=".exe" | |||
| } | |||
| $ret=0 | |||
| if (Test-Path "$basedir/node$exe") { | |||
| & "$basedir/node$exe" "$basedir/../rimraf/bin.js" $args | |||
| $ret=$LASTEXITCODE | |||
| } else { | |||
| & "node$exe" "$basedir/../rimraf/bin.js" $args | |||
| $ret=$LASTEXITCODE | |||
| } | |||
| exit $ret | |||
| @ -1,15 +0,0 @@ | |||
| #!/bin/sh | |||
| basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')") | |||
| case `uname` in | |||
| *CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;; | |||
| esac | |||
| if [ -x "$basedir/node" ]; then | |||
| "$basedir/node" "$basedir/../semver/bin/semver" "$@" | |||
| ret=$? | |||
| else | |||
| node "$basedir/../semver/bin/semver" "$@" | |||
| ret=$? | |||
| fi | |||
| exit $ret | |||
| @ -0,0 +1 @@ | |||
| ../semver/bin/semver.js | |||
| @ -1,17 +0,0 @@ | |||
| @ECHO off | |||
| SETLOCAL | |||
| CALL :find_dp0 | |||
| IF EXIST "%dp0%\node.exe" ( | |||
| SET "_prog=%dp0%\node.exe" | |||
| ) ELSE ( | |||
| SET "_prog=node" | |||
| SET PATHEXT=%PATHEXT:;.JS;=;% | |||
| ) | |||
| "%_prog%" "%dp0%\..\semver\bin\semver" %* | |||
| ENDLOCAL | |||
| EXIT /b %errorlevel% | |||
| :find_dp0 | |||
| SET dp0=%~dp0 | |||
| EXIT /b | |||
| @ -1,18 +0,0 @@ | |||
| #!/usr/bin/env pwsh | |||
| $basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent | |||
| $exe="" | |||
| if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { | |||
| # Fix case when both the Windows and Linux builds of Node | |||
| # are installed in the same directory | |||
| $exe=".exe" | |||
| } | |||
| $ret=0 | |||
| if (Test-Path "$basedir/node$exe") { | |||
| & "$basedir/node$exe" "$basedir/../semver/bin/semver" $args | |||
| $ret=$LASTEXITCODE | |||
| } else { | |||
| & "node$exe" "$basedir/../semver/bin/semver" $args | |||
| $ret=$LASTEXITCODE | |||
| } | |||
| exit $ret | |||
| @ -0,0 +1,246 @@ | |||
| { | |||
| "systemParams": "darwin-x64-83", | |||
| "modulesFolders": [ | |||
| "node_modules" | |||
| ], | |||
| "flags": [], | |||
| "linkedModules": [], | |||
| "topLevelPatterns": [ | |||
| "ali-oss@^6.21.0", | |||
| "dayjs@^1.11.12", | |||
| "eslint-config-airbnb@^19.0.0", | |||
| "eslint@^8.2.0" | |||
| ], | |||
| "lockfileEntries": { | |||
| "@eslint-community/eslint-utils@^4.2.0": "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.1.tgz#d1145bf2c20132d6400495d6df4bf59362fd9d56", | |||
| "@eslint-community/regexpp@^4.6.1": "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.12.1.tgz#cfc6cffe39df390a3841cde2abccf92eaa7ae0e0", | |||
| "@eslint/eslintrc@^2.1.4": "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.1.4.tgz#388a269f0f25c1b6adc317b5a2c55714894c70ad", | |||
| "@eslint/js@8.57.1": "https://registry.yarnpkg.com/@eslint/js/-/js-8.57.1.tgz#de633db3ec2ef6a3c89e2f19038063e8a122e2c2", | |||
| "@humanwhocodes/config-array@^0.13.0": "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.13.0.tgz#fb907624df3256d04b9aa2df50d7aa97ec648748", | |||
| "@humanwhocodes/module-importer@^1.0.1": "https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c", | |||
| "@humanwhocodes/object-schema@^2.0.3": "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz#4a2868d75d6d6963e423bcf90b7fd1be343409d3", | |||
| "@nodelib/fs.scandir@2.1.5": "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5", | |||
| "@nodelib/fs.stat@2.0.5": "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b", | |||
| "@nodelib/fs.walk@^1.2.8": "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a", | |||
| "@ungap/structured-clone@^1.2.0": "https://registry.yarnpkg.com/@ungap/structured-clone/-/structured-clone-1.3.0.tgz#d06bbb384ebcf6c505fde1c3d0ed4ddffe0aaff8", | |||
| "acorn-jsx@^5.3.2": "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937", | |||
| "acorn@^8.9.0": "https://registry.yarnpkg.com/acorn/-/acorn-8.14.0.tgz#063e2c70cac5fb4f6467f0b11152e04c682795b0", | |||
| "address@^1.2.2": "https://registry.yarnpkg.com/address/-/address-1.2.2.tgz#2b5248dac5485a6390532c6a517fda2e3faac89e", | |||
| "agentkeepalive@^3.4.1": "https://registry.yarnpkg.com/agentkeepalive/-/agentkeepalive-3.5.3.tgz#c210afce942b4287e2df2fbfe6c0d57eda2ce634", | |||
| "ajv@^6.12.4": "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4", | |||
| "ali-oss@^6.21.0": "https://registry.yarnpkg.com/ali-oss/-/ali-oss-6.22.0.tgz#084a20b54f2fc0ef607701cb8b2aaf1cfb4019bb", | |||
| "ansi-regex@^5.0.1": "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304", | |||
| "ansi-styles@^4.1.0": "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937", | |||
| "any-promise@^1.0.0": "https://registry.yarnpkg.com/any-promise/-/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f", | |||
| "any-promise@^1.3.0": "https://registry.yarnpkg.com/any-promise/-/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f", | |||
| "argparse@^2.0.1": "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38", | |||
| "balanced-match@^1.0.0": "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee", | |||
| "bowser@^1.6.0": "https://registry.yarnpkg.com/bowser/-/bowser-1.9.4.tgz#890c58a2813a9d3243704334fa81b96a5c150c9a", | |||
| "brace-expansion@^1.1.7": "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd", | |||
| "builtin-status-codes@^3.0.0": "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8", | |||
| "call-bind-apply-helpers@^1.0.0": "https://registry.yarnpkg.com/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.1.tgz#32e5892e6361b29b0b545ba6f7763378daca2840", | |||
| "call-bind-apply-helpers@^1.0.1": "https://registry.yarnpkg.com/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.1.tgz#32e5892e6361b29b0b545ba6f7763378daca2840", | |||
| "call-bind@^1.0.7": "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.8.tgz#0736a9660f537e3388826f440d5ec45f744eaa4c", | |||
| "call-bind@^1.0.8": "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.8.tgz#0736a9660f537e3388826f440d5ec45f744eaa4c", | |||
| "call-bound@^1.0.2": "https://registry.yarnpkg.com/call-bound/-/call-bound-1.0.3.tgz#41cfd032b593e39176a71533ab4f384aa04fd681", | |||
| "call-bound@^1.0.3": "https://registry.yarnpkg.com/call-bound/-/call-bound-1.0.3.tgz#41cfd032b593e39176a71533ab4f384aa04fd681", | |||
| "callsites@^3.0.0": "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73", | |||
| "chalk@^4.0.0": "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01", | |||
| "color-convert@^2.0.1": "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3", | |||
| "color-name@~1.1.4": "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2", | |||
| "concat-map@0.0.1": "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b", | |||
| "confusing-browser-globals@^1.0.10": "https://registry.yarnpkg.com/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz#ae40e9b57cdd3915408a2805ebd3a5585608dc81", | |||
| "content-type@^1.0.2": "https://registry.yarnpkg.com/content-type/-/content-type-1.0.5.tgz#8b773162656d1d1086784c8f23a54ce6d73d7918", | |||
| "copy-to@^2.0.1": "https://registry.yarnpkg.com/copy-to/-/copy-to-2.0.1.tgz#2680fbb8068a48d08656b6098092bdafc906f4a5", | |||
| "core-util-is@^1.0.2": "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85", | |||
| "core-util-is@~1.0.0": "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85", | |||
| "cross-spawn@^7.0.2": "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.6.tgz#8a58fe78f00dcd70c370451759dfbfaf03e8ee9f", | |||
| "dateformat@^2.0.0": "https://registry.yarnpkg.com/dateformat/-/dateformat-2.2.0.tgz#4065e2013cf9fb916ddfd82efb506ad4c6769062", | |||
| "dayjs@^1.11.12": "https://registry.yarnpkg.com/dayjs/-/dayjs-1.11.13.tgz#92430b0139055c3ebb60150aa13e860a4b5a366c", | |||
| "debug@^4.3.1": "https://registry.yarnpkg.com/debug/-/debug-4.4.0.tgz#2b3f2aea2ffeb776477460267377dc8710faba8a", | |||
| "debug@^4.3.2": "https://registry.yarnpkg.com/debug/-/debug-4.4.0.tgz#2b3f2aea2ffeb776477460267377dc8710faba8a", | |||
| "debug@^4.3.4": "https://registry.yarnpkg.com/debug/-/debug-4.4.0.tgz#2b3f2aea2ffeb776477460267377dc8710faba8a", | |||
| "deep-is@^0.1.3": "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831", | |||
| "default-user-agent@^1.0.0": "https://registry.yarnpkg.com/default-user-agent/-/default-user-agent-1.0.0.tgz#16c46efdcaba3edc45f24f2bd4868b01b7c2adc6", | |||
| "define-data-property@^1.0.1": "https://registry.yarnpkg.com/define-data-property/-/define-data-property-1.1.4.tgz#894dc141bb7d3060ae4366f6a0107e68fbe48c5e", | |||
| "define-data-property@^1.1.4": "https://registry.yarnpkg.com/define-data-property/-/define-data-property-1.1.4.tgz#894dc141bb7d3060ae4366f6a0107e68fbe48c5e", | |||
| "define-properties@^1.2.1": "https://registry.yarnpkg.com/define-properties/-/define-properties-1.2.1.tgz#10781cc616eb951a80a034bafcaa7377f6af2b6c", | |||
| "destroy@^1.0.4": "https://registry.yarnpkg.com/destroy/-/destroy-1.2.0.tgz#4803735509ad8be552934c67df614f94e66fa015", | |||
| "digest-header@^1.0.0": "https://registry.yarnpkg.com/digest-header/-/digest-header-1.1.0.tgz#e16ab6cf4545bc4eea878c8c35acd1b89664d800", | |||
| "doctrine@^3.0.0": "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961", | |||
| "dunder-proto@^1.0.1": "https://registry.yarnpkg.com/dunder-proto/-/dunder-proto-1.0.1.tgz#d7ae667e1dc83482f8b70fd0f6eefc50da30f58a", | |||
| "ee-first@~1.1.1": "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d", | |||
| "end-of-stream@^1.1.0": "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0", | |||
| "end-or-error@^1.0.1": "https://registry.yarnpkg.com/end-or-error/-/end-or-error-1.0.1.tgz#dc7a6210fe78d372fee24a8b4899dbd155414dcb", | |||
| "es-define-property@^1.0.0": "https://registry.yarnpkg.com/es-define-property/-/es-define-property-1.0.1.tgz#983eb2f9a6724e9303f61addf011c72e09e0b0fa", | |||
| "es-define-property@^1.0.1": "https://registry.yarnpkg.com/es-define-property/-/es-define-property-1.0.1.tgz#983eb2f9a6724e9303f61addf011c72e09e0b0fa", | |||
| "es-errors@^1.3.0": "https://registry.yarnpkg.com/es-errors/-/es-errors-1.3.0.tgz#05f75a25dab98e4fb1dcd5e1472c0546d5057c8f", | |||
| "es-object-atoms@^1.0.0": "https://registry.yarnpkg.com/es-object-atoms/-/es-object-atoms-1.1.1.tgz#1c4f2c4837327597ce69d2ca190a7fdd172338c1", | |||
| "escape-html@^1.0.3": "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988", | |||
| "escape-string-regexp@^4.0.0": "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34", | |||
| "eslint-config-airbnb-base@^15.0.0": "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-15.0.0.tgz#6b09add90ac79c2f8d723a2580e07f3925afd236", | |||
| "eslint-config-airbnb@^19.0.0": "https://registry.yarnpkg.com/eslint-config-airbnb/-/eslint-config-airbnb-19.0.4.tgz#84d4c3490ad70a0ffa571138ebcdea6ab085fdc3", | |||
| "eslint-scope@^7.2.2": "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.2.2.tgz#deb4f92563390f32006894af62a22dba1c46423f", | |||
| "eslint-visitor-keys@^3.4.1": "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz#0cd72fe8550e3c2eae156a96a4dddcd1c8ac5800", | |||
| "eslint-visitor-keys@^3.4.3": "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz#0cd72fe8550e3c2eae156a96a4dddcd1c8ac5800", | |||
| "eslint@^8.2.0": "https://registry.yarnpkg.com/eslint/-/eslint-8.57.1.tgz#7df109654aba7e3bbe5c8eae533c5e461d3c6ca9", | |||
| "espree@^9.6.0": "https://registry.yarnpkg.com/espree/-/espree-9.6.1.tgz#a2a17b8e434690a5432f2f8018ce71d331a48c6f", | |||
| "espree@^9.6.1": "https://registry.yarnpkg.com/espree/-/espree-9.6.1.tgz#a2a17b8e434690a5432f2f8018ce71d331a48c6f", | |||
| "esquery@^1.4.2": "https://registry.yarnpkg.com/esquery/-/esquery-1.6.0.tgz#91419234f804d852a82dceec3e16cdc22cf9dae7", | |||
| "esrecurse@^4.3.0": "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921", | |||
| "estraverse@^5.1.0": "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123", | |||
| "estraverse@^5.2.0": "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123", | |||
| "esutils@^2.0.2": "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64", | |||
| "extend-shallow@^2.0.1": "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f", | |||
| "fast-deep-equal@^3.1.1": "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525", | |||
| "fast-deep-equal@^3.1.3": "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525", | |||
| "fast-json-stable-stringify@^2.0.0": "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633", | |||
| "fast-levenshtein@^2.0.6": "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917", | |||
| "fastq@^1.6.0": "https://registry.yarnpkg.com/fastq/-/fastq-1.18.0.tgz#d631d7e25faffea81887fe5ea8c9010e1b36fee0", | |||
| "file-entry-cache@^6.0.1": "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027", | |||
| "find-up@^5.0.0": "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc", | |||
| "flat-cache@^3.0.4": "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.2.0.tgz#2c0c2d5040c99b1632771a9d105725c0115363ee", | |||
| "flatted@^3.2.9": "https://registry.yarnpkg.com/flatted/-/flatted-3.3.2.tgz#adba1448a9841bec72b42c532ea23dbbedef1a27", | |||
| "formstream@^1.1.0": "https://registry.yarnpkg.com/formstream/-/formstream-1.5.1.tgz#b25f8121aa434cc82e8b36cdd765338b7b8df4de", | |||
| "fs.realpath@^1.0.0": "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f", | |||
| "function-bind@^1.1.2": "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c", | |||
| "get-intrinsic@^1.2.4": "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.7.tgz#dcfcb33d3272e15f445d15124bc0a216189b9044", | |||
| "get-intrinsic@^1.2.5": "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.7.tgz#dcfcb33d3272e15f445d15124bc0a216189b9044", | |||
| "get-intrinsic@^1.2.6": "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.7.tgz#dcfcb33d3272e15f445d15124bc0a216189b9044", | |||
| "get-proto@^1.0.0": "https://registry.yarnpkg.com/get-proto/-/get-proto-1.0.1.tgz#150b3f2743869ef3e851ec0c49d15b1d14d00ee1", | |||
| "get-ready@^1.0.0": "https://registry.yarnpkg.com/get-ready/-/get-ready-1.0.0.tgz#f91817f1e9adecfea13a562adfc8de883ab34782", | |||
| "get-ready@~1.0.0": "https://registry.yarnpkg.com/get-ready/-/get-ready-1.0.0.tgz#f91817f1e9adecfea13a562adfc8de883ab34782", | |||
| "glob-parent@^6.0.2": "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3", | |||
| "glob@^7.1.3": "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b", | |||
| "globals@^13.19.0": "https://registry.yarnpkg.com/globals/-/globals-13.24.0.tgz#8432a19d78ce0c1e833949c36adb345400bb1171", | |||
| "gopd@^1.0.1": "https://registry.yarnpkg.com/gopd/-/gopd-1.2.0.tgz#89f56b8217bdbc8802bd299df6d7f1081d7e51a1", | |||
| "gopd@^1.2.0": "https://registry.yarnpkg.com/gopd/-/gopd-1.2.0.tgz#89f56b8217bdbc8802bd299df6d7f1081d7e51a1", | |||
| "graphemer@^1.4.0": "https://registry.yarnpkg.com/graphemer/-/graphemer-1.4.0.tgz#fb2f1d55e0e3a1849aeffc90c4fa0dd53a0e66c6", | |||
| "has-flag@^4.0.0": "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b", | |||
| "has-property-descriptors@^1.0.0": "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz#963ed7d071dc7bf5f084c5bfbe0d1b6222586854", | |||
| "has-property-descriptors@^1.0.2": "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz#963ed7d071dc7bf5f084c5bfbe0d1b6222586854", | |||
| "has-symbols@^1.1.0": "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.1.0.tgz#fc9c6a783a084951d0b971fe1018de813707a338", | |||
| "hasown@^2.0.2": "https://registry.yarnpkg.com/hasown/-/hasown-2.0.2.tgz#003eaf91be7adc372e84ec59dc37252cedb80003", | |||
| "humanize-ms@^1.2.0": "https://registry.yarnpkg.com/humanize-ms/-/humanize-ms-1.2.1.tgz#c46e3159a293f6b896da29316d8b6fe8bb79bbed", | |||
| "humanize-ms@^1.2.1": "https://registry.yarnpkg.com/humanize-ms/-/humanize-ms-1.2.1.tgz#c46e3159a293f6b896da29316d8b6fe8bb79bbed", | |||
| "iconv-lite@^0.6.3": "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.3.tgz#a52f80bf38da1952eb5c681790719871a1a72501", | |||
| "ignore@^5.2.0": "https://registry.yarnpkg.com/ignore/-/ignore-5.3.2.tgz#3cd40e729f3643fd87cb04e50bf0eb722bc596f5", | |||
| "import-fresh@^3.2.1": "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b", | |||
| "imurmurhash@^0.1.4": "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea", | |||
| "inflight@^1.0.4": "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9", | |||
| "inherits@2": "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c", | |||
| "inherits@^2.0.1": "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c", | |||
| "inherits@~2.0.3": "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c", | |||
| "is-class-hotfix@~0.0.6": "https://registry.yarnpkg.com/is-class-hotfix/-/is-class-hotfix-0.0.6.tgz#a527d31fb23279281dde5f385c77b5de70a72435", | |||
| "is-extendable@^0.1.0": "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89", | |||
| "is-extglob@^2.1.1": "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2", | |||
| "is-glob@^4.0.0": "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084", | |||
| "is-glob@^4.0.3": "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084", | |||
| "is-path-inside@^3.0.3": "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283", | |||
| "is-type-of@^1.4.0": "https://registry.yarnpkg.com/is-type-of/-/is-type-of-1.4.0.tgz#3ed175a0eee888b1da4983332e7714feb8a8fb2b", | |||
| "isarray@~1.0.0": "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11", | |||
| "isexe@^2.0.0": "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10", | |||
| "isstream@~0.1.2": "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a", | |||
| "js-base64@^2.5.2": "https://registry.yarnpkg.com/js-base64/-/js-base64-2.6.4.tgz#f4e686c5de1ea1f867dbcad3d46d969428df98c4", | |||
| "js-yaml@^4.1.0": "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602", | |||
| "json-buffer@3.0.1": "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.1.tgz#9338802a30d3b6605fbe0613e094008ca8c05a13", | |||
| "json-schema-traverse@^0.4.1": "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660", | |||
| "json-stable-stringify-without-jsonify@^1.0.1": "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651", | |||
| "jstoxml@^2.0.0": "https://registry.yarnpkg.com/jstoxml/-/jstoxml-2.2.9.tgz#2eebd5e55383fe66a375022ca0aa88f77bc4fb84", | |||
| "keyv@^4.5.3": "https://registry.yarnpkg.com/keyv/-/keyv-4.5.4.tgz#a879a99e29452f942439f2a405e3af8b31d4de93", | |||
| "levn@^0.4.1": "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade", | |||
| "locate-path@^6.0.0": "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286", | |||
| "lodash.merge@^4.6.2": "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a", | |||
| "lodash@^4.17.21": "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c", | |||
| "math-intrinsics@^1.1.0": "https://registry.yarnpkg.com/math-intrinsics/-/math-intrinsics-1.1.0.tgz#a0dd74be81e2aa5c2f27e65ce283605ee4e2b7f9", | |||
| "merge-descriptors@^1.0.1": "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.3.tgz#d80319a65f3c7935351e5cfdac8f9318504dbed5", | |||
| "mime@^2.4.5": "https://registry.yarnpkg.com/mime/-/mime-2.6.0.tgz#a2a682a95cd4d0cb1d6257e28f83da7e35800367", | |||
| "mime@^2.5.2": "https://registry.yarnpkg.com/mime/-/mime-2.6.0.tgz#a2a682a95cd4d0cb1d6257e28f83da7e35800367", | |||
| "minimatch@^3.0.5": "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b", | |||
| "minimatch@^3.1.1": "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b", | |||
| "minimatch@^3.1.2": "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b", | |||
| "minimist@^1.1.0": "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c", | |||
| "minimist@^1.2.6": "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c", | |||
| "mkdirp@^0.5.1": "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.6.tgz#7def03d2432dcae4ba1d611445c48396062255f6", | |||
| "ms@^2.0.0": "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2", | |||
| "ms@^2.1.3": "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2", | |||
| "mz@^2.7.0": "https://registry.yarnpkg.com/mz/-/mz-2.7.0.tgz#95008057a56cafadc2bc63dde7f9ff6955948e32", | |||
| "natural-compare@^1.4.0": "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7", | |||
| "node-hex@^1.0.1": "https://registry.yarnpkg.com/node-hex/-/node-hex-1.0.1.tgz#606208e91f9c02b9b81531b692b9f1da4860fb24", | |||
| "object-assign@^4.0.1": "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863", | |||
| "object-inspect@^1.13.3": "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.3.tgz#f14c183de51130243d6d18ae149375ff50ea488a", | |||
| "object-keys@^1.1.1": "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e", | |||
| "object.assign@^4.1.2": "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.7.tgz#8c14ca1a424c6a561b0bb2a22f66f5049a945d3d", | |||
| "object.entries@^1.1.5": "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.8.tgz#bffe6f282e01f4d17807204a24f8edd823599c41", | |||
| "once@^1.3.0": "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1", | |||
| "once@^1.3.1": "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1", | |||
| "once@^1.4.0": "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1", | |||
| "optionator@^0.9.3": "https://registry.yarnpkg.com/optionator/-/optionator-0.9.4.tgz#7ea1c1a5d91d764fb282139c88fe11e182a3a734", | |||
| "os-name@~1.0.3": "https://registry.yarnpkg.com/os-name/-/os-name-1.0.3.tgz#1b379f64835af7c5a7f498b357cb95215c159edf", | |||
| "osx-release@^1.0.0": "https://registry.yarnpkg.com/osx-release/-/osx-release-1.1.0.tgz#f217911a28136949af1bf9308b241e2737d3cd6c", | |||
| "p-limit@^3.0.2": "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b", | |||
| "p-locate@^5.0.0": "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834", | |||
| "parent-module@^1.0.0": "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2", | |||
| "path-exists@^4.0.0": "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3", | |||
| "path-is-absolute@^1.0.0": "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f", | |||
| "path-key@^3.1.0": "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375", | |||
| "pause-stream@~0.0.11": "https://registry.yarnpkg.com/pause-stream/-/pause-stream-0.0.11.tgz#fe5a34b0cbce12b5aa6a2b403ee2e73b602f1445", | |||
| "platform@^1.3.1": "https://registry.yarnpkg.com/platform/-/platform-1.3.6.tgz#48b4ce983164b209c2d45a107adb31f473a6e7a7", | |||
| "prelude-ls@^1.2.1": "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396", | |||
| "process-nextick-args@~2.0.0": "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2", | |||
| "pump@^3.0.0": "https://registry.yarnpkg.com/pump/-/pump-3.0.2.tgz#836f3edd6bc2ee599256c924ffe0d88573ddcbf8", | |||
| "punycode@^2.1.0": "https://registry.yarnpkg.com/punycode/-/punycode-2.3.1.tgz#027422e2faec0b25e1549c3e1bd8309b9133b6e5", | |||
| "qs@^6.4.0": "https://registry.yarnpkg.com/qs/-/qs-6.14.0.tgz#c63fa40680d2c5c941412a0e899c89af60c0a930", | |||
| "queue-microtask@^1.2.2": "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243", | |||
| "readable-stream@^2.3.6": "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.8.tgz#91125e8042bba1b9887f49345f6277027ce8be9b", | |||
| "resolve-from@^4.0.0": "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6", | |||
| "reusify@^1.0.4": "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76", | |||
| "rimraf@^3.0.2": "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a", | |||
| "run-parallel@^1.1.9": "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee", | |||
| "safe-buffer@~5.1.0": "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d", | |||
| "safe-buffer@~5.1.1": "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d", | |||
| "safer-buffer@>= 2.1.2 < 3.0.0": "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a", | |||
| "sax@>=0.6.0": "https://registry.yarnpkg.com/sax/-/sax-1.4.1.tgz#44cc8988377f126304d3b3fc1010c733b929ef0f", | |||
| "sdk-base@^2.0.1": "https://registry.yarnpkg.com/sdk-base/-/sdk-base-2.0.1.tgz#ba40289e8bdf272ed11dd9ea97eaf98e036d24c6", | |||
| "semver@^5.0.1": "https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz#48d55db737c3287cd4835e17fa13feace1c41ef8", | |||
| "semver@^6.3.0": "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4", | |||
| "set-function-length@^1.2.2": "https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.2.2.tgz#aac72314198eaed975cf77b2c3b6b880695e5449", | |||
| "shebang-command@^2.0.0": "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea", | |||
| "shebang-regex@^3.0.0": "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172", | |||
| "side-channel-list@^1.0.0": "https://registry.yarnpkg.com/side-channel-list/-/side-channel-list-1.0.0.tgz#10cb5984263115d3b7a0e336591e290a830af8ad", | |||
| "side-channel-map@^1.0.1": "https://registry.yarnpkg.com/side-channel-map/-/side-channel-map-1.0.1.tgz#d6bb6b37902c6fef5174e5f533fab4c732a26f42", | |||
| "side-channel-weakmap@^1.0.2": "https://registry.yarnpkg.com/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz#11dda19d5368e40ce9ec2bdc1fb0ecbc0790ecea", | |||
| "side-channel@^1.1.0": "https://registry.yarnpkg.com/side-channel/-/side-channel-1.1.0.tgz#c3fcff9c4da932784873335ec9765fa94ff66bc9", | |||
| "statuses@^1.3.1": "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c", | |||
| "stream-http@2.8.2": "https://registry.yarnpkg.com/stream-http/-/stream-http-2.8.2.tgz#4126e8c6b107004465918aa2fc35549e77402c87", | |||
| "stream-wormhole@^1.0.4": "https://registry.yarnpkg.com/stream-wormhole/-/stream-wormhole-1.1.0.tgz#300aff46ced553cfec642a05251885417693c33d", | |||
| "string_decoder@~1.1.1": "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8", | |||
| "strip-ansi@^6.0.1": "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9", | |||
| "strip-json-comments@^3.1.1": "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006", | |||
| "supports-color@^7.1.0": "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da", | |||
| "text-table@^0.2.0": "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4", | |||
| "thenify-all@^1.0.0": "https://registry.yarnpkg.com/thenify-all/-/thenify-all-1.6.0.tgz#1a1918d402d8fc3f98fbf234db0bcc8cc10e9726", | |||
| "thenify@>= 3.1.0 < 4": "https://registry.yarnpkg.com/thenify/-/thenify-3.3.1.tgz#8932e686a4066038a016dd9e2ca46add9838a95f", | |||
| "through@~2.3": "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5", | |||
| "to-arraybuffer@^1.0.0": "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43", | |||
| "type-check@^0.4.0": "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1", | |||
| "type-check@~0.4.0": "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1", | |||
| "type-fest@^0.20.2": "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4", | |||
| "unescape@^1.0.1": "https://registry.yarnpkg.com/unescape/-/unescape-1.0.1.tgz#956e430f61cad8a4d57d82c518f5e6cc5d0dda96", | |||
| "uri-js@^4.2.2": "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e", | |||
| "urllib@^2.44.0": "https://registry.yarnpkg.com/urllib/-/urllib-2.44.0.tgz#0da4b037550bdc03eb9a408de498fb4025ddc0b4", | |||
| "util-deprecate@~1.0.1": "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf", | |||
| "utility@^1.16.1": "https://registry.yarnpkg.com/utility/-/utility-1.18.0.tgz#af55f62e6d5a272e0cb02b0ab3e7f37c46435f36", | |||
| "utility@^1.18.0": "https://registry.yarnpkg.com/utility/-/utility-1.18.0.tgz#af55f62e6d5a272e0cb02b0ab3e7f37c46435f36", | |||
| "which@^2.0.1": "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1", | |||
| "win-release@^1.0.0": "https://registry.yarnpkg.com/win-release/-/win-release-1.1.1.tgz#5fa55e02be7ca934edfc12665632e849b72e5209", | |||
| "word-wrap@^1.2.5": "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.5.tgz#d2c45c6dd4fbce621a66f136cbe328afd0410b34", | |||
| "wrappy@1": "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f", | |||
| "xml2js@^0.6.2": "https://registry.yarnpkg.com/xml2js/-/xml2js-0.6.2.tgz#dd0b630083aa09c161e25a4d0901e2b2a929b499", | |||
| "xmlbuilder@~11.0.0": "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-11.0.1.tgz#be9bae1c8a046e76b31127726347d0ad7002beb3", | |||
| "xtend@^4.0.0": "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54", | |||
| "yocto-queue@^0.1.0": "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" | |||
| }, | |||
| "files": [], | |||
| "artifacts": {} | |||
| } | |||
| @ -0,0 +1 @@ | |||
| ../../../../eslint/bin/eslint.js | |||
| @ -1,108 +1,80 @@ | |||
| { | |||
| "_from": "@eslint-community/eslint-utils@^4.2.0", | |||
| "_id": "@eslint-community/eslint-utils@4.4.1", | |||
| "_inBundle": false, | |||
| "_integrity": "sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==", | |||
| "_location": "/@eslint-community/eslint-utils", | |||
| "_phantomChildren": {}, | |||
| "_requested": { | |||
| "type": "range", | |||
| "registry": true, | |||
| "raw": "@eslint-community/eslint-utils@^4.2.0", | |||
| "name": "@eslint-community/eslint-utils", | |||
| "escapedName": "@eslint-community%2feslint-utils", | |||
| "scope": "@eslint-community", | |||
| "rawSpec": "^4.2.0", | |||
| "saveSpec": null, | |||
| "fetchSpec": "^4.2.0" | |||
| }, | |||
| "_requiredBy": [ | |||
| "/eslint" | |||
| ], | |||
| "_resolved": "https://registry.npmmirror.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.1.tgz", | |||
| "_shasum": "d1145bf2c20132d6400495d6df4bf59362fd9d56", | |||
| "_spec": "@eslint-community/eslint-utils@^4.2.0", | |||
| "_where": "E:\\webView\\hire-wechat-uniapp\\node_modules\\eslint", | |||
| "author": { | |||
| "name": "Toru Nagashima" | |||
| }, | |||
| "bugs": { | |||
| "url": "https://github.com/eslint-community/eslint-utils/issues" | |||
| }, | |||
| "bundleDependencies": false, | |||
| "dependencies": { | |||
| "eslint-visitor-keys": "^3.4.3" | |||
| }, | |||
| "deprecated": false, | |||
| "description": "Utilities for ESLint plugins.", | |||
| "devDependencies": { | |||
| "@eslint-community/eslint-plugin-mysticatea": "^15.6.1", | |||
| "c8": "^8.0.1", | |||
| "dot-prop": "^7.2.0", | |||
| "eslint": "^8.57.1", | |||
| "installed-check": "^8.0.1", | |||
| "knip": "^5.33.3", | |||
| "mocha": "^9.2.2", | |||
| "npm-run-all2": "^6.2.3", | |||
| "opener": "^1.5.2", | |||
| "prettier": "2.8.8", | |||
| "rimraf": "^3.0.2", | |||
| "rollup": "^2.79.2", | |||
| "rollup-plugin-sourcemaps": "^0.6.3", | |||
| "semver": "^7.6.3", | |||
| "vitepress": "^1.4.1", | |||
| "warun": "^1.0.0" | |||
| }, | |||
| "engines": { | |||
| "node": "^12.22.0 || ^14.17.0 || >=16.0.0" | |||
| }, | |||
| "exports": { | |||
| ".": { | |||
| "import": "./index.mjs", | |||
| "require": "./index.js" | |||
| "version": "4.4.1", | |||
| "description": "Utilities for ESLint plugins.", | |||
| "keywords": [ | |||
| "eslint" | |||
| ], | |||
| "homepage": "https://github.com/eslint-community/eslint-utils#readme", | |||
| "bugs": { | |||
| "url": "https://github.com/eslint-community/eslint-utils/issues" | |||
| }, | |||
| "./package.json": "./package.json" | |||
| }, | |||
| "files": [ | |||
| "index.*" | |||
| ], | |||
| "funding": "https://opencollective.com/eslint", | |||
| "homepage": "https://github.com/eslint-community/eslint-utils#readme", | |||
| "keywords": [ | |||
| "eslint" | |||
| ], | |||
| "license": "MIT", | |||
| "main": "index", | |||
| "module": "index.mjs", | |||
| "name": "@eslint-community/eslint-utils", | |||
| "peerDependencies": { | |||
| "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" | |||
| }, | |||
| "repository": { | |||
| "type": "git", | |||
| "url": "git+https://github.com/eslint-community/eslint-utils.git" | |||
| }, | |||
| "scripts": { | |||
| "build": "rollup -c", | |||
| "clean": "rimraf .nyc_output coverage index.*", | |||
| "coverage": "opener ./coverage/lcov-report/index.html", | |||
| "docs:build": "vitepress build docs", | |||
| "docs:watch": "vitepress dev docs", | |||
| "format": "npm run -s format:prettier -- --write", | |||
| "format:check": "npm run -s format:prettier -- --check", | |||
| "format:prettier": "prettier .", | |||
| "lint": "run-p lint:*", | |||
| "lint:eslint": "eslint .", | |||
| "lint:format": "npm run -s format:check", | |||
| "lint:installed-check": "installed-check -v -i installed-check -i npm-run-all2 -i knip", | |||
| "lint:knip": "knip", | |||
| "postversion": "git push && git push --tags", | |||
| "prebuild": "npm run -s clean", | |||
| "preversion": "npm test && npm run -s build", | |||
| "prewatch": "npm run -s clean", | |||
| "test": "c8 mocha --reporter dot \"test/*.mjs\"", | |||
| "watch": "warun \"{src,test}/**/*.mjs\" -- npm run -s test:mocha" | |||
| }, | |||
| "sideEffects": false, | |||
| "version": "4.4.1" | |||
| "repository": { | |||
| "type": "git", | |||
| "url": "https://github.com/eslint-community/eslint-utils" | |||
| }, | |||
| "license": "MIT", | |||
| "author": "Toru Nagashima", | |||
| "sideEffects": false, | |||
| "exports": { | |||
| ".": { | |||
| "import": "./index.mjs", | |||
| "require": "./index.js" | |||
| }, | |||
| "./package.json": "./package.json" | |||
| }, | |||
| "main": "index", | |||
| "module": "index.mjs", | |||
| "files": [ | |||
| "index.*" | |||
| ], | |||
| "scripts": { | |||
| "prebuild": "npm run -s clean", | |||
| "build": "rollup -c", | |||
| "clean": "rimraf .nyc_output coverage index.*", | |||
| "coverage": "opener ./coverage/lcov-report/index.html", | |||
| "docs:build": "vitepress build docs", | |||
| "docs:watch": "vitepress dev docs", | |||
| "format": "npm run -s format:prettier -- --write", | |||
| "format:prettier": "prettier .", | |||
| "format:check": "npm run -s format:prettier -- --check", | |||
| "lint:eslint": "eslint .", | |||
| "lint:format": "npm run -s format:check", | |||
| "lint:installed-check": "installed-check -v -i installed-check -i npm-run-all2 -i knip", | |||
| "lint:knip": "knip", | |||
| "lint": "run-p lint:*", | |||
| "test": "c8 mocha --reporter dot \"test/*.mjs\"", | |||
| "preversion": "npm test && npm run -s build", | |||
| "postversion": "git push && git push --tags", | |||
| "prewatch": "npm run -s clean", | |||
| "watch": "warun \"{src,test}/**/*.mjs\" -- npm run -s test:mocha" | |||
| }, | |||
| "dependencies": { | |||
| "eslint-visitor-keys": "^3.4.3" | |||
| }, | |||
| "devDependencies": { | |||
| "@eslint-community/eslint-plugin-mysticatea": "^15.6.1", | |||
| "c8": "^8.0.1", | |||
| "dot-prop": "^7.2.0", | |||
| "eslint": "^8.57.1", | |||
| "installed-check": "^8.0.1", | |||
| "knip": "^5.33.3", | |||
| "mocha": "^9.2.2", | |||
| "npm-run-all2": "^6.2.3", | |||
| "opener": "^1.5.2", | |||
| "prettier": "2.8.8", | |||
| "rimraf": "^3.0.2", | |||
| "rollup": "^2.79.2", | |||
| "rollup-plugin-sourcemaps": "^0.6.3", | |||
| "semver": "^7.6.3", | |||
| "vitepress": "^1.4.1", | |||
| "warun": "^1.0.0" | |||
| }, | |||
| "peerDependencies": { | |||
| "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" | |||
| }, | |||
| "engines": { | |||
| "node": "^12.22.0 || ^14.17.0 || >=16.0.0" | |||
| }, | |||
| "funding": "https://opencollective.com/eslint" | |||
| } | |||
| @ -0,0 +1 @@ | |||
| ../../../../js-yaml/bin/js-yaml.js | |||
| @ -1,59 +1,31 @@ | |||
| { | |||
| "_from": "@eslint/js@8.57.1", | |||
| "_id": "@eslint/js@8.57.1", | |||
| "_inBundle": false, | |||
| "_integrity": "sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==", | |||
| "_location": "/@eslint/js", | |||
| "_phantomChildren": {}, | |||
| "_requested": { | |||
| "type": "version", | |||
| "registry": true, | |||
| "raw": "@eslint/js@8.57.1", | |||
| "name": "@eslint/js", | |||
| "escapedName": "@eslint%2fjs", | |||
| "scope": "@eslint", | |||
| "rawSpec": "8.57.1", | |||
| "saveSpec": null, | |||
| "fetchSpec": "8.57.1" | |||
| }, | |||
| "_requiredBy": [ | |||
| "/eslint" | |||
| ], | |||
| "_resolved": "https://registry.npmmirror.com/@eslint/js/-/js-8.57.1.tgz", | |||
| "_shasum": "de633db3ec2ef6a3c89e2f19038063e8a122e2c2", | |||
| "_spec": "@eslint/js@8.57.1", | |||
| "_where": "E:\\webView\\hire-wechat-uniapp\\node_modules\\eslint", | |||
| "bugs": { | |||
| "url": "https://github.com/eslint/eslint/issues/" | |||
| }, | |||
| "bundleDependencies": false, | |||
| "deprecated": false, | |||
| "name": "@eslint/js", | |||
| "version": "8.57.1", | |||
| "description": "ESLint JavaScript language implementation", | |||
| "engines": { | |||
| "node": "^12.22.0 || ^14.17.0 || >=16.0.0" | |||
| }, | |||
| "main": "./src/index.js", | |||
| "scripts": {}, | |||
| "files": [ | |||
| "LICENSE", | |||
| "README.md", | |||
| "src" | |||
| ], | |||
| "homepage": "https://eslint.org", | |||
| "keywords": [ | |||
| "javascript", | |||
| "eslint-plugin", | |||
| "eslint" | |||
| ], | |||
| "license": "MIT", | |||
| "main": "./src/index.js", | |||
| "name": "@eslint/js", | |||
| "publishConfig": { | |||
| "access": "public" | |||
| }, | |||
| "repository": { | |||
| "type": "git", | |||
| "url": "git+https://github.com/eslint/eslint.git", | |||
| "url": "https://github.com/eslint/eslint.git", | |||
| "directory": "packages/js" | |||
| }, | |||
| "scripts": {}, | |||
| "version": "8.57.1" | |||
| "homepage": "https://eslint.org", | |||
| "bugs": "https://github.com/eslint/eslint/issues/", | |||
| "keywords": [ | |||
| "javascript", | |||
| "eslint-plugin", | |||
| "eslint" | |||
| ], | |||
| "license": "MIT", | |||
| "engines": { | |||
| "node": "^12.22.0 || ^14.17.0 || >=16.0.0" | |||
| } | |||
| } | |||
| @ -1,66 +1,38 @@ | |||
| { | |||
| "_from": "@humanwhocodes/object-schema@^2.0.3", | |||
| "_id": "@humanwhocodes/object-schema@2.0.3", | |||
| "_inBundle": false, | |||
| "_integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==", | |||
| "_location": "/@humanwhocodes/object-schema", | |||
| "_phantomChildren": {}, | |||
| "_requested": { | |||
| "type": "range", | |||
| "registry": true, | |||
| "raw": "@humanwhocodes/object-schema@^2.0.3", | |||
| "name": "@humanwhocodes/object-schema", | |||
| "escapedName": "@humanwhocodes%2fobject-schema", | |||
| "scope": "@humanwhocodes", | |||
| "rawSpec": "^2.0.3", | |||
| "saveSpec": null, | |||
| "fetchSpec": "^2.0.3" | |||
| }, | |||
| "_requiredBy": [ | |||
| "/@humanwhocodes/config-array" | |||
| ], | |||
| "_resolved": "https://registry.npmmirror.com/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz", | |||
| "_shasum": "4a2868d75d6d6963e423bcf90b7fd1be343409d3", | |||
| "_spec": "@humanwhocodes/object-schema@^2.0.3", | |||
| "_where": "E:\\webView\\hire-wechat-uniapp\\node_modules\\@humanwhocodes\\config-array", | |||
| "author": { | |||
| "name": "Nicholas C. Zakas" | |||
| }, | |||
| "bugs": { | |||
| "url": "https://github.com/humanwhocodes/object-schema/issues" | |||
| }, | |||
| "bundleDependencies": false, | |||
| "deprecated": "Use @eslint/object-schema instead", | |||
| "name": "@humanwhocodes/object-schema", | |||
| "version": "2.0.3", | |||
| "description": "An object schema merger/validator", | |||
| "devDependencies": { | |||
| "chai": "^4.2.0", | |||
| "eslint": "^5.13.0", | |||
| "mocha": "^5.2.0" | |||
| }, | |||
| "directories": { | |||
| "test": "tests" | |||
| }, | |||
| "main": "src/index.js", | |||
| "files": [ | |||
| "src", | |||
| "LICENSE", | |||
| "README.md" | |||
| ], | |||
| "homepage": "https://github.com/humanwhocodes/object-schema#readme", | |||
| "directories": { | |||
| "test": "tests" | |||
| }, | |||
| "scripts": { | |||
| "test": "mocha tests/" | |||
| }, | |||
| "repository": { | |||
| "type": "git", | |||
| "url": "git+https://github.com/humanwhocodes/object-schema.git" | |||
| }, | |||
| "keywords": [ | |||
| "object", | |||
| "validation", | |||
| "schema", | |||
| "merge" | |||
| ], | |||
| "author": "Nicholas C. Zakas", | |||
| "license": "BSD-3-Clause", | |||
| "main": "src/index.js", | |||
| "name": "@humanwhocodes/object-schema", | |||
| "repository": { | |||
| "type": "git", | |||
| "url": "git+https://github.com/humanwhocodes/object-schema.git" | |||
| }, | |||
| "scripts": { | |||
| "test": "mocha tests/" | |||
| "bugs": { | |||
| "url": "https://github.com/humanwhocodes/object-schema/issues" | |||
| }, | |||
| "version": "2.0.3" | |||
| "homepage": "https://github.com/humanwhocodes/object-schema#readme", | |||
| "devDependencies": { | |||
| "chai": "^4.2.0", | |||
| "eslint": "^5.13.0", | |||
| "mocha": "^5.2.0" | |||
| } | |||
| } | |||
| @ -1 +1 @@ | |||
| var StructuredJSON=function(e){"use strict";const r="object"==typeof self?self:globalThis,t=e=>((e,t)=>{const s=(r,t)=>(e.set(t,r),r),n=c=>{if(e.has(c))return e.get(c);const[o,a]=t[c];switch(o){case 0:case-1:return s(a,c);case 1:{const e=s([],c);for(const r of a)e.push(n(r));return e}case 2:{const e=s({},c);for(const[r,t]of a)e[n(r)]=n(t);return e}case 3:return s(new Date(a),c);case 4:{const{source:e,flags:r}=a;return s(new RegExp(e,r),c)}case 5:{const e=s(new Map,c);for(const[r,t]of a)e.set(n(r),n(t));return e}case 6:{const e=s(new Set,c);for(const r of a)e.add(n(r));return e}case 7:{const{name:e,message:t}=a;return s(new r[e](t),c)}case 8:return s(BigInt(a),c);case"BigInt":return s(Object(BigInt(a)),c)}return s(new r[o](a),c)};return n})(new Map,e)(0),s="",{toString:n}={},{keys:c}=Object,o=e=>{const r=typeof e;if("object"!==r||!e)return[0,r];const t=n.call(e).slice(8,-1);switch(t){case"Array":return[1,s];case"Object":return[2,s];case"Date":return[3,s];case"RegExp":return[4,s];case"Map":return[5,s];case"Set":return[6,s]}return t.includes("Array")?[1,t]:t.includes("Error")?[7,t]:[2,t]},a=([e,r])=>0===e&&("function"===r||"symbol"===r),u=(e,{json:r,lossy:t}={})=>{const s=[];return((e,r,t,s)=>{const n=(e,r)=>{const n=s.push(e)-1;return t.set(r,n),n},u=s=>{if(t.has(s))return t.get(s);let[i,f]=o(s);switch(i){case 0:{let r=s;switch(f){case"bigint":i=8,r=s.toString();break;case"function":case"symbol":if(e)throw new TypeError("unable to serialize "+f);r=null;break;case"undefined":return n([-1],s)}return n([i,r],s)}case 1:{if(f)return n([f,[...s]],s);const e=[],r=n([i,e],s);for(const r of s)e.push(u(r));return r}case 2:{if(f)switch(f){case"BigInt":return n([f,s.toString()],s);case"Boolean":case"Number":case"String":return n([f,s.valueOf()],s)}if(r&&"toJSON"in s)return u(s.toJSON());const t=[],l=n([i,t],s);for(const r of c(s))!e&&a(o(s[r]))||t.push([u(r),u(s[r])]);return l}case 3:return n([i,s.toISOString()],s);case 4:{const{source:e,flags:r}=s;return n([i,{source:e,flags:r}],s)}case 5:{const r=[],t=n([i,r],s);for(const[t,n]of s)(e||!a(o(t))&&!a(o(n)))&&r.push([u(t),u(n)]);return t}case 6:{const r=[],t=n([i,r],s);for(const t of s)!e&&a(o(t))||r.push(u(t));return t}}const{message:l}=s;return n([i,{name:f,message:l}],s)};return u})(!(r||t),!!r,new Map,s)(e),s},{parse:i,stringify:f}=JSON,l={json:!0,lossy:!0};return e.parse=e=>t(i(e)),e.stringify=e=>f(u(e,l)),e}({}); | |||
| var StructuredJSON=function(e){"use strict";const r="object"==typeof self?self:globalThis,t=e=>((e,t)=>{const n=(r,t)=>(e.set(t,r),r),s=c=>{if(e.has(c))return e.get(c);const[a,o]=t[c];switch(a){case 0:case-1:return n(o,c);case 1:{const e=n([],c);for(const r of o)e.push(s(r));return e}case 2:{const e=n({},c);for(const[r,t]of o)e[s(r)]=s(t);return e}case 3:return n(new Date(o),c);case 4:{const{source:e,flags:r}=o;return n(new RegExp(e,r),c)}case 5:{const e=n(new Map,c);for(const[r,t]of o)e.set(s(r),s(t));return e}case 6:{const e=n(new Set,c);for(const r of o)e.add(s(r));return e}case 7:{const{name:e,message:t}=o;return n(new r[e](t),c)}case 8:return n(BigInt(o),c);case"BigInt":return n(Object(BigInt(o)),c);case"ArrayBuffer":return n(new Uint8Array(o).buffer,o);case"DataView":{const{buffer:e}=new Uint8Array(o);return n(new DataView(e),o)}}return n(new r[a](o),c)};return s})(new Map,e)(0),n="",{toString:s}={},{keys:c}=Object,a=e=>{const r=typeof e;if("object"!==r||!e)return[0,r];const t=s.call(e).slice(8,-1);switch(t){case"Array":return[1,n];case"Object":return[2,n];case"Date":return[3,n];case"RegExp":return[4,n];case"Map":return[5,n];case"Set":return[6,n];case"DataView":return[1,t]}return t.includes("Array")?[1,t]:t.includes("Error")?[7,t]:[2,t]},o=([e,r])=>0===e&&("function"===r||"symbol"===r),u=(e,{json:r,lossy:t}={})=>{const n=[];return((e,r,t,n)=>{const s=(e,r)=>{const s=n.push(e)-1;return t.set(r,s),s},u=n=>{if(t.has(n))return t.get(n);let[f,i]=a(n);switch(f){case 0:{let r=n;switch(i){case"bigint":f=8,r=n.toString();break;case"function":case"symbol":if(e)throw new TypeError("unable to serialize "+i);r=null;break;case"undefined":return s([-1],n)}return s([f,r],n)}case 1:{if(i){let e=n;return"DataView"===i?e=new Uint8Array(n.buffer):"ArrayBuffer"===i&&(e=new Uint8Array(n)),s([i,[...e]],n)}const e=[],r=s([f,e],n);for(const r of n)e.push(u(r));return r}case 2:{if(i)switch(i){case"BigInt":return s([i,n.toString()],n);case"Boolean":case"Number":case"String":return s([i,n.valueOf()],n)}if(r&&"toJSON"in n)return u(n.toJSON());const t=[],l=s([f,t],n);for(const r of c(n))!e&&o(a(n[r]))||t.push([u(r),u(n[r])]);return l}case 3:return s([f,n.toISOString()],n);case 4:{const{source:e,flags:r}=n;return s([f,{source:e,flags:r}],n)}case 5:{const r=[],t=s([f,r],n);for(const[t,s]of n)(e||!o(a(t))&&!o(a(s)))&&r.push([u(t),u(s)]);return t}case 6:{const r=[],t=s([f,r],n);for(const t of n)!e&&o(a(t))||r.push(u(t));return t}}const{message:l}=n;return s([f,{name:i,message:l}],n)};return u})(!(r||t),!!r,new Map,n)(e),n},{parse:f,stringify:i}=JSON,l={json:!0,lossy:!0};return e.parse=e=>t(f(e)),e.stringify=e=>i(u(e,l)),e}({}); | |||
| @ -0,0 +1 @@ | |||
| ../../../acorn/bin/acorn | |||
| @ -1,55 +1,27 @@ | |||
| { | |||
| "_from": "acorn-jsx@^5.3.2", | |||
| "_id": "acorn-jsx@5.3.2", | |||
| "_inBundle": false, | |||
| "_integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", | |||
| "_location": "/acorn-jsx", | |||
| "_phantomChildren": {}, | |||
| "_requested": { | |||
| "type": "range", | |||
| "registry": true, | |||
| "raw": "acorn-jsx@^5.3.2", | |||
| "name": "acorn-jsx", | |||
| "escapedName": "acorn-jsx", | |||
| "rawSpec": "^5.3.2", | |||
| "saveSpec": null, | |||
| "fetchSpec": "^5.3.2" | |||
| }, | |||
| "_requiredBy": [ | |||
| "/espree" | |||
| ], | |||
| "_resolved": "https://registry.npmmirror.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz", | |||
| "_shasum": "7ed5bb55908b3b2f1bc55c6af1653bada7f07937", | |||
| "_spec": "acorn-jsx@^5.3.2", | |||
| "_where": "E:\\webView\\hire-wechat-uniapp\\node_modules\\espree", | |||
| "bugs": { | |||
| "url": "https://github.com/acornjs/acorn-jsx/issues" | |||
| }, | |||
| "bundleDependencies": false, | |||
| "deprecated": false, | |||
| "name": "acorn-jsx", | |||
| "description": "Modern, fast React.js JSX parser", | |||
| "devDependencies": { | |||
| "acorn": "^8.0.1" | |||
| }, | |||
| "homepage": "https://github.com/acornjs/acorn-jsx", | |||
| "license": "MIT", | |||
| "version": "5.3.2", | |||
| "maintainers": [ | |||
| { | |||
| "name": "Ingvar Stepanyan", | |||
| "email": "me@rreverser.com", | |||
| "url": "http://rreverser.com/" | |||
| "web": "http://rreverser.com/" | |||
| } | |||
| ], | |||
| "name": "acorn-jsx", | |||
| "peerDependencies": { | |||
| "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" | |||
| }, | |||
| "repository": { | |||
| "type": "git", | |||
| "url": "git+https://github.com/acornjs/acorn-jsx.git" | |||
| "url": "https://github.com/acornjs/acorn-jsx" | |||
| }, | |||
| "license": "MIT", | |||
| "scripts": { | |||
| "test": "node test/run.js" | |||
| }, | |||
| "version": "5.3.2" | |||
| "peerDependencies": { | |||
| "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" | |||
| }, | |||
| "devDependencies": { | |||
| "acorn": "^8.0.1" | |||
| } | |||
| } | |||
| @ -1 +1 @@ | |||
| exports.version = '6.21.0'; | |||
| exports.version = '6.22.0'; | |||
| @ -0,0 +1 @@ | |||
| export declare function signPostObjectPolicyV4(this: any, policy: string | object, date: Date): string; | |||
| @ -0,0 +1,18 @@ | |||
| "use strict"; | |||
| var __importDefault = (this && this.__importDefault) || function (mod) { | |||
| return (mod && mod.__esModule) ? mod : { "default": mod }; | |||
| }; | |||
| Object.defineProperty(exports, "__esModule", { value: true }); | |||
| exports.signPostObjectPolicyV4 = void 0; | |||
| const dateformat_1 = __importDefault(require("dateformat")); | |||
| const getStandardRegion_1 = require("../utils/getStandardRegion"); | |||
| const policy2Str_1 = require("../utils/policy2Str"); | |||
| const signUtils_1 = require("../signUtils"); | |||
| function signPostObjectPolicyV4(policy, date) { | |||
| const policyStr = Buffer.from(policy2Str_1.policy2Str(policy), 'utf8').toString('base64'); | |||
| const formattedDate = dateformat_1.default(date, "UTC:yyyymmdd'T'HHMMss'Z'"); | |||
| const onlyDate = formattedDate.split('T')[0]; | |||
| const signature = signUtils_1.getSignatureV4(this.options.accessKeySecret, onlyDate, getStandardRegion_1.getStandardRegion(this.options.region), policyStr); | |||
| return signature; | |||
| } | |||
| exports.signPostObjectPolicyV4 = signPostObjectPolicyV4; | |||
| @ -0,0 +1,20 @@ | |||
| import dateFormat from 'dateformat'; | |||
| import { getStandardRegion } from '../utils/getStandardRegion'; | |||
| import { policy2Str } from '../utils/policy2Str'; | |||
| import { getSignatureV4 } from '../signUtils'; | |||
| export function signPostObjectPolicyV4(this: any, policy: string | object, date: Date): string { | |||
| const policyStr = Buffer.from(policy2Str(policy), 'utf8').toString('base64'); | |||
| const formattedDate = dateFormat(date, "UTC:yyyymmdd'T'HHMMss'Z'"); | |||
| const onlyDate = formattedDate.split('T')[0]; | |||
| const signature = getSignatureV4( | |||
| this.options.accessKeySecret, | |||
| onlyDate, | |||
| getStandardRegion(this.options.region), | |||
| policyStr | |||
| ); | |||
| return signature; | |||
| } | |||
| @ -0,0 +1,16 @@ | |||
| interface IRestoreInfo { | |||
| /** | |||
| * Whether the restoration is ongoing | |||
| * If a RestoreObject request is sent but the restoration is not complete, the value is true. | |||
| * If a RestoreObject request is sent and the restoration is complete, the value is false. | |||
| */ | |||
| ongoingRequest: boolean; | |||
| /** | |||
| * The time before which the restored object can be read. | |||
| * If a RestoreObject request is sent but the restoration is not complete, the value is undefined. | |||
| * If a RestoreObject request is sent and the restoration is complete, the value is Date. | |||
| */ | |||
| expiryDate?: Date; | |||
| } | |||
| export declare const parseRestoreInfo: (originalRestoreInfo?: string | undefined) => IRestoreInfo | undefined; | |||
| export {}; | |||
| @ -0,0 +1,18 @@ | |||
| "use strict"; | |||
| Object.defineProperty(exports, "__esModule", { value: true }); | |||
| exports.parseRestoreInfo = void 0; | |||
| exports.parseRestoreInfo = (originalRestoreInfo) => { | |||
| let tempRestoreInfo; | |||
| if (originalRestoreInfo) { | |||
| tempRestoreInfo = { | |||
| ongoingRequest: originalRestoreInfo.includes('true') | |||
| }; | |||
| if (!tempRestoreInfo.ongoingRequest) { | |||
| const matchArray = originalRestoreInfo.match(/expiry-date="(.*)"/); | |||
| if (matchArray && matchArray[1]) { | |||
| tempRestoreInfo.expiryDate = new Date(matchArray[1]); | |||
| } | |||
| } | |||
| } | |||
| return tempRestoreInfo; | |||
| }; | |||
| @ -0,0 +1,34 @@ | |||
| interface IRestoreInfo { | |||
| /** | |||
| * Whether the restoration is ongoing | |||
| * If a RestoreObject request is sent but the restoration is not complete, the value is true. | |||
| * If a RestoreObject request is sent and the restoration is complete, the value is false. | |||
| */ | |||
| ongoingRequest: boolean; | |||
| /** | |||
| * The time before which the restored object can be read. | |||
| * If a RestoreObject request is sent but the restoration is not complete, the value is undefined. | |||
| * If a RestoreObject request is sent and the restoration is complete, the value is Date. | |||
| */ | |||
| expiryDate?: Date; | |||
| } | |||
| export const parseRestoreInfo = (originalRestoreInfo?: string): IRestoreInfo | undefined => { | |||
| let tempRestoreInfo: IRestoreInfo | undefined; | |||
| if (originalRestoreInfo) { | |||
| tempRestoreInfo = { | |||
| ongoingRequest: originalRestoreInfo.includes('true') | |||
| }; | |||
| if (!tempRestoreInfo.ongoingRequest) { | |||
| const matchArray = originalRestoreInfo.match(/expiry-date="(.*)"/); | |||
| if (matchArray && matchArray[1]) { | |||
| tempRestoreInfo.expiryDate = new Date(matchArray[1]); | |||
| } | |||
| } | |||
| } | |||
| return tempRestoreInfo; | |||
| }; | |||
| @ -0,0 +1 @@ | |||
| ../../../mime/cli.js | |||
| @ -1,87 +1,55 @@ | |||
| { | |||
| "_from": "ansi-regex@^5.0.1", | |||
| "_id": "ansi-regex@5.0.1", | |||
| "_inBundle": false, | |||
| "_integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", | |||
| "_location": "/ansi-regex", | |||
| "_phantomChildren": {}, | |||
| "_requested": { | |||
| "type": "range", | |||
| "registry": true, | |||
| "raw": "ansi-regex@^5.0.1", | |||
| "name": "ansi-regex", | |||
| "escapedName": "ansi-regex", | |||
| "rawSpec": "^5.0.1", | |||
| "saveSpec": null, | |||
| "fetchSpec": "^5.0.1" | |||
| }, | |||
| "_requiredBy": [ | |||
| "/strip-ansi" | |||
| ], | |||
| "_resolved": "https://registry.npmmirror.com/ansi-regex/-/ansi-regex-5.0.1.tgz", | |||
| "_shasum": "082cb2c89c9fe8659a311a53bd6a4dc5301db304", | |||
| "_spec": "ansi-regex@^5.0.1", | |||
| "_where": "E:\\webView\\hire-wechat-uniapp\\node_modules\\strip-ansi", | |||
| "author": { | |||
| "name": "Sindre Sorhus", | |||
| "email": "sindresorhus@gmail.com", | |||
| "url": "sindresorhus.com" | |||
| }, | |||
| "bugs": { | |||
| "url": "https://github.com/chalk/ansi-regex/issues" | |||
| }, | |||
| "bundleDependencies": false, | |||
| "deprecated": false, | |||
| "description": "Regular expression for matching ANSI escape codes", | |||
| "devDependencies": { | |||
| "ava": "^2.4.0", | |||
| "tsd": "^0.9.0", | |||
| "xo": "^0.25.3" | |||
| }, | |||
| "engines": { | |||
| "node": ">=8" | |||
| }, | |||
| "files": [ | |||
| "index.js", | |||
| "index.d.ts" | |||
| ], | |||
| "homepage": "https://github.com/chalk/ansi-regex#readme", | |||
| "keywords": [ | |||
| "ansi", | |||
| "styles", | |||
| "color", | |||
| "colour", | |||
| "colors", | |||
| "terminal", | |||
| "console", | |||
| "cli", | |||
| "string", | |||
| "tty", | |||
| "escape", | |||
| "formatting", | |||
| "rgb", | |||
| "256", | |||
| "shell", | |||
| "xterm", | |||
| "command-line", | |||
| "text", | |||
| "regex", | |||
| "regexp", | |||
| "re", | |||
| "match", | |||
| "test", | |||
| "find", | |||
| "pattern" | |||
| ], | |||
| "license": "MIT", | |||
| "name": "ansi-regex", | |||
| "repository": { | |||
| "type": "git", | |||
| "url": "git+https://github.com/chalk/ansi-regex.git" | |||
| }, | |||
| "scripts": { | |||
| "test": "xo && ava && tsd", | |||
| "view-supported": "node fixtures/view-codes.js" | |||
| }, | |||
| "version": "5.0.1" | |||
| "name": "ansi-regex", | |||
| "version": "5.0.1", | |||
| "description": "Regular expression for matching ANSI escape codes", | |||
| "license": "MIT", | |||
| "repository": "chalk/ansi-regex", | |||
| "author": { | |||
| "name": "Sindre Sorhus", | |||
| "email": "sindresorhus@gmail.com", | |||
| "url": "sindresorhus.com" | |||
| }, | |||
| "engines": { | |||
| "node": ">=8" | |||
| }, | |||
| "scripts": { | |||
| "test": "xo && ava && tsd", | |||
| "view-supported": "node fixtures/view-codes.js" | |||
| }, | |||
| "files": [ | |||
| "index.js", | |||
| "index.d.ts" | |||
| ], | |||
| "keywords": [ | |||
| "ansi", | |||
| "styles", | |||
| "color", | |||
| "colour", | |||
| "colors", | |||
| "terminal", | |||
| "console", | |||
| "cli", | |||
| "string", | |||
| "tty", | |||
| "escape", | |||
| "formatting", | |||
| "rgb", | |||
| "256", | |||
| "shell", | |||
| "xterm", | |||
| "command-line", | |||
| "text", | |||
| "regex", | |||
| "regexp", | |||
| "re", | |||
| "match", | |||
| "test", | |||
| "find", | |||
| "pattern" | |||
| ], | |||
| "devDependencies": { | |||
| "ava": "^2.4.0", | |||
| "tsd": "^0.9.0", | |||
| "xo": "^0.25.3" | |||
| } | |||
| } | |||
| @ -1,88 +1,56 @@ | |||
| { | |||
| "_from": "ansi-styles@^4.1.0", | |||
| "_id": "ansi-styles@4.3.0", | |||
| "_inBundle": false, | |||
| "_integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", | |||
| "_location": "/ansi-styles", | |||
| "_phantomChildren": {}, | |||
| "_requested": { | |||
| "type": "range", | |||
| "registry": true, | |||
| "raw": "ansi-styles@^4.1.0", | |||
| "name": "ansi-styles", | |||
| "escapedName": "ansi-styles", | |||
| "rawSpec": "^4.1.0", | |||
| "saveSpec": null, | |||
| "fetchSpec": "^4.1.0" | |||
| }, | |||
| "_requiredBy": [ | |||
| "/chalk" | |||
| ], | |||
| "_resolved": "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-4.3.0.tgz", | |||
| "_shasum": "edd803628ae71c04c85ae7a0906edad34b648937", | |||
| "_spec": "ansi-styles@^4.1.0", | |||
| "_where": "E:\\webView\\hire-wechat-uniapp\\node_modules\\chalk", | |||
| "author": { | |||
| "name": "Sindre Sorhus", | |||
| "email": "sindresorhus@gmail.com", | |||
| "url": "sindresorhus.com" | |||
| }, | |||
| "bugs": { | |||
| "url": "https://github.com/chalk/ansi-styles/issues" | |||
| }, | |||
| "bundleDependencies": false, | |||
| "dependencies": { | |||
| "color-convert": "^2.0.1" | |||
| }, | |||
| "deprecated": false, | |||
| "description": "ANSI escape codes for styling strings in the terminal", | |||
| "devDependencies": { | |||
| "@types/color-convert": "^1.9.0", | |||
| "ava": "^2.3.0", | |||
| "svg-term-cli": "^2.1.1", | |||
| "tsd": "^0.11.0", | |||
| "xo": "^0.25.3" | |||
| }, | |||
| "engines": { | |||
| "node": ">=8" | |||
| }, | |||
| "files": [ | |||
| "index.js", | |||
| "index.d.ts" | |||
| ], | |||
| "funding": "https://github.com/chalk/ansi-styles?sponsor=1", | |||
| "homepage": "https://github.com/chalk/ansi-styles#readme", | |||
| "keywords": [ | |||
| "ansi", | |||
| "styles", | |||
| "color", | |||
| "colour", | |||
| "colors", | |||
| "terminal", | |||
| "console", | |||
| "cli", | |||
| "string", | |||
| "tty", | |||
| "escape", | |||
| "formatting", | |||
| "rgb", | |||
| "256", | |||
| "shell", | |||
| "xterm", | |||
| "log", | |||
| "logging", | |||
| "command-line", | |||
| "text" | |||
| ], | |||
| "license": "MIT", | |||
| "name": "ansi-styles", | |||
| "repository": { | |||
| "type": "git", | |||
| "url": "git+https://github.com/chalk/ansi-styles.git" | |||
| }, | |||
| "scripts": { | |||
| "screenshot": "svg-term --command='node screenshot' --out=screenshot.svg --padding=3 --width=55 --height=3 --at=1000 --no-cursor", | |||
| "test": "xo && ava && tsd" | |||
| }, | |||
| "version": "4.3.0" | |||
| "name": "ansi-styles", | |||
| "version": "4.3.0", | |||
| "description": "ANSI escape codes for styling strings in the terminal", | |||
| "license": "MIT", | |||
| "repository": "chalk/ansi-styles", | |||
| "funding": "https://github.com/chalk/ansi-styles?sponsor=1", | |||
| "author": { | |||
| "name": "Sindre Sorhus", | |||
| "email": "sindresorhus@gmail.com", | |||
| "url": "sindresorhus.com" | |||
| }, | |||
| "engines": { | |||
| "node": ">=8" | |||
| }, | |||
| "scripts": { | |||
| "test": "xo && ava && tsd", | |||
| "screenshot": "svg-term --command='node screenshot' --out=screenshot.svg --padding=3 --width=55 --height=3 --at=1000 --no-cursor" | |||
| }, | |||
| "files": [ | |||
| "index.js", | |||
| "index.d.ts" | |||
| ], | |||
| "keywords": [ | |||
| "ansi", | |||
| "styles", | |||
| "color", | |||
| "colour", | |||
| "colors", | |||
| "terminal", | |||
| "console", | |||
| "cli", | |||
| "string", | |||
| "tty", | |||
| "escape", | |||
| "formatting", | |||
| "rgb", | |||
| "256", | |||
| "shell", | |||
| "xterm", | |||
| "log", | |||
| "logging", | |||
| "command-line", | |||
| "text" | |||
| ], | |||
| "dependencies": { | |||
| "color-convert": "^2.0.1" | |||
| }, | |||
| "devDependencies": { | |||
| "@types/color-convert": "^1.9.0", | |||
| "ava": "^2.3.0", | |||
| "svg-term-cli": "^2.1.1", | |||
| "tsd": "^0.11.0", | |||
| "xo": "^0.25.3" | |||
| } | |||
| } | |||
| @ -0,0 +1,16 @@ | |||
| { | |||
| "root": true, | |||
| "extends": "@ljharb", | |||
| "rules": { | |||
| "func-name-matching": 0, | |||
| "id-length": 0, | |||
| "new-cap": [2, { | |||
| "capIsNewExceptions": [ | |||
| "GetIntrinsic", | |||
| ], | |||
| }], | |||
| "no-magic-numbers": 0, | |||
| }, | |||
| } | |||
| @ -0,0 +1,12 @@ | |||
| # These are supported funding model platforms | |||
| github: [ljharb] | |||
| patreon: # Replace with a single Patreon username | |||
| open_collective: # Replace with a single Open Collective username | |||
| ko_fi: # Replace with a single Ko-fi username | |||
| tidelift: npm/call-bind-apply-helpers | |||
| community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry | |||
| liberapay: # Replace with a single Liberapay username | |||
| issuehunt: # Replace with a single IssueHunt username | |||
| otechie: # Replace with a single Otechie username | |||
| custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] | |||
| @ -0,0 +1,9 @@ | |||
| { | |||
| "all": true, | |||
| "check-coverage": false, | |||
| "reporter": ["text-summary", "text", "html", "json"], | |||
| "exclude": [ | |||
| "coverage", | |||
| "test" | |||
| ] | |||
| } | |||
| @ -0,0 +1,23 @@ | |||
| # Changelog | |||
| All notable changes to this project will be documented in this file. | |||
| The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) | |||
| and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | |||
| ## [v1.0.1](https://github.com/ljharb/call-bind-apply-helpers/compare/v1.0.0...v1.0.1) - 2024-12-08 | |||
| ### Commits | |||
| - [types] `reflectApply`: fix types [`4efc396`](https://github.com/ljharb/call-bind-apply-helpers/commit/4efc3965351a4f02cc55e836fa391d3d11ef2ef8) | |||
| - [Fix] `reflectApply`: oops, Reflect is not a function [`83cc739`](https://github.com/ljharb/call-bind-apply-helpers/commit/83cc7395de6b79b7730bdf092f1436f0b1263c75) | |||
| - [Dev Deps] update `@arethetypeswrong/cli` [`80bd5d3`](https://github.com/ljharb/call-bind-apply-helpers/commit/80bd5d3ae58b4f6b6995ce439dd5a1bcb178a940) | |||
| ## v1.0.0 - 2024-12-05 | |||
| ### Commits | |||
| - Initial implementation, tests, readme [`7879629`](https://github.com/ljharb/call-bind-apply-helpers/commit/78796290f9b7430c9934d6f33d94ae9bc89fce04) | |||
| - Initial commit [`3f1dc16`](https://github.com/ljharb/call-bind-apply-helpers/commit/3f1dc164afc43285631b114a5f9dd9137b2b952f) | |||
| - npm init [`081df04`](https://github.com/ljharb/call-bind-apply-helpers/commit/081df048c312fcee400922026f6e97281200a603) | |||
| - Only apps should have lockfiles [`5b9ca0f`](https://github.com/ljharb/call-bind-apply-helpers/commit/5b9ca0fe8101ebfaf309c549caac4e0a017ed930) | |||