forked from schwarzkopfb/sse-broadcast-redis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.16 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
{
"name": "sse-broadcast-redis",
"version": "0.1.1",
"description": "Redis adapter for sse-broadcast",
"main": "index.js",
"scripts": {
"test": "tap test/basic.js test/api.js",
"cover": "node test/cover",
"cover-and-upload": "node test/cover && cat coverage/lcov.info | node_modules/.bin/coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/schwarzkopfb/sse-broadcast-redis.git"
},
"keywords": [
"sse",
"server",
"sent",
"events",
"publish",
"subscribe",
"pubsub",
"broadcast",
"sse-broadcast",
"redis",
"multiple",
"process"
],
"author": "Schwarzkopf Balázs <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/schwarzkopfb/sse-broadcast-redis/issues"
},
"homepage": "https://github.com/schwarzkopfb/sse-broadcast-redis#readme",
"devDependencies": {
"coveralls": "^2.11.12",
"istanbul": "^0.4.5",
"opener": "^1.4.1",
"rimraf": "^2.5.4",
"sse-broadcast": "^0",
"tap": "^7.0.0"
},
"dependencies": {
"mdbid": "^1.0.0",
"redis": "^2.6.2"
},
"peerDependencies": {
"sse-broadcast": "^0"
}
}