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

Legend:

Unmodified
Added
Removed
  • trip-planner-front/node_modules/sockjs/node_modules/.bin/uuid

    rceaed42 r59329aa  
    77
    88if [ -x "$basedir/node" ]; then
    9   exec "$basedir/node"  "$basedir/../uuid/bin/uuid" "$@"
     9  "$basedir/node"  "$basedir/../uuid/bin/uuid" "$@"
     10  ret=$?
    1011else
    11   exec node  "$basedir/../uuid/bin/uuid" "$@"
     12  node  "$basedir/../uuid/bin/uuid" "$@"
     13  ret=$?
    1214fi
     15exit $ret
  • trip-planner-front/node_modules/sockjs/node_modules/.bin/uuid.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%\..\uuid\bin\uuid" %*
     12"%_prog%"  "%dp0%\..\uuid\bin\uuid" %*
     13ENDLOCAL
     14EXIT /b %errorlevel%
     15:find_dp0
     16SET dp0=%~dp0
     17EXIT /b
  • trip-planner-front/node_modules/sockjs/node_modules/.bin/uuid.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/../uuid/bin/uuid" $args
    15   } else {
    16     & "$basedir/node$exe"  "$basedir/../uuid/bin/uuid" $args
    17   }
     12  & "$basedir/node$exe"  "$basedir/../uuid/bin/uuid" $args
    1813  $ret=$LASTEXITCODE
    1914} else {
    20   # Support pipeline input
    21   if ($MyInvocation.ExpectingInput) {
    22     $input | & "node$exe"  "$basedir/../uuid/bin/uuid" $args
    23   } else {
    24     & "node$exe"  "$basedir/../uuid/bin/uuid" $args
    25   }
     15  & "node$exe"  "$basedir/../uuid/bin/uuid" $args
    2616  $ret=$LASTEXITCODE
    2717}
  • trip-planner-front/node_modules/sockjs/node_modules/uuid/package.json

    rceaed42 r59329aa  
    11{
    2   "name": "uuid",
    3   "version": "3.4.0",
    4   "description": "RFC4122 (v1, v4, and v5) UUIDs",
     2  "_args": [
     3    [
     4      "uuid@3.4.0",
     5      "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front"
     6    ]
     7  ],
     8  "_development": true,
     9  "_from": "uuid@3.4.0",
     10  "_id": "uuid@3.4.0",
     11  "_inBundle": false,
     12  "_integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==",
     13  "_location": "/sockjs/uuid",
     14  "_phantomChildren": {},
     15  "_requested": {
     16    "type": "version",
     17    "registry": true,
     18    "raw": "uuid@3.4.0",
     19    "name": "uuid",
     20    "escapedName": "uuid",
     21    "rawSpec": "3.4.0",
     22    "saveSpec": null,
     23    "fetchSpec": "3.4.0"
     24  },
     25  "_requiredBy": [
     26    "/sockjs"
     27  ],
     28  "_resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz",
     29  "_spec": "3.4.0",
     30  "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front",
     31  "bin": {
     32    "uuid": "bin/uuid"
     33  },
     34  "browser": {
     35    "./lib/rng.js": "./lib/rng-browser.js",
     36    "./lib/sha1.js": "./lib/sha1-browser.js",
     37    "./lib/md5.js": "./lib/md5-browser.js"
     38  },
     39  "bugs": {
     40    "url": "https://github.com/uuidjs/uuid/issues"
     41  },
    542  "commitlint": {
    643    "extends": [
     
    845    ]
    946  },
    10   "keywords": [
    11     "uuid",
    12     "guid",
    13     "rfc4122"
     47  "contributors": [
     48    {
     49      "name": "Robert Kieffer",
     50      "email": "robert@broofa.com"
     51    },
     52    {
     53      "name": "Christoph Tavan",
     54      "email": "dev@tavan.de"
     55    },
     56    {
     57      "name": "AJ ONeal",
     58      "email": "coolaj86@gmail.com"
     59    },
     60    {
     61      "name": "Vincent Voyer",
     62      "email": "vincent@zeroload.net"
     63    },
     64    {
     65      "name": "Roman Shtylman",
     66      "email": "shtylman@gmail.com"
     67    }
    1468  ],
    15   "license": "MIT",
    16   "bin": {
    17     "uuid": "./bin/uuid"
    18   },
     69  "description": "RFC4122 (v1, v4, and v5) UUIDs",
    1970  "devDependencies": {
    2071    "@commitlint/cli": "~8.2.0",
     
    2677    "standard-version": "7.0.0"
    2778  },
    28   "scripts": {
    29     "lint": "eslint .",
    30     "test": "npm run lint && mocha test/test.js",
    31     "md": "runmd --watch --output=README.md README_js.md",
    32     "release": "standard-version",
    33     "prepare": "runmd --output=README.md README_js.md"
    34   },
    35   "browser": {
    36     "./lib/rng.js": "./lib/rng-browser.js",
    37     "./lib/sha1.js": "./lib/sha1-browser.js",
    38     "./lib/md5.js": "./lib/md5-browser.js"
    39   },
    40   "repository": {
    41     "type": "git",
    42     "url": "https://github.com/uuidjs/uuid.git"
    43   },
     79  "homepage": "https://github.com/uuidjs/uuid#readme",
    4480  "husky": {
    4581    "hooks": {
    4682      "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
    4783    }
    48   }
     84  },
     85  "keywords": [
     86    "uuid",
     87    "guid",
     88    "rfc4122"
     89  ],
     90  "license": "MIT",
     91  "name": "uuid",
     92  "repository": {
     93    "type": "git",
     94    "url": "git+https://github.com/uuidjs/uuid.git"
     95  },
     96  "scripts": {
     97    "lint": "eslint .",
     98    "md": "runmd --watch --output=README.md README_js.md",
     99    "prepare": "runmd --output=README.md README_js.md",
     100    "release": "standard-version",
     101    "test": "npm run lint && mocha test/test.js"
     102  },
     103  "version": "3.4.0"
    49104}
  • trip-planner-front/node_modules/sockjs/package.json

    rceaed42 r59329aa  
    11{
    2   "name": "sockjs",
    3   "description": "SockJS-node is a server counterpart of SockJS-client a JavaScript library that provides a WebSocket-like object in the browser. SockJS gives you a coherent, cross-browser, Javascript API which creates a low latency, full duplex, cross-domain communication channel between the browser and the web server.",
    4   "version": "0.3.21",
    5   "author": "Marek Majkowski",
     2  "_args": [
     3    [
     4      "sockjs@0.3.21",
     5      "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front"
     6    ]
     7  ],
     8  "_development": true,
     9  "_from": "sockjs@0.3.21",
     10  "_id": "sockjs@0.3.21",
     11  "_inBundle": false,
     12  "_integrity": "sha512-DhbPFGpxjc6Z3I+uX07Id5ZO2XwYsWOrYjaSeieES78cq+JaJvVe5q/m1uvjIQhXinhIeCFRH6JgXe+mvVMyXw==",
     13  "_location": "/sockjs",
     14  "_phantomChildren": {},
     15  "_requested": {
     16    "type": "version",
     17    "registry": true,
     18    "raw": "sockjs@0.3.21",
     19    "name": "sockjs",
     20    "escapedName": "sockjs",
     21    "rawSpec": "0.3.21",
     22    "saveSpec": null,
     23    "fetchSpec": "0.3.21"
     24  },
     25  "_requiredBy": [
     26    "/webpack-dev-server"
     27  ],
     28  "_resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.21.tgz",
     29  "_spec": "0.3.21",
     30  "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front",
     31  "author": {
     32    "name": "Marek Majkowski"
     33  },
    634  "bugs": {
    735    "url": "https://github.com/sockjs/sockjs-node/issues"
     
    2250    "websocket-driver": "^0.7.4"
    2351  },
     52  "description": "SockJS-node is a server counterpart of SockJS-client a JavaScript library that provides a WebSocket-like object in the browser. SockJS gives you a coherent, cross-browser, Javascript API which creates a low latency, full duplex, cross-domain communication channel between the browser and the web server.",
    2453  "devDependencies": {
    2554    "coffeescript": "^1.12.7"
     
    3261  "license": "MIT",
    3362  "main": "index",
     63  "name": "sockjs",
    3464  "repository": {
    3565    "type": "git",
    36     "url": "https://github.com/sockjs/sockjs-node.git"
     66    "url": "git+https://github.com/sockjs/sockjs-node.git"
    3767  },
    3868  "scripts": {
    39     "version": "make build && git add Changelog",
     69    "postpublish": "git push origin --all && git push origin --tags",
    4070    "postversion": "npm publish",
    41     "postpublish": "git push origin --all && git push origin --tags"
    42   }
     71    "version": "make build && git add Changelog"
     72  },
     73  "version": "0.3.21"
    4374}
Note: See TracChangeset for help on using the changeset viewer.