-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathpackage.json
92 lines (92 loc) · 2.01 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
82
83
84
85
86
87
88
89
90
91
92
{
"name": "kue-scheduler",
"version": "0.10.15",
"description": "A job scheduler utility for kue, backed by redis and built for node.js with support of schedules restore on system restart",
"main": "index.js",
"scripts": {
"test": "grunt test"
},
"repository": {
"type": "git",
"url": "https://github.com/lykmapipo/kue-scheduler.git"
},
"keywords": [
"kue",
"queue",
"que",
"q",
"schedule",
"every",
"now",
"at",
"delayed",
"jobs",
"redis",
"job",
"worker",
"restore",
"reschedule"
],
"author": "lykmapipo",
"license": "MIT",
"bugs": {
"url": "https://github.com/lykmapipo/kue-scheduler/issues"
},
"homepage": "https://github.com/lykmapipo/kue-scheduler",
"contributors": [
{
"name": "lykmapipo",
"github": "https://github.com/lykmapipo"
},
{
"name": "keenondrums",
"github": "https://github.com/keenondrums"
},
{
"name": "throrin19",
"github": "https://github.com/throrin19"
},
{
"name": "KeKs0r",
"github": "https://github.com/KeKs0r"
},
{
"name": "risseraka",
"github": "https://github.com/risseraka"
},
{
"name": "elyas-bhy",
"github": "https://github.com/elyas-bhy"
}
],
"dependencies": {
"async": ">=3.2.0",
"cron": ">=1.8.2",
"date.js": ">=0.3.3",
"human-interval": ">=2.0.0",
"kue": ">=0.11.6",
"kue-unique": ">=1.0.48",
"lodash": ">=4.17.20",
"node-redis-warlock": ">=0.2.0",
"uuid": ">=8.3.2"
},
"devDependencies": {
"chai": "^4.2.0",
"dot-prop": "^6.0.1",
"extend": "^3.0.2",
"faker": "^5.1.0",
"grunt": "^1.3.0",
"grunt-contrib-jshint": "^3.0.0",
"grunt-mocha-test": "^0.13.3",
"handlebars": "^4.7.6",
"js-yaml": "^3.14.1",
"jshint-stylish": "^2.2.1",
"minimist": "^1.2.5",
"mocha": "^8.2.1",
"moment": "^2.29.1",
"pug": "^3.0.0",
"shelljs": "^0.8.4",
"sinon": "9.2.2",
"websocket-extensions": "^0.1.4"
}
}