forked from EventSource/eventsource
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 973 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
35
36
37
38
39
40
41
42
43
{
"name": "eventsource",
"version": "0.1.6",
"description": "W3C compliant EventSource client for Node.js",
"keywords": [
"eventsource",
"http",
"streaming",
"sse"
],
"homepage": "http://github.com/aslakhellesoy/eventsource-node",
"author": "Aslak Hellesøy <[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": {
"mocha": ">=1.21.4"
},
"scripts": {
"test": "mocha --reporter spec",
"postpublish": "git push && git push --tags"
},
"engines": {
"node": ">=0.8.0"
},
"dependencies": {
"original": ">=0.0.5"
}
}