forked from nsimmons/koa-better-http-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.67 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"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",
"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"
},
"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"
}
}