forked from nodefluent/kafka-streams
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.17 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
63
64
65
66
67
68
69
{
"name": "kafka-streams",
"version": "4.7.0",
"description": "kafka-streams for Node.js",
"typings": "index.d.ts",
"main": "index.js",
"scripts": {
"word-count": "node ./examples/wordCount.js",
"obs-test": "_mocha test/unit/Observable.test.js",
"test-unit": "_mocha --recursive --exit -R spec test/unit",
"test-int": "_mocha --recursive --timeout 22500 --exit -R spec test/int",
"test-int:debug": "DEBUG=sinek:*,kafka-streams:* _mocha --recursive --timeout 22500 --exit -R spec test/int",
"test-int:cov": "istanbul cover _mocha -- --recursive --timeout 22500 --exit -R spec test/int/ && istanbul check-coverage --statements 60",
"test": "npm run test-unit && npm run test-int",
"jsdoc": "rm -r ./docs/jsdoc && jsdoc ./lib --recurse -R ./README.md -d ./docs/jsdoc",
"jsdoc2md": "rm ./docs/doc.md && jsdoc2md -f ./lib/**/*.js -d > ./docs/doc.md",
"docs": "npm run jsdoc && npm run jsdoc2md",
"kafka:start": "./kafka-setup/start.sh",
"kafka:stop": "./kafka-setup/stop.sh",
"kafka:logs": "docker-compose --file ./kafka-setup/docker-compose.yml logs -f",
"ts": "tsc ./index.d.ts",
"yarn:openssl": "LDFLAGS='-L/usr/local/opt/openssl/lib' CPPFLAGS='-I/usr/local/opt/openssl/include' yarn"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nodefluent/kafka-streams.git"
},
"keywords": [
"kafka-streams",
"kafka",
"streams",
"streaming",
"topics",
"produce",
"consume",
"merge",
"join",
"map",
"flat",
"filter",
"reduce",
"flink",
"window",
"combine"
],
"author": "Christian Froehlingsdorf <chris@5cf.de>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nodefluent/kafka-streams/issues"
},
"homepage": "https://github.com/nodefluent/kafka-streams#readme",
"dependencies": {
"bluebird": "~3.5.2",
"debug": "~4.1.0",
"global": "^4.3.2",
"most": "~1.7.3",
"most-subject": "~6.0.0",
"sinek": "~6.23.3"
},
"devDependencies": {
"async": "~2.6.1",
"jsdoc": "~3.5.5",
"jsdoc-to-markdown": "~4.0.1",
"log4bro": "~3.7.1",
"mocha": "~5.2.0",
"proxyquire": "~2.1.0",
"uuid": "~3.3.2"
}
}