-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
55 lines (55 loc) · 1.28 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
49
50
51
52
53
54
55
{
"name": "socket.io-servicebus",
"author": "Microsoft Corporation",
"contributors": [
"Block, Glenn <gblock@microsoft.com>",
"Cooke, Jason <jcooke@microsoft.com>",
"Tavares, Chris <ctavares@microsoft.com>",
"Totten, Nathan <ntotten@microsoft.com>"
],
"version": "0.0.3",
"description": "Socket.io store that connects to Windows Azure Service Bus",
"tags": [
"azure",
"socket.io"
],
"keywords": [
"node",
"azure",
"socket.io"
],
"main": "./lib/sbstore.js",
"engines": {
"node": ">= 0.6.15"
},
"licenses": [
{
"type": "Apache",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"dependencies": {
"azure": ">= 0.6.9",
"socket.io": ">= 0.9.13",
"node-uuid": "~1.4.0"
},
"devDependencies": {
"mocha": "*",
"jshint": "~1.1.0",
"sinon": "~1.5.2",
"should": "*"
},
"homepage": "http://github.com/WindowsAzure/socket.io-servicebus",
"repository": {
"type": "git",
"url": "git@github.com:WindowsAzure/socket.io-servicebus.git"
},
"bugs": {
"url": "http://github.com/WindowsAzure/socket.io-servicebus/issues"
},
"scripts": {
"test": "npm run-script jshint && npm run-script unit",
"unit": "mocha -R spec",
"jshint": "jshint lib --jslint-reporter"
}
}