forked from mojaloop/sdk-scheme-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 3.7 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
{
"name": "@mojaloop/sdk-scheme-adapter",
"version": "19.0.1",
"description": "An adapter for connecting to Mojaloop API enabled switches.",
"main": "src/index.js",
"types": "src/index.d.ts",
"engines": {
"node": "=16.x"
},
"_moduleAliases": {
"~": "src"
},
"scripts": {
"start": "node src/index.js",
"audit:check": "npx audit-ci --config ./audit-ci.jsonc",
"build": "npm run build:openapi",
"build:openapi": "npm run build:openapi:inbound",
"build:openapi:inbound": "openapi bundle --output ./src/InboundServer/api.yaml --ext yaml ./src/InboundServer/api_template.yaml",
"lint": "eslint ./src/",
"lint:fix": "eslint ./src/ --fix",
"test": "npm run test:unit",
"test:unit": "jest --runInBand --ci --reporters=default --reporters=jest-junit --env=node test/unit/",
"test:int": "jest --ci --reporters=default --reporters=jest-junit --env=node test/integration",
"validate:api": "npm run validate:api:in",
"validate:api:in": "swagger-cli validate ./src/InboundServer/api.yaml",
"updates:check": "npm run dep:check",
"updates:update": "npm run dep:update && npm install",
"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}}'"
},
"author": "Matt Kingston, James Bush, ModusBox Inc.",
"contributors": [
"Kamuela Franco <[email protected]>",
"Steven Oderayi <[email protected]>",
"Valentin Genev <[email protected]>",
"Shashikant Hirugade <[email protected]>",
"Paweł Marzec <[email protected]>",
"Kevin Leyow <[email protected]",
"Miguel de Barros <[email protected]>",
"Yevhen Kyriukha <[email protected]>"
],
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"repository": {
"type": "git",
"url": "[email protected]:mojaloop/sdk-scheme-adapter.git"
},
"dependencies": {
"@koa/cors": "^3.4.1",
"@mojaloop/api-snippets": "^14.2.3",
"@mojaloop/central-services-shared": "17.3.0",
"@mojaloop/sdk-standard-components": "^17.1.1",
"ajv": "8.11.0",
"axios": "^0.27.2",
"co-body": "^6.1.0",
"dotenv": "^16.0.1",
"env-var": "^7.1.1",
"express": "^4.18.1",
"fast-json-patch": "^3.1.1",
"javascript-state-machine": "^3.1.0",
"js-yaml": "^4.1.0",
"json-schema-ref-parser": "^9.0.9",
"koa": "^2.13.4",
"koa-body": "^5.0.0",
"lodash": "^4.17.21",
"module-alias": "^2.2.2",
"oauth2-server": "^4.0.0-dev.2",
"openapi-jsonschema-parameters": "^12.0.0",
"prom-client": "^14.1.0",
"promise-timeout": "^1.3.0",
"random-word-slugs": "^0.1.6",
"redis": "^4.3.0",
"uuidv4": "^6.2.13",
"ws": "^7.5.5"
},
"devDependencies": {
"@babel/core": "^7.18.13",
"@babel/preset-env": "^7.18.10",
"@redocly/openapi-cli": "^1.0.0-beta.94",
"@types/jest": "^28.1.8",
"audit-ci": "^6.3.0",
"babel-jest": "^28.1.3",
"eslint": "^8.22.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.8.7",
"jest": "^28.1.3",
"jest-junit": "^14.0.0",
"nock": "^13.2.9",
"npm-audit-resolver": "^3.0.0-7",
"npm-check-updates": "^16.0.5",
"openapi-response-validator": "^12.0.0",
"openapi-typescript": "^5.4.1",
"redis-mock": "^0.56.3",
"standard-version": "^9.5.0",
"supertest": "^6.2.4",
"swagger-cli": "^4.0.4"
}
}