forked from mojaloop/central-event-processor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.19 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
{
"name": "central-event-processor",
"version": "7.0.0",
"description": "CEP for Mojaloop Central-Ledger to monitor the notificaion kafka topic and act on it.",
"main": "app.js",
"dependencies": {
"@hapi/boom": "7.4.2",
"@hapi/hapi": "18.3.1",
"@mojaloop/central-services-error-handling": "5.2.0",
"@mojaloop/central-services-shared": "6.4.1",
"@mojaloop/central-services-stream": "6.2.1",
"@mojaloop/central-services-health": "7.0.0",
"bluebird": "3.5.4",
"config": "3.1.0",
"healthcheck-server": "1.0.0",
"json-rules-engine": "2.3.6",
"leaked-handles": "5.2.0",
"moment": "2.24.0",
"mongoose": "5.5.8",
"mongoose-unique-validator": "2.0.3",
"mustache": "3.0.1",
"proxyquire": "2.1.0",
"rc": "1.2.8",
"request": "2.88.0",
"request-promise": "4.2.4",
"rxjs": "6.5.2",
"rxjs-compat": "6.5.2",
"uuid4": "1.1.4"
},
"scripts": {
"test": "nyc mocha test/unit/**/*.test.js --timeout=4000",
"test:unit": "tape 'test/unit/**/*.test.js'",
"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"
},
"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": {
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"coveralls": "3.0.3",
"faucet": "0.0.1",
"istanbul": "1.1.0-alpha.1",
"jest": "24.8.0",
"jsonpath": "1.0.1",
"mockgoose": "8.0.1",
"mongodb-memory-server": "5.1.1",
"npm-run-all": "4.1.5",
"nodemon": "1.19.1",
"nyc": "14.1.1",
"rewire": "4.0.1",
"sinon": "7.3.2",
"sinon-mongoose": "2.3.0",
"standard": "12.0.1",
"tape": "4.10.1",
"tapes": "4.1.0"
}
}