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/cross-spawn
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trip-planner-front/node_modules/cross-spawn/node_modules/.bin/semver

    rceaed42 r59329aa  
    77
    88if [ -x "$basedir/node" ]; then
    9   exec "$basedir/node"  "$basedir/../semver/bin/semver" "$@"
     9  "$basedir/node"  "$basedir/../semver/bin/semver" "$@"
     10  ret=$?
    1011else
    11   exec node  "$basedir/../semver/bin/semver" "$@"
     12  node  "$basedir/../semver/bin/semver" "$@"
     13  ret=$?
    1214fi
     15exit $ret
  • trip-planner-front/node_modules/cross-spawn/node_modules/.bin/semver.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%\..\semver\bin\semver" %*
     12"%_prog%"  "%dp0%\..\semver\bin\semver" %*
     13ENDLOCAL
     14EXIT /b %errorlevel%
     15:find_dp0
     16SET dp0=%~dp0
     17EXIT /b
  • trip-planner-front/node_modules/cross-spawn/node_modules/.bin/semver.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/../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
    1813  $ret=$LASTEXITCODE
    1914} 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
    2616  $ret=$LASTEXITCODE
    2717}
  • trip-planner-front/node_modules/cross-spawn/node_modules/semver/package.json

    rceaed42 r59329aa  
    11{
    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  },
    437  "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   },
    1238  "devDependencies": {
    1339    "tap": "^13.0.0-rc.18"
    14   },
    15   "license": "ISC",
    16   "repository": "https://github.com/npm/node-semver",
    17   "bin": {
    18     "semver": "./bin/semver"
    1940  },
    2041  "files": [
     
    2344    "semver.js"
    2445  ],
     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  },
    2560  "tap": {
    2661    "check-coverage": true
    27   }
     62  },
     63  "version": "5.7.1"
    2864}
  • trip-planner-front/node_modules/cross-spawn/package.json

    rceaed42 r59329aa  
    11{
    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    ]
    147  ],
    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"
    2024  },
    21   "license": "MIT",
    22   "main": "index.js",
    23   "files": [
    24     "lib"
     25  "_requiredBy": [
     26    "/execa"
    2527  ],
    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"
    3334  },
    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"
    4437  },
    4538  "commitlint": {
     
    5548    "which": "^1.2.9"
    5649  },
     50  "description": "Cross platform child_process#spawn and child_process#spawnSync",
    5751  "devDependencies": {
    5852    "@commitlint/cli": "^6.0.0",
     
    7367  "engines": {
    7468    "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"
    76111}
Note: See TracChangeset for help on using the changeset viewer.