forked from bee-queue/bee-queue
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 913 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 913 Bytes
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
{
"name": "beequeue",
"version": "0.3.4",
"description": "A simple, fast, robust job/task queue, backed by Redis.",
"main": "index.js",
"dependencies": {
"redis": "^2.5.2"
},
"devDependencies": {
"chai": "^1.10.0",
"grunt": "~0.4.5",
"grunt-eslint": "17.1.0",
"grunt-githooks": "^0.3.1",
"grunt-mocha-test": "^0.12.6",
"sinon": "^1.12.2",
"coveralls": "^2.11.2"
},
"scripts": {
"test": "grunt test"
},
"keywords": [
"task",
"job",
"queue",
"worker",
"distributed",
"system",
"redis",
"lua"
],
"author": "Lewis J Ellis <me@lewisjellis.com>, Cherokee <successage@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ahkimkoo/beequeue.git"
},
"bugs": {
"url": "https://github.com/ahkimkoo/beequeue/issues"
},
"homepage": "https://github.com/ahkimkoo/beequeue"
}