-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
46 lines (46 loc) · 1.01 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
{
"name": "redis-subscribe-sse",
"version": "1.0.0",
"description": "Stream Redis subscribe events to client with SSE",
"main": "index.js",
"author": "Michele Pangrazzi <[email protected]>",
"repository": {
"type": "git",
"url": "git://github.com/mpangrazzi/redis-subscribe-sse.git"
},
"scripts": {
"test": "ava --verbose",
"lint": "./node_modules/.bin/standard",
"coverage": "./node_modules/.bin/nyc ava && nyc report --reporter=text-lcov | ./node_modules/.bin/coveralls"
},
"engines": {
"node": ">=4.5.0"
},
"devDependencies": {
"ava": "^0.16.0",
"coveralls": "^2.11.14",
"express": "^4.14.0",
"koa": "^1.2.4",
"koa-logger": "^1.3.0",
"koa-router": "^5.4.0",
"nyc": "^8.3.0",
"standard": "^8.1.0"
},
"dependencies": {
"debug": "^3.1.0",
"ioredis": "*"
},
"keywords": [
"redis",
"publish",
"pub",
"sub",
"koa",
"express",
"subscribe",
"stream",
"sse",
"server-sent events"
],
"license": "MIT"
}