-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.11 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
{
"name": "ckron",
"version": "1.2.1",
"repository": "github:nicomt/ckron",
"keywords": [
"docker",
"cron",
"cronjob",
"scheduler",
"job"
],
"description": "",
"main": "main.js",
"bin": {
"ckron": "bin/cli.js"
},
"scripts": {
"start": "node ./bin/cli.js",
"test": "ava -T 1m --verbose",
"lint": "eslint ."
},
"author": "Nicolas Martinez",
"license": "ISC",
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^9.0.9",
"@slack/webhook": "^5.0.4",
"ajv": "^6.12.6",
"better-ajv-errors": "^0.8.2",
"chalk": "^4.1.2",
"commander": "^6.2.1",
"cron": "^1.8.2",
"dockerode": "^3.3.1",
"gitignore-parser": "0.0.2",
"hashids": "^2.2.9",
"js-yaml": "^3.14.1",
"nodemailer": "^6.6.5",
"shlex": "^2.1.0",
"strip-ansi": "^7.0.0"
},
"devDependencies": {
"ava": "^3.13.0",
"eslint": "^7.9.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"stream-to-string": "^1.2.0"
},
"ava": {
"files": [
"test/**/*",
"!test/mock",
"!test/util"
]
}
}