n8n-nodes-kafka-batch-consumer 1.0.21 → 1.0.23

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +10 -2
  2. package/run-tests.sh +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "n8n-nodes-kafka-batch-consumer",
3
- "version": "1.0.21",
3
+ "version": "1.0.23",
4
4
  "description": "N8N node for consuming Kafka messages in batches",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -24,8 +24,16 @@
24
24
  "dist/nodes/KafkaBatchConsumer/KafkaBatchConsumer.node.js"
25
25
  ]
26
26
  },
27
- "author": "",
27
+ "author": "Luca Pisani",
28
28
  "license": "MIT",
29
+ "repository": {
30
+ "type": "git",
31
+ "url": "https://github.com/ekulos/n8n-nodes-kafkabatchconsumer.git"
32
+ },
33
+ "bugs": {
34
+ "url": "https://github.com/ekulos/n8n-nodes-kafkabatchconsumer/issues"
35
+ },
36
+ "homepage": "https://github.com/ekulos/n8n-nodes-kafkabatchconsumer#readme",
29
37
  "dependencies": {
30
38
  "kafkajs": "^2.2.4",
31
39
  "n8n-workflow": "^1.0.0"
package/run-tests.sh CHANGED
@@ -22,8 +22,8 @@ echo "✅ Dependencies installed successfully"
22
22
  echo ""
23
23
 
24
24
  # Run tests with coverage
25
- echo "Running tests with coverage..."
26
- npm run test:coverage
25
+ echo "Running tests..."
26
+ npx jest
27
27
 
28
28
  if [ $? -ne 0 ]; then
29
29
  echo ""