{
  "name": "sql-client",
  "version": "3.0.0",
  "description": "A dirt-simple SQL client abstraction (currently) supporting PostgreSQL, MySQL and SQLite.",
  "keywords": [
    "SQL",
    "client",
    "connection",
    "pool",
    "database",
    "Postgres",
    "PostgeSQL",
    "mySQL",
    "SQLite",
    "SQLite3"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/intellinote/sql-client.git"
  },
  "bugs": {
    "url": "https://github.com/intellinote/sql-client/issues"
  },
  "license": "MIT",
  "author": "Intellinote <https://www.intellinote.net/>",
  "dependencies": {
    "argf": "^0",
    "yargs": "^17"
  },
  "devDependencies": {
    "coffeescript": "^2",
    "mocha": "^9",
    "nyc": "^15",
    "should": "^13"
  },
  "databaseSpecificDependencies": {
    "// NOTE": "Enable one or more of these to test the corresponding database client.",
    "mysql": "^2",
    "sqlite3": "^5",
    "pg": "^8"
  },
  "main": "lib/index.js",
  "scripts": {
    "test": "./node_modules/.bin/mocha -t 2000  -R list --require coffeescript/register test/test-connection-factory.coffee test/test-index.coffee test/test-sql-client-pool.coffee test/test-sql-client.coffee test/test-mysql-client.coffee test/test-postgresql-client.coffee test/test-postgresql-client2.coffee test/test-sqlite3-client.coffee",
    "test-nodb": "./node_modules/.bin/mocha -t 2000  -R list --require coffeescript/register test/test-connection-factory.coffee test/test-index.coffee test/test-sql-client-pool.coffee test/test-sql-client.coffee",
    "test-all": "./node_modules/.bin/mocha -t 2000  -R list --require coffeescript/register test/test-connection-factory.coffee test/test-index.coffee test/test-sql-client-pool.coffee test/test-sql-client.coffee test/test-mysql-client.coffee test/test-postgresql-client.coffee test/test-postgresql-client2.coffee test/test-sqlite3-client.coffee",
    "test-pg": "./node_modules/.bin/mocha -t 2000  -R list --require coffeescript/register test/test-connection-factory.coffee test/test-index.coffee test/test-sql-client-pool.coffee test/test-sql-client.coffee test/test-postgresql-client.coffee test/test-postgresql-client2.coffee",
    "test-sqlite": "./node_modules/.bin/mocha -t 2000  -R list --require coffeescript/register test/test-connection-factory.coffee test/test-index.coffee test/test-sql-client-pool.coffee test/test-sql-client.coffee test/test-sqlite3-client.coffee",
    "test-mysql": "./node_modules/.bin/mocha -t 2000  -R list --require coffeescript/register test/test-connection-factory.coffee test/test-index.coffee test/test-sql-client-pool.coffee test/test-sql-client.coffee test/test-mysql-client.coffee"
  },
  "bin": {
    "mysql-runner": "./bin/mysql-runner",
    "postgresql-runner": "./bin/postgresql-runner",
    "sqlite3-runner": "./bin/sqlite3-runner"
  },
  "engines": {
    "node": ">=12"
  }
}
