-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.14 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.14 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
{
"name": "logs-docker",
"type": "module",
"version": "1.0.0",
"private": true,
"packageManager": "pnpm@10.15.1",
"description": "system that collects all the logs from running dockers and sends them to telegram and discord",
"author": {
"name": "Rafael Curi",
"email": "rafael@curi.dev.br",
"url": "https://curi.dev.br"
},
"license": "MIT",
"funding": "https://github.com/rafinhacuri/",
"homepage": "https://git.cbpf.br/rafaelcuri/logs-docker",
"repository": {
"type": "git",
"url": "git+https://git.cbpf.br/rafaelcuri/logs-docker.git"
},
"bugs": "https://git.cbpf.br/rafaelcuri/logs-docker/-/issues",
"keywords": [
"discord",
"logs",
"docker",
"telegram"
],
"scripts": {
"docker:build": "docker build --platform=linux/amd64 -t mizle/logs-docker:latest -t mizle/logs-docker:$(node -p \"require('./package.json').version\") .",
"docker:push": "docker push mizle/logs-docker:latest && docker push mizle/logs-docker:$(node -p \"require('./package.json').version\")",
"release": "bumpp && pnpm docker:build && pnpm docker:push"
},
"devDependencies": {
"bumpp": "^10.2.3"
}
}