forked from lykmapipo/kue-scheduler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.84 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
{
"name": "kue-scheduler",
"version": "0.4.2",
"description": "A job scheduler utility for kue, backed by redis and built for node.js",
"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"
],
"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"
}],
"dependencies": {
"async": "^1.5.0",
"cron": "^1.0.9",
"date.js": "^0.2.1",
"human-interval": "^0.1.5",
"kue-unique": "^0.1.4",
"lodash": "^3.10.1",
"node-uuid": "^1.4.7"
},
"peerDependencies": {
"kue": "^0.9.6"
},
"devDependencies": {
"async": "^1.4.2",
"chai": "^3.4.1",
"faker": "^3.0.1",
"grunt": "^0.4.5",
"grunt-contrib-jshint": "^0.11.3",
"grunt-mocha-test": "^0.12.7",
"jshint-stylish": "^2.1.0",
"kue": "^0.9.6",
"lodash": "^3.10.1",
"mocha": "^2.3.4",
"moment": "^2.10.6"
}
}