parent
0549ed1d78
commit
f881c50c70
@ -1,5 +1,2 @@ |
||||
/common.mk |
||||
/build |
||||
/scripts/mdx-scripts/node_modules |
||||
/scripts/mdx-scripts/markdown-events |
||||
/scripts/mdx-scripts/news-events |
@ -1,12 +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 |
||||
exec "$basedir/node" "$basedir/../acorn/bin/acorn" "$@" |
||||
else |
||||
exec node "$basedir/../acorn/bin/acorn" "$@" |
||||
fi |
@ -1,17 +0,0 @@ |
||||
@ECHO off |
||||
GOTO start |
||||
:find_dp0 |
||||
SET dp0=%~dp0 |
||||
EXIT /b |
||||
:start |
||||
SETLOCAL |
||||
CALL :find_dp0 |
||||
|
||||
IF EXIST "%dp0%\node.exe" ( |
||||
SET "_prog=%dp0%\node.exe" |
||||
) ELSE ( |
||||
SET "_prog=node" |
||||
SET PATHEXT=%PATHEXT:;.JS;=;% |
||||
) |
||||
|
||||
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\acorn\bin\acorn" %* |
@ -1,28 +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") { |
||||
# Support pipeline input |
||||
if ($MyInvocation.ExpectingInput) { |
||||
$input | & "$basedir/node$exe" "$basedir/../acorn/bin/acorn" $args |
||||
} else { |
||||
& "$basedir/node$exe" "$basedir/../acorn/bin/acorn" $args |
||||
} |
||||
$ret=$LASTEXITCODE |
||||
} else { |
||||
# Support pipeline input |
||||
if ($MyInvocation.ExpectingInput) { |
||||
$input | & "node$exe" "$basedir/../acorn/bin/acorn" $args |
||||
} else { |
||||
& "node$exe" "$basedir/../acorn/bin/acorn" $args |
||||
} |
||||
$ret=$LASTEXITCODE |
||||
} |
||||
exit $ret |
@ -1,12 +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 |
||||
exec "$basedir/node" "$basedir/../detect-libc/bin/detect-libc.js" "$@" |
||||
else |
||||
exec node "$basedir/../detect-libc/bin/detect-libc.js" "$@" |
||||
fi |
@ -1,17 +0,0 @@ |
||||
@ECHO off |
||||
GOTO start |
||||
:find_dp0 |
||||
SET dp0=%~dp0 |
||||
EXIT /b |
||||
:start |
||||
SETLOCAL |
||||
CALL :find_dp0 |
||||
|
||||
IF EXIST "%dp0%\node.exe" ( |
||||
SET "_prog=%dp0%\node.exe" |
||||
) ELSE ( |
||||
SET "_prog=node" |
||||
SET PATHEXT=%PATHEXT:;.JS;=;% |
||||
) |
||||
|
||||
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\detect-libc\bin\detect-libc.js" %* |
@ -1,28 +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") { |
||||
# Support pipeline input |
||||
if ($MyInvocation.ExpectingInput) { |
||||
$input | & "$basedir/node$exe" "$basedir/../detect-libc/bin/detect-libc.js" $args |
||||
} else { |
||||
& "$basedir/node$exe" "$basedir/../detect-libc/bin/detect-libc.js" $args |
||||
} |
||||
$ret=$LASTEXITCODE |
||||
} else { |
||||
# Support pipeline input |
||||
if ($MyInvocation.ExpectingInput) { |
||||
$input | & "node$exe" "$basedir/../detect-libc/bin/detect-libc.js" $args |
||||
} else { |
||||
& "node$exe" "$basedir/../detect-libc/bin/detect-libc.js" $args |
||||
} |
||||
$ret=$LASTEXITCODE |
||||
} |
||||
exit $ret |
@ -1,12 +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 |
||||
exec "$basedir/node" "$basedir/../escodegen/bin/escodegen.js" "$@" |
||||
else |
||||
exec node "$basedir/../escodegen/bin/escodegen.js" "$@" |
||||
fi |
@ -1,17 +0,0 @@ |
||||
@ECHO off |
||||
GOTO start |
||||
:find_dp0 |
||||
SET dp0=%~dp0 |
||||
EXIT /b |
||||
:start |
||||
SETLOCAL |
||||
CALL :find_dp0 |
||||
|
||||
IF EXIST "%dp0%\node.exe" ( |
||||
SET "_prog=%dp0%\node.exe" |
||||
) ELSE ( |
||||
SET "_prog=node" |
||||
SET PATHEXT=%PATHEXT:;.JS;=;% |
||||
) |
||||
|
||||
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\escodegen\bin\escodegen.js" %* |
@ -1,28 +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") { |
||||
# Support pipeline input |
||||
if ($MyInvocation.ExpectingInput) { |
||||
$input | & "$basedir/node$exe" "$basedir/../escodegen/bin/escodegen.js" $args |
||||
} else { |
||||
& "$basedir/node$exe" "$basedir/../escodegen/bin/escodegen.js" $args |
||||
} |
||||
$ret=$LASTEXITCODE |
||||
} else { |
||||
# Support pipeline input |
||||
if ($MyInvocation.ExpectingInput) { |
||||
$input | & "node$exe" "$basedir/../escodegen/bin/escodegen.js" $args |
||||
} else { |
||||
& "node$exe" "$basedir/../escodegen/bin/escodegen.js" $args |
||||
} |
||||
$ret=$LASTEXITCODE |
||||
} |
||||
exit $ret |
@ -1,12 +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 |
||||
exec "$basedir/node" "$basedir/../escodegen/bin/esgenerate.js" "$@" |
||||
else |
||||
exec node "$basedir/../escodegen/bin/esgenerate.js" "$@" |
||||
fi |
@ -1,17 +0,0 @@ |
||||
@ECHO off |
||||
GOTO start |
||||
:find_dp0 |
||||
SET dp0=%~dp0 |
||||
EXIT /b |
||||
:start |
||||
SETLOCAL |
||||
CALL :find_dp0 |
||||
|
||||
IF EXIST "%dp0%\node.exe" ( |
||||
SET "_prog=%dp0%\node.exe" |
||||
) ELSE ( |
||||
SET "_prog=node" |
||||
SET PATHEXT=%PATHEXT:;.JS;=;% |
||||
) |
||||
|
||||
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\escodegen\bin\esgenerate.js" %* |
@ -1,28 +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") { |
||||
# Support pipeline input |
||||
if ($MyInvocation.ExpectingInput) { |
||||
$input | & "$basedir/node$exe" "$basedir/../escodegen/bin/esgenerate.js" $args |
||||
} else { |
||||
& "$basedir/node$exe" "$basedir/../escodegen/bin/esgenerate.js" $args |
||||
} |
||||
$ret=$LASTEXITCODE |
||||
} else { |
||||
# Support pipeline input |
||||
if ($MyInvocation.ExpectingInput) { |
||||
$input | & "node$exe" "$basedir/../escodegen/bin/esgenerate.js" $args |
||||
} else { |
||||
& "node$exe" "$basedir/../escodegen/bin/esgenerate.js" $args |
||||
} |
||||
$ret=$LASTEXITCODE |
||||
} |
||||
exit $ret |
@ -1,12 +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 |
||||
exec "$basedir/node" "$basedir/../esprima/bin/esparse.js" "$@" |
||||
else |
||||
exec node "$basedir/../esprima/bin/esparse.js" "$@" |
||||
fi |
@ -1,17 +0,0 @@ |
||||
@ECHO off |
||||
GOTO start |
||||
:find_dp0 |
||||
SET dp0=%~dp0 |
||||
EXIT /b |
||||
:start |
||||
SETLOCAL |
||||
CALL :find_dp0 |
||||
|
||||
IF EXIST "%dp0%\node.exe" ( |
||||
SET "_prog=%dp0%\node.exe" |
||||
) ELSE ( |
||||
SET "_prog=node" |
||||
SET PATHEXT=%PATHEXT:;.JS;=;% |
||||
) |
||||
|
||||
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\esprima\bin\esparse.js" %* |
@ -1,28 +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") { |
||||
# Support pipeline input |
||||
if ($MyInvocation.ExpectingInput) { |
||||
$input | & "$basedir/node$exe" "$basedir/../esprima/bin/esparse.js" $args |
||||
} else { |
||||
& "$basedir/node$exe" "$basedir/../esprima/bin/esparse.js" $args |
||||
} |
||||
$ret=$LASTEXITCODE |
||||
} else { |
||||
# Support pipeline input |
||||
if ($MyInvocation.ExpectingInput) { |
||||
$input | & "node$exe" "$basedir/../esprima/bin/esparse.js" $args |
||||
} else { |
||||
& "node$exe" "$basedir/../esprima/bin/esparse.js" $args |
||||
} |
||||
$ret=$LASTEXITCODE |
||||
} |
||||
exit $ret |
@ -1,12 +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 |
||||
exec "$basedir/node" "$basedir/../esprima/bin/esvalidate.js" "$@" |
||||
else |
||||
exec node "$basedir/../esprima/bin/esvalidate.js" "$@" |
||||
fi |
@ -1,17 +0,0 @@ |
||||
@ECHO off |
||||
GOTO start |
||||
:find_dp0 |
||||
SET dp0=%~dp0 |
||||
EXIT /b |
||||
:start |
||||
SETLOCAL |
||||
CALL :find_dp0 |
||||
|
||||
IF EXIST "%dp0%\node.exe" ( |
||||
SET "_prog=%dp0%\node.exe" |
||||
) ELSE ( |
||||
SET "_prog=node" |
||||
SET PATHEXT=%PATHEXT:;.JS;=;% |
||||
) |
||||
|
||||
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\esprima\bin\esvalidate.js" %* |
@ -1,28 +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") { |
||||
# Support pipeline input |
||||
if ($MyInvocation.ExpectingInput) { |
||||
$input | & "$basedir/node$exe" "$basedir/../esprima/bin/esvalidate.js" $args |
||||
} else { |
||||
& "$basedir/node$exe" "$basedir/../esprima/bin/esvalidate.js" $args |
||||
} |
||||
$ret=$LASTEXITCODE |
||||
} else { |
||||
# Support pipeline input |
||||
if ($MyInvocation.ExpectingInput) { |
||||
$input | & "node$exe" "$basedir/../esprima/bin/esvalidate.js" $args |
||||
} else { |
||||
& "node$exe" "$basedir/../esprima/bin/esvalidate.js" $args |
||||
} |
||||
$ret=$LASTEXITCODE |
||||
} |
||||
exit $ret |
@ -1,12 +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 |
||||
exec "$basedir/node" "$basedir/../mkdirp/bin/cmd.js" "$@" |
||||
else |
||||
exec node "$basedir/../mkdirp/bin/cmd.js" "$@" |
||||
fi |
@ -1,17 +0,0 @@ |
||||
@ECHO off |
||||
GOTO start |
||||
:find_dp0 |
||||
SET dp0=%~dp0 |
||||
EXIT /b |
||||
:start |
||||
SETLOCAL |
||||
CALL :find_dp0 |
||||
|
||||
IF EXIST "%dp0%\node.exe" ( |
||||
SET "_prog=%dp0%\node.exe" |
||||
) ELSE ( |
||||
SET "_prog=node" |
||||
SET PATHEXT=%PATHEXT:;.JS;=;% |
||||
) |
||||
|
||||
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\mkdirp\bin\cmd.js" %* |
@ -1,28 +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") { |
||||
# Support pipeline input |
||||
if ($MyInvocation.ExpectingInput) { |
||||
$input | & "$basedir/node$exe" "$basedir/../mkdirp/bin/cmd.js" $args |
||||
} else { |
||||
& "$basedir/node$exe" "$basedir/../mkdirp/bin/cmd.js" $args |
||||
} |
||||
$ret=$LASTEXITCODE |
||||
} else { |
||||
# Support pipeline input |
||||
if ($MyInvocation.ExpectingInput) { |
||||
$input | & "node$exe" "$basedir/../mkdirp/bin/cmd.js" $args |
||||
} else { |
||||
& "node$exe" "$basedir/../mkdirp/bin/cmd.js" $args |
||||
} |
||||
$ret=$LASTEXITCODE |
||||
} |
||||
exit $ret |
@ -1,12 +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 |
||||
exec "$basedir/node" "$basedir/../needle/bin/needle" "$@" |
||||
else |
||||
exec node "$basedir/../needle/bin/needle" "$@" |
||||
fi |
@ -1,17 +0,0 @@ |
||||
@ECHO off |
||||
GOTO start |
||||
:find_dp0 |
||||
SET dp0=%~dp0 |
||||
EXIT /b |
||||
:start |
||||
SETLOCAL |
||||
CALL :find_dp0 |
||||
|
||||
IF EXIST "%dp0%\node.exe" ( |
||||
SET "_prog=%dp0%\node.exe" |
||||
) ELSE ( |
||||
SET "_prog=node" |
||||
SET PATHEXT=%PATHEXT:;.JS;=;% |
||||
) |
||||
|
||||
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\needle\bin\needle" %* |
@ -1,28 +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") { |
||||
# Support pipeline input |
||||
if ($MyInvocation.ExpectingInput) { |
||||
$input | & "$basedir/node$exe" "$basedir/../needle/bin/needle" $args |
||||
} else { |
||||
& "$basedir/node$exe" "$basedir/../needle/bin/needle" $args |
||||
} |
||||
$ret=$LASTEXITCODE |
||||
} else { |
||||
# Support pipeline input |
||||
if ($MyInvocation.ExpectingInput) { |
||||
$input | & "node$exe" "$basedir/../needle/bin/needle" $args |
||||
} else { |
||||
& "node$exe" "$basedir/../needle/bin/needle" $args |
||||
} |
||||
$ret=$LASTEXITCODE |
||||
} |
||||
exit $ret |
@ -1,12 +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 |
||||
exec "$basedir/node" "$basedir/../node-pre-gyp/bin/node-pre-gyp" "$@" |
||||
else |
||||
exec node "$basedir/../node-pre-gyp/bin/node-pre-gyp" "$@" |
||||
fi |
@ -1,17 +0,0 @@ |
||||
@ECHO off |
||||
GOTO start |
||||
:find_dp0 |
||||
SET dp0=%~dp0 |
||||
EXIT /b |
||||
:start |
||||
SETLOCAL |
||||
CALL :find_dp0 |
||||
|
||||
IF EXIST "%dp0%\node.exe" ( |
||||
SET "_prog=%dp0%\node.exe" |
||||
) ELSE ( |
||||
SET "_prog=node" |
||||
SET PATHEXT=%PATHEXT:;.JS;=;% |
||||
) |
||||
|
||||
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\node-pre-gyp\bin\node-pre-gyp" %* |
@ -1,28 +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") { |
||||
# Support pipeline input |
||||
if ($MyInvocation.ExpectingInput) { |
||||
$input | & "$basedir/node$exe" "$basedir/../node-pre-gyp/bin/node-pre-gyp" $args |
||||
} else { |
||||
& "$basedir/node$exe" "$basedir/../node-pre-gyp/bin/node-pre-gyp" $args |
||||
} |
||||
$ret=$LASTEXITCODE |
||||
} else { |
||||
# Support pipeline input |
||||
if ($MyInvocation.ExpectingInput) { |
||||
$input | & "node$exe" "$basedir/../node-pre-gyp/bin/node-pre-gyp" $args |
||||
} else { |
||||
& "node$exe" "$basedir/../node-pre-gyp/bin/node-pre-gyp" $args |
||||
} |
||||
$ret=$LASTEXITCODE |
||||
} |
||||
exit $ret |
@ -1,12 +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 |
||||
exec "$basedir/node" "$basedir/../nopt/bin/nopt.js" "$@" |
||||
else |
||||
exec node "$basedir/../nopt/bin/nopt.js" "$@" |
||||
fi |
@ -1,17 +0,0 @@ |
||||
@ECHO off |
||||
GOTO start |
||||
:find_dp0 |
||||
SET dp0=%~dp0 |
||||
EXIT /b |
||||
:start |
||||
SETLOCAL |
||||
CALL :find_dp0 |
||||
|
||||
IF EXIST "%dp0%\node.exe" ( |
||||
SET "_prog=%dp0%\node.exe" |
||||
) ELSE ( |
||||
SET "_prog=node" |
||||
SET PATHEXT=%PATHEXT:;.JS;=;% |
||||
) |
||||
|
||||
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\nopt\bin\nopt.js" %* |
@ -1,28 +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") { |
||||
# Support pipeline input |
||||
if ($MyInvocation.ExpectingInput) { |
||||
$input | & "$basedir/node$exe" "$basedir/../nopt/bin/nopt.js" $args |
||||
} else { |
||||
& "$basedir/node$exe" "$basedir/../nopt/bin/nopt.js" $args |
||||
} |
||||
$ret=$LASTEXITCODE |
||||
} else { |
||||
# Support pipeline input |
||||
if ($MyInvocation.ExpectingInput) { |
||||
$input | & "node$exe" "$basedir/../nopt/bin/nopt.js" $args |
||||
} else { |
||||
& "node$exe" "$basedir/../nopt/bin/nopt.js" $args |
||||
} |
||||
$ret=$LASTEXITCODE |
||||
} |
||||
exit $ret |
@ -1,12 +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 |
||||
exec "$basedir/node" "$basedir/../rc/cli.js" "$@" |
||||
else |
||||
exec node "$basedir/../rc/cli.js" "$@" |
||||
fi |
@ -1,17 +0,0 @@ |
||||
@ECHO off |
||||
GOTO start |
||||
:find_dp0 |
||||
SET dp0=%~dp0 |
||||
EXIT /b |
||||
:start |
||||
SETLOCAL |
||||
CALL :find_dp0 |
||||
|
||||
IF EXIST "%dp0%\node.exe" ( |
||||
SET "_prog=%dp0%\node.exe" |
||||
) ELSE ( |
||||
SET "_prog=node" |
||||
SET PATHEXT=%PATHEXT:;.JS;=;% |
||||
) |
||||
|
||||
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\rc\cli.js" %* |
@ -1,28 +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") { |
||||
# Support pipeline input |
||||
if ($MyInvocation.ExpectingInput) { |
||||
$input | & "$basedir/node$exe" "$basedir/../rc/cli.js" $args |
||||
} else { |
||||
& "$basedir/node$exe" "$basedir/../rc/cli.js" $args |
||||
} |
||||
$ret=$LASTEXITCODE |
||||
} else { |
||||
# Support pipeline input |
||||
if ($MyInvocation.ExpectingInput) { |
||||
$input | & "node$exe" "$basedir/../rc/cli.js" $args |
||||
} else { |
||||
& "node$exe" "$basedir/../rc/cli.js" $args |
||||
} |
||||
$ret=$LASTEXITCODE |
||||
} |
||||
exit $ret |
@ -1,12 +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 |
||||
exec "$basedir/node" "$basedir/../rimraf/bin.js" "$@" |
||||
else |
||||
exec node "$basedir/../rimraf/bin.js" "$@" |
||||
fi |
@ -1,17 +0,0 @@ |
||||
@ECHO off |
||||
GOTO start |
||||
:find_dp0 |
||||
SET dp0=%~dp0 |
||||
EXIT /b |
||||
:start |
||||
SETLOCAL |
||||
CALL :find_dp0 |
||||
|
||||
IF EXIST "%dp0%\node.exe" ( |
||||
SET "_prog=%dp0%\node.exe" |
||||
) ELSE ( |
||||
SET "_prog=node" |
||||
SET PATHEXT=%PATHEXT:;.JS;=;% |
||||
) |
||||
|
||||
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\rimraf\bin.js" %* |
@ -1,28 +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") { |
||||
# Support pipeline input |
||||
if ($MyInvocation.ExpectingInput) { |
||||
$input | & "$basedir/node$exe" "$basedir/../rimraf/bin.js" $args |
||||
} else { |
||||
& "$basedir/node$exe" "$basedir/../rimraf/bin.js" $args |
||||
} |
||||
$ret=$LASTEXITCODE |
||||
} else { |
||||
# Support pipeline input |
||||
if ($MyInvocation.ExpectingInput) { |
||||
$input | & "node$exe" "$basedir/../rimraf/bin.js" $args |
||||
} else { |
||||
& "node$exe" "$basedir/../rimraf/bin.js" $args |
||||
} |
||||
$ret=$LASTEXITCODE |
||||
} |
||||
exit $ret |
@ -1,12 +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 |
||||
exec "$basedir/node" "$basedir/../semver/bin/semver" "$@" |
||||
else |
||||
exec node "$basedir/../semver/bin/semver" "$@" |
||||
fi |
@ -1,17 +0,0 @@ |
||||
@ECHO off |
||||
GOTO start |
||||
:find_dp0 |
||||
SET dp0=%~dp0 |
||||
EXIT /b |
||||
:start |
||||
SETLOCAL |
||||
CALL :find_dp0 |
||||
|
||||
IF EXIST "%dp0%\node.exe" ( |
||||
SET "_prog=%dp0%\node.exe" |
||||
) ELSE ( |
||||
SET "_prog=node" |
||||
SET PATHEXT=%PATHEXT:;.JS;=;% |
||||
) |
||||
|
||||
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\semver\bin\semver" %* |
@ -1,28 +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") { |
||||
# Support pipeline input |
||||
if ($MyInvocation.ExpectingInput) { |
||||
$input | & "$basedir/node$exe" "$basedir/../semver/bin/semver" $args |
||||
} else { |
||||
& "$basedir/node$exe" "$basedir/../semver/bin/semver" $args |
||||
} |
||||
$ret=$LASTEXITCODE |
||||
} else { |
||||
# Support pipeline input |
||||
if ($MyInvocation.ExpectingInput) { |
||||
$input | & "node$exe" "$basedir/../semver/bin/semver" $args |
||||
} else { |
||||
& "node$exe" "$basedir/../semver/bin/semver" $args |
||||
} |
||||
$ret=$LASTEXITCODE |
||||
} |
||||
exit $ret |
@ -1,619 +0,0 @@ |
||||
{ |
||||
"name": "old-website", |
||||
"lockfileVersion": 2, |
||||
"requires": true, |
||||
"packages": { |
||||
"node_modules/@tootallnate/once": { |
||||
"version": "1.1.2", |
||||
"resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", |
||||
"integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", |
||||
"engines": { |
||||
"node": ">= 6" |
||||
} |
||||
}, |
||||
"node_modules/abab": { |
||||
"version": "2.0.5", |
||||
"resolved": "https://registry.npmjs.org/abab/-/abab-2.0.5.tgz", |
||||
"integrity": "sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q==" |
||||
}, |
||||
"node_modules/acorn": { |
||||
"version": "8.3.0", |
||||
"resolved": "https://registry.npmjs.org/acorn/-/acorn-8.3.0.tgz", |
||||
"integrity": "sha512-tqPKHZ5CaBJw0Xmy0ZZvLs1qTV+BNFSyvn77ASXkpBNfIRk8ev26fKrD9iLGwGA9zedPao52GSHzq8lyZG0NUw==", |
||||
"bin": { |
||||
"acorn": "bin/acorn" |
||||
}, |
||||
"engines": { |
||||
"node": ">=0.4.0" |
||||
} |
||||
}, |
||||
"node_modules/acorn-globals": { |
||||
"version": "6.0.0", |
||||
"resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz", |
||||
"integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==", |
||||
"dependencies": { |
||||
"acorn": "^7.1.1", |
||||
"acorn-walk": "^7.1.1" |
||||
} |
||||
}, |
||||
"node_modules/acorn-globals/node_modules/acorn": { |
||||
"version": "7.4.1", |
||||
"resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", |
||||
"integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", |
||||
"bin": { |
||||
"acorn": "bin/acorn" |
||||
}, |
||||
"engines": { |
||||
"node": ">=0.4.0" |
||||
} |
||||
}, |
||||
"node_modules/acorn-walk": { |
||||
"version": "7.2.0", |
||||
"resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", |
||||
"integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", |
||||
"engines": { |
||||
"node": ">=0.4.0" |
||||
} |
||||
}, |
||||
"node_modules/agent-base": { |
||||
"version": "6.0.2", |
||||
"resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", |
||||
"integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", |
||||
"dependencies": { |
||||
"debug": "4" |
||||
}, |
||||
"engines": { |
||||
"node": ">= 6.0.0" |
||||
} |
||||
}, |
||||
"node_modules/asynckit": { |
||||
"version": "0.4.0", |
||||
"resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", |
||||
"integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" |
||||
}, |
||||
"node_modules/browser-process-hrtime": { |
||||
"version": "1.0.0", |
||||
"resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz", |
||||
"integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==" |
||||
}, |
||||
"node_modules/combined-stream": { |
||||
"version": "1.0.8", |
||||
"resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", |
||||
"integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", |
||||
"dependencies": { |
||||
"delayed-stream": "~1.0.0" |
||||
}, |
||||
"engines": { |
||||
"node": ">= 0.8" |
||||
} |
||||
}, |
||||
"node_modules/cssom": { |
||||
"version": "0.4.4", |
||||
"resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz", |
||||
"integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==" |
||||
}, |
||||
"node_modules/cssstyle": { |
||||
"version": "2.3.0", |
||||
"resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", |
||||
"integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", |
||||
"dependencies": { |
||||
"cssom": "~0.3.6" |
||||
}, |
||||
"engines": { |
||||
"node": ">=8" |
||||
} |
||||
}, |
||||
"node_modules/cssstyle/node_modules/cssom": { |
||||
"version": "0.3.8", |
||||
"resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", |
||||
"integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==" |
||||
}, |
||||
"node_modules/data-urls": { |
||||
"version": "2.0.0", |
||||
"resolved": "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz", |
||||
"integrity": "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==", |
||||
"dependencies": { |
||||
"abab": "^2.0.3", |
||||
"whatwg-mimetype": "^2.3.0", |
||||
"whatwg-url": "^8.0.0" |
||||
}, |
||||
"engines": { |
||||
"node": ">=10" |
||||
} |
||||
}, |
||||
"node_modules/debug": { |
||||
"version": "4.3.1", |
||||
"resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz", |
||||
"integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==", |
||||
"dependencies": { |
||||
"ms": "2.1.2" |
||||
}, |
||||
"engines": { |
||||
"node": ">=6.0" |
||||
}, |
||||
"peerDependenciesMeta": { |
||||
"supports-color": { |
||||
"optional": true |
||||
} |
||||
} |
||||
}, |
||||
"node_modules/decimal.js": { |
||||
"version": "10.2.1", |
||||
"resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.2.1.tgz", |
||||
"integrity": "sha512-KaL7+6Fw6i5A2XSnsbhm/6B+NuEA7TZ4vqxnd5tXz9sbKtrN9Srj8ab4vKVdK8YAqZO9P1kg45Y6YLoduPf+kw==" |
||||
}, |
||||
"node_modules/deep-is": { |
||||
"version": "0.1.3", |
||||
"resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz", |
||||
"integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=" |
||||
}, |
||||
"node_modules/delayed-stream": { |
||||
"version": "1.0.0", |
||||
"resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", |
||||
"integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=", |
||||
"engines": { |
||||
"node": ">=0.4.0" |
||||
} |
||||
}, |
||||
"node_modules/domexception": { |
||||
"version": "2.0.1", |
||||
"resolved": "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz", |
||||
"integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==", |
||||
"dependencies": { |
||||
"webidl-conversions": "^5.0.0" |
||||
}, |
||||
"engines": { |
||||
"node": ">=8" |
||||
} |
||||
}, |
||||
"node_modules/domexception/node_modules/webidl-conversions": { |
||||
"version": "5.0.0", |
||||
"resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz", |
||||
"integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==", |
||||
"engines": { |
||||
"node": ">=8" |
||||
} |
||||
}, |
||||
"node_modules/escodegen": { |
||||
"version": "2.0.0", |
||||
"resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.0.0.tgz", |
||||
"integrity": "sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==", |
||||
"dependencies": { |
||||
"esprima": "^4.0.1", |
||||
"estraverse": "^5.2.0", |
||||
"esutils": "^2.0.2", |
||||
"optionator": "^0.8.1" |
||||
}, |
||||
"bin": { |
||||
"escodegen": "bin/escodegen.js", |
||||
"esgenerate": "bin/esgenerate.js" |
||||
}, |
||||
"engines": { |
||||
"node": ">=6.0" |
||||
}, |
||||
"optionalDependencies": { |
||||
"source-map": "~0.6.1" |
||||
} |
||||
}, |
||||
"node_modules/esprima": { |
||||
"version": "4.0.1", |
||||
"resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", |
||||
"integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", |
||||
"bin": { |
||||
"esparse": "bin/esparse.js", |
||||
"esvalidate": "bin/esvalidate.js" |
||||
}, |
||||
"engines": { |
||||
"node": ">=4" |
||||
} |
||||
}, |
||||
"node_modules/estraverse": { |
||||
"version": "5.2.0", |
||||
"resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", |
||||
"integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==", |
||||
"engines": { |
||||
"node": ">=4.0" |
||||
} |
||||
}, |
||||
"node_modules/esutils": { |
||||
"version": "2.0.3", |
||||
"resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", |
||||
"integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", |
||||
"engines": { |
||||
"node": ">=0.10.0" |
||||
} |
||||
}, |
||||
"node_modules/fast-levenshtein": { |
||||
"version": "2.0.6", |
||||
"resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", |
||||
"integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=" |
||||
}, |
||||
"node_modules/form-data": { |
||||
"version": "3.0.1", |
||||
"resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", |
||||
"integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", |
||||
"dependencies": { |
||||
"asynckit": "^0.4.0", |
||||
"combined-stream": "^1.0.8", |
||||
"mime-types": "^2.1.12" |
||||
}, |
||||
"engines": { |
||||
"node": ">= 6" |
||||
} |
||||
}, |
||||
"node_modules/html-encoding-sniffer": { |
||||
"version": "2.0.1", |
||||
"resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz", |
||||
"integrity": "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==", |
||||
"dependencies": { |
||||
"whatwg-encoding": "^1.0.5" |
||||
}, |
||||
"engines": { |
||||
"node": ">=10" |
||||
} |
||||
}, |
||||
"node_modules/http-proxy-agent": { |
||||
"version": "4.0.1", |
||||
"resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", |
||||
"integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", |
||||
"dependencies": { |
||||
"@tootallnate/once": "1", |
||||
"agent-base": "6", |
||||
"debug": "4" |
||||
}, |
||||
"engines": { |
||||
"node": ">= 6" |
||||
} |
||||
}, |
||||
"node_modules/https-proxy-agent": { |
||||
"version": "5.0.0", |
||||
"resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz", |
||||
"integrity": "sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA==", |
||||
"dependencies": { |
||||
"agent-base": "6", |
||||
"debug": "4" |
||||
}, |
||||
"engines": { |
||||
"node": ">= 6" |
||||
} |
||||
}, |
||||
"node_modules/iconv-lite": { |
||||
"version": "0.4.24", |
||||
"resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", |
||||
"integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", |
||||
"dependencies": { |
||||
"safer-buffer": ">= 2.1.2 < 3" |
||||
}, |
||||
"engines": { |
||||
"node": ">=0.10.0" |
||||
} |
||||
}, |
||||
"node_modules/is-potential-custom-element-name": { |
||||
"version": "1.0.1", |
||||
"resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", |
||||
"integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==" |
||||
}, |
||||
"node_modules/jsdom": { |
||||
"version": "16.6.0", |
||||
"resolved": "https://registry.npmjs.org/jsdom/-/jsdom-16.6.0.tgz", |
||||
"integrity": "sha512-Ty1vmF4NHJkolaEmdjtxTfSfkdb8Ywarwf63f+F8/mDD1uLSSWDxDuMiZxiPhwunLrn9LOSVItWj4bLYsLN3Dg==", |
||||
"dependencies": { |
||||
"abab": "^2.0.5", |
||||
"acorn": "^8.2.4", |
||||
"acorn-globals": "^6.0.0", |
||||
"cssom": "^0.4.4", |
||||
"cssstyle": "^2.3.0", |
||||
"data-urls": "^2.0.0", |
||||
"decimal.js": "^10.2.1", |
||||
"domexception": "^2.0.1", |
||||
"escodegen": "^2.0.0", |
||||
"form-data": "^3.0.0", |
||||
"html-encoding-sniffer": "^2.0.1", |
||||
"http-proxy-agent": "^4.0.1", |
||||
"https-proxy-agent": "^5.0.0", |
||||
"is-potential-custom-element-name": "^1.0.1", |
||||
"nwsapi": "^2.2.0", |
||||
"parse5": "6.0.1", |
||||
"saxes": "^5.0.1", |
||||
"symbol-tree": "^3.2.4", |
||||
"tough-cookie": "^4.0.0", |
||||
"w3c-hr-time": "^1.0.2", |
||||
"w3c-xmlserializer": "^2.0.0", |
||||
"webidl-conversions": "^6.1.0", |
||||
"whatwg-encoding": "^1.0.5", |
||||
"whatwg-mimetype": "^2.3.0", |
||||
"whatwg-url": "^8.5.0", |
||||
"ws": "^7.4.5", |
||||
"xml-name-validator": "^3.0.0" |
||||
}, |
||||
"engines": { |
||||
"node": ">=10" |
||||
}, |
||||
"peerDependencies": { |
||||
"canvas": "^2.5.0" |
||||
}, |
||||
"peerDependenciesMeta": { |
||||
"canvas": { |
||||
"optional": true |
||||
} |
||||
} |
||||
}, |
||||
"node_modules/levn": { |
||||
"version": "0.3.0", |
||||
"resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", |
||||
"integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", |
||||
"dependencies": { |
||||
"prelude-ls": "~1.1.2", |
||||
"type-check": "~0.3.2" |
||||
}, |
||||
"engines": { |
||||
"node": ">= 0.8.0" |
||||
} |
||||
}, |
||||
"node_modules/lodash": { |
||||
"version": "4.17.21", |
||||
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", |
||||
"integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" |
||||
}, |
||||
"node_modules/mime-db": { |
||||
"version": "1.48.0", |
||||
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.48.0.tgz", |
||||
"integrity": "sha512-FM3QwxV+TnZYQ2aRqhlKBMHxk10lTbMt3bBkMAp54ddrNeVSfcQYOOKuGuy3Ddrm38I04If834fOUSq1yzslJQ==", |
||||
"engines": { |
||||
"node": ">= 0.6" |
||||
} |
||||
}, |
||||
"node_modules/mime-types": { |
||||
"version": "2.1.31", |
||||
"resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.31.tgz", |
||||
"integrity": "sha512-XGZnNzm3QvgKxa8dpzyhFTHmpP3l5YNusmne07VUOXxou9CqUqYa/HBy124RqtVh/O2pECas/MOcsDgpilPOPg==", |
||||
"dependencies": { |
||||
"mime-db": "1.48.0" |
||||
}, |
||||
"engines": { |
||||
"node": ">= 0.6" |
||||
} |
||||
}, |
||||
"node_modules/ms": { |
||||
"version": "2.1.2", |
||||
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", |
||||
"integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" |
||||
}, |
||||
"node_modules/nwsapi": { |
||||
"version": "2.2.0", |
||||
"resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.0.tgz", |
||||
"integrity": "sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==" |
||||
}, |
||||
"node_modules/optionator": { |
||||
"version": "0.8.3", |
||||
"resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", |
||||
"integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", |
||||
"dependencies": { |
||||
"deep-is": "~0.1.3", |
||||
"fast-levenshtein": "~2.0.6", |
||||
"levn": "~0.3.0", |
||||
"prelude-ls": "~1.1.2", |
||||
"type-check": "~0.3.2", |
||||
"word-wrap": "~1.2.3" |
||||
}, |
||||
"engines": { |
||||
"node": ">= 0.8.0" |
||||
} |
||||
}, |
||||
"node_modules/parse5": { |
||||
"version": "6.0.1", |
||||
"resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", |
||||
"integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==" |
||||
}, |
||||
"node_modules/prelude-ls": { |
||||
"version": "1.1.2", |
||||
"resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", |
||||
"integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=", |
||||
"engines": { |
||||
"node": ">= 0.8.0" |
||||
} |
||||
}, |
||||
"node_modules/psl": { |
||||
"version": "1.8.0", |
||||
"resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz", |
||||
"integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==" |
||||
}, |
||||
"node_modules/punycode": { |
||||
"version": "2.1.1", |
||||
"resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", |
||||
"integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", |
||||
"engines": { |
||||
"node": ">=6" |
||||
} |
||||
}, |
||||
"node_modules/safer-buffer": { |
||||
"version": "2.1.2", |
||||
"resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", |
||||
"integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" |
||||
}, |
||||
"node_modules/sax": { |
||||
"version": "1.2.4", |
||||
"resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", |
||||
"integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" |
||||
}, |
||||
"node_modules/saxes": { |
||||
"version": "5.0.1", |
||||
"resolved": "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz", |
||||
"integrity": "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==", |
||||
"dependencies": { |
||||
"xmlchars": "^2.2.0" |
||||
}, |
||||
"engines": { |
||||
"node": ">=10" |
||||
} |
||||
}, |
||||
"node_modules/source-map": { |
||||
"version": "0.6.1", |
||||
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", |
||||
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", |
||||
"optional": true, |
||||
"engines": { |
||||
"node": ">=0.10.0" |
||||
} |
||||
}, |
||||
"node_modules/symbol-tree": { |
||||
"version": "3.2.4", |
||||
"resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", |
||||
"integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==" |
||||
}, |
||||
"node_modules/tough-cookie": { |
||||
"version": "4.0.0", |
||||
"resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.0.0.tgz", |
||||
"integrity": "sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg==", |
||||
"dependencies": { |
||||
"psl": "^1.1.33", |
||||
"punycode": "^2.1.1", |
||||
"universalify": "^0.1.2" |
||||
}, |
||||
"engines": { |
||||
"node": ">=6" |
||||
} |
||||
}, |
||||
"node_modules/tr46": { |
||||
"version": "2.1.0", |
||||
"resolved": "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz", |
||||
"integrity": "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==", |
||||
"dependencies": { |
||||
"punycode": "^2.1.1" |
||||
}, |
||||
"engines": { |
||||
"node": ">=8" |
||||
} |
||||
}, |
||||
"node_modules/type-check": { |
||||
"version": "0.3.2", |
||||
"resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", |
||||
"integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", |
||||
"dependencies": { |
||||
"prelude-ls": "~1.1.2" |
||||
}, |
||||
"engines": { |
||||
"node": ">= 0.8.0" |
||||
} |
||||
}, |
||||
"node_modules/universalify": { |
||||
"version": "0.1.2", |
||||
"resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", |
||||
"integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", |
||||
"engines": { |
||||
"node": ">= 4.0.0" |
||||
} |
||||
}, |
||||
"node_modules/w3c-hr-time": { |
||||
"version": "1.0.2", |
||||
"resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz", |
||||
"integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==", |
||||