aboutsummaryrefslogtreecommitdiff
path: root/sandbox/testAppNevena/Front/node_modules/.bin
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/testAppNevena/Front/node_modules/.bin')
-rw-r--r--sandbox/testAppNevena/Front/node_modules/.bin/color-support12
-rw-r--r--sandbox/testAppNevena/Front/node_modules/.bin/color-support.cmd17
-rw-r--r--sandbox/testAppNevena/Front/node_modules/.bin/color-support.ps128
-rw-r--r--sandbox/testAppNevena/Front/node_modules/.bin/installed-package-contents8
-rw-r--r--sandbox/testAppNevena/Front/node_modules/.bin/installed-package-contents.cmd9
-rw-r--r--sandbox/testAppNevena/Front/node_modules/.bin/installed-package-contents.ps116
-rw-r--r--sandbox/testAppNevena/Front/node_modules/.bin/is-docker12
-rw-r--r--sandbox/testAppNevena/Front/node_modules/.bin/is-docker.cmd17
-rw-r--r--sandbox/testAppNevena/Front/node_modules/.bin/is-docker.ps128
-rw-r--r--sandbox/testAppNevena/Front/node_modules/.bin/mkdirp12
-rw-r--r--sandbox/testAppNevena/Front/node_modules/.bin/mkdirp.cmd17
-rw-r--r--sandbox/testAppNevena/Front/node_modules/.bin/mkdirp.ps128
-rw-r--r--sandbox/testAppNevena/Front/node_modules/.bin/ng12
-rw-r--r--sandbox/testAppNevena/Front/node_modules/.bin/ng.cmd17
-rw-r--r--sandbox/testAppNevena/Front/node_modules/.bin/ng.ps128
-rw-r--r--sandbox/testAppNevena/Front/node_modules/.bin/node-gyp12
-rw-r--r--sandbox/testAppNevena/Front/node_modules/.bin/node-gyp.cmd17
-rw-r--r--sandbox/testAppNevena/Front/node_modules/.bin/node-gyp.ps128
-rw-r--r--sandbox/testAppNevena/Front/node_modules/.bin/node-which12
-rw-r--r--sandbox/testAppNevena/Front/node_modules/.bin/node-which.cmd17
-rw-r--r--sandbox/testAppNevena/Front/node_modules/.bin/node-which.ps128
-rw-r--r--sandbox/testAppNevena/Front/node_modules/.bin/nopt12
-rw-r--r--sandbox/testAppNevena/Front/node_modules/.bin/nopt.cmd17
-rw-r--r--sandbox/testAppNevena/Front/node_modules/.bin/nopt.ps128
-rw-r--r--sandbox/testAppNevena/Front/node_modules/.bin/npm-packlist12
-rw-r--r--sandbox/testAppNevena/Front/node_modules/.bin/npm-packlist.cmd17
-rw-r--r--sandbox/testAppNevena/Front/node_modules/.bin/npm-packlist.ps128
-rw-r--r--sandbox/testAppNevena/Front/node_modules/.bin/pacote12
-rw-r--r--sandbox/testAppNevena/Front/node_modules/.bin/pacote.cmd17
-rw-r--r--sandbox/testAppNevena/Front/node_modules/.bin/pacote.ps128
-rw-r--r--sandbox/testAppNevena/Front/node_modules/.bin/resolve12
-rw-r--r--sandbox/testAppNevena/Front/node_modules/.bin/resolve.cmd17
-rw-r--r--sandbox/testAppNevena/Front/node_modules/.bin/resolve.ps128
-rw-r--r--sandbox/testAppNevena/Front/node_modules/.bin/rimraf12
-rw-r--r--sandbox/testAppNevena/Front/node_modules/.bin/rimraf.cmd17
-rw-r--r--sandbox/testAppNevena/Front/node_modules/.bin/rimraf.ps128
-rw-r--r--sandbox/testAppNevena/Front/node_modules/.bin/semver12
-rw-r--r--sandbox/testAppNevena/Front/node_modules/.bin/semver.cmd17
-rw-r--r--sandbox/testAppNevena/Front/node_modules/.bin/semver.ps128
-rw-r--r--sandbox/testAppNevena/Front/node_modules/.bin/uuid12
-rw-r--r--sandbox/testAppNevena/Front/node_modules/.bin/uuid.cmd17
-rw-r--r--sandbox/testAppNevena/Front/node_modules/.bin/uuid.ps128
42 files changed, 0 insertions, 774 deletions
diff --git a/sandbox/testAppNevena/Front/node_modules/.bin/color-support b/sandbox/testAppNevena/Front/node_modules/.bin/color-support
deleted file mode 100644
index 59e65069..00000000
--- a/sandbox/testAppNevena/Front/node_modules/.bin/color-support
+++ /dev/null
@@ -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/../color-support/bin.js" "$@"
-else
- exec node "$basedir/../color-support/bin.js" "$@"
-fi
diff --git a/sandbox/testAppNevena/Front/node_modules/.bin/color-support.cmd b/sandbox/testAppNevena/Front/node_modules/.bin/color-support.cmd
deleted file mode 100644
index 005f9a56..00000000
--- a/sandbox/testAppNevena/Front/node_modules/.bin/color-support.cmd
+++ /dev/null
@@ -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%\..\color-support\bin.js" %*
diff --git a/sandbox/testAppNevena/Front/node_modules/.bin/color-support.ps1 b/sandbox/testAppNevena/Front/node_modules/.bin/color-support.ps1
deleted file mode 100644
index f5c9fe49..00000000
--- a/sandbox/testAppNevena/Front/node_modules/.bin/color-support.ps1
+++ /dev/null
@@ -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/../color-support/bin.js" $args
- } else {
- & "$basedir/node$exe" "$basedir/../color-support/bin.js" $args
- }
- $ret=$LASTEXITCODE
-} else {
- # Support pipeline input
- if ($MyInvocation.ExpectingInput) {
- $input | & "node$exe" "$basedir/../color-support/bin.js" $args
- } else {
- & "node$exe" "$basedir/../color-support/bin.js" $args
- }
- $ret=$LASTEXITCODE
-}
-exit $ret
diff --git a/sandbox/testAppNevena/Front/node_modules/.bin/installed-package-contents b/sandbox/testAppNevena/Front/node_modules/.bin/installed-package-contents
deleted file mode 100644
index 54bb519b..00000000
--- a/sandbox/testAppNevena/Front/node_modules/.bin/installed-package-contents
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/bin/sh
-basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
-
-case `uname` in
- *CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;;
-esac
-
-exec "$basedir/../@npmcli/installed-package-contents/index.js" "$@"
diff --git a/sandbox/testAppNevena/Front/node_modules/.bin/installed-package-contents.cmd b/sandbox/testAppNevena/Front/node_modules/.bin/installed-package-contents.cmd
deleted file mode 100644
index bb330a11..00000000
--- a/sandbox/testAppNevena/Front/node_modules/.bin/installed-package-contents.cmd
+++ /dev/null
@@ -1,9 +0,0 @@
-@ECHO off
-GOTO start
-:find_dp0
-SET dp0=%~dp0
-EXIT /b
-:start
-SETLOCAL
-CALL :find_dp0
-"%dp0%\..\@npmcli\installed-package-contents\index.js" %*
diff --git a/sandbox/testAppNevena/Front/node_modules/.bin/installed-package-contents.ps1 b/sandbox/testAppNevena/Front/node_modules/.bin/installed-package-contents.ps1
deleted file mode 100644
index 8004fa4c..00000000
--- a/sandbox/testAppNevena/Front/node_modules/.bin/installed-package-contents.ps1
+++ /dev/null
@@ -1,16 +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"
-}
-# Support pipeline input
-if ($MyInvocation.ExpectingInput) {
- $input | & "$basedir/../@npmcli/installed-package-contents/index.js" $args
-} else {
- & "$basedir/../@npmcli/installed-package-contents/index.js" $args
-}
-exit $LASTEXITCODE
diff --git a/sandbox/testAppNevena/Front/node_modules/.bin/is-docker b/sandbox/testAppNevena/Front/node_modules/.bin/is-docker
deleted file mode 100644
index 9e457930..00000000
--- a/sandbox/testAppNevena/Front/node_modules/.bin/is-docker
+++ /dev/null
@@ -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/../is-docker/cli.js" "$@"
-else
- exec node "$basedir/../is-docker/cli.js" "$@"
-fi
diff --git a/sandbox/testAppNevena/Front/node_modules/.bin/is-docker.cmd b/sandbox/testAppNevena/Front/node_modules/.bin/is-docker.cmd
deleted file mode 100644
index 79e76ca1..00000000
--- a/sandbox/testAppNevena/Front/node_modules/.bin/is-docker.cmd
+++ /dev/null
@@ -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%\..\is-docker\cli.js" %*
diff --git a/sandbox/testAppNevena/Front/node_modules/.bin/is-docker.ps1 b/sandbox/testAppNevena/Front/node_modules/.bin/is-docker.ps1
deleted file mode 100644
index 74276253..00000000
--- a/sandbox/testAppNevena/Front/node_modules/.bin/is-docker.ps1
+++ /dev/null
@@ -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/../is-docker/cli.js" $args
- } else {
- & "$basedir/node$exe" "$basedir/../is-docker/cli.js" $args
- }
- $ret=$LASTEXITCODE
-} else {
- # Support pipeline input
- if ($MyInvocation.ExpectingInput) {
- $input | & "node$exe" "$basedir/../is-docker/cli.js" $args
- } else {
- & "node$exe" "$basedir/../is-docker/cli.js" $args
- }
- $ret=$LASTEXITCODE
-}
-exit $ret
diff --git a/sandbox/testAppNevena/Front/node_modules/.bin/mkdirp b/sandbox/testAppNevena/Front/node_modules/.bin/mkdirp
deleted file mode 100644
index 6ba5765a..00000000
--- a/sandbox/testAppNevena/Front/node_modules/.bin/mkdirp
+++ /dev/null
@@ -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
diff --git a/sandbox/testAppNevena/Front/node_modules/.bin/mkdirp.cmd b/sandbox/testAppNevena/Front/node_modules/.bin/mkdirp.cmd
deleted file mode 100644
index a865dd9f..00000000
--- a/sandbox/testAppNevena/Front/node_modules/.bin/mkdirp.cmd
+++ /dev/null
@@ -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" %*
diff --git a/sandbox/testAppNevena/Front/node_modules/.bin/mkdirp.ps1 b/sandbox/testAppNevena/Front/node_modules/.bin/mkdirp.ps1
deleted file mode 100644
index 911e8546..00000000
--- a/sandbox/testAppNevena/Front/node_modules/.bin/mkdirp.ps1
+++ /dev/null
@@ -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
diff --git a/sandbox/testAppNevena/Front/node_modules/.bin/ng b/sandbox/testAppNevena/Front/node_modules/.bin/ng
deleted file mode 100644
index 37e323a8..00000000
--- a/sandbox/testAppNevena/Front/node_modules/.bin/ng
+++ /dev/null
@@ -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/../@angular/cli/bin/ng.js" "$@"
-else
- exec node "$basedir/../@angular/cli/bin/ng.js" "$@"
-fi
diff --git a/sandbox/testAppNevena/Front/node_modules/.bin/ng.cmd b/sandbox/testAppNevena/Front/node_modules/.bin/ng.cmd
deleted file mode 100644
index 9ead4733..00000000
--- a/sandbox/testAppNevena/Front/node_modules/.bin/ng.cmd
+++ /dev/null
@@ -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%\..\@angular\cli\bin\ng.js" %*
diff --git a/sandbox/testAppNevena/Front/node_modules/.bin/ng.ps1 b/sandbox/testAppNevena/Front/node_modules/.bin/ng.ps1
deleted file mode 100644
index 20803a05..00000000
--- a/sandbox/testAppNevena/Front/node_modules/.bin/ng.ps1
+++ /dev/null
@@ -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/../@angular/cli/bin/ng.js" $args
- } else {
- & "$basedir/node$exe" "$basedir/../@angular/cli/bin/ng.js" $args
- }
- $ret=$LASTEXITCODE
-} else {
- # Support pipeline input
- if ($MyInvocation.ExpectingInput) {
- $input | & "node$exe" "$basedir/../@angular/cli/bin/ng.js" $args
- } else {
- & "node$exe" "$basedir/../@angular/cli/bin/ng.js" $args
- }
- $ret=$LASTEXITCODE
-}
-exit $ret
diff --git a/sandbox/testAppNevena/Front/node_modules/.bin/node-gyp b/sandbox/testAppNevena/Front/node_modules/.bin/node-gyp
deleted file mode 100644
index b80888c2..00000000
--- a/sandbox/testAppNevena/Front/node_modules/.bin/node-gyp
+++ /dev/null
@@ -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-gyp/bin/node-gyp.js" "$@"
-else
- exec node "$basedir/../node-gyp/bin/node-gyp.js" "$@"
-fi
diff --git a/sandbox/testAppNevena/Front/node_modules/.bin/node-gyp.cmd b/sandbox/testAppNevena/Front/node_modules/.bin/node-gyp.cmd
deleted file mode 100644
index 9a6a721e..00000000
--- a/sandbox/testAppNevena/Front/node_modules/.bin/node-gyp.cmd
+++ /dev/null
@@ -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-gyp\bin\node-gyp.js" %*
diff --git a/sandbox/testAppNevena/Front/node_modules/.bin/node-gyp.ps1 b/sandbox/testAppNevena/Front/node_modules/.bin/node-gyp.ps1
deleted file mode 100644
index dd514e27..00000000
--- a/sandbox/testAppNevena/Front/node_modules/.bin/node-gyp.ps1
+++ /dev/null
@@ -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-gyp/bin/node-gyp.js" $args
- } else {
- & "$basedir/node$exe" "$basedir/../node-gyp/bin/node-gyp.js" $args
- }
- $ret=$LASTEXITCODE
-} else {
- # Support pipeline input
- if ($MyInvocation.ExpectingInput) {
- $input | & "node$exe" "$basedir/../node-gyp/bin/node-gyp.js" $args
- } else {
- & "node$exe" "$basedir/../node-gyp/bin/node-gyp.js" $args
- }
- $ret=$LASTEXITCODE
-}
-exit $ret
diff --git a/sandbox/testAppNevena/Front/node_modules/.bin/node-which b/sandbox/testAppNevena/Front/node_modules/.bin/node-which
deleted file mode 100644
index aece7353..00000000
--- a/sandbox/testAppNevena/Front/node_modules/.bin/node-which
+++ /dev/null
@@ -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/../which/bin/node-which" "$@"
-else
- exec node "$basedir/../which/bin/node-which" "$@"
-fi
diff --git a/sandbox/testAppNevena/Front/node_modules/.bin/node-which.cmd b/sandbox/testAppNevena/Front/node_modules/.bin/node-which.cmd
deleted file mode 100644
index 8738aed8..00000000
--- a/sandbox/testAppNevena/Front/node_modules/.bin/node-which.cmd
+++ /dev/null
@@ -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%\..\which\bin\node-which" %*
diff --git a/sandbox/testAppNevena/Front/node_modules/.bin/node-which.ps1 b/sandbox/testAppNevena/Front/node_modules/.bin/node-which.ps1
deleted file mode 100644
index cfb09e84..00000000
--- a/sandbox/testAppNevena/Front/node_modules/.bin/node-which.ps1
+++ /dev/null
@@ -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/../which/bin/node-which" $args
- } else {
- & "$basedir/node$exe" "$basedir/../which/bin/node-which" $args
- }
- $ret=$LASTEXITCODE
-} else {
- # Support pipeline input
- if ($MyInvocation.ExpectingInput) {
- $input | & "node$exe" "$basedir/../which/bin/node-which" $args
- } else {
- & "node$exe" "$basedir/../which/bin/node-which" $args
- }
- $ret=$LASTEXITCODE
-}
-exit $ret
diff --git a/sandbox/testAppNevena/Front/node_modules/.bin/nopt b/sandbox/testAppNevena/Front/node_modules/.bin/nopt
deleted file mode 100644
index f1ec43bc..00000000
--- a/sandbox/testAppNevena/Front/node_modules/.bin/nopt
+++ /dev/null
@@ -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
diff --git a/sandbox/testAppNevena/Front/node_modules/.bin/nopt.cmd b/sandbox/testAppNevena/Front/node_modules/.bin/nopt.cmd
deleted file mode 100644
index a7f38b3d..00000000
--- a/sandbox/testAppNevena/Front/node_modules/.bin/nopt.cmd
+++ /dev/null
@@ -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" %*
diff --git a/sandbox/testAppNevena/Front/node_modules/.bin/nopt.ps1 b/sandbox/testAppNevena/Front/node_modules/.bin/nopt.ps1
deleted file mode 100644
index 9d6ba56f..00000000
--- a/sandbox/testAppNevena/Front/node_modules/.bin/nopt.ps1
+++ /dev/null
@@ -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
diff --git a/sandbox/testAppNevena/Front/node_modules/.bin/npm-packlist b/sandbox/testAppNevena/Front/node_modules/.bin/npm-packlist
deleted file mode 100644
index c6f28c67..00000000
--- a/sandbox/testAppNevena/Front/node_modules/.bin/npm-packlist
+++ /dev/null
@@ -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/../npm-packlist/bin/index.js" "$@"
-else
- exec node "$basedir/../npm-packlist/bin/index.js" "$@"
-fi
diff --git a/sandbox/testAppNevena/Front/node_modules/.bin/npm-packlist.cmd b/sandbox/testAppNevena/Front/node_modules/.bin/npm-packlist.cmd
deleted file mode 100644
index b4785483..00000000
--- a/sandbox/testAppNevena/Front/node_modules/.bin/npm-packlist.cmd
+++ /dev/null
@@ -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%\..\npm-packlist\bin\index.js" %*
diff --git a/sandbox/testAppNevena/Front/node_modules/.bin/npm-packlist.ps1 b/sandbox/testAppNevena/Front/node_modules/.bin/npm-packlist.ps1
deleted file mode 100644
index 2afe356a..00000000
--- a/sandbox/testAppNevena/Front/node_modules/.bin/npm-packlist.ps1
+++ /dev/null
@@ -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/../npm-packlist/bin/index.js" $args
- } else {
- & "$basedir/node$exe" "$basedir/../npm-packlist/bin/index.js" $args
- }
- $ret=$LASTEXITCODE
-} else {
- # Support pipeline input
- if ($MyInvocation.ExpectingInput) {
- $input | & "node$exe" "$basedir/../npm-packlist/bin/index.js" $args
- } else {
- & "node$exe" "$basedir/../npm-packlist/bin/index.js" $args
- }
- $ret=$LASTEXITCODE
-}
-exit $ret
diff --git a/sandbox/testAppNevena/Front/node_modules/.bin/pacote b/sandbox/testAppNevena/Front/node_modules/.bin/pacote
deleted file mode 100644
index 51ca8815..00000000
--- a/sandbox/testAppNevena/Front/node_modules/.bin/pacote
+++ /dev/null
@@ -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/../pacote/lib/bin.js" "$@"
-else
- exec node "$basedir/../pacote/lib/bin.js" "$@"
-fi
diff --git a/sandbox/testAppNevena/Front/node_modules/.bin/pacote.cmd b/sandbox/testAppNevena/Front/node_modules/.bin/pacote.cmd
deleted file mode 100644
index 88a06c52..00000000
--- a/sandbox/testAppNevena/Front/node_modules/.bin/pacote.cmd
+++ /dev/null
@@ -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%\..\pacote\lib\bin.js" %*
diff --git a/sandbox/testAppNevena/Front/node_modules/.bin/pacote.ps1 b/sandbox/testAppNevena/Front/node_modules/.bin/pacote.ps1
deleted file mode 100644
index b5464b1d..00000000
--- a/sandbox/testAppNevena/Front/node_modules/.bin/pacote.ps1
+++ /dev/null
@@ -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/../pacote/lib/bin.js" $args
- } else {
- & "$basedir/node$exe" "$basedir/../pacote/lib/bin.js" $args
- }
- $ret=$LASTEXITCODE
-} else {
- # Support pipeline input
- if ($MyInvocation.ExpectingInput) {
- $input | & "node$exe" "$basedir/../pacote/lib/bin.js" $args
- } else {
- & "node$exe" "$basedir/../pacote/lib/bin.js" $args
- }
- $ret=$LASTEXITCODE
-}
-exit $ret
diff --git a/sandbox/testAppNevena/Front/node_modules/.bin/resolve b/sandbox/testAppNevena/Front/node_modules/.bin/resolve
deleted file mode 100644
index 757d454a..00000000
--- a/sandbox/testAppNevena/Front/node_modules/.bin/resolve
+++ /dev/null
@@ -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/../resolve/bin/resolve" "$@"
-else
- exec node "$basedir/../resolve/bin/resolve" "$@"
-fi
diff --git a/sandbox/testAppNevena/Front/node_modules/.bin/resolve.cmd b/sandbox/testAppNevena/Front/node_modules/.bin/resolve.cmd
deleted file mode 100644
index 1a017c40..00000000
--- a/sandbox/testAppNevena/Front/node_modules/.bin/resolve.cmd
+++ /dev/null
@@ -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%\..\resolve\bin\resolve" %*
diff --git a/sandbox/testAppNevena/Front/node_modules/.bin/resolve.ps1 b/sandbox/testAppNevena/Front/node_modules/.bin/resolve.ps1
deleted file mode 100644
index f22b2d31..00000000
--- a/sandbox/testAppNevena/Front/node_modules/.bin/resolve.ps1
+++ /dev/null
@@ -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/../resolve/bin/resolve" $args
- } else {
- & "$basedir/node$exe" "$basedir/../resolve/bin/resolve" $args
- }
- $ret=$LASTEXITCODE
-} else {
- # Support pipeline input
- if ($MyInvocation.ExpectingInput) {
- $input | & "node$exe" "$basedir/../resolve/bin/resolve" $args
- } else {
- & "node$exe" "$basedir/../resolve/bin/resolve" $args
- }
- $ret=$LASTEXITCODE
-}
-exit $ret
diff --git a/sandbox/testAppNevena/Front/node_modules/.bin/rimraf b/sandbox/testAppNevena/Front/node_modules/.bin/rimraf
deleted file mode 100644
index b8168255..00000000
--- a/sandbox/testAppNevena/Front/node_modules/.bin/rimraf
+++ /dev/null
@@ -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
diff --git a/sandbox/testAppNevena/Front/node_modules/.bin/rimraf.cmd b/sandbox/testAppNevena/Front/node_modules/.bin/rimraf.cmd
deleted file mode 100644
index 13f45eca..00000000
--- a/sandbox/testAppNevena/Front/node_modules/.bin/rimraf.cmd
+++ /dev/null
@@ -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" %*
diff --git a/sandbox/testAppNevena/Front/node_modules/.bin/rimraf.ps1 b/sandbox/testAppNevena/Front/node_modules/.bin/rimraf.ps1
deleted file mode 100644
index 17167914..00000000
--- a/sandbox/testAppNevena/Front/node_modules/.bin/rimraf.ps1
+++ /dev/null
@@ -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
diff --git a/sandbox/testAppNevena/Front/node_modules/.bin/semver b/sandbox/testAppNevena/Front/node_modules/.bin/semver
deleted file mode 100644
index 77443e78..00000000
--- a/sandbox/testAppNevena/Front/node_modules/.bin/semver
+++ /dev/null
@@ -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.js" "$@"
-else
- exec node "$basedir/../semver/bin/semver.js" "$@"
-fi
diff --git a/sandbox/testAppNevena/Front/node_modules/.bin/semver.cmd b/sandbox/testAppNevena/Front/node_modules/.bin/semver.cmd
deleted file mode 100644
index 9913fa9d..00000000
--- a/sandbox/testAppNevena/Front/node_modules/.bin/semver.cmd
+++ /dev/null
@@ -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.js" %*
diff --git a/sandbox/testAppNevena/Front/node_modules/.bin/semver.ps1 b/sandbox/testAppNevena/Front/node_modules/.bin/semver.ps1
deleted file mode 100644
index 314717ad..00000000
--- a/sandbox/testAppNevena/Front/node_modules/.bin/semver.ps1
+++ /dev/null
@@ -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.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/sandbox/testAppNevena/Front/node_modules/.bin/uuid b/sandbox/testAppNevena/Front/node_modules/.bin/uuid
deleted file mode 100644
index c3ec0035..00000000
--- a/sandbox/testAppNevena/Front/node_modules/.bin/uuid
+++ /dev/null
@@ -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/../uuid/dist/bin/uuid" "$@"
-else
- exec node "$basedir/../uuid/dist/bin/uuid" "$@"
-fi
diff --git a/sandbox/testAppNevena/Front/node_modules/.bin/uuid.cmd b/sandbox/testAppNevena/Front/node_modules/.bin/uuid.cmd
deleted file mode 100644
index 0f2376ea..00000000
--- a/sandbox/testAppNevena/Front/node_modules/.bin/uuid.cmd
+++ /dev/null
@@ -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%\..\uuid\dist\bin\uuid" %*
diff --git a/sandbox/testAppNevena/Front/node_modules/.bin/uuid.ps1 b/sandbox/testAppNevena/Front/node_modules/.bin/uuid.ps1
deleted file mode 100644
index 78046284..00000000
--- a/sandbox/testAppNevena/Front/node_modules/.bin/uuid.ps1
+++ /dev/null
@@ -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/../uuid/dist/bin/uuid" $args
- } else {
- & "$basedir/node$exe" "$basedir/../uuid/dist/bin/uuid" $args
- }
- $ret=$LASTEXITCODE
-} else {
- # Support pipeline input
- if ($MyInvocation.ExpectingInput) {
- $input | & "node$exe" "$basedir/../uuid/dist/bin/uuid" $args
- } else {
- & "node$exe" "$basedir/../uuid/dist/bin/uuid" $args
- }
- $ret=$LASTEXITCODE
-}
-exit $ret