-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.07 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
{
"name": "@jakowenko/watchtower",
"version": "1.3.3",
"description": "watches docker containers and checks docker hub for image update",
"main": "./lib/watchtower.js",
"files": [
"/lib"
],
"scripts": {
"start": "nodemon --ignore './data/' ./lib/test.js",
"update": "nodemon --ignore './data/' ./lib/test.js --update-helper"
},
"repository": {
"type": "git",
"url": "https://github.com/jakowenko/watchtower.git"
},
"keywords": [
"docker",
"kubernetes",
"watchtower",
"monitoring",
"dockerhub",
"notifications"
],
"author": "David Jakowenko",
"license": "ISC",
"dependencies": {
"axios": "^0.21.1",
"better-sqlite3": "^7.4.3",
"chalk": "^4.1.2",
"dockerode": "^3.3.0",
"dotenv": "^10.0.0",
"execution-time": "^1.4.1",
"fs": "0.0.1-security",
"moment-timezone": "^0.5.33",
"nodemailer": "^6.6.3",
"pluralize": "^8.0.0"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.24.2",
"nodemon": "^2.0.12"
}
}