-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.03 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
{
"name": "message-exchange",
"version": "0.1.1",
"description": "integrates redis as a queue and a pubsub by providing an easy mechanism for publishing and handling messages",
"main": "index.js",
"scripts": {
"test": "grunt"
},
"repository": {
"type": "git",
"url": "[email protected]:nathangromano/message-exchange.git"
},
"keywords": [
"redis",
"queue",
"exchange",
"publish",
"subscribe",
"event",
"driven",
"consumer",
"producer"
],
"author": "Nathan G. Romano <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/nathangromano/message-exchange/issues"
},
"homepage": "https://github.com/nathangromano/message-exchange",
"devDependencies": {
"grunt-jasmine-bundle": "^0.2.0",
"grunt-cli": "^0.1.13",
"grunt": "^0.4.5",
"coffee-script": "^1.7.1",
"sandboxed-module": "~0.3.0"
},
"dependencies": {
"redis": "^0.10.3",
"kue": "^0.7.7",
"hiredis": "^0.1.16"
},
"engines": { "node" : ">10.10 <0.12" }
}