forked from Collaborne/node-rdkafka-prometheus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.39 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
{
"name": "node-rdkafka-prometheus",
"version": "1.0.0",
"description": "Helper for exposing node-rdkafka statistics through prometheus",
"main": "index.js",
"scripts": {
"prepublish": "npm run lint",
"lint": "eslint ./",
"lint:fix": "npm run lint -- --fix",
"start": "docker-compose -p node-rdkafka-stats -f compose/base.yaml -f compose/dev.yaml up --always-recreate-deps --remove-orphans -d",
"tap": "tap"
},
"repository": {
"type": "git",
"url": "git+https://github.com/answerbook/node-rdkafka-prometheus.git"
},
"keywords": [
"node-rdkafka",
"rdkafka",
"kafka",
"prometheus",
"monitoring",
"statistics"
],
"author": "Phil Ciampini <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/answerbook/node-rdkafka-prometheus/issues"
},
"homepage": "https://github.com/answerbook/node-rdkafka-prometheus#readme",
"dependencies": {
"@log4js-node/log4js-api": "^1.0.0",
"prom-client": "^12.0.0"
},
"devDependencies": {
"@logdna/setup-chain": "^1.3.2",
"eslint": "^7.32.0",
"eslint-config-logdna": "^7.0.3",
"node-rdkafka": "^2.18.0",
"tap": "^16.3.10"
},
"eslintConfig": {
"root": true,
"extends": [
"logdna"
],
"ignorePatterns": [
"node_modules/",
"coverage/"
],
"parserOptions": {
"ecmaVersion": 2020
}
}
}