-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
89 lines (89 loc) · 3.04 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
{
"name": "@mojaloop/ml-testing-toolkit-shared-lib",
"version": "14.0.3",
"description": "Shared library for ml-testing-toolkit re-usable functions",
"main": "src/index.js",
"contributors": [
"Vijaya Kumar <[email protected]>",
"Miguel de Barros <[email protected]>"
],
"engines": {
"node": ">=18.x"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/mojaloop/ml-testing-toolkit-shared-lib.git"
},
"author": "Vijaya Kumar Guthi, ModusBox Inc.",
"bugs": {
"url": "https://github.com/mojaloop/ml-testing-toolkit-shared-lib/issues"
},
"homepage": "https://github.com/mojaloop/ml-testing-toolkit-shared-lib#readme",
"pre-commit": [
"lint",
"dep:check"
],
"scripts": {
"start": "node src/index.js",
"standard": "standard",
"standard:fix": "standard --fix",
"lint": "npm run standard",
"lint:fix": "npm run standard:fix",
"test": "npm run test:unit",
"test:unit": "jest --testMatch '**/test/unit/**/*.test.js'",
"test:int": "jest --reporters=default --reporters=jest-junit --testMatch '**/test/integration/**/*.test.js'",
"test:coverage": "jest --coverage --coverageThreshold='{}' --testMatch '**/test/unit/**/*.test.js'",
"test:coverage-check": "jest --coverage --testMatch '**/test/unit/**/*.test.js'",
"test:junit": "jest --reporters=default --reporters=jest-junit --testMatch '**/test/unit/**/*.test.js'",
"test:integration": "./test/integration-runner.sh ",
"cover": "npx nyc --all report --reporter=lcov npm run test",
"audit:check": "npx audit-ci --config ./audit-ci.jsonc",
"audit:fix": "npm audit fix",
"dep:check": "npx ncu -e 2",
"dep:update": "npx ncu -u",
"prepare": "husky || true",
"release": "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}}'"
},
"dependencies": {
"ajv": "8.17.1",
"faker": "5.5.3",
"json-schema-faker": "0.5.8",
"json-schema-ref-parser": "9.0.9",
"lodash": "4.17.21",
"node-dir": "0.1.17"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@types/jest": "29.5.14",
"audit-ci": "^7.1.0",
"husky": "^9.1.7",
"jest": "29.7.0",
"jest-junit": "16.0.0",
"npm-check-updates": "17.1.14",
"pre-commit": "^1.2.2",
"replace": "^1.2.2",
"standard": "^17.1.2",
"standard-version": "^9.5.0"
},
"overrides": {
"cross-spawn": "7.0.6",
"glob": "9.3.5",
"rimraf": "5.0.10"
},
"standard-version": {
"scripts": {
"postchangelog": "replace '\\[mojaloop/#(\\d+)\\]\\(https://github.com/mojaloop/(.*)/issues/(\\d+)\\)' '[mojaloop/#$1](https://github.com/mojaloop/project/issues/$1)' CHANGELOG.md"
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"standard": {
"env": [
"jest"
]
}
}