UNPKG

1.41 kBJSONView Raw
1{
2 "name": "eventsource",
3 "version": "1.0.5",
4 "description": "W3C compliant EventSource client for Node.js and browser (polyfill)",
5 "keywords": [
6 "eventsource",
7 "http",
8 "streaming",
9 "sse",
10 "polyfill"
11 ],
12 "homepage": "http://github.com/EventSource/eventsource",
13 "author": "Aslak Hellesøy <aslak.hellesoy@gmail.com>",
14 "repository": {
15 "type": "git",
16 "url": "git://github.com/EventSource/eventsource.git"
17 },
18 "bugs": {
19 "url": "http://github.com/EventSource/eventsource/issues"
20 },
21 "directories": {
22 "lib": "./lib"
23 },
24 "main": "./lib/eventsource",
25 "license": "MIT",
26 "licenses": [
27 {
28 "type": "MIT",
29 "url": "http://github.com/EventSource/eventsource/raw/master/LICENSE"
30 }
31 ],
32 "devDependencies": {
33 "express": "^4.15.3",
34 "mocha": "^3.4.2",
35 "nyc": "^11.0.2",
36 "serve-static": "^1.12.3",
37 "sse": "^0.0.6",
38 "standard": "^10.0.2",
39 "webpack": "^3.0.0"
40 },
41 "scripts": {
42 "test": "mocha --reporter spec && standard",
43 "polyfill": "webpack lib/eventsource-polyfill.js example/eventsource-polyfill.js",
44 "postpublish": "git push && git push --tags",
45 "coverage": "nyc --reporter=html --reporter=text _mocha --reporter spec"
46 },
47 "engines": {
48 "node": ">=0.12.0"
49 },
50 "dependencies": {
51 "original": "^1.0.0"
52 },
53 "standard": {
54 "ignore": [
55 "example/eventsource-polyfill.js"
56 ]
57 }
58}