-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.2 KB
/
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
44
45
46
47
{
"name": "reverse_proxy_pathmapper",
"version": "2.0.0",
"description": "Reverse proxy URL path mapper using http-proxy.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prod": "node .",
"dev": "ts-node-dev src/index.ts --watch",
"example": "ts-node-dev example/example.ts",
"example-js": "node example/example.js",
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iambpn/reverse_proxy_pathmapper.git"
},
"keywords": [
"reverse proxy",
"proxy",
"path mapper",
"reverse proxy path mapper",
"reverse proxy url mapper",
"url mapper",
"proxy path mapper",
"proxy url mapper"
],
"author": "Bipin Maharjan",
"license": "ISC",
"bugs": {
"url": "https://github.com/iambpn/reverse_proxy_pathmapper/issues"
},
"homepage": "https://github.com/iambpn/reverse_proxy_pathmapper#readme",
"devDependencies": {
"@types/http-proxy": "^1.17.11",
"typescript": "^5.0.4",
"ts-node-dev": "^2.0.0"
},
"dependencies": {
"http-proxy": "^1.18.1"
},
"files": [
"dist/**/*"
]
}