{"maintainers":[{"name":"paranoidjk","email":"hust2012jiangkai@gmail.com"}],"keywords":["react","react-component","react-tabs"],"dist-tags":{"latest":"8.1.0","beta":"8.0.0-beta.0"},"author":{"name":"yiminghe@gmail.com"},"description":"tabs ui component for react","readme":"# rc-tabs\n---\n\nReact Tabs\n\n[![NPM version][npm-image]][npm-url]\n[![build status][travis-image]][travis-url]\n[![Test coverage][coveralls-image]][coveralls-url]\n[![gemnasium deps][gemnasium-image]][gemnasium-url]\n[![npm download][download-image]][download-url]\n\n[npm-image]: http://img.shields.io/npm/v/rc-tabs.svg?style=flat-square\n[npm-url]: http://npmjs.org/package/rc-tabs\n[travis-image]: https://img.shields.io/travis/react-component/tabs.svg?style=flat-square\n[travis-url]: https://travis-ci.org/react-component/tabs\n[coveralls-image]: https://img.shields.io/coveralls/react-component/tabs.svg?style=flat-square\n[coveralls-url]: https://coveralls.io/r/react-component/tabs?branch=master\n[gemnasium-image]: http://img.shields.io/gemnasium/react-component/tabs.svg?style=flat-square\n[gemnasium-url]: https://gemnasium.com/react-component/tabs\n[node-url]: http://nodejs.org/download/\n[download-image]: https://img.shields.io/npm/dm/rc-tabs.svg?style=flat-square\n[download-url]: https://npmjs.org/package/rc-tabs\n\n## Screenshot\n\n<img src='https://zos.alipayobjects.com/rmsportal/JwLASrsOYJuFRIt.png' width='408'>\n\n## Example\n\nhttp://localhost:8000/examples\n\nonline example: http://react-component.github.io/tabs/\n\n## install\n\n[![rc-tabs](https://nodei.co/npm/rc-tabs.png)](https://npmjs.org/package/rc-tabs)\n\n## Feature\n\n### Keyboard\n\n* left and up: switch to previous tab\n* right and down: switch to next tab\n\n## Usage\n\n```js\nimport Tabs, { TabPane } from 'rc-tabs';\nimport TabContent from 'rc-tabs/lib/TabContent';\nimport ScrollableInkTabBar from 'rc-tabs/lib/ScrollableInkTabBar';\n\nvar callback = function(key){\n\n}\n\nReact.render(\n  (\n    <Tabs\n      defaultActiveKey=\"2\"\n      onChange={callback}\n      renderTabBar={()=><ScrollableInkTabBar />}\n      renderTabContent={()=><TabContent />}\n    >\n      <TabPane tab='tab 1' key=\"1\">first</TabPane>\n      <TabPane tab='tab 2' key=\"2\">second</TabPane>\n      <TabPane tab='tab 3' key=\"3\">third</TabPane>\n    </Tabs>\n  ),\n  document.getElementById('t2'));\n```\n\n## API\n\n### Tabs\n\n#### props:\n\n<table class=\"table table-bordered table-striped\">\n    <thead>\n    <tr>\n        <th style=\"width: 100px;\">name</th>\n        <th style=\"width: 50px;\">type</th>\n        <th>default</th>\n        <th>description</th>\n    </tr>\n    </thead>\n    <tbody>\n      <tr>\n          <td>activeKey</td>\n          <td>String</td>\n          <th></th>\n          <td>current active tabPanel's key</td>\n      </tr>\n      <tr>\n          <td>tabBarPosition</td>\n          <td>String</td>\n          <th></th>\n          <td>tab nav 's position. one of ['left','right','top','bottom']</td>\n      </tr>\n      <tr>\n          <td>defaultActiveKey</td>\n          <td>String</td>\n          <th>first active tabPanel's key</th>\n          <td>initial active tabPanel's key if activeKey is absent</td>\n      </tr>\n      <tr>\n         <td>renderTabBar</td>\n         <td>():React.Node</td>\n         <th></th>\n         <td>How to render tab bar</td>\n      </tr>\n      <tr>\n        <td>renderTabContent</td>\n        <td>():React.Node</td>\n        <th></th>\n        <td>How to render tab content</td>\n      </tr>\n      <tr>\n          <td>onChange</td>\n          <td>(key: string): void</td>\n          <th></th>\n          <td>called when tabPanel is changed</td>\n      </tr>\n      <tr>\n          <td>destroyInactiveTabPane</td>\n          <td>Boolean</td>\n          <th>false</th>\n          <td>whether destroy inactive tabpane when change tab</td>\n      </tr>\n      <tr>\n          <td>prefixCls</td>\n          <td>String</td>\n          <th>rc-tabs</th>\n          <td>prefix class name, use to custom style</td>\n      </tr>\n    </tbody>\n</table>\n\n### TabPane\n\n#### props:\n\n<table class=\"table table-bordered table-striped\">\n    <thead>\n      <tr>\n          <th style=\"width: 100px;\">name</th>\n          <th style=\"width: 50px;\">type</th>\n          <th>default</th>\n          <th>description</th>\n      </tr>\n    </thead>\n    <tbody>\n      <tr>\n          <td>key</td>\n          <td>Object</td>\n          <th></th>\n          <td>corresponding to activeKey, should be unique</td>\n      </tr>\n      <tr>\n          <td>style</td>\n          <td>Object</td>\n          <th></th>\n          <td></td>\n      </tr>\n      <tr>\n         <td>placeholder</td>\n         <td>React.Node</td>\n         <th></th>\n         <td>lazyrender children</td>\n      </tr>\n      <tr>\n          <td>tab</td>\n          <td>React.Node</td>\n          <th></th>\n          <td>current tab's title corresponding to current tabPane</td>\n      </tr>\n      <tr>\n          <td>forceRender</td>\n          <td>Boolean</td>\n          <td>false</td>\n          <td>forced render of content in tabs,  not lazy render after clicking on tabs</td>\n      </tr>\n    </tbody>\n</table>\n\n### lib/TabBar\n\n<table class=\"table table-bordered table-striped\">\n    <thead>\n      <tr>\n          <th style=\"width: 100px;\">name</th>\n          <th style=\"width: 50px;\">type</th>\n          <th>default</th>\n          <th>description</th>\n      </tr>\n    </thead>\n    <tbody>\n      <tr>\n          <td>onTabClick</td>\n          <td>(key: string): void</td>\n          <th></th>\n          <td>callback when tab clicked</td>\n      </tr>\n      <tr>\n          <td>style</td>\n          <td></td>\n          <th></th>\n          <td>bar style</td>\n      </tr>\n      <tr>\n        <td>extraContent</td>\n        <td>React Node</td>\n        <th></th>\n        <td>extra content placed one the right of tab bar</td>\n      </tr>\n    </tbody>\n</table>\n\n### lib/InkTabBar\n\ntab bar with ink indicator, in addition to tab bar props, extra props:\n\n<table class=\"table table-bordered table-striped\">\n    <thead>\n      <tr>\n          <th style=\"width: 100px;\">name</th>\n          <th style=\"width: 50px;\">type</th>\n          <th>default</th>\n          <th>description</th>\n      </tr>\n    </thead>\n    <tbody>\n      <tr>\n          <td>styles</td>\n          <td>{ inkBar }</td>\n          <th></th>\n          <td>can set inkBar style</td>\n      </tr>\n    </tbody>\n</table>\n\n### lib/ScrollableTabBar\n\nscrollable tab bar, in addition to tab bar props, extra props:\n\n<table class=\"table table-bordered table-striped\">\n    <thead>\n      <tr>\n          <th style=\"width: 100px;\">name</th>\n          <th style=\"width: 50px;\">type</th>\n          <th>default</th>\n          <th>description</th>\n      </tr>\n    </thead>\n    <tbody>\n      <tr>\n          <td>onPrevClick</td>\n          <td>(e: Event): void</td>\n          <th></th>\n          <td>callback when prev button is clicked</td>\n      </tr>\n      <tr>\n          <td>onNextClick</td>\n          <td>(e: Event): void</td>\n          <th></th>\n          <td>callback when next button is clicked</td>\n      </tr>\n    </tbody>\n</table>\n\n### lib/ScrollableInkTabBar\n\nscrollable tab bar with ink indicator, same with tab bar and ink bar and scrollable bar props.\n\n### lib/SwipeableInkTabBar (Use for Mobile)\n\nswipeable tab bar with ink indicator, same with tab bar/ink bar props, and below is the additional props.\n\n<table class=\"table table-bordered table-striped\">\n    <thead>\n      <tr>\n          <th style=\"width: 100px;\">name</th>\n          <th style=\"width: 50px;\">type</th>\n          <th>default</th>\n          <th>description</th>\n      </tr>\n    </thead>\n    <tbody>\n      <tr>\n          <td>pageSize</td>\n          <td>number</td>\n          <th>5</th>\n          <td>show how many tabs at one page</td>\n      </tr>\n      <tr>\n          <td>speed</td>\n          <td>number</td>\n          <th>5</th>\n          <td>swipe speed, 1 to 10, more bigger more faster</td>\n      </tr>\n      <tr>\n          <td>hammerOptions</td>\n          <td>Object</td>\n          <td></td>\n          <td>options for react-hammerjs</td>\n      </tr>\n    </tbody>\n</table>\n\n### lib/TabContent\n\n<table class=\"table table-bordered table-striped\">\n    <thead>\n      <tr>\n          <th style=\"width: 100px;\">name</th>\n          <th style=\"width: 50px;\">type</th>\n          <th>default</th>\n          <th>description</th>\n      </tr>\n    </thead>\n    <tbody>\n      <tr>\n          <td>style</td>\n          <td>Object</td>\n          <td></td>\n          <td>tab content style</td>\n      </tr>\n      <tr>\n          <td>animated</td>\n          <td>Boolean</td>\n          <td>true</td>\n          <td>whether tabpane change with animation</td>\n      </tr>\n      <tr>\n          <td>animatedWithMargin</td>\n          <td>Boolean</td>\n          <td>false</td>\n          <td>whether animate tabpane with css margin</td>\n      </tr>\n    </tbody>\n</table>\n\n### lib/SwipeableTabContent\n\nswipeable tab panes, in addition to lib/TabContent props, extra props:\n\n<table class=\"table table-bordered table-striped\">\n    <thead>\n      <tr>\n          <th style=\"width: 100px;\">name</th>\n          <th style=\"width: 50px;\">type</th>\n          <th>default</th>\n          <th>description</th>\n      </tr>\n    </thead>\n    <tbody>\n      <tr>\n          <td>hammerOptions</td>\n          <td>Object</td>\n          <td></td>\n          <td>options for react-hammerjs</td>\n      </tr>\n    </tbody>\n</table>\n\n## Note\n\nIf you want to support old browsers(which does not support flex/css-transition),\nplease load the following script inside head to add no-flexbox/no-csstransition css classes\n\n```\nhttps://as.alipayobjects.com/g/component/modernizr/2.8.3/modernizr.min.js\n```\n\n## Development\n\n```\nnpm install\nnpm start\n```\n\n## Test Case\n\n```\nnpm test\nnpm run chrome-test\n```\n\n## Coverage\n\n```\nnpm run coverage\n```\n\nopen coverage/ dir\n\n## License\n\nrc-tabs is released under the MIT license.\n","repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tabs.git"},"users":{"po":true,"monjer":true,"fanmd":true,"jarabbit":true,"yong_a":true,"princetoad":true},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"versions":{"1.0.0":{"name":"rc-tabs","version":"1.0.0","description":"tabs ui component for react","keywords":["react","react-tabs"],"homepage":"http://github.com/react-component/tabs","author":{"name":"dxq613@gmail.com"},"repository":{"type":"git","url":"git@github.com:react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","spm":{},"config":{"port":8000},"scripts":{"start":"node --harmony server","publish":"gulp tag","lint":"gulp lint","test":"","browser-test":"mocha-phantomjs http://localhost:$npm_package_config_port/tests/runner.html","browser-test-cover":"mocha-phantomjs -R node_modules/node-jscover/lib/reporters/mocha/console http://localhost:$npm_package_config_port/tests/runner.html?coverage"},"devDependencies":{"es5-shim":"~4.0.5","expect.js":"~0.3.1","gh-changelog":"^1.0.5","gulp":"^3.8.7","gulp-jscs":"^1.1.0","gulp-jshint":"^1.8.4","gulp-jsx":"~0.6.0","gulp-util":"^3.0.1","jquery":"~1.11.1","jshint":"^2.5.5","jshint-stylish":"^0.4.0","koa":"~0.13.0","koa-body":"^0.4.0","koa-jsx":"^1.1.3","koa-modularize":"^3.0.0","koa-mount":"~1.3.0","koa-node-jscover":"^1.0.0","koa-serve-index":"~1.0.1","koa-static":"~1.4.7","mocha":"~2.0.1","modulex":"~1.7.3","node-jscover":"^0.6.8","node-jscover-coveralls":"^1.0.13","precommit-hook":"^1.0.7","react":"~0.12.1","react-tools":"~0.12.1","simulate-dom-event":"^1.0.1","sinon":"1.12.1"},"precommit":["lint"],"browserify-shim":{"react":"global:React","jquery":"global:jQuery"},"browserify":{"transform":[["browserify-jsx"],["browserify-shim"]]},"dependencies":{"browserify-shim":"^3.8.0","browserify-jsx":"^0.1.0"},"gitHead":"bfdb7e934f12fdf23480d74234586a67e28b1be9","_id":"rc-tabs@1.0.0","_shasum":"3603a7eec345bf8bd989e0da2bf97b4dbf52fbf1","_from":".","_npmVersion":"2.0.0","_npmUser":{"name":"dxq613","email":"dxq613@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"}],"dist":{"shasum":"3603a7eec345bf8bd989e0da2bf97b4dbf52fbf1","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-1.0.0.tgz"},"directories":{}},"2.0.0":{"name":"rc-tabs","version":"2.0.0","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"homepage":"http://github.com/react-component/tabs","maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git@github.com:react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","spm":{"dependencies":{"react":"~0.12.1"},"devDependencies":{"bootstrap":"~3.3.1"}},"config":{"port":8002},"scripts":{"less":"rc-tools run less","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"spm publish && rc-tools run tag","lint":"rc-tools run lint","test":"","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.1","expect.js":"~0.3.1","modulex":"^1.7.4","precommit-hook":"^1.0.7","rc-server":"^1.5.0","rc-tools":"^1.1.0","react":"~0.12.1"},"precommit":["lint","less"],"browserify-shim":{"react":"global:React","jquery":"global:jQuery"},"browserify":{"transform":[["browserify-jsx"],["browserify-shim"]]},"dependencies":{"browserify-jsx":"^0.1.0","browserify-shim":"^3.8.0"},"gitHead":"84e8f17b28919085cfdd5211bc77cfe528f5490a","_id":"rc-tabs@2.0.0","_shasum":"67ae6621792921ed6ef811689e49812bba9257a8","_from":".","_npmVersion":"2.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"67ae6621792921ed6ef811689e49812bba9257a8","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-2.0.0.tgz"},"directories":{}},"2.0.1":{"name":"rc-tabs","version":"2.0.1","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"homepage":"http://github.com/react-component/tabs","maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git@github.com:react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","spm":{"dependencies":{"react":"~0.12.1"},"devDependencies":{"bootstrap":"~3.3.1"}},"config":{"port":8002},"scripts":{"less":"rc-tools run less","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"spm publish && rc-tools run tag","lint":"rc-tools run lint","test":"","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.1","expect.js":"~0.3.1","modulex":"^1.7.4","precommit-hook":"^1.0.7","rc-server":"^1.5.0","rc-tools":"^1.1.0","react":"~0.12.1"},"precommit":["lint","less"],"browserify-shim":{"react":"global:React","jquery":"global:jQuery"},"browserify":{"transform":[["browserify-jsx"],["browserify-shim"]]},"dependencies":{"browserify-jsx":"^0.1.0","browserify-shim":"^3.8.0"},"gitHead":"94542863a8ae030a7614204536e9e0c422d661c5","_id":"rc-tabs@2.0.1","_shasum":"2c10c09f3069e92c98dbb51ce7d4185b1e7e6817","_from":".","_npmVersion":"2.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"2c10c09f3069e92c98dbb51ce7d4185b1e7e6817","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-2.0.1.tgz"},"directories":{}},"2.0.2":{"name":"rc-tabs","version":"2.0.2","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"homepage":"http://github.com/react-component/tabs","maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git@github.com:react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","spm":{"dependencies":{"react":"~0.12.1"},"devDependencies":{"bootstrap":"~3.3.1"}},"config":{"port":8002},"scripts":{"less":"rc-tools run less","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"spm publish && rc-tools run tag","lint":"rc-tools run lint","test":"","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.1","expect.js":"~0.3.1","modulex":"^1.7.4","precommit-hook":"^1.0.7","rc-server":"^1.5.0","rc-tools":"^1.1.0","react":"~0.12.1"},"precommit":["lint","less"],"browserify-shim":{"react":"global:React","jquery":"global:jQuery"},"browserify":{"transform":[["browserify-jsx"],["browserify-shim"]]},"dependencies":{"browserify-jsx":"^0.1.0","browserify-shim":"^3.8.0"},"gitHead":"24bcc2cf932ffaa26c0ae8f5cdb8a7417002c608","_id":"rc-tabs@2.0.2","_shasum":"26c7abf02b00cabad7fc04f276aa839b6cc22d17","_from":".","_npmVersion":"2.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"26c7abf02b00cabad7fc04f276aa839b6cc22d17","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-2.0.2.tgz"},"directories":{}},"2.0.3":{"name":"rc-tabs","version":"2.0.3","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"homepage":"http://github.com/react-component/tabs","maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git@github.com:react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","spm":{"buildArgs":"--global react:window.React","dependencies":{"react":"*"}},"config":{"port":8002},"scripts":{"example":"webpack -d && rc-tools run jsx2html","less":"rc-tools run less","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"rc-tools run tag && spm publish","lint":"rc-tools run lint","test":"","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"css-loader":"^0.9.1","expect.js":"~0.3.1","file-loader":"^0.8.1","jsx-loader":"^0.12.2","precommit-hook":"^1.0.7","rc-server":"^2.0.0","rc-tools":"^1.1.0","react":"~0.12.1","style-loader":"^0.8.3","url-loader":"^0.5.5","webpack":"~1.5.3"},"precommit":["lint","less"],"gitHead":"c9974da75e0dcba409b24dc264d2e933abc4ac3f","_id":"rc-tabs@2.0.3","_shasum":"39736f2484a05dc9bbfc8978142647ffa489fb41","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"39736f2484a05dc9bbfc8978142647ffa489fb41","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-2.0.3.tgz"},"directories":{}},"2.0.4":{"name":"rc-tabs","version":"2.0.4","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"homepage":"http://github.com/react-component/tabs","maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git@github.com:react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","spm":{"buildArgs":"--global react:window.React","dependencies":{"react":"*","rc-util":"1.x"}},"config":{"port":8002},"scripts":{"example":"webpack -d && rc-tools run jsx2html","less":"rc-tools run less","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"rc-tools run tag && spm publish","lint":"rc-tools run lint","test":"","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"dependencies":{"rc-util":"1.x"},"devDependencies":{"css-loader":"^0.9.1","expect.js":"~0.3.1","file-loader":"^0.8.1","jsx-loader":"^0.12.2","precommit-hook":"^1.0.7","rc-server":"^2.0.0","rc-tools":"^1.1.0","react":"~0.12.1","style-loader":"^0.8.3","url-loader":"^0.5.5","webpack":"~1.5.3"},"precommit":["lint","less"],"gitHead":"a9c9ef9aa5792e9ab9e88d5880fd575b4c60d48c","_id":"rc-tabs@2.0.4","_shasum":"f6f1d06c1c04fa54124225d76b285ebb5d8e8566","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"f6f1d06c1c04fa54124225d76b285ebb5d8e8566","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-2.0.4.tgz"},"directories":{}},"3.0.0":{"name":"rc-tabs","version":"3.0.0","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"homepage":"http://github.com/react-component/tabs","maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git@github.com:react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","spm":{"dependencies":{"react":"*"}},"config":{"port":8002},"scripts":{"example":"webpack -d && rc-tools run jsx2html","less":"rc-tools run less","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"rc-tools run tag && spm publish","lint":"rc-tools run lint","test":"","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"css-loader":"^0.9.1","expect.js":"~0.3.1","file-loader":"^0.8.1","jsx-loader":"^0.12.2","precommit-hook":"^1.0.7","rc-server":"^2.0.0","rc-tools":"^1.1.0","react":"0.13.x","style-loader":"^0.8.3","url-loader":"^0.5.5","webpack":"~1.5.3"},"precommit":["lint","less"],"gitHead":"8481b21bf09215d4df9f41d3e5af98b3798c98a5","_id":"rc-tabs@3.0.0","_shasum":"d3779f72c54a316f60401455a1879ff9a591c8c8","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"d3779f72c54a316f60401455a1879ff9a591c8c8","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-3.0.0.tgz"},"directories":{}},"3.1.0":{"name":"rc-tabs","version":"3.1.0","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"homepage":"http://github.com/react-component/tabs","maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git@github.com:react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","spm":{"dependencies":{"react":"*"}},"config":{"port":8002},"scripts":{"build":"rc-tools run build","less":"rc-tools run less","gh-pages":"rc-tools run gh-pages","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"rc-tools run tag && spm publish","lint":"rc-tools run lint","test":"","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"~0.3.1","precommit-hook":"^1.0.7","rc-server":"^2.0.0","rc-tools":"2.x","react":"0.13.x"},"precommit":["lint","less"],"gitHead":"6342133b485705ce5e9cf69412deb3e18fd42b1f","_id":"rc-tabs@3.1.0","_shasum":"4900df43c244c8f3c83abc18314cd6ff0aa6d3bc","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"4900df43c244c8f3c83abc18314cd6ff0aa6d3bc","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-3.1.0.tgz"},"directories":{}},"3.2.0":{"name":"rc-tabs","version":"3.2.0","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"homepage":"http://github.com/react-component/tabs","maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git@github.com:react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","spm":{"dependencies":{"react":"*"}},"config":{"port":8002},"scripts":{"build":"rc-tools run build","less":"rc-tools run less","gh-pages":"rc-tools run gh-pages","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"rc-tools run tag && spm publish","lint":"rc-tools run lint","test":"","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"~0.3.1","precommit-hook":"^1.0.7","rc-server":"^2.0.0","rc-tools":"2.x","react":"0.13.x"},"precommit":["lint","less"],"gitHead":"fc8126783ac47f7c94ed9854bcc235122a229306","_id":"rc-tabs@3.2.0","_shasum":"733a8958a84adb61eb58f09a7dc4ad7ed1c3f869","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"733a8958a84adb61eb58f09a7dc4ad7ed1c3f869","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-3.2.0.tgz"},"directories":{}},"3.3.0":{"name":"rc-tabs","version":"3.3.0","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"homepage":"http://github.com/react-component/tabs","maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git@github.com:react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","spm":{"dependencies":{"react":"*"}},"config":{"port":8002},"scripts":{"build":"rc-tools run build","less":"rc-tools run less","gh-pages":"rc-tools run gh-pages","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"rc-tools run tag && spm publish","lint":"rc-tools run lint","test":"","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"~0.3.1","precommit-hook":"^1.0.7","rc-server":"^2.0.0","rc-tools":"2.x","react":"0.13.x"},"precommit":["lint","less"],"gitHead":"a28ad2fe8c209a8a4f6974db0c101a192c5263dc","_id":"rc-tabs@3.3.0","_shasum":"22766175da1cc4cb692058c15aa5319c805c6cf8","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"22766175da1cc4cb692058c15aa5319c805c6cf8","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-3.3.0.tgz"},"directories":{}},"4.0.0":{"name":"rc-tabs","version":"4.0.0","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"homepage":"http://github.com/react-component/tabs","maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git@github.com:react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","spm":{"dependencies":{"react":"*"}},"config":{"port":8002},"scripts":{"build":"rc-tools run build","less":"rc-tools run less","gh-pages":"rc-tools run gh-pages","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"rc-tools run tag && spm publish","lint":"rc-tools run lint","test":"","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"~0.3.1","precommit-hook":"^1.0.7","rc-server":"^2.0.0","rc-tools":"2.x","react":"0.13.x"},"precommit":["lint","less"],"gitHead":"a8b869880be9b7e75257ff511a9f5190584bba7f","_id":"rc-tabs@4.0.0","_shasum":"b3c3fef5b44f8c95b8db40594f5789c4acc560f4","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"b3c3fef5b44f8c95b8db40594f5789c4acc560f4","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-4.0.0.tgz"},"directories":{}},"5.0.0":{"name":"rc-tabs","version":"5.0.0","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"homepage":"http://github.com/react-component/tabs","maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git@github.com:react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","spm":{"dependencies":{"react":"*"}},"config":{"port":8002},"scripts":{"build":"rc-tools run build","less":"rc-tools run less","gh-pages":"rc-tools run gh-pages","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"rc-tools run tag && spm publish","lint":"rc-tools run lint","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"~0.3.1","precommit-hook":"^1.0.7","rc-server":"^2.0.0","rc-tools":"2.x","react":"0.13.x"},"precommit":["lint","less"],"dependencies":{"rc-css-transition-group":"^2.0.0"},"gitHead":"902ea093ffbb0d345ed4ab4ca58b8b75d40ca386","_id":"rc-tabs@5.0.0","_shasum":"d713f1c8befcbcdb1828c933c8d9e3ce87d1fafb","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"d713f1c8befcbcdb1828c933c8d9e3ce87d1fafb","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-5.0.0.tgz"},"directories":{}},"5.0.1":{"name":"rc-tabs","version":"5.0.1","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"homepage":"http://github.com/react-component/tabs","maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git@github.com:react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","spm":{"dependencies":{"react":"*"}},"config":{"port":8002},"scripts":{"build":"rc-tools run build","less":"rc-tools run less","gh-pages":"rc-tools run gh-pages","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"rc-tools run tag && spm publish","lint":"rc-tools run lint","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"~0.3.1","precommit-hook":"^1.0.7","rc-server":"^2.0.0","rc-tools":"2.x","react":"0.13.x"},"precommit":["lint","less"],"dependencies":{"rc-css-transition-group":"^2.0.0"},"gitHead":"b1df39cd54c76fd8bfe079a0e0750ed2aaebb7e1","_id":"rc-tabs@5.0.1","_shasum":"b198df37ffc79c6167f1d93c44e744d347cfdcdd","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"b198df37ffc79c6167f1d93c44e744d347cfdcdd","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-5.0.1.tgz"},"directories":{}},"5.0.2":{"name":"rc-tabs","version":"5.0.2","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"homepage":"http://github.com/react-component/tabs","maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git@github.com:react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","spm":{"dependencies":{"react":"*"}},"config":{"port":8002},"scripts":{"build":"rc-tools run build","less":"rc-tools run less","gh-pages":"rc-tools run gh-pages","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"rc-tools run tag && spm publish","lint":"rc-tools run lint","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"~0.3.1","precommit-hook":"^1.0.7","rc-server":"^2.0.0","rc-tools":"2.x","react":"0.13.x"},"precommit":["lint","less"],"dependencies":{"rc-css-transition-group":"^2.0.0"},"gitHead":"60d8c439df66c8ae9d6ac0e383e7c34d5597241a","_id":"rc-tabs@5.0.2","_shasum":"4a278305bb80c5726059000a30d888e64458f5fa","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"4a278305bb80c5726059000a30d888e64458f5fa","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-5.0.2.tgz"},"directories":{}},"5.0.3":{"name":"rc-tabs","version":"5.0.3","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"homepage":"http://github.com/react-component/tabs","maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git@github.com:react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","spm":{"dependencies":{"react":"*"}},"config":{"port":8002},"scripts":{"build":"rc-tools run build","less":"rc-tools run less","gh-pages":"rc-tools run gh-pages","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"rc-tools run tag && spm publish","lint":"rc-tools run lint","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"~0.3.1","precommit-hook":"^1.0.7","rc-server":"^2.0.0","rc-tools":"2.x","react":"0.13.x"},"precommit":["lint","less"],"dependencies":{"rc-css-transition-group":"^2.0.0"},"gitHead":"7daeb1bfd0fd7e2b15799e2341b44a92759e6a83","_id":"rc-tabs@5.0.3","_shasum":"a0b9194066f63dd788557d8b630b201bb1b390ff","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"a0b9194066f63dd788557d8b630b201bb1b390ff","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-5.0.3.tgz"},"directories":{}},"5.0.4":{"name":"rc-tabs","version":"5.0.4","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"homepage":"http://github.com/react-component/tabs","maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git@github.com:react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","spm":{"dependencies":{"react":"*"}},"config":{"port":8002},"scripts":{"build":"rc-tools run build","less":"rc-tools run less","gh-pages":"rc-tools run gh-pages","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"rc-tools run tag && spm publish","lint":"rc-tools run lint","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"~0.3.1","precommit-hook":"^1.0.7","rc-server":"^2.0.0","rc-tools":"2.x","react":"0.13.x"},"precommit":["lint","less"],"dependencies":{"rc-css-transition-group":"^2.0.0"},"gitHead":"b222d5465964f9dc15cb4e872dae5a737c520aea","_id":"rc-tabs@5.0.4","_shasum":"280439fd0e2c57a65999f47119464a55a7ed2f92","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"280439fd0e2c57a65999f47119464a55a7ed2f92","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-5.0.4.tgz"},"directories":{}},"5.0.5":{"name":"rc-tabs","version":"5.0.5","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"main":"./lib/index","homepage":"http://github.com/react-component/tabs","maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git@github.com:react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","precommit":"rc-tools run precommit","less":"rc-tools run less","gh-pages":"rc-tools run gh-pages","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"rc-tools run tag","lint":"rc-tools run lint","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"~0.3.1","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"3.x","react":"0.13.x"},"precommit":["precommit"],"dependencies":{"rc-css-transition-group":"^2.0.0"},"gitHead":"ee2de4796fcd38b07e3246910b31f693017d5e4b","_id":"rc-tabs@5.0.5","_shasum":"7b399d8f5a04559734a0c26a62b3f1be69d263b1","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"7b399d8f5a04559734a0c26a62b3f1be69d263b1","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-5.0.5.tgz"},"directories":{}},"5.1.0":{"name":"rc-tabs","version":"5.1.0","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"main":"./lib/index","homepage":"http://github.com/react-component/tabs","maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","precommit":"rc-tools run precommit","less":"rc-tools run less","gh-pages":"rc-tools run gh-pages","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"rc-tools run tag","lint":"rc-tools run lint","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"~0.3.1","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"3.x","react":"0.13.x"},"precommit":["precommit"],"dependencies":{"rc-css-transition-group":"^2.0.0"},"gitHead":"04c4601b896cf1d83fd56d2c61f6129d725efe22","_id":"rc-tabs@5.1.0","_shasum":"35689806fd72da1343aec32f18778e3c50811161","_from":".","_npmVersion":"2.11.0","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"35689806fd72da1343aec32f18778e3c50811161","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-5.1.0.tgz"},"directories":{}},"5.2.0":{"name":"rc-tabs","version":"5.2.0","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"main":"./lib/index","homepage":"http://github.com/react-component/tabs","maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","precommit":"rc-tools run precommit","less":"rc-tools run less","gh-pages":"rc-tools run gh-pages","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"rc-tools run tag","lint":"rc-tools run lint","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"~0.3.1","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"3.x","react":"0.13.x"},"precommit":["precommit"],"dependencies":{"rc-css-transition-group":"^2.0.0"},"gitHead":"10e490b3e1e8a4a6c58c61917e0f43bad4eb8e69","_id":"rc-tabs@5.2.0","_shasum":"5c147b8130f5fd3d715b9f49c0139248c9e791a0","_from":".","_npmVersion":"2.11.0","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"5c147b8130f5fd3d715b9f49c0139248c9e791a0","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-5.2.0.tgz"},"directories":{}},"5.3.0":{"name":"rc-tabs","version":"5.3.0","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"main":"./lib/index","homepage":"http://github.com/react-component/tabs","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","precommit":"rc-tools run precommit","less":"rc-tools run less","gh-pages":"rc-tools run gh-pages","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"rc-tools run tag","lint":"rc-tools run lint","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"~0.3.1","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"3.x","react":"0.13.x"},"precommit":["precommit"],"dependencies":{"rc-animate":"1.x"},"gitHead":"b7cb43c0f12d592aa719a163256baa23ac0c4a19","_id":"rc-tabs@5.3.0","_shasum":"e62385e3a8e1e1c332b2364487b36f5ed9624642","_from":".","_npmVersion":"2.11.0","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"e62385e3a8e1e1c332b2364487b36f5ed9624642","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-5.3.0.tgz"},"directories":{}},"5.3.1":{"name":"rc-tabs","version":"5.3.1","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"main":"./lib/index","homepage":"http://github.com/react-component/tabs","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","precommit":"rc-tools run precommit","less":"rc-tools run less","gh-pages":"rc-tools run gh-pages","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"rc-tools run tag","lint":"rc-tools run lint","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"~0.3.1","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"3.x","react":"0.13.x"},"precommit":["precommit"],"dependencies":{"rc-animate":"1.x"},"gitHead":"255b400c8230798ff02ff66ab7cb32d7a7607bab","_id":"rc-tabs@5.3.1","_shasum":"6d20506feeebe7631535cc0b8674331967d157c3","_from":".","_npmVersion":"2.11.0","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"6d20506feeebe7631535cc0b8674331967d157c3","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-5.3.1.tgz"},"directories":{}},"5.3.2":{"name":"rc-tabs","version":"5.3.2","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"main":"./lib/index","homepage":"http://github.com/react-component/tabs","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","precommit":"rc-tools run precommit","less":"rc-tools run less","gh-pages":"rc-tools run gh-pages","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"rc-tools run tag","lint":"rc-tools run lint","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"~0.3.1","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"3.x","react":"0.13.x"},"precommit":["precommit"],"dependencies":{"rc-animate":"1.x"},"gitHead":"6300d5d7ba0a716423f87e733ffb0fcc73dea18a","_id":"rc-tabs@5.3.2","_shasum":"d485db309fb666eae151a8e4f2c1f778f369ab41","_from":".","_npmVersion":"2.11.0","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"d485db309fb666eae151a8e4f2c1f778f369ab41","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-5.3.2.tgz"},"directories":{}},"5.3.3":{"name":"rc-tabs","version":"5.3.3","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"files":["lib","assets/*.css"],"main":"./lib/index","homepage":"http://github.com/react-component/tabs","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"node --harmony node_modules/.bin/rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"~0.3.1","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"4.x","react":"0.13.x"},"precommit":["lint"],"dependencies":{"rc-animate":"1.x"},"gitHead":"7047effe3bfc7df274c6b4c88b0a60bb03d53fb0","_id":"rc-tabs@5.3.3","_shasum":"9a7cf9a807db2dea3cc341afe1048859c7e4954e","_from":".","_npmVersion":"3.2.2","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"9a7cf9a807db2dea3cc341afe1048859c7e4954e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-5.3.3.tgz"},"directories":{}},"5.4.0":{"name":"rc-tabs","version":"5.4.0","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"files":["lib","assets/*.css"],"main":"./lib/index","homepage":"http://github.com/react-component/tabs","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"~0.3.1","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"4.x","react":"~0.14.0","react-addons-test-utils":"^0.14.0","react-dom":"^0.14.0"},"precommit":["lint"],"dependencies":{"rc-animate":"1.x"},"gitHead":"ce24da5109975582341497de50342318c60ec729","_id":"rc-tabs@5.4.0","_shasum":"387a6580d658fa193a59da4b5794ec7cf228b760","_from":".","_npmVersion":"3.3.8","_nodeVersion":"4.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"387a6580d658fa193a59da4b5794ec7cf228b760","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-5.4.0.tgz"},"directories":{}},"5.4.1":{"name":"rc-tabs","version":"5.4.1","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"files":["lib","assets/*.css"],"main":"./lib/index","homepage":"http://github.com/react-component/tabs","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"~0.3.1","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"4.x","react":"~0.14.0","react-addons-test-utils":"^0.14.0","react-dom":"^0.14.0"},"precommit":["lint"],"dependencies":{"rc-animate":"1.x"},"gitHead":"e49cf8a66778c9bba4f7073039491adeccb8bb11","_id":"rc-tabs@5.4.1","_shasum":"e0f3a198dc45876e17c70440b9178a8abfd98fae","_from":".","_npmVersion":"3.3.8","_nodeVersion":"4.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"e0f3a198dc45876e17c70440b9178a8abfd98fae","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-5.4.1.tgz"},"directories":{}},"5.4.2":{"name":"rc-tabs","version":"5.4.2","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"files":["lib","assets/*.css"],"main":"./lib/index","homepage":"http://github.com/react-component/tabs","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"~0.3.1","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"4.x","react":"~0.14.0","react-addons-test-utils":"^0.14.0","react-dom":"^0.14.0"},"precommit":["lint"],"dependencies":{"rc-animate":"1.x"},"gitHead":"26d797b04dc0983c9686a8e9a4c2dda2c2335e16","_id":"rc-tabs@5.4.2","_shasum":"8354498cb43f0e23e14d5be87631ecbd551ff1ab","_from":".","_npmVersion":"3.3.8","_nodeVersion":"4.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"8354498cb43f0e23e14d5be87631ecbd551ff1ab","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-5.4.2.tgz"},"directories":{}},"5.4.3":{"name":"rc-tabs","version":"5.4.3","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"files":["lib","assets/*.css"],"main":"./lib/index","homepage":"http://github.com/react-component/tabs","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"~0.3.1","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"4.x","react":"~0.14.0","react-addons-test-utils":"^0.14.0","react-dom":"^0.14.0"},"precommit":["lint"],"dependencies":{"rc-animate":"2.x"},"gitHead":"f39126292fa8c86553864458486709a0f541b3d7","_id":"rc-tabs@5.4.3","_shasum":"28bb201562956b4b575bb23aad896a3798cf6df9","_from":".","_npmVersion":"2.14.8","_nodeVersion":"4.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"28bb201562956b4b575bb23aad896a3798cf6df9","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-5.4.3.tgz"},"directories":{}},"5.4.4":{"name":"rc-tabs","version":"5.4.4","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"files":["lib","assets/*.css"],"main":"./lib/index","homepage":"http://github.com/react-component/tabs","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"~0.3.1","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"~0.14.0","react-addons-test-utils":"^0.14.0","react-dom":"^0.14.0"},"pre-commit":["lint"],"dependencies":{"rc-animate":"2.x"},"gitHead":"5d55c16737aa53030bc058136404763e3bd09824","_id":"rc-tabs@5.4.4","_shasum":"24c8d3294cc703e98f16c7bc308222fd896f14cb","_from":".","_npmVersion":"2.14.8","_nodeVersion":"4.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"24c8d3294cc703e98f16c7bc308222fd896f14cb","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-5.4.4.tgz"},"directories":{}},"5.5.0":{"name":"rc-tabs","version":"5.5.0","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"files":["lib","assets/*.css"],"main":"./lib/index","homepage":"http://github.com/react-component/tabs","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"~0.3.1","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"~0.14.0","react-addons-test-utils":"^0.14.0","react-dom":"^0.14.0"},"pre-commit":["lint"],"dependencies":{"rc-animate":"2.x"},"gitHead":"bcefbaf24f3cb2f0be0c3a6475b9f0901a5de197","_id":"rc-tabs@5.5.0","_shasum":"f2db18c05515c82023e0aa81a573e9ef51352126","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"f2db18c05515c82023e0aa81a573e9ef51352126","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-5.5.0.tgz"},"directories":{}},"5.5.1":{"name":"rc-tabs","version":"5.5.1","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"files":["lib","assets/*.css"],"main":"./lib/index","homepage":"http://github.com/react-component/tabs","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"~0.3.1","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"~0.14.0","react-addons-test-utils":"^0.14.0","react-dom":"^0.14.0"},"pre-commit":["lint"],"dependencies":{"rc-animate":"2.x"},"gitHead":"554ac40a61080c49fd1e54849a36886b26c37614","_id":"rc-tabs@5.5.1","_shasum":"c4253fe597624b9572845462cedcb7587af62795","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"c4253fe597624b9572845462cedcb7587af62795","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-5.5.1.tgz"},"directories":{}},"5.5.2":{"name":"rc-tabs","version":"5.5.2","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"files":["lib","assets/*.css"],"main":"./lib/index","homepage":"http://github.com/react-component/tabs","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"~0.3.1","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"~0.14.0","react-addons-test-utils":"^0.14.0","react-dom":"^0.14.0"},"pre-commit":["lint"],"dependencies":{"rc-animate":"2.x"},"gitHead":"cf4f040ec8a0df64c6a349379a72b14586e22df6","_id":"rc-tabs@5.5.2","_shasum":"d771e8fed7a1ac4a566eeb498aca48ce2d075131","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"d771e8fed7a1ac4a566eeb498aca48ce2d075131","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-5.5.2.tgz"},"directories":{}},"5.6.0":{"name":"rc-tabs","version":"5.6.0","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"files":["lib","assets/*.css"],"main":"./lib/index","homepage":"http://github.com/react-component/tabs","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"~0.3.1","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"~0.14.0","react-addons-test-utils":"^0.14.0","react-dom":"^0.14.0"},"pre-commit":["lint"],"dependencies":{"rc-animate":"2.x"},"gitHead":"83e5ffc5aa30a95817bc1fd39368ee53259bf3fe","_id":"rc-tabs@5.6.0","_shasum":"5e407e26ca94e9edf8f76a0a0fd495386cfc7283","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"5e407e26ca94e9edf8f76a0a0fd495386cfc7283","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-5.6.0.tgz"},"directories":{}},"5.7.0":{"name":"rc-tabs","version":"5.7.0","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"files":["lib","assets/*.css"],"main":"./lib/index","homepage":"http://github.com/react-component/tabs","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"~0.3.1","history":"^1.17.0","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"~0.14.0","react-addons-test-utils":"^0.14.0","react-dom":"^0.14.0","react-router":"^1.0.3"},"pre-commit":["lint"],"dependencies":{"rc-animate":"2.x"},"gitHead":"c0b907c23ff1c5c2a73661b0efdd75a3e2653949","_id":"rc-tabs@5.7.0","_shasum":"b05d289a65c3b405ae1a0a2557d9b7c9d7b16ce3","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"b05d289a65c3b405ae1a0a2557d9b7c9d7b16ce3","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-5.7.0.tgz"},"directories":{}},"5.7.1":{"name":"rc-tabs","version":"5.7.1","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"files":["lib","assets/*.css"],"main":"./lib/index","homepage":"http://github.com/react-component/tabs","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"~0.3.1","history":"^1.17.0","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"~0.14.0","react-addons-test-utils":"^0.14.0","react-dom":"^0.14.0","react-router":"^1.0.3"},"pre-commit":["lint"],"dependencies":{"rc-animate":"2.x"},"gitHead":"63c96c530282d350e873432cf363c959d0962784","_id":"rc-tabs@5.7.1","_shasum":"297abd4513a487bffbdb30bb51e0488198b7129c","_from":".","_npmVersion":"3.5.3","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"297abd4513a487bffbdb30bb51e0488198b7129c","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-5.7.1.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-tabs-5.7.1.tgz_1457684059026_0.9055164619348943"},"directories":{}},"5.8.0":{"name":"rc-tabs","version":"5.8.0","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"files":["lib","assets/*.css"],"main":"./lib/index","homepage":"http://github.com/react-component/tabs","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"expect.js":"~0.3.1","history":"^1.17.0","pre-commit":"1.x","rc-tools":"5.x","react":"~0.14.0","react-addons-test-utils":"^0.14.0","react-dom":"^0.14.0","react-router":"^1.0.3"},"pre-commit":["lint"],"dependencies":{"classnames":"2.x","rc-animate":"2.x"},"gitHead":"de7ef8993d4c870a65ae6e4e503fae914c8bb56e","_id":"rc-tabs@5.8.0","_shasum":"51abee95e11b6c882da1e07f2c897fe977683b62","_from":".","_npmVersion":"3.5.3","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"51abee95e11b6c882da1e07f2c897fe977683b62","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-5.8.0.tgz"},"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/rc-tabs-5.8.0.tgz_1458025401934_0.617057224502787"},"directories":{}},"5.8.1":{"name":"rc-tabs","version":"5.8.1","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"files":["lib","assets/*.css"],"main":"./lib/index","homepage":"http://github.com/react-component/tabs","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"expect.js":"~0.3.1","history":"^1.17.0","pre-commit":"1.x","rc-tools":"5.x","react":"~0.14.0","react-addons-test-utils":"^0.14.0","react-dom":"^0.14.0","react-router":"^1.0.3"},"pre-commit":["lint"],"dependencies":{"classnames":"2.x","rc-animate":"2.x"},"gitHead":"256c8d35e23cb492c4733d59fa1a8275305df74f","_id":"rc-tabs@5.8.1","_shasum":"a49e3ba76844a6d00c653f0c52506500c9514ba9","_from":".","_npmVersion":"3.5.3","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"a49e3ba76844a6d00c653f0c52506500c9514ba9","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-5.8.1.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-tabs-5.8.1.tgz_1458025540562_0.1416824827902019"},"directories":{}},"5.8.2":{"name":"rc-tabs","version":"5.8.2","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"files":["lib","assets/*.css"],"main":"./lib/index","homepage":"http://github.com/react-component/tabs","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"expect.js":"~0.3.1","history":"^1.17.0","pre-commit":"1.x","rc-tools":"5.x","react":"~0.14.0","react-addons-test-utils":"^0.14.0","react-dom":"^0.14.0","react-router":"^1.0.3"},"pre-commit":["lint"],"dependencies":{"classnames":"2.x","rc-animate":"2.x"},"gitHead":"fbc10eb3ff4b6de6629ba39832bbc55fe11c2be2","_id":"rc-tabs@5.8.2","_shasum":"e699a09441eb507443b20abf386dbca80e0ddbe2","_from":".","_npmVersion":"3.5.3","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"e699a09441eb507443b20abf386dbca80e0ddbe2","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-5.8.2.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-tabs-5.8.2.tgz_1459497798647_0.4731610065791756"},"directories":{}},"5.8.3":{"name":"rc-tabs","version":"5.8.3","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"files":["lib","assets/*.css"],"main":"./lib/index","homepage":"http://github.com/react-component/tabs","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"expect.js":"~0.3.1","history":"^1.17.0","pre-commit":"1.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x","react-router":"^1.0.3"},"pre-commit":["lint"],"dependencies":{"classnames":"2.x","rc-animate":"2.x"},"gitHead":"442bc6b07c7e24268573bef9500c18a8d602cfb6","_id":"rc-tabs@5.8.3","_shasum":"519b0ce6a59119d21e98c3a0bf9a8e98c16b6aed","_from":".","_npmVersion":"3.5.3","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"519b0ce6a59119d21e98c3a0bf9a8e98c16b6aed","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-5.8.3.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-tabs-5.8.3.tgz_1461225618909_0.13472256041131914"},"directories":{}},"5.9.0":{"name":"rc-tabs","version":"5.9.0","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"files":["lib","assets/*.css"],"main":"./lib/index","homepage":"http://github.com/react-component/tabs","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"expect.js":"~0.3.1","history":"^1.17.0","pre-commit":"1.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x","react-router":"^1.0.3"},"pre-commit":["lint"],"dependencies":{"classnames":"2.x","rc-animate":"2.x"},"gitHead":"5dcebfc25a91a1ea1af360f1e0ab64299d785d78","_id":"rc-tabs@5.9.0","_shasum":"f3f0df79a245816d79c35806576e042ab00a4af1","_from":".","_npmVersion":"3.5.3","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"f3f0df79a245816d79c35806576e042ab00a4af1","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-5.9.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/rc-tabs-5.9.0.tgz_1461671347271_0.04405116522684693"},"directories":{}},"5.9.1":{"name":"rc-tabs","version":"5.9.1","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"files":["lib","assets/*.css"],"main":"./lib/index","homepage":"http://github.com/react-component/tabs","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"expect.js":"~0.3.1","history":"^1.17.0","pre-commit":"1.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x","react-router":"^1.0.3"},"pre-commit":["lint"],"dependencies":{"classnames":"2.x","rc-animate":"2.x"},"gitHead":"5f8191903c799a02b6f6967fcd1a5020625f118d","_id":"rc-tabs@5.9.1","_shasum":"01f5adeb712f0fe22f0a53f58eaed3ca1b64e94f","_from":".","_npmVersion":"3.5.3","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"01f5adeb712f0fe22f0a53f58eaed3ca1b64e94f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-5.9.1.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-tabs-5.9.1.tgz_1463055660827_0.021376812364906073"},"directories":{}},"5.9.2":{"name":"rc-tabs","version":"5.9.2","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"files":["lib","assets/*.css"],"main":"./lib/index","homepage":"http://github.com/react-component/tabs","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"expect.js":"~0.3.1","history":"^1.17.0","pre-commit":"1.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x","react-router":"^1.0.3"},"pre-commit":["lint"],"dependencies":{"classnames":"2.x","rc-animate":"2.x"},"gitHead":"5e781b6f4ee407b9ffd2f5d0a96b07122b79ab5d","_id":"rc-tabs@5.9.2","_shasum":"2e38b36d9eda58d7fc71df216efffd85907852bd","_from":".","_npmVersion":"3.5.3","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"2e38b36d9eda58d7fc71df216efffd85907852bd","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-5.9.2.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-tabs-5.9.2.tgz_1465199913468_0.8616737497504801"},"directories":{}},"5.9.3":{"name":"rc-tabs","version":"5.9.3","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"files":["lib","assets/*.css"],"main":"./lib/index","homepage":"http://github.com/react-component/tabs","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"expect.js":"~0.3.1","history":"^1.17.0","pre-commit":"1.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x","react-router":"2.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","rc-animate":"2.x"},"gitHead":"2a4b9e538b4fec3e4330ca356cfc821ac1de2d77","_id":"rc-tabs@5.9.3","_shasum":"f8a5f7ec92a4af5374f4ad021d674ec91c4c7e4b","_from":".","_npmVersion":"3.9.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"f8a5f7ec92a4af5374f4ad021d674ec91c4c7e4b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-5.9.3.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/rc-tabs-5.9.3.tgz_1471698571667_0.6128820483572781"},"directories":{}},"6.0.0":{"name":"rc-tabs","version":"6.0.0","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"files":["lib","assets/*.css"],"main":"./lib/index","homepage":"http://github.com/react-component/tabs","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"expect.js":"~0.3.1","history":"^1.17.0","pre-commit":"1.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x","react-router":"2.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","rc-animate":"2.x"},"gitHead":"3c5c27cc06f2bc49f02a89e92f590854030be7ce","_id":"rc-tabs@6.0.0","_shasum":"e1378cfd52c2da18fd894f9a7e82537614935768","_from":".","_npmVersion":"3.9.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"e1378cfd52c2da18fd894f9a7e82537614935768","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-6.0.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-tabs-6.0.0.tgz_1471704603813_0.7185660924296826"},"directories":{}},"6.0.1":{"name":"rc-tabs","version":"6.0.1","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"files":["lib","assets/*.css"],"main":"./lib/index","homepage":"http://github.com/react-component/tabs","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"expect.js":"~0.3.1","history":"^1.17.0","pre-commit":"1.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x","react-router":"2.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","rc-animate":"2.x"},"gitHead":"f18d7656d372f92094394180b8aa8ce9d6872ece","_id":"rc-tabs@6.0.1","_shasum":"fc16f2cd5f902732261772b2312aca4b078aace8","_from":".","_npmVersion":"3.9.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"fc16f2cd5f902732261772b2312aca4b078aace8","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-6.0.1.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/rc-tabs-6.0.1.tgz_1471845196212_0.397310335887596"},"directories":{}},"6.0.2":{"name":"rc-tabs","version":"6.0.2","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"files":["lib","assets/*.css"],"main":"./lib/index","homepage":"http://github.com/react-component/tabs","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"expect.js":"~0.3.1","history":"^1.17.0","pre-commit":"1.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x","react-router":"2.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","rc-animate":"2.x"},"gitHead":"d4a6724c54df4eb04736b733feffb08664bc66b1","_id":"rc-tabs@6.0.2","_shasum":"39044633f188e1589f189b45dcc9ecf9ce9634ce","_from":".","_npmVersion":"3.9.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"39044633f188e1589f189b45dcc9ecf9ce9634ce","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-6.0.2.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-tabs-6.0.2.tgz_1472040633239_0.2842316678725183"},"directories":{}},"7.0.0":{"name":"rc-tabs","version":"7.0.0","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"files":["lib","assets/*.css"],"main":"./lib/index","homepage":"http://github.com/react-component/tabs","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"expect.js":"~0.3.1","history":"^1.17.0","pre-commit":"1.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x","react-router":"2.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","react-hammerjs":"~0.5.0"},"gitHead":"9151dcf7f1558d07ca5d42e1598336437e9e7df2","_id":"rc-tabs@7.0.0","_shasum":"4ebc94920d6c3ffdf30a6a678d02fd492ae68b4d","_from":".","_npmVersion":"3.9.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"4ebc94920d6c3ffdf30a6a678d02fd492ae68b4d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-7.0.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-tabs-7.0.0.tgz_1472622743038_0.35545558319427073"},"directories":{}},"7.0.1":{"name":"rc-tabs","version":"7.0.1","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"files":["lib","assets/*.css"],"main":"./lib/index","homepage":"http://github.com/react-component/tabs","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"expect.js":"~0.3.1","history":"^1.17.0","pre-commit":"1.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x","react-router":"2.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","react-hammerjs":"~0.5.0"},"gitHead":"1975227b88db77d07b721f4d5176fe401e52dad6","_id":"rc-tabs@7.0.1","_shasum":"91ab594e0d7bc5006fd37694c965effa134998f7","_from":".","_npmVersion":"3.9.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"91ab594e0d7bc5006fd37694c965effa134998f7","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-7.0.1.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/rc-tabs-7.0.1.tgz_1472623740003_0.3389301057904959"},"directories":{}},"7.0.2":{"name":"rc-tabs","version":"7.0.2","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"files":["lib","assets/*.css"],"main":"./lib/index","homepage":"http://github.com/react-component/tabs","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"expect.js":"~0.3.1","history":"^1.17.0","pre-commit":"1.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x","react-router":"2.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","react-hammerjs":"~0.5.0"},"gitHead":"5be0e04afb079790ef824636d74fc200fbc613da","_id":"rc-tabs@7.0.2","_shasum":"224142ddfdacc4e4cebd5b1283e11d40dc2dff93","_from":".","_npmVersion":"3.9.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"224142ddfdacc4e4cebd5b1283e11d40dc2dff93","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-7.0.2.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-tabs-7.0.2.tgz_1472625095217_0.9527213405817747"},"directories":{}},"7.0.3":{"name":"rc-tabs","version":"7.0.3","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"files":["lib","assets/*.css"],"main":"./lib/index","homepage":"http://github.com/react-component/tabs","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"expect.js":"~0.3.1","history":"^1.17.0","pre-commit":"1.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x","react-router":"2.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","react-hammerjs":"~0.5.0"},"gitHead":"f9b89b689f31c6e8e685916446e31189f3fa6c2d","_id":"rc-tabs@7.0.3","_shasum":"324a0e339018d619a842c21af7a9cc630456a5e1","_from":".","_npmVersion":"3.9.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"324a0e339018d619a842c21af7a9cc630456a5e1","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-7.0.3.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-tabs-7.0.3.tgz_1472627132623_0.21284727891907096"},"directories":{}},"7.0.4":{"name":"rc-tabs","version":"7.0.4","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"files":["lib","assets/*.css"],"main":"./lib/index","homepage":"http://github.com/react-component/tabs","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"expect.js":"~0.3.1","history":"^1.17.0","pre-commit":"1.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x","react-router":"2.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","react-hammerjs":"~0.5.0"},"gitHead":"f1a5fa717583fcdf79b950e3927810e11a8238e3","_id":"rc-tabs@7.0.4","_shasum":"1544011f150c6cfba363828c5e652f2fa4a8c0d4","_from":".","_npmVersion":"3.9.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"1544011f150c6cfba363828c5e652f2fa4a8c0d4","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-7.0.4.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-tabs-7.0.4.tgz_1472627804847_0.932196777779609"},"directories":{}},"7.0.5":{"name":"rc-tabs","version":"7.0.5","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"files":["lib","assets/*.css"],"main":"./lib/index","homepage":"http://github.com/react-component/tabs","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"expect.js":"~0.3.1","fastclick":"~1.0.6","history":"^1.17.0","pre-commit":"1.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x","react-router":"2.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","react-hammerjs":"~0.5.0"},"gitHead":"d72cf6c6301cca42d219052509681c8ce5ae34f2","_id":"rc-tabs@7.0.5","_shasum":"063aa15fc60b006e93552d22baa90733a6690ed7","_from":".","_npmVersion":"3.9.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"063aa15fc60b006e93552d22baa90733a6690ed7","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-7.0.5.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/rc-tabs-7.0.5.tgz_1472707302449_0.5171075756661594"},"directories":{}},"7.0.6":{"name":"rc-tabs","version":"7.0.6","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"files":["lib","assets/*.css"],"main":"./lib/index","homepage":"http://github.com/react-component/tabs","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"expect.js":"~0.3.1","fastclick":"~1.0.6","history":"^1.17.0","pre-commit":"1.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x","react-router":"2.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","react-hammerjs":"~0.5.0"},"gitHead":"5df4ba6644f4c9292dfad4d30b4b58ef12b25de3","_id":"rc-tabs@7.0.6","_shasum":"ca60ff62743404397c8fa3fa69e54b33bbcc34df","_from":".","_npmVersion":"3.9.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"ca60ff62743404397c8fa3fa69e54b33bbcc34df","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-7.0.6.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-tabs-7.0.6.tgz_1473671191035_0.29521306208334863"},"directories":{}},"7.0.7":{"name":"rc-tabs","version":"7.0.7","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"files":["lib","assets/*.css"],"main":"./lib/index","homepage":"http://github.com/react-component/tabs","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"expect.js":"~0.3.1","fastclick":"~1.0.6","history":"^1.17.0","pre-commit":"1.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x","react-router":"2.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","react-hammerjs":"~0.5.0"},"gitHead":"b2487940272ff787ab6a2de854bc5b2b8b18de56","_id":"rc-tabs@7.0.7","_shasum":"f975b619f440efcb2fdb592a4e094f9da62f6203","_from":".","_npmVersion":"3.9.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"f975b619f440efcb2fdb592a4e094f9da62f6203","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-7.0.7.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-tabs-7.0.7.tgz_1474530415771_0.48977408674545586"},"directories":{}},"7.0.8":{"name":"rc-tabs","version":"7.0.8","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"files":["lib","assets/*.css"],"main":"./lib/index","homepage":"http://github.com/react-component/tabs","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"expect.js":"~0.3.1","fastclick":"~1.0.6","history":"^1.17.0","pre-commit":"1.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x","react-router":"2.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","react-hammerjs":"~0.5.0"},"gitHead":"0b9e16b100f8a7e3edcdaa290c2bb8ad5e9ad52b","_id":"rc-tabs@7.0.8","_shasum":"651b69e1b98cec2eb67016054dea891f45b14513","_from":".","_npmVersion":"3.9.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"651b69e1b98cec2eb67016054dea891f45b14513","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-7.0.8.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/rc-tabs-7.0.8.tgz_1474882307181_0.6110128473956138"},"directories":{}},"7.0.9":{"name":"rc-tabs","version":"7.0.9","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"files":["lib","assets/*.css"],"main":"./lib/index","homepage":"http://github.com/react-component/tabs","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"expect.js":"~0.3.1","fastclick":"~1.0.6","history":"^1.17.0","pre-commit":"1.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x","react-router":"2.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","react-hammerjs":"~0.5.0"},"gitHead":"020977e93d20ddeddad8c5c89eed3f99720d1f68","_id":"rc-tabs@7.0.9","_shasum":"25218edd4f216a42d42c022b027dc4e1b251c2e6","_from":".","_npmVersion":"3.9.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"25218edd4f216a42d42c022b027dc4e1b251c2e6","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-7.0.9.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/rc-tabs-7.0.9.tgz_1474946218397_0.7365074739791453"},"directories":{}},"7.0.10":{"name":"rc-tabs","version":"7.0.10","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"files":["lib","assets/*.css"],"main":"./lib/index","homepage":"http://github.com/react-component/tabs","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"expect.js":"~0.3.1","fastclick":"~1.0.6","history":"^1.17.0","pre-commit":"1.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x","react-router":"2.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","react-hammerjs":"~0.5.0"},"gitHead":"4039865f8b6402038df84086dcc5312938b8029d","_id":"rc-tabs@7.0.10","_shasum":"cfbe35747f18298bd35ea44f52163e89ca6db3a0","_from":".","_npmVersion":"3.9.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"cfbe35747f18298bd35ea44f52163e89ca6db3a0","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-7.0.10.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/rc-tabs-7.0.10.tgz_1475154250974_0.35631803004071116"},"directories":{}},"7.0.11":{"name":"rc-tabs","version":"7.0.11","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"files":["lib","assets/*.css"],"main":"./lib/index","homepage":"http://github.com/react-component/tabs","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"expect.js":"~0.3.1","fastclick":"~1.0.6","history":"^1.17.0","pre-commit":"1.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x","react-router":"2.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","react-hammerjs":"~0.5.0"},"gitHead":"6ad4e223798c72552a256c32168682541cf76bcb","_id":"rc-tabs@7.0.11","_shasum":"1738c02060cf7858d87b5864d62d36e11d31616f","_from":".","_npmVersion":"4.0.1","_nodeVersion":"4.6.1","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"1738c02060cf7858d87b5864d62d36e11d31616f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-7.0.11.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-tabs-7.0.11.tgz_1478595543964_0.8288492287974805"},"directories":{}},"7.0.12":{"name":"rc-tabs","version":"7.0.12","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"files":["lib","assets/*.css"],"main":"./lib/index","homepage":"http://github.com/react-component/tabs","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"expect.js":"~0.3.1","fastclick":"~1.0.6","history":"^1.17.0","pre-commit":"1.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x","react-router":"2.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","react-hammerjs":"~0.5.0"},"gitHead":"3da9b0a004d022ec6679486bb1e624b16684e0ac","_id":"rc-tabs@7.0.12","_shasum":"2aaf84981929acc9d2dfb49a281a85c3290ca8a6","_from":".","_npmVersion":"3.10.9","_nodeVersion":"6.7.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"2aaf84981929acc9d2dfb49a281a85c3290ca8a6","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-7.0.12.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-tabs-7.0.12.tgz_1478858962107_0.11019177013076842"},"directories":{}},"7.0.13":{"name":"rc-tabs","version":"7.0.13","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"files":["lib","assets/*.css"],"main":"./lib/index","homepage":"http://github.com/react-component/tabs","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"expect.js":"~0.3.1","fastclick":"~1.0.6","history":"^1.17.0","pre-commit":"1.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x","react-router":"2.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","react-hammerjs":"~0.5.0"},"gitHead":"6b895e1d18200d7620ad975e7eaf850dd2590cfc","_id":"rc-tabs@7.0.13","_shasum":"b656b5812c452029701a99f5a54de67dcbfc9588","_from":".","_npmVersion":"4.0.1","_nodeVersion":"4.6.1","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"b656b5812c452029701a99f5a54de67dcbfc9588","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-7.0.13.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/rc-tabs-7.0.13.tgz_1479094303253_0.5093176052905619"},"directories":{}},"7.1.0":{"name":"rc-tabs","version":"7.1.0","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"files":["lib","assets/*.css"],"main":"./lib/index","homepage":"http://github.com/react-component/tabs","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"expect.js":"~0.3.1","fastclick":"~1.0.6","history":"^1.17.0","pre-commit":"1.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x","react-router":"2.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","react-hammerjs":"~0.5.0"},"gitHead":"856a0739a529840899afbaad6832c44eeed24e31","_id":"rc-tabs@7.1.0","_shasum":"e307b565d08c2f663b601686d2bb8b5030654fd8","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"e307b565d08c2f663b601686d2bb8b5030654fd8","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-7.1.0.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-tabs-7.1.0.tgz_1481014955436_0.7388186526950449"},"directories":{}},"7.1.1":{"name":"rc-tabs","version":"7.1.1","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"files":["lib","assets/*.css"],"main":"./lib/index","homepage":"http://github.com/react-component/tabs","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"expect.js":"~0.3.1","fastclick":"~1.0.6","history":"^1.17.0","pre-commit":"1.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x","react-router":"2.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","react-hammerjs":"~0.5.0"},"gitHead":"3434c67dacfcb907540f468c9e2d6e7e48d7fdd9","_id":"rc-tabs@7.1.1","_shasum":"c7d0f76d64465b06bf2968e9245694726d2b962b","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"c7d0f76d64465b06bf2968e9245694726d2b962b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-7.1.1.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/rc-tabs-7.1.1.tgz_1486382291350_0.9566049301065505"},"directories":{}},"7.2.0":{"name":"rc-tabs","version":"7.2.0","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"files":["lib","assets/*.css"],"main":"./lib/index","homepage":"http://github.com/react-component/tabs","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","watch":"rc-tools run watch","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"jest","updateSn":"jest --updateSnapshot","chrome-test":"rc-tools run chrome-test","coverage":"jest --coverage && cat ./coverage/lcov.info | coveralls"},"jest":{"collectCoverageFrom":["src/*"]},"devDependencies":{"coveralls":"^2.11.16","enzyme":"^2.7.1","enzyme-to-json":"^1.5.0","expect.js":"~0.3.1","fastclick":"~1.0.6","history":"^1.17.0","jest":"^19.0.2","pre-commit":"1.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x","react-router":"2.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","react-hammerjs":"~0.5.0"},"gitHead":"a9e5d20216ca5c44432ee732fb2010ec3174e3da","_id":"rc-tabs@7.2.0","_shasum":"9ac14ce3bf6f395142acc04db562ade0dfdc3f4b","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.4","_npmUser":{"name":"paranoidjk","email":"hust2012jiangkai@gmail.com"},"dist":{"shasum":"9ac14ce3bf6f395142acc04db562ade0dfdc3f4b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-7.2.0.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"paranoidjk","email":"hust2012jiangkai@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-tabs-7.2.0.tgz_1488453522690_0.05454716319218278"},"directories":{}},"7.3.0":{"name":"rc-tabs","version":"7.3.0","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"files":["lib","assets/*.css"],"main":"./lib/index","homepage":"http://github.com/react-component/tabs","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","watch":"rc-tools run watch","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"jest","updateSn":"jest --updateSnapshot","chrome-test":"rc-tools run chrome-test","coverage":"jest --coverage && cat ./coverage/lcov.info | coveralls"},"jest":{"collectCoverageFrom":["src/*"]},"devDependencies":{"coveralls":"^2.11.16","enzyme":"^2.7.1","enzyme-to-json":"^1.5.0","expect.js":"~0.3.1","fastclick":"~1.0.6","history":"^1.17.0","jest":"^19.0.2","pre-commit":"1.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x","react-router":"2.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","react-hammerjs":"~0.5.0"},"gitHead":"02eee103bc74babda49cc3a47d89900c7ebbe238","_id":"rc-tabs@7.3.0","_shasum":"650674a50ba992e70a557ca87b3705790e9f0a29","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.4","_npmUser":{"name":"paranoidjk","email":"hust2012jiangkai@gmail.com"},"dist":{"shasum":"650674a50ba992e70a557ca87b3705790e9f0a29","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-7.3.0.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"paranoidjk","email":"hust2012jiangkai@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/rc-tabs-7.3.0.tgz_1488772853735_0.3757979210931808"},"directories":{}},"7.3.1":{"name":"rc-tabs","version":"7.3.1","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"files":["lib","assets/*.css"],"main":"./lib/index","homepage":"http://github.com/react-component/tabs","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","watch":"rc-tools run watch","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"jest","updateSn":"jest --updateSnapshot","chrome-test":"rc-tools run chrome-test","coverage":"jest --coverage && cat ./coverage/lcov.info | coveralls"},"jest":{"collectCoverageFrom":["src/*"]},"devDependencies":{"coveralls":"^2.11.16","enzyme":"^2.7.1","enzyme-to-json":"^1.5.0","expect.js":"~0.3.1","fastclick":"~1.0.6","history":"^1.17.0","jest":"^19.0.2","pre-commit":"1.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x","react-router":"2.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","react-hammerjs":"~0.5.0"},"gitHead":"bf70583f47da417d23965ba10874a79abeb6942b","_id":"rc-tabs@7.3.1","_shasum":"95ad3cdd41e75e0ca22fa63f9c9d4f489cf93d70","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.4","_npmUser":{"name":"paranoidjk","email":"hust2012jiangkai@gmail.com"},"dist":{"shasum":"95ad3cdd41e75e0ca22fa63f9c9d4f489cf93d70","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-7.3.1.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"paranoidjk","email":"hust2012jiangkai@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/rc-tabs-7.3.1.tgz_1489125194718_0.3662341695744544"},"directories":{}},"7.3.4":{"name":"rc-tabs","version":"7.3.4","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"files":["lib","assets/*.css"],"main":"./lib/index","homepage":"http://github.com/react-component/tabs","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","watch":"rc-tools run watch","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"jest","updateSn":"jest --updateSnapshot","chrome-test":"rc-tools run chrome-test","coverage":"jest --coverage && cat ./coverage/lcov.info | coveralls"},"jest":{"collectCoverageFrom":["src/*"]},"devDependencies":{"coveralls":"^2.11.16","enzyme":"^2.7.1","enzyme-to-json":"^1.5.0","expect.js":"~0.3.1","fastclick":"~1.0.6","history":"^1.17.0","jest":"^19.0.2","pre-commit":"1.x","rc-tools":"5.x","react":"15.x","react-dom":"^15.5.4","react-router":"2.x","react-test-renderer":"^15.5.4"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","create-react-class":"15.x","prop-types":"15.x","react-hammerjs":"~0.5.0","warning":"^3.0.0"},"gitHead":"4d58c75ff049ea79f836ccd81e6c4b1f361bea36","_id":"rc-tabs@7.3.4","_shasum":"c0b8753fc0cc5e6c3354a815afe96b8f00361a3a","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.4","_npmUser":{"name":"paranoidjk","email":"hust2012jiangkai@gmail.com"},"dist":{"shasum":"c0b8753fc0cc5e6c3354a815afe96b8f00361a3a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-7.3.4.tgz"},"maintainers":[{"name":"paranoidjk","email":"hust2012jiangkai@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/rc-tabs-7.3.4.tgz_1493198360659_0.5665738051757216"},"directories":{}},"7.5.0":{"name":"rc-tabs","version":"7.5.0","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"files":["lib","es","assets/*.css"],"main":"./lib/index","module":"./es/index","homepage":"http://github.com/react-component/tabs","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","compile":"rc-tools run compile","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","watch":"rc-tools run watch","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"jest","updateSn":"jest --updateSnapshot","chrome-test":"rc-tools run chrome-test","coverage":"jest --coverage && cat ./coverage/lcov.info | coveralls"},"jest":{"collectCoverageFrom":["src/*"]},"devDependencies":{"coveralls":"^2.11.16","enzyme":"^2.7.1","enzyme-to-json":"^1.5.0","expect.js":"~0.3.1","fastclick":"~1.0.6","history":"^1.17.0","jest":"^19.0.2","pre-commit":"1.x","rc-tools":"6.x","react":"15.x","react-dom":"^15.5.4","react-router":"2.x","react-test-renderer":"^15.5.4"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","create-react-class":"15.x","prop-types":"15.x","rc-hammerjs":"~0.6.0","warning":"^3.0.0"},"gitHead":"2ff5b53102a6d57cba0bed656685b69e36969f08","_id":"rc-tabs@7.5.0","_shasum":"16d6194cb99a50f295c8df785f65805bc409e7ce","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.3","_npmUser":{"name":"paranoidjk","email":"hust2012jiangkai@gmail.com"},"dist":{"shasum":"16d6194cb99a50f295c8df785f65805bc409e7ce","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-7.5.0.tgz"},"maintainers":[{"name":"paranoidjk","email":"hust2012jiangkai@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/rc-tabs-7.5.0.tgz_1494422641666_0.8115625376813114"},"directories":{}},"8.0.0-beta.0":{"name":"rc-tabs","version":"8.0.0-beta.0","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"files":["lib","es","assets/*.css"],"main":"./lib/index","module":"./es/index","homepage":"http://github.com/react-component/tabs","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","compile":"rc-tools run compile --babel-runtime","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","watch":"rc-tools run watch","karma":"rc-test run karma","saucelabs":"rc-test run saucelabs","test":"jest","updateSn":"jest --updateSnapshot","chrome-test":"rc-test run chrome-test","coverage":"jest --coverage && cat ./coverage/lcov.info | coveralls"},"jest":{"collectCoverageFrom":["src/*"]},"devDependencies":{"coveralls":"^2.11.16","enzyme":"^2.7.1","enzyme-to-json":"^1.5.0","expect.js":"~0.3.1","fastclick":"~1.0.6","history":"^1.17.0","jest":"^19.0.2","pre-commit":"1.x","rc-test":"^6.0.1","rc-tools":"6.x","react":"15.x","react-dom":"^15.5.4","react-router":"2.x","react-test-renderer":"^15.5.4"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","create-react-class":"15.x","prop-types":"15.x","rc-hammerjs":"~0.6.0","warning":"^3.0.0"},"gitHead":"c6790452c19630d042daad4d9029ceb62dc5d076","_id":"rc-tabs@8.0.0-beta.0","_shasum":"a7045378546b55686219364ca189901774a7fe2a","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.3","_npmUser":{"name":"paranoidjk","email":"hust2012jiangkai@gmail.com"},"dist":{"shasum":"a7045378546b55686219364ca189901774a7fe2a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-8.0.0-beta.0.tgz"},"maintainers":[{"name":"paranoidjk","email":"hust2012jiangkai@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/rc-tabs-8.0.0-beta.0.tgz_1496390285292_0.15437583322636783"},"directories":{}},"8.0.0":{"name":"rc-tabs","version":"8.0.0","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"files":["lib","es","assets/*.css"],"main":"./lib/index","module":"./es/index","homepage":"http://github.com/react-component/tabs","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","compile":"rc-tools run compile --babel-runtime","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","watch":"rc-tools run watch","karma":"rc-test run karma","saucelabs":"rc-test run saucelabs","test":"jest","updateSn":"jest --updateSnapshot","chrome-test":"rc-test run chrome-test","coverage":"jest --coverage && cat ./coverage/lcov.info | coveralls"},"jest":{"collectCoverageFrom":["src/*"],"transform":{"\\.tsx?$":"./node_modules/rc-tools/scripts/jestPreprocessor.js","\\.jsx?$":"./node_modules/rc-tools/scripts/jestPreprocessor.js"}},"devDependencies":{"coveralls":"^2.11.16","enzyme":"^2.7.1","enzyme-to-json":"^1.5.0","expect.js":"~0.3.1","fastclick":"~1.0.6","history":"^1.17.0","jest":"^19.0.2","pre-commit":"1.x","rc-test":"^6.0.1","rc-tools":"6.x","react":"15.x","react-dom":"^15.5.4","react-router":"2.x","react-test-renderer":"^15.5.4"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","create-react-class":"15.x","prop-types":"15.x","rc-hammerjs":"~0.6.0","warning":"^3.0.0"},"gitHead":"6809468065d9c4617dd6a8fe9bccc5ded3339f9f","_id":"rc-tabs@8.0.0","_shasum":"24519e7bafd43b0440e9c651a0d3ef0312bcfcac","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.3","_npmUser":{"name":"paranoidjk","email":"hust2012jiangkai@gmail.com"},"dist":{"shasum":"24519e7bafd43b0440e9c651a0d3ef0312bcfcac","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-8.0.0.tgz"},"maintainers":[{"name":"paranoidjk","email":"hust2012jiangkai@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/rc-tabs-8.0.0.tgz_1496426024116_0.23272008006460965"},"directories":{}},"8.0.1":{"name":"rc-tabs","version":"8.0.1","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"files":["lib","es","assets/*.css"],"main":"./lib/index","module":"./es/index","homepage":"http://github.com/react-component/tabs","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","compile":"rc-tools run compile --babel-runtime","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","watch":"rc-tools run watch","karma":"rc-test run karma","saucelabs":"rc-test run saucelabs","test":"jest","updateSn":"jest --updateSnapshot","chrome-test":"rc-test run chrome-test","coverage":"jest --coverage && cat ./coverage/lcov.info | coveralls"},"jest":{"collectCoverageFrom":["src/*"],"transform":{"\\.tsx?$":"./node_modules/rc-tools/scripts/jestPreprocessor.js","\\.jsx?$":"./node_modules/rc-tools/scripts/jestPreprocessor.js"}},"devDependencies":{"coveralls":"^2.11.16","enzyme":"^2.7.1","enzyme-to-json":"^1.5.0","expect.js":"~0.3.1","fastclick":"~1.0.6","history":"^1.17.0","jest":"^19.0.2","pre-commit":"1.x","rc-test":"^6.0.1","rc-tools":"6.x","react":"15.x","react-dom":"^15.5.4","react-router":"2.x","react-test-renderer":"^15.5.4"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","create-react-class":"15.x","prop-types":"15.x","rc-hammerjs":"~0.6.0","warning":"^3.0.0"},"gitHead":"be54d77abd6b6585ee2b44ad0581a648a4b5bda6","_id":"rc-tabs@8.0.1","_shasum":"25c57c09bfe38f7ef872413635d209457069c077","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.3","_npmUser":{"name":"paranoidjk","email":"hust2012jiangkai@gmail.com"},"dist":{"shasum":"25c57c09bfe38f7ef872413635d209457069c077","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-8.0.1.tgz"},"maintainers":[{"name":"paranoidjk","email":"hust2012jiangkai@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/rc-tabs-8.0.1.tgz_1499167933483_0.918199063045904"},"directories":{}},"8.0.2":{"name":"rc-tabs","version":"8.0.2","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"files":["lib","es","assets/*.css"],"main":"./lib/index","module":"./es/index","homepage":"http://github.com/react-component/tabs","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","compile":"rc-tools run compile --babel-runtime","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","watch":"rc-tools run watch","karma":"rc-test run karma","saucelabs":"rc-test run saucelabs","test":"jest","updateSn":"jest --updateSnapshot","chrome-test":"rc-test run chrome-test","coverage":"jest --coverage && cat ./coverage/lcov.info | coveralls"},"jest":{"collectCoverageFrom":["src/*"],"transform":{"\\.tsx?$":"./node_modules/rc-tools/scripts/jestPreprocessor.js","\\.jsx?$":"./node_modules/rc-tools/scripts/jestPreprocessor.js"}},"devDependencies":{"coveralls":"^2.11.16","enzyme":"^2.7.1","enzyme-to-json":"^1.5.0","expect.js":"~0.3.1","fastclick":"~1.0.6","history":"^1.17.0","jest":"^19.0.2","pre-commit":"1.x","rc-test":"^6.0.1","rc-tools":"6.x","react":"15.x","react-dom":"^15.5.4","react-router":"2.x","react-test-renderer":"^15.5.4"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","create-react-class":"15.x","prop-types":"15.x","rc-hammerjs":"~0.6.0","warning":"^3.0.0"},"gitHead":"90cb2409dfdae6bc3f2d580c55ca96512cb5184a","_id":"rc-tabs@8.0.2","_shasum":"05fa4b57252df33851e5c250a08bcc6f8e55ceb4","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.3","_npmUser":{"name":"paranoidjk","email":"hust2012jiangkai@gmail.com"},"dist":{"shasum":"05fa4b57252df33851e5c250a08bcc6f8e55ceb4","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-8.0.2.tgz"},"maintainers":[{"name":"paranoidjk","email":"hust2012jiangkai@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/rc-tabs-8.0.2.tgz_1499748575493_0.09839077200740576"},"directories":{}},"8.1.0":{"name":"rc-tabs","version":"8.1.0","description":"tabs ui component for react","keywords":["react","react-component","react-tabs"],"files":["lib","es","assets/*.css"],"main":"./lib/index","module":"./es/index","homepage":"http://github.com/react-component/tabs","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tabs.git"},"bugs":{"url":"http://github.com/react-component/tabs/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","compile":"rc-tools run compile --babel-runtime","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","watch":"rc-tools run watch","karma":"rc-test run karma","saucelabs":"rc-test run saucelabs","test":"jest","updateSn":"jest --updateSnapshot","chrome-test":"rc-test run chrome-test","coverage":"jest --coverage && cat ./coverage/lcov.info | coveralls"},"jest":{"collectCoverageFrom":["src/*"],"transform":{"\\.tsx?$":"./node_modules/rc-tools/scripts/jestPreprocessor.js","\\.jsx?$":"./node_modules/rc-tools/scripts/jestPreprocessor.js"}},"devDependencies":{"coveralls":"^2.11.16","enzyme":"^2.7.1","enzyme-to-json":"^1.5.0","expect.js":"~0.3.1","fastclick":"~1.0.6","history":"^1.17.0","jest":"^19.0.2","pre-commit":"1.x","rc-test":"^6.0.1","rc-tools":"6.x","react":"15.x","react-dom":"^15.5.4","react-router":"2.x","react-test-renderer":"^15.5.4"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","create-react-class":"15.x","prop-types":"15.x","rc-hammerjs":"~0.6.0","warning":"^3.0.0"},"gitHead":"0f1bc00ceca31a11e24cd56feeaf116d1eacccb7","_id":"rc-tabs@8.1.0","_npmVersion":"5.2.0","_nodeVersion":"6.11.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"integrity":"sha512-GrZ8sqLtUDey2ysnoYNoVX6eZwhD/w/NAc7IYgbmALk1ocRtSX7FCrOiNb8ZRKy2sLIH+Z8eINbQ2tJPLO2GMQ==","shasum":"7d284ec1760692bca7f5994bafd2c6e14208f2eb","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tabs/-/rc-tabs-8.1.0.tgz"},"maintainers":[{"name":"paranoidjk","email":"hust2012jiangkai@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/rc-tabs-8.1.0.tgz_1499951976471_0.12847825000062585"},"directories":{}}},"name":"rc-tabs","time":{"modified":"2017-07-13T13:19:36.881Z","created":"2014-12-12T08:39:26.480Z","1.0.0":"2014-12-12T08:39:26.480Z","2.0.0":"2015-01-12T10:32:01.186Z","2.0.1":"2015-01-12T10:35:29.847Z","2.0.2":"2015-01-12T10:39:14.740Z","2.0.3":"2015-02-22T17:00:37.413Z","2.0.4":"2015-03-12T09:58:21.497Z","3.0.0":"2015-03-17T08:19:55.844Z","3.1.0":"2015-03-27T04:39:54.784Z","3.2.0":"2015-04-20T03:29:28.828Z","3.3.0":"2015-04-30T05:21:19.329Z","4.0.0":"2015-05-04T05:25:16.733Z","5.0.0":"2015-05-20T11:07:02.382Z","5.0.1":"2015-05-20T11:15:30.439Z","5.0.2":"2015-05-25T12:49:41.679Z","5.0.3":"2015-05-25T13:59:40.728Z","5.0.4":"2015-05-25T14:06:49.450Z","5.0.5":"2015-05-28T13:48:35.067Z","5.1.0":"2015-06-10T11:43:31.417Z","5.2.0":"2015-07-06T14:25:05.316Z","5.3.0":"2015-07-28T10:51:14.666Z","5.3.1":"2015-07-29T08:42:55.221Z","5.3.2":"2015-07-31T08:59:14.975Z","5.3.3":"2015-08-20T08:40:29.435Z","5.4.0":"2015-10-20T14:50:52.397Z","5.4.1":"2015-10-21T04:42:18.216Z","5.4.2":"2015-10-21T09:19:42.758Z","5.4.3":"2015-10-26T02:54:57.773Z","5.4.4":"2015-11-04T14:52:10.022Z","5.5.0":"2015-11-11T15:47:19.895Z","5.5.1":"2015-12-02T04:28:20.287Z","5.5.2":"2015-12-03T12:53:45.057Z","5.6.0":"2015-12-15T12:40:13.014Z","5.7.0":"2016-01-22T09:16:10.694Z","5.7.1":"2016-03-11T08:14:21.289Z","5.8.0":"2016-03-15T07:03:24.316Z","5.8.1":"2016-03-15T07:05:43.594Z","5.8.2":"2016-04-01T08:03:19.097Z","5.8.3":"2016-04-21T08:00:21.436Z","5.9.0":"2016-04-26T11:49:10.464Z","5.9.1":"2016-05-12T12:21:01.290Z","5.9.2":"2016-06-06T07:58:35.823Z","5.9.3":"2016-08-20T13:09:34.185Z","6.0.0":"2016-08-20T14:50:05.529Z","6.0.1":"2016-08-22T05:53:17.747Z","6.0.2":"2016-08-24T12:10:35.051Z","7.0.0":"2016-08-31T05:52:24.792Z","7.0.1":"2016-08-31T06:09:01.758Z","7.0.2":"2016-08-31T06:31:37.204Z","7.0.3":"2016-08-31T07:05:34.525Z","7.0.4":"2016-08-31T07:16:46.865Z","7.0.5":"2016-09-01T05:21:44.399Z","7.0.6":"2016-09-12T09:06:32.905Z","7.0.7":"2016-09-22T07:46:57.611Z","7.0.8":"2016-09-26T09:31:48.490Z","7.0.9":"2016-09-27T03:16:59.863Z","7.0.10":"2016-09-29T13:04:11.923Z","7.0.11":"2016-11-08T08:59:06.011Z","7.0.12":"2016-11-11T10:09:24.103Z","7.0.13":"2016-11-14T03:31:43.870Z","7.1.0":"2016-12-06T09:02:37.571Z","7.1.1":"2017-02-06T11:58:13.182Z","7.2.0":"2017-03-02T11:18:42.928Z","7.3.0":"2017-03-06T04:00:55.746Z","7.3.1":"2017-03-10T05:53:16.554Z","7.3.3":"2017-04-26T09:09:14.399Z","7.3.4":"2017-04-26T09:19:22.805Z","7.5.0":"2017-05-10T13:24:05.164Z","8.0.0-beta.0":"2017-06-02T07:58:05.396Z","8.0.0":"2017-06-02T17:53:44.196Z","8.0.1":"2017-07-04T11:32:13.579Z","8.0.2":"2017-07-11T04:49:35.604Z","8.1.0":"2017-07-13T13:19:36.881Z"},"readmeFilename":"README.md","homepage":"http://github.com/react-component/tabs"}