-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.2 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.2 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
{
"name": "suuupra-test-orchestrator",
"version": "1.0.0",
"description": "Comprehensive testing framework for Suuupra microservices",
"main": "test-orchestrator.js",
"scripts": {
"test": "node test-orchestrator.js",
"test:verbose": "DEBUG=1 node test-orchestrator.js",
"test:single": "node test-single-service.js",
"test:load": "node test-load.js",
"test:contracts": "node test-contracts.js",
"install-deps": "npm run install-deps:node && npm run install-deps:python && npm run install-deps:go",
"install-deps:node": "for dir in services/*/; do (cd \"$dir\" && [ -f package.json ] && npm install || true); done",
"install-deps:python": "for dir in services/*/; do (cd \"$dir\" && [ -f requirements.txt ] && pip install -r requirements.txt || true); done",
"install-deps:go": "for dir in services/*/; do (cd \"$dir\" && [ -f go.mod ] && go mod tidy || true); done"
},
"dependencies": {
"axios": "^1.11.0",
"chalk": "^4.1.2",
"commander": "^11.0.0",
"node-fetch": "^2.6.7",
"ora": "^5.4.1",
"table": "^6.8.1"
},
"devDependencies": {
"nodemon": "^3.1.10"
},
"engines": {
"node": ">=18.0.0"
},
"author": "Suuupra Team",
"license": "MIT"
}