-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
78 lines (78 loc) · 2.53 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
{
"name": "sims",
"version": "12.2.1",
"description": "A super-simple fsp simulator",
"main": "src/index.js",
"author": "ModusBox",
"license": "Apache-2.0",
"contributors": [
"Georgi Georgiev <[email protected]>",
"Miguel de Barros <[email protected]>",
"Murthy Kakarlamudi <[email protected]>",
"Rajiv Mothilal <[email protected]>",
"Sri Miriyala <[email protected]>",
"Steven Oderayi <[email protected]>"
],
"repository": {
"type": "git",
"url": "[email protected]:mojaloop/simulator.git"
},
"engines": {
"node": "=18.x"
},
"scripts": {
"pretest": "npm run lint",
"standard": "npx standard",
"lint": "npm run standard",
"lint:fix": "npm run standard -- --fix",
"start": "node src/index.js",
"test": "echo \"Error: 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": "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}}'"
},
"pre-commit": [
"lint",
"dep:check"
],
"dependencies": {
"@hapi/boom": "10.0.1",
"@hapi/good": "9.0.1",
"@hapi/hapi": "21.3.12",
"@hapi/inert": "7.1.0",
"@hapi/joi-date": "2.0.1",
"@hapi/vision": "7.0.3",
"@mojaloop/central-services-error-handling": "13.0.2",
"@mojaloop/central-services-logger": "11.5.1",
"@mojaloop/central-services-metrics": "12.1.0",
"@mojaloop/central-services-shared": "18.11.1",
"@mojaloop/event-sdk": "^14.1.1",
"@mojaloop/sdk-standard-components": "18.2.0",
"axios": "1.7.7",
"base64url": "3.0.1",
"blipp": "4.0.2",
"glob": "11.0.0",
"hapi-swagger": "17.3.0",
"joi": "17.13.3",
"joi-currency-code": "3.0.2",
"lodash": "4.17.21",
"node-cache": "5.1.2"
},
"devDependencies": {
"audit-ci": "^7.1.0",
"npm-audit-resolver": "3.0.0-RC.0",
"npm-check-updates": "17.1.11",
"pre-commit": "1.2.2",
"replace": "^1.2.2",
"standard": "17.1.2",
"standard-version": "^9.5.0"
},
"standard-version": {
"scripts": {
"postchangelog": "replace '\\[mojaloop/#(\\d+)\\]\\(https://github.com/mojaloop/(.*)/issues/(\\d+)\\)' '[mojaloop/#$1](https://github.com/mojaloop/project/issues/$1)' CHANGELOG.md"
}
}
}