-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
171 lines (171 loc) · 6.34 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
166
167
168
169
170
171
{
"name": "central-settlement",
"description": "Central settlements hosted by a scheme to record and make settlements.",
"version": "17.0.1",
"license": "Apache-2.0",
"private": false,
"author": "ModusBox",
"contributors": [
"Deon Botha <[email protected]>",
"Georgi Georgiev <[email protected]>",
"Lazola Lucas <[email protected]>",
"Miguel de Barros <[email protected]>",
"Rajiv Mothilal <[email protected]>",
"Valentin Genev <[email protected]>",
"Adrian Enns <[email protected]>"
],
"repository": {
"type": "git",
"url": "git://github.com/mojaloop/central-settlement"
},
"bugs": "http://github.com/mojaloop/central-settlement/issues",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"engines": {
"node": ">=18.x"
},
"pre-commit": [
"lint",
"dep:check",
"test:unit"
],
"scripts": {
"start": "run-p start:api",
"start:api": "node src/api/index.js",
"watch:api": "nodemon src/api/index.js",
"start:handlers": "node src/handlers/index.js",
"regenerate": "yo swaggerize:test --framework hapi --apiPath './src/interface/swagger.yaml'",
"lint": "standard",
"lint:fix": "standard --fix",
"eslint": "eslint .",
"test": "npm run test:unit",
"test:unit": "npx tape 'test/unit/**/*.test.js' | tap-spec",
"test:xunit": "tape 'test/unit/**/*.test.js' | tap-xunit",
"test:coverage": "nyc --reporter=lcov --reporter=text-summary tapes -- 'test/unit/**/**.test.js'",
"test:coverage-check": "npm run test:coverage && nyc check-coverage",
"test:int": "npx tape 'test/integration/**/*.test.js'",
"test:int:spec": "npm run test:int | tap-spec",
"test:xint": "npm run test:int | tap-xunit > ./test/results/xunit-integration.xml",
"test:functional": "echo 'No functional tests defined'",
"test:integration": "./test/scripts/test-integration.sh",
"docker:build": "docker build --build-arg NODE_VERSION=\"$(cat .nvmrc)-alpine\" -t mojaloop/central-settlement:local .",
"docker:up": "docker-compose -f docker-compose.yml up -d",
"docker:stop": "docker-compose -f docker-compose.yml stop",
"docker:rm": "docker-compose -f docker-compose.yml rm -f -v",
"docker:down": "docker-compose -f docker-compose.yml down -v",
"docker:clean": "docker-compose -f docker-compose.yml down --rmi local",
"audit:fix": "npm audit fix",
"audit:check": "npx audit-ci --config ./audit-ci.jsonc",
"dep:check": "npx ncu -e 2",
"dep:update": "npx ncu -u",
"release": "standard-version --releaseCommitMessageFormat 'chore(release): {{currentTag}} [skip ci]'",
"snapshot": "standard-version --no-verify --skip.changelog --prerelease snapshot --releaseCommitMessageFormat 'chore(snapshot): {{currentTag}}'",
"wait-4-docker": "node ./scripts/_wait4_all.js"
},
"dependencies": {
"@hapi/basic": "7.0.2",
"@hapi/boom": "10.0.1",
"@hapi/catbox-memory": "5.0.1",
"@hapi/good": "9.0.1",
"@hapi/hapi": "21.3.12",
"@hapi/inert": "7.1.0",
"@hapi/vision": "7.0.3",
"@mojaloop/central-ledger": "v19.0.6",
"@mojaloop/database-lib": "11.1.2",
"@mojaloop/central-services-error-handling": "13.0.4",
"@mojaloop/central-services-health": "15.0.2",
"@mojaloop/central-services-logger": "11.5.4",
"@mojaloop/central-services-shared": "18.17.0",
"@mojaloop/central-services-stream": "11.4.3",
"@mojaloop/event-sdk": "14.1.3",
"@mojaloop/ml-number": "11.2.6",
"@mojaloop/sdk-standard-components": "19.6.4",
"@now-ims/hapi-now-auth": "2.1.0",
"async": "3.2.6",
"async-retry": "1.3.3",
"bignumber.js": "9.1.2",
"blipp": "4.0.2",
"hapi-auth-bearer-token": "8.0.0",
"hapi-openapi": "3.0.0",
"hapi-swagger": "17.3.2",
"lodash": "4.17.21",
"mustache": "4.2.0",
"parse-strings-in-object": "2.0.0",
"rc": "1.2.8",
"vm": "0.1.0"
},
"devDependencies": {
"@hapi/joi": "17.1.1",
"@mojaloop/central-services-metrics": "12.4.4",
"@types/lodash": "4.17.15",
"ajv": "8.17.1",
"ajv-keywords": "5.1.0",
"audit-ci": "^7.1.0",
"axios": "1.7.9",
"bluebird": "3.7.2",
"chai": "5.1.2",
"chai-exclude": "3.0.0",
"chai-subset": "1.6.0",
"eslint": "9.19.0",
"esm": "^3.2.25",
"get-port": "7.1.0",
"jest": "29.7.0",
"jest-junit": "16.0.0",
"node-fetch": "3.3.2",
"nodemon": "3.1.9",
"npm-check-updates": "17.1.14",
"nyc": "17.1.0",
"pre-commit": "1.2.2",
"proxyquire": "2.1.3",
"replace": "^1.2.2",
"rewire": "7.0.0",
"sinon": "19.0.2",
"standard": "17.1.2",
"standard-version": "^9.5.0",
"supertest": "7.0.0",
"swagmock": "1.0.0",
"tap-spec": "^5.0.0",
"tap-xunit": "2.4.1",
"tape": "5.9.0",
"tapes": "4.1.0"
},
"overrides": {
"postcss": {
"nanoid": "^3.3.8"
},
"shins": {
"ajv": "6.12.3",
"ejs": "3.1.10",
"sanitize-html": "2.12.1",
"jsonpointer": "5.0.0",
"markdown-it": "12.3.2",
"yargs-parser": "13.1.2",
"postcss": "8.4.31"
},
"widdershins": {
"yargs-parser": "13.1.2",
"markdown-it": "12.3.2",
"swagger2openapi": "7.0.8"
},
"jsonwebtoken": "9.0.0",
"markdown-it": "12.3.2",
"trim": "0.0.3",
"cross-spawn": "7.0.6",
"validator": "13.7.0"
},
"generator-swaggerize": {
"version": "4.1.0"
},
"main": "./server",
"standard": {
"ignore": [
"test/unit/data/invalidFile/dummyFeeCalculationTestScriptInvalidFile.js"
]
},
"standard-version": {
"scripts": {
"postchangelog": "replace '\\[mojaloop/#(\\d+)\\]\\(https://github.com/mojaloop/(.*)/issues/(\\d+)\\)' '[mojaloop/#$1](https://github.com/mojaloop/project/issues/$1)' CHANGELOG.md"
}
}
}