{
  "name": "react-head",
  "version": "3.4.2",
  "description": "SSR-ready Document Head management for React 16+",
  "main": "dist/index.cjs.js",
  "module": "dist/index.esm.js",
  "types": "src/index.d.ts",
  "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 ci && npm run start",
    "dev": "run-p build:watch example",
    "test": "jest --no-cache",
    "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.11.6",
    "@babel/plugin-proposal-class-properties": "^7.10.4",
    "@babel/plugin-transform-runtime": "^7.11.5",
    "@babel/preset-env": "^7.11.5",
    "@babel/preset-react": "^7.10.4",
    "@rollup/plugin-node-resolve": "^9.0.0",
    "@rollup/plugin-replace": "^2.3.3",
    "babel-eslint": "^10.1.0",
    "babel-jest": "^26.5.2",
    "eslint": "^7.11.0",
    "eslint-config-airbnb": "^18.2.0",
    "eslint-config-prettier": "^6.12.0",
    "eslint-plugin-import": "^2.22.1",
    "eslint-plugin-jsx-a11y": "^6.3.1",
    "eslint-plugin-prettier": "^3.1.4",
    "eslint-plugin-react": "^7.21.4",
    "flow-bin": "^0.135.0",
    "husky": "^4.3.0",
    "jest": "^26.5.3",
    "lint-staged": "^10.4.0",
    "npm-run-all": "^4.1.5",
    "prettier": "^2.1.2",
    "raf": "^3.4.1",
    "react": "^16.13.1",
    "react-dom": "^16.13.1",
    "react-powerplug": "^1.0.0",
    "react-test-renderer": "^16.13.1",
    "rollup": "^2.29.0",
    "rollup-plugin-babel": "^4.4.0",
    "rollup-plugin-size-snapshot": "^0.12.0",
    "rollup-plugin-terser": "^7.0.2"
  },
  "dependencies": {
    "@babel/runtime": "^7.11.2"
  },
  "peerDependencies": {
    "react": ">=16.3",
    "react-dom": ">=16.3"
  },
  "jest": {
    "roots": [
      "./tests"
    ],
    "setupFiles": [
      "raf/polyfill"
    ]
  },
  "lint-staged": {
    "*.{json,js}": [
      "prettier --write",
      "eslint ./src",
      "git add"
    ]
  },
  "prettier": {
    "trailingComma": "es5",
    "singleQuote": true
  }
}
