-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1 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
{
"name": "kafka-node-wrapper",
"version": "1.0.23",
"description": "Kafka Node Wrapper",
"main": "src/index.js",
"scripts": {
"start": "docker-compose up",
"stop": "docker-compose down",
"lint": "eslint src/**.js",
"test": "nyc --reporter=html --reporter=text mocha --timeout 999999 test.js"
},
"author": "patrick.opie",
"keywords": [
"kafka",
"node",
"docker",
"docker-compose",
"node-rdkafka",
"wrapper"
],
"repository": {
"type": "git",
"url": "https://github.com/1337programming/kafka-node-wrapper.git"
},
"bugs": {
"url": "https://github.com/1337programming/kafka-node-wrapper/issues"
},
"homepage": "https://github.com/1337programming/kafka-node-wrapper.git",
"license": "ISC",
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.19.1",
"eslint-config-google": "^0.9.1",
"mocha": "^5.1.0",
"nyc": "^11.7.1"
},
"dependencies": {
"dotenv": "^5.0.1",
"node-rdkafka": "^2.3.2",
"rxjs": "^5.5.11"
}
}