{"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"paranoidjk","email":"hust2012jiangkai@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"keywords":["react","react-component","react-tooltip","tooltip"],"dist-tags":{"latest":"3.4.7"},"description":"React Tooltip","readme":"# rc-tooltip\n---\n\nReact Tooltip\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[![node version][node-image]][node-url]\n[![npm download][download-image]][download-url]\n\n[npm-image]: http://img.shields.io/npm/v/rc-tooltip.svg?style=flat-square\n[npm-url]: http://npmjs.org/package/rc-tooltip\n[travis-image]: https://img.shields.io/travis/react-component/tooltip.svg?style=flat-square\n[travis-url]: https://travis-ci.org/react-component/tooltip\n[coveralls-image]: https://img.shields.io/coveralls/react-component/tooltip.svg?style=flat-square\n[coveralls-url]: https://coveralls.io/r/react-component/tooltip?branch=master\n[gemnasium-image]: http://img.shields.io/gemnasium/react-component/tooltip.svg?style=flat-square\n[gemnasium-url]: https://gemnasium.com/react-component/tooltip\n[node-image]: https://img.shields.io/badge/node.js-%3E=_0.10-green.svg?style=flat-square\n[node-url]: http://nodejs.org/download/\n[download-image]: https://img.shields.io/npm/dm/rc-tooltip.svg?style=flat-square\n[download-url]: https://npmjs.org/package/rc-tooltip\n\n## Screenshot\n\n<img src=\"http://gtms03.alicdn.com/tps/i3/TB1NQUSHpXXXXaUXFXXlQqyZXXX-1312-572.png\" width=\"600\"/>\n\n## Browser Support\n\n|![IE](https://raw.github.com/alrra/browser-logos/master/internet-explorer/internet-explorer_48x48.png) | ![Chrome](https://raw.github.com/alrra/browser-logos/master/chrome/chrome_48x48.png) | ![Firefox](https://raw.github.com/alrra/browser-logos/master/firefox/firefox_48x48.png) | ![Opera](https://raw.github.com/alrra/browser-logos/master/opera/opera_48x48.png) | ![Safari](https://raw.github.com/alrra/browser-logos/master/safari/safari_48x48.png)|\n| --- | --- | --- | --- | --- |\n| IE 8 + IE 8+ ✔ | Chrome 31.0+ ✔ | Firefox 31.0+ ✔ | Opera 30.0+ ✔ | Safari 7.0+ ✔ |\n\n\n## Install\n\n[![rc-tooltip](https://nodei.co/npm/rc-tooltip.png)](https://npmjs.org/package/rc-tooltip)\n\n## Usage\n\n```js\nvar Tooltip = require('rc-tooltip');\nvar React = require('react');\nvar ReactDOM = require('react-dom');\nReactDOM.render(<Tooltip placement=\"left\" trigger={['click']} overlay={<span>tooltip</span>}><a href='#'>hover</a></Tooltip>, container);\n```\n\n## Examples\n\n`npm start` and then go to\n[http://localhost:8007/examples](http://localhost:8007/examples)\n\nOnline examples: [http://react-component.github.io/tooltip/examples/](http://react-component.github.io/tooltip/examples/)\n\n## API\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 style=\"width: 50px;\">default</th>\n        <th>description</th>\n    </tr>\n    </thead>\n    <tbody>\n        <tr>\n          <td>overlayClassName</td>\n          <td>string</td>\n          <td></td>\n          <td>additional className added to popup overlay</td>\n        </tr>\n        <tr>\n          <td>trigger</td>\n          <td>string[]</td>\n          <td>['hover']</td>\n          <td>which actions cause tooltip shown. enum of 'hover','click','focus'</td>\n        </tr>\n        <tr>\n          <td>mouseEnterDelay</td>\n          <td>number</td>\n          <td>0</td>\n          <td>delay time to show when mouse enter.unit: s.</td>\n        </tr>\n        <tr>\n          <td>mouseLeaveDelay</td>\n          <td>number</td>\n          <td>0.1</td>\n          <td>delay time to hide when mouse leave.unit: s.</td>\n        </tr>\n        <tr>\n          <td>overlayStyle</td>\n          <td>Object</td>\n          <td></td>\n          <td>additional style of overlay node</td>\n        </tr>\n        <tr>\n          <td>prefixCls</td>\n          <td>String</td>\n          <td>rc-tooltip</td>\n          <td>prefix class name</td>\n        </tr>\n        <tr>\n          <td>transitionName</td>\n          <td>String</td>\n          <td></td>\n          <td>same as https://github.com/react-component/css-transition-group</td>\n        </tr>\n        <tr>\n          <td>onVisibleChange</td>\n          <td>Function</td>\n          <td></td>\n          <td>call when visible is changed</td>\n        </tr>\n        <tr>\n          <td>afterVisibleChange</td>\n          <td>Function</td>\n          <td></td>\n          <td>call after visible is changed</td>\n        </tr>\n        <tr>\n          <td>visible</td>\n          <td>boolean</td>\n          <td></td>\n          <td>whether tooltip is visible</td>\n        </tr>\n        <tr>\n          <td>defaultVisible</td>\n          <td>boolean</td>\n          <td></td>\n          <td>whether tooltip is visible initially</td>\n        </tr>\n        <tr>\n          <td>placement</td>\n          <td>String</td>\n          <td></td>\n          <td>one of ['left','right','top','bottom', 'topLeft', 'topRight', 'bottomLeft', 'bottomRight']</td>\n        </tr>\n        <tr>\n          <td>align</td>\n          <td>Object: alignConfig of [dom-align](https://github.com/yiminghe/dom-align)</td>\n          <td></td>\n          <td>value will be merged into placement's config</td>\n        </tr>\n        <tr>\n          <td>onPopupAlign</td>\n          <td>function(popupDomNode, align)</td>\n          <td></td>\n          <td>callback when popup node is aligned</td>\n        </tr>\n        <tr>\n          <td>overlay</td>\n          <td>React.Element | () => React.Element</td>\n          <td></td>\n          <td>popup content</td>\n        </tr>\n        <tr>\n          <td>arrowContent</td>\n          <td>React.Node</td>\n          <td>null</td>\n          <td>arrow content</td>\n        </tr>\n        <tr>\n          <td>getTooltipContainer</td>\n          <td>function</td>\n          <td></td>\n          <td>Function returning html node which will act as tooltip container. By default the tooltip attaches to the body. If you want to change the container, simply return a new element.</td>\n        </tr>\n        <tr>\n          <td>destroyTooltipOnHide</td>\n          <td>boolean</td>\n          <td>false</td>\n          <td>whether destroy tooltip when tooltip is hidden</td>\n        </tr>\n    </tbody>\n</table>\n\n## Note\n\n`Tooltip` requires child node accepts `onMouseEnter`, `onMouseLeave`, `onFocus`, `onClick` event.\n\n\n## Development\n\n```bash\nnpm install\nnpm start\n```\n\n## Test Case\n\n```bash\nnpm test\nnpm run chrome-test\n```\n\n## Coverage\n\n```bash\nnpm run coverage\n```\n\n## License\n\n`rc-tooltip` is released under the MIT license.\n","repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tooltip.git"},"users":{"dongxu":true,"joneszhuchinagd":true,"whathejoe":true},"bugs":{"url":"http://github.com/react-component/tooltip/issues"},"license":"MIT","versions":{"1.0.0":{"name":"rc-tooltip","version":"1.0.0","description":"tooltip ui component for react","keywords":["react","react-component","react-tooltip","tooltip"],"homepage":"http://github.com/react-component/tooltip","maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git@github.com:react-component/tooltip.git"},"bugs":{"url":"http://github.com/react-component/tooltip/issues"},"licenses":"MIT","spm":{"dependencies":{"react":"*","dom-align":"1.x","rc-css-transition-group":"1.x","rc-util":"2.x"}},"config":{"port":8000},"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":"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.2","expect.js":"~0.3.1","jquery":"~2.1.3","object-assign":"~2.0.0","precommit-hook":"^1.0.7","rc-server":"^2.0.0","rc-tools":"2.x","react":"^0.13.0"},"precommit":["lint","less"],"dependencies":{"dom-align":"1.x","rc-css-transition-group":"1.x","rc-util":"2.x"},"gitHead":"f8a76f77b4e56be26da43faa93e7e7c97bd1f89a","_id":"rc-tooltip@1.0.0","_shasum":"3d5b427c1f61310d1709c4cdeb8c5804ab21b4cb","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"3d5b427c1f61310d1709c4cdeb8c5804ab21b4cb","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tooltip/-/rc-tooltip-1.0.0.tgz"},"directories":{}},"1.1.0":{"name":"rc-tooltip","version":"1.1.0","description":"tooltip ui component for react","keywords":["react","react-component","react-tooltip","tooltip"],"homepage":"http://github.com/react-component/tooltip","maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git@github.com:react-component/tooltip.git"},"bugs":{"url":"http://github.com/react-component/tooltip/issues"},"licenses":"MIT","spm":{"dependencies":{"react":"*","dom-align":"1.x","rc-css-transition-group":"1.x","rc-util":"2.x"}},"config":{"port":8000},"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":"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.2","expect.js":"~0.3.1","jquery":"~1.11.2","object-assign":"~2.0.0","precommit-hook":"^1.0.7","rc-server":"^2.0.0","rc-tools":"2.x","react":"^0.13.0"},"precommit":["lint","less"],"dependencies":{"dom-align":"1.x","rc-css-transition-group":"1.x","rc-util":"2.x"},"gitHead":"d67177d24aa3475e8c3d0ed72982df3ab9ffee95","_id":"rc-tooltip@1.1.0","_shasum":"eb0911d071cb18b3a93e7816d9d4899dfbdeb013","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"eb0911d071cb18b3a93e7816d9d4899dfbdeb013","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tooltip/-/rc-tooltip-1.1.0.tgz"},"directories":{}},"1.1.1":{"name":"rc-tooltip","version":"1.1.1","description":"tooltip ui component for react","keywords":["react","react-component","react-tooltip","tooltip"],"homepage":"http://github.com/react-component/tooltip","maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git@github.com:react-component/tooltip.git"},"bugs":{"url":"http://github.com/react-component/tooltip/issues"},"licenses":"MIT","spm":{"dependencies":{"react":"*","dom-align":"1.x","rc-css-transition-group":"1.x","rc-util":"2.x"}},"config":{"port":8000},"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":"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.2","expect.js":"~0.3.1","jquery":"~1.11.2","object-assign":"~2.0.0","precommit-hook":"^1.0.7","rc-server":"^2.0.0","rc-tools":"2.x","react":"^0.13.0"},"precommit":["lint","less"],"dependencies":{"dom-align":"1.x","rc-css-transition-group":"1.x","rc-util":"2.x"},"gitHead":"22ea1a62f4b960a99ff70480d93e0425a2264b5b","_id":"rc-tooltip@1.1.1","_shasum":"84d66920b91da2a670d98fb8ab26d7975808f683","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"84d66920b91da2a670d98fb8ab26d7975808f683","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tooltip/-/rc-tooltip-1.1.1.tgz"},"directories":{}},"1.1.2":{"name":"rc-tooltip","version":"1.1.2","description":"tooltip ui component for react","keywords":["react","react-component","react-tooltip","tooltip"],"main":"lib/index","homepage":"http://github.com/react-component/tooltip","maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tooltip.git"},"bugs":{"url":"http://github.com/react-component/tooltip/issues"},"licenses":"MIT","config":{"port":8000},"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":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.2","object-assign":"~2.0.0","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"3.x","react":"^0.13.0"},"precommit":["precommit"],"dependencies":{"dom-align":"1.x","rc-css-transition-group":"2.x","rc-util":"2.x"},"gitHead":"1c7dfe3a0a5c3071805eccff55204ad7c05f2bd5","_id":"rc-tooltip@1.1.2","_shasum":"3cc00d205841dac352ab1acb7648aa2a8f4430f8","_from":".","_npmVersion":"2.11.0","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"3cc00d205841dac352ab1acb7648aa2a8f4430f8","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tooltip/-/rc-tooltip-1.1.2.tgz"},"directories":{}},"1.2.0":{"name":"rc-tooltip","version":"1.2.0","description":"tooltip ui component for react","keywords":["react","react-component","react-tooltip","tooltip"],"main":"lib/index","homepage":"http://github.com/react-component/tooltip","maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tooltip.git"},"bugs":{"url":"http://github.com/react-component/tooltip/issues"},"licenses":"MIT","config":{"port":8000},"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":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.2","object-assign":"~2.0.0","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"3.x","react":"^0.13.0"},"precommit":["precommit"],"dependencies":{"dom-align":"1.x","rc-css-transition-group":"2.x","rc-util":"2.x"},"gitHead":"dfd2650ea3c21262291eb6dad297d705b71e58f8","_id":"rc-tooltip@1.2.0","_shasum":"1b609a20a366d64d1e0a9b178ade1aaa8aff4fec","_from":".","_npmVersion":"2.11.0","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"1b609a20a366d64d1e0a9b178ade1aaa8aff4fec","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tooltip/-/rc-tooltip-1.2.0.tgz"},"directories":{}},"2.0.0":{"name":"rc-tooltip","version":"2.0.0","description":"tooltip ui component for react","keywords":["react","react-component","react-tooltip","tooltip"],"main":"lib/index","homepage":"http://github.com/react-component/tooltip","maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tooltip.git"},"bugs":{"url":"http://github.com/react-component/tooltip/issues"},"licenses":"MIT","config":{"port":8000},"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":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.2","object-assign":"~2.0.0","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"3.x","react":"^0.13.0"},"precommit":["precommit"],"dependencies":{"css-animation":"^1.0.2","dom-align":"1.x","object-assign":"~3.0.0","rc-util":"2.x"},"gitHead":"6ca3ba6bad02f87135c3ddf6f8e076a5e9fd231d","_id":"rc-tooltip@2.0.0","_shasum":"bdc476fe21e0736c2024c55ee0462e94539640aa","_from":".","_npmVersion":"2.11.0","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"bdc476fe21e0736c2024c55ee0462e94539640aa","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tooltip/-/rc-tooltip-2.0.0.tgz"},"directories":{}},"2.0.1":{"name":"rc-tooltip","version":"2.0.1","description":"tooltip ui component for react","keywords":["react","react-component","react-tooltip","tooltip"],"main":"lib/index","homepage":"http://github.com/react-component/tooltip","maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tooltip.git"},"bugs":{"url":"http://github.com/react-component/tooltip/issues"},"licenses":"MIT","config":{"port":8000},"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":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.2","object-assign":"~2.0.0","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"3.x","react":"^0.13.0"},"precommit":["precommit"],"dependencies":{"css-animation":"^1.0.2","dom-align":"1.x","object-assign":"~3.0.0","rc-util":"2.x"},"gitHead":"9aa6827ed16e9f34c712559237cb236300516d8e","_id":"rc-tooltip@2.0.1","_shasum":"2de3d14caf6bc7d27b1478314ecfb1e1b327bd25","_from":".","_npmVersion":"2.11.0","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"2de3d14caf6bc7d27b1478314ecfb1e1b327bd25","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tooltip/-/rc-tooltip-2.0.1.tgz"},"directories":{}},"2.0.2":{"name":"rc-tooltip","version":"2.0.2","description":"tooltip ui component for react","keywords":["react","react-component","react-tooltip","tooltip"],"main":"lib/index","homepage":"http://github.com/react-component/tooltip","maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tooltip.git"},"bugs":{"url":"http://github.com/react-component/tooltip/issues"},"licenses":"MIT","config":{"port":8000},"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":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.2","object-assign":"~2.0.0","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"3.x","react":"^0.13.0"},"precommit":["precommit"],"dependencies":{"css-animation":"^1.0.2","dom-align":"1.x","object-assign":"~3.0.0","rc-util":"2.x"},"gitHead":"b2eb7f47b0ecb43595b0b371e1154a57ddb63641","_id":"rc-tooltip@2.0.2","_shasum":"fbfe07a84404bc189f10f4ebdded3e884e42c484","_from":".","_npmVersion":"2.11.0","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"fbfe07a84404bc189f10f4ebdded3e884e42c484","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tooltip/-/rc-tooltip-2.0.2.tgz"},"directories":{}},"2.0.3":{"name":"rc-tooltip","version":"2.0.3","description":"tooltip ui component for react","keywords":["react","react-component","react-tooltip","tooltip"],"main":"lib/index","homepage":"http://github.com/react-component/tooltip","maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tooltip.git"},"bugs":{"url":"http://github.com/react-component/tooltip/issues"},"licenses":"MIT","config":{"port":8000},"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":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.2","object-assign":"~2.0.0","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"3.x","react":"^0.13.0"},"precommit":["precommit"],"dependencies":{"css-animation":"^1.0.2","dom-align":"1.x","object-assign":"~3.0.0","rc-util":"2.x"},"gitHead":"03411a0b7451e0f2f4ece1c9cd3f41dd4c73a79d","_id":"rc-tooltip@2.0.3","_shasum":"64a8e33148464503a5b9a60ef155022592cdcdb2","_from":".","_npmVersion":"2.11.0","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"64a8e33148464503a5b9a60ef155022592cdcdb2","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tooltip/-/rc-tooltip-2.0.3.tgz"},"directories":{}},"2.0.4":{"name":"rc-tooltip","version":"2.0.4","description":"tooltip ui component for react","keywords":["react","react-component","react-tooltip","tooltip"],"main":"lib/index","homepage":"http://github.com/react-component/tooltip","maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tooltip.git"},"bugs":{"url":"http://github.com/react-component/tooltip/issues"},"licenses":"MIT","config":{"port":8000},"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":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.2","object-assign":"~2.0.0","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"3.x","react":"^0.13.0"},"precommit":["precommit"],"dependencies":{"css-animation":"^1.0.2","dom-align":"1.x","object-assign":"~3.0.0","rc-util":"2.x"},"gitHead":"ae93dc45f44ba6072f0bd732831e16be7b0445d1","_id":"rc-tooltip@2.0.4","_shasum":"5228df9b3a35ae23696491c8c68083a7c4c2796b","_from":".","_npmVersion":"2.11.0","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"5228df9b3a35ae23696491c8c68083a7c4c2796b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tooltip/-/rc-tooltip-2.0.4.tgz"},"directories":{}},"2.1.0":{"name":"rc-tooltip","version":"2.1.0","description":"tooltip ui component for react","keywords":["react","react-component","react-tooltip","tooltip"],"main":"lib/index","homepage":"http://github.com/react-component/tooltip","maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tooltip.git"},"bugs":{"url":"http://github.com/react-component/tooltip/issues"},"licenses":"MIT","config":{"port":8000},"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":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.2","object-assign":"~2.0.0","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"3.x","react":"^0.13.0"},"precommit":["precommit"],"dependencies":{"css-animation":"^1.0.2","dom-align":"1.x","object-assign":"~3.0.0","rc-util":"2.x"},"gitHead":"8de0ff4038a6adb9611a10c8cf00f5622a224102","_id":"rc-tooltip@2.1.0","_shasum":"0d8b8f0bfb813ca69db90285cf20281f8171cba7","_from":".","_npmVersion":"2.11.0","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"0d8b8f0bfb813ca69db90285cf20281f8171cba7","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tooltip/-/rc-tooltip-2.1.0.tgz"},"directories":{}},"2.1.1":{"name":"rc-tooltip","version":"2.1.1","description":"tooltip ui component for react","keywords":["react","react-component","react-tooltip","tooltip"],"main":"lib/index","homepage":"http://github.com/react-component/tooltip","maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tooltip.git"},"bugs":{"url":"http://github.com/react-component/tooltip/issues"},"licenses":"MIT","config":{"port":8000},"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":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.2","object-assign":"~2.0.0","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"3.x","react":"^0.13.0"},"precommit":["precommit"],"dependencies":{"css-animation":"^1.0.2","dom-align":"1.x","rc-util":"2.x"},"gitHead":"7705014afe23adb4ed3b3b433c98dffc0d321b2e","_id":"rc-tooltip@2.1.1","_shasum":"16bc0e12fe0d368a6cbb3bc0d6fd3b29c366290e","_from":".","_npmVersion":"2.11.0","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"16bc0e12fe0d368a6cbb3bc0d6fd3b29c366290e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tooltip/-/rc-tooltip-2.1.1.tgz"},"directories":{}},"2.1.2":{"name":"rc-tooltip","version":"2.1.2","description":"tooltip ui component for react","keywords":["react","react-component","react-tooltip","tooltip"],"main":"lib/index","homepage":"http://github.com/react-component/tooltip","maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tooltip.git"},"bugs":{"url":"http://github.com/react-component/tooltip/issues"},"licenses":"MIT","config":{"port":8000},"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":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.2","object-assign":"~2.0.0","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"3.x","react":"^0.13.0"},"precommit":["precommit"],"dependencies":{"css-animation":"^1.0.2","dom-align":"1.x","rc-util":"~2.0.3"},"gitHead":"7be95d4293265e3582cd7ff384e43f342e6211cc","_id":"rc-tooltip@2.1.2","_shasum":"66d2f07ece362dfe6734e071669d85c86c6b29b8","_from":".","_npmVersion":"2.11.0","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"66d2f07ece362dfe6734e071669d85c86c6b29b8","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tooltip/-/rc-tooltip-2.1.2.tgz"},"directories":{}},"2.2.0":{"name":"rc-tooltip","version":"2.2.0","description":"tooltip ui component for react","keywords":["react","react-component","react-tooltip","tooltip"],"main":"lib/index","homepage":"http://github.com/react-component/tooltip","maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tooltip.git"},"bugs":{"url":"http://github.com/react-component/tooltip/issues"},"licenses":"MIT","config":{"port":8000},"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":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.2","object-assign":"~2.0.0","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"3.x","react":"^0.13.0"},"precommit":["precommit"],"dependencies":{"css-animation":"^1.0.2","dom-align":"1.x","rc-util":"~2.0.3"},"gitHead":"f84a64855fea8c034fd8a59dea5a12042338f5d8","_id":"rc-tooltip@2.2.0","_shasum":"15154f35711f61c677ed8c4a88bf1fd952be4629","_from":".","_npmVersion":"2.11.0","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"15154f35711f61c677ed8c4a88bf1fd952be4629","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tooltip/-/rc-tooltip-2.2.0.tgz"},"directories":{}},"2.2.1":{"name":"rc-tooltip","version":"2.2.1","description":"tooltip ui component for react","keywords":["react","react-component","react-tooltip","tooltip"],"main":"lib/index","homepage":"http://github.com/react-component/tooltip","maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tooltip.git"},"bugs":{"url":"http://github.com/react-component/tooltip/issues"},"licenses":"MIT","config":{"port":8000},"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":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.2","object-assign":"~2.0.0","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"3.x","react":"^0.13.0"},"precommit":["precommit"],"dependencies":{"css-animation":"^1.0.2","dom-align":"1.x","rc-util":"~2.0.3"},"gitHead":"94f9138f858a6fc2ff64f32238e1d48a0dbc1964","_id":"rc-tooltip@2.2.1","_shasum":"567533a4c390f1dd23040dab0f04eb8523bc5f2c","_from":".","_npmVersion":"2.11.0","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"567533a4c390f1dd23040dab0f04eb8523bc5f2c","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tooltip/-/rc-tooltip-2.2.1.tgz"},"directories":{}},"2.2.2":{"name":"rc-tooltip","version":"2.2.2","description":"tooltip ui component for react","keywords":["react","react-component","react-tooltip","tooltip"],"main":"lib/index","homepage":"http://github.com/react-component/tooltip","maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tooltip.git"},"bugs":{"url":"http://github.com/react-component/tooltip/issues"},"licenses":"MIT","config":{"port":8000},"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":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.2","object-assign":"~2.0.0","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"3.x","react":"^0.13.0"},"precommit":["precommit"],"dependencies":{"css-animation":"^1.0.2","dom-align":"1.x","rc-util":"~2.0.3"},"gitHead":"b8cc2a6275d8cebbda9ed2a6734e564a1d6bcd82","_id":"rc-tooltip@2.2.2","_shasum":"8dddcdc114eb84035b24d0503e6681b7af6cb0ec","_from":".","_npmVersion":"2.11.0","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"8dddcdc114eb84035b24d0503e6681b7af6cb0ec","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tooltip/-/rc-tooltip-2.2.2.tgz"},"directories":{}},"2.2.3":{"name":"rc-tooltip","version":"2.2.3","description":"tooltip ui component for react","keywords":["react","react-component","react-tooltip","tooltip"],"main":"lib/index","homepage":"http://github.com/react-component/tooltip","maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tooltip.git"},"bugs":{"url":"http://github.com/react-component/tooltip/issues"},"licenses":"MIT","config":{"port":8000},"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":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.2","object-assign":"~2.0.0","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"3.x","react":"^0.13.0"},"precommit":["precommit"],"dependencies":{"css-animation":"^1.0.2","dom-align":"1.x","rc-util":"~2.0.3"},"gitHead":"50e585bac180e25df5851521a3d77ad270c90342","_id":"rc-tooltip@2.2.3","_shasum":"b823d51acf4a88fb450825ca1c51aa28d8aab339","_from":".","_npmVersion":"2.11.0","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"b823d51acf4a88fb450825ca1c51aa28d8aab339","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tooltip/-/rc-tooltip-2.2.3.tgz"},"directories":{}},"2.2.4":{"name":"rc-tooltip","version":"2.2.4","description":"tooltip ui component for react","keywords":["react","react-component","react-tooltip","tooltip"],"main":"lib/index","homepage":"http://github.com/react-component/tooltip","maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tooltip.git"},"bugs":{"url":"http://github.com/react-component/tooltip/issues"},"licenses":"MIT","config":{"port":8000},"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":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.2","object-assign":"~2.0.0","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"3.x","react":"^0.13.0"},"precommit":["precommit"],"dependencies":{"css-animation":"^1.0.2","dom-align":"1.x","rc-util":"~2.0.3"},"gitHead":"6cc61f0aa49b70f764eaccf731de50a885d5cc5d","_id":"rc-tooltip@2.2.4","_shasum":"643110ebb53e6ed9509761f0ae390b5076896ad9","_from":".","_npmVersion":"2.11.0","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"643110ebb53e6ed9509761f0ae390b5076896ad9","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tooltip/-/rc-tooltip-2.2.4.tgz"},"directories":{}},"2.3.0":{"name":"rc-tooltip","version":"2.3.0","description":"tooltip ui component for react","keywords":["react","react-component","react-tooltip","tooltip"],"main":"lib/index","homepage":"http://github.com/react-component/tooltip","maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tooltip.git"},"bugs":{"url":"http://github.com/react-component/tooltip/issues"},"licenses":"MIT","config":{"port":8000},"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":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.2","object-assign":"~2.0.0","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"3.x","react":"^0.13.0"},"precommit":["precommit"],"dependencies":{"css-animation":"^1.0.2","dom-align":"1.x","rc-util":"~2.0.3"},"gitHead":"e71bfe6f992dcb2e22f7ca798adaa2ca59c5f4f8","_id":"rc-tooltip@2.3.0","_shasum":"f1177ce7822ffc48b417113dfa9bc2aab16f283b","_from":".","_npmVersion":"2.11.0","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"f1177ce7822ffc48b417113dfa9bc2aab16f283b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tooltip/-/rc-tooltip-2.3.0.tgz"},"directories":{}},"2.4.0":{"name":"rc-tooltip","version":"2.4.0","description":"tooltip ui component for react","keywords":["react","react-component","react-tooltip","tooltip"],"main":"lib/index","homepage":"http://github.com/react-component/tooltip","maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tooltip.git"},"bugs":{"url":"http://github.com/react-component/tooltip/issues"},"licenses":"MIT","config":{"port":8000},"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":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.2","object-assign":"~2.0.0","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"3.x","react":"^0.13.0"},"precommit":["precommit"],"dependencies":{"css-animation":"^1.0.2","dom-align":"1.x","rc-util":"~2.0.3"},"gitHead":"2b8e8fc3f6a1b25184109d52ff78dac469e9aeee","_id":"rc-tooltip@2.4.0","_shasum":"1de56c9bd363536e5cbaa8173b2335d9474bc235","_from":".","_npmVersion":"2.11.0","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"1de56c9bd363536e5cbaa8173b2335d9474bc235","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tooltip/-/rc-tooltip-2.4.0.tgz"},"directories":{}},"2.4.1":{"name":"rc-tooltip","version":"2.4.1","description":"tooltip ui component for react","keywords":["react","react-component","react-tooltip","tooltip"],"main":"lib/index","homepage":"http://github.com/react-component/tooltip","maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tooltip.git"},"bugs":{"url":"http://github.com/react-component/tooltip/issues"},"licenses":"MIT","config":{"port":8000},"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":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.2","object-assign":"~2.0.0","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"3.x","react":"^0.13.0"},"precommit":["precommit"],"dependencies":{"css-animation":"^1.0.2","dom-align":"1.x","rc-util":"~2.0.3"},"gitHead":"f798f796aae8b9fb066d23c8a2cacdf14fc214a4","_id":"rc-tooltip@2.4.1","_shasum":"d51424ba42b288fb9d76ec7cadfe902ee3310daf","_from":".","_npmVersion":"2.11.0","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"d51424ba42b288fb9d76ec7cadfe902ee3310daf","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tooltip/-/rc-tooltip-2.4.1.tgz"},"directories":{}},"2.5.0":{"name":"rc-tooltip","version":"2.5.0","description":"tooltip ui component for react","keywords":["react","react-component","react-tooltip","tooltip"],"main":"lib/index","homepage":"http://github.com/react-component/tooltip","maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tooltip.git"},"bugs":{"url":"http://github.com/react-component/tooltip/issues"},"licenses":"MIT","config":{"port":8000},"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":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.2","object-assign":"~2.0.0","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"3.x","react":"^0.13.0"},"precommit":["precommit"],"dependencies":{"rc-align":"1.x","rc-animate":"1.x","rc-util":"2.x"},"gitHead":"1ca6ca3287a2c83083d3bbf75fe4d2ece5bd10d1","_id":"rc-tooltip@2.5.0","_shasum":"de794b7d1b116fa9a41f880f9beb7a1a6852b444","_from":".","_npmVersion":"2.11.0","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"de794b7d1b116fa9a41f880f9beb7a1a6852b444","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tooltip/-/rc-tooltip-2.5.0.tgz"},"directories":{}},"2.5.1":{"name":"rc-tooltip","version":"2.5.1","description":"tooltip ui component for react","keywords":["react","react-component","react-tooltip","tooltip"],"main":"lib/index","homepage":"http://github.com/react-component/tooltip","maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tooltip.git"},"bugs":{"url":"http://github.com/react-component/tooltip/issues"},"licenses":"MIT","config":{"port":8007},"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":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.2","object-assign":"~2.0.0","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"4.x","react":"^0.13.0"},"precommit":["lint"],"dependencies":{"rc-align":"1.x","rc-animate":"1.x","rc-util":"2.x"},"gitHead":"0b10caf58d4ea8a6e99e536f08323dade832d182","_id":"rc-tooltip@2.5.1","_shasum":"19893dca335b3362a513cb33034b81439bc2d872","_from":".","_npmVersion":"2.11.0","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"19893dca335b3362a513cb33034b81439bc2d872","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tooltip/-/rc-tooltip-2.5.1.tgz"},"directories":{}},"2.6.0":{"name":"rc-tooltip","version":"2.6.0","description":"tooltip ui component for react","keywords":["react","react-component","react-tooltip","tooltip"],"main":"lib/index","homepage":"http://github.com/react-component/tooltip","maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tooltip.git"},"bugs":{"url":"http://github.com/react-component/tooltip/issues"},"licenses":"MIT","config":{"port":8007},"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":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.2","object-assign":"~2.0.0","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"4.x","react":"^0.13.0"},"precommit":["lint"],"dependencies":{"rc-align":"1.x","rc-animate":"1.x","rc-util":"2.x"},"gitHead":"0aedab5ff4614b135720ccac3140e067c161eb64","_id":"rc-tooltip@2.6.0","_shasum":"fcb19d69a37664d624cbdca042a6c4084067997e","_from":".","_npmVersion":"3.2.2","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"fcb19d69a37664d624cbdca042a6c4084067997e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tooltip/-/rc-tooltip-2.6.0.tgz"},"directories":{}},"2.6.1":{"name":"rc-tooltip","version":"2.6.1","description":"tooltip ui component for react","keywords":["react","react-component","react-tooltip","tooltip"],"main":"lib/index","homepage":"http://github.com/react-component/tooltip","maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tooltip.git"},"bugs":{"url":"http://github.com/react-component/tooltip/issues"},"licenses":"MIT","config":{"port":8007},"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":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.2","object-assign":"~2.0.0","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"4.x","react":"^0.13.0"},"precommit":["lint"],"dependencies":{"rc-align":"1.x","rc-animate":"1.x","rc-util":"2.x"},"gitHead":"6ae11e1dfe172ee5fbd5b4d957c7e8b8ebf7ffd9","_id":"rc-tooltip@2.6.1","_shasum":"a308108e7d5c3beeb2edb14a2f2184f0384dab81","_from":".","_npmVersion":"3.2.2","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"a308108e7d5c3beeb2edb14a2f2184f0384dab81","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tooltip/-/rc-tooltip-2.6.1.tgz"},"directories":{}},"2.6.2":{"name":"rc-tooltip","version":"2.6.2","description":"tooltip ui component for react","keywords":["react","react-component","react-tooltip","tooltip"],"main":"lib/index","homepage":"http://github.com/react-component/tooltip","maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tooltip.git"},"bugs":{"url":"http://github.com/react-component/tooltip/issues"},"licenses":"MIT","config":{"port":8007},"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":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.2","object-assign":"~2.0.0","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"4.x","react":"^0.13.0"},"precommit":["lint"],"dependencies":{"rc-align":"1.x","rc-animate":"1.x","rc-util":"2.x"},"gitHead":"d3e69b354b5a42ebff53acdde7f221619fca6af2","_id":"rc-tooltip@2.6.2","_shasum":"05c1a6693c4e75435b28cb9073ddbfe54f7aabea","_from":".","_npmVersion":"3.2.2","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"05c1a6693c4e75435b28cb9073ddbfe54f7aabea","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tooltip/-/rc-tooltip-2.6.2.tgz"},"directories":{}},"2.6.3":{"name":"rc-tooltip","version":"2.6.3","description":"tooltip ui component for react","keywords":["react","react-component","react-tooltip","tooltip"],"main":"lib/index","homepage":"http://github.com/react-component/tooltip","maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tooltip.git"},"bugs":{"url":"http://github.com/react-component/tooltip/issues"},"licenses":"MIT","config":{"port":8007},"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":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.2","object-assign":"~2.0.0","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"4.x","react":"^0.13.0"},"precommit":["lint"],"dependencies":{"rc-align":"1.x","rc-animate":"1.x","rc-util":"2.x"},"gitHead":"db101eaa33cf9b30791d2dcad1f86e20049a60b6","_id":"rc-tooltip@2.6.3","_shasum":"4d9a55d53b78b9fee07e59e10448f518d291877f","_from":".","_npmVersion":"3.2.2","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"4d9a55d53b78b9fee07e59e10448f518d291877f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tooltip/-/rc-tooltip-2.6.3.tgz"},"directories":{}},"2.6.4":{"name":"rc-tooltip","version":"2.6.4","description":"tooltip ui component for react","keywords":["react","react-component","react-tooltip","tooltip"],"main":"lib/index","homepage":"http://github.com/react-component/tooltip","maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tooltip.git"},"bugs":{"url":"http://github.com/react-component/tooltip/issues"},"licenses":"MIT","config":{"port":8007},"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":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.2","object-assign":"~2.0.0","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"4.x","react":"^0.13.0"},"precommit":["lint"],"dependencies":{"rc-align":"1.x","rc-animate":"1.x","rc-util":"2.x"},"gitHead":"7f76229baa227237ec5addfd22d1702478ffff3e","_id":"rc-tooltip@2.6.4","_shasum":"20be6a12aa22f8d55cf35db8ae3ee402cfb701b9","_from":".","_npmVersion":"3.2.2","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"20be6a12aa22f8d55cf35db8ae3ee402cfb701b9","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tooltip/-/rc-tooltip-2.6.4.tgz"},"directories":{}},"2.6.5":{"name":"rc-tooltip","version":"2.6.5","description":"tooltip ui component for react","keywords":["react","react-component","react-tooltip","tooltip"],"main":"lib/index","homepage":"http://github.com/react-component/tooltip","maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tooltip.git"},"bugs":{"url":"http://github.com/react-component/tooltip/issues"},"licenses":"MIT","config":{"port":8007},"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":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.2","object-assign":"~2.0.0","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"4.x","react":"^0.13.0"},"precommit":["lint"],"dependencies":{"rc-align":"1.x","rc-animate":"1.x","rc-util":"2.x"},"gitHead":"74d857d6724802e33454bb436b0c486768189df3","_id":"rc-tooltip@2.6.5","_shasum":"875d039359963df59858003fc60ff449d204a599","_from":".","_npmVersion":"3.2.2","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"875d039359963df59858003fc60ff449d204a599","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tooltip/-/rc-tooltip-2.6.5.tgz"},"directories":{}},"2.7.0":{"name":"rc-tooltip","version":"2.7.0","description":"tooltip ui component for react","keywords":["react","react-component","react-tooltip","tooltip"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/tooltip","maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tooltip.git"},"bugs":{"url":"http://github.com/react-component/tooltip/issues"},"licenses":"MIT","config":{"port":8007},"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":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.2","object-assign":"~2.0.0","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"4.x","react":"^0.13.0"},"precommit":["lint"],"dependencies":{"rc-align":"1.x","rc-animate":"1.x","rc-util":"2.x"},"gitHead":"0f4f620648b5671e59c76a2945e6163277b39593","_id":"rc-tooltip@2.7.0","_shasum":"a8e1a3dc846403a1233d5041155643840ea7de96","_from":".","_npmVersion":"3.2.2","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"a8e1a3dc846403a1233d5041155643840ea7de96","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tooltip/-/rc-tooltip-2.7.0.tgz"},"directories":{}},"2.7.1":{"name":"rc-tooltip","version":"2.7.1","description":"tooltip ui component for react","keywords":["react","react-component","react-tooltip","tooltip"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/tooltip","maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tooltip.git"},"bugs":{"url":"http://github.com/react-component/tooltip/issues"},"licenses":"MIT","config":{"port":8007},"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":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.2","object-assign":"~2.0.0","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"4.x","react":"^0.13.0"},"precommit":["lint"],"dependencies":{"rc-align":"1.x","rc-animate":"1.x","rc-util":"2.x"},"gitHead":"34cb45e5d1fdda560f2b9f7a8e8637507d2f4c70","_id":"rc-tooltip@2.7.1","_shasum":"1a6dfa17e3e55f11152408fc99c720b142cc36fe","_from":".","_npmVersion":"2.14.2","_nodeVersion":"4.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"1a6dfa17e3e55f11152408fc99c720b142cc36fe","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tooltip/-/rc-tooltip-2.7.1.tgz"},"directories":{}},"2.8.0":{"name":"rc-tooltip","version":"2.8.0","description":"tooltip ui component for react","keywords":["react","react-component","react-tooltip","tooltip"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/tooltip","maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tooltip.git"},"bugs":{"url":"http://github.com/react-component/tooltip/issues"},"licenses":"MIT","config":{"port":8007},"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":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.2","object-assign":"~2.0.0","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"4.x","react":"^0.13.0"},"precommit":["lint"],"dependencies":{"rc-align":"1.x","rc-animate":"1.x","rc-util":"2.x"},"gitHead":"2f0d273703841dac0632e7783abaa5faca4ba2d6","_id":"rc-tooltip@2.8.0","_shasum":"07ecb0b90377f98a00e8213d1096a9f78844225d","_from":".","_npmVersion":"2.14.2","_nodeVersion":"4.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"07ecb0b90377f98a00e8213d1096a9f78844225d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tooltip/-/rc-tooltip-2.8.0.tgz"},"directories":{}},"2.9.0":{"name":"rc-tooltip","version":"2.9.0","description":"tooltip ui component for react","keywords":["react","react-component","react-tooltip","tooltip"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/tooltip","maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tooltip.git"},"bugs":{"url":"http://github.com/react-component/tooltip/issues"},"licenses":"MIT","config":{"port":8007},"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":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.2","object-assign":"~2.0.0","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"4.x","react":"^0.13.0"},"precommit":["lint"],"dependencies":{"rc-align":"1.x","rc-animate":"1.x","rc-util":"2.x"},"gitHead":"4a3c45a08b6f0233c3610109704f8af69e02c085","_id":"rc-tooltip@2.9.0","_shasum":"65f7362c47a699a1816d38fd538968aa23b5599b","_from":".","_npmVersion":"2.14.2","_nodeVersion":"4.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"65f7362c47a699a1816d38fd538968aa23b5599b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tooltip/-/rc-tooltip-2.9.0.tgz"},"directories":{}},"2.10.0":{"name":"rc-tooltip","version":"2.10.0","description":"tooltip ui component for react","keywords":["react","react-component","react-tooltip","tooltip"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/tooltip","maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tooltip.git"},"bugs":{"url":"http://github.com/react-component/tooltip/issues"},"licenses":"MIT","config":{"port":8007},"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":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.2","object-assign":"~2.0.0","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"4.x","react":"^0.13.0"},"precommit":["lint"],"dependencies":{"rc-align":"1.x","rc-animate":"1.x","rc-util":"2.x"},"gitHead":"646bf2270d2170ebc4834a64938c0dd9c02efc17","_id":"rc-tooltip@2.10.0","_shasum":"df9a0b8965e6c52a847d311c4cc1bda20d4b9f48","_from":".","_npmVersion":"2.14.2","_nodeVersion":"4.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"df9a0b8965e6c52a847d311c4cc1bda20d4b9f48","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tooltip/-/rc-tooltip-2.10.0.tgz"},"directories":{}},"2.10.1":{"name":"rc-tooltip","version":"2.10.1","description":"tooltip ui component for react","keywords":["react","react-component","react-tooltip","tooltip"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/tooltip","maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tooltip.git"},"bugs":{"url":"http://github.com/react-component/tooltip/issues"},"licenses":"MIT","config":{"port":8007},"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":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.2","object-assign":"~2.0.0","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"4.x","react":"^0.13.0"},"precommit":["lint"],"dependencies":{"rc-align":"1.x","rc-animate":"1.x","rc-util":"2.x"},"gitHead":"8b75f3766ab57a7e6e6c2698468f7d1d1de2620c","_id":"rc-tooltip@2.10.1","_shasum":"51f943f21646b21b467d855f4e78095e553547a2","_from":".","_npmVersion":"2.14.2","_nodeVersion":"4.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"51f943f21646b21b467d855f4e78095e553547a2","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tooltip/-/rc-tooltip-2.10.1.tgz"},"directories":{}},"3.0.0":{"name":"rc-tooltip","version":"3.0.0","description":"tooltip ui component for react","keywords":["react","react-component","react-tooltip","tooltip"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/tooltip","maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tooltip.git"},"bugs":{"url":"http://github.com/react-component/tooltip/issues"},"licenses":"MIT","config":{"port":8007},"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":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.2","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":{"object-assign":"4.x","rc-align":"1.x","rc-animate":"1.x","rc-util":"2.x"},"gitHead":"de063b6f64756fa4e3f642082d48dd1269f45b13","_id":"rc-tooltip@3.0.0","_shasum":"f852f685eb3c8d3c24049f8deeb2a5ffdd07c355","_from":".","_npmVersion":"2.14.2","_nodeVersion":"4.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"f852f685eb3c8d3c24049f8deeb2a5ffdd07c355","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tooltip/-/rc-tooltip-3.0.0.tgz"},"directories":{}},"3.0.1":{"name":"rc-tooltip","version":"3.0.1","description":"tooltip ui component for react","keywords":["react","react-component","react-tooltip","tooltip"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/tooltip","maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tooltip.git"},"bugs":{"url":"http://github.com/react-component/tooltip/issues"},"licenses":"MIT","config":{"port":8007},"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":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.2","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":{"object-assign":"4.x","rc-align":"1.x","rc-animate":"1.x","rc-util":"2.x"},"gitHead":"3c4a30bccdb026077ec4fc704b69514d8575c0e5","_id":"rc-tooltip@3.0.1","_shasum":"a73907d340249da8f8cb38d524ff872ccfe4ce13","_from":".","_npmVersion":"2.14.2","_nodeVersion":"4.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"a73907d340249da8f8cb38d524ff872ccfe4ce13","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tooltip/-/rc-tooltip-3.0.1.tgz"},"directories":{}},"3.0.2":{"name":"rc-tooltip","version":"3.0.2","description":"tooltip ui component for react","keywords":["react","react-component","react-tooltip","tooltip"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/tooltip","maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tooltip.git"},"bugs":{"url":"http://github.com/react-component/tooltip/issues"},"licenses":"MIT","config":{"port":8007},"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","validate":"npm ls"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.2","precommit-hook-eslint":"3.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":{"object-assign":"4.x","rc-align":"2.x","rc-animate":"2.x","rc-util":"2.x"},"gitHead":"de9f8afb86332a015b197161bd4c15c1f3307705","_id":"rc-tooltip@3.0.2","_shasum":"f411fb65c121045e8f0923c440e6085e0ba75aaf","_from":".","_npmVersion":"2.14.8","_nodeVersion":"4.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"f411fb65c121045e8f0923c440e6085e0ba75aaf","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tooltip/-/rc-tooltip-3.0.2.tgz"},"directories":{}},"3.0.3":{"name":"rc-tooltip","version":"3.0.3","description":"tooltip ui component for react","keywords":["react","react-component","react-tooltip","tooltip"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/tooltip","maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tooltip.git"},"bugs":{"url":"http://github.com/react-component/tooltip/issues"},"licenses":"MIT","config":{"port":8007},"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","validate":"npm ls"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.2","precommit-hook-eslint":"3.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":{"object-assign":"4.x","rc-align":"2.x","rc-animate":"2.x","rc-util":"2.x"},"gitHead":"2a3e923ea57f4ccd3da59ed5033fd920c0e4d0cb","_id":"rc-tooltip@3.0.3","_shasum":"142b8742915f7767042030e5c46d750966083de6","_from":".","_npmVersion":"2.14.8","_nodeVersion":"4.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"142b8742915f7767042030e5c46d750966083de6","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tooltip/-/rc-tooltip-3.0.3.tgz"},"directories":{}},"3.0.4":{"name":"rc-tooltip","version":"3.0.4","description":"tooltip ui component for react","keywords":["react","react-component","react-tooltip","tooltip"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/tooltip","maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tooltip.git"},"bugs":{"url":"http://github.com/react-component/tooltip/issues"},"licenses":"MIT","config":{"port":8007},"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","validate":"npm ls"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.2","precommit-hook-eslint":"3.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":{"object-assign":"4.x","rc-align":"2.x","rc-animate":"2.x","rc-util":"2.x"},"gitHead":"5f1b4049527edef6aeaecd324527deb0b593f7f4","_id":"rc-tooltip@3.0.4","_shasum":"a307758694ea1904e6865b42f27454a3e08956e9","_from":".","_npmVersion":"2.14.8","_nodeVersion":"4.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"a307758694ea1904e6865b42f27454a3e08956e9","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tooltip/-/rc-tooltip-3.0.4.tgz"},"directories":{}},"3.1.0":{"name":"rc-tooltip","version":"3.1.0","description":"tooltip ui component for react","keywords":["react","react-component","react-tooltip","tooltip"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/tooltip","maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tooltip.git"},"bugs":{"url":"http://github.com/react-component/tooltip/issues"},"licenses":"MIT","config":{"port":8007},"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","validate":"npm ls"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.2","precommit-hook-eslint":"3.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-trigger":"1.x"},"gitHead":"ecbc48fb30f2d6056f6cb7ce62ae2e94c74ac2cf","_id":"rc-tooltip@3.1.0","_shasum":"1246210ce6383ebb461a8f8030aac8f3e2a70ce3","_from":".","_npmVersion":"2.14.8","_nodeVersion":"4.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"1246210ce6383ebb461a8f8030aac8f3e2a70ce3","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tooltip/-/rc-tooltip-3.1.0.tgz"},"directories":{}},"3.1.1":{"name":"rc-tooltip","version":"3.1.1","description":"tooltip ui component for react","keywords":["react","react-component","react-tooltip","tooltip"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/tooltip","maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tooltip.git"},"bugs":{"url":"http://github.com/react-component/tooltip/issues"},"licenses":"MIT","config":{"port":8007},"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","validate":"npm ls"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.2","precommit-hook-eslint":"3.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-trigger":"1.x"},"gitHead":"689ae80b00df4712c7e276b6129d044bb3ef0713","_id":"rc-tooltip@3.1.1","_shasum":"e64f4eeaca92993937d8a88e2065adfbfd2d061e","_from":".","_npmVersion":"2.14.8","_nodeVersion":"4.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"e64f4eeaca92993937d8a88e2065adfbfd2d061e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tooltip/-/rc-tooltip-3.1.1.tgz"},"directories":{}},"3.2.0":{"name":"rc-tooltip","version":"3.2.0","description":"tooltip ui component for react","keywords":["react","react-component","react-tooltip","tooltip"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/tooltip","maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tooltip.git"},"bugs":{"url":"http://github.com/react-component/tooltip/issues"},"licenses":"MIT","config":{"port":8007},"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","validate":"npm ls"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.2","precommit-hook-eslint":"3.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-trigger":"1.x"},"gitHead":"fb589aa7f8712142570dc51c0539fe229d7107a5","_id":"rc-tooltip@3.2.0","_shasum":"2daeaa9a589d2a93af63babc22294f5fda834dc4","_from":".","_npmVersion":"2.14.8","_nodeVersion":"4.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"2daeaa9a589d2a93af63babc22294f5fda834dc4","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tooltip/-/rc-tooltip-3.2.0.tgz"},"directories":{}},"3.3.0":{"name":"rc-tooltip","version":"3.3.0","description":"tooltip ui component for react","keywords":["react","react-component","react-tooltip","tooltip"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/tooltip","maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tooltip.git"},"bugs":{"url":"http://github.com/react-component/tooltip/issues"},"licenses":"MIT","config":{"port":8007},"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","validate":"npm ls"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.2","object-assign":"~4.0.1","precommit-hook-eslint":"3.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-trigger":"1.x"},"gitHead":"ef34a26ee4a6bc605a00cd6705ddfa9324888227","_id":"rc-tooltip@3.3.0","_shasum":"f99ec4b0ee8b27f7153abfb15dbb006f5d61ca5d","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"f99ec4b0ee8b27f7153abfb15dbb006f5d61ca5d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tooltip/-/rc-tooltip-3.3.0.tgz"},"directories":{}},"3.3.1":{"name":"rc-tooltip","version":"3.3.1","description":"tooltip ui component for react","keywords":["react","react-component","react-tooltip","tooltip"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/tooltip","maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tooltip.git"},"bugs":{"url":"http://github.com/react-component/tooltip/issues"},"licenses":"MIT","config":{"port":8007},"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","validate":"npm ls"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.2","object-assign":"~4.0.1","precommit-hook-eslint":"3.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-trigger":"1.x"},"gitHead":"4ba394e0aaa1d8ec1c4cf10f0306b6b1de0a0cc1","_id":"rc-tooltip@3.3.1","_shasum":"1b5f051ef506391d34cc8f634cfda80bdcdfd419","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"1b5f051ef506391d34cc8f634cfda80bdcdfd419","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tooltip/-/rc-tooltip-3.3.1.tgz"},"directories":{}},"3.3.2":{"name":"rc-tooltip","version":"3.3.2","description":"tooltip ui component for react","keywords":["react","react-component","react-tooltip","tooltip"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/tooltip","maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tooltip.git"},"bugs":{"url":"http://github.com/react-component/tooltip/issues"},"licenses":"MIT","config":{"port":8007},"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","validate":"npm ls"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.2","object-assign":"~4.0.1","precommit-hook-eslint":"3.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-trigger":"1.x"},"gitHead":"61a3efdfd7b2b18db175ddf41463da2b360c2f6e","_id":"rc-tooltip@3.3.2","_shasum":"f00bc10978c8bbaa928ec6bb6eb5f1958b439e26","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"f00bc10978c8bbaa928ec6bb6eb5f1958b439e26","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tooltip/-/rc-tooltip-3.3.2.tgz"},"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/rc-tooltip-3.3.2.tgz_1456320075973_0.8180865349713713"},"directories":{}},"3.3.3":{"name":"rc-tooltip","version":"3.3.3","description":"React Tooltip","keywords":["react","react-component","react-tooltip","tooltip"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/tooltip","maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tooltip.git"},"bugs":{"url":"http://github.com/react-component/tooltip/issues"},"licenses":"MIT","config":{"port":8007},"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":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.2","object-assign":"~4.0.1","pre-commit":"1.x","rc-tools":"5.x","react":"^0.14.0","react-addons-test-utils":"^0.14.0","react-dom":"^0.14.0"},"pre-commit":["lint"],"dependencies":{"rc-trigger":"1.x"},"gitHead":"cdf61c04273f3d05e25b91ea4b2cef8551d4c047","_id":"rc-tooltip@3.3.3","_shasum":"0b3ba51cdd0690f050c54eb05030e7756829ce45","_from":".","_npmVersion":"2.15.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"0b3ba51cdd0690f050c54eb05030e7756829ce45","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tooltip/-/rc-tooltip-3.3.3.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-tooltip-3.3.3.tgz_1465876374072_0.45789016713388264"},"directories":{}},"3.3.4":{"name":"rc-tooltip","version":"3.3.4","description":"React Tooltip","keywords":["react","react-component","react-tooltip","tooltip"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/tooltip","maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tooltip.git"},"bugs":{"url":"http://github.com/react-component/tooltip/issues"},"licenses":"MIT","config":{"port":8007},"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":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.2","object-assign":"~4.0.1","pre-commit":"1.x","rc-tools":"5.x","react":"^0.14.0","react-addons-test-utils":"^0.14.0","react-dom":"^0.14.0"},"pre-commit":["lint"],"dependencies":{"rc-trigger":"1.x"},"gitHead":"851bd411d490874b8293416de0f5d0940c7135e9","_id":"rc-tooltip@3.3.4","_shasum":"262836ce2b6b374c716afb5cae2b65cf545066df","_from":".","_npmVersion":"2.15.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"262836ce2b6b374c716afb5cae2b65cf545066df","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tooltip/-/rc-tooltip-3.3.4.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/rc-tooltip-3.3.4.tgz_1465876819512_0.9639967496041209"},"directories":{}},"3.3.5":{"name":"rc-tooltip","version":"3.3.5","description":"React Tooltip","keywords":["react","react-component","react-tooltip","tooltip"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/tooltip","maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tooltip.git"},"bugs":{"url":"http://github.com/react-component/tooltip/issues"},"licenses":"MIT","config":{"port":8007},"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":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.2","object-assign":"~4.0.1","pre-commit":"1.x","rc-tools":"5.x","react":"^0.14.0","react-addons-test-utils":"^0.14.0","react-dom":"^0.14.0"},"pre-commit":["lint"],"dependencies":{"rc-trigger":"1.x"},"gitHead":"62c16e1210a23f99a2cc20561486333401d18a01","_id":"rc-tooltip@3.3.5","_shasum":"1ce4addaf288d44904aa1eb0c04914ebe8da38a4","_from":".","_npmVersion":"2.15.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"1ce4addaf288d44904aa1eb0c04914ebe8da38a4","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tooltip/-/rc-tooltip-3.3.5.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-tooltip-3.3.5.tgz_1465877321844_0.9860523217357695"},"directories":{}},"3.4.0":{"name":"rc-tooltip","version":"3.4.0","description":"React Tooltip","keywords":["react","react-component","react-tooltip","tooltip"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/tooltip","maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tooltip.git"},"bugs":{"url":"http://github.com/react-component/tooltip/issues"},"licenses":"MIT","config":{"port":8007},"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":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.2","object-assign":"~4.0.1","pre-commit":"1.x","rc-tools":"5.x","react":"^0.14.0","react-addons-test-utils":"^0.14.0","react-dom":"^0.14.0"},"pre-commit":["lint"],"dependencies":{"rc-trigger":"1.x"},"gitHead":"9e3c23897eea11907ce543be025c8bad8823a2db","_id":"rc-tooltip@3.4.0","_shasum":"835b8ad4b89d864a571d1e16061ee19b51a00844","_from":".","_npmVersion":"3.9.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"835b8ad4b89d864a571d1e16061ee19b51a00844","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tooltip/-/rc-tooltip-3.4.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-tooltip-3.4.0.tgz_1467866041628_0.6161387618631124"},"directories":{}},"3.4.1":{"name":"rc-tooltip","version":"3.4.1","description":"React Tooltip","keywords":["react","react-component","react-tooltip","tooltip"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/tooltip","maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tooltip.git"},"bugs":{"url":"http://github.com/react-component/tooltip/issues"},"licenses":"MIT","config":{"port":8007},"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":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.2","object-assign":"~4.0.1","pre-commit":"1.x","rc-tools":"5.x","react":"^0.14.0","react-addons-test-utils":"^0.14.0","react-dom":"^0.14.0"},"pre-commit":["lint"],"dependencies":{"rc-trigger":"1.x"},"gitHead":"323706d0bd4cbd5068ef7ecac9283d00336aa8d2","_id":"rc-tooltip@3.4.1","_shasum":"c1e5973153344d031319f7a4ab3ecc0684e0917f","_from":".","_npmVersion":"3.9.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"c1e5973153344d031319f7a4ab3ecc0684e0917f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tooltip/-/rc-tooltip-3.4.1.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-tooltip-3.4.1.tgz_1467874453462_0.4155965948011726"},"directories":{}},"3.4.2":{"name":"rc-tooltip","version":"3.4.2","description":"React Tooltip","keywords":["react","react-component","react-tooltip","tooltip"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/tooltip","maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tooltip.git"},"bugs":{"url":"http://github.com/react-component/tooltip/issues"},"licenses":"MIT","config":{"port":8007},"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":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.2","object-assign":"~4.0.1","pre-commit":"1.x","rc-tools":"5.x","react":"^0.14.0","react-addons-test-utils":"^0.14.0","react-dom":"^0.14.0"},"pre-commit":["lint"],"dependencies":{"rc-trigger":"1.x"},"gitHead":"12a26bdc169d9dd9191e05f74dfb58d2a499196d","_id":"rc-tooltip@3.4.2","_shasum":"c5c89c347ed790f7f290ef825d5e24e8fb599166","_from":".","_npmVersion":"3.9.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"c5c89c347ed790f7f290ef825d5e24e8fb599166","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tooltip/-/rc-tooltip-3.4.2.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/rc-tooltip-3.4.2.tgz_1467893602657_0.8513777269981802"},"directories":{}},"3.4.3":{"name":"rc-tooltip","version":"3.4.3","description":"React Tooltip","keywords":["react","react-component","react-tooltip","tooltip"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/tooltip","maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tooltip.git"},"bugs":{"url":"http://github.com/react-component/tooltip/issues"},"license":"MIT","config":{"port":8007},"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","prepublish":"rc-tools run guard","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.2","object-assign":"~4.0.1","pre-commit":"1.x","rc-tools":"5.x","react":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"dependencies":{"prop-types":"^15.5.8","rc-trigger":"1.x"},"gitHead":"c4cf1cc455874155c3981064cf470cbb8ebba372","_id":"rc-tooltip@3.4.3","_shasum":"6ae6ef0eccea39ca2add125bccdb34802c612eec","_from":".","_npmVersion":"4.2.0","_nodeVersion":"6.7.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"6ae6ef0eccea39ca2add125bccdb34802c612eec","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tooltip/-/rc-tooltip-3.4.3.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/rc-tooltip-3.4.3.tgz_1492400464315_0.5018010686617345"},"directories":{}},"3.4.5":{"name":"rc-tooltip","version":"3.4.5","description":"React Tooltip","keywords":["react","react-component","react-tooltip","tooltip"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/tooltip","maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tooltip.git"},"bugs":{"url":"http://github.com/react-component/tooltip/issues"},"license":"MIT","config":{"port":8007},"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","prepublish":"rc-tools run guard","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.2","object-assign":"~4.0.1","pre-commit":"1.x","rc-tools":"5.x","react":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"^6.23.0","prop-types":"^15.5.8","rc-trigger":"1.x"},"gitHead":"18e9c1299abdfc42e8cbd22fea3cec5d16505247","_id":"rc-tooltip@3.4.5","_shasum":"04b17d1e6d821475db36c68b9b5b41c5ad3ff16a","_from":".","_npmVersion":"4.2.0","_nodeVersion":"6.7.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"04b17d1e6d821475db36c68b9b5b41c5ad3ff16a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tooltip/-/rc-tooltip-3.4.5.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/rc-tooltip-3.4.5.tgz_1495594763263_0.5380120193585753"},"directories":{}},"3.4.6":{"name":"rc-tooltip","version":"3.4.6","description":"React Tooltip","keywords":["react","react-component","react-tooltip","tooltip"],"files":["lib","es","assets/*.css"],"main":"lib/index","module":"es/index","homepage":"http://github.com/react-component/tooltip","maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"paranoidjk","email":"hust2012jiangkai@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tooltip.git"},"bugs":{"url":"http://github.com/react-component/tooltip/issues"},"license":"MIT","config":{"port":8007},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","compile":"rc-tools run compile --babel-runtime","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-test run karma","saucelabs":"rc-test run saucelabs","test":"rc-test run test","prepublish":"rc-tools run guard","chrome-test":"rc-test run chrome-test","coverage":"rc-test run coverage"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.2","object-assign":"~4.0.1","pre-commit":"1.x","rc-test":"^6.0.1","rc-tools":"6.x","react":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"^6.23.0","prop-types":"^15.5.8","rc-trigger":"1.x"},"gitHead":"a278059ef90bd8a8f9791485c0a3c9b5b6a5c88a","_id":"rc-tooltip@3.4.6","_shasum":"ed98de2a7b412e527c6bd8a2a97dddf0babd2f21","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.3","_npmUser":{"name":"paranoidjk","email":"hust2012jiangkai@gmail.com"},"dist":{"shasum":"ed98de2a7b412e527c6bd8a2a97dddf0babd2f21","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tooltip/-/rc-tooltip-3.4.6.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/rc-tooltip-3.4.6.tgz_1495769081644_0.7556520116049796"},"directories":{}},"3.4.7":{"name":"rc-tooltip","version":"3.4.7","description":"React Tooltip","keywords":["react","react-component","react-tooltip","tooltip"],"files":["lib","es","assets/*.css"],"main":"lib/index","module":"es/index","homepage":"http://github.com/react-component/tooltip","maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"paranoidjk","email":"hust2012jiangkai@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/tooltip.git"},"bugs":{"url":"http://github.com/react-component/tooltip/issues"},"license":"MIT","config":{"port":8007},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","compile":"rc-tools run compile --babel-runtime","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-test run karma","saucelabs":"rc-test run saucelabs","test":"rc-test run test","prepublish":"rc-tools run guard","chrome-test":"rc-test run chrome-test","coverage":"rc-test run coverage"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.2","object-assign":"~4.0.1","pre-commit":"1.x","rc-test":"^6.0.1","rc-tools":"6.x","react":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"^6.23.0","prop-types":"^15.5.8","rc-trigger":"1.x"},"gitHead":"983b6f2a5e3c8f617d32c7a1c0d4633dae83c755","_id":"rc-tooltip@3.4.7","_npmVersion":"5.0.3","_nodeVersion":"8.1.1","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"integrity":"sha512-v8d8lR5mQTqdddypQNQhZI6WlRBiCtnoK5J62q3pswOqQFF/Tfk5hbEaX/hImw2gKWpWMkyWQn6rb1dJWabjrA==","shasum":"ec6cc39a962de96a9147de08a78fb38f93517ff3","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/rc-tooltip/-/rc-tooltip-3.4.7.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/rc-tooltip-3.4.7.tgz_1499824957788_0.016455835895612836"},"directories":{}}},"name":"rc-tooltip","time":{"modified":"2017-07-25T10:16:36.921Z","created":"2015-04-09T15:12:56.169Z","1.0.0":"2015-04-09T15:12:56.169Z","1.1.0":"2015-05-14T11:20:57.303Z","1.1.1":"2015-05-14T11:30:11.065Z","1.1.2":"2015-06-01T07:48:04.131Z","1.2.0":"2015-06-02T04:20:13.689Z","2.0.0":"2015-06-08T09:54:11.743Z","2.0.1":"2015-06-08T10:09:43.626Z","2.0.2":"2015-06-08T15:11:57.163Z","2.0.3":"2015-06-09T09:45:18.953Z","2.0.4":"2015-06-09T10:07:57.889Z","2.1.0":"2015-06-15T12:28:58.580Z","2.1.1":"2015-06-15T12:55:36.521Z","2.1.2":"2015-06-30T07:44:30.782Z","2.2.0":"2015-06-30T10:52:04.231Z","2.2.1":"2015-06-30T12:02:52.431Z","2.2.2":"2015-06-30T12:15:57.117Z","2.2.3":"2015-06-30T12:20:00.825Z","2.2.4":"2015-07-07T07:22:01.711Z","2.3.0":"2015-07-07T07:55:10.783Z","2.4.0":"2015-07-08T10:59:22.732Z","2.4.1":"2015-07-16T10:46:48.583Z","2.5.0":"2015-07-28T12:22:23.312Z","2.5.1":"2015-08-07T03:50:39.246Z","2.6.0":"2015-08-21T04:54:06.379Z","2.6.1":"2015-08-21T06:48:47.397Z","2.6.2":"2015-08-21T15:27:37.965Z","2.6.3":"2015-08-21T15:31:08.724Z","2.6.4":"2015-08-23T16:11:51.290Z","2.6.5":"2015-08-25T11:14:12.959Z","2.7.0":"2015-08-26T09:01:07.968Z","2.7.1":"2015-09-14T13:47:24.208Z","2.8.0":"2015-09-23T09:47:49.786Z","2.9.0":"2015-10-10T20:19:34.782Z","2.10.0":"2015-10-12T04:44:49.898Z","2.10.1":"2015-10-12T09:23:12.465Z","3.0.0":"2015-10-15T06:44:52.043Z","3.0.1":"2015-10-15T06:46:03.069Z","3.0.2":"2015-10-22T04:16:30.019Z","3.0.3":"2015-10-26T04:28:53.425Z","3.0.4":"2015-10-26T05:48:08.961Z","3.1.0":"2015-11-03T04:47:24.078Z","3.1.1":"2015-11-03T13:03:09.318Z","3.2.0":"2015-11-04T03:38:46.472Z","3.3.0":"2015-12-09T09:38:49.871Z","3.3.1":"2016-01-25T03:35:39.184Z","3.3.2":"2016-02-24T13:21:16.973Z","3.3.3":"2016-06-14T03:52:56.393Z","3.3.4":"2016-06-14T04:00:22.385Z","3.3.5":"2016-06-14T04:08:44.272Z","3.4.0":"2016-07-07T04:34:03.859Z","3.4.1":"2016-07-07T06:54:15.885Z","3.4.2":"2016-07-07T12:13:23.839Z","3.4.3":"2017-04-17T03:41:06.005Z","3.4.5":"2017-05-24T02:59:23.787Z","3.4.6":"2017-05-26T03:24:41.767Z","3.4.7":"2017-07-12T02:02:37.923Z"},"readmeFilename":"README.md","homepage":"http://github.com/react-component/tooltip"}