{
  "name": "lazy-hydration",
  "version": "1.0.5",
  "description": "Lazy Hydration for Vue SSR",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/znck/lazy-hydration.git"
  },
  "keywords": [
    "vue",
    "lazy hydration",
    "hydration",
    "ssr"
  ],
  "author": {
    "name": "Rahul Kadyan",
    "email": "hi@znck.me",
    "url": "https://znck.me"
  },
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/znck/lazy-hydration/issues"
  },
  "homepage": "https://github.com/znck/lazy-hydration#readme",
  "dependencies": {
    "@znck/prop-types": "^0.6.3"
  },
  "devDependencies": {
    "@babel/core": "^7.5.5",
    "@babel/preset-env": "^7.2.3",
    "@rollup/plugin-node-resolve": "^8.4.0",
    "@vue/server-test-utils": "^1.0.0-beta.29",
    "@vue/test-utils": "^1.0.0-beta.29",
    "jest": "^24.9.0",
    "jest-environment-jsdom": "^24.9.0",
    "postcss": "^7.0.17",
    "regenerator-runtime": "^0.13.1",
    "rollup": "^1.19.4",
    "rollup-plugin-babel": "^4.3.1",
    "rollup-plugin-vue": "^4.6.1",
    "vue": "^2.5.22",
    "vue-jest": "^3.0.2",
    "vue-server-renderer": "^2.5.22",
    "vue-template-compiler": "^2.5.22"
  },
  "scripts": {
    "test": "jest",
    "dev": "node dist/ssr.js",
    "build:demo": "npm run build && cd example && npm run build",
    "build": "npm run :build",
    "pre:build": "rm -rf dist/",
    ":build": "rollup -c --environment BUILD:production",
    "prepublishOnly": "npm run :build",
    "pre:release": "npm run test",
    ":release": "standard-version",
    "post:release": "git push --follow-tags origin master && npm publish",
    "release": "npm run :release"
  },
  "files": [
    "Hydrate.d.ts",
    "Hydrate.js",
    "dist/"
  ],
  "browserslist": "> 0.25%, not dead",
  "main": "dist/lazy-hydration.cjs.js",
  "module": "dist/lazy-hydration.js",
  "types": "Hydrate.d.ts",
  "jest": {
    "moduleFileExtensions": [
      "js",
      "json",
      "vue"
    ],
    "transform": {
      ".*\\.(vue)$": "vue-jest",
      "^.+\\.js$": "babel-jest"
    }
  }
}
