UNPKG

608 BJSONView Raw
1{
2 "name": "ssestream",
3 "version": "1.1.0",
4 "description": "Send Server-Sent Events with a stream",
5 "main": "dist/index.js",
6 "types": "dist/index.d.ts",
7 "repository": "git://github.com/EventSource/node-ssestream.git",
8 "author": "Aslak Hellesøy",
9 "license": "MIT",
10 "devDependencies": {
11 "@types/eventsource": "^1.1.2",
12 "@types/mocha": "^7.0.2",
13 "@types/node": "^13.9.1",
14 "eventsource": "^1.0.5",
15 "mocha": "^7.1.0",
16 "ts-node": "^8.6.2",
17 "typescript": "^3.8.3"
18 },
19 "scripts": {
20 "test": "mocha",
21 "build": "tsc",
22 "prepublishOnly": "npm run build"
23 }
24}