{
  "name": "mysql2-async",
  "version": "2.0.4",
  "description": "A wrapper for mysql2 to add convenience, especially when developing with async/await and async iterables.",
  "exports": {
    ".": {
      "types": "./lib-esm/index.d.ts",
      "require": "./lib/index.js",
      "import": "./lib-esm/index.js"
    },
    "./db": {
      "types": "./lib-esm/db.d.ts",
      "require": "./lib/db.js",
      "import": "./lib-esm/db.js"
    }
  },
  "types": "./lib-esm/index.d.ts",
  "typesVersions": {
    "*": {
      "db": ["./lib-esm/db.d.ts"]
    }
  },
  "scripts": {
    "prepublishOnly": "npm run build",
    "build": "rm -rf ./lib && tsc && cp lib/*.d.ts lib-esm/",
    "mocha": "mocha -r ts-node/register test/**/*.ts --exit",
    "lint": "eslint --ignore-path .gitignore src",
    "test": "./test.sh"
  },
  "devDependencies": {
    "@types/chai": "^4.2.12",
    "@types/mocha": "^10.0.1",
    "@types/node": "^18.15.0",
    "chai": "^4.2.0",
    "eslint-config-standard-with-typescript": "^39.0.0",
    "mocha": "^10.0.0",
    "ts-node": "^10.0.0",
    "typescript": "^5.0.0"
  },
  "dependencies": {
    "mysql2": "^3.0.0"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/txstate-etc/mysql2-async.git"
  },
  "keywords": [
    "mysql",
    "txstate"
  ],
  "author": "Nick Wing",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/txstate-etc/mysql2-async/issues"
  },
  "homepage": "https://github.com/txstate-etc/mysql2-async#readme",
  "files": [
    "lib/**/*",
    "lib-esm/**/*"
  ]
}
