{
  "name": "sovereign-ai-router",
  "version": "1.0.0",
  "description": "Enterprise-grade AI service router with scaling, monitoring, and security",
  "main": "index.js",
  "scripts": {
    "test": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "test:integration": "jest --testPathPattern=integration",
    "test:unit": "jest --testPathPattern=unit",
    "test:load": "artillery run tests/load-test.yml",
    "test:security": "npm audit",
    "test:chaos": "node tests/chaos-test.js",
    "test:all": "npm run test:unit && npm run test:integration && npm run test:load && npm run test:security && npm run test:chaos",
    "start": "node index.js",
    "start:prod": "NODE_ENV=production node index.js",
    "start:dev": "NODE_ENV=development node --inspect index.js",
    "lint": "eslint . --ext .js",
    "lint:fix": "eslint . --ext .js --fix",
    "deploy": "node deploy.js",
    "stress-test": "artillery run tests/stress-test.yml"
  },
  "keywords": ["ai", "router", "scaling", "monitoring", "security"],
  "author": "Sovereign AI Router Team",
  "license": "MIT",
  "dependencies": {
    "express": "^4.18.2",
    "sqlite3": "^5.1.6",
    "jsonwebtoken": "^9.0.3",
    "helmet": "^7.0.0",
    "cors": "^2.8.5",
    "express-rate-limit": "^7.1.5",
    "http-status-codes": "^2.1.5",
    "winston": "^3.11.0",
    "moment": "^2.29.4"
  },
  "devDependencies": {
    "jest": "^29.7.0",
    "supertest": "^6.3.3",
    "artillery": "^2.0.30",
    "sinon": "^15.2.0",
    "chai": "^4.3.7",
    "chai-http": "^4.3.0",
    "eslint": "^8.57.0",
    "nyc": "^15.1.0",
    "dotenv": "^16.3.1",
    "@types/jest": "^29.5.8"
  },
  "jest": {
    "testEnvironment": "node",
    "collectCoverageFrom": [
      "src/**/*.js",
      "!src/**/*.test.js"
    ],
    "coverageThreshold": {
      "global": {
        "branches": 80,
        "functions": 80,
        "lines": 80,
        "statements": 80
      }
    }
  }
}