forked from mojaloop/event-stream-processor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.39 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
{
"name": "@mojaloop/event-stream-processor",
"version": "8.7.1-snapshot",
"description": "event stream processor to monitor kafka event topic and create traces and store logs to efk stack with APM",
"main": "app.js",
"scripts": {
"start": "WITH_SASL=0&&LD_LIBRARY_PATH=$PWD/node_modules/node-rdkafka/build/deps&& node app.js",
"test": "npm run test:unit | faucet",
"standard": "standard",
"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",
"dep:check": "npx ncu -e 2",
"dep:update": "npx ncu -u"
},
"pre-commit": [
"dep:check",
"standard"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mojaloop/event-stream-processor"
},
"author": "ModusBox",
"contributors": [
"Valentin Genev <valentin.genev@modusbox.com>",
"Miguel de Barros <miguel.debarros@modusbox.com>"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/mojaloop/event-stream-processor/issues"
},
"homepage": "https://github.com/mojaloop/event-stream-processor#readme",
"dependencies": {
"@hapi/hapi": "18.4.0",
"@mojaloop/central-services-error-handling": "8.6.2",
"@mojaloop/central-services-health": "8.3.0",
"@mojaloop/central-services-logger": "8.6.0",
"@mojaloop/central-services-shared": "8.7.0",
"@mojaloop/central-services-stream": "8.7.0",
"@mojaloop/elastic-apm-node": "6.4.0-snapshot",
"@mojaloop/elastic-apm-node-opentracing": "6.4.1-snapshot",
"@mojaloop/event-sdk": "8.6.2",
"@mojaloop/opentracing": "6.4.0-snapshot",
"deserialize-error": "0.0.3",
"elasticsearch": "16.5.0",
"fluent-logger": "3.4.0",
"fluent-logger-stream": "0.0.1",
"moment": "2.24.0",
"mustache": "3.1.0",
"rxjs": "6.5.3",
"rxjs-compat": "6.5.3",
"tape": "4.11.0",
"tapes": "4.1.0",
"traceparent": "1.0.0",
"uuid4": "1.1.4"
},
"devDependencies": {
"faucet": "0.0.1",
"jsonpath": "1.0.2",
"nodemailer-mock": "1.4.4",
"npm-run-all": "4.1.5",
"nyc": "14.1.1",
"pre-commit": "1.2.2",
"proxyquire": "2.1.3",
"rewire": "4.0.1",
"rxjs-marbles": "5.0.3",
"sinon": "7.5.0",
"standard": "14.3.1",
"tape": "4.11.0",
"tapes": "4.1.0"
}
}