- Timestamp:
- 11/23/21 14:58:44 (3 years ago)
- Branches:
- master
- Children:
- e29cc2e
- Parents:
- ceaed42
- Location:
- trip-planner-front/node_modules/@babel/plugin-transform-runtime
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trip-planner-front/node_modules/@babel/plugin-transform-runtime/node_modules/.bin/semver
rceaed42 r59329aa 7 7 8 8 if [ -x "$basedir/node" ]; then 9 exec "$basedir/node" "$basedir/../semver/bin/semver.js" "$@" 9 "$basedir/node" "$basedir/../semver/bin/semver.js" "$@" 10 ret=$? 10 11 else 11 exec node "$basedir/../semver/bin/semver.js" "$@" 12 node "$basedir/../semver/bin/semver.js" "$@" 13 ret=$? 12 14 fi 15 exit $ret -
trip-planner-front/node_modules/@babel/plugin-transform-runtime/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.js" %* 12 "%_prog%" "%dp0%\..\semver\bin\semver.js" %* 13 ENDLOCAL 14 EXIT /b %errorlevel% 15 :find_dp0 16 SET dp0=%~dp0 17 EXIT /b -
trip-planner-front/node_modules/@babel/plugin-transform-runtime/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.js" $args 15 } else { 16 & "$basedir/node$exe" "$basedir/../semver/bin/semver.js" $args 17 } 12 & "$basedir/node$exe" "$basedir/../semver/bin/semver.js" $args 18 13 $ret=$LASTEXITCODE 19 14 } else { 20 # Support pipeline input 21 if ($MyInvocation.ExpectingInput) { 22 $input | & "node$exe" "$basedir/../semver/bin/semver.js" $args 23 } else { 24 & "node$exe" "$basedir/../semver/bin/semver.js" $args 25 } 15 & "node$exe" "$basedir/../semver/bin/semver.js" $args 26 16 $ret=$LASTEXITCODE 27 17 } -
trip-planner-front/node_modules/@babel/plugin-transform-runtime/node_modules/semver/package.json
rceaed42 r59329aa 1 1 { 2 "name": "semver", 3 "version": "6.3.0", 2 "_args": [ 3 [ 4 "semver@6.3.0", 5 "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front" 6 ] 7 ], 8 "_development": true, 9 "_from": "semver@6.3.0", 10 "_id": "semver@6.3.0", 11 "_inBundle": false, 12 "_integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", 13 "_location": "/@babel/plugin-transform-runtime/semver", 14 "_phantomChildren": {}, 15 "_requested": { 16 "type": "version", 17 "registry": true, 18 "raw": "semver@6.3.0", 19 "name": "semver", 20 "escapedName": "semver", 21 "rawSpec": "6.3.0", 22 "saveSpec": null, 23 "fetchSpec": "6.3.0" 24 }, 25 "_requiredBy": [ 26 "/@babel/plugin-transform-runtime" 27 ], 28 "_resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", 29 "_spec": "6.3.0", 30 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front", 31 "bin": { 32 "semver": "bin/semver.js" 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 --follow-tags"11 },12 38 "devDependencies": { 13 39 "tap": "^14.3.1" 14 },15 "license": "ISC",16 "repository": "https://github.com/npm/node-semver",17 "bin": {18 "semver": "./bin/semver.js"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 --follow-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": "6.3.0" 28 64 } -
trip-planner-front/node_modules/@babel/plugin-transform-runtime/package.json
rceaed42 r59329aa 1 1 { 2 "name": "@babel/plugin-transform-runtime", 3 "version": "7.14.5", 4 "description": "Externalise references to helpers and builtins, automatically polyfilling your code without polluting globals", 5 "repository": { 6 "type": "git", 7 "url": "https://github.com/babel/babel.git", 8 "directory": "packages/babel-plugin-transform-runtime" 2 "_args": [ 3 [ 4 "@babel/plugin-transform-runtime@7.14.5", 5 "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front" 6 ] 7 ], 8 "_development": true, 9 "_from": "@babel/plugin-transform-runtime@7.14.5", 10 "_id": "@babel/plugin-transform-runtime@7.14.5", 11 "_inBundle": false, 12 "_integrity": "sha512-fPMBhh1AV8ZyneiCIA+wYYUH1arzlXR1UMcApjvchDhfKxhy2r2lReJv8uHEyihi4IFIGlr1Pdx7S5fkESDQsg==", 13 "_location": "/@babel/plugin-transform-runtime", 14 "_phantomChildren": {}, 15 "_requested": { 16 "type": "version", 17 "registry": true, 18 "raw": "@babel/plugin-transform-runtime@7.14.5", 19 "name": "@babel/plugin-transform-runtime", 20 "escapedName": "@babel%2fplugin-transform-runtime", 21 "scope": "@babel", 22 "rawSpec": "7.14.5", 23 "saveSpec": null, 24 "fetchSpec": "7.14.5" 9 25 }, 10 "license": "MIT", 11 "publishConfig": { 12 "access": "public" 26 "_requiredBy": [ 27 "/@angular-devkit/build-angular" 28 ], 29 "_resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.14.5.tgz", 30 "_spec": "7.14.5", 31 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front", 32 "author": { 33 "name": "The Babel Team", 34 "url": "https://babel.dev/team" 13 35 }, 14 "main": "./lib/index.js",15 "keywords": [16 "babel-plugin"17 ],18 36 "browser": { 19 37 "./lib/get-runtime-path/index.js": "./lib/get-runtime-path/browser.js", 20 38 "./src/get-runtime-path/index.ts": "./src/get-runtime-path/browser.ts" 39 }, 40 "bugs": { 41 "url": "https://github.com/babel/babel/issues" 21 42 }, 22 43 "dependencies": { … … 28 49 "semver": "^6.3.0" 29 50 }, 30 "peerDependencies": { 31 "@babel/core": "^7.0.0-0" 32 }, 51 "description": "Externalise references to helpers and builtins, automatically polyfilling your code without polluting globals", 33 52 "devDependencies": { 34 53 "@babel/core": "7.14.5", … … 43 62 "make-dir": "^2.1.0" 44 63 }, 45 "homepage": "https://babel.dev/docs/en/next/babel-plugin-transform-runtime",46 64 "engines": { 47 65 "node": ">=6.9.0" 48 66 }, 49 "author": "The Babel Team (https://babel.dev/team)" 67 "homepage": "https://babel.dev/docs/en/next/babel-plugin-transform-runtime", 68 "keywords": [ 69 "babel-plugin" 70 ], 71 "license": "MIT", 72 "main": "./lib/index.js", 73 "name": "@babel/plugin-transform-runtime", 74 "peerDependencies": { 75 "@babel/core": "^7.0.0-0" 76 }, 77 "publishConfig": { 78 "access": "public" 79 }, 80 "repository": { 81 "type": "git", 82 "url": "git+https://github.com/babel/babel.git", 83 "directory": "packages/babel-plugin-transform-runtime" 84 }, 85 "version": "7.14.5" 50 86 }
Note:
See TracChangeset
for help on using the changeset viewer.