-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 931 Bytes
/
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": "rebus",
"description": "rebus - reactive Pub/Sub bus for sharing data between nodejs applications running on the same host",
"main": "./main",
"bin": {},
"author": "yosefd <[email protected]>",
"version": "0.4.8",
"license": "MIT",
"contributors": [
"Yosef Dinerstein <[email protected]>",
"Elad Ben-Israel <[email protected]>",
"Saar Yahalom <[email protected]>"
],
"keywords": [
"nodejs",
"bus",
"pub/sub",
"publish",
"subscribe",
"notification",
"producer",
"consumer"
],
"engines": {
"node": "~0.10.x"
},
"dependencies": {
"async": "0.2.x",
"ypatterns": "0.2.x"
},
"devDependencies": {
"nodeunit": "0.6.x",
"mkdirp": "0.2.x",
"rimraf": "2.0.x"
},
"repository": {
"type": "git",
"url": "git://github.com/anodejs/node-rebus.git"
},
"scripts": {
"test": "nodeunit test/test.js"
}
}