-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
105 lines (105 loc) · 3.28 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
101
102
103
104
105
{
"name": "@mojaloop/central-services-logger",
"version": "11.5.2",
"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 <[email protected]>",
"Georgi Georgiev <[email protected]>",
"Valentin Genev <[email protected]>",
"Miguel de Barros <[email protected]>"
],
"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": "npm run test:jest && npm run test:unit",
"pretest": "standard",
"standard": "standard",
"standard:fix": "standard --fix",
"lint": "npm run standard",
"lint:fix": "npm run standard:fix",
"test:jest": "jest",
"test:unit": "tapes 'test/unit/**/**.test.js' | tap-spec",
"test:xunit": "npm run test:jest && tapes 'test/unit/**/**.test.js' | tap-xunit > ./test/results/xunit.xml",
"test:coverage": "nyc --reporter=lcov --reporter=text-summary tapes -- 'test/unit/**/**.test.js'",
"test:coverage-check": "npm run test:coverage && nyc check-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": {
"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"
},
"dependencies": {
"parse-strings-in-object": "2.0.0",
"rc": "1.2.8",
"safe-stable-stringify": "^2.5.0",
"winston": "3.17.0"
},
"devDependencies": {
"@types/node": "22.10.5",
"audit-ci": "^7.1.0",
"husky": "9.1.7",
"jest": "^29.7.0",
"license-checker": "25.0.1",
"npm-check-updates": "17.1.13",
"nyc": "17.1.0",
"proxyquire": "2.1.3",
"replace": "^1.2.2",
"sinon": "19.0.2",
"standard": "17.1.2",
"standard-version": "^9.5.0",
"tap-spec": "^5.0.0",
"tap-xunit": "^2.4.1",
"tape": "5.9.0",
"tapes": "4.1.0",
"tsc": "^2.0.4"
},
"standard": {
"ignore": [
"**/src/*.ts"
]
},
"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"
}
}
}