| 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
51
52
53
54
55
56
57
58
59
60
 | | { |  |   "name": "eventsource", |  |   "version": "2.0.2", |  |   "description": "W3C compliant EventSource client for Node.js and browser (polyfill)", |  |   "keywords": [ |  |     "eventsource", |  |     "http", |  |     "streaming", |  |     "sse", |  |     "polyfill" |  |   ], |  |   "homepage": "http://github.com/EventSource/eventsource", |  |   "author": "Aslak Hellesøy <aslak.hellesoy@gmail.com>", |  |   "repository": { |  |     "type": "git", |  |     "url": "git://github.com/EventSource/eventsource.git" |  |   }, |  |   "bugs": { |  |     "url": "http://github.com/EventSource/eventsource/issues" |  |   }, |  |   "directories": { |  |     "lib": "./lib" |  |   }, |  |   "main": "./lib/eventsource", |  |   "license": "MIT", |  |   "licenses": [ |  |     { |  |       "type": "MIT", |  |       "url": "http://github.com/EventSource/eventsource/raw/master/LICENSE" |  |     } |  |   ], |  |   "devDependencies": { |  |     "buffer-from": "^1.1.1", |  |     "express": "^4.15.3", |  |     "mocha": "^3.5.3", |  |     "nyc": "^11.2.1", |  |     "serve-static": "^1.12.3", |  |     "ssestream": "^1.0.0", |  |     "standard": "^10.0.2", |  |     "webpack": "^3.5.6" |  |   }, |  |   "scripts": { |  |     "test": "mocha --reporter spec && standard", |  |     "polyfill": "webpack lib/eventsource-polyfill.js example/eventsource-polyfill.js", |  |     "postpublish": "git push && git push --tags", |  |     "coverage": "nyc --reporter=html --reporter=text _mocha --reporter spec" |  |   }, |  |   "engines": { |  |     "node": ">=12.0.0" |  |   }, |  |   "dependencies": {}, |  |   "standard": { |  |     "ignore": [ |  |       "example/eventsource-polyfill.js" |  |     ], |  |     "globals": [ |  |       "URL" |  |     ] |  |   } |  | } | 
 |