- Timestamp:
- 11/23/21 14:58:44 (3 years ago)
- Branches:
- master
- Children:
- e29cc2e
- Parents:
- ceaed42
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trip-planner-front/node_modules/http-proxy-middleware/package.json
rceaed42 r59329aa 1 1 { 2 "name": "http-proxy-middleware", 3 "version": "0.19.1", 4 "description": "The one-liner node.js proxy middleware for connect, express and browser-sync", 5 "main": "index.js", 6 "files": [ 7 "index.js", 8 "lib" 2 "_args": [ 3 [ 4 "http-proxy-middleware@0.19.1", 5 "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front" 6 ] 9 7 ], 10 "scripts": { 11 "clean": "rm -rf coverage", 12 "lint": "prettier \"**/*.{js,md}\" --list-different", 13 "lint:fix": "prettier \"**/*.{js,md}\" --write", 14 "test": "npm run lint && mocha --recursive --colors --reporter spec", 15 "cover": "npm run clean && istanbul cover ./node_modules/mocha/bin/_mocha -- --recursive", 16 "coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- --recursive --reporter spec && istanbul-coveralls && npm run clean" 8 "_development": true, 9 "_from": "http-proxy-middleware@0.19.1", 10 "_id": "http-proxy-middleware@0.19.1", 11 "_inBundle": false, 12 "_integrity": "sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q==", 13 "_location": "/http-proxy-middleware", 14 "_phantomChildren": { 15 "arr-diff": "4.0.0", 16 "arr-flatten": "1.1.0", 17 "array-unique": "0.3.2", 18 "define-property": "2.0.2", 19 "extend-shallow": "3.0.2", 20 "extglob": "2.0.4", 21 "fragment-cache": "0.2.1", 22 "is-buffer": "1.1.6", 23 "isobject": "3.0.1", 24 "kind-of": "6.0.3", 25 "nanomatch": "1.2.13", 26 "object.pick": "1.3.0", 27 "regex-not": "1.0.2", 28 "repeat-element": "1.1.4", 29 "repeat-string": "1.6.1", 30 "snapdragon": "0.8.2", 31 "snapdragon-node": "2.1.1", 32 "split-string": "3.1.0", 33 "to-regex": "3.0.2" 17 34 }, 18 "repository": { 19 "type": "git", 20 "url": "https://github.com/chimurai/http-proxy-middleware.git" 35 "_requested": { 36 "type": "version", 37 "registry": true, 38 "raw": "http-proxy-middleware@0.19.1", 39 "name": "http-proxy-middleware", 40 "escapedName": "http-proxy-middleware", 41 "rawSpec": "0.19.1", 42 "saveSpec": null, 43 "fetchSpec": "0.19.1" 21 44 }, 22 "keywords": [ 23 "reverse", 24 "proxy", 25 "middleware", 26 "http", 27 "https", 28 "connect", 29 "express", 30 "browser-sync", 31 "gulp", 32 "grunt-contrib-connect", 33 "websocket", 34 "ws", 35 "cors" 45 "_requiredBy": [ 46 "/webpack-dev-server" 36 47 ], 37 "author": "Steven Chim", 38 "license": "MIT", 48 "_resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-0.19.1.tgz", 49 "_spec": "0.19.1", 50 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front", 51 "author": { 52 "name": "Steven Chim" 53 }, 39 54 "bugs": { 40 55 "url": "https://github.com/chimurai/http-proxy-middleware/issues" 41 56 }, 42 "homepage": "https://github.com/chimurai/http-proxy-middleware", 57 "commitlint": { 58 "extends": [ 59 "@commitlint/config-conventional" 60 ] 61 }, 62 "dependencies": { 63 "http-proxy": "^1.17.0", 64 "is-glob": "^4.0.0", 65 "lodash": "^4.17.11", 66 "micromatch": "^3.1.10" 67 }, 68 "description": "The one-liner node.js proxy middleware for connect, express and browser-sync", 43 69 "devDependencies": { 44 70 "@commitlint/cli": "^7.2.1", … … 59 85 "ws": "^6.1.2" 60 86 }, 61 "dependencies": {62 "http-proxy": "^1.17.0",63 "is-glob": "^4.0.0",64 "lodash": "^4.17.11",65 "micromatch": "^3.1.10"66 },67 87 "engines": { 68 88 "node": ">=4.0.0" 69 89 }, 90 "files": [ 91 "index.js", 92 "lib" 93 ], 94 "homepage": "https://github.com/chimurai/http-proxy-middleware", 70 95 "husky": { 71 96 "hooks": { … … 74 99 } 75 100 }, 76 "commitlint": { 77 "extends": [ 78 "@commitlint/config-conventional" 79 ] 80 } 101 "keywords": [ 102 "reverse", 103 "proxy", 104 "middleware", 105 "http", 106 "https", 107 "connect", 108 "express", 109 "browser-sync", 110 "gulp", 111 "grunt-contrib-connect", 112 "websocket", 113 "ws", 114 "cors" 115 ], 116 "license": "MIT", 117 "main": "index.js", 118 "name": "http-proxy-middleware", 119 "repository": { 120 "type": "git", 121 "url": "git+https://github.com/chimurai/http-proxy-middleware.git" 122 }, 123 "scripts": { 124 "clean": "rm -rf coverage", 125 "cover": "npm run clean && istanbul cover ./node_modules/mocha/bin/_mocha -- --recursive", 126 "coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- --recursive --reporter spec && istanbul-coveralls && npm run clean", 127 "lint": "prettier \"**/*.{js,md}\" --list-different", 128 "lint:fix": "prettier \"**/*.{js,md}\" --write", 129 "test": "npm run lint && mocha --recursive --colors --reporter spec" 130 }, 131 "version": "0.19.1" 81 132 }
Note:
See TracChangeset
for help on using the changeset viewer.