seo-generator-server/package.json
StillHammer 4f60de68d6 Fix BatchProcessor initialization and add comprehensive test suite
- Fix BatchProcessor constructor to avoid server blocking during startup
- Add comprehensive integration tests for all modular combinations
- Enhance CLAUDE.md documentation with new test commands
- Update SelectiveLayers configuration for better LLM allocation
- Add AutoReporter system for test automation
- Include production workflow validation tests

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-19 14:17:49 +08:00

59 lines
3.0 KiB
JSON

{
"name": "seo-generator-server",
"version": "1.0.0",
"description": "Hello World SEO Generator",
"main": "server.js",
"scripts": {
"start": "node server.js",
"manual": "node server.js --mode=manual",
"auto": "node server.js --mode=auto",
"dev": "node server.js",
"test:llm": "cross-env TEST_LLM_HOOKS=1 node --test tests/llm/*.test.js",
"test:smoke": "node --test tests/smoke/*.test.js",
"test:content": "node --test tests/content/*.test.js",
"test:integration": "node --test tests/integration/*.test.js",
"test:all": "node tests/test-runner.js",
"test:light": "node tests/test-runner-light.js",
"test:basic": "node --test tests/basic-validation.test.js",
"test:all-simple": "npm run test:smoke && npm run test:llm && npm run test:content && npm run test:integration",
"test:systematic": "node tests/runners/SystematicTestRunner.js",
"test:systematic:quick": "node tests/runners/SystematicTestRunner.js --quick",
"test:generate": "node tests/systematic/ModuleTestGenerator.js",
"test:dashboard": "node tests/dashboard/TestDashboardServer.js",
"test:ai-validation": "node -e \"const {AIContentValidator} = require('./tests/validators/AIContentValidator'); AIContentValidator.quickValidate('Test de validation rapide du contenu généré automatiquement par IA').then(r => console.log('Validation:', r))\"",
"test:validate-system": "node tests/test-validation-complete.js",
"test:inject-reporter": "node tools/inject-auto-reporter.js",
"test:all-with-reporter": "node tests/run-all-tests-with-reporter.js",
"test:real": "node tests/integration/run-integration-tests.js",
"test:critical": "node tests/integration/run-integration-tests.js",
"test:comprehensive": "node --test tests/comprehensive-integration.test.js",
"test:modular": "node --test tests/comprehensive-integration.test.js",
"test:fast-ti": "node --test tests/fast-integration.test.js",
"test:integration-fast": "node --test tests/fast-integration.test.js",
"test:fast-ti-report": "node --test tests/fast-integration.test.js && echo '🎯 Rapport généré automatiquement dans reports/'",
"test:auto-report": "node --test tests/fast-ti-auto-report.test.js",
"test:production-workflow": "node --test tests/production/production-workflow.test.js",
"test:production-quick": "node --test tests/production/production-workflow-quick.test.js",
"test:production-loop": "npm run test:basic && npm run test:production-quick && echo '✅ Production ready loop validated'"
},
"dependencies": {
"aws-sdk": "^2.1692.0",
"axios": "^1.6.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"google-auth-library": "^10.3.0",
"google-spreadsheet": "^5.0.2",
"googleapis": "^126.0.1",
"node-fetch": "^3.3.2",
"nodemailer": "^7.0.6",
"pino": "^9.9.0",
"pino-pretty": "^13.1.1",
"undici": "^7.15.0",
"ws": "^8.18.3"
},
"devDependencies": {
"cross-env": "^10.0.0"
}
}