{
  "name": "node-test-bed-adapter",
  "version": "3.0.19",
  "description": "An adapter to connect a node.js application to the Test-bed's Common Information Space or Common Simulation Space.",
  "main": "./dist/lib/index.mjs",
  "typings": "./dist/lib/index.d.mts",
  "type": "module",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/DRIVER-EU/node-test-bed-adapter.git"
  },
  "keywords": [
    "kafka",
    "node",
    "typescript",
    "test-bed",
    "cis",
    "css"
  ],
  "author": "Erik Vullings <erik.vullings@gmail.com> (http://www.tno.nl)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/DRIVER-EU/node-test-bed-adapter/issues"
  },
  "homepage": "https://github.com/DRIVER-EU/node-test-bed-adapter#readme",
  "dependencies": {
    "avsc": "^5.7.7",
    "axios": "^1.9.0",
    "form-data": "^4.0.2",
    "kafkajs": "^2.2.4",
    "test-bed-schemas": "1.0.1"
  },
  "devDependencies": {
    "@types/geojson": "^7946.0.16",
    "@types/jasmine": "^5.1.8",
    "@types/node": "^22.15.17",
    "@types/proxyquire": "^1.3.31",
    "jasmine": "^5.7.1",
    "node-gyp": "^11.2.0",
    "proxyquire": "^2.1.3",
    "rimraf": "6.0.1",
    "ts-node": "^10.9.2",
    "typescript": "^5.8.3"
  },
  "scripts": {
    "clean": "rimraf dist",
    "dev": "tsc -w",
    "build": "tsc -b",
    "start": "npm run dev",
    "dry-run": "pnpm publish --dry-run",
    "to-npm": "git push --follow-tags && pnpm publish",
    "patch-release": "npm run clean && npm run build && npm version patch --force -m \"Patch release\" && git push --follow-tags && pnpm publish --no-git-checks",
    "minor-release": "npm run clean && npm run build && npm version minor --force -m \"Minor release\" && git push --follow-tags && pnpm publish --no-git-checks",
    "major-release": "npm run clean && npm run build && npm version major --force -m \"Major release\" && git push --follow-tags && pnpm publish --no-git-checks",
    "rc-dry-run": "npm run clean && npm run build && pnpm publish --tag rc --publish-branch kafkajs --no-git-checks --dry-run",
    "rc": "npm run clean && npm run build && pnpm publish --tag rc --publish-branch kafkajs",
    "test": "jasmine --config=src/test/jasmine.json",
    "producer": "node ../example/dist/producer.js",
    "consumer": "node ../example/dist/consumer.js",
    "startDocker": "./start-docker.sh",
    "stopDocker": "docker-compose down"
  }
}