| [9af201e] | 1 | {
|
|---|
| 2 | "name": "http-proxy-middleware",
|
|---|
| 3 | "version": "2.0.9",
|
|---|
| 4 | "description": "The one-liner node.js proxy middleware for connect, express and browser-sync",
|
|---|
| 5 | "main": "dist/index.js",
|
|---|
| 6 | "types": "dist/index.d.ts",
|
|---|
| 7 | "files": [
|
|---|
| 8 | "dist"
|
|---|
| 9 | ],
|
|---|
| 10 | "scripts": {
|
|---|
| 11 | "clean": "rm -rf dist && rm -rf coverage",
|
|---|
| 12 | "lint": "yarn prettier && yarn eslint",
|
|---|
| 13 | "lint:fix": "yarn prettier:fix && yarn eslint:fix",
|
|---|
| 14 | "eslint": "eslint '{src,test}/**/*.ts'",
|
|---|
| 15 | "eslint:fix": "yarn eslint --fix",
|
|---|
| 16 | "prettier": "prettier --list-different \"**/*.{js,ts,md,yml,json,html}\"",
|
|---|
| 17 | "prettier:fix": "prettier --write \"**/*.{js,ts,md,yml,json,html}\"",
|
|---|
| 18 | "prebuild": "yarn clean",
|
|---|
| 19 | "build": "tsc",
|
|---|
| 20 | "pretest": "yarn build",
|
|---|
| 21 | "test": "jest",
|
|---|
| 22 | "precoverage": "yarn build",
|
|---|
| 23 | "coverage": "jest --coverage --coverageReporters=lcov",
|
|---|
| 24 | "prepare": "husky install",
|
|---|
| 25 | "prepack": "yarn build && rm dist/tsconfig.tsbuildinfo",
|
|---|
| 26 | "spellcheck": "npx --yes cspell --show-context --show-suggestions '**/*.*'"
|
|---|
| 27 | },
|
|---|
| 28 | "repository": {
|
|---|
| 29 | "type": "git",
|
|---|
| 30 | "url": "https://github.com/chimurai/http-proxy-middleware.git"
|
|---|
| 31 | },
|
|---|
| 32 | "keywords": [
|
|---|
| 33 | "reverse",
|
|---|
| 34 | "proxy",
|
|---|
| 35 | "middleware",
|
|---|
| 36 | "http",
|
|---|
| 37 | "https",
|
|---|
| 38 | "connect",
|
|---|
| 39 | "express",
|
|---|
| 40 | "fastify",
|
|---|
| 41 | "polka",
|
|---|
| 42 | "browser-sync",
|
|---|
| 43 | "gulp",
|
|---|
| 44 | "grunt-contrib-connect",
|
|---|
| 45 | "websocket",
|
|---|
| 46 | "ws",
|
|---|
| 47 | "cors"
|
|---|
| 48 | ],
|
|---|
| 49 | "author": "Steven Chim",
|
|---|
| 50 | "license": "MIT",
|
|---|
| 51 | "bugs": {
|
|---|
| 52 | "url": "https://github.com/chimurai/http-proxy-middleware/issues"
|
|---|
| 53 | },
|
|---|
| 54 | "homepage": "https://github.com/chimurai/http-proxy-middleware#readme",
|
|---|
| 55 | "devDependencies": {
|
|---|
| 56 | "@commitlint/cli": "16.2.1",
|
|---|
| 57 | "@commitlint/config-conventional": "16.2.1",
|
|---|
| 58 | "@types/express": "4.17.13",
|
|---|
| 59 | "@types/is-glob": "4.0.2",
|
|---|
| 60 | "@types/jest": "27.4.0",
|
|---|
| 61 | "@types/micromatch": "4.0.2",
|
|---|
| 62 | "@types/node": "17.0.18",
|
|---|
| 63 | "@types/supertest": "2.0.11",
|
|---|
| 64 | "@types/ws": "8.2.2",
|
|---|
| 65 | "@typescript-eslint/eslint-plugin": "5.12.0",
|
|---|
| 66 | "@typescript-eslint/parser": "5.12.0",
|
|---|
| 67 | "body-parser": "1.19.2",
|
|---|
| 68 | "browser-sync": "2.27.7",
|
|---|
| 69 | "connect": "3.7.0",
|
|---|
| 70 | "eslint": "8.9.0",
|
|---|
| 71 | "eslint-config-prettier": "8.3.0",
|
|---|
| 72 | "eslint-plugin-prettier": "4.0.0",
|
|---|
| 73 | "express": "4.17.3",
|
|---|
| 74 | "get-port": "5.1.1",
|
|---|
| 75 | "husky": "7.0.4",
|
|---|
| 76 | "jest": "27.5.1",
|
|---|
| 77 | "lint-staged": "12.3.4",
|
|---|
| 78 | "mockttp": "2.6.0",
|
|---|
| 79 | "open": "8.4.0",
|
|---|
| 80 | "prettier": "2.5.1",
|
|---|
| 81 | "supertest": "6.2.2",
|
|---|
| 82 | "ts-jest": "27.1.3",
|
|---|
| 83 | "typescript": "4.5.5",
|
|---|
| 84 | "ws": "8.5.0"
|
|---|
| 85 | },
|
|---|
| 86 | "dependencies": {
|
|---|
| 87 | "@types/http-proxy": "^1.17.8",
|
|---|
| 88 | "http-proxy": "^1.18.1",
|
|---|
| 89 | "is-glob": "^4.0.1",
|
|---|
| 90 | "is-plain-obj": "^3.0.0",
|
|---|
| 91 | "micromatch": "^4.0.2"
|
|---|
| 92 | },
|
|---|
| 93 | "peerDependencies": {
|
|---|
| 94 | "@types/express": "^4.17.13"
|
|---|
| 95 | },
|
|---|
| 96 | "peerDependenciesMeta": {
|
|---|
| 97 | "@types/express": {
|
|---|
| 98 | "optional": true
|
|---|
| 99 | }
|
|---|
| 100 | },
|
|---|
| 101 | "engines": {
|
|---|
| 102 | "node": ">=12.0.0"
|
|---|
| 103 | },
|
|---|
| 104 | "commitlint": {
|
|---|
| 105 | "extends": [
|
|---|
| 106 | "@commitlint/config-conventional"
|
|---|
| 107 | ]
|
|---|
| 108 | }
|
|---|
| 109 | }
|
|---|