{ "name": "knex", "version": "1.0.7", "description": "A batteries-included SQL query & schema builder for PostgresSQL, MySQL, CockroachDB, MSSQL and SQLite3", "main": "knex", "types": "types/index.d.ts", "engines": { "node": ">=12" }, "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": "npm run test:unit-only && npm run test:cli", "test:unit-only": "mocha --exit -t 10000 --config test/mocha-unit-config-test.js", "test:db": "mocha --exit -t 10000 --config test/mocha-integration-config-test.js", "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:oracledb": "cross-env DB=oracledb npm run test:db", "test:sqlite": "cross-env DB=sqlite3 npm run test:db", "test:better-sqlite3": "cross-env DB=better-sqlite3 npm run test:db", "test:postgres": "cross-env DB=postgres npm run test:db", "test:cockroachdb": "cross-env DB=cockroachdb npm run test:db", "test:pgnative": "cross-env DB=pgnative 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 oracledb postgres mssql cockroachdb pgnative && docker-compose -f scripts/docker-compose.yml up waitmssql waitmysql waitpostgres waitoracledb", "db:start:no-oracle": "docker-compose -f scripts/docker-compose.yml up --build -d mysql postgres mssql cockroachdb pgnative && 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", "db:start:pgnative": "docker-compose -f scripts/docker-compose.yml up --build -d pgnative && docker-compose -f scripts/docker-compose.yml up waitpgnative", "db:stop:pgnative": "docker-compose -f scripts/docker-compose.yml down", "db:start:mysql": "docker-compose -f scripts/docker-compose.yml up --build -d mysql && docker-compose -f scripts/docker-compose.yml up waitmysql", "db:stop:mysql": "docker-compose -f scripts/docker-compose.yml down", "db:start:mssql": "docker-compose -f scripts/docker-compose.yml up --build -d mssql && docker-compose -f scripts/docker-compose.yml up waitmssql", "db:stop:mssql": "docker-compose -f scripts/docker-compose.yml down", "db:start:cockroachdb": "docker-compose -f scripts/docker-compose.yml up --build -d cockroachdb && docker-compose -f scripts/docker-compose.yml up waitcockroachdb", "db:stop:cockroachdb": "docker-compose -f scripts/docker-compose.yml down", "db:start:oracle": "docker-compose -f scripts/docker-compose.yml up --build -d oracledb && docker-compose -f scripts/docker-compose.yml up waitoracledb", "db:stop:oracle": "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": "2.0.16", "commander": "^9.1.0", "debug": "4.3.4", "escalade": "^3.1.1", "esm": "^3.2.25", "get-package-type": "^0.1.0", "getopts": "2.3.0", "interpret": "^2.2.0", "lodash": "^4.17.21", "pg-connection-string": "2.5.0", "rechoir": "^0.8.0", "resolve-from": "^5.0.0", "tarn": "^3.0.2", "tildify": "2.0.0" }, "peerDependenciesMeta": { "tedious": { "optional": true }, "mysql": { "optional": true }, "mysql2": { "optional": true }, "pg": { "optional": true }, "pg-native": { "optional": true }, "@vscode/sqlite3": { "optional": true }, "better-sqlite3": { "optional": true } }, "lint-staged": { "*.{js,json}": [ "prettier --write", "git add" ] }, "devDependencies": { "@types/node": "^16.11.22", "@vscode/sqlite3": "^5.0.7", "better-sqlite3": "^7.5.1", "chai": "^4.3.6", "chai-as-promised": "^7.1.1", "chai-subset-in-order": "^3.1.0", "cli-testlab": "^2.2.0", "coveralls": "^3.1.1", "cross-env": "^7.0.3", "dtslint": "4.2.1", "eslint": "^8.13.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-import": "^2.26.0", "eslint-plugin-mocha-no-only": "^1.1.1", "husky": "^4.3.8", "jake": "^8.1.1", "JSONStream": "^1.3.5", "lint-staged": "^12.3.7", "mocha": "^9.2.2", "mock-fs": "^5.1.2", "mysql": "^2.18.1", "mysql2": "^2.3.3", "nyc": "^15.1.0", "oracledb": "^5.3.0", "pg": "^8.7.3", "pg-query-stream": "^4.2.1", "prettier": "2.6.2", "rimraf": "^3.0.2", "sinon": "^13.0.1", "sinon-chai": "^3.7.0", "source-map-support": "^0.5.21", "tap-spec": "^5.0.0", "tape": "^5.5.3", "tedious": "^14.4.0", "toxiproxy-node-client": "^2.0.6", "ts-node": "^10.7.0", "tsd": "^0.20.0", "typescript": "4.6.3" }, "buildDependencies": [ "rimraf" ], "bin": { "knex": "./bin/cli.js" }, "repository": { "type": "git", "url": "git://github.com/knex/knex.git" }, "homepage": "https://knex.github.io/documentation/", "keywords": [ "sql", "query", "postgresql", "postgres", "mysql", "cockroachdb", "sqlite3", "oracle", "mssql", "builder", "querybuilder", "build", "db", "database" ], "author": { "name": "Tim Griesser", "web": "https://github.com/tgriesser" }, "contributors": [ { "name": "Mikael Lepisto" }, { "name": "Igor Savin", "web": "https://www.codeflashbacks.com" }, { "name": "Olivier Cavadenti" }, { "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", "tedious": false, "mysql": false, "mysql2": false, "pg": false, "pg-native": false, "pg-query-stream": false, "oracle": false, "sqlite3": false, "@vscode/sqlite3": false, "better-sqlite3": false, "oracledb": false }, "react-native": { "./lib/migrate": "./lib/util/noop.js", "./lib/seed": "./lib/util/noop.js" }, "files": [ "bin/*", "lib/*", "scripts/*", "types/index.d.ts", "types/result.d.ts", "types/tables.d.ts", "CHANGELOG.md", "CONTRIBUTING.md", "knex.js", "LICENSE", "README.md", "UPGRADING.md" ], "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": false, "module": "commonjs", "target": "ES2017" } } }