-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 4.09 KB
/
package.json
File metadata and controls
130 lines (130 loc) · 4.09 KB
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "central-event-processor",
"version": "12.2.6",
"private": true,
"description": "CEP for Mojaloop Central-Ledger to monitor the notification kafka topic and act on it",
"homepage": "https://github.com/mojaloop/central-event-processor#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/mojaloop/central-event-processor.git"
},
"bugs": {
"url": "https://github.com/mojaloop/central-event-processor/issues"
},
"license": "Apache-2.0",
"author": "ModusBox",
"contributors": [
"Valentin Genev <valentin.genev@modusbox.com>",
"Miguel de Barros <miguel.debarros@modusbox.com>"
],
"engines": {
"node": "22.x"
},
"main": "src/index.js",
"imports": {
"#src/*": "./src/*.js"
},
"pre-commit": [
"dep:check",
"audit:check",
"lint",
"test"
],
"scripts": {
"test": "npm run test:unit",
"test:unit": "npx tape 'test/unit/**/*.test.js' | tap-spec",
"test:xunit": "npx tape 'test/unit/**/**.test.js' | tap-xunit > ./test/results/xunit.xml",
"test:coverage": "npx nyc tapes -- 'test/unit/**/*.test.js' | tap-spec; nyc report ---reporter=text",
"test:coverage-check": "npm run test:coverage && nyc check-coverage",
"test:functional": "echo 'No functional tests defined'",
"test:integration": "echo 'No integration tests defined'",
"start": "node ./src/index.js",
"standard": "npx standard",
"standard:fix": "npx standard --fix",
"lint": "npm run standard",
"lint:fix": "npm run standard:fix",
"dev": "npx nodemon ./src/index.js",
"docker:up": "docker-compose -f docker-compose.yml up",
"audit:check": "npx audit-ci --config ./audit-ci.jsonc",
"audit:fix": "npm audit fix",
"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": {
"@mojaloop/central-services-error-handling": "13.1.6",
"@mojaloop/central-services-health": "15.2.2",
"@mojaloop/central-services-logger": "11.10.4",
"@mojaloop/central-services-metrics": "12.8.5",
"@mojaloop/central-services-shared": "18.35.6",
"@mojaloop/central-services-stream": "11.9.1",
"@mojaloop/event-sdk": "14.8.3",
"@mojaloop/ml-number": "11.4.3",
"axios": "1.13.6",
"config": "4.4.1",
"json-rules-engine": "7.3.1",
"leaked-handles": "5.2.0",
"moment": "2.30.1",
"mongoose": "9.3.1",
"mustache": "4.2.0",
"rxjs": "7.8.2",
"uuid4": "2.0.3"
},
"devDependencies": {
"audit-ci": "^7.1.0",
"mongodb-memory-server": "11.0.1",
"nodemon": "3.1.14",
"npm-check-updates": "19.6.5",
"nyc": "^18.0.0",
"pre-commit": "1.2.2",
"proxyquire": "2.1.3",
"replace": "^1.2.2",
"rewire": "9.0.1",
"sinon": "21.0.3",
"standard": "17.1.2",
"standard-version": "^9.5.0",
"tap-spec": "^5.0.0",
"tap-xunit": "2.4.1",
"tape": "5.9.0",
"tapes": "4.1.0"
},
"overrides": {
"form-data": "4.0.5",
"on-headers": "1.1.0",
"async": "3.2.6",
"postcss": {
"nanoid": "^3.3.8"
},
"shins": {
"ajv": "6.12.3",
"ejs": "3.1.10",
"sanitize-html": "2.12.1",
"jsonpointer": "5.0.0",
"markdown-it": "12.3.2",
"postcss": "8.4.31"
},
"widdershins": {
"markdown-it": "12.3.2",
"swagger2openapi": "7.0.8"
},
"markdown-it": "12.3.2",
"trim": "0.0.3",
"cross-spawn": "7.0.6",
"tough-cookie": "4.1.3",
"qs": "6.14.2",
"js-yaml": "4.1.1",
"fast-xml-parser": "5.5.7",
"undici": "6.24.1",
"lodash": "4.17.23",
"axios": "1.13.6",
"immutable": "5.1.5",
"minimatch@3.0.5": "3.1.5",
"yargs-parser@11.1.1": "13.1.2"
},
"standard-version": {
"scripts": {
"postchangelog": "replace '\\[mojaloop/#(\\d+)\\]\\(https://github.com/mojaloop/(.*)/issues/(\\d+)\\)' '[mojaloop/#$1](https://github.com/mojaloop/project/issues/$1)' CHANGELOG.md"
}
}
}