forked from poma/docker-telegram-notifier
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 669 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 669 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
{
"name": "docker-telegram-notifier",
"version": "1.0.0",
"description": "Telegram integration for notifying Docker events",
"repository": {
"type": "git",
"url": "https://github.com/poma/docker-telegram-notifier"
},
"main": "dist/app.ts",
"scripts": {
"build": "tsc",
"start": "node dist/app.js",
"healthcheck": "node dist/app.js healthcheck"
},
"author": "poma, arefaslani",
"license": "Apache-2.0",
"dependencies": {
"dockerode": "^3.3.1",
"jsonstream2": "^3.0.0",
"telegraf": "^4.8.3"
},
"devDependencies": {
"@types/dockerode": "^3.3.9",
"@types/node": "^17.0.36",
"typescript": "^4.7.2"
}
}