generated from leumasme/typescript-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 895 Bytes
/
package.json
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
{
"name": "koa-forwardproxy",
"version": "1.0.1",
"description": "Forward recieved requests to a different server",
"main": "build/index.js",
"types": "build/index.d.ts",
"bugs": {
"url": "https://github.com/leumasme/koa-forwardproxy/issues"
},
"keywords": [
"koa",
"proxy",
"forward",
"redirect"
],
"files": [
"build"
],
"repository": {
"type": "git",
"url": "github:leumasme/koa-forwardproxy"
},
"scripts": {
"build": "npx tsc",
"prepublish": "npx tsc"
},
"author": "Temm",
"license": "ISC",
"devDependencies": {
"@types/node": "^14.14.34",
"koa": "^2.13.1",
"typescript": "^4.2.3"
},
"dependencies": {
"@types/debug": "^4.1.7",
"@types/inflation": "^2.0.1",
"@types/koa": "^2.13.4",
"axios": "^0.21.1",
"debug": "^3.1.0",
"inflation": "^2.0.0",
"raw-body": "^2.4.1"
}
}