-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
100 lines (100 loc) · 3.49 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@mojaloop/event-stream-processor",
"version": "12.0.0-snapshot.11",
"description": "event stream processor to monitor kafka event topic and create traces and store logs to efk stack with APM",
"repository": {
"type": "git",
"url": "git+https://github.com/mojaloop/event-stream-processor"
},
"author": "ModusBox",
"contributors": [
"Valentin Genev <[email protected]>",
"Miguel de Barros <[email protected]>"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/mojaloop/event-stream-processor/issues"
},
"homepage": "https://github.com/mojaloop/event-stream-processor#readme",
"engines": {
"node": "=18.x"
},
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"test": "npm run test:unit | faucet",
"standard": "standard",
"standard:fix": "standard --fix",
"lint": "npm run standard",
"lint:fix": "npm run standard:fix",
"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",
"audit:check": "npx audit-ci --config ./audit-ci.jsonc",
"dep:check": "npx ncu -e 2",
"dep:update": "npx ncu -u",
"release": "npx standard-version --no-verify --prerelease snapshot --releaseCommitMessageFormat 'chore(snapshot): {{currentTag}} [skip ci]'",
"releaseReplaceTheAboveWhenNotEXPERIMENTAL": "npx standard-version --no-verify --releaseCommitMessageFormat 'chore(release): {{currentTag}} [skip ci]'",
"snapshot": "npx standard-version --no-verify --skip.changelog --prerelease snapshot --releaseCommitMessageFormat 'chore(snapshot): {{currentTag}}'"
},
"pre-commit": [
"dep:check",
"lint"
],
"dependencies": {
"@hapi/catbox": "11.1.1",
"@hapi/catbox-memory": "5.0.1",
"@mojaloop/central-services-health": "15.0.0",
"@mojaloop/central-services-logger": "11.5.2",
"@mojaloop/central-services-metrics": "12.4.3",
"@mojaloop/central-services-shared": "18.15.1",
"@mojaloop/central-services-stream": "11.4.2",
"@mojaloop/elastic-apm-node": "6.4.0-snapshot",
"@mojaloop/elastic-apm-node-opentracing": "6.4.0-snapshot",
"@mojaloop/event-sdk": "14.1.2",
"deserialize-error": "0.0.3",
"elasticsearch": "16.7.3",
"fluent-logger": "3.4.1",
"lodash": "^4.17.21",
"moment": "2.30.1",
"mustache": "4.2.0",
"parse-strings-in-object": "2.0.0",
"rc": "1.2.8",
"rxjs": "7.8.1",
"traceparent": "1.0.0"
},
"devDependencies": {
"audit-ci": "^7.1.0",
"eslint": "8.57.1",
"faucet": "0.0.4",
"npm-check-updates": "17.1.14",
"nyc": "^17.1.0",
"pre-commit": "1.2.2",
"replace": "^1.2.2",
"standard": "17.1.2",
"standard-version": "^9.5.0",
"tap-spec": "^5.0.0",
"tape": "5.9.0"
},
"overrides": {
"widdershins": {
"ajv": "6.12.3",
"jsonpointer": "5.0.0",
"markdown-it": "12.3.2",
"postcss": "8.4.31",
"swagger2openapi": "7.0.8"
},
"ejs": "3.1.10",
"sanitize-html": "2.12.1",
"markdown-it": "12.3.2",
"trim": "0.0.3",
"cross-spawn": "7.0.6",
"yargs-parser": "21.1.1"
},
"standard-version": {
"scripts": {
"postchangelog": "replace '\\[mojaloop/#(\\d+)\\]\\(https://github.com/mojaloop/(.*)/issues/(\\d+)\\)' '[mojaloop/#$1](https://github.com/mojaloop/project/issues/$1)' CHANGELOG.md"
}
}
}