-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbpkg.json
More file actions
29 lines (29 loc) · 734 Bytes
/
bpkg.json
File metadata and controls
29 lines (29 loc) · 734 Bytes
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
{
"name": "bash-logger",
"version": "2.2.1",
"description": "Production-grade logging for bash scripts with syslog compliance, journal integration, and customizable formatting",
"author": "Graham Watts (GingerGraham)",
"homepage": "https://github.com/GingerGraham/bash-logger",
"repository": {
"type": "git",
"url": "https://github.com/GingerGraham/bash-logger.git"
},
"license": "MIT",
"keywords": [
"bash",
"logging",
"shell",
"syslog",
"systemd",
"journal"
],
"global": true,
"install": "install -d $PREFIX/lib/bash-logger && install -m 644 logging.sh $PREFIX/lib/bash-logger/logging.sh",
"scripts": [
"logging.sh"
],
"files": [
"LICENSE",
"README.md"
]
}