forked from Automattic/kue
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.12 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
{
"name": "kue",
"version": "0.10.5",
"description": "Feature rich priority job queue backed by redis",
"homepage": "http://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",
"jade": "^1.11.0",
"lodash": "^3.10.1",
"lodash-deep": "^1.1.0",
"nib": "~1.1.0",
"node-redis-warlock": "^0.1.2",
"redis": "^2.4.2",
"reds": "~0.2.5",
"stylus": "~0.52.4",
"yargs": "^3.31.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",
"scripts": {
"test": "make test-all"
}
}