@financialforcedev/orizuru-transport-kafka
Version:
Kafka transport layer for the orizuru package
62 lines (61 loc) • 1.34 kB
JSON
{
"name": "@financialforcedev/orizuru-transport-kafka",
"version": "1.0.1",
"description": "Kafka transport layer for the orizuru package",
"main": "src/lib/index.js",
"scripts": {
"doc": "jsdoc src/lib -r -d doc --readme readme.md",
"pretest": "eslint src",
"test": "nyc --exclude src/example mocha --recursive src/spec"
},
"repository": {
"type": "git",
"url": "https://github.com/financialforcedev/orizuru-transport-kafka"
},
"keywords": [
"kafka",
"publish",
"subscribe",
"heroku",
"worker",
"dyno",
"orizuru"
],
"author": "financialforce",
"license": "BSD-3-Clause",
"dependencies": {
"lodash": "^4.17.10",
"no-kafka": "^3.2.10"
},
"devDependencies": {
"@financialforcedev/eslint-config": "^4.0.0",
"app-root-path": "^2.0.1",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"jsdoc": "^3.5.5",
"mocha": "^5.2.0",
"nyc": "^12.0.2",
"proxyquire": "^2.0.1",
"sinon": "^5.1.0",
"sinon-chai": "^3.1.0"
},
"nyc": {
"check-coverage": true,
"per-file": true,
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100,
"include": [
"src"
],
"reporter": [
"lcov",
"html",
"text",
"text-summary"
],
"cache": true,
"all": true
}
}