forked from mojaloop/central-event-processor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.65 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.65 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
{
"name": "central-event-processor",
"version": "11.0.3",
"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>"
],
"main": "app.js",
"pre-commit": [
"dep:check",
"audit:check",
"lint",
"test"
],
"scripts": {
"test": "npm run test:unit | faucet",
"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",
"start": "WITH_SASL=0&&LD_LIBRARY_PATH=$PWD/node_modules/node-rdkafka/build/deps && node app.js",
"standard": "npx standard",
"standard:fix": "npx standard --fix",
"lint": "npm run standard",
"lint:fix": "npm run standard:fix",
"dev": "nodemon app.js",
"docker:up": "docker-compose -f docker-compose.yml up",
"audit:resolve": "SHELL=sh resolve-audit --production",
"audit:check": "SHELL=sh check-audit --production",
"dep:check": "npx ncu -e 2",
"dep:update": "npx ncu -u"
},
"dependencies": {
"@mojaloop/central-services-error-handling": "11.3.0",
"@mojaloop/central-services-health": "13.0.0",
"@mojaloop/central-services-logger": "10.6.1",
"@mojaloop/central-services-metrics": "11.0.0",
"@mojaloop/central-services-shared": "13.0.5",
"@mojaloop/central-services-stream": "10.7.0",
"@mojaloop/event-sdk": "10.7.1",
"@mojaloop/ml-number": "11.1.0",
"bluebird": "3.7.2",
"config": "3.3.6",
"json-rules-engine": "6.1.2",
"leaked-handles": "5.2.0",
"moment": "2.29.1",
"mongoose": "5.13.7",
"mustache": "4.2.0",
"proxyquire": "2.1.3",
"request": "2.88.2",
"request-promise": "4.2.6",
"rxjs": "7.3.0",
"uuid4": "2.0.2"
},
"devDependencies": {
"faucet": "0.0.1",
"mockgoose": "8.0.4",
"nodemon": "2.0.12",
"npm-audit-resolver": "2.3.1",
"npm-check-updates": "11.8.3",
"nyc": "^15.1.0",
"pre-commit": "1.2.2",
"rewire": "5.0.0",
"sinon": "11.1.2",
"standard": "16.0.3",
"tap-spec": "^5.0.0",
"tap-xunit": "2.4.1",
"tape": "5.3.1",
"tapes": "4.1.0"
}
}