-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.35 KB
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
{
"name": "erp-server-setup",
"version": "1.0.1",
"description": "Automated professional server configuration and hardening script for Linux servers hosting ERP applications",
"main": "scripts/erp-server-setup.sh",
"scripts": {
"lint": "bash -n scripts/erp-server-setup.sh",
"test": "bash scripts/erp-server-setup.sh --dry-run",
"start": "sudo bash scripts/erp-server-setup.sh"
},
"keywords": [
"linux",
"server",
"security",
"hardening",
"erp",
"automation",
"bash",
"devops",
"infrastructure"
],
"author": "ERP Infrastructure Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/seu-repo/server-setup.git"
},
"bugs": {
"url": "https://github.com/seu-repo/server-setup/issues"
},
"homepage": "https://github.com/seu-repo/server-setup#readme",
"engines": {
"bash": ">=4.0",
"node": ">=12.0"
},
"dependencies": {},
"devDependencies": {
"shellcheck": "^0.8.0",
"bats": "^1.5.0"
},
"supportedDistributions": [
"Ubuntu 18.04+",
"Debian 10+",
"CentOS 7+",
"RHEL 7+",
"Fedora 30+"
],
"modules": [
"Security (SSH, Firewall, Fail2Ban, Passwords, Kernel Hardening)",
"Monitoring (System tools, Log rotation)",
"Backup (Automated backups with scheduling)",
"System (Service management, Optimization)"
]
}