-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 965 Bytes
/
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
{
"name": "doctor-kafka-connect",
"version": "1.0.0",
"description": "A healthcheck service for Kafka Connect",
"main": "index.js",
"dependencies": {
"express": "^4.17.1",
"ip": "^1.1.5",
"loglevel": "^1.6.3",
"superagent": "^5.1.0"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^6.2.0",
"nock": "^10.0.6",
"supertest": "^4.0.2"
},
"scripts": {
"start": "node index.js",
"test": "mocha --reporter spec test/**/*.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jahnestacado/kafka-connect-healthcheck.git"
},
"keywords": [
"kafka"
],
"author": "Jahn Estacado",
"license": "MIT",
"bugs": {
"url": "https://github.com/jahnestacado/kafka-connect-healthcheck/issues"
},
"homepage": "https://github.com/jahnestacado/kafka-connect-healthcheck#readme"
}