-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
55 lines (55 loc) · 1.06 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
{
"name": "barbeque",
"description": "Redis-based task queue library for Node.js, inspired by Celery and Kue.",
"version": "0.2.4",
"license": "MIT",
"author": {
"name": "Pilwon Huh",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/pilwon/barbeque.git"
},
"keywords": [
"barbeque",
"barbecue",
"bbq",
"task",
"job",
"queue",
"kue",
"schedule",
"delay",
"worker",
"redis",
"db",
"pubsub"
],
"dependencies": {
"async": "0.2.9",
"browserify-middleware": "1.19.0",
"colors": "0.6.2",
"express": "3.4.4",
"hbs": "2.4.0",
"less-middleware": "0.1.14",
"lodash": "2.2.1",
"moment": "2.4.0",
"redis": "0.9.0",
"socket.io": "0.9.16",
"uuid": "1.4.1"
},
"devDependencies": {
"grunt": "0.4.1",
"grunt-contrib-jshint": "0.7.1",
"grunt-contrib-watch": "0.4.3",
"matchdep": "0.3.0"
},
"bin": {
"barbeque": "./bin/bbq",
"bbq": "./bin/bbq"
},
"scripts": {
"prepublish": "npm prune"
}
}