{
  "name": "gql-query-builder",
  "version": "3.8.0",
  "description": "Simple GraphQL Query Builder",
  "repository": {
    "type": "git",
    "url": "git+https://github.com:atulmy/gql-query-builder.git"
  },
  "main": "./build/index.js",
  "types": "./build/index.d.ts",
  "files": [
    "build/**/*"
  ],
  "scripts": {
    "build": "tsc",
    "watch": "tsc --watch",
    "lint": "tslint --format stylish --project .",
    "test": "jest --config",
    "prepare": "husky install"
  },
  "keywords": [
    "graphql",
    "query",
    "builder",
    "javascript"
  ],
  "author": "Atul Yadav <atul.12788@gmail.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/atulmy/gql-query-builder/issues"
  },
  "homepage": "https://github.com/atulmy/gql-query-builder",
  "devDependencies": {
    "@types/jest": "^28.1.6",
    "husky": "^8.0.1",
    "jest": "28.1.3",
    "lint-staged": "^13.0.3",
    "prettier": "^2.7.1",
    "ts-jest": "^28.0.7",
    "tslint": "^6.1.0",
    "tslint-config-prettier": "^1.18.0",
    "tslint-plugin-prettier": "^2.3.0",
    "typescript": "^4.7.4"
  },
  "lint-staged": {
    "*.{ts}": [
      "npm run lint -- --fix",
      "git add"
    ],
    "*.{ts,json,md}": [
      "prettier --write",
      "git add"
    ]
  },
  "jest": {
    "preset": "ts-jest"
  },
  "dependencies": {}
}
