forked from mojaloop/central-event-processor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.16 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
{
"name": "central-event-processor",
"version": "8.7.0",
"description": "CEP for Mojaloop Central-Ledger to monitor the notificaion kafka topic and act on it",
"main": "app.js",
"dependencies": {
"@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.6.3",
"@mojaloop/central-services-stream": "8.4.0",
"@mojaloop/ml-number": "8.2.0",
"bluebird": "3.7.2",
"config": "3.2.4",
"json-rules-engine": "5.0.0",
"leaked-handles": "5.2.0",
"moment": "2.24.0",
"mongoose": "5.8.0",
"mustache": "3.1.0",
"proxyquire": "2.1.3",
"request": "2.88.0",
"request-promise": "4.2.5",
"rxjs": "6.5.3",
"uuid4": "1.1.4"
},
"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": "istanbul cover tape -- 'test/unit/**/*.test.js'",
"test:coverage-check": "npm run test:coverage && istanbul check-coverage",
"start": "WITH_SASL=0&&LD_LIBRARY_PATH=$PWD/node_modules/node-rdkafka/build/deps && node app.js",
"standard": "standard",
"dev": "nodemon app.js",
"docker:up": "docker-compose -f docker-compose.yml up",
"audit:resolve": "SHELL=sh resolve-audit",
"audit:check": "SHELL=sh check-audit",
"dep:check": "npx ncu -e 2",
"dep:update": "npx ncu -u"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mojaloop/central-event-processor.git"
},
"author": "Valentin Genev",
"license": "MIT",
"bugs": {
"url": "https://github.com/mojaloop/central-event-processor/issues"
},
"homepage": "https://github.com/mojaloop/central-event-processor#readme",
"devDependencies": {
"bluebird": "3.7.2",
"faucet": "0.0.1",
"istanbul": "1.1.0-alpha.1",
"mockgoose": "8.0.4",
"nodemon": "2.0.1",
"npm-audit-resolver": "2.1.0",
"npm-check-updates": "3.2.2",
"rewire": "4.0.1",
"sinon": "7.5.0",
"standard": "14.3.1",
"tap-xunit": "2.4.1",
"tape": "4.11.0",
"tapes": "4.1.0"
}
}