-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.19 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
{
"name": "cli-webserver",
"version": "0.0.7",
"description": "This CLI simplifies the creation and renewal of a webserver running with SSL certificates. With a modified Nginx Dockerfile and Let's Encrypts client called Certbot, it takes seconds to be up and running.",
"main": "src/index.js",
"bin": {
"cli-webserver": "bin/cli-webserver.js",
"cliWebserver": "bin/cli-webserver.js",
"webserver": "bin/cli-webserver.js"
},
"type": "module",
"repository": "https://github.com/GnussonNet/cli-webserver",
"homepage": "https://github.com/GnussonNet/cli-webserver#readme",
"publishConfig": {
"access": "public"
},
"files": [
"bin/",
"src/",
"templates/"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"cli",
"webserver",
"cli-webserver"
],
"author": {
"name": "GnussonNet",
"email": "support@gnusson.net",
"url": "https://gnusson.net"
},
"license": "MIT",
"dependencies": {
"arg": "^5.0.1",
"await-exec": "^0.1.2",
"chalk": "^5.0.1",
"cli-welcome": "^2.2.2",
"inquirer": "^8.2.4",
"inquirer-path": "^1.0.0-beta5",
"ncp": "^2.0.0",
"ora": "^6.1.0"
}
}