-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
101 lines (101 loc) · 3.18 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "svps",
"version": "2.3.0",
"type": "module",
"main": "./lib/index.js",
"bin": {
"svps": "bin/index.js"
},
"dependencies": {
"@types/ssh2": "^1.15.0",
"ssh2": "^1.15.0"
},
"devDependencies": {
"@types/node": "^20.11.30",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"packages-update": "^1.2.1",
"poku": "^1.9.2",
"prettier": "^3.2.5",
"typescript": "^5.4.2"
},
"scripts": {
"build": "rm -rf ./bin ./lib ./tests && npx tsc",
"build:examples": "npx tsc -p examples/tsconfig.json",
"patch": "npm run update; npm audit fix; npm version patch --no-git-tag-version",
"minor": "npm run update; npm audit fix; npm version minor --no-git-tag-version",
"major": "npm run update; npm audit fix; npm version major --no-git-tag-version",
"update": "npx npu; npm i --ignore-scripts",
"eslint:checker": "npx eslint . --ext .js,.ts",
"eslint:fix": "npx eslint . --fix",
"prettier:checker": "npx prettier --check .",
"prettier:fix": "npx prettier --write .github/workflows/*.yml .",
"docker:reset": "docker rm --force test-svps >/dev/null 2>&1 || true",
"docker:run": "docker run -d --name test-svps --privileged -p ${PORT:-22}:${PORT:-22} -e PORT=${PORT:-22} --restart always wellwelwel/vps:latest",
"tests:docker": "npm run docker:reset; npm run docker:run",
"tests:create": "cd ./tests && echo '{ \"type\": \"module\" }' | cat > ./package.json",
"tests:connection": "cd ./tests && node ./basic-connection.test.js",
"tests:mount": "cd ./tests && node ./mount.test.js",
"tests:commands": "cd ./tests && node ./commands.test.js",
"tests:upload": "cd ./tests && node ./upload.test.js",
"tests:virtual-hosts": "cd ./tests && node ./virtual-hosts.test.js",
"tests:reset": "npm run docker:reset",
"pretests": "npm run build && npm run build:examples && npm run eslint:checker && npm run prettier:checker && npm run tests:docker",
"tests": "npm run tests:create && npm run tests:connection && npm run tests:mount && npm run tests:commands && npm run tests:upload && npm run tests:virtual-hosts",
"posttests": "npm run tests:reset"
},
"author": "https://github.com/wellwelwel",
"license": "MIT",
"description": "🚀 An easier tool to automate your Ubuntu Server setup and domain forwarding",
"engines": {
"node": ">=14.5.0",
"npm": ">=7.0.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wellwelwel/svps.git"
},
"bugs": {
"url": "https://github.com/wellwelwel/svps/issues"
},
"homepage": "https://github.com/wellwelwel/svps#readme",
"keywords": [
"vps",
"kvm",
"setup",
"ssh",
"sftp",
"ssh2",
"ubuntu",
"server",
"virtual",
"host",
"hosts",
"hosting",
"proxy",
"forward",
"domain",
"domains",
"rdp",
"remote",
"desktop",
"protocol",
"devops",
"cronjob",
"crontab",
"apache",
"ufw",
"vsftpd",
"mysql",
"php",
"docker"
],
"files": [
"bin",
"lib",
"resources"
]
}