diff --git a/node_modules/.bin/mime b/node_modules/.bin/mime index fbb7ee0..0a62a1b 120000 --- a/node_modules/.bin/mime +++ b/node_modules/.bin/mime @@ -1 +1,12 @@ -../mime/cli.js \ No newline at end of file +#!/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/../mime/cli.js" "$@" +else + exec node "$basedir/../mime/cli.js" "$@" +fi diff --git a/node_modules/.bin/mime.cmd b/node_modules/.bin/mime.cmd new file mode 100644 index 0000000..54491f1 --- /dev/null +++ b/node_modules/.bin/mime.cmd @@ -0,0 +1,17 @@ +@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%\..\mime\cli.js" %* diff --git a/node_modules/.bin/mime.ps1 b/node_modules/.bin/mime.ps1 new file mode 100644 index 0000000..2222f40 --- /dev/null +++ b/node_modules/.bin/mime.ps1 @@ -0,0 +1,28 @@ +#!/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/../mime/cli.js" $args + } else { + & "$basedir/node$exe" "$basedir/../mime/cli.js" $args + } + $ret=$LASTEXITCODE +} else { + # Support pipeline input + if ($MyInvocation.ExpectingInput) { + $input | & "node$exe" "$basedir/../mime/cli.js" $args + } else { + & "node$exe" "$basedir/../mime/cli.js" $args + } + $ret=$LASTEXITCODE +} +exit $ret diff --git a/node_modules/.bin/node b/node_modules/.bin/node index 14fe007..f5a3e4e 120000 --- a/node_modules/.bin/node +++ b/node_modules/.bin/node @@ -1 +1,8 @@ -../node/bin/node \ No newline at end of file +#!/bin/sh +basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')") + +case `uname` in + *CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;; +esac + +exec "$basedir/../node/bin/node" "$@" diff --git a/node_modules/.bin/node.cmd b/node_modules/.bin/node.cmd new file mode 100644 index 0000000..fb2c308 --- /dev/null +++ b/node_modules/.bin/node.cmd @@ -0,0 +1,9 @@ +@ECHO off +GOTO start +:find_dp0 +SET dp0=%~dp0 +EXIT /b +:start +SETLOCAL +CALL :find_dp0 +"%dp0%\..\node\bin\node" %* diff --git a/node_modules/.bin/node.ps1 b/node_modules/.bin/node.ps1 new file mode 100644 index 0000000..99a0aac --- /dev/null +++ b/node_modules/.bin/node.ps1 @@ -0,0 +1,16 @@ +#!/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" +} +# Support pipeline input +if ($MyInvocation.ExpectingInput) { + $input | & "$basedir/../node/bin/node" $args +} else { + & "$basedir/../node/bin/node" $args +} +exit $LASTEXITCODE diff --git a/node_modules/.bin/nodemon b/node_modules/.bin/nodemon index 1056ddc..4d75661 120000 --- a/node_modules/.bin/nodemon +++ b/node_modules/.bin/nodemon @@ -1 +1,12 @@ -../nodemon/bin/nodemon.js \ No newline at end of file +#!/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/../nodemon/bin/nodemon.js" "$@" +else + exec node "$basedir/../nodemon/bin/nodemon.js" "$@" +fi diff --git a/node_modules/.bin/nodemon.cmd b/node_modules/.bin/nodemon.cmd new file mode 100644 index 0000000..55acf8a --- /dev/null +++ b/node_modules/.bin/nodemon.cmd @@ -0,0 +1,17 @@ +@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%\..\nodemon\bin\nodemon.js" %* diff --git a/node_modules/.bin/nodemon.ps1 b/node_modules/.bin/nodemon.ps1 new file mode 100644 index 0000000..d4e3f5d --- /dev/null +++ b/node_modules/.bin/nodemon.ps1 @@ -0,0 +1,28 @@ +#!/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/../nodemon/bin/nodemon.js" $args + } else { + & "$basedir/node$exe" "$basedir/../nodemon/bin/nodemon.js" $args + } + $ret=$LASTEXITCODE +} else { + # Support pipeline input + if ($MyInvocation.ExpectingInput) { + $input | & "node$exe" "$basedir/../nodemon/bin/nodemon.js" $args + } else { + & "node$exe" "$basedir/../nodemon/bin/nodemon.js" $args + } + $ret=$LASTEXITCODE +} +exit $ret diff --git a/node_modules/.bin/nodetouch b/node_modules/.bin/nodetouch index 3409fdb..03f8b4d 120000 --- a/node_modules/.bin/nodetouch +++ b/node_modules/.bin/nodetouch @@ -1 +1,12 @@ -../touch/bin/nodetouch.js \ No newline at end of file +#!/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/../touch/bin/nodetouch.js" "$@" +else + exec node "$basedir/../touch/bin/nodetouch.js" "$@" +fi diff --git a/node_modules/.bin/nodetouch.cmd b/node_modules/.bin/nodetouch.cmd new file mode 100644 index 0000000..8298b91 --- /dev/null +++ b/node_modules/.bin/nodetouch.cmd @@ -0,0 +1,17 @@ +@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%\..\touch\bin\nodetouch.js" %* diff --git a/node_modules/.bin/nodetouch.ps1 b/node_modules/.bin/nodetouch.ps1 new file mode 100644 index 0000000..5f68b4c --- /dev/null +++ b/node_modules/.bin/nodetouch.ps1 @@ -0,0 +1,28 @@ +#!/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/../touch/bin/nodetouch.js" $args + } else { + & "$basedir/node$exe" "$basedir/../touch/bin/nodetouch.js" $args + } + $ret=$LASTEXITCODE +} else { + # Support pipeline input + if ($MyInvocation.ExpectingInput) { + $input | & "node$exe" "$basedir/../touch/bin/nodetouch.js" $args + } else { + & "node$exe" "$basedir/../touch/bin/nodetouch.js" $args + } + $ret=$LASTEXITCODE +} +exit $ret diff --git a/node_modules/.bin/nopt b/node_modules/.bin/nopt index 6b6566e..f1ec43b 120000 --- a/node_modules/.bin/nopt +++ b/node_modules/.bin/nopt @@ -1 +1,12 @@ -../nopt/bin/nopt.js \ No newline at end of file +#!/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 diff --git a/node_modules/.bin/nopt.cmd b/node_modules/.bin/nopt.cmd new file mode 100644 index 0000000..a7f38b3 --- /dev/null +++ b/node_modules/.bin/nopt.cmd @@ -0,0 +1,17 @@ +@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" %* diff --git a/node_modules/.bin/nopt.ps1 b/node_modules/.bin/nopt.ps1 new file mode 100644 index 0000000..9d6ba56 --- /dev/null +++ b/node_modules/.bin/nopt.ps1 @@ -0,0 +1,28 @@ +#!/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 diff --git a/node_modules/.bin/semver b/node_modules/.bin/semver index 5aaadf4..77443e7 120000 --- a/node_modules/.bin/semver +++ b/node_modules/.bin/semver @@ -1 +1,12 @@ -../semver/bin/semver.js \ No newline at end of file +#!/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.js" "$@" +else + exec node "$basedir/../semver/bin/semver.js" "$@" +fi diff --git a/node_modules/.bin/semver.cmd b/node_modules/.bin/semver.cmd new file mode 100644 index 0000000..9913fa9 --- /dev/null +++ b/node_modules/.bin/semver.cmd @@ -0,0 +1,17 @@ +@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.js" %* diff --git a/node_modules/.bin/semver.ps1 b/node_modules/.bin/semver.ps1 new file mode 100644 index 0000000..314717a --- /dev/null +++ b/node_modules/.bin/semver.ps1 @@ -0,0 +1,28 @@ +#!/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.js" $args + } else { + & "$basedir/node$exe" "$basedir/../semver/bin/semver.js" $args + } + $ret=$LASTEXITCODE +} else { + # Support pipeline input + if ($MyInvocation.ExpectingInput) { + $input | & "node$exe" "$basedir/../semver/bin/semver.js" $args + } else { + & "node$exe" "$basedir/../semver/bin/semver.js" $args + } + $ret=$LASTEXITCODE +} +exit $ret diff --git a/node_modules/node/bin/node b/node_modules/node/bin/node index 324d683..20efe38 100755 Binary files a/node_modules/node/bin/node and b/node_modules/node/bin/node differ diff --git a/node_modules/node/bin/node.exe b/node_modules/node/bin/node.exe new file mode 100644 index 0000000..3db96da Binary files /dev/null and b/node_modules/node/bin/node.exe differ diff --git a/node_modules/node/node_modules/.bin/node b/node_modules/node/node_modules/.bin/node new file mode 100644 index 0000000..7f30f80 --- /dev/null +++ b/node_modules/node/node_modules/.bin/node @@ -0,0 +1,8 @@ +#!/bin/sh +basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')") + +case `uname` in + *CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;; +esac + +exec "$basedir/../node-win-x64/bin/node.exe" "$@" diff --git a/node_modules/node/node_modules/.bin/node.cmd b/node_modules/node/node_modules/.bin/node.cmd new file mode 100644 index 0000000..9c252c0 --- /dev/null +++ b/node_modules/node/node_modules/.bin/node.cmd @@ -0,0 +1,9 @@ +@ECHO off +GOTO start +:find_dp0 +SET dp0=%~dp0 +EXIT /b +:start +SETLOCAL +CALL :find_dp0 +"%dp0%\..\node-win-x64\bin\node.exe" %* diff --git a/node_modules/node/node_modules/.bin/node.ps1 b/node_modules/node/node_modules/.bin/node.ps1 new file mode 100644 index 0000000..97b073f --- /dev/null +++ b/node_modules/node/node_modules/.bin/node.ps1 @@ -0,0 +1,16 @@ +#!/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" +} +# Support pipeline input +if ($MyInvocation.ExpectingInput) { + $input | & "$basedir/../node-win-x64/bin/node.exe" $args +} else { + & "$basedir/../node-win-x64/bin/node.exe" $args +} +exit $LASTEXITCODE diff --git a/node_modules/node/node_modules/.package-lock.json b/node_modules/node/node_modules/.package-lock.json index dcb3aec..36df010 100644 --- a/node_modules/node/node_modules/.package-lock.json +++ b/node_modules/node/node_modules/.package-lock.json @@ -1,5 +1,5 @@ { - "lockfileVersion": 3, + "lockfileVersion": 2, "requires": true, "packages": { "node_modules/node-bin-setup": { @@ -7,14 +7,14 @@ "resolved": "https://registry.npmjs.org/node-bin-setup/-/node-bin-setup-1.1.3.tgz", "integrity": "sha512-opgw9iSCAzT2+6wJOETCpeRYAQxSopqQ2z+N6BXwIMsQQ7Zj5M8MaafQY8JMlolRR6R1UXg2WmhKp0p9lSOivg==" }, - "node_modules/node-linux-x64": { + "node_modules/node-win-x64": { "version": "20.6.0", - "resolved": "https://registry.npmjs.org/node-linux-x64/-/node-linux-x64-20.6.0.tgz", - "integrity": "sha512-StVUjHWSVKMdT78e7p7OXPL1s2+cs5qyGbivjwt5RdVaJCuUtF42jidNwjbAtlFPcEI8xImZ7iCdNCuvEJkf/w==", + "resolved": "https://registry.npmjs.org/node-win-x64/-/node-win-x64-20.6.0.tgz", + "integrity": "sha512-ao90Z3vldLpFIJL+3QCgui3ig8b/PXJ7FKHXYJ9Auoz2qAHQbvxIwFDPJwrzZB4nAQrW8mpAMqZHsIB0yOp1Ug==", "cpu": "x64", - "os": "linux", + "os": "win32", "bin": { - "node": "bin/node" + "node": "bin/node.exe" } } } diff --git a/node_modules/node/node_modules/node-bin-setup/.github/dependabot.yml b/node_modules/node/node_modules/node-bin-setup/.github/dependabot.yml new file mode 100644 index 0000000..290ad02 --- /dev/null +++ b/node_modules/node/node_modules/node-bin-setup/.github/dependabot.yml @@ -0,0 +1,8 @@ +version: 2 +updates: +- package-ecosystem: npm + directory: "/" + schedule: + interval: daily + time: "10:00" + open-pull-requests-limit: 10 diff --git a/node_modules/node/node_modules/node-bin-setup/index.js b/node_modules/node/node_modules/node-bin-setup/index.js new file mode 100644 index 0000000..8fa6a03 --- /dev/null +++ b/node_modules/node/node_modules/node-bin-setup/index.js @@ -0,0 +1,57 @@ +var spawn = require('child_process').spawn; +var path = require('path'); +var fs = require('fs'); + +function installArchSpecificPackage(version, require) { + + process.env.npm_config_global = 'false'; + + var platform = process.platform == 'win32' ? 'win' : process.platform; + var arch = platform == 'win' && process.arch == 'ia32' ? 'x86' : process.arch; + var prefix = (process.platform == 'darwin' && process.arch == 'arm64') ? 'node-bin' : 'node'; + + var cp = spawn(platform == 'win' ? 'npm.cmd' : 'npm', ['install', '--no-save', [prefix, platform, arch].join('-') + '@' + version], { + stdio: 'inherit', + shell: true + }); + + cp.on('close', function(code) { + var pkgJson = require.resolve([prefix, platform, arch].join('-') + '/package.json'); + var subpkg = JSON.parse(fs.readFileSync(pkgJson, 'utf8')); + var executable = subpkg.bin.node; + var bin = path.resolve(path.dirname(pkgJson), executable); + + try { + fs.mkdirSync(path.resolve(process.cwd(), 'bin')); + } catch (e) { + if (e.code != 'EEXIST') { + throw e; + } + } + + linkSync(bin, path.resolve(process.cwd(), executable)); + + if (platform == 'win') { + var pkg = JSON.parse(fs.readFileSync(path.resolve(process.cwd(), 'package.json'))); + fs.writeFileSync(path.resolve(process.cwd(), 'bin/node'), 'This file intentionally left blank'); + pkg.bin.node = 'bin/node.exe'; + fs.writeFileSync(path.resolve(process.cwd(), 'package.json'), JSON.stringify(pkg, null, 2)); + } + + return process.exit(code); + + }); +} + +function linkSync(src, dest) { + try { + fs.unlinkSync(dest); + } catch (e) { + if (e.code != 'ENOENT') { + throw e; + } + } + return fs.linkSync(src, dest); +} + +module.exports = installArchSpecificPackage; diff --git a/node_modules/node/node_modules/node-bin-setup/package.json b/node_modules/node/node_modules/node-bin-setup/package.json new file mode 100644 index 0000000..4645b87 --- /dev/null +++ b/node_modules/node/node_modules/node-bin-setup/package.json @@ -0,0 +1,12 @@ +{ + "name": "node-bin-setup", + "version": "1.1.3", + "description": "Internal script used by the node package to install architecture-specific packages", + "main": "index.js", + "repository": { + "type": "git", + "url": "https://github.com/aredridel/node-bin-setup.git" + }, + "author": "Aria Stewart ", + "license": "ISC" +} diff --git a/node_modules/node/node_modules/node-win-x64/bin/node.exe b/node_modules/node/node_modules/node-win-x64/bin/node.exe new file mode 100644 index 0000000..3db96da Binary files /dev/null and b/node_modules/node/node_modules/node-win-x64/bin/node.exe differ diff --git a/node_modules/node/node_modules/node-win-x64/package.json b/node_modules/node/node_modules/node-win-x64/package.json new file mode 100644 index 0000000..6747b6e --- /dev/null +++ b/node_modules/node/node_modules/node-win-x64/package.json @@ -0,0 +1,17 @@ +{ + "name": "node-win-x64", + "version": "v20.6.0", + "description": "node", + "bin": { + "node": "bin/node.exe" + }, + "files": [ + "bin/node.exe", + "share", + "include", + "*.md", + "LICENSE" + ], + "os": "win32", + "cpu": "x64" +} \ No newline at end of file diff --git a/node_modules/node/package.json b/node_modules/node/package.json index 2ccb98f..5465148 100644 --- a/node_modules/node/package.json +++ b/node_modules/node/package.json @@ -14,7 +14,7 @@ "preinstall": "node installArchSpecificPackage" }, "bin": { - "node": "bin/node" + "node": "bin/node.exe" }, "dependencies": { "node-bin-setup": "^1.0.0"