-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.01 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
{
"name": "distributed-eventemitter",
"description": "The ultra fast, distributed (multi process and multi server), STOMP based event emitter for Node.js!",
"version": "1.2.1",
"keywords": [
"event",
"emitter",
"distributed",
"messaging",
"cluster",
"scaling",
"high availability",
"stomp",
"jms",
"message"
],
"author": "Rolando Santamaria Maso <[email protected]>",
"contributors": [],
"dependencies": {
"co": "^4",
"eventemitter2": "^1.0.5",
"mocha": "^2.5.3",
"stompit": "^0",
"traceur": "0.0.111",
"uuid": "^2.0.3"
},
"license": "Apache-2.0",
"devDependencies": {
"chai": "^3",
"mocha": "^2",
"mocha-traceur": "^2",
"traceur": "^0"
},
"main": "main.js",
"repository": "git://github.com/jkyberneees/distributed-eventemitter",
"files": [
"LICENSE",
"README.md",
"main.js",
"tests.js"
],
"scripts": {
"test": "mocha tests --compilers js:mocha-traceur"
},
"engines": {
"node": ">= 0.12"
}
}