-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 960 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
{
"name": "portable-server",
"version": "1.0.0",
"description": "一个便携的测试服务器",
"keywords": ["development", "test", "portable", "server", "cli", "https", "proxy"],
"git": "https://github.com/antilmid/portable-server",
"main": "./app/index.js",
"bin": {
"pserver": "./app/index.js"
},
"scripts": {
"genCert": "openssl req -config ./app/common/local.conf -new -sha256 -newkey rsa:2048 -nodes -keyout ./app/common/localhost.key -x509 -days 3650 -out ./app/common/localhost.crt"
},
"repository": {
"type": "git",
"url": "git+https://github.com/antilmid/portable-server.git"
},
"author": "daviantdengwei",
"license": "ISC",
"bugs": {
"url": "https://github.com/antilmid/portable-server/issues"
},
"homepage": "https://github.com/antilmid/portable-server#readme",
"dependencies": {
"chalk": "^4.1.2",
"express": "^4.18.1",
"express-http-proxy": "^1.6.3",
"ip": "^1.1.8"
}
}