forked from OasisDigital/sse-example-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 779 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 779 Bytes
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
{
"name": "sse-example-server",
"version": "1.0.0",
"private": true,
"description": "",
"scripts": {
"clean": "npm install rimraf && rimraf build",
"build": "tsc --outDir build",
"prepublish": "npm run build",
"lint": "tslint \"src/**/*.ts\"",
"debug": "node-debug build/main.js",
"start": "node build/main.js",
"go": "npm run build && npm run start"
},
"author": "Oasis Digital Solutions Inc.",
"license": "ISC",
"dependencies": {
"compression": "^1.6.2",
"express": "^4.14.0",
"sse-channel": "^2.0.2"
},
"devDependencies": {
"@types/compression": "0.0.33",
"@types/express": "^4.0.34",
"tslint": "^3.15.1",
"typescript": "^2.0.10"
},
"engines": {
"node": ">= 6.7.0",
"npm": ">= 3"
}
}