-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.81 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
{
"name": "kafka-sse-proxy",
"version": "1.0.0",
"description": "Streams a kafka topic as server sent events to a client",
"homepage": "",
"author": {
"name": "Wouter Dullaert",
"email": "wouter.dullaert@tenforce.com",
"url": ""
},
"files": [
"lib"
],
"main": "lib/index.js",
"keywords": [
"sse",
"kafka",
"streaming"
],
"scripts": {
"coverage": "./node_modules/.bin/nyc --reporter=lcov --reporter=html npm test",
"start": "node ./lib/index.js",
"lint": "./node_modules/.bin/eslint ./lib",
"mocha": "npm run lint && ./node_modules/.bin/mocha --exit test/",
"test": "npm run lint && ./node_modules/.bin/nyc --root lib/ ./node_modules/mocha/bin/mocha --exit test/"
},
"eslintConfig": {
"extends": "standard"
},
"engines": {
"node": ">= 8.0.0"
},
"dependencies": {
"app-module-path": "~2.2.0",
"bunyan": "~1.8.12",
"cached": "~4.3.2",
"cors": "~2.8.4",
"express": "~4.16.2",
"http-status-codes": "~1.3.0",
"prom-client": "~10.2.3",
"no-kafka": "~3.2.8",
"sse-utils": "~1.1.0",
"stream-util": "git+https://github.com/wdullaer/stream-util.git#dist",
"uuid": "~3.2.1"
},
"devDependencies": {
"ajv": "~6.2.0",
"chai": "~4.1.2",
"chai-as-promised": "~7.1.1",
"chai-http": "git+https://github.com/farmisen/chai-http.git#Issue-75_Cant_test_expected_error_responses_because_superagent_throws",
"eslint": "~4.18.1",
"eslint-config-standard": "~11.0.0",
"eslint-plugin-promise": "~3.6.0",
"eslint-plugin-standard": "~3.0.1",
"eslint-plugin-import": "~2.9.0",
"eslint-plugin-node": "~6.0.1",
"mocha": "~5.0.1",
"nock": "~9.2.1",
"nyc": "~11.4.1",
"proxyquire": "~1.8.0",
"rewire": "~2.5.2"
},
"repository": "/content-negotiation",
"license": "Apache-2.0"
}