-
Notifications
You must be signed in to change notification settings - Fork 867
/
package.json
57 lines (57 loc) · 1.18 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
{
"name": "kue",
"version": "0.11.5",
"description": "Feature rich priority job queue backed by redis",
"homepage": "https://automattic.github.io/kue/",
"keywords": [
"job",
"queue",
"worker",
"redis"
],
"license": "MIT",
"author": "TJ Holowaychuk <[email protected]>",
"contributors": [
{
"name": "Behrad Zari",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/Automattic/kue.git"
},
"bugs": {
"url": "https://github.com/Automattic/kue/issues"
},
"dependencies": {
"body-parser": "^1.12.2",
"express": "^4.12.2",
"lodash": "^4.0.0",
"nib": "~1.1.2",
"node-redis-warlock": "~0.2.0",
"pug": "^2.0.0-beta3",
"redis": "~2.6.0-2",
"stylus": "~0.54.5",
"yargs": "^4.0.0"
},
"devDependencies": {
"async": "^1.4.2",
"chai": "^3.3.0",
"coffee-script": "~1.10.0",
"mocha": "^2.3.3",
"should": "^3.1.0",
"sinon": "^1.17.2",
"supertest": "^1.1.0"
},
"main": "index",
"bin": {
"kue-dashboard": "bin/kue-dashboard"
},
"scripts": {
"test": "make test-all"
},
"optionalDependencies": {
"reds": "^0.2.5"
}
}