{
  "name": "fastify-knexjs",
  "version": "1.4.0",
  "description": "Fastify KnexJS Plugin",
  "keywords": [
    "Fastify",
    "KnexJS",
    "Plugin",
    "Test"
  ],
  "homepage": "https://github.com/nbalduzzi/fastify-knexjs#readme",
  "bugs": {
    "url": "https://github.com/nbalduzzi/fastify-knexjs/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/nbalduzzi/fastify-knexjs.git"
  },
  "license": "MIT",
  "author": "Nicolas Balduzzi",
  "contributors": [
    "Patrick Heneise (https://github.com/PatrickHeneise)"
  ],
  "main": "index.js",
  "scripts": {
    "lint": "eslint . --ext js",
    "test": "eslint ./ && tap test.js"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged",
      "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
    }
  },
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ]
  },
  "lint-staged": {
    "*.{js,json,md}": [
      "prettier --write"
    ],
    "*.{js}": [
      "eslint --cache --fix"
    ]
  },
  "dependencies": {
    "fastify-plugin": "^3.0.0",
    "knex": "^0.95.6"
  },
  "devDependencies": {
    "@commitlint/cli": "^12.1.4",
    "@commitlint/config-conventional": "^12.1.4",
    "@semantic-release/commit-analyzer": "^8.0.1",
    "@semantic-release/github": "^7.2.3",
    "@semantic-release/release-notes-generator": "^9.0.2",
    "eslint": "^7.26.0",
    "fastify": "^3.15.1",
    "husky": "^6.0.0",
    "lint-staged": "^11.0.0",
    "mysql": "^2.18.1",
    "prettier": "^2.3.0",
    "tap": "^15.0.9"
  },
  "release": {
    "branches": [
      "master"
    ]
  },
  "plugins": [
    "@semantic-release/commit-analyzer",
    "@semantic-release/release-notes-generator",
    [
      "@semantic-release/github",
      {
        "assets": [
          "package.json"
        ],
        "message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
      }
    ]
  ]
}
