{
  "name": "datasource-sql",
  "version": "2.1.0",
  "description": "SQL DataSource for Apollo GraphQL projects",
  "main": "index.js",
  "types": "index.d.ts",
  "scripts": {
    "lint": "prettier '**/*.js' && eslint '**/*.js'",
    "lint:fix": "prettier --write '**/*.{js,ts}' && eslint --fix '**/*.js'",
    "test": "jest",
    "test:types": "tsd"
  },
  "engines": {
    "node": ">=10.6.0",
    "npm": ">=6.1.0"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "jest": {
    "setupFiles": [
      "dotenv/config"
    ],
    "testEnvironment": "node"
  },
  "lint-staged": {
    "*.{js,ts,json,css,md}": [
      "prettier --write",
      "git add"
    ]
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/cvburgess/SQLDataSource.git"
  },
  "author": "Charles Burgess",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/cvburgess/SQLDataSource/issues"
  },
  "homepage": "https://github.com/cvburgess/SQLDataSource#readme",
  "dependencies": {
    "apollo-datasource": "^3.3.1",
    "apollo-server-caching": "^3.3.0",
    "knex-tiny-logger": "^2.1.0"
  },
  "devDependencies": {
    "dotenv": "^16.0.0",
    "eslint": "^8.11.0",
    "eslint-config-prettier": "^8.5.0",
    "eslint-plugin-node": "^11.1.0",
    "eslint-plugin-prettier": "^4.0.0",
    "husky": "^3.0.5",
    "jest": "^27.5.1",
    "lint-staged": "^12.3.5",
    "pg": "^8.7.3",
    "prettier": "^2.5.1",
    "tsd": "^0.19.1",
    "typescript": "^4.6.2"
  },
  "peerDependencies": {
    "graphql": ">=14.0.2",
    "knex": ">=0.95.0"
  },
  "keywords": [
    "apollo",
    "apollo-server",
    "datasource",
    "graphql",
    "knex",
    "sql"
  ]
}
