-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
94 lines (94 loc) · 3.18 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
{
"name": "central-event-processor",
"version": "12.1.0",
"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 <[email protected]>",
"Miguel de Barros <[email protected]>"
],
"engines": {
"node": "=18.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",
"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",
"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": "12.0.7",
"@mojaloop/central-services-health": "14.0.2",
"@mojaloop/central-services-logger": "11.2.2",
"@mojaloop/central-services-metrics": "12.0.8",
"@mojaloop/central-services-shared": "18.2.0",
"@mojaloop/central-services-stream": "11.2.0",
"@mojaloop/event-sdk": "14.0.0",
"@mojaloop/ml-number": "11.2.3",
"config": "3.3.9",
"json-rules-engine": "6.5.0",
"leaked-handles": "5.2.0",
"moment": "2.29.4",
"mongoose": "8.0.3",
"mustache": "4.2.0",
"request": "2.88.2",
"request-promise": "4.2.6",
"rxjs": "7.8.1",
"uuid4": "2.0.3"
},
"devDependencies": {
"audit-ci": "^6.6.1",
"mockgoose": "8.0.4",
"nodemon": "3.0.2",
"npm-check-updates": "16.14.12",
"nyc": "^15.1.0",
"pre-commit": "1.2.2",
"proxyquire": "2.1.3",
"replace": "^1.2.2",
"rewire": "7.0.0",
"sinon": "17.0.1",
"standard": "17.1.0",
"standard-version": "^9.5.0",
"tap-spec": "^5.0.0",
"tap-xunit": "2.4.1",
"tape": "5.7.2",
"tapes": "4.1.0"
},
"standard-version": {
"scripts": {
"postchangelog": "replace '\\[mojaloop/#(\\d+)\\]\\(https://github.com/mojaloop/(.*)/issues/(\\d+)\\)' '[mojaloop/#$1](https://github.com/mojaloop/project/issues/$1)' CHANGELOG.md"
}
}
}