-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
81 lines (81 loc) · 2.21 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "argus-docker",
"version": "1.1.0",
"description": "Automate container quit and rerun as the base image updates",
"main": "./dist/index.js",
"repository": "https://github.com/VibhorCodecianGupta/Argus.git",
"homepage": "https://github.com/VibhorCodecianGupta/Argus",
"bugs": "https://github.com/VibhorCodecianGupta/Argus/issues",
"bin": {
"argus": "./dist/index.js"
},
"author": "VibhorCodecianGupta <vibhordelgupta@gmail.com>",
"keywords": [
"docker",
"update container",
"watch",
"automation",
"docker pull"
],
"files": [
"dist/*.js",
"src/*.ts"
],
"license": "MIT",
"scripts": {
"dev:watch": "nodemon --quiet --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"dev": "ts-node src/index.ts",
"build": "tsc",
"start": "yarn build && node dist/index.js",
"local": "sudo yarn global add && argus",
"refresh": "rm -rf ./node_modules ./package-lock.json ./yarn.lock && yarn install",
"lint": "eslint . --ext .ts"
},
"dependencies": {
"@babel/preset-env": "^7.11.5",
"@influxdata/influxdb-client": "^1.14.0",
"@snyk/docker-registry-v2-client": "^2.3.0",
"@tsconfig/node12": "^1.0.7",
"@types/dockerode": "^2.5.34",
"@types/figlet": "^1.2.0",
"@types/jest": "^26.0.14",
"@types/node": "^14.11.2",
"@types/nodemailer": "^6.4.0",
"@types/nodemailer-direct-transport": "^1.0.31",
"@types/nodemailer-smtp-transport": "^2.7.4",
"@types/semver": "^7.3.8",
"@types/yargs": "^15.0.8",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"axios": "^0.21.1",
"chalk": "^4.1.0",
"dockerode": "^3.2.1",
"eslint": "^7.10.0",
"figlet": "^1.5.0",
"husky": "^4.3.0",
"jest": "^26.4.2",
"lint-staged": "^10.4.0",
"nodemailer": "^6.4.17",
"nodemon": "^2.0.4",
"prettier": "^2.1.2",
"prom-client": "^13.1.0",
"ts-jest": "^26.4.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.3",
"winston": "^3.3.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"prettier --write",
"npm run lint"
],
"*.{json,js,md}": [
"prettier --write"
]
}
}