-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
36 lines (36 loc) · 1.07 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
{
"name": "sse-channel",
"version": "4.0.0",
"description": "Server-Sent Events \"channel\" where all messages are broadcasted to all connected clients, history is maintained automatically and server attempts to keep clients alive by sending \"keep-alive\" packets automatically.",
"main": "index.js",
"scripts": {
"coverage": "nyc node_modules/.bin/_mocha -- --reporter spec",
"test": "mocha --reporter spec",
"test-travis": "nyc node_modules/.bin/_mocha --report lcovonly -- --reporter spec",
"prepublishOnly": "npm test"
},
"repository": {
"type": "git",
"url": "git://github.com/rexxars/sse-channel.git"
},
"keywords": [
"sse",
"channel",
"real-time",
"server-sent-events",
"html5",
"eventsource",
"messaging"
],
"author": "Espen Hovlandsdal <espen@hovlandsdal.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rexxars/sse-channel/issues"
},
"homepage": "https://github.com/rexxars/sse-channel",
"devDependencies": {
"eventsource": "^1.0.7",
"mocha": "^8.2.1",
"nyc": "^15.1.0"
}
}