{
  "name": "my-sql",
  "version": "1.2.15",
  "description": "Painless yet High-Performance query and transaction execution for large-scale APIs",
  "main": "dist/index.js",
  "author": "pubudud",
  "license": "MIT",
  "keywords": [
    "mysql",
    "performance",
    "interface",
    "wrapper",
    "sql",
    "easy",
    "smart",
    "database",
    "my-sql",
    "promise",
    "zero-configuration",
    "zero-config",
    "security",
    "pluggable",
    "middleware",
    "modifiers",
    "transaction"
  ],
  "url": "https://github.com/pupudu/my-sql/issues",
  "email": "pubudu.dodan@gmail.com",
  "repository": {
    "type": "git",
    "url": "https://github.com/pupudu/my-sql.git"
  },
  "scripts": {
    "start": "gulp && node dist/tester.js",
    "pre-push-dependencies": "npm install",
    "eslint": "eslint 'src/**/*.js'",
    "eslint-fix": "eslint 'src/**/*.js' --fix",
    "git-uncommited-changes": "git diff --quiet --cached",
    "git-unstaged-changes": "git diff --quiet",
    "git-branch": "bash git-hooks/branch.sh",
    "lint-staged": "lint-staged",
    "test": "NODE_ENV='test' STRATEGY='unit' nyc --reporter=html --reporter=text mocha 'src/**/*.test.js' --compilers js:babel-core/register --reporter spec  --timeout 10000 --recursive",
    "coverage": "nyc report --reporter=text-lcov | coveralls",
    "prepare": "npm test && npm run eslint && gulp"
  },
  "dependencies": {
    "mysql": "^2.15.0"
  },
  "devDependencies": {
    "babel-core": "^6.26.0",
    "babel-plugin-transform-object-rest-spread": "^6.26.0",
    "babel-preset-env": "^1.6.1",
    "chai": "^4.1.2",
    "coveralls": "^2.13.1",
    "eslint": "^4.6.0",
    "eslint-plugin-prefer-object-spread": "^1.2.1",
    "gulp": "^3.9.1",
    "gulp-babel": "^7.0.0",
    "lint-staged": "^4.0.4",
    "mocha": "^3.5.0",
    "nyc": "^11.1.0",
    "pre-commit": "^1.2.2",
    "pre-push": "^0.1.1",
    "sinon": "^3.2.1"
  },
  "pre-push": [
    "eslint",
    "git-unstaged-changes",
    "git-uncommited-changes",
    "git-branch",
    "test"
  ],
  "pre-commit": [
    "git-branch",
    "lint-staged"
  ],
  "lint-staged": {
    "src/**/*.js": [
      "eslint --fix",
      "git add"
    ],
    "tests/**/*.js": [
      "eslint --fix",
      "git add"
    ]
  }
}
