{"_id":"react-scrollbar","_rev":"39-e227b65144ebdd397bcc1b04c072e5ef","name":"react-scrollbar","time":{"modified":"2022-06-26T08:07:15.115Z","created":"2015-03-02T01:30:44.139Z","0.0.1":"2015-03-02T01:30:44.139Z","0.0.0":"2015-04-11T20:11:06.175Z","0.1.0":"2015-04-21T18:04:20.063Z","0.1.1":"2015-04-21T18:13:52.600Z","0.1.2":"2015-05-04T15:54:43.706Z","0.1.3":"2015-05-19T18:44:15.320Z","0.1.4":"2015-09-19T10:09:18.371Z","0.2.0":"2015-10-09T16:40:00.268Z","0.2.1":"2015-10-09T17:53:40.051Z","0.2.2":"2015-10-12T09:40:17.974Z","0.3.0":"2015-11-21T17:28:47.278Z","0.3.1":"2015-11-29T16:18:11.995Z","0.3.2":"2016-02-02T11:39:25.515Z","0.4.0":"2016-03-07T21:53:08.519Z","0.4.1":"2016-03-11T19:02:39.416Z","0.4.2":"2016-09-29T09:09:44.290Z","0.5.0":"2016-12-03T13:36:28.227Z","0.5.1":"2016-12-14T22:15:12.000Z","0.5.2":"2018-02-14T22:04:11.074Z","0.5.3":"2018-02-16T15:33:06.641Z","0.5.4":"2018-02-22T08:18:38.175Z","0.5.5":"2019-04-18T05:56:10.784Z","0.5.6":"2019-04-18T07:06:19.109Z"},"maintainers":[{"name":"souhe","email":"souhepend@hotmail.com"}],"dist-tags":{"latest":"0.5.6"},"description":"ScrollArea component for react","readme":"\n[![build status](https://img.shields.io/travis/souhe/reactScrollbar/master.svg?style=flat-square)](https://travis-ci.org/souhe/reactScrollbar)\n[![npm package](https://img.shields.io/npm/v/react-scrollbar.svg?style=flat-square)](https://www.npmjs.org/package/react-scrollbar)\n[![npm downloads](https://img.shields.io/npm/dm/react-scrollbar.svg?style=flat-square)](https://www.npmjs.org/package/react-scrollbar)\n# react-scrollbar\n\nSimple ScrollArea component built for [React](http://facebook.github.io/react/).\n\n[Demo](http://souhe.github.io/reactScrollbar)\n\n```bash\nnpm install react-scrollbar --save\n```\n\nReact Scrollbar requires **React 0.13 or later**\n\nFeatures:\n - built with and for `React`\n - horizontal and vertical scrollbars\n - touch support\n - scrollbar dragging and clicking\n - smooth scrolling\n - universal app support\n - customizable styles\n - and more...\n\n## Usage examples\n\n#### React 0.14\n```js\n    var React = require('react');\n    var ReactDOM = require('react-dom');\n    var ScrollArea = require('react-scrollbar');\n\n    var App = React.createClass({\n      render() {\n        return (\n          <ScrollArea\n            speed={0.8}\n            className=\"area\"\n            contentClassName=\"content\"\n            horizontal={false}\n            >\n            <div>Some long content.</div>\n          </ScrollArea>\n        );\n      }\n    });\n\n    ReactDOM.render(<App/>, document.body);\n```\n\n#### React 0.13\nFor **React 0.13** you need to wrap `<ScrollArea>` child into a function.\n```js\n<ScrollArea>\n    { () => <div>Some long content. </div> }\n</ScrollArea>\n```\n\n#### Version without boundled css styles ####\nIf you prefer including scrollbar without css styles boundled inline to js file it's possible to import package without them. It's useful when you want to make custom css changes in scrollbars without using `!important` in each line. \n\n```js\n    var ScrollArea = require('react-scrollbar/no-css');\n```\nThen **include scrollArea.css** file into your project.\n\n\n### Run the example app\n\n```bash\ngit clone https://github.com/souhe/reactScrollbar.git\ncd reactScrollbar\nnpm install\ngulp build-examples\ngulp less-examples\ngulp watch\n```\n\nthen open [http://localhost:8003](http://localhost:8003).\n\n### Using in universal app\n`ScrollArea` component has now full universal app support. It's only one requirement: you have to use `react-scrollbar` in no-css version and then include css file into your project manually (see [this](#version-without-boundled-css-styles)). It's because of issue in webpack style-loader which is used to bundle css styles into main js file.\n\n## API\n\n### Props\n\n```js\n    <ScrollArea\n        speed={Number}\n        className={String}\n        style={Object}\n        contentClassName={String}\n        contentStyle={Object}\n        horizontal={Boolean}\n        horizontalContainerStyle={Object}\n        horizontalScrollbarStyle={Object}\n        vertical={Boolean}\n        verticalContainerStyle={Object}\n        verticalScrollbarStyle={Object}\n        onScroll={(value) => {}}\n        contentWindow={Object}\n        ownerDocument={Object}\n        smoothScrolling={Boolean}\n        minScrollSize={Number}\n        swapWheelAxes={Boolean}\n        stopScrollPropagation={Boolean}\n        focusableTabIndex={Number}\n    >\n```\n\n#### speed\nScroll speed applied to mouse wheel event.\n**Default: 1**\n\n#### onScroll\n`onScroll(value: Object)` event which can notify the parent component when the container scrolls.\n- `value: Object` - informations about current position\n - `value.leftPosition: Number` - content left position (distance in pixels from the left side of container)\n - `value.topPosition: Number` - content top position (distance in pixels from the top of container)\n - `value.containerHeight: Number` - container height\n - `value.containerWidth: Number` - container width\n - `value.realHeight: Number` - real content height\n - `value.realWidth: Number` - real content width\n\n#### className\nCSS class names added to main scroll area component.\n\n#### style\nInline styles applied to the main scroll area component.\n\n#### contentClassName\nCSS class names added to element with scroll area content.\n\n#### contentStyle\nInline styles applied to element with scroll area content.\n\n#### horizontal\nWhen set to false, horizontal scrollbar will not be available.\n**Default: true**\n\n#### horizontalContainerStyle\nInline styles applied to horizontal scrollbar's container.\n\n#### horizontalScrollbarStyle\nInline styles applied to horizontal scrollbar.\n\n#### vertical\nWhen set to false, vertical scrollbar will not be available, regardless of the content height.\n**Default: true**\n\n#### verticalContainerStyle\nInline styles applied to vertical scrollbar's container.\n\n#### verticalScrollbarStyle\nInline styles applied to vertical scrollbar.\n\n#### contentWindow\nYou can override window to make scrollarea works inside iframe.\n**Default: window**\n\n#### ownerDocument\nYou can override document to make scrollarea works inside iframe.\n**Default: document**\n\n#### smoothScrolling\nWhen set to true, smooth scrolling for both scrollbars is enabled. \n**Default: false**\n\n#### minScrollSize\nUsing this prop it's possible to set minimal size in px for both scrollbars.\n\n#### swapWheelAxes\nAfter set to true, mouse wheel event has swapped directions. So normal scrolling moves horizontal scrollbar and scrolling with SHIFT key moves vertical scrollbar. It could be useful for applications with horizontal layout.\n**Default: false**\n\n#### stopScrollPropagation\nAfter set to true, mouse wheel event will not propagate. This option is specifically useful in preventing nested scroll areas from propagating scroll actions to parent scroll areas.\n**Default: false**\n\n#### focusableTabIndex\nAfter set to a number, scrollarea-content is rendered with a tabindex value set to the passed in. This option is specifically useful in allowing the scroll area to be focusable.\n**Default: undefined**\n\n\n### Context\nIn context of each `<ScrollArea>` child could be injected an object `scrollArea` contains method:\n\n#### `refresh()`\nThat method allows manual refreshing of the scrollbar.\n\nReact 0.14 example using ES6 syntax:\n```js\nclass App extends React.Component {\n    render(){\n        return (\n            <ScrollArea>\n                <Content />\n            </ScrollArea>\n        );\n    }\n}\n\nclass Content extends React.Component {\n    render(){\n        return (\n            <div onClick={this.handleSomeAction.bind(this)}> Some long content </div>\n        );\n    }\n\n    handleSomeAction(){\n        this.context.scrollArea.refresh();\n    }\n}\n\nContent.contextTypes = {\n    scrollArea: React.PropTypes.object\n};\n```\n\n#### `scrollTop()`\nIt allows to scroll to the top of `ScrollArea` component.\n\n#### `scrollBottom()`\nIt allows to scroll to the bottom of `ScrollArea` component.\n\n#### `scrollYTo(topPosition)`\nIt moves vertical scrollbar. `topPosition` is a distance between the top of `scrollArea` container and the top of `scrollArea` content.  \n\n#### `scrollLeft()`\nIt allows to scroll to the left of `ScrollArea` component.\n\n#### `scrollRight()`\nIt allows to scroll to the right of `ScrollArea` component.\n\n#### `scrollXTo(leftPosition)`\nIt moves horizontal scrollbar. `leftPosition` is a distance between left edge of `scrollArea` container and left edge of `scrollArea` content.  \n\n# Change log\nEvery release is documented on the Github [Releases](https://github.com/souhe/reactScrollbar/releases) page. \n\n# License\nMIT\n","versions":{"0.1.0":{"name":"react-scrollbar","version":"0.1.0","description":"ScrollArea component for react","main":"./dist/scrollArea.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"https://github.com/souhe/reactScrollbar.git"},"keywords":["react","react-component","component","scrollbar","scroll","scrollarea"],"author":{"name":"souhe"},"license":"MIT","dependencies":{"classnames":"^1.2.0","react":"^0.13.1"},"devDependencies":{"babel-core":"^4.7.16","babel-loader":"^4.2.0","babel-runtime":"^5.0.8","css-loader":"^0.10.1","gulp":"^3.8.11","gulp-babel":"^5.1.0","gulp-concat":"^2.5.2","gulp-connect":"^2.2.0","gulp-less":"^3.0.2","gulp-webpack":"^1.3.0","style-loader":"^0.10.2","webpack":"^1.7.3"},"bugs":{"url":"https://github.com/souhe/reactScrollbar/issues"},"homepage":"https://github.com/souhe/reactScrollbar","gitHead":"742c32424308718c6609f478a87eade8f30acbe4","_id":"react-scrollbar@0.1.0","_shasum":"c75486072fb9d27f8470441967b742f1a1c17b6f","_from":".","_npmVersion":"2.1.4","_nodeVersion":"0.10.33","_npmUser":{"name":"souhe","email":"souhepend@hotmail.com"},"dist":{"shasum":"c75486072fb9d27f8470441967b742f1a1c17b6f","tarball":"https://registry.npmjs.org/react-scrollbar/-/react-scrollbar-0.1.0.tgz","integrity":"sha512-7RmLK69d541UmEk3GcIoAd6KNsGF/InFh08DLqiWASc9CM/l8GMBYFzlOg7vwmvdnB0cS2+E6C+hR5aU62DvFw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGOPPJb+FMZ4bwGyoWJcQLYcDil5HyiMpeLuu98zj61PAiAk8jNc760CUDQqqdQkkGpHRe/r8yEEmFo1U4MSD+EgtA=="}]},"maintainers":[{"name":"souhe","email":"souhepend@hotmail.com"}],"directories":{}},"0.1.1":{"name":"react-scrollbar","version":"0.1.1","description":"ScrollArea component for react","main":"./dist/scrollArea.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"https://github.com/souhe/reactScrollbar.git"},"keywords":["react","react-component","component","scrollbar","scroll","scrollarea"],"author":{"name":"souhe"},"license":"MIT","dependencies":{"classnames":"^1.2.0","react":"^0.13.1"},"devDependencies":{"babel-core":"^4.7.16","babel-loader":"^4.2.0","babel-runtime":"^5.0.8","css-loader":"^0.10.1","gulp":"^3.8.11","gulp-babel":"^5.1.0","gulp-concat":"^2.5.2","gulp-connect":"^2.2.0","gulp-less":"^3.0.2","gulp-webpack":"^1.3.0","style-loader":"^0.10.2","webpack":"^1.7.3"},"bugs":{"url":"https://github.com/souhe/reactScrollbar/issues"},"homepage":"https://github.com/souhe/reactScrollbar","gitHead":"e352a0f1d6c4982a978b8df47d2a7f27873b6de0","_id":"react-scrollbar@0.1.1","_shasum":"892b552760ff516f5bd19047143f3d73d6881dff","_from":".","_npmVersion":"2.1.4","_nodeVersion":"0.10.33","_npmUser":{"name":"souhe","email":"souhepend@hotmail.com"},"dist":{"shasum":"892b552760ff516f5bd19047143f3d73d6881dff","tarball":"https://registry.npmjs.org/react-scrollbar/-/react-scrollbar-0.1.1.tgz","integrity":"sha512-TuQeFui+FfeyhELOUePBfEGYSwKVHvCo4jOg27U/fxgy4ajs01NyLHXoMEoPemD70FM5dvE9Lr2FR5U4kqmyjQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDGSzQruyFF4DAvtuhLHLig/p44oBkszavc1DZZHdActgIhAJZ2gFs7X1G3rdh5CJ8vOWJCMC/i1Rr0B6Sfcp9PK+tP"}]},"maintainers":[{"name":"souhe","email":"souhepend@hotmail.com"}],"directories":{}},"0.1.2":{"name":"react-scrollbar","version":"0.1.2","description":"ScrollArea component for react","main":"./dist/scrollArea.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"https://github.com/souhe/reactScrollbar.git"},"keywords":["react","react-component","component","scrollbar","scroll","scrollarea"],"author":{"name":"souhe"},"license":"MIT","dependencies":{"classnames":"^1.2.0","react":"^0.13.1"},"devDependencies":{"babel-core":"^4.7.16","babel-loader":"^4.2.0","babel-runtime":"^5.0.8","css-loader":"^0.10.1","gulp":"^3.8.11","gulp-babel":"^5.1.0","gulp-concat":"^2.5.2","gulp-connect":"^2.2.0","gulp-less":"^3.0.2","gulp-webpack":"^1.3.0","style-loader":"^0.10.2","webpack":"^1.7.3"},"bugs":{"url":"https://github.com/souhe/reactScrollbar/issues"},"homepage":"https://github.com/souhe/reactScrollbar","gitHead":"c4cef9920287ea71b5b29ae1e551b4abc495de68","_id":"react-scrollbar@0.1.2","_shasum":"a92d517b72b3d119730568dbdb0c21f8f92c8de5","_from":".","_npmVersion":"2.1.4","_nodeVersion":"0.10.33","_npmUser":{"name":"souhe","email":"souhepend@hotmail.com"},"dist":{"shasum":"a92d517b72b3d119730568dbdb0c21f8f92c8de5","tarball":"https://registry.npmjs.org/react-scrollbar/-/react-scrollbar-0.1.2.tgz","integrity":"sha512-PB1ruQaaOMCxSTXWf/PetyleH+2Hc9phmK1lt2ZFoIkyPiqcfO2oKISpmGYfRwxzu7rcqGlR1Vj8zdeApDtXTg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCg6lED5DQ0/s13dtuOf1UqOMH6AFqiDemAwVgCe2e25AIhAMUqVOyR2u+WERbj4Wae65Ysvbj2TfZRdvc81m3mobmi"}]},"maintainers":[{"name":"souhe","email":"souhepend@hotmail.com"}],"directories":{}},"0.1.3":{"name":"react-scrollbar","version":"0.1.3","description":"ScrollArea component for react","main":"./dist/scrollArea.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/souhe/reactScrollbar.git"},"keywords":["react","react-component","component","scrollbar","scroll","scrollarea"],"author":{"name":"souhe"},"license":"MIT","dependencies":{"classnames":"^1.2.0","react":"^0.13.1"},"devDependencies":{"babel-core":"^4.7.16","babel-loader":"^4.2.0","babel-runtime":"^5.0.8","css-loader":"^0.10.1","gulp":"^3.8.11","gulp-babel":"^5.1.0","gulp-concat":"^2.5.2","gulp-connect":"^2.2.0","gulp-less":"^3.0.2","gulp-webpack":"^1.3.0","style-loader":"^0.10.2","webpack":"^1.7.3"},"bugs":{"url":"https://github.com/souhe/reactScrollbar/issues"},"homepage":"https://github.com/souhe/reactScrollbar","gitHead":"37a1449d351bdd417c93fc2feacf34523c8ce943","_id":"react-scrollbar@0.1.3","_shasum":"467677ab935a33f6b9b03f1aa66391aa9aea415b","_from":".","_npmVersion":"2.10.0","_nodeVersion":"0.12.3","_npmUser":{"name":"souhe","email":"souhepend@hotmail.com"},"dist":{"shasum":"467677ab935a33f6b9b03f1aa66391aa9aea415b","tarball":"https://registry.npmjs.org/react-scrollbar/-/react-scrollbar-0.1.3.tgz","integrity":"sha512-V/bY+4grUG56R18oXalahkWh4PLV0/2g9D/EMbqYXx7XWIO7vYrWCAAja5jr6DkU7tT2HR1duVmt99A6VFtqpA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDn7+fK9ltDM81yXEKIhcpclLN7s+VbD9wDNGoyWv7DswIgXd87e7w2kfb3CUfHPrpMjbFxnReN//+S3dVBYqKC1Ac="}]},"maintainers":[{"name":"souhe","email":"souhepend@hotmail.com"}],"directories":{}},"0.1.4":{"name":"react-scrollbar","version":"0.1.4","description":"ScrollArea component for react","main":"./dist/scrollArea.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/souhe/reactScrollbar.git"},"keywords":["react","react-component","component","scrollbar","scroll","scrollarea"],"author":{"name":"souhe"},"license":"MIT","dependencies":{"classnames":"^1.2.0","react":"^0.13.1"},"devDependencies":{"babel-core":"^4.7.16","babel-loader":"^4.2.0","babel-runtime":"^5.0.8","css-loader":"^0.10.1","gulp":"^3.8.11","gulp-babel":"^5.1.0","gulp-concat":"^2.5.2","gulp-connect":"^2.2.0","gulp-less":"^3.0.2","gulp-webpack":"^1.3.0","style-loader":"^0.10.2","webpack":"^1.7.3"},"bugs":{"url":"https://github.com/souhe/reactScrollbar/issues"},"homepage":"https://github.com/souhe/reactScrollbar","gitHead":"9452a3c2fb5a68345acfe1b61bda4d73e20b16ee","_id":"react-scrollbar@0.1.4","_shasum":"731f850eaeb119938f94bf7dd7e723ce882f7ef6","_from":".","_npmVersion":"2.10.0","_nodeVersion":"0.12.3","_npmUser":{"name":"souhe","email":"souhepend@hotmail.com"},"dist":{"shasum":"731f850eaeb119938f94bf7dd7e723ce882f7ef6","tarball":"https://registry.npmjs.org/react-scrollbar/-/react-scrollbar-0.1.4.tgz","integrity":"sha512-KpSzz9lBAWrjNiyiBYLZwMRC94LtxAes134oYkLUk19BXfx72JBgNieltCb5KlAaikPqXxw0VvGBiZzBTUKCXw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAZceqCecQKZrkim//86knf6f7jsWE3/SoOB5VuVY2dtAiEAoleGLyTL2jLanvyZjQtYkpEwnitNVKW+X+Wmhdf3BxQ="}]},"maintainers":[{"name":"souhe","email":"souhepend@hotmail.com"}],"directories":{}},"0.2.0":{"name":"react-scrollbar","version":"0.2.0","description":"ScrollArea component for react","main":"./dist/scrollArea.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/souhe/reactScrollbar.git"},"keywords":["react","react-component","component","scrollbar","scroll","scrollarea"],"author":{"name":"souhe"},"license":"MIT","dependencies":{"classnames":"^1.2.0","react":"^0.14.0"},"devDependencies":{"babel":"^5.8.23","babel-core":"^5.8.25","babel-loader":"^5.3.2","babel-runtime":"^5.8.24","css-loader":"^0.10.1","gulp":"^3.9.0","gulp-babel":"^5.2.1","gulp-concat":"^2.5.2","gulp-connect":"^2.2.0","gulp-less":"^3.0.2","less":"^2.5.1","less-loader":"^2.2.1","merge-stream":"^1.0.0","react-dom":"^0.14.0","run-sequence":"^1.1.4","style-loader":"^0.10.2","webpack":"^1.12.2","webpack-stream":"^2.1.0"},"bugs":{"url":"https://github.com/souhe/reactScrollbar/issues"},"homepage":"https://github.com/souhe/reactScrollbar","gitHead":"bcab06f094345356ba0e81f5332ed2a38ec84ed7","_id":"react-scrollbar@0.2.0","_shasum":"7855a93d5912286016160b2abaa93407dd24eadf","_from":".","_npmVersion":"2.10.0","_nodeVersion":"0.12.3","_npmUser":{"name":"souhe","email":"souhepend@hotmail.com"},"dist":{"shasum":"7855a93d5912286016160b2abaa93407dd24eadf","tarball":"https://registry.npmjs.org/react-scrollbar/-/react-scrollbar-0.2.0.tgz","integrity":"sha512-Aa+CSGVlT8Sye8cUTmy4Gg0iGS+vzONY/Z+hjou1D9SlB5tIsymk6FF/S4jJ9lUT5FYx9LIjJ36D9fFCqFRTUg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCSazvESOJzDK5qPOeCLJW82j6LXINJwZuZvT1BtBYuPQIhAOpKY6dTqlXsL1b5POy0fVGV7f0NNbq1A6lllEpe+sTj"}]},"maintainers":[{"name":"souhe","email":"souhepend@hotmail.com"}],"directories":{}},"0.2.1":{"name":"react-scrollbar","version":"0.2.1","description":"ScrollArea component for react","main":"./dist/scrollArea.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/souhe/reactScrollbar.git"},"keywords":["react","react-component","component","scrollbar","scroll","scrollarea"],"author":{"name":"souhe"},"license":"MIT","dependencies":{"classnames":"^1.2.0","react":"^0.14.0"},"devDependencies":{"babel":"^5.8.23","babel-core":"^5.8.25","babel-loader":"^5.3.2","babel-runtime":"^5.8.24","css-loader":"^0.10.1","gulp":"^3.9.0","gulp-babel":"^5.2.1","gulp-concat":"^2.5.2","gulp-connect":"^2.2.0","gulp-less":"^3.0.2","less":"^2.5.1","less-loader":"^2.2.1","merge-stream":"^1.0.0","react-dom":"^0.14.0","run-sequence":"^1.1.4","style-loader":"^0.10.2","webpack":"^1.12.2","webpack-stream":"^2.1.0"},"bugs":{"url":"https://github.com/souhe/reactScrollbar/issues"},"homepage":"https://github.com/souhe/reactScrollbar","gitHead":"b0e2ec82444db29b22332961da9fdf6c96adfde2","_id":"react-scrollbar@0.2.1","_shasum":"34f7b699c0997c509db34c1989dc79ba639660a5","_from":".","_npmVersion":"2.10.0","_nodeVersion":"0.12.3","_npmUser":{"name":"souhe","email":"souhepend@hotmail.com"},"dist":{"shasum":"34f7b699c0997c509db34c1989dc79ba639660a5","tarball":"https://registry.npmjs.org/react-scrollbar/-/react-scrollbar-0.2.1.tgz","integrity":"sha512-6aYCYJ8NnObSKMe6+dnsse3ljT9IjqRioc8Z5oK2rh/12Jh3OQnPpQvJFWsoKEOgmv6cGSJ79pdBjUcODcV9Ow==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDcFLkYw3ASNeKUnpUgPVlnXJNXHig/XmHZK3/RekdutAIgZc7ipU/jHKJtTcFuqfW0/RlXGsdz250Z5lRoBLCAGMs="}]},"maintainers":[{"name":"souhe","email":"souhepend@hotmail.com"}],"directories":{}},"0.2.2":{"name":"react-scrollbar","version":"0.2.2","description":"ScrollArea component for react","main":"./dist/scrollArea.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/souhe/reactScrollbar.git"},"keywords":["react","react-component","component","scrollbar","scroll","scrollarea"],"author":{"name":"souhe"},"license":"MIT","dependencies":{"classnames":"^1.2.0","react":"^0.14.0"},"devDependencies":{"babel":"^5.8.23","babel-core":"^5.8.25","babel-loader":"^5.3.2","babel-runtime":"^5.8.24","css-loader":"^0.10.1","gulp":"^3.9.0","gulp-babel":"^5.2.1","gulp-concat":"^2.5.2","gulp-connect":"^2.2.0","gulp-less":"^3.0.2","less":"^2.5.1","less-loader":"^2.2.1","merge-stream":"^1.0.0","react-dom":"^0.14.0","run-sequence":"^1.1.4","style-loader":"^0.10.2","webpack":"^1.12.2","webpack-stream":"^2.1.0"},"bugs":{"url":"https://github.com/souhe/reactScrollbar/issues"},"homepage":"https://github.com/souhe/reactScrollbar","gitHead":"2fa4af2c277f86a64a901b566506df25edaa9e15","_id":"react-scrollbar@0.2.2","_shasum":"3bce06e04b9a03b4a474f24021a9727b88903e90","_from":".","_npmVersion":"2.10.0","_nodeVersion":"0.12.3","_npmUser":{"name":"souhe","email":"souhepend@hotmail.com"},"dist":{"shasum":"3bce06e04b9a03b4a474f24021a9727b88903e90","tarball":"https://registry.npmjs.org/react-scrollbar/-/react-scrollbar-0.2.2.tgz","integrity":"sha512-xLrd9UynRyLwdcrYxgYbemoJswJP+nJK/T1ttfeSvv1oUR5Wd27TMgvFJ2MfysAb+7qLkPM35zmX3X2V5wPwNQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDcMmAFzq8z4aMGzPNi0/khqfztnDO35JFJauwd944l6AIhAMJ70S/OqpAhsS049WNM8apXYsC/b65nRIUo0svg2uIE"}]},"maintainers":[{"name":"souhe","email":"souhepend@hotmail.com"}],"directories":{}},"0.3.0":{"name":"react-scrollbar","version":"0.3.0","description":"ScrollArea component for react","main":"./dist/scrollArea.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"https://github.com/souhe/reactScrollbar.git"},"keywords":["react","react-component","component","scrollbar","scroll","scrollarea"],"author":{"name":"souhe"},"license":"MIT","dependencies":{"classnames":"^1.2.0","react":"^0.14.0"},"devDependencies":{"babel":"^5.8.23","babel-core":"^5.8.25","babel-loader":"^5.3.2","babel-runtime":"^5.8.24","css-loader":"^0.10.1","gulp":"^3.9.0","gulp-babel":"^5.2.1","gulp-concat":"^2.5.2","gulp-connect":"^2.2.0","gulp-less":"^3.0.2","less":"^2.5.1","less-loader":"^2.2.1","merge-stream":"^1.0.0","react-dom":"^0.14.0","run-sequence":"^1.1.4","style-loader":"^0.10.2","webpack":"^1.12.2","webpack-stream":"^2.1.0"},"bugs":{"url":"https://github.com/souhe/reactScrollbar/issues"},"homepage":"https://github.com/souhe/reactScrollbar","gitHead":"5d5d1b4889a089bdc4694d698260d3c180552f94","_id":"react-scrollbar@0.3.0","_shasum":"9113192702764e3abffb0497cd3248ba9e119c7f","_from":".","_npmVersion":"2.1.4","_nodeVersion":"4.2.2","_npmUser":{"name":"souhe","email":"souhepend@hotmail.com"},"dist":{"shasum":"9113192702764e3abffb0497cd3248ba9e119c7f","tarball":"https://registry.npmjs.org/react-scrollbar/-/react-scrollbar-0.3.0.tgz","integrity":"sha512-eT80KPuC49vGGSVchjYpW3VxA3EXBd8dnGw+ffns4fbJNeIc3Clpg5uBAYLGe5RLIWPGF9gcruzOoTr05LB2BQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCNIwJEyewLcVUqjih912JlA9MY107e0WvDHrLpFHJLzwIhAO1OnX8WM5Wj+lQbeW5o08kUwEMrNID5kQO8pdpI/04H"}]},"maintainers":[{"name":"souhe","email":"souhepend@hotmail.com"}],"directories":{}},"0.3.1":{"name":"react-scrollbar","version":"0.3.1","description":"ScrollArea component for react","main":"./dist/scrollArea.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"https://github.com/souhe/reactScrollbar.git"},"keywords":["react","react-component","component","scrollbar","scroll","scrollarea"],"author":{"name":"souhe"},"license":"MIT","dependencies":{"classnames":"^1.2.0","line-height":"^0.1.1","react":"^0.14.0"},"devDependencies":{"babel":"^5.8.23","babel-core":"^5.8.25","babel-loader":"^5.3.2","babel-runtime":"^5.8.24","css-loader":"^0.10.1","gulp":"^3.9.0","gulp-babel":"^5.2.1","gulp-concat":"^2.5.2","gulp-connect":"^2.2.0","gulp-less":"^3.0.2","less":"^2.5.1","less-loader":"^2.2.1","merge-stream":"^1.0.0","react-dom":"^0.14.0","run-sequence":"^1.1.4","style-loader":"^0.10.2","webpack":"^1.12.2","webpack-stream":"^2.1.0"},"bugs":{"url":"https://github.com/souhe/reactScrollbar/issues"},"homepage":"https://github.com/souhe/reactScrollbar","gitHead":"5993e5941453f4914a8fb5fbd565b0557b91ccaa","_id":"react-scrollbar@0.3.1","_shasum":"a45bacb392c3604ed6628320cbc4315155467cd0","_from":".","_npmVersion":"2.1.4","_nodeVersion":"4.2.2","_npmUser":{"name":"souhe","email":"souhepend@hotmail.com"},"dist":{"shasum":"a45bacb392c3604ed6628320cbc4315155467cd0","tarball":"https://registry.npmjs.org/react-scrollbar/-/react-scrollbar-0.3.1.tgz","integrity":"sha512-AL6ZbZ0LxBCI6ijwOJQjrk1aZIVttNWgGaRWvoJvTY3OWyAYRa+54pT9OyP2QlAjEUpJm1bQn7svJw2QASiV+A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIH3ojuSbSA+vLRXR4gMc8JJg2lk0GPTvt613jNlyMq4cAiEA5cNV5b2LYGx0x9ROStXN0w6cmho/uXA0bF0af10y/Lw="}]},"maintainers":[{"name":"souhe","email":"souhepend@hotmail.com"}],"directories":{}},"0.3.2":{"name":"react-scrollbar","version":"0.3.2","description":"ScrollArea component for react","main":"./dist/scrollArea.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/souhe/reactScrollbar.git"},"keywords":["react","react-component","component","scrollbar","scroll","scrollarea"],"author":{"name":"souhe"},"license":"MIT","dependencies":{"classnames":"^1.2.0","line-height":"^0.1.1","react":"^0.14.0"},"devDependencies":{"babel":"^5.8.23","babel-core":"^5.8.25","babel-loader":"^5.3.2","babel-runtime":"^5.8.24","css-loader":"^0.10.1","gulp":"^3.9.0","gulp-babel":"^5.2.1","gulp-concat":"^2.5.2","gulp-connect":"^2.2.0","gulp-less":"^3.0.2","less":"^2.5.1","less-loader":"^2.2.1","merge-stream":"^1.0.0","react-dom":"^0.14.0","run-sequence":"^1.1.4","style-loader":"^0.10.2","webpack":"^1.12.2","webpack-stream":"^2.1.0"},"bugs":{"url":"https://github.com/souhe/reactScrollbar/issues"},"homepage":"https://github.com/souhe/reactScrollbar","gitHead":"4ad398e555bd6bc7b0335ccf1943fe22cf2f1033","_id":"react-scrollbar@0.3.2","_shasum":"942511cd85e483e4fd6533b691afc0ec9de9ed85","_from":".","_npmVersion":"2.11.2","_nodeVersion":"0.12.5","_npmUser":{"name":"souhe","email":"souhepend@hotmail.com"},"dist":{"shasum":"942511cd85e483e4fd6533b691afc0ec9de9ed85","tarball":"https://registry.npmjs.org/react-scrollbar/-/react-scrollbar-0.3.2.tgz","integrity":"sha512-zRamwooqC7aGgs2u29he2goUZWoFPUgFxsUpR9G/UWdmumM09KWXfQbHqukiwZRuOuGTmcui0JBztfnW/fDA8A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDiL3xrhi0iX6O8dm4hIEuUZlTB1lvedLMUy7DkMqNF/QIgTE7kG4CjfsWGpvsYM+R2+DVZ8I/VBCM+7DxX+SrFC4k="}]},"maintainers":[{"name":"souhe","email":"souhepend@hotmail.com"}],"_npmOperationalInternal":{"host":"packages-8-eu.internal.npmjs.com","tmp":"tmp/react-scrollbar-0.3.2.tgz_1454413162598_0.49632642045617104"},"directories":{}},"0.4.0":{"name":"react-scrollbar","version":"0.4.0","description":"ScrollArea component for react","main":"./dist/scrollArea.js","scripts":{"test":"karma start karma.config.js --single-run --browsers PhantomJS"},"repository":{"type":"git","url":"https://github.com/souhe/reactScrollbar.git"},"keywords":["react","react-component","component","scrollbar","scroll","scrollarea"],"author":{"name":"souhe"},"license":"MIT","dependencies":{"line-height":"^0.1.1","react":"^0.14.6","react-motion":"^0.3.1"},"devDependencies":{"babel":"^5.8.23","babel-core":"^5.8.25","babel-loader":"^5.3.2","babel-runtime":"^5.8.24","chai":"^3.5.0","css-loader":"^0.23.1","expect":"^1.13.4","expect-jsx":"^2.2.2","gulp":"^3.9.0","gulp-babel":"^6.1.2","gulp-concat":"^2.5.2","gulp-connect":"^2.2.0","gulp-less":"^3.0.2","karma":"^0.13.19","karma-chrome-launcher":"^0.2.2","karma-cli":"^0.1.2","karma-mocha":"^0.2.1","karma-mocha-reporter":"^1.1.5","karma-phantomjs-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^1.7.0","less":"^2.5.1","less-loader":"^2.2.1","merge-stream":"^1.0.0","mocha":"^2.4.4","object-assign":"^4.0.1","phantomjs-prebuilt":"^2.1.3","react-addons-test-utils":"^0.14.6","react-dom":"^0.14.0","run-sequence":"^1.1.4","style-loader":"^0.13.0","webpack":"^1.12.2","webpack-stream":"^3.1.0"},"bugs":{"url":"https://github.com/souhe/reactScrollbar/issues"},"homepage":"https://github.com/souhe/reactScrollbar","gitHead":"e09593d4cfa54293d632eb1bf1f5c2f1416e6f7e","_id":"react-scrollbar@0.4.0","_shasum":"d5755ec4f1766fe40e448ffbc6b8ed7352bcaf02","_from":".","_npmVersion":"2.1.4","_nodeVersion":"4.2.2","_npmUser":{"name":"souhe","email":"souhepend@hotmail.com"},"dist":{"shasum":"d5755ec4f1766fe40e448ffbc6b8ed7352bcaf02","tarball":"https://registry.npmjs.org/react-scrollbar/-/react-scrollbar-0.4.0.tgz","integrity":"sha512-WplV5HvaY3yVNrV/2fpu8scnCMM1XoAEfBaUV3rdnxek8IxX5VjGemY66F8Q1K0ejk714F333x9M/e5E403geA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAKcGMrBMJC1ovugPpf3oAvecb6iqXIQz4NGsDt9EEaUAiA7deT3gvwsRt9T4vkAetzEz2JpOZsUWoqB7Ie/KTx9DA=="}]},"maintainers":[{"name":"souhe","email":"souhepend@hotmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/react-scrollbar-0.4.0.tgz_1457387584901_0.12258369289338589"},"directories":{}},"0.4.1":{"name":"react-scrollbar","version":"0.4.1","description":"ScrollArea component for react","main":"./dist/scrollArea.js","scripts":{"test":"karma start karma.config.js --single-run --browsers PhantomJS"},"repository":{"type":"git","url":"https://github.com/souhe/reactScrollbar.git"},"keywords":["react","react-component","component","scrollbar","scroll","scrollarea"],"author":{"name":"souhe"},"license":"MIT","dependencies":{"line-height":"^0.1.1","react":"^0.14.6","react-motion":"^0.3.1"},"devDependencies":{"babel":"^5.8.23","babel-core":"^5.8.25","babel-loader":"^5.3.2","babel-runtime":"^5.8.24","chai":"^3.5.0","css-loader":"^0.23.1","expect":"^1.13.4","expect-jsx":"^2.2.2","gulp":"^3.9.0","gulp-babel":"^6.1.2","gulp-concat":"^2.5.2","gulp-connect":"^2.2.0","gulp-less":"^3.0.2","karma":"^0.13.19","karma-chrome-launcher":"^0.2.2","karma-cli":"^0.1.2","karma-mocha":"^0.2.1","karma-mocha-reporter":"^1.1.5","karma-phantomjs-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^1.7.0","less":"^2.5.1","less-loader":"^2.2.1","merge-stream":"^1.0.0","mocha":"^2.4.4","object-assign":"^4.0.1","phantomjs-prebuilt":"^2.1.3","react-addons-test-utils":"^0.14.6","react-dom":"^0.14.0","run-sequence":"^1.1.4","style-loader":"^0.13.0","webpack":"^1.12.2","webpack-stream":"^3.1.0"},"bugs":{"url":"https://github.com/souhe/reactScrollbar/issues"},"homepage":"https://github.com/souhe/reactScrollbar","gitHead":"e7074b1132a9b9f84ad48d9585f466dbd3844f4f","_id":"react-scrollbar@0.4.1","_shasum":"b5bacb0b1ef7dceef138284dae0f436f46fe5298","_from":".","_npmVersion":"2.1.4","_nodeVersion":"4.2.2","_npmUser":{"name":"souhe","email":"souhepend@hotmail.com"},"dist":{"shasum":"b5bacb0b1ef7dceef138284dae0f436f46fe5298","tarball":"https://registry.npmjs.org/react-scrollbar/-/react-scrollbar-0.4.1.tgz","integrity":"sha512-btNdEXmtOOP6iJbAwlezKfWT+DQVJvaCI1zcTjnpRNIPlQCHVWoGMbKqfPcWp1UiHUwsz85ASKdKYoI5ZTA/Yw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHa+QninrpVdIL5YQP94EN6zNsJc2t2ju1O6LbP7jL9fAiB2BBG1yQLnVAY2udg7kxiEG57YqRiDM7Vk2H49bohXxw=="}]},"maintainers":[{"name":"souhe","email":"souhepend@hotmail.com"}],"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/react-scrollbar-0.4.1.tgz_1457722956874_0.3383587000425905"},"directories":{}},"0.4.2":{"name":"react-scrollbar","version":"0.4.2","description":"ScrollArea component for react","main":"./dist/scrollArea.js","scripts":{"test":"karma start karma.config.js --single-run --browsers PhantomJS"},"repository":{"type":"git","url":"git+https://github.com/souhe/reactScrollbar.git"},"keywords":["react","react-component","component","scrollbar","scroll","scrollarea"],"author":{"name":"souhe"},"license":"MIT","dependencies":{"line-height":"^0.1.1","react":"^15.1.0","react-motion":"^0.4.3"},"devDependencies":{"babel":"^6.5.2","babel-core":"^6.9.0","babel-loader":"^6.2.4","babel-preset-es2015":"^6.9.0","babel-preset-react":"^6.5.0","babel-preset-stage-2":"^6.5.0","babel-runtime":"^6.9.0","chai":"^3.5.0","css-loader":"^0.23.1","expect":"^1.13.4","expect-jsx":"^2.5.1","gulp":"^3.9.0","gulp-babel":"^6.1.2","gulp-concat":"^2.5.2","gulp-connect":"^4.0.0","gulp-less":"^3.0.2","karma":"^0.13.19","karma-chrome-launcher":"^1.0.1","karma-cli":"^1.0.0","karma-mocha":"^1.0.1","karma-mocha-reporter":"^2.0.3","karma-phantomjs-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^1.7.0","less":"^2.5.1","less-loader":"^2.2.1","merge-stream":"^1.0.0","mocha":"^2.4.4","object-assign":"^4.0.1","phantomjs-prebuilt":"^2.1.3","react-addons-test-utils":"^15.1.0","react-dom":"^15.1.0","run-sequence":"^1.1.4","style-loader":"^0.13.0","webpack":"^1.12.2","webpack-stream":"^3.1.0"},"bugs":{"url":"https://github.com/souhe/reactScrollbar/issues"},"homepage":"https://github.com/souhe/reactScrollbar","gitHead":"6082e0cf95f509eb176eb5e65b12278a8cdbfeca","_id":"react-scrollbar@0.4.2","_shasum":"413596e74c59d33a8e96f50164bc71d86da7a554","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.5.0","_npmUser":{"name":"souhe","email":"souhepend@hotmail.com"},"dist":{"shasum":"413596e74c59d33a8e96f50164bc71d86da7a554","tarball":"https://registry.npmjs.org/react-scrollbar/-/react-scrollbar-0.4.2.tgz","integrity":"sha512-W31ivInKwjiAy5I1CAh7+d5D4En+4/9ntYVtUtBZAUsVAt9nHXKPuESbaVAq9APR1+A8EPbaXGHhJ7qgJYcPQQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBctctz6xTahtPwhkQjaZTPX16FcEkwIAfLaTYcqCMYFAiEA3ODVdPCF1/Oc4XbW6LyWLxTK6G7GlbA+ZggSZKbcHaQ="}]},"maintainers":[{"name":"souhe","email":"souhepend@hotmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/react-scrollbar-0.4.2.tgz_1475140182200_0.07045235461555421"},"directories":{}},"0.5.0":{"name":"react-scrollbar","version":"0.5.0","description":"ScrollArea component for react","main":"./dist/scrollArea.js","scripts":{"test":"karma start karma.config.js --single-run --browsers PhantomJS"},"repository":{"type":"git","url":"git+https://github.com/souhe/reactScrollbar.git"},"keywords":["react","react-component","component","scrollbar","scroll","scrollarea"],"author":{"name":"souhe"},"license":"MIT","dependencies":{"line-height":"^0.1.1","react":"^15.1.0","react-motion":"^0.4.3"},"devDependencies":{"babel":"^6.5.2","babel-core":"^6.9.0","babel-loader":"^6.2.4","babel-preset-es2015":"^6.9.0","babel-preset-react":"^6.5.0","babel-preset-stage-2":"^6.5.0","babel-runtime":"^6.9.0","chai":"^3.5.0","css-loader":"^0.23.1","expect":"^1.13.4","expect-jsx":"^2.5.1","gulp":"^3.9.0","gulp-babel":"^6.1.2","gulp-concat":"^2.5.2","gulp-connect":"^4.0.0","gulp-less":"^3.0.2","karma":"^0.13.19","karma-chrome-launcher":"^1.0.1","karma-cli":"^1.0.0","karma-mocha":"^1.0.1","karma-mocha-reporter":"^2.0.3","karma-phantomjs-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^1.7.0","less":"^2.5.1","less-loader":"^2.2.1","merge-stream":"^1.0.0","mocha":"^2.4.4","object-assign":"^4.0.1","phantomjs-prebuilt":"^2.1.3","react-addons-test-utils":"^15.1.0","react-dom":"^15.1.0","run-sequence":"^1.1.4","style-loader":"^0.13.0","webpack":"^1.12.2","webpack-stream":"^3.1.0"},"bugs":{"url":"https://github.com/souhe/reactScrollbar/issues"},"homepage":"https://github.com/souhe/reactScrollbar","gitHead":"372233d94df50c7c1e2c4ccadb16941e970079f6","_id":"react-scrollbar@0.5.0","_shasum":"55a194db5c0ce817aed67fa9c627b084e4c77501","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.5.0","_npmUser":{"name":"souhe","email":"souhepend@hotmail.com"},"dist":{"shasum":"55a194db5c0ce817aed67fa9c627b084e4c77501","tarball":"https://registry.npmjs.org/react-scrollbar/-/react-scrollbar-0.5.0.tgz","integrity":"sha512-kd1lJLwcD0IGJpgItT8L11KIjsEK/O176Jrx5uF7qLFiz7tl7NzGqCXUh8cW32NCtqV+JTjEp3dJccV4jQWoJw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDIBQRdGKFmA1h95N2IphMI3DqRCAjWejeJPTr7eYUPTgIgNoVuuVe47AXQjFsBPqPtFMxYGQ5u5La7RK5i5NFXrCs="}]},"maintainers":[{"name":"souhe","email":"souhepend@hotmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/react-scrollbar-0.5.0.tgz_1480772185751_0.7041068421676755"},"directories":{}},"0.5.1":{"name":"react-scrollbar","version":"0.5.1","description":"ScrollArea component for react","main":"./dist/scrollArea.js","scripts":{"test":"karma start karma.config.js --single-run --browsers PhantomJS"},"repository":{"type":"git","url":"git+https://github.com/souhe/reactScrollbar.git"},"keywords":["react","react-component","component","scrollbar","scroll","scrollarea"],"author":{"name":"souhe"},"license":"MIT","dependencies":{"config":"^1.24.0","line-height":"^0.1.1","react":"^15.4.1","react-motion":"^0.4.3"},"devDependencies":{"babel":"^6.5.2","babel-core":"^6.9.0","babel-loader":"^6.2.4","babel-preset-es2015":"^6.9.0","babel-preset-react":"^6.5.0","babel-preset-stage-2":"^6.5.0","babel-runtime":"^6.9.0","chai":"^3.5.0","css-loader":"^0.23.1","expect":"^1.13.4","expect-jsx":"^2.5.1","gulp":"^3.9.0","gulp-babel":"^6.1.2","gulp-concat":"^2.5.2","gulp-connect":"^4.0.0","gulp-less":"^3.0.2","karma":"^1.3.0","karma-chrome-launcher":"^2.0.0","karma-cli":"^1.0.0","karma-mocha":"^1.0.1","karma-mocha-reporter":"^2.0.3","karma-phantomjs-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^1.7.0","less":"^2.5.1","less-loader":"^2.2.1","merge-stream":"^1.0.0","mocha":"^3.2.0","object-assign":"^4.0.1","phantomjs-prebuilt":"^2.1.3","react-addons-test-utils":"^15.1.0","react-dom":"^15.4.1","run-sequence":"^1.1.4","style-loader":"^0.13.0","webpack":"^1.12.2","webpack-stream":"^3.1.0"},"bugs":{"url":"https://github.com/souhe/reactScrollbar/issues"},"homepage":"https://github.com/souhe/reactScrollbar","gitHead":"dc2dc89b6e629ea719f84d336d335661123ff5e2","_id":"react-scrollbar@0.5.1","_shasum":"012a3727f30ea74d6ff294f4856d75328f3f422b","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.5.0","_npmUser":{"name":"souhe","email":"souhepend@hotmail.com"},"dist":{"shasum":"012a3727f30ea74d6ff294f4856d75328f3f422b","tarball":"https://registry.npmjs.org/react-scrollbar/-/react-scrollbar-0.5.1.tgz","integrity":"sha512-XosSQzHNmch3zR+EW1f3OGYVlYnnazgxfQ9uAfmbOoPFsFFoEfVCfiqhvOJsLdVw8cKGMswKcF73jRyoOddfEg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCob0YpkKF+B7A1frTVqcmwclQUz7hwUcIIWIaSU4pciAIgM2uYqo5wD+1+8VyW7djhtrJ5e7qh9wECcmym+D3PL00="}]},"maintainers":[{"name":"souhe","email":"souhepend@hotmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/react-scrollbar-0.5.1.tgz_1481753708891_0.08875206531956792"},"directories":{}},"0.5.2":{"name":"react-scrollbar","version":"0.5.2","description":"ScrollArea component for react","main":"./dist/scrollArea.js","scripts":{"test":"karma start karma.config.js --single-run --browsers PhantomJS"},"repository":{"type":"git","url":"git+https://github.com/souhe/reactScrollbar.git"},"keywords":["react","react-component","component","scrollbar","scroll","scrollarea"],"author":{"name":"souhe"},"license":"MIT","dependencies":{"config":"^1.24.0","line-height":"^0.1.1","prop-types":"^15.6.0","react":"^15.4.1","react-motion":"^0.5.2"},"devDependencies":{"babel":"^6.5.2","babel-core":"^6.9.0","babel-loader":"^6.2.4","babel-preset-es2015":"^6.9.0","babel-preset-react":"^6.5.0","babel-preset-stage-2":"^6.5.0","babel-runtime":"^6.9.0","chai":"^3.5.0","css-loader":"^0.23.1","expect":"^1.13.4","expect-jsx":"^2.5.1","gulp":"^3.9.0","gulp-babel":"^6.1.2","gulp-concat":"^2.5.2","gulp-connect":"^4.0.0","gulp-less":"^3.0.2","karma":"^1.3.0","karma-chrome-launcher":"^2.0.0","karma-cli":"^1.0.0","karma-mocha":"^1.0.1","karma-mocha-reporter":"^2.0.3","karma-phantomjs-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^1.7.0","less":"^2.5.1","less-loader":"^2.2.1","merge-stream":"^1.0.0","mocha":"^3.2.0","object-assign":"^4.0.1","phantomjs-prebuilt":"^2.1.3","react-addons-test-utils":"^15.1.0","react-dom":"^15.4.1","run-sequence":"^1.1.4","style-loader":"^0.13.0","webpack":"^1.12.2","webpack-stream":"^3.1.0"},"bugs":{"url":"https://github.com/souhe/reactScrollbar/issues"},"homepage":"https://github.com/souhe/reactScrollbar","gitHead":"0a2b1724a6d7dc816c7445db0c43ebf43387e290","_id":"react-scrollbar@0.5.2","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"souhe","email":"souhepend@hotmail.com"},"dist":{"integrity":"sha512-TuGF0cs3Boqo30aIQbFkhNF91p0acjo0qPdvrMVfUFaurH8gY/Tia1IR1VAz75ZuWo1U20yBjE7rntU/E6eThA==","shasum":"3619299300017a631ed3544bcb2e49b2b5a36cfb","tarball":"https://registry.npmjs.org/react-scrollbar/-/react-scrollbar-0.5.2.tgz","fileCount":33,"unpackedSize":2842864,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCkR0MlBKHQp3v9BlFLZTQusUv56mUo8EQRwzOwjab7xQIgYKK+gcYixyZFoF7N1O9UWHQtfxXzFJ/dhqwyw13MAHo="}]},"maintainers":[{"name":"souhe","email":"souhepend@hotmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/react-scrollbar_0.5.2_1518645849723_0.12479613455762961"},"_hasShrinkwrap":false},"0.5.3":{"name":"react-scrollbar","version":"0.5.3","description":"ScrollArea component for react","main":"./dist/scrollArea.js","scripts":{"test":"karma start karma.config.js --single-run --browsers PhantomJS"},"repository":{"type":"git","url":"git+https://github.com/souhe/reactScrollbar.git"},"keywords":["react","react-component","component","scrollbar","scroll","scrollarea"],"author":{"name":"souhe"},"license":"MIT","dependencies":{"config":"^1.24.0","line-height":"^0.1.1","prop-types":"^15.6.0","react":"^15.4.1","react-motion":"^0.5.2"},"devDependencies":{"babel":"^6.5.2","babel-core":"^6.9.0","babel-loader":"^6.2.4","babel-preset-es2015":"^6.9.0","babel-preset-react":"^6.5.0","babel-preset-stage-2":"^6.5.0","babel-runtime":"^6.9.0","chai":"^3.5.0","css-loader":"^0.23.1","expect":"^1.13.4","expect-jsx":"^2.5.1","gulp":"^3.9.0","gulp-babel":"^6.1.2","gulp-concat":"^2.5.2","gulp-connect":"^4.0.0","gulp-less":"^3.0.2","karma":"^1.3.0","karma-chrome-launcher":"^2.0.0","karma-cli":"^1.0.0","karma-mocha":"^1.0.1","karma-mocha-reporter":"^2.0.3","karma-phantomjs-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^1.7.0","less":"^2.5.1","less-loader":"^2.2.1","merge-stream":"^1.0.0","mocha":"^3.2.0","object-assign":"^4.0.1","phantomjs-prebuilt":"^2.1.3","react-addons-test-utils":"^15.1.0","react-dom":"^15.4.1","run-sequence":"^1.1.4","style-loader":"^0.13.0","webpack":"^1.12.2","webpack-stream":"^3.1.0"},"bugs":{"url":"https://github.com/souhe/reactScrollbar/issues"},"homepage":"https://github.com/souhe/reactScrollbar","gitHead":"b3cd765c299bc8c5a63b85ca8be9538281d5ea2d","_id":"react-scrollbar@0.5.3","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"souhe","email":"souhepend@hotmail.com"},"dist":{"integrity":"sha512-DqizIW8qhA/cFJ5HQ/WtOWKTMnlw6WYB2VVwlSuUndRUCiwIqH/a78zyQW9XkctsJ0+PGF8OrB8qFfiJxJkDGA==","shasum":"d3f9858f646b79216960c43af421db4fb0bde494","tarball":"https://registry.npmjs.org/react-scrollbar/-/react-scrollbar-0.5.3.tgz","fileCount":33,"unpackedSize":2371050,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDMFFv9FzAIrEoHP08pUGG/CokFx83GrpqPAFNrXqoXawIhANU1+DcVVkD/uL64Eor4VLAobDZuv4LtlYTRWBMITRex"}]},"maintainers":[{"name":"souhe","email":"souhepend@hotmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/react-scrollbar_0.5.3_1518795186486_0.05643793810472486"},"_hasShrinkwrap":false},"0.5.4":{"name":"react-scrollbar","version":"0.5.4","description":"ScrollArea component for react","main":"./dist/scrollArea.js","scripts":{"test":"karma start karma.config.js --single-run --browsers PhantomJS"},"repository":{"type":"git","url":"git+https://github.com/souhe/reactScrollbar.git"},"keywords":["react","react-component","component","scrollbar","scroll","scrollarea"],"author":{"name":"souhe"},"license":"MIT","dependencies":{"config":"^1.24.0","line-height":"^0.1.1","react-motion":"^0.5.2"},"devDependencies":{"babel":"^6.5.2","babel-core":"^6.9.0","babel-loader":"^6.2.4","babel-preset-es2015":"^6.9.0","babel-preset-react":"^6.5.0","babel-preset-stage-2":"^6.5.0","babel-runtime":"^6.9.0","chai":"^3.5.0","css-loader":"^0.23.1","expect":"^1.13.4","expect-jsx":"^2.5.1","gulp":"^3.9.0","gulp-babel":"^6.1.2","gulp-concat":"^2.5.2","gulp-connect":"^4.0.0","gulp-less":"^3.0.2","karma":"^1.3.0","karma-chrome-launcher":"^2.0.0","karma-cli":"^1.0.0","karma-mocha":"^1.0.1","karma-mocha-reporter":"^2.0.3","karma-phantomjs-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^1.7.0","less":"^2.5.1","less-loader":"^2.2.1","merge-stream":"^1.0.0","mocha":"^3.2.0","object-assign":"^4.0.1","phantomjs-prebuilt":"^2.1.3","prop-types":"^15.6.0","react":"^15.4.1","react-addons-test-utils":"^15.1.0","react-dom":"^15.4.1","run-sequence":"^1.1.4","style-loader":"^0.13.0","webpack":"^1.12.2","webpack-stream":"^3.1.0"},"peerDependencies":{"prop-types":"^15.6.0","react":"^15.3.0 || ^16.0.0-rc || ^16.0"},"bugs":{"url":"https://github.com/souhe/reactScrollbar/issues"},"homepage":"https://github.com/souhe/reactScrollbar","gitHead":"a2edd9915d16df2b0a7a4448379526b25cca4ea3","_id":"react-scrollbar@0.5.4","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"souhe","email":"souhepend@hotmail.com"},"dist":{"integrity":"sha512-6t9ztrXipoJJcdS7qXOOXfdnuN16Y862Sy5m0vSDFG8hwmiaJ7JDSkRW4VGaYfgnIcYi7HGvCn/mimDz6uVgXQ==","shasum":"270576a28d0f7783b2304b284dbd38d82b36b0e0","tarball":"https://registry.npmjs.org/react-scrollbar/-/react-scrollbar-0.5.4.tgz","fileCount":33,"unpackedSize":2371660,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCsKylrOy1yIfANdzSJlvNBqmO+r1/8nh7r19F73iuPkAIhAI01ezZ2cEXCWXvYmo/K8TKUmwbekFh8N7Clzj3l7Kzn"}]},"maintainers":[{"name":"souhe","email":"souhepend@hotmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/react-scrollbar_0.5.4_1519287518010_0.28944983838720795"},"_hasShrinkwrap":false},"0.5.5":{"name":"react-scrollbar","version":"0.5.5","description":"ScrollArea component for react","main":"./dist/scrollArea.js","scripts":{"test":"karma start karma.config.js --single-run --browsers PhantomJS"},"repository":{"type":"git","url":"git+https://github.com/souhe/reactScrollbar.git"},"keywords":["react","react-component","component","scrollbar","scroll","scrollarea"],"author":{"name":"souhe"},"license":"MIT","dependencies":{"config":"^1.24.0","line-height":"^0.1.1","react-motion":"^0.5.2"},"devDependencies":{"babel":"^6.5.2","babel-core":"^6.9.0","babel-loader":"^6.2.4","babel-preset-es2015":"^6.9.0","babel-preset-react":"^6.5.0","babel-preset-stage-2":"^6.5.0","babel-runtime":"^6.9.0","chai":"^3.5.0","css-loader":"^0.23.1","expect":"^1.13.4","expect-jsx":"^2.5.1","gulp":"^3.9.0","gulp-babel":"^6.1.2","gulp-concat":"^2.5.2","gulp-connect":"^4.0.0","gulp-less":"^3.0.2","karma":"^1.3.0","karma-chrome-launcher":"^2.0.0","karma-cli":"^1.0.0","karma-mocha":"^1.0.1","karma-mocha-reporter":"^2.0.3","karma-phantomjs-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^1.7.0","less":"^2.5.1","less-loader":"^2.2.1","merge-stream":"^1.0.0","mocha":"^3.2.0","object-assign":"^4.0.1","phantomjs-prebuilt":"^2.1.3","prop-types":"^15.6.0","react":"^15.4.1","react-addons-test-utils":"^15.1.0","react-dom":"^15.4.1","run-sequence":"^1.1.4","style-loader":"^0.13.0","webpack":"^1.12.2","webpack-stream":"^3.1.0"},"peerDependencies":{"prop-types":"^15.6.0","react":"^15.3.0 || ^16.0.0-rc || ^16.0"},"bugs":{"url":"https://github.com/souhe/reactScrollbar/issues"},"homepage":"https://github.com/souhe/reactScrollbar","gitHead":"ac322993b34d1c76f79b572e8f031ba87f12ff56","_id":"react-scrollbar@0.5.5","_npmVersion":"6.4.1","_nodeVersion":"8.14.0","_npmUser":{"name":"souhe","email":"jakub.klobus@outlook.com"},"dist":{"integrity":"sha512-IYlY0zxo+C1vQazILpp+up94BUMFy5kGYE6gGY3NbUxa+iOpM2t9lSf3inf+xolZbNVOCODiBv1+FaaBbLsArQ==","shasum":"901433f632d1452eb5d126dac6cc62d60e69d439","tarball":"https://registry.npmjs.org/react-scrollbar/-/react-scrollbar-0.5.5.tgz","fileCount":36,"unpackedSize":4528821,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcuBF7CRA9TVsSAnZWagAA+CsP/2NiMTlEOI61Dnd+e+kf\neg3bGnVYY6BmzV5E+BADrqTxYAa9cnoovEF58f4lrN80yOe8G17w6/I/ybOO\nmhZLhxy0zEwZ8Ynr5arvImgjLh9ihKygofgPrNCli8ulQaDI5sSBioJYGGBV\nB3qIfVqUiCCexkjR5aIF6xwwo+CR5YaMotjC/5J9YGXOxPdGjzvM11orOVsf\nvXXuHwCKx0YTI8AQaeDCHvXm/VrqoXa7FKcqDAdeRQXclRgMJgwRYVdtQXeS\n0FBjGMMDAqNj/DF0T1jqli0hczeDWfFQlFcklc88bqfrj7lyI9YMVi0pyuz+\nw8YCVwGLLR3OYUUcDCxKpkVjaCRBe7lrPNb9BjHlOU8+X2JwMFOtMXqrc8LM\nDKzqmAtR5fQfor3WLUci6cDq5JOpn5Y2lHMopGRsHWUOv/1/5WW7ytiUHU+S\n+aNfEs/fPCkBpVPtaTDeIZ/U1q+vjZbE0ruIIZ9G3Mn5HlfYqdHHBAWCSytY\nksSnJY0BMOm54JzuSOKjakpistqGodxEA1lmDlT2XfkTAQ3wl2by+uHoN1w3\n6AdlcK6WmOPzvb/e+DhAppyF9rI6/KoyZF/+KRaFRTxdQ9IOwp7aMkH/uEg2\nG8AtJQmcHTWVNjSzbjK2Y05G0FBvXq8308zGM2+j6Pxo4u67C/ogf5iK6OOl\njJX3\r\n=pPYX\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCMAb/iFQfVRtxJXT02xTyBABlxm8CPClEsT/kkF1By3QIgdmbaDMOMefWL5h9qKrxTiprzdy1e83M/gm9Ksxz0O2k="}]},"maintainers":[{"name":"souhe","email":"souhepend@hotmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/react-scrollbar_0.5.5_1555566970616_0.4187450714827432"},"_hasShrinkwrap":false},"0.5.6":{"name":"react-scrollbar","version":"0.5.6","description":"ScrollArea component for react","main":"./dist/scrollArea.js","scripts":{"test":"karma start karma.config.js --single-run --browsers PhantomJS"},"repository":{"type":"git","url":"git+https://github.com/souhe/reactScrollbar.git"},"keywords":["react","react-component","component","scrollbar","scroll","scrollarea"],"author":{"name":"souhe"},"license":"MIT","dependencies":{"config":"^1.24.0","line-height":"^0.1.1","react-motion":"^0.5.2"},"devDependencies":{"babel":"^6.5.2","babel-core":"^6.9.0","babel-loader":"^6.2.4","babel-preset-es2015":"^6.9.0","babel-preset-react":"^6.5.0","babel-preset-stage-2":"^6.5.0","babel-runtime":"^6.9.0","chai":"^3.5.0","css-loader":"^0.23.1","expect":"^1.13.4","expect-jsx":"^2.5.1","gulp":"^3.9.0","gulp-babel":"^6.1.2","gulp-concat":"^2.5.2","gulp-connect":"^4.0.0","gulp-less":"^3.0.2","karma":"^1.3.0","karma-chrome-launcher":"^2.0.0","karma-cli":"^1.0.0","karma-mocha":"^1.0.1","karma-mocha-reporter":"^2.0.3","karma-phantomjs-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^1.7.0","less":"^2.5.1","less-loader":"^2.2.1","merge-stream":"^1.0.0","mocha":"^3.2.0","object-assign":"^4.0.1","phantomjs-prebuilt":"^2.1.3","prop-types":"^15.6.0","react":"^15.4.1","react-addons-test-utils":"^15.1.0","react-dom":"^15.4.1","run-sequence":"^1.1.4","style-loader":"^0.13.0","webpack":"^1.12.2","webpack-stream":"^3.1.0"},"peerDependencies":{"prop-types":"^15.6.0","react":"^15.3.0 || ^16.0.0-rc || ^16.0"},"bugs":{"url":"https://github.com/souhe/reactScrollbar/issues"},"homepage":"https://github.com/souhe/reactScrollbar","gitHead":"80ced5d0f488c39ff4e87f92b967828ae2be2ce6","_id":"react-scrollbar@0.5.6","_npmVersion":"6.4.1","_nodeVersion":"8.14.0","_npmUser":{"name":"souhe","email":"jakub.klobus@outlook.com"},"dist":{"integrity":"sha512-TsSLsuovOlxmfTxY9bRjRUfQjycvfs73L4gz7yE+2D8Qs7U3zhwbGS0lj0JScCDipcyn7EX66LsaI00cU3aRSQ==","shasum":"bd57b45714f8d70e56813fe299d7fb3a2e42a27b","tarball":"https://registry.npmjs.org/react-scrollbar/-/react-scrollbar-0.5.6.tgz","fileCount":36,"unpackedSize":4528947,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcuCHrCRA9TVsSAnZWagAAN+MP/j81T2TXsTQZ7GQSmw0N\ndTkrn3nxDFBzQNvHmr48q8rtwrAdPiRb2Vc4RPWVAiw7ilVpzgI03yffloY8\n5FL8Pec3xjAA0ghG7a6FzLqNoT42bPFRKn2mi+/qZpr4AUCujM/gEf3NKx1b\nyDzjVrOxr9aWT2xc4gFxa4S8xByKmWHkUaZWL0DrFveqNWg9O7efKqoSNhKG\nBRVc61NpjQD3aYT9kLC8OegbEDPuBuctGqfNNcSRvrrW9nHcKiM+jfbRFozk\ngqCP06BozfoisqHL3qy7o/uQzyZ6W5GlY+GvLD0hYifMWZmRuaOPAOtw3JLY\nuL9wXZCtSnGPfaO/DqQLFgzoDCzfgRz3cfZUrdZSLTGcFUbnJ6oCH88L6mKc\nxT1zpYKHAntubxTc5QX10IuGfmh7s4BEOm//4idahQiWMUEVONcweC7K4JlN\nKrOIs+HG522l910cpV8/3f5Da5tvWrrrzQx3D6wcPDhsa5aONrhWCw0Rxzrq\nqidXTiCFFpcy7qO5A/KnjwzYcNChJeaM8cKSviFcv+eIEjPmpn2aSToOBMBx\nQWtm3X3fSYF+2qi+wu6mEwBIqAc6y4gYoiGMdqFtS/z7JqSRYdg2iS12NuRw\n4zlHg+VQLx6e9W3gStyd/b6zT+vS6A/f9YWarblCmlqs9E2rpZKmnl3YxaL6\nBaLy\r\n=jP2x\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDMqjvhrmMMv9o/9qmwduoSaFNmMwZ07NOTgkBKoNQDqQIhAIbWcjWtaq7sKuR+VpPl4f8fQW29Tb7GGGoDKV3CG4KP"}]},"maintainers":[{"name":"souhe","email":"souhepend@hotmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/react-scrollbar_0.5.6_1555571178759_0.7348924283704568"},"_hasShrinkwrap":false}},"homepage":"https://github.com/souhe/reactScrollbar","keywords":["react","react-component","component","scrollbar","scroll","scrollarea"],"repository":{"type":"git","url":"git+https://github.com/souhe/reactScrollbar.git"},"author":{"name":"souhe"},"bugs":{"url":"https://github.com/souhe/reactScrollbar/issues"},"license":"MIT","readmeFilename":"README.md","users":{"nelix":true,"r3nya":true,"marksyzm":true,"koulmomo":true,"yanndinendal":true,"alexcoady":true,"tiagobraga":true,"malloryerik":true,"kapillamba4":true,"albsugy":true}}