-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
165 lines (165 loc) · 4.86 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
{
"name": "ml-testing-toolkit",
"description": "Testing Toolkit for Mojaloop implementations",
"version": "18.4.3",
"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]>"
],
"engines": {
"node": ">=18.x"
},
"repository": {
"type": "git",
"url": "https://github.com/mojaloop/ml-testing-toolkit.git"
},
"bugs": "https://github.com/mojaloop/ml-testing-toolkit/issues",
"config": {},
"bin": "src/index.js",
"standard": {
"env": [
"jest"
],
"ignore": [
"test",
"postman",
"documents",
"spec_files",
"simulator"
]
},
"pre-commit": [
"lint"
],
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"standard": "standard",
"standard:fix": "standard --fix",
"dev": "nodemon src/index.js",
"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'",
"lint": "npm run standard",
"lint:fix": "npm run standard:fix",
"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",
"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}}'",
"genexec": "pkg -t node8-win ."
},
"dependencies": {
"@elastic/elasticsearch": "8.15.1",
"@hapi/basic": "7.0.2",
"@hapi/boom": "10.0.1",
"@hapi/good": "9.0.1",
"@hapi/hapi": "21.3.12",
"@hapi/inert": "7.1.0",
"@hapi/vision": "7.0.3",
"@mojaloop/central-services-logger": "11.5.1",
"@mojaloop/ml-schema-transformer-lib": "^v2.3.4",
"@mojaloop/ml-testing-toolkit-shared-lib": "14.0.1",
"@mojaloop/sdk-standard-components": "^19.4.1",
"@now-ims/hapi-now-auth": "2.1.0",
"@types/socket.io": "3.0.2",
"adm-zip": "0.5.16",
"atob": "2.1.2",
"axios": "1.7.7",
"chai": "4.4.1",
"cookie-parser": "1.4.7",
"cookies": "0.9.1",
"cors": "2.8.5",
"dotenv": "16.4.5",
"express": "4.21.1",
"express-validator": "7.2.0",
"fs": "0.0.1-security",
"handlebars": "4.7.8",
"hapi-auth-bearer-token": "8.0.0",
"hapi-openapi": "3.0.0",
"hapi-swagger": "17.3.0",
"ilp-packet": "3.1.3",
"js-yaml": "4.1.0",
"json-refs": "3.0.15",
"json-rules-engine": "7.0.0",
"lodash": "4.17.21",
"mongo-uri-builder": "4.0.0",
"mongoose": "8.8.0",
"multer": "1.4.4",
"mustache": "4.2.0",
"mv": "2.1.1",
"node-dir": "0.1.17",
"node-strings": "1.0.2",
"npm-run-all": "4.1.5",
"openapi-backend": "5.11.1",
"parse-strings-in-object": "1.6.0",
"passport": "0.7.0",
"passport-jwt": "4.0.1",
"path": "0.12.7",
"postman-collection": "4.5.0",
"postman-sandbox": "5.1.2",
"rc": "1.2.8",
"request": "2.88.2",
"request-promise-native": "1.0.9",
"request-to-curl": "0.1.6",
"selectn": "1.1.2",
"socket.io": "4.8.1",
"socket.io-client": "4.8.1",
"ulidx": "2.4.1",
"uuid": "11.0.2",
"uuid4": "2.0.3",
"ws": "8.18.0"
},
"devDependencies": {
"@types/jest": "29.5.14",
"audit-ci": "7.1.0",
"get-port": "7.1.0",
"jest": "29.7.0",
"jest-junit": "16.0.0",
"nodemon": "3.1.7",
"npm-check-updates": "17.1.10",
"nyc": "17.1.0",
"parse-strings-in-object": "1.6.0",
"pre-commit": "1.2.2",
"proxyquire": "2.1.3",
"replace": "1.2.2",
"sinon": "19.0.2",
"standard": "17.1.2",
"standard-version": "9.5.0",
"supertest": "7.0.0"
},
"generator-swaggerize": {
"version": "4.1.0"
},
"pkg": {
"scripts": "src/**/custom-functions/*.js",
"options": [
"experimental-modules"
]
},
"standard-version": {
"scripts": {
"postchangelog": "replace '\\[mojaloop/#(\\d+)\\]\\(https://github.com/mojaloop/(.*)/issues/(\\d+)\\)' '[mojaloop/#$1](https://github.com/mojaloop/project/issues/$1)' CHANGELOG.md"
}
},
"overrides": {
"npm-check-updates": {
"rimraf": "4.1.2"
},
"pacote": {
"read-package-json": "6.0.0",
"cacache": "17.0.4"
},
"make-fetch-happen": {
"cacache": "17.0.4"
}
}
}