forked from infitx-org/inter-scheme-proxy-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
122 lines (122 loc) · 4.28 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
{
"name": "inter-scheme-proxy-adapter",
"version": "1.3.3",
"private": true,
"description": "Schemes Proxy implementation (ISPA)",
"author": "Eugen Klymniuk (geka-evk)",
"contributors": [
"Eugen Klymniuk <eugen.klymniuk@infitx.com>",
"Steven Oderayi <steven.oderayi@infitx.com>"
],
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"start:build": "npm run build && npm start",
"start:dev": "ts-node -r dotenv/config -P ./tsconfig.json src/index.ts",
"test": "npm run test:unit",
"test:unit": "jest --testMatch='**/unit/**/*.test.ts'",
"test:xunit": "JEST_JUNIT_OUTPUT_DIR=./test/reports/ JEST_JUNIT_OUTPUT_NAME=xunit.xml npm run test:unit -- --reporters=jest-junit",
"test:coverage": "npm run test:unit -- --coverage --coverageThreshold='{}'",
"test:coverage-check": "npm run test:unit -- --coverage",
"test:int": "jest --testMatch='**/test/integration/**/*.test.ts'",
"test:functional": "echo \"ACTION: Add functional test here, or remove this script. Also check CI configs to comment out the necessary job'\"",
"test:integration": "./test/scripts/test-integration.sh",
"lint": "eslint ./src/**/*.ts ./test/**/*.ts",
"lint:fix": "npm run lint -- --fix",
"build": "tsc",
"watch": "tsc -w",
"script:token": "ts-node -r dotenv/config -P ./tsconfig.test.json ./test/scripts/getToken.ts",
"script:tls": "ts-node -r dotenv/config -P ./tsconfig.test.json ./test/scripts/tlsExample.ts",
"audit:resolve": "npx resolve-audit --production",
"audit:fix": "npm audit fix",
"audit:check": "npx audit-ci --config ./audit-ci.jsonc",
"dep:check": "npx --no-install ncu -e 2",
"dep:update": "npx --no-install ncu -u",
"release": "npx standard-version --no-verify --releaseCommitMessageFormat 'ci(release): {{currentTag}} [skip ci]'",
"snapshot": "npx standard-version --no-verify --skip.changelog --prerelease snapshot --releaseCommitMessageFormat 'ci(snapshot): {{currentTag}}'",
"prepare": "husky || true"
},
"dependencies": {
"@hapi/hapi": "^21.3.12",
"@mojaloop/central-services-logger": "^11.5.1",
"@mojaloop/sdk-standard-components": "^19.6.1",
"axios": "^1.7.9",
"convict": "^6.2.4",
"fast-json-patch": "^3.1.1",
"fast-safe-stringify": "^2.1.1",
"random-word-slugs": "^0.1.7",
"ws": "^8.18.0"
},
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@types/convict": "^6.1.6",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.13",
"@types/node": "^22.10.1",
"@types/ws": "^8.5.13",
"@typescript-eslint/eslint-plugin": "8.17.0",
"@typescript-eslint/parser": "8.17.0",
"audit-ci": "^7.1.0",
"axios-mock-adapter": "^2.1.0",
"dotenv": "^16.4.7",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"lint-staged": "^15.2.10",
"mock-socket": "^9.3.1",
"npm-audit-resolver": "3.0.0-RC.0",
"npm-check-updates": "17.1.11",
"prettier": "3.4.2",
"replace": "^1.2.2",
"standard-version": "^9.5.0",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "5.7.2"
},
"engines": {
"node": ">=18.x"
},
"overrides": {
"shins": {
"ajv": "6.12.3",
"ejs": "3.1.10",
"sanitize-html": "2.12.1",
"yargs-parser": "18.1.1",
"markdown-it": "12.3.2"
},
"widdershins": {
"swagger2openapi": "7.0.8",
"yargs-parser": "13.1.2",
"markdown-it": "12.3.2"
}
},
"standard-version": {
"scripts": {
"postchangelog": "replace '\\[mojaloop/#(\\d+)\\]\\(https://github.com/mojaloop/(.*)/issues/(\\d+)\\)' '[mojaloop/#$1](https://github.com/mojaloop/project/issues/$1)' CHANGELOG.md"
}
},
"lint-staged": {
"./src/*.ts": [
"eslint --fix",
"prettier --write --ignore-unknown"
]
},
"homepage": "https://github.com/mojaloop/inter-scheme-proxy-adapter#readme",
"bugs": {
"url": "https://github.com/mojaloop/inter-scheme-proxy-adapter/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mojaloop/inter-scheme-proxy-adapter.git"
},
"keywords": [
"infitx",
"mojaloop",
"proxy",
"inter-scheme-proxy-adapter"
]
}