This repository has been archived by the owner on Mar 9, 2023. It is now read-only.
forked from nodefluent/kafka-streams
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.72 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "kafka-streams",
"version": "5.0.0",
"description": "kafka-streams for Node.js",
"types": "dist/types.d.ts",
"main": "dist/index.js",
"scripts": {
"consumeFromTopic": "node ./examples/consumeFromTopic.js",
"consumeOneProduceTwo": "node ./examples/consumeOneProduceTwo.js",
"consumeOneProduceTwoTopics": "node ./examples/consumeOneProduceTwoTopics.js",
"build": "tsc",
"fieldSum": "node ./examples/fieldSum.js",
"mergeTopics": "node ./examples/mergeTopics.js",
"produceToTopic": "node ./examples/produceToTopic.js",
"topicAsTable": "node ./examples/topicAsTable.js",
"window": "node ./examples/window.js",
"wordCount": "node ./examples/wordCount.js",
"word-count": "yarn wordCount",
"topicExtractor": "DEBUG=kafka-streams:mph node ./examples/topicExtractor.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",
"yarn:openssl": "LDFLAGS='-L/usr/local/opt/openssl/lib' CPPFLAGS='-I/usr/local/opt/openssl/include' yarn",
"prepublishOnly": "tsc -p tsconfig.json",
"lint": "eslint src/. --ext .ts,.js"
},
"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 <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nodefluent/kafka-streams/issues"
},
"homepage": "https://github.com/nodefluent/kafka-streams#readme",
"dependencies": {
"bluebird": "~3.7.2",
"debug": "~4.1.1",
"global": "~4.4.0",
"lodash.clone": "~4.5.0",
"lodash.clonedeep": "~4.5.0",
"most": "1.7.3",
"most-subject": "5.3.0",
"node-rdkafka": "^2.10.1",
"sinek": "~9.1.0",
"uuid": "~3.4.0"
},
"devDependencies": {
"@types/mocha": "^8.0.3",
"@types/node": "^14.0.27",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"async": "~3.2.0",
"eslint": "^7.7.0",
"jsdoc": "~3.6.3",
"jsdoc-to-markdown": "~5.0.3",
"log4bro": "~3.14.0",
"mocha": "~7.0.1",
"proxyquire": "~2.1.3",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"mocha": {
"extension": [
"ts",
"js"
],
"exit": true,
"timeout": 32500,
"recursive": true,
"require": [
"ts-node/register",
"source-map-support/register"
]
}
}