{
  "name": "vuex-orm-plugin-graphql",
  "version": "1.0.0-rc.35",
  "description": "Vuex-ORM persistence plugin to sync the store against a GraphQL API.",
  "main": "dist/vuex-orm-graphql.umd.js",
  "module": "dist/vuex-orm-graphql.es5.js",
  "typings": "dist/types/vuex-orm-graphql.d.ts",
  "files": [
    "dist"
  ],
  "scripts": {
    "lint": "tslint  --project tsconfig.json -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
    "prebuild": "rimraf dist",
    "build": "tsc --module commonjs && rollup -c rollup.config.ts && npm run build:docs",
    "build:docs": "vuepress build docs",
    "start": "rollup -c rollup.config.ts -w",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:prod": "npm run lint && npm run test -- --coverage --no-cache",
    "test:full": "npm lint && npm test && npm build",
    "docs:deploy": "npm run build:docs && ./deploy-docs.sh",
    "docs:dev": "vuepress dev docs",
    "report-coverage": "cat ./coverage/lcov.info | coveralls",
    "commit": "git-cz",
    "precommit": "lint-staged"
  },
  "lint-staged": {
    "{src,test}/**/*.ts": [
      "prettier --write",
      "git add"
    ]
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/vuex-orm/plugin-graphql.git"
  },
  "keywords": [
    "vue",
    "vuex",
    "vuex-plugin",
    "orm",
    "vuex-orm",
    "vuex-orm-plugin",
    "graphql"
  ],
  "author": "Benjamin Klein",
  "license": "MIT",
  "engines": {
    "node": ">=6.0.0"
  },
  "bugs": {
    "url": "https://github.com/vuex-orm/plugin-graphql/issues"
  },
  "dependencies": {
    "apollo-cache-inmemory": "^1.1.7",
    "app": "latest"
  },
  "peerDependencies": {
    "@vuex-orm/core": "^0.31.12"
  },
  "devDependencies": {
    "@commitlint/cli": "^7.1.2",
    "@commitlint/config-conventional": "^7.1.2",
    "@types/graphql": "^0.12.3",
    "@types/jest": "^23.3.2",
    "@types/node": "^10.11.0",
    "@types/sinon": "^5.0.1",
    "@vuex-orm/core": "^0.31.12",
    "apollo-client": "^2.2.2",
    "apollo-link": "^1.2.0",
    "apollo-link-http": "^1.3.2",
    "apollo-link-schema": "^1.1.0",
    "babel-plugin-external-helpers": "^6.22.0",
    "babel-preset-env": "^1.7.0",
    "colors": "^1.3.2",
    "commitizen": "^3.0.0",
    "coveralls": "^3.0.2",
    "cross-env": "^5.2.0",
    "cz-conventional-changelog": "^2.1.0",
    "graphql": "^0.12.3",
    "graphql-tag": "^2.6.1",
    "graphql-tools": "^3.0.4",
    "husky": "^1.0.1",
    "jest": "^23.6.0",
    "jest-config": "^23.6.0",
    "lint-staged": "^7.3.0",
    "lodash.clone": "^4.5.0",
    "lodash.isequal": "^4.5.0",
    "node-fetch": "^2.1.1",
    "normalizr": "^3.2.4",
    "pluralize": "^7.0.0",
    "prettier": "^1.14.3",
    "prompt": "^1.0.0",
    "replace-in-file": "^3.4.2",
    "rimraf": "^2.6.2",
    "rollup": "^0.66.2",
    "rollup-plugin-babel": "^3.0.7",
    "rollup-plugin-commonjs": "^9.1.8",
    "rollup-plugin-json": "^3.1.0",
    "rollup-plugin-node-resolve": "^3.4.0",
    "rollup-plugin-sourcemaps": "^0.4.2",
    "rollup-plugin-typescript2": "^0.17.0",
    "rollup-plugin-uglify": "^3.0.0",
    "semantic-release": "^15.9.16",
    "sinon": "^6.0.0",
    "ts-jest": "^23.10.2",
    "ts-node": "^7.0.1",
    "tslint": "^5.11.0",
    "tslint-config-prettier": "^1.15.0",
    "tslint-config-standard": "^8.0.1",
    "typescript": "^3.0.3",
    "vue": "2.5.16",
    "vuepress": "^0.14.11",
    "vuex": "^3.0.1"
  },
  "jest": {
    "transform": {
      ".(ts|tsx)": "ts-jest"
    },
    "testEnvironment": "node",
    "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js"
    ],
    "testPathIgnorePatterns": [
      "/node_modules/",
      "/src/",
      "/dist/"
    ],
    "coveragePathIgnorePatterns": [
      "/node_modules/",
      "/test/",
      "/dist/"
    ],
    "coverageThreshold": {
      "global": {
        "statements": 92,
        "branches": 80,
        "functions": 96,
        "lines": 93
      }
    },
    "collectCoverage": true,
    "coverageReporters": [
      "json",
      "lcov",
      "html"
    ],
    "collectCoverageFrom": [
      "src/**/*.{js,ts}"
    ],
    "globals": {
      "ts-jest": {
        "diagnostics": {
          "ignoreCodes": [2339, 2576]
        }
      }
    }
  },
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ]
  }
}
