forked from strongloop/strong-mq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 792 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
{
"name": "strong-mq",
"version": "1.0.0",
"description": "clustering of applications on top of message queues",
"license": "Artistic-2.0",
"main": "index.js",
"scripts": {
"test": "mocha --reporter spec",
"lint": "./node_modules/.bin/jshint *.js test lib"
},
"repository": {
"type": "git",
"url": "https://github.com/strongloop/strong-mq.git"
},
"author": {
"name": "Sam Roberts",
"email": "[email protected]"
},
"dependencies": {
"amqp": "~0.1.6",
"stomp-client": "~0.4.0",
"underscore": "~1.4.4",
"async": "~0.2.8"
},
"devDependencies": {
"mocha": "~1.9.0",
"jshint": "~2.0.1"
},
"optionalDependencies": {
"sl-blip": "http://blip.strongloop.com/[email protected]"
},
"engines": {
"node": "*"
}
}