{
  "name": "gotql",
  "version": "2.2.0",
  "engines": {
    "node": ">=18"
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "test": "npm run build:clean && jest",
    "prepare": "npm run build:clean",
    "lint": "standard -v ./src",
    "build": "tsc",
    "build:watch": "tsc -w",
    "clean": "rm -rf dist",
    "build:clean": "npm run clean && npm run build",
    "lint:fix": "standard --fix"
  },
  "description": "A GraphQL query framework for serverside apps",
  "main": "dist/index.js",
  "repository": "https://github.com/khaosdoctor/gotql.git",
  "bugs": {
    "url": "https://github.com/khaosdoctor/gotql/issues"
  },
  "pre-commit": [
    "lint"
  ],
  "pre-push": [
    "lint:fix",
    "build"
  ],
  "author": "Lucas Santos <lhs.santoss@gmail.com>",
  "license": "MIT",
  "keywords": [
    "graphql",
    "query",
    "framework",
    "serverside",
    "graph",
    "post"
  ],
  "private": false,
  "dependencies": {
    "debug": "^4.1.1",
    "got": "^11.5.1",
    "prepend-http": "^3.0.1"
  },
  "devDependencies": {
    "@jest/globals": "^29.7.0",
    "@types/debug": "^4.1.5",
    "@types/jest": "^27.0.0",
    "@types/nock": "^11.1.0",
    "@types/node": "^22.0.0",
    "@typescript-eslint/eslint-plugin": "^4.26.1",
    "@typescript-eslint/parser": "^4.26.1",
    "concurrently": "^6.2.0",
    "conduct": "^3.0.0",
    "eslint": "^7.13.0",
    "eslint-config-prettier": "^9.1.0",
    "eslint-config-standard": "^16.0.3",
    "eslint-plugin-import": "^2.22.1",
    "eslint-plugin-node": "^11.1.0",
    "eslint-plugin-promise": "^4.2.1",
    "jest": "^29.0.0",
    "nock": "^13.1.0",
    "pre-push": "^0.1.1",
    "prettier": "^2.8.8",
    "standard": "^16.0.3",
    "ts-jest": "^29.0.0",
    "typescript": "^5.7.0"
  }
}
