{
  "name": "fastify-at-mysql",
  "version": "0.4.0",
  "description": "Fastify MySQL to prevent SQL injection attacks",
  "main": "index.js",
  "types": "types/index.d.ts",
  "author": {
    "name": "Mateo Nunez",
    "email": "mateonunez95@gmail.com",
    "url": "http://github.com/mateonunez"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/mateonunez/fastify-at-mysql.git"
  },
  "keywords": [
    "fastify",
    "mysql",
    "@databases"
  ],
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/mateonunez/fastify-at-mysql/issues"
  },
  "homepage": "https://github.com/mateonunez/fastify-at-mysql#readme",
  "dependencies": {
    "fastify-plugin": "^4.5.1"
  },
  "devDependencies": {
    "@databases/mysql": "^6.0.0",
    "@databases/sql": "^3.3.0",
    "@fastify/pre-commit": "^2.0.2",
    "@types/node": "^20.8.9",
    "fastify": "^4.24.3",
    "snazzy": "^9.0.0",
    "standard": "^17.1.0",
    "tap": "^16.3.9",
    "tsd": "^0.29.0",
    "typescript": "^5.2.2"
  },
  "pre-commit": [
    "test"
  ],
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "lint": "standard | snazzy",
    "lint:fix": "standard --fix | snazzy",
    "mysql": "docker-compose up -d",
    "test": "npm run lint && npm run unit && npm run typescript",
    "test:ci": "tap --coverage-report=lcov test/*.test.js && npm run typescript",
    "typescript": "tsd",
    "unit": "tap test/*.test.js",
    "unit:report": "tap test/test.js --cov --coverage-report=html --coverage-report=cobertura",
    "unit:verbose": "tap test/test.js -Rspec"
  }
}