-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.06 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": "nginx-portal",
"version": "1.1.0",
"description": "A utility tool to easily manage port forwarding and update Nginx configurations through an interactive and scriptable CLI interface",
"keywords": [
"nginx",
"config",
"port-forwarding",
"cli",
"automation",
"interactive-cli",
"parser",
"generator"
],
"author": {
"name": "Beeno Tung",
"email": "aabbcc1241@yahoo.com.hk",
"url": "https://beeno-tung.surge.sh"
},
"license": "BSD-2-Clause",
"repository": {
"type": "git",
"url": "git+https://github.com/beenotung/nginx-portal.git"
},
"homepage": "https://github.com/beenotung/nginx-portal#readme",
"bugs": {
"url": "https://github.com/beenotung/nginx-portal/issues"
},
"bin": {
"nginx-portal": "cli.js"
},
"files": [
"cli.js",
"index.js"
],
"scripts": {
"test": "tsc --noEmit",
"build": "tsc -p ."
},
"devDependencies": {
"@types/node": "^20.12.5",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.4.4"
}
}