-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
118 lines (118 loc) · 3.75 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
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "@mojaloop/ml-testing-toolkit-client-lib",
"description": "Testing Toolkit Client Library",
"version": "1.3.0",
"license": "Apache-2.0",
"author": "Vijaya Kumar Guthi, ModusBox Inc. ",
"contributors": [
"Georgi Logodazhki <[email protected]>",
"Sam Kummary <[email protected]>",
"Steven Oderayi <[email protected]>",
"Vijay Kumar <[email protected]>",
"Aaron Reynoza <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/mojaloop/ml-testing-toolkit-client-lib.git"
},
"bugs": "https://github.com/mojaloop/ml-testing-toolkit-client-lib/issues",
"engines": {
"node": ">=18.x"
},
"config": {},
"bin": {
"ml-ttk-cli": "bin/cli.js"
},
"standard": {
"env": [
"jest"
],
"ignore": [
"test",
"postman",
"documents",
"spec_files",
"simulator"
]
},
"pre-commit": [
"standard"
],
"scripts": {
"start": "node src/index.js",
"standard": "standard",
"standard:fix": "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",
"lint": "npm run standard",
"lint:fix": "npm run standard:fix",
"audit:fix": "npm audit fix",
"generate-docs": "jsdoc -c jsdoc.json",
"audit:check": "npx audit-ci --config ./audit-ci.jsonc",
"dep:check": "npx ncu -e 2",
"dep:update": "npx ncu -u",
"genexec": "pkg -t node8-win .",
"cli": "node src/client.js",
"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": {
"@mojaloop/central-services-logger": "11.5.1",
"@mojaloop/ml-testing-toolkit-shared-lib": "14.0.1",
"@mojaloop/sdk-standard-components": "19.2.0",
"@slack/webhook": "7.0.3",
"atob": "2.1.2",
"aws-sdk": "2.1691.0",
"axios": "1.7.7",
"cli-table3": "0.6.5",
"commander": "12.1.0",
"dotenv": "16.4.5",
"fs": "0.0.1-security",
"lodash": "4.17.21",
"mv": "2.1.1",
"node-dir": "0.1.17",
"node-strings": "1.0.2",
"parse-strings-in-object": "1.6.0",
"path": "0.12.7",
"rc": "1.2.8",
"request": "2.88.2",
"request-promise-native": "1.0.9",
"socket.io-client": "4.8.1"
},
"devDependencies": {
"audit-ci": "^7.1.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"npm-check-updates": "17.1.6",
"nyc": "^17.1.0",
"parse-strings-in-object": "1.6.0",
"pre-commit": "1.2.2",
"replace": "^1.2.2",
"sinon": "19.0.2",
"standard": "^17.1.2",
"standard-version": "^9.5.0"
},
"generator-swaggerize": {
"version": "4.1.0"
},
"pkg": {
"scripts": "src/**/custom-functions/*.js",
"options": [
"experimental-modules"
]
},
"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"
}
}
}