-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
99 lines (99 loc) · 3.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
{
"name": "mojaloop-simulator",
"version": "15.1.2",
"description": "A canonical test example implementation of the parties, transfers and quotes resources of the Mojaloop FSP Interoperability API",
"license": "Apache-2.0",
"main": "src/index.js",
"initial author": "Matt Kingston, ModusBox Inc.",
"contributors": [
"Aaron Reynoza <[email protected]>",
"Kamuela Franco <[email protected]>",
"Kevin Leyow <[email protected]>",
"Matt Kingston <[email protected]>",
"Steven Oderayi <[email protected]>",
"Valentin Genev <[email protected]>",
"Miguel de Barros <[email protected]>",
"ModusBox",
"Mowali",
"Paweł Marzec <[email protected]>"
],
"repository": {
"type": "git",
"url": "git://github.com/mojaloop/mojaloop-simulator.git"
},
"bugs": "http://github.com/mojaloop/mojaloop-simulator/issues",
"engines": {
"node": ">=18.x"
},
"imports": {
"#src/*": "./src/*.js",
"#test/*": "./test/*.js",
"#rules/*": "./rules/*.json"
},
"scripts": {
"postinstall": "husky install",
"start": "node ./src/index.js",
"lint": "eslint ./src/",
"lint:fix": "eslint ./src/ --fix",
"test": "npm run test:unit",
"test:unit": "CONFIG_OVERRIDE=./example.env ava -c 1 --serial './test/unit/**/*.test.js'",
"test:coverage-check": "CONFIG_OVERRIDE=./example.env nyc ava --serial './test/unit/**/*.test.js'",
"test:integration": "CONFIG_OVERRIDE=./example.env jest --config './jest.integration.config.js' --testMatch '**/test/integration/**/*.(test|spec).js' --runInBand",
"test:functional": "echo 'No test specified' && exit 1",
"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": {
"@koa/cors": "5.0.0",
"@mojaloop/central-services-logger": "^11.5.2",
"ajv": "8.17.1",
"chance": "1.1.12",
"core-util-is": "1.0.3",
"dotenv": "16.4.7",
"joi": "17.13.3",
"json-rules-engine": "^7.3.0",
"json-schema-ref-parser": "^9.0.9",
"koa": "2.15.3",
"koa-body": "6.0.1",
"mustache": "4.2.0",
"node-fetch": "^3.3.2",
"openapi-jsonschema-parameters": "12.1.3",
"random-word-slugs": "^0.1.7",
"sqlite": "5.1.1",
"sqlite3": "5.1.7",
"yamljs": "0.3.0"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"audit-ci": "^7.1.0",
"ava": "^6.2.0",
"axios": "^1.7.9",
"eslint": "8.50.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-ava": "^14.0.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jest": "^28.10.0",
"husky": "9.1.7",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"npm-check-updates": "17.1.13",
"npm-run-all": "4.1.5",
"nyc": "17.1.0",
"sinon": "^19.0.2",
"standard-version": "^9.5.0",
"tap-xunit": "2.4.1",
"uuid": "11.0.4"
},
"ava": {
"files": [
"test/**/*.js",
"!test/**/TestUtils.js",
"!scripts/**/*.js"
]
}
}