Changeset 59329aa for trip-planner-front/node_modules/cross-spawn
- Timestamp:
- 11/23/21 14:58:44 (3 years ago)
- Branches:
- master
- Children:
- e29cc2e
- Parents:
- ceaed42
- Location:
- trip-planner-front/node_modules/cross-spawn
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trip-planner-front/node_modules/cross-spawn/node_modules/.bin/semver
rceaed42 r59329aa 7 7 8 8 if [ -x "$basedir/node" ]; then 9 exec "$basedir/node" "$basedir/../semver/bin/semver" "$@" 9 "$basedir/node" "$basedir/../semver/bin/semver" "$@" 10 ret=$? 10 11 else 11 exec node "$basedir/../semver/bin/semver" "$@" 12 node "$basedir/../semver/bin/semver" "$@" 13 ret=$? 12 14 fi 15 exit $ret -
trip-planner-front/node_modules/cross-spawn/node_modules/.bin/semver.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%\..\semver\bin\semver" %* 12 "%_prog%" "%dp0%\..\semver\bin\semver" %* 13 ENDLOCAL 14 EXIT /b %errorlevel% 15 :find_dp0 16 SET dp0=%~dp0 17 EXIT /b -
trip-planner-front/node_modules/cross-spawn/node_modules/.bin/semver.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/../semver/bin/semver" $args 15 } else { 16 & "$basedir/node$exe" "$basedir/../semver/bin/semver" $args 17 } 12 & "$basedir/node$exe" "$basedir/../semver/bin/semver" $args 18 13 $ret=$LASTEXITCODE 19 14 } else { 20 # Support pipeline input 21 if ($MyInvocation.ExpectingInput) { 22 $input | & "node$exe" "$basedir/../semver/bin/semver" $args 23 } else { 24 & "node$exe" "$basedir/../semver/bin/semver" $args 25 } 15 & "node$exe" "$basedir/../semver/bin/semver" $args 26 16 $ret=$LASTEXITCODE 27 17 } -
trip-planner-front/node_modules/cross-spawn/node_modules/semver/package.json
rceaed42 r59329aa 1 1 { 2 "name": "semver", 3 "version": "5.7.1", 2 "_args": [ 3 [ 4 "semver@5.7.1", 5 "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front" 6 ] 7 ], 8 "_development": true, 9 "_from": "semver@5.7.1", 10 "_id": "semver@5.7.1", 11 "_inBundle": false, 12 "_integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", 13 "_location": "/cross-spawn/semver", 14 "_phantomChildren": {}, 15 "_requested": { 16 "type": "version", 17 "registry": true, 18 "raw": "semver@5.7.1", 19 "name": "semver", 20 "escapedName": "semver", 21 "rawSpec": "5.7.1", 22 "saveSpec": null, 23 "fetchSpec": "5.7.1" 24 }, 25 "_requiredBy": [ 26 "/cross-spawn" 27 ], 28 "_resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", 29 "_spec": "5.7.1", 30 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front", 31 "bin": { 32 "semver": "bin/semver" 33 }, 34 "bugs": { 35 "url": "https://github.com/npm/node-semver/issues" 36 }, 4 37 "description": "The semantic version parser used by npm.", 5 "main": "semver.js",6 "scripts": {7 "test": "tap",8 "preversion": "npm test",9 "postversion": "npm publish",10 "postpublish": "git push origin --all; git push origin --tags"11 },12 38 "devDependencies": { 13 39 "tap": "^13.0.0-rc.18" 14 },15 "license": "ISC",16 "repository": "https://github.com/npm/node-semver",17 "bin": {18 "semver": "./bin/semver"19 40 }, 20 41 "files": [ … … 23 44 "semver.js" 24 45 ], 46 "homepage": "https://github.com/npm/node-semver#readme", 47 "license": "ISC", 48 "main": "semver.js", 49 "name": "semver", 50 "repository": { 51 "type": "git", 52 "url": "git+https://github.com/npm/node-semver.git" 53 }, 54 "scripts": { 55 "postpublish": "git push origin --all; git push origin --tags", 56 "postversion": "npm publish", 57 "preversion": "npm test", 58 "test": "tap" 59 }, 25 60 "tap": { 26 61 "check-coverage": true 27 } 62 }, 63 "version": "5.7.1" 28 64 } -
trip-planner-front/node_modules/cross-spawn/package.json
rceaed42 r59329aa 1 1 { 2 "name": "cross-spawn", 3 "version": "6.0.5", 4 "description": "Cross platform child_process#spawn and child_process#spawnSync", 5 "keywords": [ 6 "spawn", 7 "spawnSync", 8 "windows", 9 "cross-platform", 10 "path-ext", 11 "shebang", 12 "cmd", 13 "execute" 2 "_args": [ 3 [ 4 "cross-spawn@6.0.5", 5 "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front" 6 ] 14 7 ], 15 "author": "André Cruz <andre@moxy.studio>", 16 "homepage": "https://github.com/moxystudio/node-cross-spawn", 17 "repository": { 18 "type": "git", 19 "url": "git@github.com:moxystudio/node-cross-spawn.git" 8 "_development": true, 9 "_from": "cross-spawn@6.0.5", 10 "_id": "cross-spawn@6.0.5", 11 "_inBundle": false, 12 "_integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", 13 "_location": "/cross-spawn", 14 "_phantomChildren": {}, 15 "_requested": { 16 "type": "version", 17 "registry": true, 18 "raw": "cross-spawn@6.0.5", 19 "name": "cross-spawn", 20 "escapedName": "cross-spawn", 21 "rawSpec": "6.0.5", 22 "saveSpec": null, 23 "fetchSpec": "6.0.5" 20 24 }, 21 "license": "MIT", 22 "main": "index.js", 23 "files": [ 24 "lib" 25 "_requiredBy": [ 26 "/execa" 25 27 ], 26 "scripts": { 27 "lint": "eslint .", 28 "test": "jest --env node --coverage", 29 "prerelease": "npm t && npm run lint", 30 "release": "standard-version", 31 "precommit": "lint-staged", 32 "commitmsg": "commitlint -e $GIT_PARAMS" 28 "_resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", 29 "_spec": "6.0.5", 30 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front", 31 "author": { 32 "name": "André Cruz", 33 "email": "andre@moxy.studio" 33 34 }, 34 "standard-version": { 35 "scripts": { 36 "posttag": "git push --follow-tags origin master && npm publish" 37 } 38 }, 39 "lint-staged": { 40 "*.js": [ 41 "eslint --fix", 42 "git add" 43 ] 35 "bugs": { 36 "url": "https://github.com/moxystudio/node-cross-spawn/issues" 44 37 }, 45 38 "commitlint": { … … 55 48 "which": "^1.2.9" 56 49 }, 50 "description": "Cross platform child_process#spawn and child_process#spawnSync", 57 51 "devDependencies": { 58 52 "@commitlint/cli": "^6.0.0", … … 73 67 "engines": { 74 68 "node": ">=4.8" 75 } 69 }, 70 "files": [ 71 "lib" 72 ], 73 "homepage": "https://github.com/moxystudio/node-cross-spawn", 74 "keywords": [ 75 "spawn", 76 "spawnSync", 77 "windows", 78 "cross-platform", 79 "path-ext", 80 "shebang", 81 "cmd", 82 "execute" 83 ], 84 "license": "MIT", 85 "lint-staged": { 86 "*.js": [ 87 "eslint --fix", 88 "git add" 89 ] 90 }, 91 "main": "index.js", 92 "name": "cross-spawn", 93 "repository": { 94 "type": "git", 95 "url": "git+ssh://git@github.com/moxystudio/node-cross-spawn.git" 96 }, 97 "scripts": { 98 "commitmsg": "commitlint -e $GIT_PARAMS", 99 "lint": "eslint .", 100 "precommit": "lint-staged", 101 "prerelease": "npm t && npm run lint", 102 "release": "standard-version", 103 "test": "jest --env node --coverage" 104 }, 105 "standard-version": { 106 "scripts": { 107 "posttag": "git push --follow-tags origin master && npm publish" 108 } 109 }, 110 "version": "6.0.5" 76 111 }
Note:
See TracChangeset
for help on using the changeset viewer.