Changeset 59329aa for trip-planner-front/node_modules/request
- Timestamp:
- 11/23/21 14:58:44 (3 years ago)
- Branches:
- master
- Children:
- e29cc2e
- Parents:
- ceaed42
- Location:
- trip-planner-front/node_modules/request
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trip-planner-front/node_modules/request/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/request/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/request/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/request/node_modules/qs/package.json
rceaed42 r59329aa 1 1 { 2 "_args": [ 3 [ 4 "qs@6.5.2", 5 "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front" 6 ] 7 ], 8 "_development": true, 9 "_from": "qs@6.5.2", 10 "_id": "qs@6.5.2", 11 "_inBundle": false, 12 "_integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==", 13 "_location": "/request/qs", 14 "_phantomChildren": {}, 15 "_requested": { 16 "type": "version", 17 "registry": true, 18 "raw": "qs@6.5.2", 2 19 "name": "qs", 3 "description": "A querystring parser that supports nesting and arrays, with a depth limit", 4 "homepage": "https://github.com/ljharb/qs", 5 "version": "6.5.2", 6 "repository": { 7 "type": "git", 8 "url": "https://github.com/ljharb/qs.git" 9 }, 10 "main": "lib/index.js", 11 "contributors": [ 12 { 13 "name": "Jordan Harband", 14 "email": "ljharb@gmail.com", 15 "url": "http://ljharb.codes" 16 } 17 ], 18 "keywords": [ 19 "querystring", 20 "qs" 21 ], 22 "engines": { 23 "node": ">=0.6" 24 }, 25 "dependencies": {}, 26 "devDependencies": { 27 "@ljharb/eslint-config": "^12.2.1", 28 "browserify": "^16.2.0", 29 "covert": "^1.1.0", 30 "editorconfig-tools": "^0.1.1", 31 "eslint": "^4.19.1", 32 "evalmd": "^0.0.17", 33 "iconv-lite": "^0.4.21", 34 "mkdirp": "^0.5.1", 35 "qs-iconv": "^1.0.4", 36 "safe-publish-latest": "^1.1.1", 37 "safer-buffer": "^2.1.2", 38 "tape": "^4.9.0" 39 }, 40 "scripts": { 41 "prepublish": "safe-publish-latest && npm run dist", 42 "pretest": "npm run --silent readme && npm run --silent lint", 43 "test": "npm run --silent coverage", 44 "tests-only": "node test", 45 "readme": "evalmd README.md", 46 "prelint": "editorconfig-tools check * lib/* test/*", 47 "lint": "eslint lib/*.js test/*.js", 48 "coverage": "covert test", 49 "dist": "mkdirp dist && browserify --standalone Qs lib/index.js > dist/qs.js" 50 }, 51 "license": "BSD-3-Clause" 20 "escapedName": "qs", 21 "rawSpec": "6.5.2", 22 "saveSpec": null, 23 "fetchSpec": "6.5.2" 24 }, 25 "_requiredBy": [ 26 "/request" 27 ], 28 "_resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", 29 "_spec": "6.5.2", 30 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front", 31 "bugs": { 32 "url": "https://github.com/ljharb/qs/issues" 33 }, 34 "contributors": [ 35 { 36 "name": "Jordan Harband", 37 "email": "ljharb@gmail.com", 38 "url": "http://ljharb.codes" 39 } 40 ], 41 "dependencies": {}, 42 "description": "A querystring parser that supports nesting and arrays, with a depth limit", 43 "devDependencies": { 44 "@ljharb/eslint-config": "^12.2.1", 45 "browserify": "^16.2.0", 46 "covert": "^1.1.0", 47 "editorconfig-tools": "^0.1.1", 48 "eslint": "^4.19.1", 49 "evalmd": "^0.0.17", 50 "iconv-lite": "^0.4.21", 51 "mkdirp": "^0.5.1", 52 "qs-iconv": "^1.0.4", 53 "safe-publish-latest": "^1.1.1", 54 "safer-buffer": "^2.1.2", 55 "tape": "^4.9.0" 56 }, 57 "engines": { 58 "node": ">=0.6" 59 }, 60 "homepage": "https://github.com/ljharb/qs", 61 "keywords": [ 62 "querystring", 63 "qs" 64 ], 65 "license": "BSD-3-Clause", 66 "main": "lib/index.js", 67 "name": "qs", 68 "repository": { 69 "type": "git", 70 "url": "git+https://github.com/ljharb/qs.git" 71 }, 72 "scripts": { 73 "coverage": "covert test", 74 "dist": "mkdirp dist && browserify --standalone Qs lib/index.js > dist/qs.js", 75 "lint": "eslint lib/*.js test/*.js", 76 "prelint": "editorconfig-tools check * lib/* test/*", 77 "prepublish": "safe-publish-latest && npm run dist", 78 "pretest": "npm run --silent readme && npm run --silent lint", 79 "readme": "evalmd README.md", 80 "test": "npm run --silent coverage", 81 "tests-only": "node test" 82 }, 83 "version": "6.5.2" 52 84 } -
trip-planner-front/node_modules/request/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": "/request/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 "/request" 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/request/package.json
rceaed42 r59329aa 1 1 { 2 "name": "request", 3 "description": "Simplified HTTP request client.", 4 "keywords": [ 5 "http", 6 "simple", 7 "util", 8 "utility" 2 "_args": [ 3 [ 4 "request@2.88.2", 5 "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front" 6 ] 9 7 ], 10 "version": "2.88.2", 11 "author": "Mikeal Rogers <mikeal.rogers@gmail.com>", 12 "repository": { 13 "type": "git", 14 "url": "https://github.com/request/request.git" 8 "_development": true, 9 "_from": "request@2.88.2", 10 "_id": "request@2.88.2", 11 "_inBundle": false, 12 "_integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", 13 "_location": "/request", 14 "_phantomChildren": {}, 15 "_requested": { 16 "type": "version", 17 "registry": true, 18 "raw": "request@2.88.2", 19 "name": "request", 20 "escapedName": "request", 21 "rawSpec": "2.88.2", 22 "saveSpec": null, 23 "fetchSpec": "2.88.2" 24 }, 25 "_requiredBy": [ 26 "/node-gyp" 27 ], 28 "_resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", 29 "_spec": "2.88.2", 30 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front", 31 "author": { 32 "name": "Mikeal Rogers", 33 "email": "mikeal.rogers@gmail.com" 15 34 }, 16 35 "bugs": { 17 36 "url": "http://github.com/request/request/issues" 18 37 }, 19 "license": "Apache-2.0",20 "engines": {21 "node": ">= 6"22 },23 "main": "index.js",24 "files": [25 "lib/",26 "index.js",27 "request.js"28 ],29 38 "dependencies": { 30 39 "aws-sign2": "~0.7.0", … … 49 58 "uuid": "^3.3.2" 50 59 }, 51 "scripts": { 52 "test": "npm run lint && npm run test-ci && npm run test-browser", 53 "test-ci": "taper tests/test-*.js", 54 "test-cov": "nyc --reporter=lcov tape tests/test-*.js", 55 "test-browser": "node tests/browser/start.js", 56 "lint": "standard" 57 }, 60 "description": "Simplified HTTP request client.", 58 61 "devDependencies": { 59 62 "bluebird": "^3.2.1", … … 78 81 "taper": "^0.5.0" 79 82 }, 83 "engines": { 84 "node": ">= 6" 85 }, 86 "files": [ 87 "lib/", 88 "index.js", 89 "request.js" 90 ], 80 91 "greenkeeper": { 81 92 "ignore": [ … … 83 94 "har-validator" 84 95 ] 85 } 96 }, 97 "homepage": "https://github.com/request/request#readme", 98 "keywords": [ 99 "http", 100 "simple", 101 "util", 102 "utility" 103 ], 104 "license": "Apache-2.0", 105 "main": "index.js", 106 "name": "request", 107 "repository": { 108 "type": "git", 109 "url": "git+https://github.com/request/request.git" 110 }, 111 "scripts": { 112 "lint": "standard", 113 "test": "npm run lint && npm run test-ci && npm run test-browser", 114 "test-browser": "node tests/browser/start.js", 115 "test-ci": "taper tests/test-*.js", 116 "test-cov": "nyc --reporter=lcov tape tests/test-*.js" 117 }, 118 "version": "2.88.2" 86 119 }
Note:
See TracChangeset
for help on using the changeset viewer.