{
  "name": "rdb",
  "version": "3.10.1",
  "main": "./src/index.js",
  "browser": "./src/client/index.mjs",
  "bin": {
    "rdb": "bin/rdb.js"
  },
  "title": "rdb",
  "description": "Object Relational Mapper",
  "types": "./src/index.d.ts",
  "keywords": [
    "typescript orm",
    "orm",
    "sql",
    "mySql",
    "SQLite",
    "MySQL",
    "mssql",
    "Microsoft Sql Server",
    "PostgreSql",
    "Postgres",
    "pg",
    "sap",
    "sapase",
    "Oracle",
    "rdb",
    "active record"
  ],
  "authors": [
    "Lars-Erik Roald <lars.roald@gmail.com>"
  ],
  "license": "ISC",
  "codeOfConduct": "https://github.com/alfateam/rdb/blob/master/docs/CODE_OF_CONDUCT.md",
  "contributing": "https://github.com/alfateam/rdb/blob/master/CONTRIBUTING.md",
  "funding": {
    "type": "github",
    "url": "https://github.com/sponsors/lroal"
  },
  "scripts": {
    "test": "vitest run --threads=false",
    "coverage": "vitest run --coverage.enabled --coverage.reporter='text-summary' --threads=false",
    "testw": "vitest --threads=false update",
    "tscheck": "tsc ./src/index.d.ts --module commonjs --target es2022 --noEmit true --strict true --esModuleInterop true",
    "concat": "node ./src/client/merge.js",
    "build": "rollup -c ./src/client/rollup.config.js && npm run concat",
    "lint": "eslint ./",
    "fix": "eslint ./ --fix",
    "owasp": "owasp-dependency-check --project \"MY_PROJECT\" --scan \"package-lock.json\" --exclude \"dependency-check-bin\" --out \"owasp\" --format HTML"
  },
  "dependencies": {
    "@lroal/on-change": "^4.0.2",
    "@tediousjs/connection-string": "^0.4.1",
    "@types/express": "^4.17.13",
    "@types/oracledb": "^6.0.4",
    "@types/tedious": "^4.0.14",
    "ajv": "^6.10.2",
    "axios": "^1.6.2",
    "deferred": "^0.7.5",
    "fast-json-patch": "^3.1.1",
    "findup-sync": "^5.0.0",
    "glob": "^10.3.4",
    "module-definition": "^4.0.0",
    "node-cls": "^1.0.5",
    "promise": "^8.0.3",
    "rfdc": "^1.2.0",
    "uuid": "^8.3.2"
  },
  "peerDependencies": {
    "msnodesqlv8": "^4.1.0",
    "mysql2": "^2.2.5 || ^3.9.4",
    "oracledb": "^6.3.0",
    "pg": "^8.5.1",
    "pg-native": "^3.0.0",
    "pg-query-stream": "^3.3.2",
    "sqlite3": "^5.0.2",
    "tedious": "^15.1.2 || ^16.0.0 || ^18.1.0"
  },
  "peerDependenciesMeta": {
    "pg": {
      "optional": true
    },
    "pg-query-stream": {
      "optional": true
    },
    "mysql2": {
      "optional": true
    },
    "sqlite3": {
      "optional": true
    },
    "pg-native": {
      "optional": true
    },
    "msnodesqlv8": {
      "optional": true
    },
    "tedious": {
      "optional": true
    }
  },
  "devDependencies": {
    "@rollup/plugin-commonjs": "^21.0.1",
    "@rollup/plugin-node-resolve": "^13.0.0",
    "@typescript-eslint/eslint-plugin": "^5.42.1",
    "@typescript-eslint/parser": "^5.42.1",
    "@vitest/coverage-v8": "^0.34.1",
    "cors": "^2.8.5",
    "eslint": "^8.6.0",
    "eslint-plugin-jest": "^27.1.7",
    "express": "^4.18.2",
    "msnodesqlv8": "^4.1.0",
    "mysql2": "^3.9.4",
    "oracledb": "^6.3.0",
    "owasp-dependency-check": "^0.0.21",
    "pg": "^8.5.1",
    "pg-query-stream": "^3.3.2",
    "rollup": "^2.52.7",
    "sqlite3": "^5.0.2",
    "tedious": "^18.1.0",
    "typescript": "^5.4.5",
    "vitest": "^0.34.1"
  },
  "engines": {
    "node": ">= 8.0.0"
  },
  "repository": {
    "type": "git",
    "url": "git@github.com:alfateam/rdb.git"
  },
  "homepage": "https://rdbjs.org",
  "jshintConfig": {
    "asi": true,
    "eqnull": true,
    "undef": true,
    "node": true
  }
}
