-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 988 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
44
45
{
"name": "sbus-amqp10",
"version": "0.1.2",
"description": "Adapter for node-sbus module to use amqp10 module for all AMQP calls (amqp10 has no native code).",
"main": "index.js",
"engines": {
"node": ">= 0.8"
},
"dependencies": {
"amqp10": "^1.0.2",
"node-amqp-encoder": "^0.0.2",
"sbus": "^0.1.0"
},
"devDependencies": {
"jshint": "^2.5.11",
"mocha": "^1.21.4",
"should": "^4.0.4"
},
"scripts": {
"pretest": "jshint index.js",
"test": "mocha test"
},
"author": {
"name": "noodlefrenzy",
"email": "milanz@microsoft.com",
"url": "http://www.mikelanzetta.com"
},
"homepage": "https://github.com/noodlefrenzy/node-sbus-amqp10",
"license": "MIT",
"keywords": [
"amqp",
"amqp 1.0",
"amqp10",
"amqp-1-0",
"messaging",
"queues",
"azure",
"servicebus",
"topics"
],
"repository": {
"type": "git",
"url": "https://github.com/noodlefrenzy/node-sbus-amqp10.git"
}
}