forked from mojaloop/central-settlement
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
154 lines (154 loc) · 5.3 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
{
"name": "central-settlement",
"description": "Central settlements hosted by a scheme to record and make settlements.",
"version": "13.4.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"
},
"dependencies": {
"@hapi/basic": "6.0.0",
"@hapi/boom": "9.1.3",
"@hapi/catbox-memory": "5.0.1",
"@hapi/good": "9.0.1",
"@hapi/hapi": "20.1.5",
"@hapi/inert": "6.0.3",
"@hapi/vision": "6.1.0",
"@mojaloop/event-sdk": "10.7.1",
"@mojaloop/central-ledger": "13.10.0",
"@mojaloop/central-services-database": "10.7.0",
"@mojaloop/central-services-error-handling": "11.3.0",
"@mojaloop/central-services-health": "13.0.0",
"@mojaloop/central-services-logger": "10.6.1",
"@mojaloop/central-services-shared": "13.0.5",
"@mojaloop/central-services-stream": "10.7.0",
"@mojaloop/ml-number": "11.1.0",
"@now-ims/hapi-now-auth": "2.0.4",
"async": "3.2.0",
"async-retry": "1.3.1",
"bignumber.js": "9.0.1",
"blipp": "4.0.2",
"hapi-auth-bearer-token": "8.0.0",
"hapi-openapi": "3.0.0",
"hapi-swagger": "14.2.4",
"lodash": "4.17.21",
"mustache": "4.2.0",
"parse-strings-in-object": "2.0.0",
"rc": "1.2.8",
"uuid4": "2.0.2",
"vm": "0.1.0"
},
"devDependencies": {
"@hapi/joi": "17.1.1",
"@types/lodash": "4.14.172",
"@mojaloop/central-services-metrics": "11.0.0",
"ajv": "8.6.2",
"ajv-keywords": "5.0.0",
"axios": "0.21.1",
"bluebird": "3.7.2",
"chai": "4.3.4",
"chai-exclude": "2.0.3",
"chai-subset": "1.6.0",
"eslint": "7.32.0",
"faucet": "0.0.1",
"get-port": "5.1.1",
"jest": "27.0.6",
"jest-junit": "12.2.0",
"node-fetch": "2.6.1",
"nodemon": "2.0.12",
"npm-audit-resolver": "2.3.1",
"npm-check-updates": "11.8.3",
"nyc": "15.1.0",
"pre-commit": "1.2.2",
"proxyquire": "2.1.3",
"rewire": "5.0.0",
"sinon": "11.1.2",
"standard": "16.0.3",
"supertest": "6.1.4",
"swagmock": "1.0.0",
"tap-xunit": "2.4.1",
"tape": "5.3.0",
"tapes": "4.1.0"
},
"peerDependencies": {
"@mojaloop/central-services-error-handling": "11.3.0",
"@mojaloop/central-services-logger": "10.6.1",
"@mojaloop/central-services-metrics": "11.0.0",
"@mojaloop/event-sdk": "10.7.1",
"ajv": "8.6.2",
"ajv-keywords": "5.0.0"
},
"peerDependenciesMeta": {
"@mojaloop/central-services-error-handling": {
"optional": false
},
"@mojaloop/central-services-logger": {
"optional": false
},
"@mojaloop/central-services-metrics": {
"optional": false
},
"@mojaloop/event-sdk": {
"optional": false
},
"ajv": {
"optional": false
},
"ajv-keyboards": {
"optional": false
}
},
"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 | faucet",
"test:all": "run-s test",
"test:unit": "tape 'test/unit/**/*.test.js'",
"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": "tape 'test/integration/**/*.test.js'",
"test:integration": "sh ./test/integration-runner.sh ./test/integration-runner.env",
"test:int:narrow": "jest --config './jest.integration.config.js' --coverage --runInBand --testMatch '**/test/int/**/*.(test|spec).js'",
"audit:resolve": "SHELL=sh resolve-audit --production",
"audit:check": "SHELL=sh check-audit --production",
"dep:check": "npx ncu -e 2",
"dep:update": "npx ncu -u"
},
"generator-swaggerize": {
"version": "4.1.0"
},
"main": "./server",
"standard": {
"ignore": [
"test/unit/data/invalidFile/dummyFeeCalculationTestScriptInvalidFile.js"
]
}
}