{"maintainers":[{"email":"hust2012jiangkai@gmail.com","name":"paranoidjk"},{"email":"afc163@gmail.com","name":"afc163"},{"email":"yiminghe@gmail.com","name":"yiminghe"}],"keywords":["react","react-component","react-dialog","dialog","ui"],"dist-tags":{"latest":"6.5.10"},"author":{"name":"yiminghe@gmail.com"},"description":"dialog ui component for react","readme":"# rc-dialog\n---\n\nreact dialog component\n\n[![NPM version][npm-image]][npm-url]\n[![build status][travis-image]][travis-url]\n[![Test coverage][coveralls-image]][coveralls-url]\n[![gemnasium deps][gemnasium-image]][gemnasium-url]\n[![npm download][download-image]][download-url]\n\n[npm-image]: http://img.shields.io/npm/v/rc-dialog.svg?style=flat-square\n[npm-url]: http://npmjs.org/package/rc-dialog\n[travis-image]: https://img.shields.io/travis/react-component/dialog.svg?style=flat-square\n[travis-url]: https://travis-ci.org/react-component/dialog\n[coveralls-image]: https://img.shields.io/coveralls/react-component/dialog.svg?style=flat-square\n[coveralls-url]: https://coveralls.io/r/react-component/dialog?branch=master\n[gemnasium-image]: http://img.shields.io/gemnasium/react-component/dialog.svg?style=flat-square\n[gemnasium-url]: https://gemnasium.com/react-component/dialog\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-dialog.svg?style=flat-square\n[download-url]: https://npmjs.org/package/rc-dialog\n\n## Screenshot\n\n<img src=\"http://gtms04.alicdn.com/tps/i4/TB1dp5lHXXXXXbmXpXXyVug.FXX-664-480.png\" />\n\n## Install\n\n[![rc-dialog](https://nodei.co/npm/rc-dialog.png)](https://npmjs.org/package/rc-dialog)\n\n## Usage\n\n```js\nvar Dialog = require('rc-dialog');\n\nReactDOM.render(\n  <Dialog title={title} onClose={callback1} visible>\n      <p>first dialog</p>\n  </Dialog>\n), document.getElementById('t1'));\n\n// use dialog\n```\n\n## API\n\n### rc-dialog(web)\n\n\n<table class=\"table table-bordered table-striped\">\n    <thead>\n    <tr>\n        <th style=\"width: 100px;\">name</th>\n        <th style=\"width: 50px;\">type</th>\n        <th>default</th>\n        <th>description</th>\n    </tr>\n    </thead>\n    <tbody>\n      <tr>\n          <td>prefixCls</td>\n          <td>String</td>\n          <td>rc-dialog</td>\n          <td>The dialog dom node's prefixCls</td>\n      </tr>\n      <tr>\n          <td>className</td>\n          <td>String</td>\n          <td></td>\n          <td>additional className for dialog</td>\n      </tr>\n      <tr>\n          <td>wrapClassName</td>\n          <td>String</td>\n          <td></td>\n          <td>additional className for dialog wrap</td>\n      </tr>\n      <tr>\n          <td>style</td>\n          <td>Object</td>\n          <td>{}</td>\n          <td>Root style for dialog element.Such as width, height</td>\n      </tr>\n      <tr>\n          <td>zIndex</td>\n          <td>Number</td>\n          <td></td>\n          <td></td>\n      </tr>\n      <tr>\n          <td>bodyStyle</td>\n          <td>Object</td>\n          <td>{}</td>\n          <td>body style for dialog body element.Such as height</td>\n      </tr>\n      <tr>\n          <td>maskStyle</td>\n          <td>Object</td>\n          <td>{}</td>\n          <td>style for mask element.</td>\n      </tr>\n      <tr>\n          <td>visible</td>\n          <td>Boolean</td>\n          <td>false</td>\n          <td>current dialog's visible status</td>\n      </tr>\n      <tr>\n          <td>animation</td>\n          <td>String</td>\n          <td></td>\n          <td>part of dialog animation css class name</td>\n      </tr>\n      <tr>\n          <td>maskAnimation</td>\n          <td>String</td>\n          <td></td>\n          <td>part of dialog's mask animation css class name</td>\n      </tr>\n      <tr>\n          <td>transitionName</td>\n          <td>String</td>\n          <td></td>\n          <td>dialog animation css class name</td>\n      </tr>\n      <tr>\n          <td>maskTransitionName</td>\n          <td>String</td>\n          <td></td>\n          <td>mask animation css class name</td>\n      </tr>\n      <tr>\n          <td>title</td>\n          <td>String|React.Element</td>\n          <td></td>\n          <td>Title of the dialog</td>\n      </tr>\n      <tr>\n          <td>footer</td>\n          <td>React.Element</td>\n          <td></td>\n          <td>footer of the dialog</td>\n      </tr>\n      <tr>\n          <td>closable</td>\n          <td>Boolean</td>\n          <td>true</td>\n          <td>whether show close button</td>\n      </tr>\n      <tr>\n          <td>mask</td>\n          <td>Boolean</td>\n          <td>true</td>\n          <td>whether show mask</td>\n      </tr>\n      <tr>\n          <td>maskClosable</td>\n          <td>Boolean</td>\n          <td>true</td>\n          <td>whether click mask to close</td>\n      </tr>\n    <tr>\n        <td>keyboard</td>\n        <td>Boolean</td>\n        <td>true</td>\n        <td>whether support press esc to close</td>\n    </tr>\n      <tr>\n          <td>mousePosition</td>\n          <td>{x:number,y:number}</td>\n          <td></td>\n          <td>set pageX and pageY of current mouse(it will cause transform origin to be set).</td>\n      </tr>\n      <tr>\n          <td>onClose</td>\n          <td>function()</td>\n          <td></td>\n          <td>called when click close button or mask</td>\n      </tr>\n      <tr>\n          <td>getContainer</td>\n          <td>function(): HTMLElement</td>\n          <td></td>\n          <td>to determine where Dialog will be mounted</td>\n      </tr>\n    </tbody>\n</table>\n\n### rc-dialog/lib/Modal (react-native)\n\n<table class=\"table table-bordered table-striped\">\n    <thead>\n    <tr>\n        <th style=\"width: 100px;\">name</th>\n        <th style=\"width: 50px;\">type</th>\n        <th>default</th>\n        <th>description</th>\n    </tr>\n    </thead>\n    <tbody>\n      <tr>\n          <td>wrapStyle</td>\n          <td></td>\n          <td>{}</td>\n          <td>style for modal wrap</td>\n      </tr>\n      <tr>\n          <td>maskStyle</td>\n          <td></td>\n          <td>{}</td>\n          <td>style for modal mask</td>\n      </tr>\n      <tr>\n          <td>style</td>\n          <td></td>\n          <td>{}</td>\n          <td>style for modal</td>\n      </tr>\n      <tr>\n          <td>animationType</td>\n          <td>none|fade|slide-up|slide-down</td>\n          <td>slide-up</td>\n          <td>animation type for modal content</td>\n      </tr>\n      <tr>\n          <td>animationDuration</td>\n          <td>number</td>\n          <td>300(ms)</td>\n          <td></td>\n      </tr>\n      <tr>\n          <td>visible</td>\n          <td>boolean</td>\n          <td></td>\n          <td></td>\n      </tr>\n      <tr>\n          <td>animateAppear</td>\n          <td>false</td>\n          <td></td>\n          <td>whether animation on first show</td>\n      </tr>\n      <tr>\n          <td>onClose</td>\n          <td>()=>void</td>\n          <td></td>\n          <td>called when close</td>\n      </tr>\n      <tr>\n          <td>onAnimationEnd</td>\n          <td>(visible:boolean)=>void (animationType !== 'none')</td>\n          <td></td>\n          <td>called when animation end</td>\n      </tr>\n    </tbody>\n</table>\n\n## Development\n\n```\nnpm install\nnpm start\n```\n\n## Example\n\nhttp://localhost:8007/examples/\n\nonline example: http://react-component.github.io/dialog/\n\n## react-native\n\n```\n./node_modules/rc-tools run react-native-init\nreact-native run-ios\n```\n\n## Test Case\n\n```\nnpm test\nnpm run chrome-test\n```\n\n## Coverage\n\n```\nnpm run coverage\n```\n\nopen coverage/ dir\n\n\n## License\n\nrc-dialog is released under the MIT license.\n","repository":{"type":"git","url":"git+ssh://git@github.com/react-component/dialog.git"},"users":{"princetoad":true,"mik639":true},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"versions":{"1.0.0":{"name":"rc-dialog","version":"1.0.0","description":"react dialog","keywords":["react","dialog","rc-dialog"],"homepage":"https://github.com/react-component/dialog","author":{"name":"dxq613@gmail.com"},"repository":{"type":"git","url":"https://github.com/react-component/dialog.git"},"bugs":{"url":"https://github.com/react-component/dialog/issues"},"licenses":"MIT","spm":{},"config":{"port":8004},"scripts":{"start":"node --harmony server","publish":"gulp tag","lint":"gulp lint","test":"","browser-test":"mocha-phantomjs http://localhost:$npm_package_config_port/tests/runner.html","browser-test-cover":"mocha-phantomjs -R node_modules/node-jscover/lib/reporters/mocha/console http://localhost:$npm_package_config_port/tests/runner.html?coverage"},"devDependencies":{"es5-shim":"~4.0.5","expect.js":"~0.3.1","gh-changelog":"^1.0.5","gulp":"^3.8.7","gulp-jscs":"^1.1.0","gulp-jshint":"^1.8.4","gulp-jsx":"~0.6.0","gulp-util":"^3.0.1","jquery":"~1.11.1","jshint":"^2.5.5","jshint-stylish":"^0.4.0","koa":"~0.13.0","koa-body":"^0.4.0","koa-jsx":"^1.1.3","koa-modularize":"^3.0.0","koa-mount":"~1.3.0","koa-node-jscover":"^1.0.0","koa-serve-index":"~1.0.1","koa-static":"~1.4.7","mocha":"~2.0.1","modulex":"~1.7.3","node-jscover":"^0.6.8","node-jscover-coveralls":"^1.0.13","precommit-hook":"^1.0.7","react":"~0.12.1","react-tools":"~0.12.1","simulate-dom-event":"^1.0.1","sinon":"1.12.1"},"precommit":["lint"],"browserify-shim":{"react":"global:React","jquery":"global:jQuery"},"browserify":{"transform":[["browserify-jsx"],["browserify-shim"]]},"dependencies":{"browserify-shim":"^3.8.0","browserify-jsx":"^0.1.0"},"gitHead":"59aa93c173f96ae4b8b07e46fa44fccc74faaaf0","_id":"rc-dialog@1.0.0","_shasum":"be2d2e0291cf92dc9cc3de613b43fd86cf66cd0d","_from":".","_npmVersion":"2.0.0","_npmUser":{"name":"dxq613","email":"dxq613@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"}],"dist":{"shasum":"be2d2e0291cf92dc9cc3de613b43fd86cf66cd0d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-1.0.0.tgz"},"directories":{}},"2.0.0":{"name":"rc-dialog","version":"2.0.0","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","maitainers":["dxq613@gmail.com","yiminghe@gmail.com"],"repository":{"type":"git","url":"git@github.com:react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","spm":{"dependencies":{"react":"~0.12.1"}},"config":{"port":8000},"scripts":{"less":"rc-tools run less","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"rc-tools run tag && spm publish && spm doc publish","lint":"rc-tools run lint","test":"","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"async":"^0.9.0","expect.js":"~0.3.1","jquery":"~1.11.1","precommit-hook":"^1.0.7","rc-server":"^1.0.0","rc-tools":"^1.0.1","react":"~0.12.1","sinon":"1.12.1"},"precommit":["lint","less"],"browserify-shim":{"react":"global:React","jquery":"global:jQuery"},"browserify":{"transform":[["browserify-jsx"],["browserify-shim"]]},"dependencies":{"browserify-shim":"^3.8.0","browserify-jsx":"^0.1.0"},"gitHead":"20598ad51a3895cf1fed42e8ac89a6adec819911","_id":"rc-dialog@2.0.0","_shasum":"166f09ffd2aa4b1cdb42c2f228eff55b91bc0e07","_from":".","_npmVersion":"2.1.18","_nodeVersion":"0.11.14","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"166f09ffd2aa4b1cdb42c2f228eff55b91bc0e07","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-2.0.0.tgz"},"directories":{}},"2.0.1":{"name":"rc-dialog","version":"2.0.1","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","maitainers":["dxq613@gmail.com","yiminghe@gmail.com"],"repository":{"type":"git","url":"git@github.com:react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","spm":{"buildArgs":"--global react:window.React","dependencies":{"react":"~0.12.1"}},"config":{"port":8000},"scripts":{"less":"rc-tools run less","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"rc-tools run tag && spm publish && spm doc publish","lint":"rc-tools run lint","test":"","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"async":"^0.9.0","expect.js":"~0.3.1","jquery":"~1.11.1","precommit-hook":"^1.0.7","rc-server":"^1.0.0","rc-tools":"^1.0.1","react":"~0.12.1","sinon":"1.12.1"},"precommit":["lint","less"],"browserify-shim":{"react":"global:React"},"browserify":{"transform":[["browserify-jsx"],["browserify-shim"]]},"dependencies":{"browserify-shim":"^3.8.0","browserify-jsx":"^0.1.0"},"gitHead":"75885952c4331015f99b3d53039f9cf329bde754","_id":"rc-dialog@2.0.1","_shasum":"891a1d7fb436d520be0c226c97fc484e8a14b84c","_from":".","_npmVersion":"2.1.18","_nodeVersion":"0.11.14","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"891a1d7fb436d520be0c226c97fc484e8a14b84c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-2.0.1.tgz"},"directories":{}},"2.0.2":{"name":"rc-dialog","version":"2.0.2","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","maitainers":["dxq613@gmail.com","yiminghe@gmail.com"],"repository":{"type":"git","url":"git@github.com:react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","spm":{"buildArgs":"--global react:window.React","dependencies":{"react":"~0.12.1"}},"config":{"port":8000},"scripts":{"less":"rc-tools run less","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"rc-tools run tag && spm publish && spm doc publish","lint":"rc-tools run lint","test":"","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"async":"^0.9.0","expect.js":"~0.3.1","jquery":"~1.11.1","precommit-hook":"^1.0.7","rc-server":"^1.0.0","rc-tools":"^1.0.1","react":"~0.12.1","sinon":"1.12.1"},"precommit":["lint","less"],"browserify-shim":{"react":"global:React"},"browserify":{"transform":[["browserify-jsx"],["browserify-shim"]]},"dependencies":{"browserify-shim":"^3.8.0","browserify-jsx":"^0.1.0"},"gitHead":"b330cac17f31786d48f4695c616fdfad64ade36f","_id":"rc-dialog@2.0.2","_shasum":"f9768fb08fbeba2d63c7b00e8e439e1f170b89b9","_from":".","_npmVersion":"2.1.18","_nodeVersion":"0.11.14","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"f9768fb08fbeba2d63c7b00e8e439e1f170b89b9","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-2.0.2.tgz"},"directories":{}},"2.1.0":{"name":"rc-dialog","version":"2.1.0","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","maitainers":["dxq613@gmail.com","yiminghe@gmail.com"],"repository":{"type":"git","url":"git@github.com:react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","spm":{"buildArgs":"--global react:window.React","dependencies":{"react":"*"}},"config":{"port":8000},"scripts":{"example":"rm -rf build && webpack -d && rc-tools run jsx2html","less":"rc-tools run less","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"rc-tools run tag && spm publish","lint":"rc-tools run lint","test":"","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"async":"^0.9.0","bootstrap":"^3.3.2","css-loader":"^0.9.1","expect.js":"~0.3.1","file-loader":"^0.8.1","jquery":"^1.11.2","jsx-loader":"^0.12.2","precommit-hook":"^1.0.7","rc-server":"^2.0.0","rc-tools":"^1.1.0","react":"~0.12.1","sinon":"^1.12.2","style-loader":"^0.8.3","url-loader":"^0.5.5","webpack":"~1.5.3"},"precommit":["lint","less"],"gitHead":"1f46af17ecaace1b105acecf7cc7dce0e62943ad","_id":"rc-dialog@2.1.0","_shasum":"d862b99a7e3a4fbb703702dd5e8f2a44219298d8","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"d862b99a7e3a4fbb703702dd5e8f2a44219298d8","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-2.1.0.tgz"},"directories":{}},"3.0.0":{"name":"rc-dialog","version":"3.0.0","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","maitainers":["yiminghe@gmail.com","dxq613@gmail.com"],"repository":{"type":"git","url":"git@github.com:react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","spm":{"buildArgs":"--global react:window.React","dependencies":{"react":"*"}},"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":"rc-tools run tag && spm publish","lint":"rc-tools run lint","test":"","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"async":"^0.9.0","bootstrap":"^3.3.2","expect.js":"~0.3.1","jquery":"^1.11.2","precommit-hook":"^1.0.7","rc-server":"^2.0.0","rc-tools":"2.x","react":"~0.13.0","sinon":"^1.12.2"},"precommit":["lint","less"],"gitHead":"cf229bf1087622ca4e86636497a5a80408e387f0","_id":"rc-dialog@3.0.0","_shasum":"7c15b1c60dc2eb6d4b368a9b4830c7ae103ba449","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"7c15b1c60dc2eb6d4b368a9b4830c7ae103ba449","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-3.0.0.tgz"},"directories":{}},"4.0.0":{"name":"rc-dialog","version":"4.0.0","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","maitainers":["yiminghe@gmail.com","dxq613@gmail.com"],"repository":{"type":"git","url":"git@github.com:react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","spm":{"buildArgs":"--global react:window.React","dependencies":{"react":"*"}},"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":"rc-tools run tag && spm publish","lint":"rc-tools run lint","test":"","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"async":"^0.9.0","bootstrap":"^3.3.2","expect.js":"~0.3.1","jquery":"^1.11.2","precommit-hook":"^1.0.7","rc-server":"^2.0.0","rc-tools":"2.x","react":"~0.13.0","sinon":"^1.12.2"},"precommit":["lint","less"],"dependencies":{"dom-align":"~1.0.3","object-assign":"~2.0.0","rc-util":"~2.0.2"},"gitHead":"ef8c4e0cb8425c8a63a32c09b0316cad7deb8b1d","_id":"rc-dialog@4.0.0","_shasum":"38339b5573bce4f1389f96bb0948f110c72f3189","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"38339b5573bce4f1389f96bb0948f110c72f3189","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-4.0.0.tgz"},"directories":{}},"4.0.1":{"name":"rc-dialog","version":"4.0.1","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","maitainers":["yiminghe@gmail.com","dxq613@gmail.com"],"repository":{"type":"git","url":"git@github.com:react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","spm":{"buildArgs":"--global react:window.React","dependencies":{"react":"*"}},"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":"rc-tools run tag && spm publish","lint":"rc-tools run lint","test":"","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"async":"^0.9.0","bootstrap":"^3.3.2","expect.js":"~0.3.1","jquery":"^1.11.2","precommit-hook":"^1.0.7","rc-server":"^2.0.0","rc-tools":"2.x","react":"~0.13.0","sinon":"^1.12.2"},"precommit":["lint","less"],"dependencies":{"dom-align":"~1.0.3","object-assign":"~2.0.0","rc-util":"~2.0.2"},"gitHead":"759d455e003fdb33ad3c806d39f39f451ed68f2a","_id":"rc-dialog@4.0.1","_shasum":"1c32521ceccc7d7136d9c78c00e225a7cf1ddb11","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"1c32521ceccc7d7136d9c78c00e225a7cf1ddb11","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-4.0.1.tgz"},"directories":{}},"4.0.2":{"name":"rc-dialog","version":"4.0.2","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","maitainers":["yiminghe@gmail.com","dxq613@gmail.com"],"repository":{"type":"git","url":"git@github.com:react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","spm":{"buildArgs":"--global react:window.React","dependencies":{"react":"*"}},"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":"rc-tools run tag && spm publish","lint":"rc-tools run lint","test":"","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"async":"^0.9.0","bootstrap":"^3.3.2","expect.js":"~0.3.1","jquery":"^1.11.2","precommit-hook":"^1.0.7","rc-server":"^2.0.0","rc-tools":"2.x","react":"~0.13.0","sinon":"^1.12.2"},"precommit":["lint","less"],"dependencies":{"dom-align":"~1.0.3","object-assign":"~2.0.0","rc-util":"~2.0.2"},"gitHead":"1855d7594154090df21dfc729f3c1ba4139a2493","_id":"rc-dialog@4.0.2","_shasum":"fc89bc004f85866d5c99bf6499237c0f9aa656e5","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"fc89bc004f85866d5c99bf6499237c0f9aa656e5","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-4.0.2.tgz"},"directories":{}},"4.0.3":{"name":"rc-dialog","version":"4.0.3","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","maitainers":["yiminghe@gmail.com","dxq613@gmail.com"],"repository":{"type":"git","url":"git@github.com:react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","spm":{"buildArgs":"--global react:window.React","dependencies":{"react":"*"}},"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":"rc-tools run tag && spm publish","lint":"rc-tools run lint","test":"","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"async":"^0.9.0","bootstrap":"^3.3.2","expect.js":"~0.3.1","jquery":"^1.11.2","precommit-hook":"^1.0.7","rc-server":"^2.0.0","rc-tools":"2.x","react":"~0.13.0","sinon":"^1.12.2"},"precommit":["lint","less"],"dependencies":{"dom-align":"~1.0.3","object-assign":"~2.0.0","rc-util":"~2.0.2"},"gitHead":"734e076f71793b8ded87cce51672af42124eac8c","_id":"rc-dialog@4.0.3","_shasum":"9a135540390c5d910c269af5752a8fd5cf0288f1","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"9a135540390c5d910c269af5752a8fd5cf0288f1","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-4.0.3.tgz"},"directories":{}},"4.0.4":{"name":"rc-dialog","version":"4.0.4","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","maitainers":["yiminghe@gmail.com","dxq613@gmail.com"],"repository":{"type":"git","url":"git@github.com:react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","spm":{"buildArgs":"--global react:window.React","dependencies":{"react":"*"}},"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":"rc-tools run tag && spm publish","lint":"rc-tools run lint","test":"","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"async":"^0.9.0","bootstrap":"^3.3.2","expect.js":"~0.3.1","jquery":"^1.11.2","precommit-hook":"^1.0.7","rc-server":"^2.0.0","rc-tools":"2.x","react":"~0.13.0","sinon":"^1.12.2"},"precommit":["lint","less"],"dependencies":{"dom-align":"~1.0.3","object-assign":"~2.0.0","rc-util":"~2.0.2"},"gitHead":"2421d72bf3c49d384221896057ceeae23b8b0bda","_id":"rc-dialog@4.0.4","_shasum":"ae834a2907eebabdd853c2fcb66e4d8366332313","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"ae834a2907eebabdd853c2fcb66e4d8366332313","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-4.0.4.tgz"},"directories":{}},"4.0.5":{"name":"rc-dialog","version":"4.0.5","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","maitainers":["yiminghe@gmail.com","dxq613@gmail.com"],"repository":{"type":"git","url":"git@github.com:react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","spm":{"buildArgs":"--global react:window.React","dependencies":{"react":"*"}},"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":"rc-tools run tag && spm publish","lint":"rc-tools run lint","test":"","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"async":"^0.9.0","bootstrap":"^3.3.2","expect.js":"~0.3.1","jquery":"^1.11.2","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.0.3","object-assign":"~2.0.0","rc-util":"~2.0.2"},"gitHead":"b9161a3ebc3cfcd8bdcb7e0a1df6581631381446","_id":"rc-dialog@4.0.5","_shasum":"dc363c1b2efdfeb0d5bdafebf6751114ca749e28","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"dc363c1b2efdfeb0d5bdafebf6751114ca749e28","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-4.0.5.tgz"},"directories":{}},"4.0.6":{"name":"rc-dialog","version":"4.0.6","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","maitainers":["yiminghe@gmail.com","dxq613@gmail.com"],"repository":{"type":"git","url":"git@github.com:react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","spm":{"buildArgs":"--global react:window.React","dependencies":{"react":"*"}},"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":"rc-tools run tag && spm publish","lint":"rc-tools run lint","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"async":"^0.9.0","bootstrap":"^3.3.2","expect.js":"~0.3.1","jquery":"^1.11.2","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.0.3","object-assign":"~2.0.0","rc-util":"~2.0.2"},"gitHead":"3c1b54833921e33aeb1122a01d8d4eb24e18102f","_id":"rc-dialog@4.0.6","_shasum":"358bd854def8f0d80c4d24f94d465049fa60a3c4","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"358bd854def8f0d80c4d24f94d465049fa60a3c4","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-4.0.6.tgz"},"directories":{}},"4.0.7":{"name":"rc-dialog","version":"4.0.7","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","maitainers":["yiminghe@gmail.com","dxq613@gmail.com"],"repository":{"type":"git","url":"git@github.com:react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","main":"./lib/index","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","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"3.x","react":"~0.13.0"},"precommit":["precommit"],"dependencies":{"dom-align":"~1.0.3","object-assign":"~2.0.0","rc-util":"~2.0.2"},"gitHead":"190fd125f446d8f674aba7c7f16751944cf7e7cf","_id":"rc-dialog@4.0.7","_shasum":"0fda998c3d98ab3c61e862743ecd783039bbc73f","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"0fda998c3d98ab3c61e862743ecd783039bbc73f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-4.0.7.tgz"},"directories":{}},"4.1.0":{"name":"rc-dialog","version":"4.1.0","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","maitainers":["yiminghe@gmail.com","dxq613@gmail.com"],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","main":"./lib/index","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","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"3.x","react":"~0.13.0"},"precommit":["precommit"],"dependencies":{"css-animation":"~1.0.1","dom-align":"~1.0.3","object-assign":"~2.0.0","rc-util":"~2.0.2"},"gitHead":"621b6e3caa46a55d5a5026f95df26a41ac4dbbda","_id":"rc-dialog@4.1.0","_shasum":"c576a3c181a2ad57e1c73fd1ff64b980bf78fdb0","_from":".","_npmVersion":"2.11.0","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"c576a3c181a2ad57e1c73fd1ff64b980bf78fdb0","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-4.1.0.tgz"},"directories":{}},"4.1.1":{"name":"rc-dialog","version":"4.1.1","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","maitainers":["yiminghe@gmail.com","dxq613@gmail.com"],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","main":"./lib/index","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","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"3.x","react":"~0.13.0"},"precommit":["precommit"],"dependencies":{"css-animation":"~1.0.1","dom-align":"~1.0.3","object-assign":"~2.0.0","rc-util":"~2.0.2"},"gitHead":"5f5984d3c5e7d65fbbd94d1e882fecd645a571a9","_id":"rc-dialog@4.1.1","_shasum":"621eac8e45d0ed367f23a5fe6a8cd0a68507c6a5","_from":".","_npmVersion":"2.11.0","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"621eac8e45d0ed367f23a5fe6a8cd0a68507c6a5","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-4.1.1.tgz"},"directories":{}},"4.1.2":{"name":"rc-dialog","version":"4.1.2","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","maitainers":["yiminghe@gmail.com","dxq613@gmail.com"],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","main":"./lib/index","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","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"3.x","react":"~0.13.0"},"precommit":["precommit"],"dependencies":{"css-animation":"~1.0.1","dom-align":"~1.0.3","object-assign":"~2.0.0","rc-util":"~2.0.2"},"gitHead":"55c4040e5a2e31d83235ec6b346e1b7376ba1a32","_id":"rc-dialog@4.1.2","_shasum":"2fcc5bef96bdc5162898e046cc19649a169e101d","_from":".","_npmVersion":"2.11.0","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"2fcc5bef96bdc5162898e046cc19649a169e101d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-4.1.2.tgz"},"directories":{}},"4.1.3":{"name":"rc-dialog","version":"4.1.3","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","maitainers":["yiminghe@gmail.com","dxq613@gmail.com"],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","main":"./lib/index","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","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"3.x","react":"~0.13.0"},"precommit":["precommit"],"dependencies":{"css-animation":"~1.0.1","dom-align":"~1.0.3","object-assign":"~2.0.0","rc-util":"~2.0.2"},"gitHead":"f97e09ade6e966ab66c23587a62d13497d2fa1f1","_id":"rc-dialog@4.1.3","_shasum":"2bfae822d316d3ef2dbc4d33c7c3b6ca9d62d0e6","_from":".","_npmVersion":"2.11.0","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"2bfae822d316d3ef2dbc4d33c7c3b6ca9d62d0e6","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-4.1.3.tgz"},"directories":{}},"4.2.0":{"name":"rc-dialog","version":"4.2.0","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","maitainers":["yiminghe@gmail.com","dxq613@gmail.com"],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","main":"./lib/index","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","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"3.x","react":"~0.13.0"},"precommit":["precommit"],"dependencies":{"css-animation":"~1.0.1","dom-align":"~1.0.3","object-assign":"~2.0.0","rc-util":"~2.0.2"},"gitHead":"00527622c13584f6e721af381ce138204c30c447","_id":"rc-dialog@4.2.0","_shasum":"7f78a16e39ab8f22c4b4bc1b1f8ca956058ff118","_from":".","_npmVersion":"2.11.0","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"7f78a16e39ab8f22c4b4bc1b1f8ca956058ff118","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-4.2.0.tgz"},"directories":{}},"4.3.0":{"name":"rc-dialog","version":"4.3.0","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","maitainers":["yiminghe@gmail.com","dxq613@gmail.com"],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","main":"./lib/index","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","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"3.x","react":"~0.13.0"},"precommit":["precommit"],"dependencies":{"css-animation":"~1.0.1","dom-align":"~1.0.3","object-assign":"~2.0.0","rc-util":"~2.0.2"},"gitHead":"254aeba9d161e252b4b073cf0ec6ca69d52344ff","_id":"rc-dialog@4.3.0","_shasum":"5aeedf36e0873c14fa86268fde7c9355407f3fb6","_from":".","_npmVersion":"2.11.0","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"5aeedf36e0873c14fa86268fde7c9355407f3fb6","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-4.3.0.tgz"},"directories":{}},"4.3.1":{"name":"rc-dialog","version":"4.3.1","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","maitainers":["yiminghe@gmail.com","dxq613@gmail.com"],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","main":"./lib/index","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","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"3.x","react":"~0.13.0"},"precommit":["precommit"],"dependencies":{"css-animation":"~1.0.1","dom-align":"~1.0.3","object-assign":"~2.0.0","rc-util":"~2.0.2"},"gitHead":"ca02232eb107a94a84cda7b433176ea25a8857ab","_id":"rc-dialog@4.3.1","_shasum":"bdca27d3afd556850e7f6e9fdc175e13c489654b","_from":".","_npmVersion":"2.11.0","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"bdca27d3afd556850e7f6e9fdc175e13c489654b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-4.3.1.tgz"},"directories":{}},"4.3.2":{"name":"rc-dialog","version":"4.3.2","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","maitainers":["yiminghe@gmail.com","dxq613@gmail.com"],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","main":"./lib/index","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","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"3.x","react":"~0.13.0"},"precommit":["precommit"],"dependencies":{"css-animation":"~1.0.1","dom-align":"~1.0.3","object-assign":"~2.0.0","rc-util":"~2.0.2"},"gitHead":"0e3d0869650756a001e0e75c4440c78f22ac1ce7","_id":"rc-dialog@4.3.2","_shasum":"a70081274d2cb97f3a8deedebcb6ea044c82831e","_from":".","_npmVersion":"2.11.0","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"a70081274d2cb97f3a8deedebcb6ea044c82831e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-4.3.2.tgz"},"directories":{}},"4.3.3":{"name":"rc-dialog","version":"4.3.3","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","maitainers":["yiminghe@gmail.com","dxq613@gmail.com"],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","main":"./lib/index","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","bluebird":"~2.9.30","bootstrap":"^3.3.2","expect.js":"~0.3.1","jquery":"^1.11.2","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"3.x","react":"~0.13.0"},"precommit":["precommit"],"dependencies":{"css-animation":"~1.0.1","dom-align":"~1.0.3","object-assign":"~2.0.0","rc-util":"~2.0.2"},"gitHead":"ea8fe14ec578a89ae4490dd99240f76544126846","_id":"rc-dialog@4.3.3","_shasum":"edd83783795018d191b46dcd74164ede13a334ca","_from":".","_npmVersion":"2.11.0","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"edd83783795018d191b46dcd74164ede13a334ca","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-4.3.3.tgz"},"directories":{}},"4.3.4":{"name":"rc-dialog","version":"4.3.4","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","maitainers":["yiminghe@gmail.com","dxq613@gmail.com"],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","main":"./lib/index","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","bluebird":"~2.9.30","bootstrap":"^3.3.2","expect.js":"~0.3.1","jquery":"^1.11.2","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"3.x","react":"~0.13.0"},"precommit":["precommit"],"dependencies":{"css-animation":"~1.0.1","dom-align":"~1.0.3","object-assign":"~2.0.0","rc-util":"~2.0.2"},"gitHead":"33dd395a2c08d96f52d9ec69d47b447ed673ed58","_id":"rc-dialog@4.3.4","_shasum":"d2828006037762c01ecdf06e5fd9a3a1296c7d41","_from":".","_npmVersion":"2.11.0","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"d2828006037762c01ecdf06e5fd9a3a1296c7d41","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-4.3.4.tgz"},"directories":{}},"4.3.5":{"name":"rc-dialog","version":"4.3.5","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","maitainers":["yiminghe@gmail.com","dxq613@gmail.com"],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","main":"./lib/index","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","bluebird":"~2.9.30","bootstrap":"^3.3.2","expect.js":"~0.3.1","jquery":"^1.11.2","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"3.x","react":"~0.13.0"},"precommit":["precommit"],"dependencies":{"css-animation":"~1.0.1","dom-align":"~1.0.3","object-assign":"~2.0.0","rc-util":"~2.0.2"},"gitHead":"dad6d61edbb6aedd616b9ca8957902e87e0c3262","_id":"rc-dialog@4.3.5","_shasum":"774ccb972c6148d1237b02c01972a735f08b5e32","_from":".","_npmVersion":"2.11.0","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"774ccb972c6148d1237b02c01972a735f08b5e32","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-4.3.5.tgz"},"directories":{}},"4.4.0":{"name":"rc-dialog","version":"4.4.0","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","maitainers":["yiminghe@gmail.com","dxq613@gmail.com"],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","main":"./lib/index","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","bluebird":"~2.9.30","bootstrap":"^3.3.2","expect.js":"~0.3.1","jquery":"^1.11.2","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"3.x","react":"~0.13.0"},"precommit":["precommit"],"dependencies":{"css-animation":"~1.0.1","dom-align":"~1.0.3","object-assign":"~2.0.0","rc-util":"~2.0.2"},"gitHead":"619535b85c2f16254459838dfdbd2bf3e01fc3c3","_id":"rc-dialog@4.4.0","_shasum":"6e94efb1871aa75959538c2b9a2f99122ea5526f","_from":".","_npmVersion":"2.11.0","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"6e94efb1871aa75959538c2b9a2f99122ea5526f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-4.4.0.tgz"},"directories":{}},"4.4.1":{"name":"rc-dialog","version":"4.4.1","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","maitainers":["yiminghe@gmail.com","dxq613@gmail.com"],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","main":"./lib/index","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","bluebird":"~2.9.30","bootstrap":"^3.3.2","expect.js":"~0.3.1","jquery":"^1.11.2","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"3.x","react":"~0.13.0"},"precommit":["precommit"],"dependencies":{"css-animation":"~1.0.1","dom-align":"~1.0.3","object-assign":"~2.0.0","rc-util":"~2.0.2"},"gitHead":"f5654ae8231de6a2475aab7aecf73bafaf21883f","_id":"rc-dialog@4.4.1","_shasum":"fa2615c13fdc7bc7b9bef63aad141e114bbd59d8","_from":".","_npmVersion":"2.11.0","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"fa2615c13fdc7bc7b9bef63aad141e114bbd59d8","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-4.4.1.tgz"},"directories":{}},"4.5.0":{"name":"rc-dialog","version":"4.5.0","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","maitainers":["yiminghe@gmail.com","dxq613@gmail.com"],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","main":"./lib/index","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","bluebird":"~2.9.30","bootstrap":"^3.3.2","expect.js":"~0.3.1","jquery":"^1.11.2","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"3.x","react":"~0.13.0"},"precommit":["precommit"],"dependencies":{"object-assign":"2.x","rc-align":"1.x","rc-animate":"1.x","rc-util":"2.x"},"gitHead":"1647819b200707404ab094a4d3d315b043f6f18e","_id":"rc-dialog@4.5.0","_shasum":"897dbf36276576ed6f7bf066e790fd894fef88b2","_from":".","_npmVersion":"2.11.0","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"897dbf36276576ed6f7bf066e790fd894fef88b2","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-4.5.0.tgz"},"directories":{}},"5.0.0":{"name":"rc-dialog","version":"5.0.0","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","maitainers":["yiminghe@gmail.com","dxq613@gmail.com"],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","files":["lib","assets/*.css"],"main":"./lib/index","config":{"port":8000},"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","bluebird":"~2.9.30","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.13.0"},"precommit":["lint"],"dependencies":{"object-assign":"2.x","rc-align":"1.x","rc-animate":"1.x","rc-util":"2.x"},"gitHead":"bcd1e28b3a2d812d95b516c87e4ea3cefe28d5e4","_id":"rc-dialog@5.0.0","_shasum":"d859737147d732c72d0c7c5ef64e35c90c1f0e1c","_from":".","_npmVersion":"3.2.2","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"d859737147d732c72d0c7c5ef64e35c90c1f0e1c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-5.0.0.tgz"},"directories":{}},"5.0.1":{"name":"rc-dialog","version":"5.0.1","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","maitainers":["yiminghe@gmail.com","dxq613@gmail.com"],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","files":["lib","assets/*.css"],"main":"./lib/index","config":{"port":8000},"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","bluebird":"~2.9.30","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.13.0"},"precommit":["lint"],"dependencies":{"object-assign":"2.x","rc-align":"1.x","rc-animate":"1.x","rc-util":"2.x"},"gitHead":"b694a124144c696437e028c7f5b7f2b0de77f4f0","_id":"rc-dialog@5.0.1","_shasum":"e9d7bacf6caba576bf2958ac1c2c4c269f768c8c","_from":".","_npmVersion":"3.2.2","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"e9d7bacf6caba576bf2958ac1c2c4c269f768c8c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-5.0.1.tgz"},"directories":{}},"5.0.2":{"name":"rc-dialog","version":"5.0.2","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","maitainers":["yiminghe@gmail.com","dxq613@gmail.com"],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","files":["lib","assets/*.css"],"main":"./lib/index","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","bluebird":"~2.9.30","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.13.0"},"precommit":["lint"],"dependencies":{"object-assign":"2.x","rc-align":"1.x","rc-animate":"1.x","rc-util":"2.x"},"gitHead":"b81db1df1ae6866324f101e60a5c21fcea71bef9","_id":"rc-dialog@5.0.2","_shasum":"b563cc4baef592400c1d49b142d46c348974a8a2","_from":".","_npmVersion":"3.2.2","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"b563cc4baef592400c1d49b142d46c348974a8a2","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-5.0.2.tgz"},"directories":{}},"5.0.3":{"name":"rc-dialog","version":"5.0.3","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","maitainers":["yiminghe@gmail.com","dxq613@gmail.com"],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","files":["lib","assets/*.css"],"main":"./lib/index","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","bluebird":"~2.9.30","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.13.0"},"precommit":["lint"],"dependencies":{"object-assign":"2.x","rc-align":"1.x","rc-animate":"1.x","rc-util":"2.x"},"gitHead":"b3487330a22c7445aadbad243ffe01dc3651a125","_id":"rc-dialog@5.0.3","_shasum":"e61f9ab890980783759aa2265bc2ec65e0e9315a","_from":".","_npmVersion":"3.2.2","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"e61f9ab890980783759aa2265bc2ec65e0e9315a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-5.0.3.tgz"},"directories":{}},"5.1.0":{"name":"rc-dialog","version":"5.1.0","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","files":["lib","assets/*.css"],"main":"./lib/index","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"},"devDependencies":{"async":"^0.9.0","bluebird":"~2.9.30","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":"89f2814c254cc1751f173d7845677e36b7f64b05","_id":"rc-dialog@5.1.0","_shasum":"51546eb30eb0a51764b5214c34cab876da94b8e2","_from":".","_npmVersion":"3.3.8","_nodeVersion":"4.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"51546eb30eb0a51764b5214c34cab876da94b8e2","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-5.1.0.tgz"},"directories":{}},"5.1.1":{"name":"rc-dialog","version":"5.1.1","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","files":["lib","assets/*.css"],"main":"./lib/index","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":""},"devDependencies":{"async":"^0.9.0","bluebird":"~2.9.30","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":"f8fed2ac6bfba66e9da2699a5155eb419109a2c2","_id":"rc-dialog@5.1.1","_shasum":"a3b350b041cf2f08b3608625ebb6445b411ede76","_from":".","_npmVersion":"2.14.8","_nodeVersion":"4.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"a3b350b041cf2f08b3608625ebb6445b411ede76","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-5.1.1.tgz"},"directories":{}},"5.2.0":{"name":"rc-dialog","version":"5.2.0","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","files":["lib","assets/*.css"],"main":"./lib/index","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"},"devDependencies":{"async":"^0.9.0","bluebird":"~2.9.30","bootstrap":"^3.3.2","expect.js":"~0.3.1","jquery":"^1.11.2","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"~0.14.0","react-addons-test-utils":"^0.14.0","react-dom":"^0.14.0"},"pre-commit":["lint"],"dependencies":{"object-assign":"4.x","rc-align":"2.x","rc-animate":"2.x","rc-util":"2.x"},"gitHead":"a946d3213fca2cdf6b8b70dcd383000bf7927023","_id":"rc-dialog@5.2.0","_shasum":"bf53cbb41114f7b4055c28e22db82afd40dc24d9","_from":".","_npmVersion":"2.14.8","_nodeVersion":"4.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"bf53cbb41114f7b4055c28e22db82afd40dc24d9","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-5.2.0.tgz"},"directories":{}},"5.2.1":{"name":"rc-dialog","version":"5.2.1","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","files":["lib","assets/*.css"],"main":"./lib/index","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"},"devDependencies":{"async":"^0.9.0","bluebird":"~2.9.30","bootstrap":"^3.3.2","expect.js":"~0.3.1","jquery":"^1.11.2","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"~0.14.0","react-addons-test-utils":"^0.14.0","react-dom":"^0.14.0"},"pre-commit":["lint"],"dependencies":{"object-assign":"4.x","rc-align":"2.x","rc-animate":"2.x","rc-util":"2.x"},"gitHead":"30b7ec6e53669d9dbe702242c15486fa166a0bea","_id":"rc-dialog@5.2.1","_shasum":"b1f7004eb43da37cd7b302db3205da1b26cd798c","_from":".","_npmVersion":"2.14.8","_nodeVersion":"4.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"b1f7004eb43da37cd7b302db3205da1b26cd798c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-5.2.1.tgz"},"directories":{}},"5.2.2":{"name":"rc-dialog","version":"5.2.2","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","files":["lib","assets/*.css"],"main":"./lib/index","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"},"devDependencies":{"async":"^0.9.0","bluebird":"~2.9.30","bootstrap":"^3.3.2","expect.js":"~0.3.1","jquery":"^1.11.2","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"~0.14.0","react-addons-test-utils":"^0.14.0","react-dom":"^0.14.0"},"pre-commit":["lint"],"dependencies":{"object-assign":"4.x","rc-align":"2.x","rc-animate":"2.x","rc-util":"3.x"},"gitHead":"e13d8929405f975cfbd62c398db5581168f90509","_id":"rc-dialog@5.2.2","_shasum":"8c12e47f3e102299b27cf22318291e248ff1ae9f","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"8c12e47f3e102299b27cf22318291e248ff1ae9f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-5.2.2.tgz"},"directories":{}},"5.3.0":{"name":"rc-dialog","version":"5.3.0","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","files":["lib","assets/*.css"],"main":"./lib/index","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"},"devDependencies":{"async":"^0.9.0","bluebird":"~2.9.30","bootstrap":"^3.3.2","expect.js":"~0.3.1","jquery":"^1.11.2","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"~0.14.0","react-addons-test-utils":"^0.14.0","react-dom":"^0.14.0"},"pre-commit":["lint"],"dependencies":{"object-assign":"4.x","rc-align":"2.x","rc-animate":"2.x","rc-util":"3.x"},"gitHead":"583a559eb257a53a33ae625a5551386c593cedba","_id":"rc-dialog@5.3.0","_shasum":"a4dc1fee309743e1d46469eddfd024edd35b3e76","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"a4dc1fee309743e1d46469eddfd024edd35b3e76","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-5.3.0.tgz"},"directories":{}},"5.3.1":{"name":"rc-dialog","version":"5.3.1","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","files":["lib","assets/*.css"],"main":"./lib/index","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"},"devDependencies":{"async":"^0.9.0","bluebird":"~2.9.30","bootstrap":"^3.3.2","expect.js":"~0.3.1","jquery":"^1.11.2","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"~0.14.0","react-addons-test-utils":"^0.14.0","react-dom":"^0.14.0"},"pre-commit":["lint"],"dependencies":{"object-assign":"4.x","rc-align":"2.x","rc-animate":"2.x","rc-util":"3.x"},"gitHead":"00dd5c796f4620d82872362799af309fb17b0d9c","_id":"rc-dialog@5.3.1","_shasum":"2872babfe65eb3e5b8df592c9e50a9020bf7f69e","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"2872babfe65eb3e5b8df592c9e50a9020bf7f69e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-5.3.1.tgz"},"directories":{}},"5.3.2":{"name":"rc-dialog","version":"5.3.2","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","files":["lib","assets/*.css"],"main":"./lib/index","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"},"devDependencies":{"async":"^0.9.0","bluebird":"~2.9.30","bootstrap":"^3.3.2","expect.js":"~0.3.1","jquery":"^1.11.2","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"~0.14.0","react-addons-test-utils":"^0.14.0","react-dom":"^0.14.0"},"pre-commit":["lint"],"dependencies":{"classnames":"2.x","rc-align":"2.x","rc-animate":"2.x","rc-util":"3.x"},"gitHead":"a9af7fad814d6bd466bf6751ebac0e28bdaffb70","_id":"rc-dialog@5.3.2","_shasum":"6d6457f05b22b6aa61c7f87486ced178d5b7e572","_from":".","_npmVersion":"3.5.3","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"6d6457f05b22b6aa61c7f87486ced178d5b7e572","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-5.3.2.tgz"},"directories":{}},"5.3.3":{"name":"rc-dialog","version":"5.3.3","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","files":["lib","assets/*.css"],"main":"./lib/index","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"},"devDependencies":{"async":"^0.9.0","bluebird":"~2.9.30","bootstrap":"^3.3.2","expect.js":"~0.3.1","jquery":"^1.11.2","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"~0.14.0","react-addons-test-utils":"^0.14.0","react-dom":"^0.14.0"},"pre-commit":["lint"],"dependencies":{"classnames":"2.x","rc-align":"2.x","rc-animate":"2.x","rc-util":"3.x"},"gitHead":"9c228714dcadad8b53e9819d27c3ecf1b758e829","_id":"rc-dialog@5.3.3","_shasum":"11b9f9609fb03f321a345283bfb0c51a48356d52","_from":".","_npmVersion":"3.5.3","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"11b9f9609fb03f321a345283bfb0c51a48356d52","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-5.3.3.tgz"},"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/rc-dialog-5.3.3.tgz_1455448538514_0.7376181804575026"},"directories":{}},"5.3.4":{"name":"rc-dialog","version":"5.3.4","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","files":["lib","assets/*.css"],"main":"./lib/index","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"},"devDependencies":{"async":"^0.9.0","bluebird":"~2.9.30","bootstrap":"^3.3.2","expect.js":"~0.3.1","jquery":"^1.11.2","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"~0.14.0","react-addons-test-utils":"^0.14.0","react-dom":"^0.14.0"},"pre-commit":["lint"],"dependencies":{"classnames":"2.x","rc-align":"2.x","rc-animate":"2.x","rc-util":"3.x"},"gitHead":"230d0a86dcce1102425502bbbd6d371b84c65f0e","_id":"rc-dialog@5.3.4","_shasum":"bb31a3d25ee10ee9f87052c4419306113c125361","_from":".","_npmVersion":"3.5.3","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"bb31a3d25ee10ee9f87052c4419306113c125361","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-5.3.4.tgz"},"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/rc-dialog-5.3.4.tgz_1455449499305_0.4963652528822422"},"directories":{}},"5.4.0":{"name":"rc-dialog","version":"5.4.0","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","files":["lib","assets/*.css"],"main":"./lib/index","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"},"devDependencies":{"async":"^0.9.0","bluebird":"~2.9.30","bootstrap":"^3.3.2","expect.js":"~0.3.1","jquery":"^1.11.2","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"~0.14.0","react-addons-test-utils":"^0.14.0","react-dom":"^0.14.0"},"pre-commit":["lint"],"dependencies":{"classnames":"2.x","rc-align":"2.x","rc-animate":"2.x","rc-util":"3.x"},"gitHead":"8213f60e3bc5df4d494d4021d09843200f7c0b3c","_id":"rc-dialog@5.4.0","_shasum":"fefbe8534a81c2a953850e610b53656e0cf6e808","_from":".","_npmVersion":"3.5.3","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"fefbe8534a81c2a953850e610b53656e0cf6e808","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-5.4.0.tgz"},"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/rc-dialog-5.4.0.tgz_1456539538231_0.901423430768773"},"directories":{}},"6.0.0-beta.0":{"name":"rc-dialog","version":"6.0.0-beta.0","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","files":["lib","assets/*.css"],"main":"./lib/index","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","bluebird":"~2.9.30","bootstrap":"^3.3.6","expect.js":"~0.3.1","jquery":"^1.11.2","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-animate":"2.x","rc-util":"3.x"},"gitHead":"702bcd546c1223aa202093bddc73c961add8571c","_id":"rc-dialog@6.0.0-beta.0","_shasum":"d561b0dab8e542f8f79248f10db6504ac90c5692","_from":".","_npmVersion":"3.5.3","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"d561b0dab8e542f8f79248f10db6504ac90c5692","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-6.0.0-beta.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-dialog-6.0.0-beta.0.tgz_1458280543104_0.8638836019672453"},"directories":{}},"6.0.0-beta.1":{"name":"rc-dialog","version":"6.0.0-beta.1","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","files":["lib","assets/*.css"],"main":"./lib/index","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","bluebird":"~2.9.30","bootstrap":"^3.3.6","expect.js":"~0.3.1","jquery":"^1.11.2","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-animate":"2.x","rc-util":"3.x"},"gitHead":"8c5144f1f98cce751da7f251764d79d5439be81f","_id":"rc-dialog@6.0.0-beta.1","_shasum":"773ab1ee12e9e4f1bbda620bf134c7df377e196a","_from":".","_npmVersion":"3.5.3","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"dxq613","email":"dxq613@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"773ab1ee12e9e4f1bbda620bf134c7df377e196a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-6.0.0-beta.1.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-dialog-6.0.0-beta.1.tgz_1458292101378_0.8270306279882789"},"directories":{}},"6.0.0":{"name":"rc-dialog","version":"6.0.0","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","files":["lib","assets/*.css"],"main":"./lib/index","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","bluebird":"~2.9.30","bootstrap":"^3.3.6","expect.js":"~0.3.1","jquery":"^1.11.2","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-animate":"2.x","rc-util":"3.x"},"gitHead":"9f3d42f4adea64f8aaf51878e2e78a37f4426f61","_id":"rc-dialog@6.0.0","_shasum":"c4fbefe1e12ec3b5ee200db0ee913eef36554b8e","_from":".","_npmVersion":"3.5.3","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"c4fbefe1e12ec3b5ee200db0ee913eef36554b8e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-6.0.0.tgz"},"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/rc-dialog-6.0.0.tgz_1458557981983_0.04598503955639899"},"directories":{}},"6.0.1":{"name":"rc-dialog","version":"6.0.1","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","files":["lib","assets/*.css"],"main":"./lib/index","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","bluebird":"~2.9.30","bootstrap":"^3.3.6","expect.js":"~0.3.1","jquery":"^1.11.2","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-animate":"2.x","rc-util":"3.x"},"gitHead":"716d222fb4086e1bc28a2e6bed69db1207a32cfe","_id":"rc-dialog@6.0.1","_shasum":"56e43b65a7460a0545ded80b2c4781eae83b1600","_from":".","_npmVersion":"3.5.3","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"56e43b65a7460a0545ded80b2c4781eae83b1600","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-6.0.1.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-dialog-6.0.1.tgz_1458560924946_0.32587419054470956"},"directories":{}},"6.0.2":{"name":"rc-dialog","version":"6.0.2","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","files":["lib","assets/*.css"],"main":"./lib/index","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","bluebird":"~2.9.30","bootstrap":"^3.3.6","expect.js":"~0.3.1","jquery":"^1.11.2","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-animate":"2.x","rc-util":"3.x"},"gitHead":"5c22b4f29c12c8ba8d7f55b4bb9fc23317b39245","_id":"rc-dialog@6.0.2","_shasum":"39360a16388f8648aec497dfffa47b45cd2a5017","_from":".","_npmVersion":"3.5.3","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"39360a16388f8648aec497dfffa47b45cd2a5017","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-6.0.2.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/rc-dialog-6.0.2.tgz_1462779836802_0.4261425118893385"},"directories":{}},"6.0.3":{"name":"rc-dialog","version":"6.0.3","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","files":["lib","assets/*.css"],"main":"./lib/index","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","bluebird":"~2.9.30","bootstrap":"^3.3.6","expect.js":"~0.3.1","jquery":"^1.11.2","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-animate":"2.x","rc-util":"3.x"},"gitHead":"8320cad8d0809082a84c039dd3015428533002ea","_id":"rc-dialog@6.0.3","_shasum":"3025f4bfe590e436ed9813757cf46ad792b81eda","_from":".","_npmVersion":"3.5.3","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"3025f4bfe590e436ed9813757cf46ad792b81eda","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-6.0.3.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-dialog-6.0.3.tgz_1463487258141_0.14940927643328905"},"directories":{}},"6.0.4":{"name":"rc-dialog","version":"6.0.4","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","files":["lib","assets/*.css"],"main":"./lib/index","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","bluebird":"~2.9.30","bootstrap":"^3.3.6","expect.js":"~0.3.1","jquery":"^1.11.2","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-animate":"2.x","rc-util":"3.x"},"gitHead":"55b523d716f507a3438ac3a821d744da1019c8b0","_id":"rc-dialog@6.0.4","_shasum":"09ac4b83911f7b50004534e72e75f28023b1777c","_from":".","_npmVersion":"3.5.3","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"09ac4b83911f7b50004534e72e75f28023b1777c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-6.0.4.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-dialog-6.0.4.tgz_1463978745682_0.5005830673035234"},"directories":{}},"6.0.5":{"name":"rc-dialog","version":"6.0.5","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","files":["lib","assets/*.css"],"main":"./lib/index","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","bluebird":"~2.9.30","bootstrap":"^3.3.6","expect.js":"~0.3.1","jquery":"^1.11.2","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-animate":"2.x","rc-util":"3.x"},"gitHead":"e08aa82e89e4fd3086292f3f8a9fb7d3fdafb0e0","_id":"rc-dialog@6.0.5","_shasum":"2ce7f648b6e5190dca790053252b6c21634087cf","_from":".","_npmVersion":"3.5.3","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"2ce7f648b6e5190dca790053252b6c21634087cf","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-6.0.5.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-dialog-6.0.5.tgz_1463994378622_0.8986016924027354"},"directories":{}},"6.0.6":{"name":"rc-dialog","version":"6.0.6","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","files":["lib","assets/*.css"],"main":"./lib/index","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","bluebird":"~2.9.30","bootstrap":"^3.3.6","expect.js":"~0.3.1","jquery":"^1.11.2","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-animate":"2.x","rc-util":"3.x"},"gitHead":"16d4a3df2f2665033bb1c9296de1035fdad62172","_id":"rc-dialog@6.0.6","_shasum":"e0570217916e6e50cf6b03c73cc4a460dc719550","_from":".","_npmVersion":"3.5.3","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"e0570217916e6e50cf6b03c73cc4a460dc719550","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-6.0.6.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/rc-dialog-6.0.6.tgz_1464015951775_0.010045551927760243"},"directories":{}},"6.0.7":{"name":"rc-dialog","version":"6.0.7","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","files":["lib","assets/*.css"],"main":"./lib/index","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","bluebird":"~2.9.30","bootstrap":"^3.3.6","expect.js":"~0.3.1","jquery":"^1.11.2","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-animate":"2.x","rc-util":"3.x"},"gitHead":"929968dcb470867e19cb7b2f4bfb9344a51630a4","_id":"rc-dialog@6.0.7","_shasum":"9344f59c0e884fa308b04322d712c412875f455b","_from":".","_npmVersion":"3.5.3","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"9344f59c0e884fa308b04322d712c412875f455b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-6.0.7.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/rc-dialog-6.0.7.tgz_1464321002003_0.5528376642614603"},"directories":{}},"6.0.8":{"name":"rc-dialog","version":"6.0.8","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","files":["lib","assets/*.css"],"main":"./lib/index","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","bluebird":"~2.9.30","bootstrap":"^3.3.6","expect.js":"~0.3.1","jquery":"^1.11.2","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-animate":"2.x","rc-util":"3.x"},"gitHead":"b4306793264080d6810021212b2b24d53589ad49","_id":"rc-dialog@6.0.8","_shasum":"d1a3f5ef7b74eacbf8abff999e7928c47808e79f","_from":".","_npmVersion":"3.5.3","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"d1a3f5ef7b74eacbf8abff999e7928c47808e79f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-6.0.8.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-dialog-6.0.8.tgz_1464683596779_0.5535550538916141"},"directories":{}},"6.1.0":{"name":"rc-dialog","version":"6.1.0","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","files":["lib","assets/*.css"],"main":"./lib/index","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","bluebird":"~2.9.30","bootstrap":"^3.3.6","expect.js":"~0.3.1","jquery":"^1.11.2","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-animate":"2.x","rc-util":"3.x"},"gitHead":"1a750fe37392c161e2b1b2ff9854ed1172abd930","_id":"rc-dialog@6.1.0","_shasum":"3db0c762f61356b654c70ae81049690ba7a3a618","_from":".","_npmVersion":"2.15.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"3db0c762f61356b654c70ae81049690ba7a3a618","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-6.1.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/rc-dialog-6.1.0.tgz_1465788928295_0.6946851308457553"},"directories":{}},"6.1.1":{"name":"rc-dialog","version":"6.1.1","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","files":["lib","assets/*.css"],"main":"./lib/index","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","bluebird":"~2.9.30","bootstrap":"^3.3.6","expect.js":"~0.3.1","jquery":"^1.11.2","pre-commit":"1.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"dependencies":{"rc-animate":"2.x","rc-util":"3.x"},"gitHead":"81c0828b572429bf743c9758aef904d47ee1416c","_id":"rc-dialog@6.1.1","_shasum":"62869db6fdb947385cbc3bbd5b63c8f448a05853","_from":".","_npmVersion":"3.9.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"62869db6fdb947385cbc3bbd5b63c8f448a05853","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-6.1.1.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/rc-dialog-6.1.1.tgz_1467616508615_0.6470143350306898"},"directories":{}},"6.2.0":{"name":"rc-dialog","version":"6.2.0","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","files":["lib","assets/*.css"],"main":"./lib/index","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","bluebird":"~2.9.30","bootstrap":"^3.3.6","expect.js":"~0.3.1","jquery":"^1.11.2","pre-commit":"1.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"dependencies":{"rc-animate":"2.x","rc-util":"^3.3.x"},"gitHead":"0bd721fed1b7d46554ab84c93170acd22ca234a7","_id":"rc-dialog@6.2.0","_shasum":"b0473f8b167eac24f920f396e94eae3d5518a1bb","_from":".","_npmVersion":"3.9.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"b0473f8b167eac24f920f396e94eae3d5518a1bb","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-6.2.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/rc-dialog-6.2.0.tgz_1468846277178_0.6004617270082235"},"directories":{}},"6.2.1":{"name":"rc-dialog","version":"6.2.1","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","files":["lib","assets/*.css"],"main":"./lib/index","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","bluebird":"~2.9.30","bootstrap":"^3.3.6","expect.js":"~0.3.1","jquery":"^1.11.2","pre-commit":"1.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"dependencies":{"rc-animate":"2.x","rc-util":"^3.3.x"},"gitHead":"322d4b69a4adce05219b648e4f6eb59a55403188","_id":"rc-dialog@6.2.1","_shasum":"69345aa92acd3f5929bbb59e2a8390526d705f70","_from":".","_npmVersion":"3.9.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"69345aa92acd3f5929bbb59e2a8390526d705f70","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-6.2.1.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/rc-dialog-6.2.1.tgz_1468909103148_0.8925947593525052"},"directories":{}},"6.2.2":{"name":"rc-dialog","version":"6.2.2","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","files":["lib","assets/*.css"],"main":"./lib/index","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","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"async":"^0.9.0","bluebird":"~2.9.30","bootstrap":"^3.3.6","expect.js":"~0.3.1","jquery":"^1.11.2","pre-commit":"1.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","rc-animate":"2.x","rc-util":"^3.3.x"},"gitHead":"f81d934b9cd20d2421504a8ea84c1458a45b426f","_id":"rc-dialog@6.2.2","_shasum":"d3622442bd5a21ca06fda078900983783bc5f48e","_from":".","_npmVersion":"3.9.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"d3622442bd5a21ca06fda078900983783bc5f48e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-6.2.2.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/rc-dialog-6.2.2.tgz_1470121769585_0.40462092286907136"},"directories":{}},"6.2.3":{"name":"rc-dialog","version":"6.2.3","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","files":["lib","assets/*.css"],"main":"./lib/index","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","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"async":"^0.9.0","bluebird":"~2.9.30","bootstrap":"^3.3.6","expect.js":"~0.3.1","jquery":"^1.11.2","pre-commit":"1.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","rc-animate":"2.x","rc-util":"^3.3.x"},"gitHead":"d214f43f09e7cb548be28a2e97dffcb590632047","_id":"rc-dialog@6.2.3","_shasum":"dd0532d8c0b3937c1546d3a796211d76d7eed5e6","_from":".","_npmVersion":"3.9.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"dd0532d8c0b3937c1546d3a796211d76d7eed5e6","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-6.2.3.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-dialog-6.2.3.tgz_1470628991941_0.6434537428431213"},"directories":{}},"6.3.0":{"name":"rc-dialog","version":"6.3.0","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","files":["lib","assets/*.css"],"main":"./lib/index","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","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"async":"^0.9.0","bluebird":"~2.9.30","bootstrap":"^3.3.6","expect.js":"~0.3.1","jquery":"^1.11.2","pre-commit":"1.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","rc-animate":"2.x","rc-util":"^3.4.1"},"gitHead":"37d5c7c8d0e73c43c2db65550a1bb6ce0579c552","_id":"rc-dialog@6.3.0","_shasum":"05b3dcea24ea80ca52463566e4451fe56356873c","_from":".","_npmVersion":"3.9.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"05b3dcea24ea80ca52463566e4451fe56356873c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-6.3.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-dialog-6.3.0.tgz_1471338335588_0.9854961379896849"},"directories":{}},"6.4.0":{"name":"rc-dialog","version":"6.4.0","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","files":["lib","assets/*.css"],"main":"./lib/DialogWrap","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 --no-js-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","rn-start":"node node_modules/react-native/local-cli/cli.js start"},"devDependencies":{"async":"^0.9.0","bluebird":"~2.9.30","bootstrap":"^3.3.6","expect.js":"~0.3.1","jquery":"^1.11.2","pre-commit":"1.x","rc-tools":"5.x","react":"15.3.x","react-addons-test-utils":"15.3.x","react-dom":"15.3.x","react-native":"0.33.x"},"pre-commit":["lint"],"typings":"./lib/DialogWrap.d.ts","dependencies":{"babel-runtime":"6.x","object-assign":"~4.1.0","rc-animate":"2.x","rc-util":"^3.4.1"},"gitHead":"a4ef1bb0220ff67aadba4b35104e6e9c196be932","_id":"rc-dialog@6.4.0","_shasum":"61ec40e33d278ca5740c3de7e5e0fc2d9af0da2f","_from":".","_npmVersion":"3.9.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"61ec40e33d278ca5740c3de7e5e0fc2d9af0da2f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-6.4.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/rc-dialog-6.4.0.tgz_1474272327693_0.39582342375069857"},"directories":{}},"6.4.1":{"name":"rc-dialog","version":"6.4.1","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","files":["lib","assets/*.css"],"main":"./lib/DialogWrap","config":{"port":8007},"scripts":{"watch-tsc":"rc-tools run watch-tsc","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 --no-js-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","rn-start":"node node_modules/react-native/local-cli/cli.js start"},"devDependencies":{"async":"^0.9.0","bluebird":"~2.9.30","bootstrap":"^3.3.6","expect.js":"~0.3.1","jquery":"^1.11.2","pre-commit":"1.x","rc-tools":"5.x","react":"15.3.x","react-addons-test-utils":"15.3.x","react-dom":"15.3.x","react-native":"0.33.x"},"pre-commit":["lint"],"typings":"./lib/DialogWrap.d.ts","dependencies":{"babel-runtime":"6.x","object-assign":"~4.1.0","rc-animate":"2.x","rc-util":"^3.4.1"},"gitHead":"e97d60df2303a43965ec6811aa430980dfb79707","_id":"rc-dialog@6.4.1","_shasum":"12aa7d5a7a08a3169e9b57b2b60ba36c67700e69","_from":".","_npmVersion":"3.9.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"12aa7d5a7a08a3169e9b57b2b60ba36c67700e69","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-6.4.1.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-dialog-6.4.1.tgz_1474340975045_0.4095707144588232"},"directories":{}},"6.4.2":{"name":"rc-dialog","version":"6.4.2","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","files":["lib","assets/*.css"],"main":"./lib/DialogWrap","config":{"port":8007},"scripts":{"watch-tsc":"rc-tools run watch-tsc","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 --no-js-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","rn-start":"node node_modules/react-native/local-cli/cli.js start"},"devDependencies":{"async":"^0.9.0","bluebird":"~2.9.30","bootstrap":"^3.3.6","expect.js":"~0.3.1","jquery":"^1.11.2","pre-commit":"1.x","rc-tools":"5.x","react":"15.3.x","react-addons-test-utils":"15.3.x","react-dom":"15.3.x","react-native":"0.33.x"},"pre-commit":["lint"],"typings":"./lib/DialogWrap.d.ts","dependencies":{"babel-runtime":"6.x","object-assign":"~4.1.0","rc-animate":"2.x","rc-util":"^3.4.1"},"gitHead":"ec4e98d394ad675a40068ff97d2a14687211de1b","_id":"rc-dialog@6.4.2","_shasum":"5ea4dc554b2cb5394dfbcc5f619fec9035dd1015","_from":".","_npmVersion":"3.9.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"5ea4dc554b2cb5394dfbcc5f619fec9035dd1015","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-6.4.2.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/rc-dialog-6.4.2.tgz_1474352553503_0.10950719565153122"},"directories":{}},"6.4.3":{"name":"rc-dialog","version":"6.4.3","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","files":["lib","assets/*.css"],"main":"./lib/DialogWrap","config":{"port":8007},"scripts":{"watch-tsc":"rc-tools run watch-tsc","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 --no-js-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","rn-start":"node node_modules/react-native/local-cli/cli.js start"},"devDependencies":{"async":"^0.9.0","bluebird":"~2.9.30","bootstrap":"^3.3.6","expect.js":"~0.3.1","jquery":"^1.11.2","pre-commit":"1.x","rc-tools":"5.x","react":"15.3.x","react-addons-test-utils":"15.3.x","react-dom":"15.3.x","react-native":"0.33.0","react-native-index-page":"~0.1.0"},"pre-commit":["lint"],"typings":"./lib/DialogWrap.d.ts","dependencies":{"babel-runtime":"6.x","object-assign":"~4.1.0","rc-animate":"2.x","rc-util":"^3.4.1"},"gitHead":"53cd692d01629c9605754886edc5c2f965112312","_id":"rc-dialog@6.4.3","_shasum":"8196e31dd31b1c369127fa61ad442cf010d4faba","_from":".","_npmVersion":"3.9.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"8196e31dd31b1c369127fa61ad442cf010d4faba","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-6.4.3.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/rc-dialog-6.4.3.tgz_1476244568176_0.7375742052681744"},"directories":{}},"6.4.4":{"name":"rc-dialog","version":"6.4.4","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","files":["lib","assets/*.css"],"main":"./lib/DialogWrap","config":{"port":8007},"scripts":{"watch-tsc":"rc-tools run watch-tsc","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 --no-js-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","rn-start":"node node_modules/react-native/local-cli/cli.js start"},"devDependencies":{"async":"^0.9.0","bluebird":"~2.9.30","bootstrap":"^3.3.6","expect.js":"~0.3.1","jquery":"^1.11.2","pre-commit":"1.x","rc-tools":"5.x","react":"15.3.x","react-addons-test-utils":"15.3.x","react-dom":"15.3.x","react-native":"0.33.0","react-native-index-page":"~0.1.0"},"pre-commit":["lint"],"typings":"./lib/DialogWrap.d.ts","dependencies":{"babel-runtime":"6.x","object-assign":"~4.1.0","rc-animate":"2.x","rc-util":"^3.4.1"},"gitHead":"5fc86235bb1842802def3e88c7b919ed99090870","_id":"rc-dialog@6.4.4","_shasum":"9b90fad932fc19227eda4e4f73e31b4e9e038ebc","_from":".","_npmVersion":"3.9.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"9b90fad932fc19227eda4e4f73e31b4e9e038ebc","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-6.4.4.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-dialog-6.4.4.tgz_1476244761974_0.20740858209319413"},"directories":{}},"6.4.5":{"name":"rc-dialog","version":"6.4.5","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","files":["lib","assets/*.css"],"main":"./lib/DialogWrap","config":{"port":8007},"scripts":{"watch-tsc":"rc-tools run watch-tsc","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 --no-js-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","rn-start":"node node_modules/react-native/local-cli/cli.js start"},"devDependencies":{"@types/mocha":"~2.2.32","@types/react":"~0.14.41","@types/react-dom":"~0.14.18","@types/react-native":"~0.29.36","async":"^0.9.0","bluebird":"~2.9.30","bootstrap":"^3.3.6","expect.js":"~0.3.1","jquery":"^1.11.2","pre-commit":"1.x","rc-tools":"5.x","react":"15.3.x","react-addons-test-utils":"15.3.x","react-dom":"15.3.x","react-native":"0.33.0","react-native-index-page":"~0.1.0"},"pre-commit":["lint"],"typings":"./lib/DialogWrap.d.ts","dependencies":{"babel-runtime":"6.x","object-assign":"~4.1.0","rc-animate":"2.x","rc-util":"^3.4.1"},"gitHead":"983481239b586778abe9182f6709618c223dc2f3","_id":"rc-dialog@6.4.5","_shasum":"82f00b0b21eaf082614c2bf9ba59eb4e4e687116","_from":".","_npmVersion":"3.9.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"82f00b0b21eaf082614c2bf9ba59eb4e4e687116","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-6.4.5.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-dialog-6.4.5.tgz_1476870489055_0.842057118890807"},"directories":{}},"6.5.0":{"name":"rc-dialog","version":"6.5.0","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","files":["lib","assets/*.css"],"main":"./lib/DialogWrap","config":{"port":8007},"scripts":{"watch-tsc":"rc-tools run watch-tsc","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 --no-js-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","rn-start":"node node_modules/react-native/local-cli/cli.js start"},"devDependencies":{"@types/mocha":"~2.2.32","@types/react":"~0.14.41","@types/react-dom":"~0.14.18","@types/react-native":"~0.29.36","async":"^0.9.0","bluebird":"~2.9.30","bootstrap":"^3.3.6","expect.js":"~0.3.1","jquery":"^1.11.2","pre-commit":"1.x","rc-tools":"5.x","react":"15.3.x","react-addons-test-utils":"15.3.x","react-dom":"15.3.x","react-native":"0.34.1","react-native-index-page":"~0.1.0"},"pre-commit":["lint"],"typings":"./lib/DialogWrap.d.ts","dependencies":{"babel-runtime":"6.x","object-assign":"~4.1.0","rc-animate":"2.x","rc-util":"^3.4.1"},"gitHead":"5f91ea7f9d1d34f9e06be9e4a939112242c55fc7","_id":"rc-dialog@6.5.0","_shasum":"44b186870376d46765b81e032e00feb0834de99f","_from":".","_npmVersion":"2.15.9","_nodeVersion":"4.6.1","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"44b186870376d46765b81e032e00feb0834de99f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-6.5.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-dialog-6.5.0.tgz_1477387711953_0.5029197374824435"},"directories":{}},"6.5.1":{"name":"rc-dialog","version":"6.5.1","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","files":["lib","assets/*.css"],"main":"./lib/DialogWrap","config":{"port":8007},"scripts":{"watch-tsc":"rc-tools run watch-tsc","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 --no-js-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","rn-start":"node node_modules/react-native/local-cli/cli.js start"},"devDependencies":{"@types/mocha":"~2.2.32","@types/react":"~0.14.41","@types/react-dom":"~0.14.18","@types/react-native":"~0.29.36","async":"^0.9.0","bluebird":"~2.9.30","bootstrap":"^3.3.6","expect.js":"~0.3.1","jquery":"^1.11.2","pre-commit":"1.x","rc-tools":"5.x","react":"15.3.x","react-addons-test-utils":"15.3.x","react-dom":"15.3.x","react-native":"0.34.1","react-native-index-page":"~0.1.0"},"pre-commit":["lint"],"typings":"./lib/DialogWrap.d.ts","dependencies":{"babel-runtime":"6.x","object-assign":"~4.1.0","rc-animate":"2.x","rc-util":"^3.4.1"},"gitHead":"b2c1efddfe77a2a7e187c116312e2bed589515c0","_id":"rc-dialog@6.5.1","_shasum":"d15945c5e0810d034257acaa9856732800a6a7c7","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"d15945c5e0810d034257acaa9856732800a6a7c7","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-6.5.1.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-dialog-6.5.1.tgz_1479438492252_0.6687300172634423"},"directories":{}},"6.5.2":{"name":"rc-dialog","version":"6.5.2","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","files":["lib","assets/*.css"],"main":"./lib/DialogWrap","config":{"port":8007},"scripts":{"watch-tsc":"rc-tools run watch-tsc","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 --no-js-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","rn-start":"node node_modules/react-native/local-cli/cli.js start"},"devDependencies":{"@types/mocha":"~2.2.32","@types/react":"~0.14.41","@types/react-dom":"~0.14.18","@types/react-native":"~0.29.36","async":"^0.9.0","bluebird":"~2.9.30","bootstrap":"^3.3.6","expect.js":"~0.3.1","jquery":"^1.11.2","pre-commit":"1.x","rc-tools":"5.x","react":"15.3.x","react-addons-test-utils":"15.3.x","react-dom":"15.3.x","react-native":"0.34.1","react-native-index-page":"~0.1.0"},"pre-commit":["lint"],"typings":"./lib/DialogWrap.d.ts","dependencies":{"babel-runtime":"6.x","object-assign":"~4.1.0","rc-animate":"2.x","rc-util":"^3.4.1"},"gitHead":"0cd85e893d93339184794f40779b6d74e148e5e3","_id":"rc-dialog@6.5.2","_shasum":"91d6dc1593fe73eb6005585955f0f2ce74e44788","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"91d6dc1593fe73eb6005585955f0f2ce74e44788","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-6.5.2.tgz"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-dialog-6.5.2.tgz_1480568486957_0.30610402044840157"},"directories":{}},"6.5.3":{"name":"rc-dialog","version":"6.5.3","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","files":["lib","assets/*.css"],"main":"./lib/DialogWrap","config":{"port":8007},"scripts":{"watch-tsc":"rc-tools run watch-tsc","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 --no-js-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","rn-start":"node node_modules/react-native/local-cli/cli.js start"},"devDependencies":{"@types/mocha":"~2.2.32","@types/react":"~0.14.41","@types/react-dom":"~0.14.18","@types/react-native":"~0.29.36","async":"^0.9.0","bluebird":"~2.9.30","bootstrap":"^3.3.6","expect.js":"~0.3.1","jquery":"^1.11.2","pre-commit":"1.x","rc-tools":"5.x","react":"15.3.x","react-addons-test-utils":"15.3.x","react-dom":"15.3.x","react-native":"0.34.1","react-native-index-page":"~0.1.0"},"pre-commit":["lint"],"typings":"./lib/DialogWrap.d.ts","dependencies":{"babel-runtime":"6.x","object-assign":"~4.1.0","rc-animate":"2.x","rc-util":"^3.4.1"},"gitHead":"edd44150f7fb50cd3ecc68497a1bf91e15c3dcae","_id":"rc-dialog@6.5.3","_shasum":"a49dc49dcc46cfe2f59657791d35b0908d230092","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"a49dc49dcc46cfe2f59657791d35b0908d230092","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-6.5.3.tgz"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/rc-dialog-6.5.3.tgz_1480907057677_0.7427657730877399"},"directories":{}},"6.5.4":{"name":"rc-dialog","version":"6.5.4","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","files":["lib","assets/*.css"],"main":"./lib/DialogWrap","config":{"port":8007},"scripts":{"watch-tsc":"rc-tools run watch-tsc","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 --no-js-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","rn-start":"node node_modules/react-native/local-cli/cli.js start"},"devDependencies":{"@types/mocha":"~2.2.32","@types/react":"~0.14.41","@types/react-dom":"~0.14.18","@types/react-native":"~0.29.36","async":"^0.9.0","bluebird":"~2.9.30","bootstrap":"^3.3.6","expect.js":"~0.3.1","jquery":"^1.11.2","pre-commit":"1.x","rc-tools":"5.x","react":"15.3.x","react-addons-test-utils":"15.3.x","react-dom":"15.3.x","react-native":"0.34.1","react-native-index-page":"~0.1.0"},"pre-commit":["lint"],"typings":"./lib/DialogWrap.d.ts","dependencies":{"babel-runtime":"6.x","object-assign":"~4.1.0","rc-animate":"2.x","rc-util":"^3.4.1"},"gitHead":"268f455dc4befcefe5b3b36f10ac943be5fd6a7d","_id":"rc-dialog@6.5.4","_shasum":"7549992c772b593135bb2fd3c486ffb4cc903710","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"7549992c772b593135bb2fd3c486ffb4cc903710","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-6.5.4.tgz"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-dialog-6.5.4.tgz_1481169335389_0.7956208391115069"},"directories":{}},"6.5.5":{"name":"rc-dialog","version":"6.5.5","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","files":["lib","assets/*.css"],"main":"./lib/DialogWrap","config":{"port":8007},"scripts":{"watch-tsc":"rc-tools run watch-tsc","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 --no-js-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","rn-start":"node node_modules/react-native/local-cli/cli.js start"},"devDependencies":{"@types/mocha":"~2.2.32","@types/react":"~0.14.41","@types/react-dom":"~0.14.18","@types/react-native":"~0.29.36","async":"^0.9.0","bluebird":"~2.9.30","bootstrap":"^3.3.6","expect.js":"~0.3.1","jquery":"^1.11.2","pre-commit":"1.x","rc-tools":"5.x","react":"15.3.x","react-addons-test-utils":"15.3.x","react-dom":"15.3.x","react-native":"0.34.1","react-native-index-page":"~0.1.0"},"pre-commit":["lint"],"typings":"./lib/DialogWrap.d.ts","dependencies":{"babel-runtime":"6.x","object-assign":"~4.1.0","rc-animate":"2.x","rc-util":"^3.4.1"},"gitHead":"4bdb0718cd7210e815e7afeb1ac42a03530cef93","_id":"rc-dialog@6.5.5","_shasum":"c14d48f5f985018efb4e554da1690beccc42c07b","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"c14d48f5f985018efb4e554da1690beccc42c07b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-6.5.5.tgz"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/rc-dialog-6.5.5.tgz_1481171771450_0.1994349763263017"},"directories":{}},"6.5.6":{"name":"rc-dialog","version":"6.5.6","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","files":["lib","assets/*.css"],"main":"./lib/DialogWrap","config":{"port":8007},"scripts":{"watch-tsc":"rc-tools run watch-tsc","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 --no-js-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","rn-start":"node node_modules/react-native/local-cli/cli.js start"},"devDependencies":{"@types/mocha":"~2.2.32","@types/react":"~0.14.41","@types/react-dom":"~0.14.18","@types/react-native":"~0.29.36","async":"^0.9.0","bluebird":"~2.9.30","bootstrap":"^3.3.6","expect.js":"~0.3.1","jquery":"^1.11.2","pre-commit":"1.x","rc-tools":"5.x","react":"15.3.x","react-addons-test-utils":"15.3.x","react-dom":"15.3.x","react-native":"0.34.1","react-native-index-page":"~0.1.0"},"pre-commit":["lint"],"typings":"./lib/DialogWrap.d.ts","dependencies":{"babel-runtime":"6.x","object-assign":"~4.1.0","rc-animate":"2.x","rc-util":"^3.4.1"},"gitHead":"4a9cab90602be2c4d79e8e12414ccfba159e1ac0","_id":"rc-dialog@6.5.6","_shasum":"7bf9603139a9c9b474c5354c503c9f9e6181a3d6","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"7bf9603139a9c9b474c5354c503c9f9e6181a3d6","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-6.5.6.tgz"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-dialog-6.5.6.tgz_1485062332723_0.7425735658034682"},"directories":{}},"6.5.7":{"name":"rc-dialog","version":"6.5.7","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","files":["lib","assets/*.css"],"main":"./lib/DialogWrap","config":{"port":8007},"scripts":{"watch-tsc":"rc-tools run watch-tsc","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 --no-js-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","rn-start":"node node_modules/react-native/local-cli/cli.js start"},"devDependencies":{"@types/mocha":"~2.2.32","@types/react":"~0.14.41","@types/react-dom":"~0.14.18","@types/react-native":"~0.29.36","async":"^0.9.0","bluebird":"~2.9.30","bootstrap":"^3.3.6","expect.js":"~0.3.1","jquery":"^1.11.2","pre-commit":"1.x","rc-tools":"5.x","react":"15.3.x","react-addons-test-utils":"15.3.x","react-dom":"15.3.x","react-native":"0.34.1","react-native-index-page":"~0.1.0"},"pre-commit":["lint"],"typings":"./lib/DialogWrap.d.ts","dependencies":{"babel-runtime":"6.x","object-assign":"~4.1.0","rc-animate":"2.x","rc-util":"^4.0.2"},"gitHead":"d2c63c865a25cf306d5f70a8d7938e24ebe29977","_id":"rc-dialog@6.5.7","_shasum":"fd6caf1a0658f851b2ba1595cd10e1bbe6bd1711","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"fd6caf1a0658f851b2ba1595cd10e1bbe6bd1711","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-6.5.7.tgz"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/rc-dialog-6.5.7.tgz_1489374958489_0.3846480045467615"},"directories":{}},"6.5.8":{"name":"rc-dialog","version":"6.5.8","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","files":["lib","assets/*.css"],"main":"./lib/DialogWrap","config":{"port":8007},"scripts":{"watch-tsc":"rc-tools run watch-tsc","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 --no-js-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","rn-start":"node node_modules/react-native/local-cli/cli.js start"},"devDependencies":{"@types/mocha":"~2.2.32","@types/react":"~0.14.41","@types/react-dom":"~0.14.18","@types/react-native":"~0.29.36","async":"^0.9.0","bluebird":"~2.9.30","bootstrap":"^3.3.6","expect.js":"~0.3.1","jquery":"^1.11.2","pre-commit":"1.x","rc-tools":"5.x","react":"15.3.x","react-addons-test-utils":"15.3.x","react-dom":"15.3.x","react-native":"0.34.1","react-native-index-page":"~0.1.0"},"pre-commit":["lint"],"typings":"./lib/DialogWrap.d.ts","dependencies":{"babel-runtime":"6.x","object-assign":"~4.1.0","rc-animate":"2.x","rc-util":"^4.0.2"},"gitHead":"7387e4a21933da1d3382f9bff5c6d2fbac638cbc","_id":"rc-dialog@6.5.8","_shasum":"9aec022122c0220a53591f2dd2e2774584df8397","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"9aec022122c0220a53591f2dd2e2774584df8397","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-6.5.8.tgz"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-dialog-6.5.8.tgz_1490786267166_0.6105088086333126"},"directories":{}},"6.5.9":{"name":"rc-dialog","version":"6.5.9","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","files":["lib","assets/*.css"],"main":"./lib/DialogWrap","config":{"port":8007},"scripts":{"watch-tsc":"rc-tools run watch-tsc","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 --no-js-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","rn-start":"node node_modules/react-native/local-cli/cli.js start"},"devDependencies":{"@types/mocha":"~2.2.32","@types/react":"~0.14.41","@types/react-dom":"~0.14.18","@types/react-native":"~0.29.36","async":"^0.9.0","bluebird":"~2.9.30","bootstrap":"^3.3.6","expect.js":"~0.3.1","jquery":"^1.11.2","pre-commit":"1.x","rc-tools":"5.x","react":"^15.5.0","react-dom":"^15.5.0","react-native":"0.34.1","react-native-index-page":"~0.1.0"},"pre-commit":["lint"],"typings":"./lib/DialogWrap.d.ts","dependencies":{"babel-runtime":"6.x","object-assign":"~4.1.0","rc-animate":"2.x","rc-util":"^4.0.2","create-react-class":"^15.5.2"},"gitHead":"3d6db4e002cfeaf82fed3f4994b0d64ae522007a","_id":"rc-dialog@6.5.9","_shasum":"e0798a5fc2c51f4105915e6a9bcad4111a6cc19d","_from":".","_npmVersion":"4.2.0","_nodeVersion":"6.7.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"e0798a5fc2c51f4105915e6a9bcad4111a6cc19d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-6.5.9.tgz"},"maintainers":[{"email":"afc163@gmail.com","name":"afc163"},{"email":"yiminghe@gmail.com","name":"yiminghe"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-dialog-6.5.9.tgz_1494486549037_0.6025854607578367"},"directories":{}},"6.5.10":{"name":"rc-dialog","version":"6.5.10","description":"dialog ui component for react","keywords":["react","react-component","react-dialog","dialog","ui"],"homepage":"http://github.com/react-component/dialog","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/dialog.git"},"bugs":{"url":"http://github.com/react-component/dialog/issues"},"licenses":"MIT","files":["lib","es","assets/*.css"],"main":"./lib/DialogWrap","module":"./es/DialogWrap","config":{"port":8007},"scripts":{"watch-tsc":"rc-tools run watch-tsc","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 --no-js-lint","karma":"rc-test run karma","saucelabs":"rc-test run saucelabs","test":"rc-test run test","chrome-test":"rc-test run chrome-test","coverage":"rc-test run coverage","rn-start":"node node_modules/react-native/local-cli/cli.js start"},"devDependencies":{"@types/mocha":"~2.2.32","@types/react":"~0.14.41","@types/react-dom":"~0.14.18","@types/react-native":"~0.29.36","async":"^0.9.0","bluebird":"~2.9.30","bootstrap":"^3.3.6","expect.js":"~0.3.1","jquery":"^1.11.2","pre-commit":"1.x","rc-test":"^6.0.1","rc-tools":"6.x","react":"^15.5.0","react-dom":"^15.5.0","react-native":"0.34.1","react-native-index-page":"~0.1.0"},"pre-commit":["lint"],"typings":"./lib/DialogWrap.d.ts","dependencies":{"babel-runtime":"6.x","create-react-class":"^15.5.2","object-assign":"~4.1.0","rc-animate":"2.x","rc-util":"^4.0.4"},"gitHead":"1416456095451456d07d223afcde4bcb08753c8b","_id":"rc-dialog@6.5.10","_shasum":"9ee857d1117a30c8fd65a37fed9f5313b04632a3","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.3","_npmUser":{"name":"paranoidjk","email":"hust2012jiangkai@gmail.com"},"dist":{"shasum":"9ee857d1117a30c8fd65a37fed9f5313b04632a3","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-dialog/-/rc-dialog-6.5.10.tgz"},"maintainers":[{"email":"hust2012jiangkai@gmail.com","name":"paranoidjk"},{"email":"afc163@gmail.com","name":"afc163"},{"email":"yiminghe@gmail.com","name":"yiminghe"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/rc-dialog-6.5.10.tgz_1496310498658_0.8177985139191151"},"directories":{}}},"name":"rc-dialog","time":{"modified":"2017-06-17T14:53:38.422Z","created":"2014-12-12T02:49:43.665Z","1.0.0":"2014-12-12T02:49:43.665Z","2.0.0":"2015-01-14T06:13:45.756Z","2.0.1":"2015-02-05T10:58:47.487Z","2.0.2":"2015-02-05T11:08:48.445Z","2.1.0":"2015-03-05T04:18:05.039Z","3.0.0":"2015-03-17T10:35:17.804Z","4.0.0":"2015-04-28T13:23:48.918Z","4.0.1":"2015-04-28T13:29:24.168Z","4.0.2":"2015-04-28T13:38:04.804Z","4.0.3":"2015-04-28T14:05:56.754Z","4.0.4":"2015-04-28T15:14:09.475Z","4.0.5":"2015-04-30T03:49:19.540Z","4.0.6":"2015-05-25T12:36:25.993Z","4.0.7":"2015-05-28T13:57:35.913Z","4.1.0":"2015-06-04T12:36:38.657Z","4.1.1":"2015-06-04T13:04:17.520Z","4.1.2":"2015-06-04T13:51:20.295Z","4.1.3":"2015-06-08T08:40:00.235Z","4.2.0":"2015-06-09T05:32:24.404Z","4.3.0":"2015-06-10T13:57:24.990Z","4.3.1":"2015-06-12T15:40:27.091Z","4.3.2":"2015-06-15T13:13:22.067Z","4.3.3":"2015-06-25T07:12:51.796Z","4.3.4":"2015-06-25T07:20:24.442Z","4.3.5":"2015-06-26T07:19:14.759Z","4.4.0":"2015-07-03T08:10:43.673Z","4.4.1":"2015-07-10T05:05:16.868Z","4.5.0":"2015-07-28T10:39:25.892Z","5.0.0":"2015-08-17T15:06:37.958Z","5.0.1":"2015-08-17T15:07:21.658Z","5.0.2":"2015-08-23T16:18:34.320Z","5.0.3":"2015-08-26T03:33:19.955Z","5.1.0":"2015-10-20T09:11:42.604Z","5.1.1":"2015-10-27T14:14:06.036Z","5.2.0":"2015-11-04T14:45:53.851Z","5.2.1":"2015-11-04T15:48:28.859Z","5.2.2":"2015-11-16T04:24:07.111Z","5.3.0":"2015-11-23T03:26:27.182Z","5.3.1":"2015-11-25T10:01:35.919Z","5.3.2":"2016-01-28T03:24:56.293Z","5.3.3":"2016-02-14T11:15:40.348Z","5.3.4":"2016-02-14T11:31:41.361Z","5.4.0":"2016-02-27T02:19:00.938Z","6.0.0-beta.0":"2016-03-18T05:55:45.304Z","6.0.0-beta.1":"2016-03-18T09:08:23.844Z","6.0.0":"2016-03-21T10:59:42.443Z","6.0.1":"2016-03-21T11:48:45.381Z","6.0.2":"2016-05-09T07:43:59.103Z","6.0.3":"2016-05-17T12:14:18.645Z","6.0.4":"2016-05-23T04:45:46.079Z","6.0.5":"2016-05-23T09:06:19.023Z","6.0.6":"2016-05-23T15:05:52.854Z","6.0.7":"2016-05-27T03:50:03.960Z","6.0.8":"2016-05-31T08:33:17.284Z","6.1.0":"2016-06-13T03:35:31.243Z","6.1.1":"2016-07-04T07:15:10.782Z","6.2.0":"2016-07-18T12:51:18.298Z","6.2.1":"2016-07-19T06:18:24.212Z","6.2.2":"2016-08-02T07:09:30.447Z","6.2.3":"2016-08-08T04:03:13.729Z","6.3.0":"2016-08-16T09:05:37.141Z","6.4.0":"2016-09-19T08:05:29.759Z","6.4.1":"2016-09-20T03:09:37.145Z","6.4.2":"2016-09-20T06:22:35.645Z","6.4.3":"2016-10-12T03:56:08.943Z","6.4.4":"2016-10-12T03:59:23.832Z","6.4.5":"2016-10-19T09:48:10.645Z","6.5.0":"2016-10-25T09:28:34.222Z","6.5.1":"2016-11-18T03:08:14.430Z","6.5.2":"2016-12-01T05:01:28.884Z","6.5.3":"2016-12-05T03:04:18.473Z","6.5.4":"2016-12-08T03:55:37.317Z","6.5.5":"2016-12-08T04:36:12.121Z","6.5.6":"2017-01-22T05:18:52.972Z","6.5.7":"2017-03-13T03:16:00.369Z","6.5.8":"2017-03-29T11:17:47.448Z","6.5.9":"2017-05-11T07:09:09.277Z","6.5.10":"2017-06-01T09:48:18.737Z"},"readmeFilename":"README.md","homepage":"http://github.com/react-component/dialog"}