Changeset 59329aa for trip-planner-front/node_modules/sockjs
- Timestamp:
- 11/23/21 14:58:44 (3 years ago)
- Branches:
- master
- Children:
- e29cc2e
- Parents:
- ceaed42
- 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 7 7 8 8 if [ -x "$basedir/node" ]; then 9 exec "$basedir/node" "$basedir/../uuid/bin/uuid" "$@" 9 "$basedir/node" "$basedir/../uuid/bin/uuid" "$@" 10 ret=$? 10 11 else 11 exec node "$basedir/../uuid/bin/uuid" "$@" 12 node "$basedir/../uuid/bin/uuid" "$@" 13 ret=$? 12 14 fi 15 exit $ret -
trip-planner-front/node_modules/sockjs/node_modules/.bin/uuid.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%\..\uuid\bin\uuid" %* 12 "%_prog%" "%dp0%\..\uuid\bin\uuid" %* 13 ENDLOCAL 14 EXIT /b %errorlevel% 15 :find_dp0 16 SET dp0=%~dp0 17 EXIT /b -
trip-planner-front/node_modules/sockjs/node_modules/.bin/uuid.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/../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 18 13 $ret=$LASTEXITCODE 19 14 } 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 26 16 $ret=$LASTEXITCODE 27 17 } -
trip-planner-front/node_modules/sockjs/node_modules/uuid/package.json
rceaed42 r59329aa 1 1 { 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 }, 5 42 "commitlint": { 6 43 "extends": [ … … 8 45 ] 9 46 }, 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 } 14 68 ], 15 "license": "MIT", 16 "bin": { 17 "uuid": "./bin/uuid" 18 }, 69 "description": "RFC4122 (v1, v4, and v5) UUIDs", 19 70 "devDependencies": { 20 71 "@commitlint/cli": "~8.2.0", … … 26 77 "standard-version": "7.0.0" 27 78 }, 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", 44 80 "husky": { 45 81 "hooks": { 46 82 "commit-msg": "commitlint -E HUSKY_GIT_PARAMS" 47 83 } 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" 49 104 } -
trip-planner-front/node_modules/sockjs/package.json
rceaed42 r59329aa 1 1 { 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 }, 6 34 "bugs": { 7 35 "url": "https://github.com/sockjs/sockjs-node/issues" … … 22 50 "websocket-driver": "^0.7.4" 23 51 }, 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.", 24 53 "devDependencies": { 25 54 "coffeescript": "^1.12.7" … … 32 61 "license": "MIT", 33 62 "main": "index", 63 "name": "sockjs", 34 64 "repository": { 35 65 "type": "git", 36 "url": " https://github.com/sockjs/sockjs-node.git"66 "url": "git+https://github.com/sockjs/sockjs-node.git" 37 67 }, 38 68 "scripts": { 39 " version": "make build && git add Changelog",69 "postpublish": "git push origin --all && git push origin --tags", 40 70 "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" 43 74 }
Note:
See TracChangeset
for help on using the changeset viewer.