forked from strongloop/strong-cluster-socket.io-store
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.1 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.1 KB
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
{
"name": "strong-cluster-socket.io-store",
"version": "0.1.4",
"description": "Implementation of socket.io store using node's native cluster messaging",
"license": {
"name": "Dual Artistic/StrongLoop",
"url": "https://github.com/strongloop/strong-cluster-socket.io-store/blob/master/LICENSE"
},
"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-cluster-socket.io-store.git"
},
"keywords": [
"socket.io",
"cluster",
"store"
],
"author": {
"name": "Miroslav Bajtos",
"email": "miroslav@strongloop.com"
},
"dependencies": {
"debug": "~0.7"
},
"peerDependencies": {
"strong-mq": "~0.0.3",
"strong-store-cluster": "~0.1.0"
},
"devDependencies": {
"mocha": "~1.9.0",
"jshint": "~2.0.1",
"chai": "~1.7.2",
"socket.io": "~0.9.16",
"socket.io-client": "~0.9.16",
"strong-mq": "latest",
"strong-store-cluster": "latest"
},
"engines": {
"node": ">=0.10.0"
}
}