-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.5 KB
/
Copy pathpackage.json
File metadata and controls
122 lines (122 loc) · 3.5 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "@mojaloop/central-services-logger",
"version": "11.10.5",
"description": "Mojaloop common logging library",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/mojaloop/central-services-logger.git"
},
"author": "ModusBox",
"contributors": [
"Lazola Lucas <lazola.lucas@modusbox.com>",
"Georgi Georgiev <georgi.georgiev@modusbox.com>",
"Valentin Genev <valentin.genev@modusbox.com>",
"Miguel de Barros <miguel.debarros@modusbox.com>"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/mojaloop/central-services-logger/issues"
},
"homepage": "https://github.com/mojaloop/central-services-logger#readme",
"scripts": {
"test": "jest",
"pretest": "standard",
"standard": "standard",
"standard:fix": "standard --fix",
"lint": "npm run standard",
"lint:fix": "npm run standard:fix",
"test:functional": "true",
"test:integration": "true",
"test:unit": "jest --testPathPattern=test/unit",
"test:xunit": "jest --reporters=default --reporters=jest-junit",
"test:coverage": "jest --coverage",
"test:coverage-check": "jest --coverage",
"audit:fix": "npm audit fix",
"audit:check": "npx audit-ci --config ./audit-ci.jsonc",
"dep:check": "ncu -e 2",
"dep:update": "ncu -u",
"release": "standard-version --no-verify --releaseCommitMessageFormat 'chore(release): {{currentTag}} [skip ci]'",
"snapshot": "standard-version --no-verify --skip.changelog --prerelease snapshot --releaseCommitMessageFormat 'chore(snapshot): {{currentTag}}'",
"prepare": "husky || true"
},
"overrides": {
"license-checker": {
"glob": "10.5.0"
},
"js-yaml": "4.2.0",
"shins": {
"ajv": "6.12.3",
"ejs": "3.1.10",
"sanitize-html": "2.12.1",
"yargs-parser": "18.1.1",
"markdown-it": "12.3.2"
},
"widdershins": {
"swagger2openapi": "7.0.8",
"yargs-parser": "13.1.2",
"markdown-it": "12.3.2"
},
"yargs": {
"yargs-parser": "^21.1.1"
},
"jsonwebtoken": "9.0.0",
"jsonpointer": "5.0.0",
"cross-spawn": "6.0.6",
"path-to-regexp": "0.1.12",
"validator": "13.7.0",
"micromatch": "4.0.8",
"braces": "3.0.3",
"trim": "0.0.3",
"brace-expansion": "2.1.1",
"glob": "11.1.0",
"@isaacs/brace-expansion": "5.0.1",
"lodash": "4.18.1",
"replace": {
"minimatch": "3.1.5"
}
},
"dependencies": {
"@opentelemetry/api": "1.9.1",
"parse-strings-in-object": "2.0.0",
"rc": "1.2.8",
"safe-stable-stringify": "^2.5.0",
"triple-beam": "1.4.1",
"winston": "3.19.0"
},
"devDependencies": {
"@opentelemetry/auto-instrumentations-node": "^0.77.0",
"@types/node": "24.13.2",
"audit-ci": "^7.1.0",
"axios": "1.18.1",
"husky": "9.1.7",
"jest": "^30.4.2",
"jest-junit": "^17.0.0",
"license-checker": "25.0.1",
"npm-check-updates": "22.2.7",
"pre-commit": "^2.0.0",
"replace": "^1.2.2",
"sinon": "22.0.0",
"standard": "17.1.2",
"standard-version": "^9.5.0",
"tsc": "^2.0.4"
},
"standard": {
"ignore": [
"**/src/*.ts"
]
},
"pre-commit": [
"dep:check",
"lint",
"test:unit"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"standard-version": {
"scripts": {
"postchangelog": "replace '\\[mojaloop/#(\\d+)\\]\\(https://github.com/mojaloop/(.*)/issues/(\\d+)\\)' '[mojaloop/#$1](https://github.com/mojaloop/project/issues/$1)' CHANGELOG.md"
}
}
}