{
  "name": "knex",
  "version": "0.21.21",
  "description": "A batteries-included SQL query & schema builder for Postgres, MySQL and SQLite3 and the Browser",
  "main": "knex.js",
  "types": "types/index.d.ts",
  "engines": {
    "node": ">=10"
  },
  "scripts": {
    "format": "prettier --write \"{lib,bin,scripts,test}/**/*.js\"",
    "debug:test": "mocha --inspect-brk --exit -t 0 test/all-tests-suite.js",
    "debug:tape": "node --inspect-brk test/tape/index.js",
    "coveralls": "nyc report --reporter=lcov",
    "lint": "eslint \"lib/**/*.js\" \"test/**/*.js\"",
    "lint:types": "tsd && dtslint types",
    "lint:everything": "npm run lint:types && npm run lint",
    "test:unit": "mocha --exit -t 10000 --config test/mocha-unit-config-test.js && npm run test:cli",
    "test:db": "mocha --exit -t 10000 --config test/mocha-integration-config-test.js && npm run test:tape",
    "test:db:coverage": "nyc mocha --exit --check-leaks -t 10000 --config test/mocha-integration-config-test.js && npm run test:tape",
    "test:db:no-oracle": "cross-env DB=\"mssql mysql mysql2 postgres sqlite3\" mocha --exit -t 10000 --config test/mocha-integration-config-test.js && npm run test:tape",
    "test": "mocha --exit -t 10000 --config test/mocha-all-config-test.js && npm run test:tape && npm run test:cli",
    "test:coverage": "nyc mocha --exit --check-leaks -t 10000 --config test/mocha-all-config-test.js && npm run test:tape && npm run test:cli",
    "test:everything": "npm run lint:everything && npm run test:coverage",
    "test:mssql": "cross-env DB=mssql npm run test:db",
    "test:mysql": "cross-env DB=mysql npm run test:db",
    "test:mysql2": "cross-env DB=mysql2 npm run test:db",
    "test:sqlite": "cross-env DB=sqlite3 npm run test:db",
    "test:postgres": "cross-env DB=postgres npm run test:db",
    "test:tape": "node test/tape/index.js | tap-spec",
    "test:cli": "cross-env KNEX_PATH=../knex.js KNEX=bin/cli.js jake -f test/jake/Jakefile",
    "db:start": "docker-compose -f scripts/docker-compose.yml up --build -d mysql oracledbxe postgres mssql; docker-compose -f scripts/docker-compose.yml up waitmssql waitmysql waitpostgres waitoracledbxe",
    "db:start:no-oracle": "docker-compose -f scripts/docker-compose.yml up --build -d mysql postgres mssql && docker-compose -f scripts/docker-compose.yml up waitmssql waitmysql waitpostgres",
    "db:stop": "docker-compose -f scripts/docker-compose.yml down",
    "db:start:postgres": "docker-compose -f scripts/docker-compose.yml up --build -d postgres && docker-compose -f scripts/docker-compose.yml up waitpostgres",
    "db:stop:postgres": "docker-compose -f scripts/docker-compose.yml down",
    "stress:init": "docker-compose -f scripts/stress-test/docker-compose.yml up --no-start && docker-compose -f scripts/stress-test/docker-compose.yml start",
    "stress:test": "node scripts/stress-test/knex-stress-test.js | grep -A 5 -B 60 -- '- STATS '",
    "stress:destroy": "docker-compose -f scripts/stress-test/docker-compose.yml stop"
  },
  "dependencies": {
    "colorette": "1.2.1",
    "commander": "^6.2.0",
    "debug": "4.3.1",
    "esm": "^3.2.25",
    "getopts": "2.2.5",
    "interpret": "^2.2.0",
    "liftoff": "3.1.0",
    "lodash": "^4.17.20",
    "pg-connection-string": "2.4.0",
    "tarn": "^3.0.1",
    "tildify": "2.0.0",
    "v8flags": "^3.2.0"
  },
  "peerDependencies": {
    "mssql": "^6.2.1",
    "mysql": "^2.18.1",
    "mysql2": "^2.1.0",
    "pg": "^8.3.0",
    "sqlite3": "^5.0.0"
  },
  "peerDependenciesMeta": {
    "mssql": {
      "optional": true
    },
    "mysql": {
      "optional": true
    },
    "mysql2": {
      "optional": true
    },
    "pg": {
      "optional": true
    },
    "sqlite3": {
      "optional": true
    }
  },
  "lint-staged": {
    "*.{js,json}": [
      "prettier --write",
      "git add"
    ]
  },
  "devDependencies": {
    "@types/node": "^16.4.13",
    "chai": "^4.3.4",
    "chai-as-promised": "^7.1.1",
    "chai-subset-in-order": "^2.2.1",
    "cli-testlab": "^2.1.1",
    "coveralls": "^3.1.0",
    "cross-env": "^7.0.3",
    "dtslint": "4.0.6",
    "eslint": "^7.15.0",
    "eslint-config-prettier": "^7.0.0",
    "eslint-plugin-import": "^2.22.1",
    "husky": "^4.3.5",
    "jake": "^8.1.1",
    "JSONStream": "^1.3.5",
    "lint-staged": "^10.5.3",
    "mocha": "^8.4.0",
    "mock-fs": "^4.13.0",
    "mssql": "^6.3.2",
    "mysql": "^2.18.1",
    "mysql2": "^2.3.0",
    "nyc": "^15.1.0",
    "oracledb": "^5.1.0",
    "pg": "^8.7.1",
    "pg-query-stream": "^3.4.2",
    "prettier": "2.2.1",
    "rimraf": "^3.0.2",
    "sinon": "^9.2.4",
    "sinon-chai": "^3.5.0",
    "source-map-support": "^0.5.19",
    "sqlite3": "^5.0.2",
    "tap-spec": "^5.0.0",
    "tape": "^5.3.1",
    "toxiproxy-node-client": "^2.0.6",
    "ts-node": "^9.1.1",
    "tsd": "^0.14.0",
    "typescript": "4.1.3",
    "webpack-cli": "^3.3.12"
  },
  "buildDependencies": [
    "rimraf"
  ],
  "bin": {
    "knex": "./bin/cli.js"
  },
  "repository": {
    "type": "git",
    "url": "git://github.com/knex/knex.git"
  },
  "homepage": "https://knexjs.org",
  "keywords": [
    "sql",
    "query",
    "postgresql",
    "mysql",
    "sqlite3",
    "oracle",
    "mssql"
  ],
  "author": {
    "name": "Tim Griesser",
    "web": "https://github.com/tgriesser"
  },
  "contributors": [
    {
      "name": "Mikael Lepisto"
    },
    {
      "name": "Igor Savin",
      "web": "https://www.codeflashbacks.com"
    },
    {
      "name": "Simon Liden"
    },
    {
      "name": "Paul Gaurab",
      "web": "https://lorefnon.tech"
    },
    {
      "name": "Brian Lauber",
      "web": "https://briandamaged.org"
    }
  ],
  "browser": {
    "./lib/migrate/Migrator.js": "./lib/util/noop.js",
    "./lib/bin/cli.js": "./lib/util/noop.js",
    "./lib/seed/Seeder.js": "./lib/util/noop.js",
    "mssql": false,
    "mssql/lib/base": false,
    "tedious": false,
    "mysql": false,
    "mysql2": false,
    "pg": false,
    "pg-query-stream": false,
    "oracle": false,
    "sqlite3": false,
    "oracledb": false
  },
  "react-native": {
    "./lib/migrate": "./lib/util/noop.js",
    "./lib/seed": "./lib/util/noop.js"
  },
  "files": [
    "CONTRIBUTING.md",
    "README.md",
    "bin/*",
    "lib/*",
    "lib/*",
    "knex.js",
    "LICENSE",
    "CHANGELOG.md",
    "scripts/*",
    "types/index.d.ts",
    "types/result.d.ts",
    "types/tables.d.ts"
  ],
  "license": "MIT",
  "tonicExampleFilename": "scripts/runkit-example.js",
  "nyc": {
    "check-coverage": true,
    "lines": 84,
    "statements": 82,
    "functions": 83,
    "branches": 69,
    "extension": [
      ".js"
    ],
    "exclude": [
      "lib/dialects/oracle",
      "lib/dialects/oracledb"
    ]
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "tsd": {
    "directory": "test-tsd",
    "compilerOptions": {
      "esModuleInterop": true,
      "module": "commonjs"
    }
  }
}
