{
  "name": "mobx-vue",
  "version": "2.2.0",
  "description": "Vue bindings for MobX",
  "main": "./lib/index.js",
  "module": "./esm/index.js",
  "types": "./esm/index.d.ts",
  "sideEffects": false,
  "scripts": {
    "start": "jest -o --watch --coverage false",
    "build": "npm run build:esm & npm run build:cjs",
    "build:esm": "rm -fr dist/esm && tsc --skipLibCheck",
    "build:cjs": "rm -fr dist/lib && tsc --skipLibCheck -p tsconfig.cjs.json",
    "lint": "tslint 'src/**/*.ts' && npm test",
    "prepush": "npm run lint",
    "test": "jest"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/mobxjs/mobx-vue.git"
  },
  "keywords": [
    "mobx",
    "vue",
    "mobx-vue",
    "bindings",
    "connector"
  ],
  "author": "Kuitos",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/mobxjs/mobx-vue/issues"
  },
  "homepage": "https://github.com/mobxjs/mobx-vue#readme",
  "peerDependencies": {
    "mobx": "^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0",
    "vue": "^2.0.0"
  },
  "devDependencies": {
    "@types/jest": "^22.2.3",
    "@vue/test-utils": "1.0.0-beta.22",
    "husky": "^0.14.3",
    "jest": "^23.0.0",
    "mobx": "^6.0.0",
    "ts-jest": "^22.4.6",
    "tslint": "^5.10.0",
    "typescript": "^3.0.0",
    "vue": "^2.6.14",
    "vue-class-component": ">=7.2.6",
    "vue-jest": "^2.6.0",
    "vue-template-compiler": "^2.6.14"
  },
  "jest": {
    "globals": {
      "vue-jest": {
        "tsConfigFile": "tsconfig.json"
      }
    },
    "moduleFileExtensions": [
      "js",
      "ts",
      "vue"
    ],
    "testMatch": [
      "<rootDir>/src/**/__tests__/**/*.spec.ts"
    ],
    "transform": {
      "^.+\\.ts$": "<rootDir>/node_modules/ts-jest",
      ".*\\.(vue)$": "<rootDir>/node_modules/vue-jest"
    },
    "collectCoverage": true,
    "coveragePathIgnorePatterns": [
      "/node_modules/",
      "/__tests__/",
      "/lib/"
    ]
  }
}
