forked from thaibault/containerbase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.34 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
{
"name": "containerbase",
"version": "1.0.178",
"description": "generic containerized application",
"keywords": [
"application",
"archLinux",
"arch",
"container",
"hosting",
"linux"
],
"homepage": "https://torben.website/containerbase",
"bugs": {
"email": "[email protected]",
"url": "https://github.com/thaibault/containerbase/issues"
},
"license": "CC-BY-3.0",
"author": {
"name": "Torben Sickert",
"email": "[email protected]",
"url": "https://torben.website"
},
"files": [
"Dockerfile",
"scripts",
"service"
],
"main": "scripts/initialize.sh",
"repository": {
"type": "git",
"url": "https://github.com/thaibault/containerbase"
},
"scripts": {
"clear": "echo clear",
"lint": "hash shellcheck && shellcheck -x **/*.sh || echo Please install \"shellcheck\". || true",
"lint:given": "shellcheck -x",
"postversion": "yarn publish --non-interactive; git push --tags && git push",
"start": "docker compose --file service/docker-compose.yaml up",
"update": "yarn version --patch",
"update:documentation": "documentation-website"
},
"devDependencies": {
"documentation-website": "*"
},
"documentationWebsite": {
"name": "containerbase",
"tagline": "containerize your application",
"trackingCode": "UA-40192634-TODO"
}
}