@mojaloop/central-services-stream
Version:
Streaming library code for central services.
114 lines (113 loc) • 3.71 kB
JSON
{
"name": "@mojaloop/central-services-stream",
"version": "11.9.1",
"description": "Streaming library code for central services.",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/mojaloop/central-services-stream/issues"
},
"homepage": "https://github.com/mojaloop/central-services-stream#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/mojaloop/central-services-stream.git"
},
"author": "ModusBox",
"contributors": [
"Miguel de Barros <miguel.debarros@modusbox.com>",
"Rajiv Mothilal <rajiv.mothilal@modusbox.com>",
"Sam Kummary <sam@mojaloop.io",
"Georgi Georgiev <georgi.georgiev@modusbox.com>",
"Valentin Genev <valentin.genev@modusbox.com>"
],
"keywords": [
"mojaloop",
"kafka",
"stream"
],
"main": "src/index.js",
"pre-commit": [
"lint",
"test",
"dep:check",
"audit:check"
],
"scripts": {
"test": "npm run test:unit",
"standard": "standard",
"standard:fix": "standard --fix",
"pretest": "npm run lint",
"lint": "npm run standard",
"lint:fix": "npm run standard:fix",
"test:unit": "npx tapes 'test/unit/**/**.test.js' | tap-spec",
"test:xunit": "npx tapes 'test/unit/**/**.test.js' | tap-xunit > ./test/results/xunit.xml",
"test:coverage": "npx nyc --reporter=lcov --reporter=text-summary tapes -- 'test/unit/**/**.test.js'",
"test:coverage-check": "npm run test:coverage && nyc check-coverage",
"test:functional": "echo 'No functional tests defined'",
"test:integration": "echo 'No integration tests defined'",
"audit:fix": "npm audit fix",
"audit:check": "npx audit-ci --config ./audit-ci.jsonc",
"dep:check": "npx ncu -e 2",
"dep:update": "npx ncu -u",
"release": "npx standard-version --no-verify --releaseCommitMessageFormat 'chore(release): {{currentTag}} [skip ci]'",
"snapshot": "npx standard-version --no-verify --skip.changelog --prerelease snapshot --releaseCommitMessageFormat 'chore(snapshot): {{currentTag}}'"
},
"dependencies": {
"@opentelemetry/api": "1.9.0",
"async": "3.2.6",
"async-exit-hook": "2.0.1",
"events": "3.3.0",
"node-rdkafka": "3.6.1",
"safe-stable-stringify": "2.5.0"
},
"devDependencies": {
"@mojaloop/central-services-error-handling": "13.1.5",
"@mojaloop/central-services-logger": "11.10.3",
"@opentelemetry/auto-instrumentations-node": "0.69.0",
"@opentelemetry/sdk-node": "0.212.0",
"audit-ci": "7.1.0",
"npm-check-updates": "19.3.2",
"nyc": "17.1.0",
"pre-commit": "1.2.2",
"replace": "1.2.2",
"rewire": "9.0.1",
"sinon": "21.0.1",
"standard": "17.1.2",
"standard-version": "9.5.0",
"tap-spec": "5.0.0",
"tap-xunit": "2.4.1",
"tape": "4.13.3",
"tapes": "4.1.0",
"uuid4": "2.0.3"
},
"overrides": {
"cross-spawn": "7.0.6",
"trim": "0.0.3",
"simple-swizzle": "0.2.2",
"js-yaml": ">=4.1.1",
"lodash": "4.17.23"
},
"imports": {
"#src/*": "./src/*.js",
"#test/*": "./test/*.js"
},
"peerDependencies": {
"@mojaloop/central-services-error-handling": ">=13.x.x",
"@mojaloop/central-services-logger": ">=11.x.x"
},
"peerDependenciesMeta": {
"@mojaloop/central-services-error-handling": {
"optional": false
},
"@mojaloop/central-services-logger": {
"optional": false
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"standard-version": {
"scripts": {
"postchangelog": "replace '\\[mojaloop/#(\\d+)\\]\\(https://github.com/mojaloop/(.*)/issues/(\\d+)\\)' '[mojaloop/#$1](https://github.com/mojaloop/project/issues/$1)' CHANGELOG.md"
}
}
}