-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.16 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
{
"name": "kafka-webhook-dispatcher",
"version": "1.0.0",
"description": "Recieve kafka messages and dispatch webhooks",
"main": "index.js",
"scripts": {
"start": "node app/main.js",
"test": "jest",
"test:integration": "node test/integration/create-topic-produce-consume.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/simonireilly/kafka-webhook-dispatcher.git"
},
"keywords": [
"kafka",
"webhook",
"nodejs"
],
"author": "simonireilly",
"license": "MIT",
"bugs": {
"url": "https://github.com/simonireilly/kafka-webhook-dispatcher/issues"
},
"homepage": "https://github.com/simonireilly/kafka-webhook-dispatcher#readme",
"engines": {
"node": ">=10.0.0",
"npm": ">=6.0.0"
},
"dependencies": {
"body-parser": "^1.19.0",
"kafka-node": "^4.1.3"
},
"devDependencies": {
"eslint": "^6.0.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jest": "^22.7.1",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"express": "^4.17.1",
"jest": "^24.8.0"
}
}