-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
34 lines (34 loc) · 837 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
{
"name": "sse-pusher",
"version": "1.1.1",
"description": "Simple server-sent events (SSE) for Connect and Express",
"main": "index.js",
"repository": "pgaubatz/node-sse-pusher",
"keywords": [
"server-sent",
"events",
"sse",
"connect",
"express",
"middleware"
],
"author": "Patrick Gaubatz <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pgaubatz/node-sse-pusher/issues"
},
"homepage": "https://github.com/pgaubatz/node-sse-pusher#readme",
"engines": {
"node": ">= 0.10.0"
},
"scripts": {
"test": "mocha -R spec test/",
"cover": "istanbul cover ./node_modules/mocha/bin/_mocha --report html -- -R spec"
},
"devDependencies": {
"chai": "^2.3.0",
"eventsource": "^0.1.6",
"express": "^4.12.4",
"mocha": "^2.2.4"
}
}