-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
82 lines (82 loc) · 1.97 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "roach-storm",
"version": "0.11.1",
"description": "Apache Kafka to Google Pub/Sub Gateway, API controlled",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "[email protected]:nodefluent/roach-storm.git",
"author": "Christian Froehlingsdorf <[email protected]>",
"license": "SEE LICENSE IN ./LICENSE",
"private": false,
"scripts": {
"tsv": "tsc -v",
"prepublishOnly": "yarn build",
"build": "rm -rf dist/ && tsc -p tsconfig.json",
"_start": "DEBUG=roach:* node dist/example/index.js",
"start": "yarn build && yarn _start",
"lint": "tslint -c tslint.json -p tsconfig.json",
"fix": "tslint -c tslint.json -p tsconfig.json --fix",
"pkg:i": "./scripts/self-install.sh",
"pkg:u": "./scripts/self-update.sh"
},
"keywords": [
"apache",
"kafka",
"event",
"streaming",
"metrics",
"stats",
"rest",
"http",
"nodefluent",
"http",
"gateway",
"google",
"pub",
"sub",
"pubsub",
"mirror",
"transform",
"filter",
"gcf",
"metrics",
"prometheus",
"functions",
"cloud",
"gcp"
],
"dependencies": {
"@google-cloud/pubsub": "^0.28.1",
"bluebird": "~3.5.4",
"body-parser": "~1.18.3",
"commander": "~2.20.0",
"cors": "~2.8.5",
"debug": "~4.1.1",
"express": "~4.16.4",
"moment": "~2.24.0",
"mongoose": "~5.7.5",
"prom-client": "^11.3.0",
"ramda": "^0.26.1",
"sinek": "~7.29.2"
},
"devDependencies": {
"@types/bluebird": "~3.5.26",
"@types/cors": "~2.8.4",
"@types/debug": "~4.1.3",
"@types/duplexify": "^3.6.0",
"@types/express": "~4.16.1",
"@types/mongoose": "~5.3.24",
"@types/murmurhash": "~0.0.1",
"@types/node": "~11.13.0",
"@types/p-defer": "^1.0.3",
"@types/ramda": "^0.26.6",
"@types/uuid": "~3.4.4",
"mocha": "~6.0.2",
"tslint": "~5.15.0",
"typescript": "~3.4.1"
},
"preferGlobal": true,
"bin": {
"roach-storm": "bin/roach-storm.js"
}
}