forked from rexxars/sse-channel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.42 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
51
{
"name": "sse-channel",
"version": "3.1.1",
"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": "istanbul cover node_modules/.bin/_mocha -- --reporter spec",
"lint": "eslint .",
"posttest": "npm run lint",
"test": "mocha --reporter spec",
"test-travis": "istanbul cover 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 <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rexxars/sse-channel/issues"
},
"eslintConfig": {
"extends": "vaffel",
"rules": {
"no-bitwise": 0
}
},
"homepage": "https://github.com/rexxars/sse-channel",
"dependencies": {
"access-control": "1.0.1",
"lodash": "^4.17.10"
},
"devDependencies": {
"eslint": "^4.12.0",
"eslint-config-vaffel": "^5.0.0",
"eventsource": "^1.0.5",
"istanbul": "^0.4.2",
"mocha": "^4.0.1",
"node-static": "^0.7.10"
}
}