Ignore:
Timestamp:
11/23/21 14:58:44 (3 years ago)
Author:
Ema <ema_spirova@…>
Branches:
master
Children:
e29cc2e
Parents:
ceaed42
Message:

adding photos

Location:
trip-planner-front/node_modules/node-gyp
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trip-planner-front/node_modules/node-gyp/node_modules/.bin/node-which

    rceaed42 r59329aa  
    77
    88if [ -x "$basedir/node" ]; then
    9   exec "$basedir/node"  "$basedir/../which/bin/node-which" "$@"
     9  "$basedir/node"  "$basedir/../which/bin/node-which" "$@"
     10  ret=$?
    1011else
    11   exec node  "$basedir/../which/bin/node-which" "$@"
     12  node  "$basedir/../which/bin/node-which" "$@"
     13  ret=$?
    1214fi
     15exit $ret
  • trip-planner-front/node_modules/node-gyp/node_modules/.bin/node-which.cmd

    rceaed42 r59329aa  
    11@ECHO off
    2 GOTO start
    3 :find_dp0
    4 SET dp0=%~dp0
    5 EXIT /b
    6 :start
    72SETLOCAL
    83CALL :find_dp0
     
    1510)
    1611
    17 endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%"  "%dp0%\..\which\bin\node-which" %*
     12"%_prog%"  "%dp0%\..\which\bin\node-which" %*
     13ENDLOCAL
     14EXIT /b %errorlevel%
     15:find_dp0
     16SET dp0=%~dp0
     17EXIT /b
  • trip-planner-front/node_modules/node-gyp/node_modules/.bin/node-which.ps1

    rceaed42 r59329aa  
    1010$ret=0
    1111if (Test-Path "$basedir/node$exe") {
    12   # Support pipeline input
    13   if ($MyInvocation.ExpectingInput) {
    14     $input | & "$basedir/node$exe"  "$basedir/../which/bin/node-which" $args
    15   } else {
    16     & "$basedir/node$exe"  "$basedir/../which/bin/node-which" $args
    17   }
     12  & "$basedir/node$exe"  "$basedir/../which/bin/node-which" $args
    1813  $ret=$LASTEXITCODE
    1914} else {
    20   # Support pipeline input
    21   if ($MyInvocation.ExpectingInput) {
    22     $input | & "node$exe"  "$basedir/../which/bin/node-which" $args
    23   } else {
    24     & "node$exe"  "$basedir/../which/bin/node-which" $args
    25   }
     15  & "node$exe"  "$basedir/../which/bin/node-which" $args
    2616  $ret=$LASTEXITCODE
    2717}
  • trip-planner-front/node_modules/node-gyp/node_modules/which/package.json

    rceaed42 r59329aa  
    11{
    2   "author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me)",
    3   "name": "which",
    4   "description": "Like which(1) unix command. Find the first instance of an executable in the PATH.",
    5   "version": "2.0.2",
    6   "repository": {
    7     "type": "git",
    8     "url": "git://github.com/isaacs/node-which.git"
     2  "_args": [
     3    [
     4      "which@2.0.2",
     5      "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front"
     6    ]
     7  ],
     8  "_development": true,
     9  "_from": "which@2.0.2",
     10  "_id": "which@2.0.2",
     11  "_inBundle": false,
     12  "_integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
     13  "_location": "/node-gyp/which",
     14  "_phantomChildren": {},
     15  "_requested": {
     16    "type": "version",
     17    "registry": true,
     18    "raw": "which@2.0.2",
     19    "name": "which",
     20    "escapedName": "which",
     21    "rawSpec": "2.0.2",
     22    "saveSpec": null,
     23    "fetchSpec": "2.0.2"
    924  },
    10   "main": "which.js",
     25  "_requiredBy": [
     26    "/node-gyp"
     27  ],
     28  "_resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
     29  "_spec": "2.0.2",
     30  "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front",
     31  "author": {
     32    "name": "Isaac Z. Schlueter",
     33    "email": "i@izs.me",
     34    "url": "http://blog.izs.me"
     35  },
    1136  "bin": {
    12     "node-which": "./bin/node-which"
     37    "node-which": "bin/node-which"
    1338  },
    14   "license": "ISC",
     39  "bugs": {
     40    "url": "https://github.com/isaacs/node-which/issues"
     41  },
    1542  "dependencies": {
    1643    "isexe": "^2.0.0"
    1744  },
     45  "description": "Like which(1) unix command. Find the first instance of an executable in the PATH.",
    1846  "devDependencies": {
    1947    "mkdirp": "^0.5.0",
     
    2149    "tap": "^14.6.9"
    2250  },
    23   "scripts": {
    24     "test": "tap",
    25     "preversion": "npm test",
    26     "postversion": "npm publish",
    27     "prepublish": "npm run changelog",
    28     "prechangelog": "bash gen-changelog.sh",
    29     "changelog": "git add CHANGELOG.md",
    30     "postchangelog": "git commit -m 'update changelog - '${npm_package_version}",
    31     "postpublish": "git push origin --follow-tags"
     51  "engines": {
     52    "node": ">= 8"
    3253  },
    3354  "files": [
     
    3556    "bin/node-which"
    3657  ],
     58  "homepage": "https://github.com/isaacs/node-which#readme",
     59  "license": "ISC",
     60  "main": "which.js",
     61  "name": "which",
     62  "repository": {
     63    "type": "git",
     64    "url": "git://github.com/isaacs/node-which.git"
     65  },
     66  "scripts": {
     67    "changelog": "git add CHANGELOG.md",
     68    "postchangelog": "git commit -m 'update changelog - '${npm_package_version}",
     69    "postpublish": "git push origin --follow-tags",
     70    "postversion": "npm publish",
     71    "prechangelog": "bash gen-changelog.sh",
     72    "prepublish": "npm run changelog",
     73    "preversion": "npm test",
     74    "test": "tap"
     75  },
    3776  "tap": {
    3877    "check-coverage": true
    3978  },
    40   "engines": {
    41     "node": ">= 8"
    42   }
     79  "version": "2.0.2"
    4380}
  • trip-planner-front/node_modules/node-gyp/package.json

    rceaed42 r59329aa  
    11{
    2   "name": "node-gyp",
    3   "description": "Node.js native addon build tool",
    4   "license": "MIT",
    5   "keywords": [
    6     "native",
    7     "addon",
    8     "module",
    9     "c",
    10     "c++",
    11     "bindings",
    12     "gyp"
     2  "_args": [
     3    [
     4      "node-gyp@7.1.2",
     5      "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front"
     6    ]
    137  ],
    14   "version": "7.1.2",
    15   "installVersion": 9,
    16   "author": "Nathan Rajlich <nathan@tootallnate.net> (http://tootallnate.net)",
    17   "repository": {
    18     "type": "git",
    19     "url": "git://github.com/nodejs/node-gyp.git"
     8  "_development": true,
     9  "_from": "node-gyp@7.1.2",
     10  "_id": "node-gyp@7.1.2",
     11  "_inBundle": false,
     12  "_integrity": "sha512-CbpcIo7C3eMu3dL1c3d0xw449fHIGALIJsRP4DDPHpyiW8vcriNY7ubh9TE4zEKfSxscY7PjeFnshE7h75ynjQ==",
     13  "_location": "/node-gyp",
     14  "_phantomChildren": {
     15    "isexe": "2.0.0"
    2016  },
    21   "preferGlobal": true,
    22   "bin": "./bin/node-gyp.js",
    23   "main": "./lib/node-gyp.js",
     17  "_requested": {
     18    "type": "version",
     19    "registry": true,
     20    "raw": "node-gyp@7.1.2",
     21    "name": "node-gyp",
     22    "escapedName": "node-gyp",
     23    "rawSpec": "7.1.2",
     24    "saveSpec": null,
     25    "fetchSpec": "7.1.2"
     26  },
     27  "_requiredBy": [
     28    "/@npmcli/run-script"
     29  ],
     30  "_resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-7.1.2.tgz",
     31  "_spec": "7.1.2",
     32  "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front",
     33  "author": {
     34    "name": "Nathan Rajlich",
     35    "email": "nathan@tootallnate.net",
     36    "url": "http://tootallnate.net"
     37  },
     38  "bin": {
     39    "node-gyp": "bin/node-gyp.js"
     40  },
     41  "bugs": {
     42    "url": "https://github.com/nodejs/node-gyp/issues"
     43  },
    2444  "dependencies": {
    2545    "env-paths": "^2.2.0",
     
    3454    "which": "^2.0.2"
    3555  },
    36   "engines": {
    37     "node": ">= 10.12.0"
    38   },
     56  "description": "Node.js native addon build tool",
    3957  "devDependencies": {
    4058    "bindings": "^1.5.0",
     
    4462    "tap": "^12.7.0"
    4563  },
     64  "engines": {
     65    "node": ">= 10.12.0"
     66  },
     67  "homepage": "https://github.com/nodejs/node-gyp#readme",
     68  "installVersion": 9,
     69  "keywords": [
     70    "native",
     71    "addon",
     72    "module",
     73    "c",
     74    "c++",
     75    "bindings",
     76    "gyp"
     77  ],
     78  "license": "MIT",
     79  "main": "./lib/node-gyp.js",
     80  "name": "node-gyp",
     81  "preferGlobal": true,
     82  "repository": {
     83    "type": "git",
     84    "url": "git://github.com/nodejs/node-gyp.git"
     85  },
    4686  "scripts": {
    4787    "lint": "standard */*.js test/**/*.js",
    4888    "test": "npm run lint && tap --timeout=120 test/test-*"
    49   }
     89  },
     90  "version": "7.1.2"
    5091}
Note: See TracChangeset for help on using the changeset viewer.