forked from kmkamruzzaman/node-busmq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.49 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "busmq",
"version": "1.3.0",
"description": "A high performance, highly-available and scalable, message bus and queueing system for node.js backed by Redis",
"author": "Capriza Inc. <backend@capriza.com>",
"maintainers": [
"Nadav Fischer <fujifischer@gmail.com>"
],
"homepage": "http://github.com/capriza/node-busmq",
"repository": {
"type": "git",
"url": "http://github.com/capriza/node-busmq.git"
},
"bugs": {
"url": "https://github.com/capriza/node-busmq/issues"
},
"keywords": [
"bus",
"message",
"queue",
"mq",
"channel",
"publish",
"subscribe",
"federation",
"redis",
"reliable",
"guaranteed",
"delivery"
],
"dependencies": {
"hiredis": "0.4.1",
"ioredis": "1.15.1",
"redis": "0.12.1"
},
"optionalDependencies": {
"ws": "0.8.0",
"websocket-stream": "2.0.2",
"dnode": "1.2.2"
},
"devDependencies": {
"mocha": "1.21.4",
"should": "4.0.4",
"suppose": "^0.5.1"
},
"browser": {
"./index.js": "./browser/index.js",
"./lib/fedserver.js": "./browser/empty.js",
"./lib/connection.js": "./browser/empty.js",
"redis": false,
"hiredis": false,
"crypto": "./browser/crypto.js",
"ws": "./browser/ws.js"
},
"engines": {
"node": ">=0.10.3"
},
"main": "index.js",
"files": [
"index.js",
"browser-build.sh",
"busmq.js",
"busmq.min.js",
"lib",
"browser"
],
"license": "MIT",
"scripts": {
"test": "mocha test"
}
}