-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
60 lines (60 loc) · 1.34 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
{
"name": "ckron",
"version": "1.3.1",
"repository": "github:nicomt/ckron",
"keywords": [
"docker",
"cron",
"cronjob",
"scheduler",
"job"
],
"description": "A cron-like job scheduler for docker",
"type": "module",
"module": "src/ckron.js",
"bin": {
"ckron": "bin/cli.js"
},
"scripts": {
"start": "node ./bin/cli.js",
"test": "ava -T 1m --verbose",
"test-ci": "ava -T 1m --verbose --no-worker-threads --serial --concurrency 1",
"lint": "eslint ."
},
"author": "Nicolas Martinez",
"license": "ISC",
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^9.1.0",
"@slack/webhook": "^7.0.0",
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"better-ajv-errors": "^1.2.0",
"chalk": "^5.0.1",
"commander": "^12.0.0",
"cron": "^2.1.0",
"dockerode": "^4.0.2",
"gitignore-parser": "0.0.2",
"hashids": "^2.2.10",
"js-yaml": "^4.1.0",
"nodemailer": "^6.9.9",
"shlex": "^2.1.2",
"strip-ansi": "^7.0.1"
},
"devDependencies": {
"ava": "^6.1.2",
"eslint": "^8.23.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"stream-to-string": "^1.2.0"
},
"ava": {
"files": [
"test/**/*",
"!test/mock",
"!test/util"
],
"environmentVariables": {
"CKRON_NOLOG": "1"
}
}
}