UNPKG

@reedchan/koa-http-proxy

Version:
63 lines 1.71 kB
{ "name": "@reedchan/koa-http-proxy", "version": "1.0.1", "description": "http proxy middleware for koa", "engines": { "node": ">=18.0.0" }, "engineStrict": true, "main": "index.js", "repository": { "type": "git", "url": "git://github.com/reedchan7/koa-http-proxy.git" }, "publishConfig": { "registry": "https://registry.npmjs.org" }, "types": "types.d.ts", "keywords": [ "koa", "koa-http-proxy", "reverse-proxy", "http-proxy", "middleware" ], "author": { "name": "Reed Chan", "email": "xinyuchen7@gmail.com" }, "license": "MIT", "bugs": { "url": "https://github.com/reedchan7/koa-http-proxy/issues" }, "homepage": "https://github.com/reedchan7/koa-http-proxy#readme", "lint-staged": { "*.js": "pnpm run lint" }, "devDependencies": { "body-parser": "^2.2.0", "chai": "^5.2.0", "cookie-parser": "^1.4.7", "express": "^5.1.0", "jscs": "^3.0.7", "jshint": "^2.13.6", "koa": "^2.16.1", "mocha": "^11.4.0", "prettier": "^3.5.3", "supertest": "^7.1.1" }, "dependencies": { "es6-promise": "^4.2.8", "raw-body": "^3.0.0" }, "scripts": { "test": "pnpm -s run mocha && pnpm run -s lint && pnpm run -s jscs", "test:debug": "mocha debug -R spec test --recursive", "mocha": "mocha -R spec test --recursive", "lint": "jshint index.js test/*.js test/**/*js lib/*js app/**/*js ", "jscs": "jscs index.js test/*.js test/**/*js lib/*js app/**/*js", "prettier": "prettier '**/*.{ts,js,json,yml,yaml}' --write", "prettier:check": "prettier '**/*.{ts,js,json,yml,yaml}' --check", "pub": "pnpm run version && pnpm publish --access public" } }