-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
99 lines (99 loc) · 3.09 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@mojaloop/central-services-stream",
"version": "11.4.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 <[email protected]>",
"Rajiv Mothilal <[email protected]>",
"Sam Kummary <[email protected]",
"Georgi Georgiev <[email protected]>",
"Valentin Genev <[email protected]>"
],
"keywords": [
"shared",
"central",
"services",
"mojaloop"
],
"main": "src/index.js",
"pre-commit": [
"lint",
"dep:check",
"audit:check",
"test"
],
"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",
"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": {
"async": "3.2.6",
"async-exit-hook": "2.0.1",
"events": "3.3.0",
"node-rdkafka": "2.18.0"
},
"devDependencies": {
"audit-ci": "^7.1.0",
"npm-check-updates": "17.1.11",
"nyc": "17.1.0",
"pre-commit": "1.2.2",
"replace": "^1.2.2",
"rewire": "7.0.0",
"sinon": "19.0.2",
"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"
},
"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"
}
}
}