Changeset 59329aa for trip-planner-front/node_modules/connect
- Timestamp:
- 11/23/21 14:58:44 (3 years ago)
- Branches:
- master
- Children:
- e29cc2e
- Parents:
- ceaed42
- Location:
- trip-planner-front/node_modules/connect
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trip-planner-front/node_modules/connect/node_modules/debug/package.json
rceaed42 r59329aa 1 1 { 2 "name": "debug", 3 "version": "2.6.9", 4 "repository": { 5 "type": "git", 6 "url": "git://github.com/visionmedia/debug.git" 2 "_args": [ 3 [ 4 "debug@2.6.9", 5 "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front" 6 ] 7 ], 8 "_development": true, 9 "_from": "debug@2.6.9", 10 "_id": "debug@2.6.9", 11 "_inBundle": false, 12 "_integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", 13 "_location": "/connect/debug", 14 "_phantomChildren": {}, 15 "_requested": { 16 "type": "version", 17 "registry": true, 18 "raw": "debug@2.6.9", 19 "name": "debug", 20 "escapedName": "debug", 21 "rawSpec": "2.6.9", 22 "saveSpec": null, 23 "fetchSpec": "2.6.9" 7 24 }, 8 "description": "small debugging utility", 9 "keywords": [ 10 "debug", 11 "log", 12 "debugger" 25 "_requiredBy": [ 26 "/connect" 13 27 ], 14 "author": "TJ Holowaychuk <tj@vision-media.ca>", 28 "_resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", 29 "_spec": "2.6.9", 30 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front", 31 "author": { 32 "name": "TJ Holowaychuk", 33 "email": "tj@vision-media.ca" 34 }, 35 "browser": "./src/browser.js", 36 "bugs": { 37 "url": "https://github.com/visionmedia/debug/issues" 38 }, 39 "component": { 40 "scripts": { 41 "debug/index.js": "browser.js", 42 "debug/debug.js": "debug.js" 43 } 44 }, 15 45 "contributors": [ 16 "Nathan Rajlich <nathan@tootallnate.net> (http://n8.io)", 17 "Andrew Rhyne <rhyneandrew@gmail.com>" 46 { 47 "name": "Nathan Rajlich", 48 "email": "nathan@tootallnate.net", 49 "url": "http://n8.io" 50 }, 51 { 52 "name": "Andrew Rhyne", 53 "email": "rhyneandrew@gmail.com" 54 } 18 55 ], 19 "license": "MIT",20 56 "dependencies": { 21 57 "ms": "2.0.0" 22 58 }, 59 "description": "small debugging utility", 23 60 "devDependencies": { 24 61 "browserify": "9.0.3", … … 39 76 "sinon-chai": "^2.8.0" 40 77 }, 78 "homepage": "https://github.com/visionmedia/debug#readme", 79 "keywords": [ 80 "debug", 81 "log", 82 "debugger" 83 ], 84 "license": "MIT", 41 85 "main": "./src/index.js", 42 "browser": "./src/browser.js", 43 "component": { 44 "scripts": { 45 "debug/index.js": "browser.js", 46 "debug/debug.js": "debug.js" 47 } 48 } 86 "name": "debug", 87 "repository": { 88 "type": "git", 89 "url": "git://github.com/visionmedia/debug.git" 90 }, 91 "version": "2.6.9" 49 92 } -
trip-planner-front/node_modules/connect/node_modules/ms/package.json
rceaed42 r59329aa 1 1 { 2 "name": "ms", 3 "version": "2.0.0", 2 "_args": [ 3 [ 4 "ms@2.0.0", 5 "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front" 6 ] 7 ], 8 "_development": true, 9 "_from": "ms@2.0.0", 10 "_id": "ms@2.0.0", 11 "_inBundle": false, 12 "_integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", 13 "_location": "/connect/ms", 14 "_phantomChildren": {}, 15 "_requested": { 16 "type": "version", 17 "registry": true, 18 "raw": "ms@2.0.0", 19 "name": "ms", 20 "escapedName": "ms", 21 "rawSpec": "2.0.0", 22 "saveSpec": null, 23 "fetchSpec": "2.0.0" 24 }, 25 "_requiredBy": [ 26 "/connect/debug" 27 ], 28 "_resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", 29 "_spec": "2.0.0", 30 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front", 31 "bugs": { 32 "url": "https://github.com/zeit/ms/issues" 33 }, 4 34 "description": "Tiny milisecond conversion utility", 5 "repository": "zeit/ms", 6 "main": "./index", 7 "files": [ 8 "index.js" 9 ], 10 "scripts": { 11 "precommit": "lint-staged", 12 "lint": "eslint lib/* bin/*", 13 "test": "mocha tests.js" 35 "devDependencies": { 36 "eslint": "3.19.0", 37 "expect.js": "0.3.1", 38 "husky": "0.13.3", 39 "lint-staged": "3.4.1", 40 "mocha": "3.4.1" 14 41 }, 15 42 "eslintConfig": { … … 20 47 } 21 48 }, 49 "files": [ 50 "index.js" 51 ], 52 "homepage": "https://github.com/zeit/ms#readme", 53 "license": "MIT", 22 54 "lint-staged": { 23 55 "*.js": [ … … 27 59 ] 28 60 }, 29 "license": "MIT", 30 "devDependencies": { 31 "eslint": "3.19.0", 32 "expect.js": "0.3.1", 33 "husky": "0.13.3", 34 "lint-staged": "3.4.1", 35 "mocha": "3.4.1" 36 } 61 "main": "./index", 62 "name": "ms", 63 "repository": { 64 "type": "git", 65 "url": "git+https://github.com/zeit/ms.git" 66 }, 67 "scripts": { 68 "lint": "eslint lib/* bin/*", 69 "precommit": "lint-staged", 70 "test": "mocha tests.js" 71 }, 72 "version": "2.0.0" 37 73 } -
trip-planner-front/node_modules/connect/package.json
rceaed42 r59329aa 1 1 { 2 "name": "connect", 2 "_args": [ 3 [ 4 "connect@3.7.0", 5 "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front" 6 ] 7 ], 8 "_development": true, 9 "_from": "connect@3.7.0", 10 "_id": "connect@3.7.0", 11 "_inBundle": false, 12 "_integrity": "sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==", 13 "_location": "/connect", 14 "_phantomChildren": {}, 15 "_requested": { 16 "type": "version", 17 "registry": true, 18 "raw": "connect@3.7.0", 19 "name": "connect", 20 "escapedName": "connect", 21 "rawSpec": "3.7.0", 22 "saveSpec": null, 23 "fetchSpec": "3.7.0" 24 }, 25 "_requiredBy": [ 26 "/karma" 27 ], 28 "_resolved": "https://registry.npmjs.org/connect/-/connect-3.7.0.tgz", 29 "_spec": "3.7.0", 30 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front", 31 "author": { 32 "name": "TJ Holowaychuk", 33 "email": "tj@vision-media.ca", 34 "url": "http://tjholowaychuk.com" 35 }, 36 "bugs": { 37 "url": "https://github.com/senchalabs/connect/issues" 38 }, 39 "contributors": [ 40 { 41 "name": "Douglas Christopher Wilson", 42 "email": "doug@somethingdoug.com" 43 }, 44 { 45 "name": "Jonathan Ong", 46 "email": "me@jongleberry.com" 47 }, 48 { 49 "name": "Tim Caswell", 50 "email": "tim@creationix.com" 51 } 52 ], 53 "dependencies": { 54 "debug": "2.6.9", 55 "finalhandler": "1.1.2", 56 "parseurl": "~1.3.3", 57 "utils-merge": "1.0.1" 58 }, 3 59 "description": "High performance middleware framework", 4 "version": "3.7.0", 5 "author": "TJ Holowaychuk <tj@vision-media.ca> (http://tjholowaychuk.com)", 6 "contributors": [ 7 "Douglas Christopher Wilson <doug@somethingdoug.com>", 8 "Jonathan Ong <me@jongleberry.com>", 9 "Tim Caswell <tim@creationix.com>" 60 "devDependencies": { 61 "eslint": "4.19.1", 62 "mocha": "6.1.4", 63 "nyc": "14.1.1", 64 "supertest": "4.0.2" 65 }, 66 "engines": { 67 "node": ">= 0.10.0" 68 }, 69 "files": [ 70 "LICENSE", 71 "HISTORY.md", 72 "README.md", 73 "SECURITY.md", 74 "index.js" 10 75 ], 76 "homepage": "https://github.com/senchalabs/connect#readme", 11 77 "keywords": [ 12 78 "framework", … … 16 82 "rack" 17 83 ], 18 "repository": "senchalabs/connect",19 "dependencies": {20 "debug": "2.6.9",21 "finalhandler": "1.1.2",22 "parseurl": "~1.3.3",23 "utils-merge": "1.0.1"24 },25 "devDependencies": {26 "eslint": "4.19.1",27 "mocha": "6.1.4",28 "nyc": "14.1.1",29 "supertest": "4.0.2"30 },31 84 "license": "MIT", 32 "files": [ 33 "LICENSE", 34 "HISTORY.md", 35 "README.md", 36 "SECURITY.md", 37 "index.js" 38 ], 39 "engines": { 40 "node": ">= 0.10.0" 85 "name": "connect", 86 "repository": { 87 "type": "git", 88 "url": "git+https://github.com/senchalabs/connect.git" 41 89 }, 42 90 "scripts": { … … 45 93 "test-cov": "nyc --reporter=html --reporter=text npm test", 46 94 "test-travis": "nyc --reporter=text npm test" 47 } 95 }, 96 "version": "3.7.0" 48 97 }
Note:
See TracChangeset
for help on using the changeset viewer.