-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
114 lines (114 loc) · 3.58 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "email-notifier",
"version": "14.0.3",
"description": "email notifier to monitor the notification kafka topic and send emails.",
"license": "Apache-2.0",
"main": "app.js",
"repository": {
"type": "git",
"url": "git+https://github.com/mojaloop/email-notifier"
},
"bugs": {
"url": "https://github.com/mojaloop/email-notifier"
},
"homepage": "https://github.com/mojaloop/email-notifier#readme",
"author": "ModusBox",
"contributors": [
"Valentin Genev <valentin.genev@modusbox.com>",
"Miguel de Barros <miguel.debarros@modusbox.com>"
],
"pre-commit": [
"lint",
"dep:check",
"test"
],
"engines": {
"node": ">=18.x"
},
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js",
"standard": "npx standard",
"standard:fix": "npx standard --fix",
"lint": "npm run standard",
"lint:fix": "npm run standard:fix",
"test": "npm run test:unit | tap-spec",
"test:unit": "tape 'test/unit/**/*.test.js'",
"test:xunit": "tape 'test/unit/**/*.test.js' | tap-xunit",
"test:coverage": "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'",
"audit:fix": "npm audit fix",
"audit:check": "npx audit-ci --config ./audit-ci.jsonc",
"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}}'",
"dep:check": "npx ncu -e 2",
"dep:update": "npx ncu -u"
},
"dependencies": {
"@hapi/hapi": "21.3.12",
"@mojaloop/central-services-error-handling": "13.0.6",
"@mojaloop/central-services-health": "15.0.4",
"@mojaloop/central-services-logger": "11.5.5",
"@mojaloop/central-services-metrics": "12.4.5",
"@mojaloop/central-services-shared": "18.19.0",
"@mojaloop/central-services-stream": "11.5.1",
"@mojaloop/event-sdk": "14.1.5",
"ajv": "8.17.1",
"ajv-keywords": "5.1.0",
"camelcase": "8.0.0",
"check-types": "11.2.3",
"config": "3.3.12",
"json-rules-engine": "7.3.1",
"lazy-ass": "2.0.3",
"lodash": "4.17.21",
"mustache": "4.2.0",
"nodemailer": "6.10.0",
"rxjs": "7.8.2",
"rxjs-compat": "6.6.7",
"uuid4": "2.0.3"
},
"devDependencies": {
"audit-ci": "7.1.0",
"jsonpath": "1.1.1",
"nodemailer-mock": "2.0.8",
"nodemon": "3.1.9",
"npm-check-updates": "17.1.15",
"npm-run-all": "4.1.5",
"nyc": "17.1.0",
"pre-commit": "1.2.2",
"proxyquire": "2.1.3",
"replace": "1.2.2",
"rewire": "7.0.0",
"rxjs-marbles": "7.0.1",
"sinon": "19.0.2",
"standard": "17.1.2",
"standard-version": "9.5.0",
"tap-spec": "5.0.0",
"tape": "5.9.0",
"tapes": "4.1.0"
},
"overrides": {
"shins": {
"ajv": "6.12.3",
"ejs": "3.1.10",
"sanitize-html": "2.12.1",
"markdown-it": "12.3.2",
"express": "4.21.2"
},
"widdershins": {
"swagger2openapi": "7.0.8",
"markdown-it": "12.3.2"
},
"cross-spawn": "7.0.6",
"trim": "0.0.3",
"yargs-parser": "21.1.1",
"braces": "3.0.3"
},
"standard-version": {
"scripts": {
"postchangelog": "replace '\\[mojaloop/#(\\d+)\\]\\(https://github.com/mojaloop/(.*)/issues/(\\d+)\\)' '[mojaloop/#$1](https://github.com/mojaloop/project/issues/$1)' CHANGELOG.md"
}
}
}