[6a3a178] | 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"
|
---|
| 9 | ],
|
---|
| 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"
|
---|
| 17 | },
|
---|
| 18 | "repository": {
|
---|
| 19 | "type": "git",
|
---|
| 20 | "url": "https://github.com/chimurai/http-proxy-middleware.git"
|
---|
| 21 | },
|
---|
| 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"
|
---|
| 36 | ],
|
---|
| 37 | "author": "Steven Chim",
|
---|
| 38 | "license": "MIT",
|
---|
| 39 | "bugs": {
|
---|
| 40 | "url": "https://github.com/chimurai/http-proxy-middleware/issues"
|
---|
| 41 | },
|
---|
| 42 | "homepage": "https://github.com/chimurai/http-proxy-middleware",
|
---|
| 43 | "devDependencies": {
|
---|
| 44 | "@commitlint/cli": "^7.2.1",
|
---|
| 45 | "@commitlint/config-conventional": "^7.1.2",
|
---|
| 46 | "browser-sync": "^2.26.3",
|
---|
| 47 | "chai": "^4.2.0",
|
---|
| 48 | "connect": "^3.6.6",
|
---|
| 49 | "coveralls": "^3.0.2",
|
---|
| 50 | "express": "^4.16.4",
|
---|
| 51 | "husky": "^1.2.0",
|
---|
| 52 | "istanbul": "^0.4.5",
|
---|
| 53 | "istanbul-coveralls": "^1.0.3",
|
---|
| 54 | "mocha": "^5.2.0",
|
---|
| 55 | "mocha-lcov-reporter": "1.3.0",
|
---|
| 56 | "opn": "^5.4.0",
|
---|
| 57 | "precise-commits": "^1.0.2",
|
---|
| 58 | "prettier": "^1.15.2",
|
---|
| 59 | "ws": "^6.1.2"
|
---|
| 60 | },
|
---|
| 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 | "engines": {
|
---|
| 68 | "node": ">=4.0.0"
|
---|
| 69 | },
|
---|
| 70 | "husky": {
|
---|
| 71 | "hooks": {
|
---|
| 72 | "commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
|
---|
| 73 | "pre-commit": "precise-commits"
|
---|
| 74 | }
|
---|
| 75 | },
|
---|
| 76 | "commitlint": {
|
---|
| 77 | "extends": [
|
---|
| 78 | "@commitlint/config-conventional"
|
---|
| 79 | ]
|
---|
| 80 | }
|
---|
| 81 | }
|
---|