{
  "name": "knex-schema-inspector",
  "version": "3.1.0",
  "description": "Utility for extracting information about existing DB schema",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "scripts": {
    "build": "tsc --build",
    "prepare": "npm run build",
    "lint": "prettier --check .",
    "test": "npm run lint && ts-mocha test/**/*.spec.ts --timeout 10000"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/knex/knex-schema-inspector.git"
  },
  "keywords": [
    "sql",
    "knex",
    "schema",
    "mysql",
    "postgresql",
    "sqlite3",
    "javascript"
  ],
  "author": "Rijk van Zanten <rijkvanzanten@me.com> (https://github.com/rijkvanzanten)",
  "contributors": [
    "Tanya Byrne (https://github.com/kukulaka)",
    "Martti Laine (https://github.com/codeclown)",
    "Martin Benndorf (https://github.com/MiniDigger)",
    "Igor Savin (https://github.com/kibertoad)"
  ],
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/knex/knex-schema-inspector/issues"
  },
  "homepage": "https://github.com/knex/knex-schema-inspector#readme",
  "devDependencies": {
    "@types/chai": "^4.3.3",
    "@types/lodash.flatten": "^4.4.7",
    "@types/lodash.isnil": "^4.0.7",
    "@types/mocha": "^10.0.0",
    "@types/node": "^18.11.2",
    "better-sqlite3": "^8.6.0",
    "chai": "^4.3.6",
    "husky": "^8.0.1",
    "knex": "^2.3.0",
    "lint-staged": "^13.0.3",
    "mocha": "^10.1.0",
    "mysql": "^2.18.1",
    "oracledb": "^5.5.0",
    "pg": "^8.8.0",
    "prettier": "^2.7.1",
    "sqlite3": "^5.1.2",
    "tedious": "^15.1.0",
    "ts-mocha": "^10.0.0",
    "typescript": "^4.8.4"
  },
  "lint-staged": {
    "*.{ts, js,json}": [
      "prettier --write"
    ]
  },
  "husky": {
    "hooks": {
      "pre-commit": "npx lint-staged"
    }
  },
  "dependencies": {
    "lodash.flatten": "^4.4.0",
    "lodash.isnil": "^4.0.0"
  }
}
