-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
41 lines (41 loc) · 836 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
{
"name": "sbus",
"version": "0.1.0",
"description": "A library for using Azure Service Bus",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/jmspring/node-sbus"
},
"keywords": [
"azure",
"servicebus",
"queue",
"eventhub",
"amqp"
],
"author": "Jim Spring <[email protected]> (http://innerdot.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jmspring/node-sbus/issues"
},
"dependencies": {
"async": "*",
"azure-storage": "*",
"debug": "^2.1.1",
"node-uuid": "*",
"request": "*",
"utf8": "*",
"xml2js": "*"
},
"devDependencies": {
"optimist": "*",
"jshint": "^2.5.11",
"mocha": "^1.21.4",
"should": "^4.0.4"
},
"scripts": {
"pretest": "jshint lib",
"test": "mocha test"
}
}