{
  "name": "react-hover-observer",
  "version": "2.1.1",
  "description": "A React component that notifies its children of hover interactions.",
  "repository": {
    "type": "git",
    "url": "https://github.com/ethanselzer/react-hover-observer.git"
  },
  "author": "Ethan Selzer <ethanselzer@gmail.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/ethanselzer/react-hover-observer/issues"
  },
  "homepage": "https://github.com/ethanselzer/react-hover-observer",
  "keywords": [
    "react",
    "mouseenter",
    "mouseover",
    "hover",
    "hoverintent"
  ],
  "main": "dist/ReactHoverObserver.js",
  "module": "dist/es/ReactHoverObserver.js",
  "files": [
    "dist",
    "LICENCE"
  ],
  "scripts": {
    "build": "rimraf dist && npm run build-cjs && npm run build-es && npm run build-umd",
    "build-cjs": "cross-env BABEL_ENV=cjs babel src --out-dir dist",
    "build-es": "babel src --out-dir dist/es",
    "build-umd": "webpack -p",
    "lint": "eslint \"@(src|test)/**/*.js\"",
    "prepublishOnly": "npm run test && npm run build",
    "test": "npm run lint && npm run test-only",
    "test-only": "cross-env BABEL_ENV=test mocha --require babel-core/register --require test/setup test/*spec.js",
    "test-watch": "npm run test-only -- --watch --watch-extensions js",
    "test-coverage": "rimraf coverage && nyc --reporter=lcov npm run test-only && nyc report",
    "test-ci": "npm run lint && npm run test-coverage && npm run coveralls",
    "coveralls": "nyc report --reporter=text-lcov | coveralls"
  },
  "nyc": {
    "sourceMap": false,
    "instrument": false,
    "exclude": [
      "test"
    ]
  },
  "devDependencies": {
    "babel-cli": "^6.26.0",
    "babel-core": "^6.26.0",
    "babel-eslint": "^8.0.1",
    "babel-loader": "^7.1.2",
    "babel-plugin-istanbul": "^4.1.5",
    "babel-plugin-transform-class-properties": "6.24.1",
    "babel-preset-es2015": "6.24.1",
    "babel-preset-react": "6.24.1",
    "babel-preset-stage-2": "6.24.1",
    "chai": "^4.1.2",
    "coveralls": "^3.0.0",
    "cross-env": "^5.0.5",
    "enzyme": "^3.1.0",
    "enzyme-adapter-react-16": "^1.0.1",
    "eslint": "^4.8.0",
    "eslint-plugin-react": "^7.4.0",
    "jsdom": "^11.3.0",
    "lodash.isfunction": "3.0.8",
    "mocha": "^4.0.1",
    "nyc": "^11.2.1",
    "react": "^16.0.0",
    "react-dom": "^16.0.0",
    "react-test-renderer": "^16.0.0",
    "rimraf": "^2.6.2",
    "sinon": "^4.0.1",
    "webpack": "^3.6.0",
    "webpack-bundle-analyzer": "^2.9.0"
  },
  "peerDependencies": {
    "react": "~0.14.9 || ^15.0.0 || ^16.0.0"
  },
  "dependencies": {
    "object-assign": "^4.1.1",
    "object.omit": "^3.0.0",
    "prop-types": "^15.6.0"
  }
}
