{
  "name": "graphql-norm-patch",
  "version": "0.20.1",
  "description": "Declarative patching of normalized GraphQL responses",
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "repository": "https://github.com/dividab/graphql-norm-patch",
  "keywords": [
    "graphql",
    "patch",
    "normalization"
  ],
  "author": "Divid AB <info@divid.se>",
  "license": "MIT",
  "files": [
    "/lib",
    "/src",
    "package.json",
    "CHANGELOG.md",
    "LICENSE",
    "README.md"
  ],
  "dependencies": {
    "graphql-norm": "^1.2.0"
  },
  "peerDependencies": {
    "graphql": "^14.5.8"
  },
  "devDependencies": {
    "@types/jest": "^24.0.18",
    "@types/node": "^12.7.8",
    "@types/tape": "^4.2.32",
    "codecov": "^3.1.0",
    "graphql": "^14.5.8",
    "husky": "^0.14.3",
    "jest": "^24.9.0",
    "lint-staged": "^7.2.2",
    "prettier": "^1.18.2",
    "rimraf": "^2.6.2",
    "ts-jest": "^24.1.0",
    "ts-node": "^8.4.1",
    "tslint": "^5.11.0",
    "typescript": "^3.6.3"
  },
  "scripts": {
    "lint": "tslint --config ./tslint.json -- './{src,test}/**/*.ts{,x}'",
    "build": "rimraf lib && tsc -p src",
    "build-test": "rimraf test/lib && tsc -p test",
    "verify": "yarn lint && yarn build && yarn test-coverage",
    "precommit": "lint-staged",
    "report-coverage": "codecov -f coverage/lcov.info",
    "test-coverage": "jest",
    "test": "jest --no-coverage",
    "test:work": "jest --no-coverage ./test/denormalize.test.ts",
    "preversion": "yarn verify",
    "postversion": "git push --tags && yarn publish --new-version $npm_package_version && git push --follow-tags && echo \"Successfully released version $npm_package_version!\""
  },
  "lint-staged": {
    "*.{ts,tsx}": "tslint",
    "*.{ts,tsx,json,css}": [
      "prettier --write",
      "git add"
    ]
  }
}
