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
42 lines (42 loc) · 919 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 919 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
42
{
"name": "bee-queue",
"version": "0.3.0",
"description": "A simple, fast, robust job/task queue, backed by Redis.",
"main": "index.js",
"dependencies": {
"grunt-cli": "^1.2.0",
"redis": "2.6.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>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/LewisJEllis/bee-queue.git"
},
"bugs": {
"url": "https://github.com/LewisJEllis/bee-queue/issues"
},
"homepage": "https://github.com/LewisJEllis/bee-queue"
}