-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
56 lines (56 loc) · 1.1 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
48
49
50
51
52
53
54
55
56
{
"name": "lws-rewrite",
"author": "Lloyd Brookes <[email protected]>",
"version": "4.0.0",
"description": "lws middleware plugin adding URL rewriting support",
"repository": {
"type": "git",
"url": "git+https://github.com/lwsjs/rewrite.git"
},
"license": "MIT",
"keywords": [
"lws",
"lws-middleware",
"url",
"rewriting",
"rewrite",
"proxy"
],
"type": "module",
"exports": "./index.js",
"bin": {
"lws-rewrite": "bin/cli.js"
},
"engines": {
"node": ">=12.17"
},
"scripts": {
"test": "test-runner --max-file-concurrency 1 test/*"
},
"dependencies": {
"array-back": "^6.2.2",
"http-proxy-agent": "^5.0.0",
"https-proxy-agent": "^5.0.1",
"koa-route": "^4.0.1",
"path-to-regexp": "^6.2.2"
},
"devDependencies": {
"lws": "^4.1.4",
"lws-body-parser": "^3.0.0",
"lws-cors": "^4.2.1",
"lws-err-detail": "^2.0.0",
"lws-static": "^3.1.0",
"node-fetch": "^3.3.2",
"test-runner": "^0.11.0"
},
"files": [
"index.js",
"lib",
"bin"
],
"standard": {
"ignore": [
"tmp"
]
}
}