forked from EventSource/eventsource
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.13 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
{
"name": "eventsource",
"version": "0.0.6",
"description": "EventSource client for Node.js",
"keywords": [ "eventsource", "http", "streaming", "sse" ],
"homepage": "http://github.com/aslakhellesoy/eventsource-node",
"author": "Aslak Hellesøy <[email protected]>",
"contributors": [
"Aslak Hellesøy <[email protected]>",
"Einar Otto Stangvik <[email protected]>",
"Dan North <[email protected]>"
],
"repository": {
"type": "git",
"url": "git://github.com/aslakhellesoy/eventsource-node.git"
},
"bugs": {
"url": "http://github.com/aslakhellesoy/eventsource-node/issues"
},
"directories": {
"lib" : "./lib"
},
"main": "./lib/eventsource",
"licenses": [
{
"type": "MIT",
"url": "http://github.com/aslakhellesoy/eventsource-node/raw/master/LICENSE"
}
],
"devDependencies": {
"nodeunit" : "0.6.x",
"dox" : "0.1.x",
"jison": "0.3.x"
},
"scripts": {
"test": "make run-tests"
},
"engines": {
"node" : ">=0.6.0"
}
}