-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.04 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.04 KB
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
{
"name": "sselib",
"description": "SSE (Server Sent Events) library and middleware.",
"version": "0.0.97",
"author": "Daniel Waardal <daniel@massforstroel.se>",
"keywords": [
"sse",
"server sent events",
"connect",
"express",
"eventsource",
"pubsub",
"middleware",
"connect",
"express"
],
"devDependencies": {
"coffee-script": ">=1.6.2",
"mocha": "1.9.x",
"should": "1.2.x",
"connect": "~2.7.4",
"supertest": "~0.5.1",
"express": "~3.2.0"
},
"licenses": [
{
"type": "BSD",
"url": "https://github.com/massforstroelse/sselib.js/blob/master/LICENSE.md"
}
],
"homepage": "https://github.com/massforstroelse/sselib.js",
"repository": {
"type": "git",
"url": "git://github.com/massforstroelse/sselib.js.git"
},
"bugs": {
"url": "https://github.com/massforstroelse/sselib.js/issues"
},
"main": "./sselib.js",
"scripts": {
"test": "make test",
"compile": "make compile",
"build": "make prepare"
},
"engines": {
"node": "*"
}
}