forked from EventSource/eventsource
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.17 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
{
"name": "tt-eventsource",
"version": "0.2.1-tt2",
"description": "W3C compliant EventSource client for Node.js and browser (polyfill)",
"keywords": [
"eventsource",
"http",
"streaming",
"sse",
"polyfill"
],
"homepage": "http://github.com/tigertext/eventsource",
"author": "Aslak Hellesøy <[email protected]>",
"repository": {
"type": "git",
"url": "git://github.com/tigertext/eventsource.git"
},
"bugs": {
"url": "http://github.com/aslakhellesoy/eventsource/issues"
},
"directories": {
"lib": "./lib"
},
"main": "./lib/eventsource",
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "http://github.com/aslakhellesoy/eventsource/raw/master/LICENSE"
}
],
"devDependencies": {
"express": "^4.13.4",
"mocha": "^2.4.5",
"serve-static": "^1.10.2",
"sse": "^0.0.6",
"webpack": "^1.12.14"
},
"scripts": {
"test": "mocha --reporter spec",
"polyfill": "webpack lib/eventsource-polyfill.js example/eventsource-polyfill.js",
"postpublish": "git push && git push --tags"
},
"engines": {
"node": ">=0.8.0"
},
"dependencies": {
"original": "^1.0.0"
}
}