102 lines
2.7 KiB
JSON
102 lines
2.7 KiB
JSON
{
|
|
"name": "http-proxy-middleware",
|
|
"version": "3.0.0",
|
|
"description": "The one-liner node.js proxy middleware for connect, express, next.js and more",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"clean": "rm -rf dist coverage tsconfig.tsbuildinfo .eslintcache",
|
|
"lint": "yarn prettier && yarn eslint",
|
|
"lint:fix": "yarn prettier:fix && yarn eslint:fix",
|
|
"eslint": "eslint '{src,test}/**/*.ts' --cache",
|
|
"eslint:fix": "yarn eslint --fix",
|
|
"prettier": "prettier --list-different \"**/*.{js,ts,md,yml,json,html}\"",
|
|
"prettier:fix": "prettier --write \"**/*.{js,ts,md,yml,json,html}\"",
|
|
"build": "tsc --build",
|
|
"test": "jest",
|
|
"coverage": "jest --coverage",
|
|
"prepare": "husky",
|
|
"prepack": "yarn clean && yarn test && yarn build",
|
|
"spellcheck": "npx --yes cspell --show-context --show-suggestions '**/*.*'"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/chimurai/http-proxy-middleware.git"
|
|
},
|
|
"keywords": [
|
|
"reverse",
|
|
"proxy",
|
|
"middleware",
|
|
"http",
|
|
"https",
|
|
"connect",
|
|
"express",
|
|
"fastify",
|
|
"polka",
|
|
"next.js",
|
|
"browser-sync",
|
|
"gulp",
|
|
"grunt-contrib-connect",
|
|
"websocket",
|
|
"ws",
|
|
"cors"
|
|
],
|
|
"author": "Steven Chim",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/chimurai/http-proxy-middleware/issues"
|
|
},
|
|
"homepage": "https://github.com/chimurai/http-proxy-middleware#readme",
|
|
"devDependencies": {
|
|
"@commitlint/cli": "17.7.1",
|
|
"@commitlint/config-conventional": "17.7.0",
|
|
"@types/debug": "4.1.12",
|
|
"@types/express": "4.17.21",
|
|
"@types/is-glob": "4.0.4",
|
|
"@types/jest": "29.5.12",
|
|
"@types/micromatch": "4.0.6",
|
|
"@types/node": "20.11.30",
|
|
"@types/supertest": "2.0.12",
|
|
"@types/ws": "8.5.10",
|
|
"@typescript-eslint/eslint-plugin": "7.4.0",
|
|
"@typescript-eslint/parser": "7.4.0",
|
|
"body-parser": "1.20.2",
|
|
"browser-sync": "3.0.2",
|
|
"connect": "3.7.0",
|
|
"eslint": "8.57.0",
|
|
"eslint-config-prettier": "9.1.0",
|
|
"eslint-plugin-prettier": "5.1.3",
|
|
"express": "4.19.2",
|
|
"get-port": "5.1.1",
|
|
"husky": "9.0.11",
|
|
"jest": "29.7.0",
|
|
"lint-staged": "15.2.2",
|
|
"mockttp": "3.10.1",
|
|
"open": "8.4.2",
|
|
"prettier": "3.2.5",
|
|
"supertest": "6.3.4",
|
|
"ts-jest": "29.1.2",
|
|
"typescript": "5.4.3",
|
|
"ws": "8.16.0"
|
|
},
|
|
"dependencies": {
|
|
"@types/http-proxy": "^1.17.10",
|
|
"debug": "^4.3.4",
|
|
"http-proxy": "^1.18.1",
|
|
"is-glob": "^4.0.1",
|
|
"is-plain-obj": "^3.0.0",
|
|
"micromatch": "^4.0.5"
|
|
},
|
|
"engines": {
|
|
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
|
|
},
|
|
"commitlint": {
|
|
"extends": [
|
|
"@commitlint/config-conventional"
|
|
]
|
|
}
|
|
}
|