-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.19 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
{
"name": "event-stream-proxy",
"version": "1.0.0",
"description": "A proxy tool that converts standard API requests into a streaming API",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/npm/npm.git"
},
"dependencies": {
"console-stamp": "^0.2.9",
"fast-json-patch": "^2.2.1",
"request": "^2.88.2",
"uuid": "^3.4.0",
"xstream": "^11.14.0"
},
"devDependencies": {
"@types/node": "^8.10.66",
"pkg": "^4.2.5",
"typescript": "^4.1.2"
},
"config": {
"HOSTNAME": "127.0.0.1",
"PORT": "3001",
"MODE": "patch",
"PING_INTERVAL": "20",
"REFRESH_INTERVAL": "10",
"PASS_HEADERS": "auth-header,authorization"
},
"scripts": {
"build": "./node_modules/typescript/bin/tsc",
"package": "pkg . -t node7-linux-x64,node7-linux-x86",
"start": "node .",
"start-x86": "./event-stream-proxy-x86",
"start-x64": "./event-stream-proxy-x64",
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -rf index.js event-stream-proxy-x64 event-stream-proxy-x86 node_modules"
},
"bin": "index.js",
"author": "Florian Schäfer <florian.schaefer@securepoint.de>",
"license": "ISC"
}