forked from EventSource/eventsource
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.28 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.28 KB
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
{
"name": "@projectsas/eventsource",
"version": "1.0.10",
"description": "EventSource client for Node.js and browser (polyfill)",
"keywords": [
"eventsource",
"http",
"streaming",
"sse",
"polyfill"
],
"homepage": "http://github.com/projectsas/eventsource",
"repository": "git://github.com/projectsas/eventsource.git",
"directories": {
"lib": "./lib"
},
"main": "./lib/eventsource",
"license": "MIT",
"devDependencies": {
"browserify": "^17.0.0",
"buffer-from": "^1.1.1",
"express": "^4.15.3",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"serve-static": "^1.14.1",
"ssestream": "^1.1.0",
"standard": "^10.0.2"
},
"scripts": {
"test": "standard && mocha --reporter spec",
"polyfill": "browserify lib/eventsource-polyfill.js -o example/eventsource-polyfill.js",
"postpublish": "git push && git push --tags",
"coverage": "nyc --reporter=html --reporter=text _mocha --reporter spec"
},
"engines": {
"node": ">=0.12.0"
},
"dependencies": {
"original": "^1.0.2"
},
"standard": {
"ignore": [
"example/eventsource-polyfill.js",
"*.d.ts"
]
},
"types": "index.d.ts",
"typesVersions": {
"<=3.9": {
"*": [
"ts3.9/*"
]
}
},
"typeScriptVersion": "3.2"
}