-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
93 lines (93 loc) · 2.96 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
{
"name": "@mojaloop/sdk-standard-components",
"version": "19.6.2",
"description": "A set of standard components for connecting to Mojaloop API enabled Switches",
"main": "src/index.js",
"types": "src/index.d.ts",
"pre-commit": [
"lint",
"test",
"dep:check",
"audit:check"
],
"scripts": {
"build": "tsc -p ./tsconfig.json",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "npm run test:unit",
"test:unit": "jest --ci --collectCoverage=false --reporters=default --env=node --runInBand test/unit",
"test:xunit": "JEST_JUNIT_OUTPUT_FILE=./test/results/junit.xml npm run test:unit -- --reporters=jest-junit",
"test:coverage": "jest --coverage --coverageThreshold='{}'",
"test:coverage-check": "jest --coverage",
"audit:fix": "npm audit fix",
"audit:check": "npx audit-ci --config ./audit-ci.jsonc",
"dep:check": "NODE_OPTIONS=\"--dns-result-order=ipv4first\" ncu -e 2",
"dep:update": "ncu -u",
"release": "standard-version --releaseCommitMessageFormat 'chore(release): {{currentTag}} [skip ci]'",
"snapshot": "standard-version --no-verify --skip.changelog --prerelease snapshot --releaseCommitMessageFormat 'chore(snapshot): {{currentTag}}'"
},
"author": "James Bush, ModusBox Inc.",
"contributors": [
"Steven Oderayi <[email protected]>",
"Paweł Marzec <[email protected]>",
"Valentin Genev <[email protected]>",
"Kevin Leyow <[email protected]>"
],
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"dependencies": {
"@mojaloop/ml-schema-transformer-lib": "^2.4.1",
"axios": "1.7.9",
"axios-retry": "4.5.0",
"base64url": "3.0.1",
"fast-safe-stringify": "^2.1.1",
"ilp-packet": "3.1.3",
"ilp-packet-v1": "2.2.0",
"jsonwebtoken": "9.0.2",
"jws": "4.0.0"
},
"overrides": {
"shins": {
"ajv": "6.12.3",
"ejs": "3.1.10",
"sanitize-html": "2.12.1",
"markdown-it": "12.3.2"
},
"widdershins": {
"swagger2openapi": "7.0.8",
"markdown-it": "12.3.2"
}
},
"devDependencies": {
"@mojaloop/api-snippets": "^17.7.5",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.1",
"audit-ci": "^7.1.0",
"axios-mock-adapter": "2.1.0",
"eslint": "8.57.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.31.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"nock": "^13.5.6",
"npm-check-updates": "^17.1.11",
"pre-commit": "^1.2.2",
"replace": "^1.2.2",
"standard-version": "^9.5.0",
"typescript": "^5.7.2"
},
"imports": {
"#src/*": "./src/*.js",
"#test/*": "./test/*.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"
}
}
}