-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.99 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
{
"name": "prometheus-kafka-connect",
"version": "1.3.0",
"description": "kafka-connect connector for prometheus",
"main": "index.js",
"scripts": {
"start": "node example/sink.js",
"start:dev": "nodemon example/sink.js",
"test": "eslint . && cd local-setup/ && docker-compose up test",
"test:docker": "_mocha --recursive --exit --timeout 12500 -R spec test/",
"test:unit": "_mocha --recursive --exit test/unit/",
"test-ci": "_mocha --report lcovonly --recursive --timeout 12500 --exit -R spec test/ && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"dev:start": "cd local-setup && docker-compose up -d",
"dev:stop": "cd local-setup && docker-compose down"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nodefluent/prometheus-kafka-connect.git"
},
"keywords": [
"kafka-connect",
"connector",
"prometheus",
"kafka",
"connect",
"metrics"
],
"author": "Rian Josua Masikome <[email protected]>",
"contributors": [
"Chris Froehlingsdorf <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/nodefluent/prometheus-kafka-connect/issues"
},
"homepage": "https://github.com/nodefluent/prometheus-kafka-connect#readme",
"dependencies": {
"bluebird": "^3.5.1",
"debug": "^3.1.0",
"kafka-connect": "^3.0.3",
"prom-client": "^10.1.1"
},
"devDependencies": {
"coveralls": "^3.0.0",
"eslint": "^4.9.0",
"eslint-plugin-mocha": "^4.11.0",
"istanbul": "~0.4.5",
"log4bro": "^3.2.0",
"mocha": "^4.0.1",
"mocha-lcov-reporter": "^1.3.0",
"nodemon": "^1.12.1",
"uuid": "^3.1.0"
},
"pre-commit": [
"lint:fix"
],
"pre-push": [
"test:unit"
]
}