{
  "name": "react-head",
  "version": "3.0.0-0",
  "description": "SSR-ready Document Head management for React 16+",
  "main": "dist/index.cjs.js",
  "module": "dist/index.esm.js",
  "files": [
    "src",
    "dist"
  ],
  "scripts": {
    "prepare": "npm run test && npm run build",
    "build:flow": "echo \"// @flow\n\nexport * from '../src'\" > dist/index.cjs.js.flow",
    "build:watch": "rollup -c --watch",
    "build": "rollup -c && npm run build:flow",
    "example": "cd example && npm i && npm start",
    "dev": "run-p build:watch example",
    "test": "jest",
    "posttest": "npm run lint",
    "test:watch": "jest --watch",
    "typecheck:flow": "flow check --max-warnings=0",
    "lint": "eslint ./src",
    "prettier": "prettier --write \"src/**/*.js\"",
    "precommit": "lint-staged"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/tizmagik/react-head.git"
  },
  "keywords": [
    "react",
    "head",
    "portals",
    "ssr",
    "isomorphic"
  ],
  "author": "Jeremy Gayed <https://github.com/tizmagik>",
  "contributors": [
    "Bogdan Chadkin <trysound@yandex.ru>"
  ],
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/tizmagik/react-head/issues"
  },
  "homepage": "https://github.com/tizmagik/react-head#readme",
  "devDependencies": {
    "@babel/core": "^7.0.0-beta.51",
    "@babel/plugin-transform-modules-commonjs": "^7.0.0-beta.51",
    "@babel/plugin-transform-runtime": "^7.0.0-beta.51",
    "@babel/preset-env": "^7.0.0-beta.51",
    "@babel/preset-react": "^7.0.0-beta.51",
    "@babel/preset-stage-3": "^7.0.0-beta.51",
    "babel-core": "^7.0.0-bridge.0",
    "babel-eslint": "^8.2.3",
    "babel-jest": "^22.4.3",
    "babel-plugin-transform-react-remove-prop-types": "^0.4.13",
    "eslint": "^4.19.1",
    "eslint-config-airbnb": "^16.1.0",
    "eslint-config-prettier": "^2.9.0",
    "eslint-plugin-import": "^2.11.0",
    "eslint-plugin-jsx-a11y": "^6.0.3",
    "eslint-plugin-prettier": "^2.6.0",
    "eslint-plugin-react": "^7.8.2",
    "flow-bin": "^0.76.0",
    "husky": "^0.14.3",
    "jest": "^22.4.3",
    "lint-staged": "^7.1.0",
    "npm-run-all": "^4.1.3",
    "prettier": "^1.12.1",
    "prop-types": "^15.6.2",
    "raf": "^3.4.0",
    "react": "^16.4.1",
    "react-dom": "^16.4.1",
    "react-powerplug": "^1.0.0-rc.1",
    "react-test-renderer": "^16.4.1",
    "rollup": "^0.61.2",
    "rollup-plugin-babel": "^4.0.0-beta.7",
    "rollup-plugin-node-resolve": "^3.3.0",
    "rollup-plugin-size-snapshot": "^0.5.1"
  },
  "dependencies": {
    "@babel/runtime": "7.0.0-beta.51"
  },
  "peerDependencies": {
    "react": ">=16.3",
    "react-dom": ">=16.3",
    "prop-types": ">=15"
  },
  "jest": {
    "roots": [
      "./src"
    ],
    "setupFiles": [
      "raf/polyfill"
    ]
  },
  "lint-staged": {
    "*.{json,js}": [
      "prettier --write",
      "eslint",
      "git add"
    ]
  },
  "prettier": {
    "trailingComma": "es5",
    "singleQuote": true
  }
}
