-
Notifications
You must be signed in to change notification settings - Fork 91
/
Copy pathpackage.json
34 lines (34 loc) · 868 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
{
"name": "sse.js",
"version": "2.5.0",
"description": "A flexible Server-Sent Events source; supports POST requests and custom headers",
"main": "./lib/sse.js",
"type": "module",
"scripts": {
"build": "tsc",
"test": "jest --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/mpetazzoni/sse.js"
},
"types": "types/sse.d.ts",
"keywords": [
"sse",
"server-side-events",
"server-sent-events",
"eventsource"
],
"author": "Maxime Petazzoni <[email protected]> (https://www.bulix.org)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/mpetazzoni/sse.js/issues"
},
"homepage": "https://github.com/mpetazzoni/sse.js",
"devDependencies": {
"@babel/core": "^7.23.5",
"@babel/preset-env": "^7.23.5",
"jest": "^29.7.0",
"typescript": "^5.2.2"
}
}