{
  "name": "react-double-scrollbar",
  "version": "0.0.15",
  "description": "React component that adds a horizontal scrollbar to the top of a component",
  "main": "dist/DoubleScrollbar.js",
  "repository": {
    "type": "git",
    "url": "git://github.com/umchee/react-double-scrollbar.git"
  },
  "files": [
    "dist/index.js"
  ],
  "keywords": [
    "react",
    "react-component",
    "component",
    "scrollbar",
    "double scrollbar"
  ],
  "author": "Scott McDaniel <hknapps@gmail.com> (https://scottmcdaniel.me)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/umchee/react-double-scrollbar/issues"
  },
  "homepage": "https://github.com/umchee/react-double-scrollbar",
  "scripts": {
    "clean": "rimraf dist",
    "prebuild": "npm run clean",
    "build": "WEBPACK_ENV=build webpack",
    "dev": "WEBPACK_ENV=dev webpack --progress --colors --watch",
    "test": "jest"
  },
  "peerDependencies": {
    "react": ">= 0.14.7"
  },
  "devDependencies": {
    "babel-cli": "^6.6.5",
    "babel-core": "^6.7.4",
    "babel-eslint": "^6.0.0",
    "babel-jest": "^9.0.3",
    "babel-loader": "^6.2.4",
    "babel-plugin-add-module-exports": "^0.1.2",
    "babel-preset-es2015": "^6.6.0",
    "babel-preset-react": "^6.5.0",
    "eslint": "^2.5.1",
    "eslint-loader": "^1.3.0",
    "eslint-plugin-react": "^4.2.3",
    "html-webpack-plugin": "^2.14.0",
    "jest": "^18.1.0",
    "jest-cli": "^18.1.0",
    "react": "^0.14.7",
    "react-addons-test-utils": "^0.14.7",
    "react-dom": "^0.14.7",
    "rimraf": "^2.5.2",
    "webpack": "^1.12.14",
    "yargs": "3.32.0"
  },
  "jest": {
    "unmockedModulePathPatterns": [
      "<rootDir>/node_modules/react",
      "<rootDir>/node_modules/react-dom",
      "<rootDir>/node_modules/react-addons-test-utils"
    ],
    "testPathDirs": [
      "test"
    ]
  },
  "engines": {
    "node": ">=0.12.0"
  },
  "eslintConfig": {
    "env": {
      "browser": true,
      "node": true,
      "es6": true
    },
    "ecmaFeatures": {
      "modules": true,
      "jsx": true
    },
    "globals": {
      "describe": true,
      "it": true,
      "sinon": true
    },
    "parser": "babel-eslint",
    "plugins": [
      "react"
    ],
    "rules": {
      "strict": [
        2,
        "global"
      ],
      "indent": [
        2,
        2
      ],
      "quotes": [
        2,
        "double"
      ],
      "no-alert": 0,
      "no-underscore-dangle": 0,
      "react/display-name": 0,
      "react/jsx-no-undef": 1,
      "react/jsx-sort-props": 1,
      "react/jsx-uses-react": 1,
      "react/jsx-uses-vars": 1,
      "react/no-did-mount-set-state": 1,
      "react/no-did-update-set-state": 1,
      "react/no-multi-comp": 1,
      "react/no-unknown-property": 1,
      "react/prop-types": 0,
      "react/react-in-jsx-scope": 1,
      "react/self-closing-comp": 1,
      "react/wrap-multilines": 1
    }
  }
}
