Changeset 59329aa for trip-planner-front/node_modules/@npmcli/git
- Timestamp:
- 11/23/21 14:58:44 (3 years ago)
- Branches:
- master
- Children:
- e29cc2e
- Parents:
- ceaed42
- Location:
- trip-planner-front/node_modules/@npmcli/git
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trip-planner-front/node_modules/@npmcli/git/node_modules/.bin/node-which
rceaed42 r59329aa 7 7 8 8 if [ -x "$basedir/node" ]; then 9 exec "$basedir/node" "$basedir/../which/bin/node-which" "$@" 9 "$basedir/node" "$basedir/../which/bin/node-which" "$@" 10 ret=$? 10 11 else 11 exec node "$basedir/../which/bin/node-which" "$@" 12 node "$basedir/../which/bin/node-which" "$@" 13 ret=$? 12 14 fi 15 exit $ret -
trip-planner-front/node_modules/@npmcli/git/node_modules/.bin/node-which.cmd
rceaed42 r59329aa 1 1 @ECHO off 2 GOTO start3 :find_dp04 SET dp0=%~dp05 EXIT /b6 :start7 2 SETLOCAL 8 3 CALL :find_dp0 … … 15 10 ) 16 11 17 endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\which\bin\node-which" %* 12 "%_prog%" "%dp0%\..\which\bin\node-which" %* 13 ENDLOCAL 14 EXIT /b %errorlevel% 15 :find_dp0 16 SET dp0=%~dp0 17 EXIT /b -
trip-planner-front/node_modules/@npmcli/git/node_modules/.bin/node-which.ps1
rceaed42 r59329aa 10 10 $ret=0 11 11 if (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 18 13 $ret=$LASTEXITCODE 19 14 } 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 26 16 $ret=$LASTEXITCODE 27 17 } -
trip-planner-front/node_modules/@npmcli/git/node_modules/which/package.json
rceaed42 r59329aa 1 1 { 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": "/@npmcli/git/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" 9 24 }, 10 "main": "which.js", 25 "_requiredBy": [ 26 "/@npmcli/git" 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 }, 11 36 "bin": { 12 "node-which": " ./bin/node-which"37 "node-which": "bin/node-which" 13 38 }, 14 "license": "ISC", 39 "bugs": { 40 "url": "https://github.com/isaacs/node-which/issues" 41 }, 15 42 "dependencies": { 16 43 "isexe": "^2.0.0" 17 44 }, 45 "description": "Like which(1) unix command. Find the first instance of an executable in the PATH.", 18 46 "devDependencies": { 19 47 "mkdirp": "^0.5.0", … … 21 49 "tap": "^14.6.9" 22 50 }, 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" 32 53 }, 33 54 "files": [ … … 35 56 "bin/node-which" 36 57 ], 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 }, 37 76 "tap": { 38 77 "check-coverage": true 39 78 }, 40 "engines": { 41 "node": ">= 8" 42 } 79 "version": "2.0.2" 43 80 } -
trip-planner-front/node_modules/@npmcli/git/package.json
rceaed42 r59329aa 1 1 { 2 " name": "@npmcli/git",3 "version": "2.1.0",4 "main": "lib/index.js",5 "files": [6 "lib/*.js"2 "_args": [ 3 [ 4 "@npmcli/git@2.1.0", 5 "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front" 6 ] 7 7 ], 8 "description": "a util for spawning git from npm CLI contexts", 9 "repository": { 10 "type": "git", 11 "url": "git+https://github.com/npm/git" 8 "_development": true, 9 "_from": "@npmcli/git@2.1.0", 10 "_id": "@npmcli/git@2.1.0", 11 "_inBundle": false, 12 "_integrity": "sha512-/hBFX/QG1b+N7PZBFs0bi+evgRZcK9nWBxQKZkGoXUT5hJSwl5c4d7y8/hm+NQZRPhQ67RzFaj5UM9YeyKoryw==", 13 "_location": "/@npmcli/git", 14 "_phantomChildren": { 15 "isexe": "2.0.0" 12 16 }, 13 "author": "Isaac Z. Schlueter <i@izs.me> (https://izs.me)", 14 "license": "ISC", 15 "scripts": { 16 "lint": "standard", 17 "lint:fix": "standard --fix", 18 "postversion": "npm publish", 19 "prepublishOnly": "git push origin --follow-tags", 20 "preversion": "npm test", 21 "snap": "tap", 22 "test": "tap", 23 "posttest": "npm run lint" 17 "_requested": { 18 "type": "version", 19 "registry": true, 20 "raw": "@npmcli/git@2.1.0", 21 "name": "@npmcli/git", 22 "escapedName": "@npmcli%2fgit", 23 "scope": "@npmcli", 24 "rawSpec": "2.1.0", 25 "saveSpec": null, 26 "fetchSpec": "2.1.0" 24 27 }, 25 "tap": { 26 "check-coverage": true, 27 "coverage-map": "map.js" 28 "_requiredBy": [ 29 "/pacote" 30 ], 31 "_resolved": "https://registry.npmjs.org/@npmcli/git/-/git-2.1.0.tgz", 32 "_spec": "2.1.0", 33 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front", 34 "author": { 35 "name": "Isaac Z. Schlueter", 36 "email": "i@izs.me", 37 "url": "https://izs.me" 28 38 }, 29 "devDependencies": { 30 "slash": "^3.0.0", 31 "standard": "^16.0.3", 32 "tap": "^15.0.6" 39 "bugs": { 40 "url": "https://github.com/npm/git/issues" 33 41 }, 34 42 "dependencies": { … … 41 49 "semver": "^7.3.5", 42 50 "which": "^2.0.2" 43 } 51 }, 52 "description": "a util for spawning git from npm CLI contexts", 53 "devDependencies": { 54 "slash": "^3.0.0", 55 "standard": "^16.0.3", 56 "tap": "^15.0.6" 57 }, 58 "files": [ 59 "lib/*.js" 60 ], 61 "homepage": "https://github.com/npm/git#readme", 62 "license": "ISC", 63 "main": "lib/index.js", 64 "name": "@npmcli/git", 65 "repository": { 66 "type": "git", 67 "url": "git+https://github.com/npm/git.git" 68 }, 69 "scripts": { 70 "lint": "standard", 71 "lint:fix": "standard --fix", 72 "posttest": "npm run lint", 73 "postversion": "npm publish", 74 "prepublishOnly": "git push origin --follow-tags", 75 "preversion": "npm test", 76 "snap": "tap", 77 "test": "tap" 78 }, 79 "tap": { 80 "check-coverage": true, 81 "coverage-map": "map.js" 82 }, 83 "version": "2.1.0" 44 84 }
Note:
See TracChangeset
for help on using the changeset viewer.