UNPKG

pubsub-tool

Version:

Producer and Consumer Tool for every streaming component

52 lines (51 loc) 1.38 kB
{ "name": "pubsub-tool", "version": "0.0.2", "description": "Producer and Consumer Tool for every streaming component", "main": "lib/index.js", "types": "lib/index.d.ts", "repository": { "type": "git", "url": "git+https://github.com/SteveLin100132/pubsub-tool.git" }, "scripts": { "test": "nyc --reporter=lcov mocha --require ts-node/register test/**/*.ts", "start": "npm run build:live", "start:file": "npm run build:file", "ts": "nodemon --exec ./node_modules/.bin/ts-node -- ", "build:live": "nodemon --exec ./node_modules/.bin/ts-node -- ./src/index.ts", "build:file": "nodemon --exec ./node_modules/.bin/ts-node --", "build": "tsc" }, "keywords": [ "Kafka", "Schema", "Registry", "Avro" ], "author": "Steve Y Lin", "license": "ISC", "dependencies": { "avsc": "^5.5.3", "kafka-node": "^5.0.0", "request": "^2.88.2", "request-promise": "^4.2.6", "rxjs": "^6.6.3", "uuid": "^8.3.2" }, "devDependencies": { "@types/mocha": "^8.2.0", "@types/node": "^14.14.20", "@types/request": "^2.48.5", "@types/request-promise": "^4.1.47", "@types/uuid": "^8.3.0", "mocha": "^8.2.1", "nodemon": "^2.0.7", "nyc": "^15.1.0", "should": "^13.2.3", "sinon": "^9.2.3", "ts-node": "^9.1.1", "tslint": "^6.1.3", "typescript": "^4.1.3" } }