-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.59 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.59 KB
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
{
"name": "soap-rest-proxy",
"version": "1.0.0",
"description": "A configurable SOAP-to-REST proxy that translates between legacy SOAP services and modern REST APIs",
"main": "dist/index.js",
"scripts": {
"build": "tsc && cd admin-ui && npm run build",
"build:server": "tsc",
"build:ui": "cd admin-ui && npm run build",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"dev:ui": "cd admin-ui && npm run dev",
"watch": "tsc --watch",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"test": "jest",
"test:unit": "jest --testPathPattern=tests/.*\\.test\\.ts$",
"test:integration": "jest --testPathPattern=tests/integration/.*\\.test\\.ts$",
"test:coverage": "jest --coverage --coverageThreshold='{\"global\":{\"branches\":90,\"functions\":90,\"lines\":90,\"statements\":90}}'",
"test:watch": "jest --watch",
"setup": "npm install && cd admin-ui && npm install",
"precommit": "npm run lint && npm run test",
"validate": "npm run lint && npm run test:coverage && npm run build",
"quick-start": "node scripts/quick-start.js",
"validate-config": "ts-node scripts/validate-config.ts",
"mock-server": "cd examples/mock-soap-server && npm install && npm start",
"benchmark": "k6 run benchmarks/simple-get.js",
"benchmark:all": "npm run benchmark && k6 run benchmarks/cache-hit.js && k6 run benchmarks/mixed-workload.js",
"benchmark:report": "node scripts/generate-benchmark-report.js",
"docs": "typedoc --out docs/api src/",
"type-check": "tsc --noEmit"
},
"keywords": [
"soap",
"rest",
"proxy",
"xml",
"json",
"api-gateway",
"soap-adapter",
"rest-adapter"
],
"author": "",
"license": "MIT",
"dependencies": {
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/exporter-jaeger": "^1.25.1",
"@opentelemetry/exporter-trace-otlp-http": "^0.52.1",
"@opentelemetry/exporter-zipkin": "^1.25.1",
"@opentelemetry/sdk-trace-node": "^1.25.1",
"ajv": "^8.12.0",
"ajv-formats": "^3.0.1",
"axios": "^1.6.0",
"cors": "^2.8.5",
"crypto-js": "^4.2.0",
"dotenv": "^16.3.1",
"eventemitter3": "^5.0.1",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"fast-xml-parser": "^4.3.2",
"graphql": "^15.8.0",
"graphql-http": "^1.22.0",
"handlebars": "^4.7.8",
"helmet": "^7.1.0",
"ioredis": "^5.3.2",
"js-yaml": "^4.1.0",
"jsonwebtoken": "^9.0.2",
"opossum": "^8.1.2",
"p-retry": "^6.2.0",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"passport-oauth2": "^1.8.0",
"prom-client": "^15.1.0",
"rate-limit-redis": "^4.2.0",
"redis": "^4.6.11",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"uuid": "^10.0.0",
"winston": "^3.11.0",
"ws": "^8.16.0"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.10",
"@types/js-yaml": "^4.0.9",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^20.10.0",
"@types/opossum": "^8.1.9",
"@types/passport": "^1.0.16",
"@types/passport-jwt": "^4.0.0",
"@types/supertest": "^6.0.2",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"@types/uuid": "^10.0.0",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"eslint": "^8.54.0",
"jest": "^29.7.0",
"nock": "^13.5.0",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
},
"engines": {
"node": ">=18.0.0"
}
}