forked from mojaloop/email-notifier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.9 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
{
"name": "email-notifier",
"version": "7.3.0",
"description": "email notifier to monitor the notificaion kafka topic and send emails.",
"main": "app.js",
"dependencies": {
"@hapi/hapi": "18.3.1",
"@mojaloop/central-services-error-handling": "7.3.0",
"@mojaloop/central-services-shared": "7.2.0",
"@mojaloop/central-services-stream": "6.2.2",
"@mojaloop/central-services-health": "7.0.0",
"camelcase": "5.3.1",
"check-types": "9.0.1",
"config": "3.2.2",
"json-rules-engine": "3.1.0",
"lazy-ass": "1.6.0",
"lodash": "4.17.15",
"mustache": "3.0.1",
"nodemailer": "6.3.0",
"rxjs": "6.5.2",
"rxjs-compat": "6.5.2",
"uuid4": "1.1.4"
},
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js",
"standard": "standard",
"test": "npm run test:unit | faucet",
"test:unit": "tape 'test/unit/**/*.test.js'",
"test:xunit": "tape 'test/unit/**/*.test.js' | tap-xunit",
"test:coverage": "istanbul cover tape -- 'test/unit/**/*.test.js'",
"test:coverage-check": "npm run test:coverage && istanbul check-coverage",
"audit:resolve": "SHELL=sh resolve-audit",
"audit:check": "SHELL=sh check-audit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mojaloop/email-notifier"
},
"author": "Valentin Genev",
"license": "MIT",
"bugs": {
"url": "https://github.com/mojaloop/email-notifier"
},
"homepage": "https://github.com/mojaloop/email-notifier#readme",
"devDependencies": {
"coveralls": "3.0.6",
"faucet": "0.0.1",
"istanbul": "1.1.0-alpha.1",
"jsonpath": "1.0.2",
"npm-audit-resolver": "1.5.0",
"nodemailer-mock": "1.4.3",
"nodemon": "1.19.1",
"npm-run-all": "4.1.5",
"nyc": "14.1.1",
"proxyquire": "2.1.3",
"rewire": "4.0.1",
"rxjs-marbles": "5.0.2",
"sinon": "7.4.1",
"standard": "13.1.0",
"tape": "4.11.0",
"tapes": "4.1.0"
}
}