forked from dpskvn/express-sse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 842 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
{
"name": "express-sse",
"version": "0.5.3",
"description": "An Express middleware for Server-Sent Events (EventSource)",
"main": "index.js",
"scripts": {
"test": "mocha -R spec test/"
},
"repository": {
"type": "git",
"url": "git://github.com/dpskvn/express-sse.git"
},
"keywords": [
"express",
"sse",
"server-sent",
"events",
"eventsource",
"middleware",
"stream"
],
"author": "Dino Paskvan",
"license": "MIT",
"bugs": {
"url": "https://github.com/dpskvn/express-sse/issues"
},
"homepage": "https://github.com/dpskvn/express-sse",
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^4.18.2",
"eslint-config-airbnb-base": "^11.0.1",
"eslint-plugin-import": "^2.2.0",
"eventsource": "^0.2.1",
"express": "^4.14.0",
"mocha": "^3.1.2"
}
}