{
  "name": "mysql-slow-query-log-parser",
  "version": "0.1.2",
  "description": "MySQL Slow Query Log parser for NodeJS",
  "main": "./lib/cjs/index.js",
  "scripts": {
    "clean": "rm -rf ./lib",
    "build": "npm run clean && npm run build:esm && npm run build:cjs",
    "build:esm": "tsc -p ./tsconfig.esm.json && mv lib/esm/index.js lib/esm/index.mjs",
    "build:cjs": "tsc -p ./tsconfig.cjs.json",
    "prepack": "npm run build",
    "test": "mocha"
  },
  "keywords": [
    "mysql",
    "slow",
    "query",
    "log"
  ],
  "files": [
    "lib/**/*"
  ],
  "exports": {
    ".": {
      "import": {
        "types": "./lib/esm/types/index.d.ts",
        "default": "./lib/esm/index.mjs"
      },
      "require": {
        "types": "./lib/cjs/types/index.d.ts",
        "default": "./lib/cjs/index.js"
      }
    }
  },
  "types": "./lib/cjs/types/index.d.ts",
  "author": "Jonah Saltzman",
  "license": "ISC",
  "devDependencies": {
    "@types/chai": "^2.0.4",
    "@types/expect": "^24.3.0",
    "@types/mocha": "^10.0.1",
    "@types/node": "^18.11.17",
    "chai": "^4.3.7",
    "chai-as-promised": "^7.1.1",
    "mocha": "^10.2.0",
    "sinon-chai": "^3.7.0",
    "ts-node": "^10.9.1",
    "typescipt": "^1.0.0"
  },
  "dependencies": {
    "node-sql-parser": "^4.6.4"
  }
}
