{"_id":"rodal","_rev":"60-38ff22ed94e6d4b6947db32c11871e3c","name":"rodal","time":{"modified":"2023-07-17T00:50:12.252Z","created":"2015-08-31T11:36:40.624Z","1.0.0":"2015-08-31T11:36:40.624Z","1.0.1":"2015-08-31T11:41:55.460Z","1.0.2":"2015-08-31T11:50:56.927Z","1.0.3":"2015-08-31T11:53:11.045Z","1.0.4":"2015-08-31T11:58:06.629Z","1.0.5":"2015-08-31T13:51:25.313Z","1.0.6":"2015-09-01T02:34:08.545Z","1.0.7":"2015-09-01T07:41:09.548Z","1.0.8":"2015-09-02T02:15:04.654Z","1.0.9":"2015-09-03T02:11:41.742Z","1.1.0":"2015-09-05T12:11:53.082Z","1.1.1":"2015-10-13T00:44:27.051Z","1.1.2":"2015-10-26T09:49:38.438Z","1.2.0":"2015-12-03T09:44:47.870Z","1.2.1":"2015-12-03T09:45:43.298Z","1.2.2":"2015-12-03T09:46:36.882Z","1.2.3":"2015-12-03T12:55:01.844Z","1.2.4":"2015-12-03T13:22:05.510Z","1.2.5":"2015-12-03T13:23:06.911Z","1.2.6":"2015-12-03T15:30:54.851Z","1.2.7":"2016-04-07T04:58:11.866Z","1.2.8":"2016-04-07T05:03:28.650Z","1.2.9":"2016-04-07T05:10:59.788Z","1.2.10":"2016-04-16T13:56:56.588Z","1.3.0":"2016-04-22T02:54:42.808Z","1.3.1":"2016-08-05T10:44:45.572Z","1.3.2":"2016-08-31T10:09:07.519Z","1.3.3":"2016-09-12T10:28:26.652Z","1.3.4":"2016-10-19T09:14:43.746Z","1.3.5":"2016-10-31T12:11:50.528Z","1.4.0":"2017-02-09T14:35:57.566Z","1.4.1":"2017-03-17T02:13:29.089Z","1.5.0":"2017-04-10T09:02:31.659Z","1.5.1":"2017-05-16T02:32:59.690Z","1.5.2":"2017-06-12T12:21:20.669Z","1.5.3":"2017-07-06T02:14:02.881Z","1.5.4":"2017-07-06T02:19:12.589Z","1.5.5":"2017-09-01T01:55:18.802Z","1.5.6":"2017-10-08T02:04:31.494Z","1.6.0":"2017-10-17T01:56:58.947Z","1.6.1":"2017-10-24T04:56:12.475Z","1.6.2":"2017-12-08T01:40:45.078Z","1.6.3":"2017-12-09T03:25:36.085Z","1.7.0":"2019-10-27T01:35:49.531Z","1.8.0":"2020-02-04T08:05:51.849Z","1.8.1":"2020-02-11T03:12:20.713Z","1.8.2":"2022-01-20T03:33:45.355Z","1.8.3":"2022-01-30T03:17:25.296Z","2.0.0":"2022-09-06T11:49:00.007Z","2.0.1":"2022-12-10T12:08:44.591Z","2.1.0":"2023-07-17T00:50:12.093Z"},"maintainers":[{"name":"chenjiahan","email":"416417567@163.com"}],"dist-tags":{"latest":"2.1.0"},"description":"A React modal with animations.","readme":"# Rodal [![Build Status](https://img.shields.io/travis/chenjiahan/rodal.svg?style=flat-square)](https://travis-ci.org/chenjiahan/rodal) [![NPM downloads](http://img.shields.io/npm/dm/rodal.svg?style=flat-square)](https://npmjs.org/package/rodal)\n\nA React modal with animations.  \n[Example](https://chenjiahan.github.io/rodal/)\n\n## Installation\n\n```bash\n# React 17 or 18\nnpm i rodal --save\n\n# React 15 or 16, install rodal v1\nnpm i rodal@1 --save\n```\n\n## Usage\n\n```javascript\nimport React from 'react';\nimport Rodal from 'rodal';\n\n// include styles\nimport 'rodal/lib/rodal.css';\n\nclass App extends React.Component {\n  constructor(props) {\n    super(props);\n    this.state = { visible: false };\n  }\n\n  show() {\n    this.setState({ visible: true });\n  }\n\n  hide() {\n    this.setState({ visible: false });\n  }\n\n  render() {\n    return (\n      <div>\n        <button onClick={this.show.bind(this)}>show</button>\n\n        <Rodal visible={this.state.visible} onClose={this.hide.bind(this)}>\n          <div>Content</div>\n        </Rodal>\n      </div>\n    );\n  }\n}\n```\n\n## Props\n\n| Property         | Type   | Default | Description                                          |\n| ---------------- | ------ | ------- | ---------------------------------------------------- |\n| width            | number | 400     | width of dialog                                      |\n| height           | number | 240     | height of dialog                                     |\n| measure          | string | px      | measure of width and height                          |\n| onClose          | func   | /       | handler called onClose of modal                      |\n| onAnimationEnd   | func   | /       | handler called onEnd of animation                    |\n| visible          | bool   | false   | whether to show dialog                               |\n| showMask         | bool   | true    | whether to show mask                                 |\n| closeOnEsc       | bool   | false   | whether close dialog when esc pressed                |\n| closeMaskOnClick | bool   | true    | whether close dialog when mask clicked               |\n| showCloseButton  | bool   | true    | whether to show close button                         |\n| animation        | string | zoom    | animation type                                       |\n| enterAnimation   | string | /       | enter animation type (higher order than 'animation') |\n| leaveAnimation   | string |         | leave animation type (higher order than 'animation') |\n| duration         | number | 300     | animation duration                                   |\n| className        | string | /       | className for the container                          |\n| customStyles     | object | /       | custom styles                                        |\n| customMaskStyles | object | /       | custom mask styles                                   |\n| id               | string | /       | id for dialog                                        |\n\n## Animation Types\n\n- zoom\n- fade\n- flip\n- door\n- rotate\n- slideUp\n- slideDown\n- slideLeft\n- slideRight\n\n## Other\n\n[Vue version](https://github.com/chenjiahan/vodal)\n","versions":{"1.0.2":{"name":"rodal","version":"1.0.2","description":"A React modal conponent","main":"src/rodal.js","directories":{"example":"example"},"dependencies":{"babel-core":"^5.8.23","css-loader":"^0.16.0","autoprefixer-loader":"^2.0.0","babel-loader":"^5.3.2","sass-loader":"^2.0.1","node-sass":"^3.2.0","react":"^0.13.3","style-loader":"^0.12.3","webpack":"^1.12.0"},"devDependencies":{},"scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/chenjiahan/react-dialog.git"},"keywords":["react","modal"],"author":{"name":"chenjiahan"},"license":"ISC","bugs":{"url":"https://github.com/chenjiahan/react-dialog/issues"},"homepage":"https://github.com/chenjiahan/react-dialog#readme","gitHead":"9ce65c26d636f05beab4e08f8c3c2dea327abf15","_id":"rodal@1.0.2","_shasum":"738886debde64c27764eef61c9f6bd7c1b0f7c69","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"chenjiahan","email":"416417567@163.com"},"dist":{"shasum":"738886debde64c27764eef61c9f6bd7c1b0f7c69","tarball":"https://registry.npmjs.org/rodal/-/rodal-1.0.2.tgz","integrity":"sha512-gBU8ByVsgzrKucxiq4tNzC2QhLEuTq9yYZtng6sEDNlkfA5o34P9pgkUMIlKUGwHDSTwxWa7y83AvFYgRLHACw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCTJfRrT0oRSLdrf4Akwx5bI+GAUCUSm219rYViE7lqowIgTu5lqoQ/KWjG1q9Hxte65Lh6FFjW9q2HEa7JJrFdOBE="}]},"maintainers":[{"name":"chenjiahan","email":"416417567@163.com"}]},"1.0.3":{"name":"rodal","version":"1.0.3","description":"A React modal conponent","main":"src/rodal.js","directories":{"example":"example"},"dependencies":{"babel-core":"^5.8.23","css-loader":"^0.16.0","autoprefixer-loader":"^2.0.0","babel-loader":"^5.3.2","sass-loader":"^2.0.1","node-sass":"^3.2.0","react":"^0.13.3","style-loader":"^0.12.3","webpack":"^1.12.0"},"devDependencies":{},"scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/chenjiahan/react-dialog.git"},"keywords":["react","modal"],"author":{"name":"chenjiahan"},"license":"ISC","bugs":{"url":"https://github.com/chenjiahan/react-dialog/issues"},"homepage":"https://github.com/chenjiahan/react-dialog#readme","gitHead":"9ce65c26d636f05beab4e08f8c3c2dea327abf15","_id":"rodal@1.0.3","_shasum":"7f07c382b03e98cdf143aa0d623a81c074f9785e","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"chenjiahan","email":"416417567@163.com"},"dist":{"shasum":"7f07c382b03e98cdf143aa0d623a81c074f9785e","tarball":"https://registry.npmjs.org/rodal/-/rodal-1.0.3.tgz","integrity":"sha512-YHGpT4DK3+Gp1mheS5YyvG/uHFVCDc+dxCYcJweK4EqoZM73/p4SaXkber6FMGkCtwsPnLt4yDZ38wVK58F3fw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBxNBlbqTzN/PNKeouseb67klndHp3QMQdR26JrIKPwLAiEAu7J+HCVoV2sQ1azPKe+Ddy518NnjLjopIovGgdKJdBQ="}]},"maintainers":[{"name":"chenjiahan","email":"416417567@163.com"}]},"1.0.4":{"name":"rodal","version":"1.0.4","description":"A React modal conponent","main":"src/rodal.js","directories":{"example":"example"},"dependencies":{"babel-core":"^5.8.23","react":"^0.13.3"},"devDependencies":{},"scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/chenjiahan/react-dialog.git"},"keywords":["react","modal"],"author":{"name":"chenjiahan"},"license":"ISC","bugs":{"url":"https://github.com/chenjiahan/react-dialog/issues"},"homepage":"https://github.com/chenjiahan/react-dialog#readme","gitHead":"9ce65c26d636f05beab4e08f8c3c2dea327abf15","_id":"rodal@1.0.4","_shasum":"1f54a7bbd5085435635bca0efa0b5b1f0e0526b2","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"chenjiahan","email":"416417567@163.com"},"dist":{"shasum":"1f54a7bbd5085435635bca0efa0b5b1f0e0526b2","tarball":"https://registry.npmjs.org/rodal/-/rodal-1.0.4.tgz","integrity":"sha512-SODw6Rvws2b0iozFInEPL95mPl1D0hj4wkjw0k9+0NZxBp1PgNDHf7q6Z4ynA/oznY/VDpb1GPB/hwqOPsY0aA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD6nIUdBpS34puWuhGC1nwLMGFu8hn6jW6dCUT+TvyzIgIgQfVtAakkdEnPf+d3naPgQICMPxLhTZrillGZNjpZ3X8="}]},"maintainers":[{"name":"chenjiahan","email":"416417567@163.com"}]},"1.0.5":{"name":"rodal","version":"1.0.5","description":"A React modal with animations.","main":"src/rodal.js","directories":{"example":"example"},"dependencies":{"babel-core":"^5.8.23","react":"^0.13.3"},"devDependencies":{},"scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/chenjiahan/rodal.git"},"keywords":["react","modal","animation"],"author":{"name":"chenjiahan"},"license":"ISC","bugs":{"url":"https://github.com/chenjiahan/rodal/issues"},"homepage":"https://github.com/chenjiahan/rodal#readme","gitHead":"fdc7ed85837e26d394c775ed855c2c959c5b0062","_id":"rodal@1.0.5","_shasum":"602a7c02afc01859c325e031d88c545d6bc6e34e","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"chenjiahan","email":"416417567@163.com"},"dist":{"shasum":"602a7c02afc01859c325e031d88c545d6bc6e34e","tarball":"https://registry.npmjs.org/rodal/-/rodal-1.0.5.tgz","integrity":"sha512-jdKCSjcvOJQ9U1go4zbp5djOx4m6bFtZY34+Ev+9jWaMGyoSwk/ZUT2GGcvlUuuyIbS5UU9E0KI5QEZ08jNVvg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD0BcV/b7hmMUomSa7HodPy1fuzYOh/PXXUZ1Mt0rCYWAIgTlP7dqpuXOLFGqsNkCZkdSyOMGwbIjTsYRq1klwNeZI="}]},"maintainers":[{"name":"chenjiahan","email":"416417567@163.com"}]},"1.0.6":{"name":"rodal","version":"1.0.6","description":"A React modal with animations.","main":"src/rodal.js","directories":{"example":"example"},"dependencies":{"babel-core":"^5.8.23","react":"^0.13.3"},"devDependencies":{},"scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/chenjiahan/rodal.git"},"keywords":["react","modal","animation"],"author":{"name":"chenjiahan"},"license":"ISC","bugs":{"url":"https://github.com/chenjiahan/rodal/issues"},"homepage":"https://github.com/chenjiahan/rodal#readme","gitHead":"7aaebeef2a9914b26bff7bee493db5f33925d6f1","_id":"rodal@1.0.6","_shasum":"50f00a88ce7d3910219ad7c8d1baf999f3c83c4b","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"chenjiahan","email":"416417567@163.com"},"dist":{"shasum":"50f00a88ce7d3910219ad7c8d1baf999f3c83c4b","tarball":"https://registry.npmjs.org/rodal/-/rodal-1.0.6.tgz","integrity":"sha512-1H/H+rHO5Hn3YnlN1T32sr6c6PDoFqvB1uEXMYCssUjko0nMdbAqFKAZ1X0u43/lLHvOUdEJmpgxPXQeh7LwMA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCa/e0CgyLjpYaK3h8rUB87XA89uFC4Yvyeq6zudKGoowIhAPftq/bR/MoHhNITH4/aGcLwCNGPMrrJ+YJBeCsRZcJW"}]},"maintainers":[{"name":"chenjiahan","email":"416417567@163.com"}]},"1.0.7":{"name":"rodal","version":"1.0.7","description":"A React modal with animations.","main":"src/rodal.js","directories":{"example":"example"},"dependencies":{"babel-core":"^5.8.23","react":"^0.13.3"},"devDependencies":{},"scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/chenjiahan/rodal.git"},"keywords":["react","modal","animation"],"author":{"name":"chenjiahan"},"license":"ISC","bugs":{"url":"https://github.com/chenjiahan/rodal/issues"},"homepage":"https://github.com/chenjiahan/rodal#readme","gitHead":"7aaebeef2a9914b26bff7bee493db5f33925d6f1","_id":"rodal@1.0.7","_shasum":"c6ec699cfe8016eb7aab16901cbb5abe65af5a99","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"chenjiahan","email":"416417567@163.com"},"dist":{"shasum":"c6ec699cfe8016eb7aab16901cbb5abe65af5a99","tarball":"https://registry.npmjs.org/rodal/-/rodal-1.0.7.tgz","integrity":"sha512-/W0qLEAMhA6VcKGUE9wHEWtR6fok6YACNcA3jB24NSsRa5S5Of5X2DrGdp+ou2AG2cBncE1K9JNwdYySvikFXQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCxkLIy94sOfelkO53pXX6rsnLyxTy5yrMsVwTzE7TnoAIgHbYs29o2cWssqDp0093d4NBSRBMEXXgkfgVAscKsssE="}]},"maintainers":[{"name":"chenjiahan","email":"416417567@163.com"}]},"1.0.8":{"name":"rodal","version":"1.0.8","description":"A React modal with animations.","main":"dist/rodal.js","directories":{"example":"example"},"dependencies":{"react":"^0.13.3"},"devDependencies":{},"scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/chenjiahan/rodal.git"},"keywords":["react","modal","animation"],"author":{"name":"chenjiahan"},"license":"ISC","bugs":{"url":"https://github.com/chenjiahan/rodal/issues"},"homepage":"https://github.com/chenjiahan/rodal#readme","gitHead":"048048525a89808fe1914104da9e3e59ce45e794","_id":"rodal@1.0.8","_shasum":"a53494ad42f23995c92d78d920da5837a693b5d6","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"chenjiahan","email":"416417567@163.com"},"dist":{"shasum":"a53494ad42f23995c92d78d920da5837a693b5d6","tarball":"https://registry.npmjs.org/rodal/-/rodal-1.0.8.tgz","integrity":"sha512-FmSpmpc9072390zEeNnSqpIMTXripngpLvhOOcD0vFQVqZJTaS4hwzCWVxme8oiMCeAceeMW+zyNAZpA9Rja2g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFyegobGHUce0bSDXh7cpBO5iw0kyPBbye/yv6GTKUsaAiEAj2d4HTRnESQJW49swZkaKYRRP8Im11xFH3ZsDAbn/78="}]},"maintainers":[{"name":"chenjiahan","email":"416417567@163.com"}]},"1.0.9":{"name":"rodal","version":"1.0.9","description":"A React modal with animations.","main":"dist/rodal.js","directories":{"example":"example"},"dependencies":{"react":"^0.13.3"},"devDependencies":{},"scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/chenjiahan/rodal.git"},"keywords":["react","modal","animation"],"author":{"name":"chenjiahan"},"license":"ISC","bugs":{"url":"https://github.com/chenjiahan/rodal/issues"},"homepage":"https://github.com/chenjiahan/rodal#readme","gitHead":"0e2ec27fa8b6e681bc423db1611691a62749e4db","_id":"rodal@1.0.9","_shasum":"e3f0a6a63670247076a8d3914906c55a36011643","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"chenjiahan","email":"416417567@163.com"},"dist":{"shasum":"e3f0a6a63670247076a8d3914906c55a36011643","tarball":"https://registry.npmjs.org/rodal/-/rodal-1.0.9.tgz","integrity":"sha512-uyA8ti6D/qPVQwKyU+6sGRTPB8BYa2tDWTxgRcDuL/G0NWoM+edh3nGsawaK3JA7pTjeflDkB862eRho8HeAbg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIH7+JieJMZDhFLf2URzofC7ODUJusidVgIV9/kb9l2RlAiEA7+hsXkfsYf81wzi1WMvjixdbYWXiR75572ULC0M+6IA="}]},"maintainers":[{"name":"chenjiahan","email":"416417567@163.com"}]},"1.1.0":{"name":"rodal","version":"1.1.0","description":"A React modal with animations.","main":"dist/rodal.js","directories":{"example":"example"},"dependencies":{"react":"^0.13.3"},"devDependencies":{},"scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/chenjiahan/rodal.git"},"keywords":["react","modal","animation"],"author":{"name":"chenjiahan"},"license":"ISC","bugs":{"url":"https://github.com/chenjiahan/rodal/issues"},"homepage":"https://github.com/chenjiahan/rodal#readme","gitHead":"939365c89f35e5162db1b4422d0ac8f601202d09","_id":"rodal@1.1.0","_shasum":"15b8b5c610829663d07487b8d6de01d01eabeec2","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"chenjiahan","email":"416417567@163.com"},"dist":{"shasum":"15b8b5c610829663d07487b8d6de01d01eabeec2","tarball":"https://registry.npmjs.org/rodal/-/rodal-1.1.0.tgz","integrity":"sha512-KREMtSv8QsDaFrvJfDPp5dFbL6Nn6/h6UW8lz5sYeZSNDP0oeaewRLd2FPNVuhQ61ts8gXlAIMOCB8TQvBqSBw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCaL9jnrMi0RXssdRwDPHVQfL4P2I41tvcn41dojcssRgIgawO7wKRCotg16JzAj/M03ohWclmvycHiR3b2caCHqZA="}]},"maintainers":[{"name":"chenjiahan","email":"416417567@163.com"}]},"1.1.1":{"name":"rodal","version":"1.1.1","description":"A React modal with animations.","main":"dist/rodal.js","directories":{"example":"example"},"dependencies":{"react":"^0.14.0","react-dom":"^0.14.0"},"devDependencies":{"autoprefixer-loader":"^3.1.0","babel-core":"^5.8.25","babel-loader":"^5.3.2","css-loader":"^0.19.0","eslint":"^1.6.0","eslint-loader":"^1.1.0","gulp":"^3.9.0","gulp-autoprefixer":"^3.0.2","gulp-babel":"^5.2.1","gulp-changed":"^1.3.0","gulp-csso":"^1.0.0","gulp-rename":"^1.2.2","gulp-sass":"^2.0.4","gulp-uglify":"^1.4.1","node-sass":"^3.3.3","sass-loader":"^3.0.0","style-loader":"^0.12.4","webpack":"^1.12.2"},"scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/chenjiahan/rodal.git"},"keywords":["react","modal","animation","react-component"],"author":{"name":"chenjiahan"},"license":"ISC","bugs":{"url":"https://github.com/chenjiahan/rodal/issues"},"homepage":"https://github.com/chenjiahan/rodal#readme","gitHead":"07e741a7ea80fc13eaa60a2c2b25f5abb2e2f3c5","_id":"rodal@1.1.1","_shasum":"b96ec8121e42834a4d017de0371da1148d0a888b","_from":".","_npmVersion":"2.11.3","_nodeVersion":"4.0.0","_npmUser":{"name":"chenjiahan","email":"416417567@163.com"},"dist":{"shasum":"b96ec8121e42834a4d017de0371da1148d0a888b","tarball":"https://registry.npmjs.org/rodal/-/rodal-1.1.1.tgz","integrity":"sha512-3fw/v0ia2JWYvp+E46IkbpK+hMshfx8hAwBwv7Srm7mP0r3WBPbuFmbfd4NRqj8ZpJd3HqhFPofiCndhgzTr0A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIG70tUWKpj6V2BTbX9G8WZGL7heIXmADDlVkwFstoNt1AiBUq/0PlE6KeUeL8nIN+7htyz/iwxNMebnRf0V6gzv/Ew=="}]},"maintainers":[{"name":"chenjiahan","email":"416417567@163.com"}]},"1.1.2":{"name":"rodal","version":"1.1.2","description":"A React modal with animations.","main":"src/rodal.js","directories":{"example":"example"},"dependencies":{"react":"^0.14.0","react-dom":"^0.14.0"},"devDependencies":{"autoprefixer-loader":"^3.1.0","babel-core":"^5.8.25","babel-loader":"^5.3.2","css-loader":"^0.19.0","eslint":"^1.6.0","eslint-loader":"^1.1.0","node-sass":"^3.3.3","sass-loader":"^3.0.0","style-loader":"^0.12.4","webpack":"^1.12.2"},"scripts":{"build":"webpack --watch"},"repository":{"type":"git","url":"git+https://github.com/chenjiahan/rodal.git"},"keywords":["react","modal","animation","react-component"],"author":{"name":"chenjiahan"},"license":"ISC","bugs":{"url":"https://github.com/chenjiahan/rodal/issues"},"homepage":"https://github.com/chenjiahan/rodal#readme","gitHead":"14eb02467c09197ad898e33b4eebea1a30a84bca","_id":"rodal@1.1.2","_shasum":"38c6342b526ecb8c06ffe2c46e68430b4289e60a","_from":".","_npmVersion":"3.3.8","_nodeVersion":"4.0.0","_npmUser":{"name":"chenjiahan","email":"416417567@163.com"},"dist":{"shasum":"38c6342b526ecb8c06ffe2c46e68430b4289e60a","tarball":"https://registry.npmjs.org/rodal/-/rodal-1.1.2.tgz","integrity":"sha512-eF47W2u3MLyBgb11FxtbpASWu8vdRL3UiT+BGFjGmS6pSJBCtluLh0e0brSPoP7IXECdL5710dJYqWBZxohhEA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDZfyuFOM1angrEmOhOgSTuKc/e2HJhUa8xHzbfWo9Q5QIhAI2GDMOtbOjIFFUfWuvK98Y1oTWOZFKrVUU7B1SSNhgw"}]},"maintainers":[{"name":"chenjiahan","email":"416417567@163.com"}]},"1.2.0":{"name":"rodal","version":"1.2.0","description":"A React modal with animations.","main":"src/rodal.js","devDependencies":{"autoprefixer-loader":"^3.1.0","babel":"^6.1.18","babel-loader":"^6.2.0","babel-preset-es2015":"^6.1.18","babel-preset-react":"^6.1.18","babel-preset-stage-0":"^6.1.18","css-loader":"^0.22.0","gulp":"^3.9.0","gulp-autoprefixer":"^3.1.0","gulp-babel":"^6.1.1","gulp-changed":"^1.3.0","gulp-csso":"^1.0.1","gulp-rename":"^1.2.2","gulp-sass":"^2.1.0","gulp-uglify":"^1.5.1","node-sass":"^3.4.2","react":"^0.14.3","react-dom":"^0.14.3","sass-loader":"^3.1.2","style-loader":"^0.13.0","webpack":"^1.12.2"},"scripts":{"build":"webpack --watch"},"repository":{"type":"git","url":"git+https://github.com/chenjiahan/rodal.git"},"keywords":["react","modal","animation","react-modal","react-component"],"author":{"name":"chenjiahan"},"license":"ISC","bugs":{"url":"https://github.com/chenjiahan/rodal/issues"},"homepage":"https://github.com/chenjiahan/rodal#readme","gitHead":"4b0f326da1f4f4bf648796cc3083fc1e56901b5b","_id":"rodal@1.2.0","_shasum":"8270cf69402965a13c0a0b1142bdf75c2c7d43e1","_from":".","_npmVersion":"3.3.8","_nodeVersion":"4.0.0","_npmUser":{"name":"chenjiahan","email":"416417567@163.com"},"dist":{"shasum":"8270cf69402965a13c0a0b1142bdf75c2c7d43e1","tarball":"https://registry.npmjs.org/rodal/-/rodal-1.2.0.tgz","integrity":"sha512-hVa9QGire9SW3ka4xO476P/DUMR85cmHGF3I+DSJJNzcGTZJf4s7EpDhFwh5q8zTYMHth3ieafUaQ5J0JCpwZw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEwyybfNOd5hSjLZaLNHN6CJ4pu717UsnSkDmaK6/cNiAiAmsePJe2pvv6UnjjtWIr+FIcNvt9us/ed/Xr1spBE2tQ=="}]},"maintainers":[{"name":"chenjiahan","email":"416417567@163.com"}],"directories":{}},"1.2.1":{"name":"rodal","version":"1.2.1","description":"A React modal with animations.","main":"src/rodal.js","devDependencies":{"autoprefixer-loader":"^3.1.0","babel":"^6.1.18","babel-loader":"^6.2.0","babel-preset-es2015":"^6.1.18","babel-preset-react":"^6.1.18","babel-preset-stage-0":"^6.1.18","css-loader":"^0.22.0","gulp":"^3.9.0","gulp-autoprefixer":"^3.1.0","gulp-babel":"^6.1.1","gulp-changed":"^1.3.0","gulp-csso":"^1.0.1","gulp-rename":"^1.2.2","gulp-sass":"^2.1.0","gulp-uglify":"^1.5.1","node-sass":"^3.4.2","react":"^0.14.3","react-dom":"^0.14.3","sass-loader":"^3.1.2","style-loader":"^0.13.0","webpack":"^1.12.2"},"scripts":{"build":"webpack --watch"},"repository":{"type":"git","url":"git+https://github.com/chenjiahan/rodal.git"},"keywords":["react","modal","animation","react-modal","react-component"],"author":{"name":"chenjiahan"},"license":"ISC","bugs":{"url":"https://github.com/chenjiahan/rodal/issues"},"homepage":"https://github.com/chenjiahan/rodal#readme","gitHead":"4b0f326da1f4f4bf648796cc3083fc1e56901b5b","_id":"rodal@1.2.1","_shasum":"fe71127ecebfd220af74f9f21590ea084c107ba0","_from":".","_npmVersion":"3.3.8","_nodeVersion":"4.0.0","_npmUser":{"name":"chenjiahan","email":"416417567@163.com"},"dist":{"shasum":"fe71127ecebfd220af74f9f21590ea084c107ba0","tarball":"https://registry.npmjs.org/rodal/-/rodal-1.2.1.tgz","integrity":"sha512-ZA28GiRIlCHJnucbLhFh6aPLiWcQ8qq4LbBN8s29MPuaFE1r416q4DFOgu3EainIuiYLKlhEA5aQF7XhQmI0Ag==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHYY13+iluVea8nsHztCqxdsIZj5AP/rC5YJkVLIExo9AiAR+NQVww9q61AQcVKJbpwcc4lQNwl7RanLwJZn48oovA=="}]},"maintainers":[{"name":"chenjiahan","email":"416417567@163.com"}],"directories":{}},"1.2.2":{"name":"rodal","version":"1.2.2","description":"A React modal with animations.","main":"src/rodal.js","devDependencies":{"autoprefixer-loader":"^3.1.0","babel":"^6.1.18","babel-loader":"^6.2.0","babel-preset-es2015":"^6.1.18","babel-preset-react":"^6.1.18","babel-preset-stage-0":"^6.1.18","css-loader":"^0.22.0","gulp":"^3.9.0","gulp-autoprefixer":"^3.1.0","gulp-babel":"^6.1.1","gulp-changed":"^1.3.0","gulp-csso":"^1.0.1","gulp-rename":"^1.2.2","gulp-sass":"^2.1.0","gulp-uglify":"^1.5.1","node-sass":"^3.4.2","react":"^0.14.3","react-dom":"^0.14.3","sass-loader":"^3.1.2","style-loader":"^0.13.0","webpack":"^1.12.2"},"scripts":{"build":"webpack --watch"},"repository":{"type":"git","url":"git+https://github.com/chenjiahan/rodal.git"},"keywords":["react","modal","animation","react-modal","react-component"],"author":{"name":"chenjiahan"},"license":"ISC","bugs":{"url":"https://github.com/chenjiahan/rodal/issues"},"homepage":"https://github.com/chenjiahan/rodal#readme","gitHead":"4b0f326da1f4f4bf648796cc3083fc1e56901b5b","_id":"rodal@1.2.2","_shasum":"4ab3df5c1cb5afde6055d2cc7e81e86f89989327","_from":".","_npmVersion":"3.3.8","_nodeVersion":"4.0.0","_npmUser":{"name":"chenjiahan","email":"416417567@163.com"},"dist":{"shasum":"4ab3df5c1cb5afde6055d2cc7e81e86f89989327","tarball":"https://registry.npmjs.org/rodal/-/rodal-1.2.2.tgz","integrity":"sha512-fN7YlyOTrF4FidooaL7MdEfwIVKkFVfYpYcb2Y49mn65CL+lBQNqQkpMWOeF50HzwP7hkzfIIBobmkZA3XGkVQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHsGRBoFb/LNrqoQqtsy3PRzURpmTkpUuIcRD0BrtnLFAiBtJbbEtdLRPtau3w0qyLXdzRNE5sJKX1NgXNLq0Y6iOA=="}]},"maintainers":[{"name":"chenjiahan","email":"416417567@163.com"}],"directories":{}},"1.2.3":{"name":"rodal","version":"1.2.3","description":"A React modal with animations.","main":"dist/rodal.js","devDependencies":{"autoprefixer-loader":"^3.1.0","babel":"^6.1.18","babel-loader":"^6.2.0","babel-preset-es2015":"^6.1.18","babel-preset-react":"^6.1.18","css-loader":"^0.22.0","gulp":"^3.9.0","gulp-autoprefixer":"^3.1.0","gulp-babel":"^6.1.1","gulp-changed":"^1.3.0","gulp-sass":"^2.1.0","node-sass":"^3.4.2","react":"^0.14.3","react-dom":"^0.14.3","sass-loader":"^3.1.2","style-loader":"^0.13.0","webpack":"^1.12.2"},"scripts":{"build":"webpack --watch"},"repository":{"type":"git","url":"git+https://github.com/chenjiahan/rodal.git"},"keywords":["react","modal","animation","react-modal","react-component"],"author":{"name":"chenjiahan"},"license":"ISC","bugs":{"url":"https://github.com/chenjiahan/rodal/issues"},"homepage":"https://github.com/chenjiahan/rodal#readme","gitHead":"4b0f326da1f4f4bf648796cc3083fc1e56901b5b","_id":"rodal@1.2.3","_shasum":"9c0f159b3a0ef566b82ae809c032b1fecb3d3663","_from":".","_npmVersion":"3.3.8","_nodeVersion":"4.0.0","_npmUser":{"name":"chenjiahan","email":"416417567@163.com"},"dist":{"shasum":"9c0f159b3a0ef566b82ae809c032b1fecb3d3663","tarball":"https://registry.npmjs.org/rodal/-/rodal-1.2.3.tgz","integrity":"sha512-NCmal7P38ZTZvt7jrQpyQVIWh/Q1jn6cIgs+N26SmkL1+Bxi5lQexLRcMgcew90RZ9f582ZuAkzHevORi8M65g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD8+d8n546lJVDPvDsXZEKk0AtuTNUptu8a5C9GaOJeSwIhAMsz5FkVcOOEEHpL+EeZdlkXX8YGXKKW20d6gT7Y0+o8"}]},"maintainers":[{"name":"chenjiahan","email":"416417567@163.com"}],"directories":{}},"1.2.4":{"name":"rodal","version":"1.2.4","description":"A React modal with animations.","main":"dist/rodal.js","devDependencies":{"autoprefixer-loader":"^3.1.0","babel":"^6.1.18","babel-loader":"^6.2.0","babel-preset-es2015":"^6.1.18","babel-preset-react":"^6.1.18","css-loader":"^0.22.0","gulp":"^3.9.0","gulp-autoprefixer":"^3.1.0","gulp-babel":"^6.1.1","gulp-changed":"^1.3.0","gulp-sass":"^2.1.0","node-sass":"^3.4.2","react":"^0.14.3","react-dom":"^0.14.3","sass-loader":"^3.1.2","style-loader":"^0.13.0","webpack":"^1.12.2"},"scripts":{"build":"webpack --watch"},"repository":{"type":"git","url":"git+https://github.com/chenjiahan/rodal.git"},"keywords":["react","modal","animation","react-modal","react-component"],"author":{"name":"chenjiahan"},"license":"ISC","bugs":{"url":"https://github.com/chenjiahan/rodal/issues"},"homepage":"https://github.com/chenjiahan/rodal#readme","gitHead":"4b0f326da1f4f4bf648796cc3083fc1e56901b5b","_id":"rodal@1.2.4","_shasum":"4018ecaa309ee471995dab0645119eef00a12679","_from":".","_npmVersion":"3.3.8","_nodeVersion":"4.0.0","_npmUser":{"name":"chenjiahan","email":"416417567@163.com"},"dist":{"shasum":"4018ecaa309ee471995dab0645119eef00a12679","tarball":"https://registry.npmjs.org/rodal/-/rodal-1.2.4.tgz","integrity":"sha512-W4SYV/l4TJud8nTXtM5K97LUnRexAB0iBZDBe1ZmEaHcqqriVe/pUBqn6E48/jgkrf6rSy7InVOWWNYb15j68A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBzw5qgxl6WUDQQITODb5RnF8rYyGsxjnxx44gfBkxhlAiAew/07rVv6WcX+xV7Rd4V7Ec0xYp6mcImEVLDtx/HGAw=="}]},"maintainers":[{"name":"chenjiahan","email":"416417567@163.com"}],"directories":{}},"1.2.5":{"name":"rodal","version":"1.2.5","description":"A React modal with animations.","main":"dist/index.js","devDependencies":{"autoprefixer-loader":"^3.1.0","babel":"^6.1.18","babel-loader":"^6.2.0","babel-preset-es2015":"^6.1.18","babel-preset-react":"^6.1.18","css-loader":"^0.22.0","gulp":"^3.9.0","gulp-autoprefixer":"^3.1.0","gulp-babel":"^6.1.1","gulp-changed":"^1.3.0","gulp-sass":"^2.1.0","node-sass":"^3.4.2","react":"^0.14.3","react-dom":"^0.14.3","sass-loader":"^3.1.2","style-loader":"^0.13.0","webpack":"^1.12.2"},"scripts":{"build":"webpack --watch"},"repository":{"type":"git","url":"git+https://github.com/chenjiahan/rodal.git"},"keywords":["react","modal","animation","react-modal","react-component"],"author":{"name":"chenjiahan"},"license":"ISC","bugs":{"url":"https://github.com/chenjiahan/rodal/issues"},"homepage":"https://github.com/chenjiahan/rodal#readme","gitHead":"4b0f326da1f4f4bf648796cc3083fc1e56901b5b","_id":"rodal@1.2.5","_shasum":"ea0c380dd9802ef317cd51fabf83c4343369b6c2","_from":".","_npmVersion":"3.3.8","_nodeVersion":"4.0.0","_npmUser":{"name":"chenjiahan","email":"416417567@163.com"},"dist":{"shasum":"ea0c380dd9802ef317cd51fabf83c4343369b6c2","tarball":"https://registry.npmjs.org/rodal/-/rodal-1.2.5.tgz","integrity":"sha512-tc+EJlIUTaLOqPts72zaVFjPpYX+CCUhNL9MV4XhzFUKK5cZFFuXsTiF8Dt4RdcceuLvqTL/UyhONuajFpCEmg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAzg6Z9cOZL9156m1AuCBLVDapUxN2HzVJgvMhCojHDGAiEAqv83quUgUCBZx1JMg0CIGD2BxFwXVSsJn+j69qZ+rUU="}]},"maintainers":[{"name":"chenjiahan","email":"416417567@163.com"}],"directories":{}},"1.2.6":{"name":"rodal","version":"1.2.6","description":"A React modal with animations.","main":"dist/index.js","devDependencies":{"autoprefixer-loader":"^3.1.0","babel":"^6.1.18","babel-loader":"^6.2.0","babel-preset-es2015":"^6.1.18","babel-preset-react":"^6.1.18","css-loader":"^0.22.0","gulp":"^3.9.0","gulp-autoprefixer":"^3.1.0","gulp-babel":"^6.1.1","gulp-changed":"^1.3.0","gulp-sass":"^2.1.0","node-sass":"^3.4.2","react":"^0.14.3","react-dom":"^0.14.3","sass-loader":"^3.1.2","style-loader":"^0.13.0","webpack":"^1.12.2"},"scripts":{"build":"webpack --watch"},"repository":{"type":"git","url":"git+https://github.com/chenjiahan/rodal.git"},"keywords":["react","modal","animation","react-modal","react-component"],"author":{"name":"chenjiahan"},"license":"ISC","bugs":{"url":"https://github.com/chenjiahan/rodal/issues"},"homepage":"https://github.com/chenjiahan/rodal#readme","gitHead":"1b125f570fbcb22f41eb348ab8f881e4b4d0638e","_id":"rodal@1.2.6","_shasum":"385bf8e7151851df6014776258bb0624e2c28cc9","_from":".","_npmVersion":"3.3.8","_nodeVersion":"4.0.0","_npmUser":{"name":"chenjiahan","email":"416417567@163.com"},"dist":{"shasum":"385bf8e7151851df6014776258bb0624e2c28cc9","tarball":"https://registry.npmjs.org/rodal/-/rodal-1.2.6.tgz","integrity":"sha512-BhdWeLnsuZnEQRPN6P5tcI4/k1E530JuUgl0dLy88NvOu0/4JsnChZSmGxQAZk/2EthO4nnQ+BroMoBbWS51eQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCsLdefkI9N15AE6wr1CjIOV0STH1vNMW/RjODDGc80TQIhAMcChmWU4HoVkeDo0qGL2LtZWHd+gzBgOwTplOE1icw1"}]},"maintainers":[{"name":"chenjiahan","email":"416417567@163.com"}],"directories":{}},"1.2.7":{"name":"rodal","version":"1.2.7","description":"A React modal with animations.","main":"dist/index.js","devDependencies":{"autoprefixer-loader":"^3.2.0","babel":"^6.5.2","babel-core":"^6.6.5","babel-loader":"^6.2.4","babel-preset-es2015":"^6.6.0","babel-preset-react":"^6.5.0","css-loader":"^0.23.1","react":"^15.0.0-rc.1","react-dom":"^15.0.0-rc.1","sass-loader":"^3.1.2","style-loader":"^0.13.0","webpack":"^1.12.14"},"scripts":{"dev":"webpack --watch","build":"webpack --config webpack.config.lib.js -p"},"repository":{"type":"git","url":"git+https://github.com/chenjiahan/rodal.git"},"keywords":["react","modal","animation","react-modal","react-component"],"author":{"name":"neverland"},"license":"ISC","bugs":{"url":"https://github.com/chenjiahan/rodal/issues"},"homepage":"https://github.com/chenjiahan/rodal#readme","gitHead":"9ce9d6e7e01ed9351a3219ef2d63a99368e354cc","_id":"rodal@1.2.7","_shasum":"25ebc0ef48bafec91e25f7a3e7069d33cd508f1e","_from":".","_npmVersion":"3.6.0","_nodeVersion":"4.0.0","_npmUser":{"name":"chenjiahan","email":"416417567@163.com"},"dist":{"shasum":"25ebc0ef48bafec91e25f7a3e7069d33cd508f1e","tarball":"https://registry.npmjs.org/rodal/-/rodal-1.2.7.tgz","integrity":"sha512-Kh/MUXGQKzolkDP22RH65Fabqm0WotA3hD4aOa2VGHDhNBPzl2YyTOveKfmW8cmWca8cbAWgBqRjla1b90YuaA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCwmLRylIwSR+jGxLmr8Qnn9zW9jOoebaPTB1I6jPWalAIhAOdsiPJ+hhpjrA3pW652DCMOxQnirHjrs88U4Ajto6wc"}]},"maintainers":[{"name":"chenjiahan","email":"416417567@163.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rodal-1.2.7.tgz_1460005091430_0.7301171894650906"},"directories":{}},"1.2.8":{"name":"rodal","version":"1.2.8","description":"A React modal with animations.","main":"dist/index.js","devDependencies":{"autoprefixer-loader":"^3.2.0","babel":"^6.5.2","babel-core":"^6.6.5","babel-loader":"^6.2.4","babel-preset-es2015":"^6.6.0","babel-preset-react":"^6.5.0","css-loader":"^0.23.1","react":"^15.0.0-rc.1","react-dom":"^15.0.0-rc.1","sass-loader":"^3.1.2","style-loader":"^0.13.0","webpack":"^1.12.14"},"scripts":{"dev":"webpack --watch","build":"webpack --config webpack.config.lib.js -p"},"repository":{"type":"git","url":"git+https://github.com/chenjiahan/rodal.git"},"keywords":["react","modal","animation","react-modal","react-component"],"author":{"name":"neverland"},"license":"ISC","bugs":{"url":"https://github.com/chenjiahan/rodal/issues"},"homepage":"https://github.com/chenjiahan/rodal#readme","gitHead":"9ce9d6e7e01ed9351a3219ef2d63a99368e354cc","_id":"rodal@1.2.8","_shasum":"3b1d7ea04d53ef024dacf736dcf83b0f8a4df94f","_from":".","_npmVersion":"3.6.0","_nodeVersion":"4.0.0","_npmUser":{"name":"chenjiahan","email":"416417567@163.com"},"dist":{"shasum":"3b1d7ea04d53ef024dacf736dcf83b0f8a4df94f","tarball":"https://registry.npmjs.org/rodal/-/rodal-1.2.8.tgz","integrity":"sha512-fxmWUsHVDxE7aI8klR8NIp/7TeB5O3ApGYitdWbI4x6/SvY/xIMuop6OMGNPF7zv/ja93bUvZfuzttRXKN0giA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDd3pw4UMYpp674ttvwlK16eucomoX45b4g8eB/iLmyYwIhAOItLPq0l73NlWWHJbsYfbzHLL47HmqaXAaD3P+PEYka"}]},"maintainers":[{"name":"chenjiahan","email":"416417567@163.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rodal-1.2.8.tgz_1460005408108_0.8244949926156551"},"directories":{}},"1.2.9":{"name":"rodal","version":"1.2.9","description":"A React modal with animations.","main":"dist/rodal.js","devDependencies":{"autoprefixer-loader":"^3.2.0","babel":"^6.5.2","babel-core":"^6.6.5","babel-loader":"^6.2.4","babel-preset-es2015":"^6.6.0","babel-preset-react":"^6.5.0","css-loader":"^0.23.1","react":"^15.0.0-rc.1","react-dom":"^15.0.0-rc.1","sass-loader":"^3.1.2","style-loader":"^0.13.0","webpack":"^1.12.14"},"scripts":{"dev":"webpack --watch","build":"webpack --config webpack.config.lib.js -p"},"repository":{"type":"git","url":"git+https://github.com/chenjiahan/rodal.git"},"keywords":["react","modal","animation","react-modal","react-component"],"author":{"name":"neverland"},"license":"ISC","bugs":{"url":"https://github.com/chenjiahan/rodal/issues"},"homepage":"https://github.com/chenjiahan/rodal#readme","gitHead":"9ce9d6e7e01ed9351a3219ef2d63a99368e354cc","_id":"rodal@1.2.9","_shasum":"2ea60f9dd29f8eadb0d58f890b079763d0cfd1a7","_from":".","_npmVersion":"3.6.0","_nodeVersion":"4.0.0","_npmUser":{"name":"chenjiahan","email":"416417567@163.com"},"dist":{"shasum":"2ea60f9dd29f8eadb0d58f890b079763d0cfd1a7","tarball":"https://registry.npmjs.org/rodal/-/rodal-1.2.9.tgz","integrity":"sha512-NyW9t/futVNX6Zn9OF7DJ+MliHHOMs+jxSqlbKAcDTCHLH4nSQL+PwRj7kJH0u5hUKCMricYLl/Ic1idNRzt5A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCW/qJDDnD/RVSO1D1Zd9Tl1fPQM1oYhfcDPP0DoSwTvwIgPXFPcEFgasGJACWrf+nEhPirCuNr9pKtPB9gQFPDlPo="}]},"maintainers":[{"name":"chenjiahan","email":"416417567@163.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rodal-1.2.9.tgz_1460005859319_0.7921051629818976"},"directories":{}},"1.2.10":{"name":"rodal","version":"1.2.10","description":"A React modal with animations.","main":"dist/rodal.js","devDependencies":{"autoprefixer-loader":"^3.2.0","babel":"^6.5.2","babel-core":"^6.7.6","babel-loader":"^6.2.4","babel-preset-es2015":"^6.6.0","babel-preset-react":"^6.5.0","css-loader":"^0.23.1","react":"^15.0.1","react-dom":"^15.0.1","sass-loader":"^3.1.2","style-loader":"^0.13.0","webpack":"^1.12.14"},"scripts":{"dev":"webpack --watch","build":"webpack --config webpack.config.lib.js -p"},"repository":{"type":"git","url":"git+https://github.com/chenjiahan/rodal.git"},"keywords":["react","modal","animation","react-modal","react-component"],"author":{"name":"neverland"},"license":"ISC","bugs":{"url":"https://github.com/chenjiahan/rodal/issues"},"homepage":"https://github.com/chenjiahan/rodal#readme","gitHead":"e9062e5306686738fe73d682cb574f61e0a0c623","_id":"rodal@1.2.10","_shasum":"9d59dbeedac27917f6ee3e698505db3028272f2a","_from":".","_npmVersion":"3.8.3","_nodeVersion":"5.10.1","_npmUser":{"name":"chenjiahan","email":"416417567@163.com"},"dist":{"shasum":"9d59dbeedac27917f6ee3e698505db3028272f2a","tarball":"https://registry.npmjs.org/rodal/-/rodal-1.2.10.tgz","integrity":"sha512-l5u3UhkEUQM8GHzufnPXSR1fKrQ0hGCWSd1QTEOQYxqN+xR4mmdmk4b71RAJIO71uHUwKJX8T0FPLERzbaD9Gg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIG38EP5k1VNx0IftTCrOiAxivJmeYMzw8alTMlUjyykWAiBzIMZnYy55jQ4uNT2GmlZ+wB5/sIeUHKZMNTiKwpPIog=="}]},"maintainers":[{"name":"chenjiahan","email":"416417567@163.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rodal-1.2.10.tgz_1460815016163_0.9897055421024561"},"directories":{}},"1.3.0":{"name":"rodal","version":"1.3.0","description":"A React modal with animations.","main":"lib/rodal.js","devDependencies":{"babel":"^6.5.2","babel-cli":"^6.7.7","babel-core":"^6.7.6","babel-loader":"^6.2.4","babel-preset-es2015":"^6.6.0","babel-preset-react":"^6.5.0","css-loader":"^0.23.1","react":"^15.0.1","react-dom":"^15.0.1","style-loader":"^0.13.0","webpack":"^1.12.14"},"scripts":{"dev":"webpack --watch","build":"webpack --config webpack.config.lib.js -p","lib":"babel src/rodal.js --out-file lib/rodal.js && cp src/rodal.css lib"},"repository":{"type":"git","url":"git+https://github.com/chenjiahan/rodal.git"},"keywords":["react","modal","animation","react-modal","react-component"],"author":{"name":"neverland"},"license":"ISC","bugs":{"url":"https://github.com/chenjiahan/rodal/issues"},"homepage":"https://github.com/chenjiahan/rodal#readme","babel":{"presets":["es2015","react"]},"gitHead":"d0ea31ed4e81393b48966989a97c316d2770b680","_id":"rodal@1.3.0","_shasum":"3b3d944f78471fc47613edd88b973c506415b7e5","_from":".","_npmVersion":"3.8.3","_nodeVersion":"5.10.1","_npmUser":{"name":"chenjiahan","email":"416417567@163.com"},"dist":{"shasum":"3b3d944f78471fc47613edd88b973c506415b7e5","tarball":"https://registry.npmjs.org/rodal/-/rodal-1.3.0.tgz","integrity":"sha512-MHoFMjiYCCeyVmyBapTLqLek2/JQT7hI0lDRGTbeO9Fe8AAoZhLj9mC9zjTCQJlfCzP/rWeuaZwlMYG5dQlsug==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFsuHVFbOsyl7FJN18bAlpDJxJ6rXeJjchfmmN7ISrC6AiBeVVE/TnTS5Y6QslJphvmIpF6NxreNNHlkoR1wNrJ+rg=="}]},"maintainers":[{"name":"chenjiahan","email":"416417567@163.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rodal-1.3.0.tgz_1461293682302_0.8579828848596662"},"directories":{}},"1.3.1":{"name":"rodal","version":"1.3.1","description":"A React modal with animations.","main":"lib/rodal.js","devDependencies":{"babel":"^6.5.2","babel-cli":"^6.11.4","babel-core":"^6.13.1","babel-loader":"^6.2.4","babel-preset-es2015":"^6.13.1","babel-preset-react":"^6.11.1","postcss-loader":"^0.9.1","react-dom":"^15.3.0","webpack":"^1.13.1"},"dependencies":{"css-loader":"^0.23.1","react":"^15.3.0","style-loader":"^0.13.1"},"scripts":{"dev":"webpack --watch","build":"webpack --config webpack.config.lib.js -p","lib":"babel src/rodal.js --out-file lib/rodal.js && cp src/rodal.css lib","test":"npm run build && npm run lib"},"repository":{"type":"git","url":"git+https://github.com/chenjiahan/rodal.git"},"keywords":["react","modal","animation","react-modal","react-component"],"author":{"name":"neverland"},"license":"ISC","bugs":{"url":"https://github.com/chenjiahan/rodal/issues"},"homepage":"https://github.com/chenjiahan/rodal#readme","babel":{"presets":["es2015","react"]},"gitHead":"ece57c7b9e6e5129c7fcb579706649078a84aedd","_id":"rodal@1.3.1","_shasum":"5eb1e50a78390d52adfd74f02e4a6b03f151e2d8","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"chenjiahan","email":"416417567@163.com"},"dist":{"shasum":"5eb1e50a78390d52adfd74f02e4a6b03f151e2d8","tarball":"https://registry.npmjs.org/rodal/-/rodal-1.3.1.tgz","integrity":"sha512-YxD0FFtd433tEDVKVVxHbnxAs7T1YvA8glSnwCOWFNcBAhhy+KFcDXXF8xLflbW+IeEHJPsQwxOiANES4COo1g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDnxODinWbyPtUAMfSbOCE0YTCmCSxVic16znGu5gjuqAiArOr/s4XnC9BZt0PwOoW3pblESbWv/qUL9jMrBHwXWOg=="}]},"maintainers":[{"name":"chenjiahan","email":"416417567@163.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/rodal-1.3.1.tgz_1470393883088_0.6345103299245238"},"directories":{}},"1.3.2":{"name":"rodal","version":"1.3.2","description":"A React modal with animations.","main":"lib/rodal.js","devDependencies":{"babel":"^6.5.2","babel-cli":"^6.14.0","babel-core":"^6.14.0","babel-loader":"^6.2.5","babel-preset-es2015":"^6.14.0","babel-preset-react":"^6.11.1","css-loader":"^0.24.0","postcss-loader":"^0.11.0","react-dom":"^15.3.1","style-loader":"^0.13.1","webpack":"^1.13.2"},"dependencies":{"react":"^15.3.1"},"scripts":{"dev":"webpack --watch","lib":"babel src/rodal.js --out-file lib/rodal.js && cp src/rodal.css lib","test":"npm run lib"},"repository":{"type":"git","url":"git+https://github.com/chenjiahan/rodal.git"},"keywords":["react","modal","animation","react-modal","react-component"],"author":{"name":"neverland"},"license":"ISC","bugs":{"url":"https://github.com/chenjiahan/rodal/issues"},"homepage":"https://github.com/chenjiahan/rodal#readme","babel":{"presets":["es2015","react"]},"gitHead":"f324301c918159b1039bedb6f8f4cbbfddcab8c1","_id":"rodal@1.3.2","_shasum":"804d1e1bd98830be1cd63d94ecd9b9f555d16e52","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"chenjiahan","email":"416417567@163.com"},"dist":{"shasum":"804d1e1bd98830be1cd63d94ecd9b9f555d16e52","tarball":"https://registry.npmjs.org/rodal/-/rodal-1.3.2.tgz","integrity":"sha512-uEK61SqPd7xhEpX2+4ObzsgX0fND29EuLOq0oUDg+mvJN5jdIUOGOmymjqfibQ3iej/Lx/VxM4PavVjAjn2tWw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCuiD/nH3OMAQ8Adj/sEnts/O82oLr4+gcJmSGsOk0sjgIhAMP2SKenTOBp8APVCHooOVYT9sWiz1wuOB3e7NiUZFD4"}]},"maintainers":[{"name":"chenjiahan","email":"416417567@163.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rodal-1.3.2.tgz_1472638147268_0.8341110849287361"},"directories":{}},"1.3.3":{"name":"rodal","version":"1.3.3","description":"A React modal with animations.","main":"lib/rodal.js","devDependencies":{"babel":"^6.5.2","babel-cli":"^6.14.0","babel-core":"^6.14.0","babel-loader":"^6.2.5","babel-preset-es2015":"^6.14.0","babel-preset-react":"^6.11.1","css-loader":"^0.24.0","postcss-loader":"^0.11.0","react-dom":"^15.3.1","style-loader":"^0.13.1","webpack":"^1.13.2"},"dependencies":{"react":"^15.3.1"},"scripts":{"dev":"webpack --watch","lib":"babel src/rodal.js --out-file lib/rodal.js && cp src/rodal.css lib","test":"npm run lib"},"repository":{"type":"git","url":"git+https://github.com/chenjiahan/rodal.git"},"keywords":["react","modal","animation","react-modal","react-component"],"author":{"name":"neverland"},"license":"ISC","bugs":{"url":"https://github.com/chenjiahan/rodal/issues"},"homepage":"https://github.com/chenjiahan/rodal#readme","babel":{"presets":["es2015","react"]},"gitHead":"97f3a8cdda7eedb0237f6da7a87e94616e9310e5","_id":"rodal@1.3.3","_shasum":"5c3be2447bf3fe084e81262605a1af6837b1c0f7","_from":".","_npmVersion":"3.10.7","_nodeVersion":"6.3.0","_npmUser":{"name":"chenjiahan","email":"416417567@163.com"},"dist":{"shasum":"5c3be2447bf3fe084e81262605a1af6837b1c0f7","tarball":"https://registry.npmjs.org/rodal/-/rodal-1.3.3.tgz","integrity":"sha512-JhWQ5pI2qg41tihnTFHN5QCjwrBigNRNjXL17dqtzojkCAGMwlYUJC2KmW/neQF3QGmWRWPKjYMxkIuRaK+NyQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBb5QO0Az6gOw2gB2JTvhv8d790KvwY/oeSSi9AkgcSpAiEAmEM9GG4MWwB+xNGwHiDvs3ZCb8EY+7z5TKMuC01sh4w="}]},"maintainers":[{"name":"chenjiahan","email":"416417567@163.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rodal-1.3.3.tgz_1473676106412_0.14563621766865253"},"directories":{}},"1.3.4":{"name":"rodal","version":"1.3.4","description":"A React modal with animations.","main":"lib/rodal.js","devDependencies":{"babel":"^6.5.2","babel-cli":"^6.16.0","babel-core":"^6.17.0","babel-loader":"^6.2.5","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","css-loader":"^0.25.0","postcss-loader":"^1.0.0","react-dom":"^15.3.2","style-loader":"^0.13.1","webpack":"^1.13.2"},"dependencies":{"react":"^15.3.2"},"scripts":{"dev":"webpack --watch","lib":"babel src/rodal.js --out-file lib/rodal.js && cp src/rodal.css lib","test":"npm run lib"},"repository":{"type":"git","url":"git+https://github.com/chenjiahan/rodal.git"},"keywords":["react","modal","animation","react-modal","react-component"],"author":{"name":"neverland"},"license":"ISC","bugs":{"url":"https://github.com/chenjiahan/rodal/issues"},"homepage":"https://github.com/chenjiahan/rodal#readme","babel":{"presets":["es2015","react"]},"gitHead":"2e0efbe10086bd8199b9a88027843c39a70676d1","_id":"rodal@1.3.4","_shasum":"a32bec20bb661d8bea5d2045a7890afaf0ec84be","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.6.0","_npmUser":{"name":"chenjiahan","email":"416417567@163.com"},"dist":{"shasum":"a32bec20bb661d8bea5d2045a7890afaf0ec84be","tarball":"https://registry.npmjs.org/rodal/-/rodal-1.3.4.tgz","integrity":"sha512-09/DwvPTfwMnb8plI3HyUb7dP6GVkmKvboy5TFPXxaYuafhY+UXVRygrGNJ/SjgnvScLcc1+4OQOG2x4WQIE0g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHL2s+JGCT9Gl325mibvYa/EGPSoHVlm1VJCgo9nqgnCAiEA+irLnw29VFUzeZQu9KZrXj6zdOvyO1pIqlC7C0yvyBU="}]},"maintainers":[{"name":"chenjiahan","email":"416417567@163.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/rodal-1.3.4.tgz_1476868481994_0.18151163891889155"},"directories":{}},"1.3.5":{"name":"rodal","version":"1.3.5","description":"A React modal with animations.","main":"lib/rodal.js","devDependencies":{"babel":"^6.5.2","babel-cli":"^6.16.0","babel-core":"^6.17.0","babel-loader":"^6.2.5","babel-plugin-transform-object-assign":"^6.8.0","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","css-loader":"^0.25.0","postcss-loader":"^1.0.0","react-dom":"^15.3.2","style-loader":"^0.13.1","webpack":"^1.13.2"},"dependencies":{"react":"^15.3.2"},"scripts":{"dev":"webpack --watch","lib":"babel --plugins transform-object-assign src/rodal.js --out-file lib/rodal.js && cp src/rodal.css lib","test":"npm run lib"},"repository":{"type":"git","url":"git+https://github.com/chenjiahan/rodal.git"},"keywords":["react","modal","animation","react-modal","react-component"],"author":{"name":"neverland"},"license":"ISC","bugs":{"url":"https://github.com/chenjiahan/rodal/issues"},"homepage":"https://github.com/chenjiahan/rodal#readme","babel":{"presets":["es2015","react"]},"gitHead":"2e0efbe10086bd8199b9a88027843c39a70676d1","_id":"rodal@1.3.5","_shasum":"89f1aa56c0181ab1de3a542d45593f366132d258","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.6.0","_npmUser":{"name":"chenjiahan","email":"416417567@163.com"},"dist":{"shasum":"89f1aa56c0181ab1de3a542d45593f366132d258","tarball":"https://registry.npmjs.org/rodal/-/rodal-1.3.5.tgz","integrity":"sha512-2OhyOe42VVCXWbyCdTotpdlb/jBhK0ujK05lS2Hpb10ywLcy/daMKgjol9ghIuW4VjfLRea+mp/YhTRJb6gZXQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCPtYlyqxa8l1DhJCHuGtC+O3y/Auvc/YUeWp7DaJ4NjAIgIaz4y5OuRCxZ64htSSR2mw9Y70v3luX5MbdTxP/g6ZM="}]},"maintainers":[{"name":"chenjiahan","email":"416417567@163.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rodal-1.3.5.tgz_1477915910293_0.6209305983502418"},"directories":{}},"1.4.0":{"name":"rodal","version":"1.4.0","description":"A React modal with animations.","main":"lib/rodal.js","devDependencies":{"babel":"^6.5.2","babel-cli":"^6.22.2","babel-core":"^6.22.1","babel-loader":"^6.2.10","babel-plugin-transform-object-assign":"^6.22.0","babel-preset-es2015":"^6.22.0","babel-preset-react":"^6.22.0","css-loader":"^0.26.1","postcss-loader":"^1.2.2","react-dom":"^15.4.2","style-loader":"^0.13.1","webpack":"^2.2.1"},"dependencies":{"react":"^15.4.2"},"scripts":{"dev":"webpack --watch","lib":"babel --plugins transform-object-assign src/rodal.js --out-file lib/rodal.js && cp src/rodal.css lib","test":"npm run lib"},"repository":{"type":"git","url":"git+https://github.com/chenjiahan/rodal.git"},"keywords":["react","modal","animation","react-modal","react-component"],"author":{"name":"neverland"},"license":"ISC","bugs":{"url":"https://github.com/chenjiahan/rodal/issues"},"homepage":"https://github.com/chenjiahan/rodal#readme","babel":{"presets":["es2015","react"]},"gitHead":"65559c5620e755cf39ca9fa9ee284d7ad2c25dca","_id":"rodal@1.4.0","_shasum":"542470ad8e8dc11a58fac8bca67388cc8a085dc3","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"chenjiahan","email":"416417567@163.com"},"dist":{"shasum":"542470ad8e8dc11a58fac8bca67388cc8a085dc3","tarball":"https://registry.npmjs.org/rodal/-/rodal-1.4.0.tgz","integrity":"sha512-GN3Iq14qFD8pScs1KfOBCKOBDwXJP9POOteRKwtFVbcp3cspC/dk2Oh9OLz6rvDR21jVL1MlyTlaMsG+I3klGA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDY449Ths1SqFY66WebMUFY8vFoskYzUH+OzPO0fEquzAiEA8z5YFK8CUMyfQXEFNSBQCICgnKSkH7RaQAzi1InXc3k="}]},"maintainers":[{"name":"chenjiahan","email":"416417567@163.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rodal-1.4.0.tgz_1486650957329_0.5949726672843099"},"directories":{}},"1.4.1":{"name":"rodal","version":"1.4.1","description":"A React modal with animations.","main":"lib/rodal.js","devDependencies":{"babel":"^6.23.0","babel-cli":"^6.24.0","babel-core":"^6.24.0","babel-loader":"^6.4.1","babel-plugin-transform-object-assign":"^6.22.0","babel-preset-es2015":"^6.24.0","babel-preset-react":"^6.23.0","css-loader":"^0.27.3","postcss-loader":"^1.3.3","react-dom":"^15.4.2","style-loader":"^0.14.1","webpack":"^2.2.1"},"dependencies":{"react":"^15.4.2"},"scripts":{"dev":"webpack --watch","lib":"babel --plugins transform-object-assign src/rodal.js --out-file lib/rodal.js && cp src/rodal.css lib","test":"npm run lib"},"repository":{"type":"git","url":"git+https://github.com/chenjiahan/rodal.git"},"keywords":["react","modal","animation","react-modal","react-component"],"author":{"name":"neverland"},"license":"ISC","bugs":{"url":"https://github.com/chenjiahan/rodal/issues"},"homepage":"https://github.com/chenjiahan/rodal#readme","babel":{"presets":["es2015","react"]},"gitHead":"8995e3ccb71294d0fdb7dae7ceea093863a3ecaa","_id":"rodal@1.4.1","_shasum":"9e2abb03502563eac615f94cd13d7a3163aa02b3","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.3.0","_npmUser":{"name":"chenjiahan","email":"416417567@163.com"},"dist":{"shasum":"9e2abb03502563eac615f94cd13d7a3163aa02b3","tarball":"https://registry.npmjs.org/rodal/-/rodal-1.4.1.tgz","integrity":"sha512-4tJcU4B1hrvdyXiIcYLtoDPx14ixG8g8Fcn85+vq/Vwi2zlHdRjbuiTNRcsGizpO4kC5Aalvh/49a7VJ8nh2EA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDQQWAas+MG1bqROLWTNmq8STh/xhh7wD0Dmnd1pIPtNwIgLwGDxBJ2BSYLRm28/X1p4VNtQNAOJT/ngn/GrQ3hT7c="}]},"maintainers":[{"name":"chenjiahan","email":"416417567@163.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/rodal-1.4.1.tgz_1489716807159_0.38344626454636455"},"directories":{}},"1.5.0":{"name":"rodal","version":"1.5.0","description":"A React modal with animations.","main":"lib/rodal.js","devDependencies":{"babel":"^6.23.0","babel-cli":"^6.24.1","babel-core":"^6.24.1","babel-loader":"^6.4.1","babel-plugin-transform-object-assign":"^6.22.0","babel-preset-es2015":"^6.24.1","babel-preset-react":"^6.24.1","css-loader":"^0.28.0","postcss-loader":"^1.3.3","react-dom":"^15.5.3","style-loader":"^0.16.1","webpack":"^2.3.3","webpack-dev-server":"^2.4.2"},"dependencies":{"prop-types":"^15.5.6","react":"^15.5.3"},"scripts":{"dev":"webpack-dev-server","build":"webpack -p --hide-modules","lib":"babel --plugins transform-object-assign src/rodal.js --out-file lib/rodal.js && cp src/rodal.css lib","test":"npm run lib","release":"npm run build && npm run lib && npm publish"},"repository":{"type":"git","url":"git+https://github.com/chenjiahan/rodal.git"},"keywords":["react","modal","animation","react-modal","react-component"],"author":{"name":"neverland"},"license":"ISC","bugs":{"url":"https://github.com/chenjiahan/rodal/issues"},"homepage":"https://github.com/chenjiahan/rodal#readme","babel":{"presets":["es2015","react"]},"gitHead":"f33c8666e25b6e48e691a3cbf448c9bad6d2734c","_id":"rodal@1.5.0","_shasum":"76e9802d4c12879b5bf97f5c160d803610868c04","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.3.0","_npmUser":{"name":"chenjiahan","email":"416417567@163.com"},"dist":{"shasum":"76e9802d4c12879b5bf97f5c160d803610868c04","tarball":"https://registry.npmjs.org/rodal/-/rodal-1.5.0.tgz","integrity":"sha512-cWCvbY/FB4dCUqMOGFid0vD/xUzDl3pS3pNTvu0VrQvK3TIZq+7Et0P36tOjLZk4XCEsRSDlg0MNs1N1BKVl5w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGADAnkWgXrMsGe54gmpvBWbihGIBU5J9b/ejrFc+oHuAiEA2mp2jE+jhBIt9X9kYb/bbAzRWc9FjMcYEQnBafG4nUQ="}]},"maintainers":[{"name":"chenjiahan","email":"416417567@163.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/rodal-1.5.0.tgz_1491814949666_0.5420763217844069"},"directories":{}},"1.5.1":{"name":"rodal","version":"1.5.1","description":"A React modal with animations.","main":"lib/rodal.js","devDependencies":{"babel":"^6.23.0","babel-cli":"^6.24.1","babel-core":"^6.24.1","babel-loader":"^7.0.0","babel-preset-es2015":"^6.24.1","babel-preset-react":"^6.24.1","babel-preset-stage-0":"^6.24.1","css-loader":"^0.28.1","postcss-loader":"^2.0.5","react-dom":"^15.5.4","style-loader":"^0.17.0","webpack":"^2.5.1","webpack-dev-server":"^2.4.5"},"dependencies":{"prop-types":"^15.5.10","react":"^15.5.4"},"scripts":{"dev":"webpack-dev-server","build":"webpack -p --hide-modules","lib":"babel src/rodal.js --out-file lib/rodal.js && cp src/rodal.css lib","test":"npm run lib","release":"npm run build && npm run lib && npm publish"},"repository":{"type":"git","url":"git+https://github.com/chenjiahan/rodal.git"},"keywords":["react","modal","animation","react-modal","react-component"],"author":{"name":"neverland"},"license":"ISC","bugs":{"url":"https://github.com/chenjiahan/rodal/issues"},"homepage":"https://github.com/chenjiahan/rodal#readme","babel":{"presets":["es2015","stage-0","react"]},"gitHead":"b30490228c5b4344d02b27ed2103be7adf9e4709","_id":"rodal@1.5.1","_shasum":"7eb8ba67e22813b2ace12e15abbfbcc040124003","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.9.0","_npmUser":{"name":"chenjiahan","email":"416417567@163.com"},"dist":{"shasum":"7eb8ba67e22813b2ace12e15abbfbcc040124003","tarball":"https://registry.npmjs.org/rodal/-/rodal-1.5.1.tgz","integrity":"sha512-xqAeHWLbRrlSmaKIjkGgl94g6s9l5vTHrgVVnHIF1WbZsKkI+yJZI8K+qk16pjP1++XRK2HRcLK+1X/wk0VAYg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGhZfyeYvpXCnDS/bu8LmAi0WhUXAFEOoW9g9OfPQcucAiApDbUIKID21MlSjMATGDmd3/BST/LExGG+haWn0AnRKw=="}]},"maintainers":[{"name":"chenjiahan","email":"416417567@163.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rodal-1.5.1.tgz_1494901979439_0.4103220871184021"},"directories":{}},"1.5.2":{"name":"rodal","version":"1.5.2","description":"A React modal with animations.","main":"lib/rodal.js","devDependencies":{"babel":"^6.23.0","babel-cli":"^6.24.1","babel-core":"^6.24.1","babel-loader":"^7.0.0","babel-preset-es2015":"^6.24.1","babel-preset-react":"^6.24.1","babel-preset-stage-0":"^6.24.1","css-loader":"^0.28.1","postcss-loader":"^2.0.5","react-dom":"^15.5.4","style-loader":"^0.17.0","webpack":"^2.5.1","webpack-dev-server":"^2.4.5"},"dependencies":{"prop-types":"^15.5.10","react":"^15.5.4"},"scripts":{"dev":"webpack-dev-server","build":"webpack -p --hide-modules","lib":"babel src/rodal.js --out-file lib/rodal.js && cp src/rodal.css lib","test":"npm run lib","release":"npm run build && npm run lib && npm publish"},"repository":{"type":"git","url":"git+https://github.com/chenjiahan/rodal.git"},"keywords":["react","modal","animation","react-modal","react-component"],"author":{"name":"neverland"},"license":"ISC","bugs":{"url":"https://github.com/chenjiahan/rodal/issues"},"homepage":"https://github.com/chenjiahan/rodal#readme","babel":{"presets":["es2015","stage-0","react"]},"gitHead":"a6f37a5ae2e4499ed56a1a996170faa61cf7c638","_id":"rodal@1.5.2","_shasum":"ea52b28617fab84912d80825964ca58c6aff79d7","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"chenjiahan","email":"416417567@163.com"},"dist":{"shasum":"ea52b28617fab84912d80825964ca58c6aff79d7","tarball":"https://registry.npmjs.org/rodal/-/rodal-1.5.2.tgz","integrity":"sha512-65lsHOmrQMueMpKSQAVyJwTnV1Cp9DVEix2CG/KBGumo7YLD2CSDN5dVyp88gf18u+LyyWuzdcgnC8AgtuXVWw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDkluqBXDe4fwfcL1mwjE3Tsq4q3Wjh52bd9rBB2ZrCrAiEAxzfxOBSJ/4tzLAfoJ05iV0A4dU1SmBcaUjHHPNn0WfI="}]},"maintainers":[{"name":"chenjiahan","email":"416417567@163.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/rodal-1.5.2.tgz_1497270080517_0.6662535960786045"},"directories":{}},"1.5.3":{"name":"rodal","version":"1.5.3","description":"A React modal with animations.","main":"lib/rodal.js","devDependencies":{"babel":"^6.23.0","babel-cli":"^6.24.1","babel-core":"^6.24.1","babel-loader":"^7.0.0","babel-preset-es2015":"^6.24.1","babel-preset-react":"^6.24.1","babel-preset-stage-0":"^6.24.1","css-loader":"^0.28.1","postcss-loader":"^2.0.5","react-dom":"^15.5.4","style-loader":"^0.17.0","webpack":"^2.5.1","webpack-dev-server":"^2.4.5"},"dependencies":{"prop-types":"^15.5.10","react":"^15.5.4"},"scripts":{"dev":"webpack-dev-server","build":"webpack -p --hide-modules","lib":"babel src/rodal.js --out-file lib/rodal.js && cp src/rodal.css lib","test":"npm run lib","release":"npm run build && npm run lib && npm publish"},"repository":{"type":"git","url":"git+https://github.com/chenjiahan/rodal.git"},"keywords":["react","modal","animation","react-modal","react-component"],"author":{"name":"neverland"},"license":"ISC","bugs":{"url":"https://github.com/chenjiahan/rodal/issues"},"homepage":"https://github.com/chenjiahan/rodal#readme","gitHead":"9c34a4b0d38d3de7eaf2e3b147758f2f32a5bb8b","_id":"rodal@1.5.3","_npmVersion":"5.0.3","_nodeVersion":"6.10.0","_npmUser":{"name":"chenjiahan","email":"416417567@163.com"},"dist":{"integrity":"sha512-NRIYbG7KLTVIJcMDNdCAvpBph+FU4WxGyBkjc2a8ujbE/CAkAUxdlnH6Cj+ofFHrfX4zuIPgemw1mKXOmEzy2Q==","shasum":"e8ae4ce84e315c7cc582b12f0ab9be4f9d8d57a9","tarball":"https://registry.npmjs.org/rodal/-/rodal-1.5.3.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDb/Ov3WFBpu18jCVw9YBg1qYuhipvNh4zy1i2LIqMPegIgAZvrKLVUS4Ozds7BT94qHypsIsKc9/LWotfrCAZRp/w="}]},"maintainers":[{"name":"chenjiahan","email":"416417567@163.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/rodal-1.5.3.tgz_1499307242756_0.8970088958740234"},"directories":{}},"1.5.4":{"name":"rodal","version":"1.5.4","description":"A React modal with animations.","main":"lib/rodal.js","devDependencies":{"babel":"^6.23.0","babel-cli":"^6.24.1","babel-core":"^6.24.1","babel-loader":"^7.0.0","babel-preset-es2015":"^6.24.1","babel-preset-react":"^6.24.1","babel-preset-stage-0":"^6.24.1","css-loader":"^0.28.1","postcss-loader":"^2.0.5","react-dom":"^15.5.4","style-loader":"^0.17.0","webpack":"^2.5.1","webpack-dev-server":"^2.4.5"},"dependencies":{"prop-types":"^15.5.10","react":"^15.5.4"},"scripts":{"dev":"webpack-dev-server","build":"webpack -p --hide-modules","lib":"babel src/rodal.js --out-file lib/rodal.js && cp src/rodal.css lib","test":"npm run lib","release":"npm run build && npm run lib && npm publish"},"repository":{"type":"git","url":"git+https://github.com/chenjiahan/rodal.git"},"keywords":["react","modal","animation","react-modal","react-component"],"author":{"name":"neverland"},"license":"ISC","bugs":{"url":"https://github.com/chenjiahan/rodal/issues"},"homepage":"https://github.com/chenjiahan/rodal#readme","gitHead":"c46f094109afdc0a5ab71648fbc77b6ff86b90df","_id":"rodal@1.5.4","_npmVersion":"5.0.3","_nodeVersion":"6.10.0","_npmUser":{"name":"chenjiahan","email":"416417567@163.com"},"dist":{"integrity":"sha512-jZq+539hlq5uwA+1EGvpCzOhXetY4si5UDyqDI4pDmwXRHxfezdZ2qexUU1AOHid6HKrxTmC8YX9J0mHP+zq5Q==","shasum":"3af4f43762282a3bc3313f503093bebd9ddea9b8","tarball":"https://registry.npmjs.org/rodal/-/rodal-1.5.4.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDJQbWds4N9h182/bmzxN5OX5mLCjzpPboizi20oklhEAIgR+dKFWJvf90sC4W1EtdYBJE3oVXq+MDZvkJjn0kGusc="}]},"maintainers":[{"name":"chenjiahan","email":"416417567@163.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/rodal-1.5.4.tgz_1499307552417_0.9007887835614383"},"directories":{}},"1.5.5":{"name":"rodal","version":"1.5.5","description":"A React modal with animations.","main":"lib/rodal.js","devDependencies":{"babel-cli":"^6.24.1","babel-core":"^6.24.1","babel-loader":"^7.0.0","babel-preset-es2015":"^6.24.1","babel-preset-react":"^6.24.1","babel-preset-stage-0":"^6.24.1","css-loader":"^0.28.1","postcss-loader":"^2.0.5","react-dom":"^15.5.4","style-loader":"^0.18.2","webpack":"^3.3.0","webpack-dev-server":"^2.4.5"},"dependencies":{"prop-types":"^15.5.10","react":"^15.5.4"},"scripts":{"dev":"webpack-dev-server","build":"webpack -p --hide-modules","lib":"babel src/rodal.js --out-file lib/rodal.js && cp src/rodal.css lib","test":"npm run lib","release":"npm run build && npm run lib && npm publish"},"repository":{"type":"git","url":"git+https://github.com/chenjiahan/rodal.git"},"keywords":["react","modal","animation","react-modal","react-component"],"author":{"name":"neverland"},"license":"ISC","bugs":{"url":"https://github.com/chenjiahan/rodal/issues"},"homepage":"https://github.com/chenjiahan/rodal#readme","gitHead":"083703ff50c7587038eb7499a51644eea82f5d67","_id":"rodal@1.5.5","_npmVersion":"5.3.0","_nodeVersion":"6.10.0","_npmUser":{"name":"chenjiahan","email":"416417567@163.com"},"dist":{"integrity":"sha512-oz5WTw/7dm9RJsQEWygTxwtbEgITHgzzYdgqIkHp1+0d/0uGPJ6dit554vb4KefMMRkob6hvP1gBRf9uR0zGow==","shasum":"3cefe5dd03fee3d1da68ffa0e94150ca005ad766","tarball":"https://registry.npmjs.org/rodal/-/rodal-1.5.5.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHYWgfNS0nV59sAAPwxirhQflHTth+7wRNVcM4eVP82+AiASl+XIAYg/L26b/1T3/xMn3Uc/0wIVrHfkjxhLw/trwQ=="}]},"maintainers":[{"name":"chenjiahan","email":"416417567@163.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/rodal-1.5.5.tgz_1504230918496_0.01074860873632133"},"directories":{}},"1.5.6":{"name":"rodal","version":"1.5.6","description":"A React modal with animations.","main":"lib/rodal.js","devDependencies":{"babel-cli":"^6.24.1","babel-core":"^6.24.1","babel-loader":"^7.0.0","babel-preset-es2015":"^6.24.1","babel-preset-react":"^6.24.1","babel-preset-stage-0":"^6.24.1","css-loader":"^0.28.1","postcss-loader":"^2.0.5","react-dom":"^15.5.4","style-loader":"^0.18.2","webpack":"^3.3.0","webpack-dev-server":"^2.4.5"},"dependencies":{"prop-types":"^15.5.10","react":"^15.5.4"},"scripts":{"dev":"webpack-dev-server","build":"webpack -p --hide-modules","lib":"babel src/rodal.js --out-file lib/rodal.js && cp src/rodal.css lib","test":"npm run lib","release":"npm run build && npm run lib && npm publish"},"repository":{"type":"git","url":"git+https://github.com/chenjiahan/rodal.git"},"keywords":["react","modal","animation","react-modal","react-component"],"author":{"name":"neverland"},"license":"ISC","bugs":{"url":"https://github.com/chenjiahan/rodal/issues"},"homepage":"https://github.com/chenjiahan/rodal#readme","gitHead":"cd81b7d97e9cc4698567196a2cb9c8dc7885685a","_id":"rodal@1.5.6","_npmVersion":"5.4.2","_nodeVersion":"6.10.0","_npmUser":{"name":"chenjiahan","email":"416417567@163.com"},"dist":{"integrity":"sha512-M4X4pvUoddGWrI++v9GJxvV/eIdp5kCijvEbSirfY+YX6TOpzfJ6wJUqrRmYCmRSYm0ELfB26PughMpEgziv0w==","shasum":"8a0986a6663e08624b6faaf12c9f41ba6d899821","tarball":"https://registry.npmjs.org/rodal/-/rodal-1.5.6.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGcIY/zo9pt9qPiFPSXZ+fIuxdjfuKc7j7jA0reBvlRgAiAPyY+SK6CY6bn/AyvKGnw2jlHWkWfZFZbwOZmJD8au+w=="}]},"maintainers":[{"name":"chenjiahan","email":"416417567@163.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/rodal-1.5.6.tgz_1507428271430_0.06584959314204752"},"directories":{}},"1.6.0":{"name":"rodal","version":"1.6.0","description":"A React modal with animations.","main":"lib/rodal.js","devDependencies":{"babel-cli":"^6.26.0","babel-core":"^6.26.0","babel-loader":"^7.1.2","babel-preset-es2015":"^6.24.1","babel-preset-react":"^6.24.1","babel-preset-stage-0":"^6.24.1","css-loader":"^0.28.7","postcss-loader":"^2.0.8","react-dom":"^16.0.0","style-loader":"^0.19.0","webpack":"^3.7.1","webpack-dev-server":"^2.9.2"},"dependencies":{"prop-types":"^15.6.0","react":"^16.0.0"},"scripts":{"dev":"webpack-dev-server","build":"webpack -p --hide-modules","lib":"babel src/rodal.js --out-file lib/rodal.js && cp src/rodal.css lib","test":"npm run lib","release":"npm run build && npm run lib && npm publish"},"repository":{"type":"git","url":"git+https://github.com/chenjiahan/rodal.git"},"keywords":["react","modal","animation","react-modal","react-component"],"author":{"name":"neverland"},"license":"ISC","bugs":{"url":"https://github.com/chenjiahan/rodal/issues"},"homepage":"https://github.com/chenjiahan/rodal#readme","gitHead":"7d59185db3824cb3c5aaaf7416cbec48d7e2bc17","_id":"rodal@1.6.0","_npmVersion":"5.4.2","_nodeVersion":"6.10.0","_npmUser":{"name":"chenjiahan","email":"416417567@163.com"},"dist":{"integrity":"sha512-q0bGKbQ//B9/yIZo7z18b27vv9B/fcLFcx5wI/aOLYSvJ74IRzAUaoJ2hIyEXqL92EGB1u6TydTnyJKnVj6Ttw==","shasum":"e50fb646a924e3d6e8834af443a65f20890f0827","tarball":"https://registry.npmjs.org/rodal/-/rodal-1.6.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDHdz9hscKugwyW6WJ7FZDuXz1g2yM3emq739D4iKjiiwIhALH/butvsl31jmz4fVDc0LK5wyUG8o0ZO6RigUFBMaBt"}]},"maintainers":[{"name":"chenjiahan","email":"416417567@163.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/rodal-1.6.0.tgz_1508205418815_0.7622119628358632"},"directories":{}},"1.6.1":{"name":"rodal","version":"1.6.1","description":"A React modal with animations.","main":"lib/rodal.js","devDependencies":{"babel-cli":"^6.26.0","babel-core":"^6.26.0","babel-loader":"^7.1.2","babel-preset-es2015":"^6.24.1","babel-preset-react":"^6.24.1","babel-preset-stage-0":"^6.24.1","css-loader":"^0.28.7","postcss-loader":"^2.0.8","react-dom":"^16.0.0","style-loader":"^0.19.0","webpack":"^3.7.1","webpack-dev-server":"^2.9.2"},"dependencies":{"prop-types":"^15.6.0","react":"^16.0.0"},"scripts":{"dev":"webpack-dev-server","build":"webpack -p --hide-modules","lib":"babel src/rodal.js --out-file lib/rodal.js && cp src/rodal.css lib","test":"npm run lib","release":"npm run build && npm run lib && npm publish"},"repository":{"type":"git","url":"git+https://github.com/chenjiahan/rodal.git"},"keywords":["react","modal","animation","react-modal","react-component"],"author":{"name":"neverland"},"license":"ISC","bugs":{"url":"https://github.com/chenjiahan/rodal/issues"},"homepage":"https://github.com/chenjiahan/rodal#readme","gitHead":"7fb982c5e24ffe06b34148152a95df16f6166b42","_id":"rodal@1.6.1","_npmVersion":"5.4.2","_nodeVersion":"6.10.0","_npmUser":{"name":"chenjiahan","email":"416417567@163.com"},"dist":{"integrity":"sha512-jsAJ/Sk9lGHW51eatEH0FSModvYCKcLMSNUVAHeBklTEVs5XabxD+arc/r9RphYkXR6n6FoKknDcXTvgpWfxOQ==","shasum":"6633f10bcddfd49e21f5e678343a86185c3838d7","tarball":"https://registry.npmjs.org/rodal/-/rodal-1.6.1.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBYaO/9uA6RZVAMBTDncIv5ZVSPDBf1G3kyOPdUEzl/FAiBXgztmK1+NtUhZefdlE1fqMCKgnQxwwC2nGDcqUczWfw=="}]},"maintainers":[{"name":"chenjiahan","email":"416417567@163.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/rodal-1.6.1.tgz_1508820972401_0.63947066757828"},"directories":{}},"1.6.2":{"name":"rodal","version":"1.6.2","description":"A React modal with animations.","main":"lib/rodal.js","devDependencies":{"babel-cli":"^6.26.0","babel-core":"^6.26.0","babel-loader":"^7.1.2","babel-preset-es2015":"^6.24.1","babel-preset-react":"^6.24.1","babel-preset-stage-0":"^6.24.1","css-loader":"^0.28.7","postcss-loader":"^2.0.9","prop-types":"^15.6.0","react":"^16.2.0","react-dom":"^16.2.0","style-loader":"^0.19.0","webpack":"^3.10.0","webpack-dev-server":"^2.9.7"},"peerDependencies":{"prop-types":"^15.6.0","react":"^16.0.0"},"scripts":{"dev":"webpack-dev-server","build":"webpack -p --hide-modules","lib":"babel src/rodal.js --out-file lib/rodal.js && cp src/rodal.css lib","test":"npm run lib","release":"npm run build && npm run lib && npm publish"},"repository":{"type":"git","url":"git+https://github.com/chenjiahan/rodal.git"},"keywords":["react","modal","animation","react-modal","react-component"],"author":{"name":"neverland"},"license":"ISC","bugs":{"url":"https://github.com/chenjiahan/rodal/issues"},"homepage":"https://github.com/chenjiahan/rodal#readme","gitHead":"608a9bbd3c6a1695d7e6f6c9b85425a21ff944ce","_id":"rodal@1.6.2","_npmVersion":"5.5.1","_nodeVersion":"6.10.0","_npmUser":{"name":"chenjiahan","email":"416417567@163.com"},"dist":{"integrity":"sha512-NgYl94eowV07z4lyjEmqAJ3AulpFBHWGhN5gF9BcZ+6ZGVLWpA6gHPz6NEYO0H17cro7LudYixa9ZLQS/yUCHQ==","shasum":"314fc5b6beb5d16649632fd0712474bff4beeca2","tarball":"https://registry.npmjs.org/rodal/-/rodal-1.6.2.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHoFRG6QqCxKqxpW0iDk2cDb2UNA5c8qu5rcFeR0qPZcAiBAUJhK1X7taTNjs/66W/poPfo0Av0wAJIFpn7hCIWEDA=="}]},"maintainers":[{"name":"chenjiahan","email":"416417567@163.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/rodal-1.6.2.tgz_1512697244926_0.7549571276176721"},"directories":{}},"1.6.3":{"name":"rodal","version":"1.6.3","description":"A React modal with animations.","main":"lib/rodal.js","devDependencies":{"babel-cli":"^6.26.0","babel-core":"^6.26.0","babel-loader":"^7.1.2","babel-preset-es2015":"^6.24.1","babel-preset-react":"^6.24.1","babel-preset-stage-0":"^6.24.1","css-loader":"^0.28.7","postcss-loader":"^2.0.9","prop-types":"^15.6.0","react":"^16.2.0","react-dom":"^16.2.0","style-loader":"^0.19.0","webpack":"^3.10.0","webpack-dev-server":"^2.9.7"},"peerDependencies":{"prop-types":"^15.6.0","react":"^16.0.0"},"scripts":{"dev":"webpack-dev-server","build":"webpack -p --hide-modules","lib":"babel src/rodal.js --out-file lib/rodal.js && cp src/rodal.css lib","test":"npm run lib","release":"npm run build && npm run lib && npm publish"},"repository":{"type":"git","url":"git+https://github.com/chenjiahan/rodal.git"},"keywords":["react","modal","animation","react-modal","react-component"],"author":{"name":"neverland"},"license":"ISC","bugs":{"url":"https://github.com/chenjiahan/rodal/issues"},"homepage":"https://github.com/chenjiahan/rodal#readme","gitHead":"894eae14ee2f2619bb476ba935607e306444853b","_id":"rodal@1.6.3","_npmVersion":"5.5.1","_nodeVersion":"6.10.0","_npmUser":{"name":"chenjiahan","email":"416417567@163.com"},"dist":{"integrity":"sha512-OWry49Kga2lRUqPiSimPaowdNjZlX/kwfVQZNpkwf5NayROFioPmhawA9lQ8MDILFiIh777WspqsmrV2jSUn0Q==","shasum":"27c4810ca2d34fd6aedcbdbf7721a06c78a5b9a8","tarball":"https://registry.npmjs.org/rodal/-/rodal-1.6.3.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICSD2uI9YdckrHdIriYUgPWcA0sAdutzKFPHN5RMzX6MAiAhssNj3yob1+0T5OGwA5bBj8Cl0eUYNVksciL8IpE2eA=="}]},"maintainers":[{"name":"chenjiahan","email":"416417567@163.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/rodal-1.6.3.tgz_1512789935933_0.5549857569858432"},"directories":{}},"1.7.0":{"name":"rodal","version":"1.7.0","description":"A React modal with animations.","main":"lib/rodal.js","dependencies":{"classnames":"^2.2.6"},"devDependencies":{"babel-cli":"^6.26.0","babel-core":"^6.26.0","babel-loader":"^7.1.2","babel-preset-es2015":"^6.24.1","babel-preset-react":"^6.24.1","babel-preset-stage-0":"^6.24.1","css-loader":"^0.28.7","postcss-loader":"^2.0.9","prop-types":"^15.6.0","react":"^16.2.0","react-dom":"^16.2.0","style-loader":"^0.19.0","webpack":"^3.10.0","webpack-dev-server":"^2.9.7"},"peerDependencies":{"prop-types":"^15.6.0","react":"^16.0.0"},"scripts":{"dev":"webpack-dev-server","build":"webpack -p --hide-modules","lib":"babel src/rodal.js --out-file lib/rodal.js && cp src/rodal.css lib","test":"npm run lib","release":"npm run build && npm run lib && npm publish"},"repository":{"type":"git","url":"git+https://github.com/chenjiahan/rodal.git"},"keywords":["react","modal","animation","react-modal","react-component"],"author":{"name":"neverland"},"license":"ISC","bugs":{"url":"https://github.com/chenjiahan/rodal/issues"},"homepage":"https://github.com/chenjiahan/rodal#readme","gitHead":"fcfb9b77cc87fe10a3db29d6151e31c9c612af28","_id":"rodal@1.7.0","_nodeVersion":"8.16.0","_npmVersion":"6.11.3","dist":{"integrity":"sha512-86fWTYsnjYfUZ3CstZWjvXdjQCScPlQHkmswmnOUQuh+N0MkiRqr5SEkcPTb13cu6n3go3zFJmfmVSxMZLzUZw==","shasum":"f90e08a9e21feac539afbecc2a668898c65dab33","tarball":"https://registry.npmjs.org/rodal/-/rodal-1.7.0.tgz","fileCount":7,"unpackedSize":184460,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdtPR1CRA9TVsSAnZWagAAJ1cP/2UhQRmVCbwcsaHZQLZe\nF0Jv4dliEDeOczhGyGix8nKvNE/dJPWnniHYTu4nd8WuPpNReBjZ1LzXUC8q\nKZdz+w5q+CDYUITJHxkp7Tje8fyRVKoz6mRCdPVd61ftnlNnjbN2zA40X8w/\nUNG8YUiqMgsww8eA8O2fax2iJzgWjJnXhPNRqhJVC1CTnsxl66PEKxm/KNm3\n8OWX8SVA9vMAy7wZAOD8SfmGXSvbZOLcg3JwupFXmP/J1LoAWMYBxJVvngxE\nJ3t7lJw8C6ylHrxhP5WnpPNcRQK2q1MSjM9K1FMGfIqv8duwDx3PjPKICgk2\nBSU4+m/28XhMLY4Lu4b6Mppaj9PzWasTsTQ8TZ1HG9ZnA6o83Ztf+XpeLJoq\n9V3w+iU2kwxTeNEHMBUpLQ2oZXpWOKTbONALUz2zClFhtmOj8M+afwXw5wMn\nUE2RvkEnrv5BPuZuDA7La/Pm5WOl9vkOYEtRDrziOAGIVyAiJcgHKAAoLdyD\nG2ecjt+cwCA1spOsu3cPjBJfYqXwKc4m/kg4WFQr/Ug4qSaec745sDk7HP3p\nw1dnUE3pmZU1qM0SZ0DUpr+XOSLCBjYq+EAQMEaHf6JiOgiKOjCLk/aK47dt\nbwA8rDBs6dNhqeDk6FfCgdaDviKFJGQeqrGi7n56PQYdVFOwnsNbg5rfzpSb\nUeyX\r\n=4PbH\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFVlZ3gUFgDPJq5lSAO8ZAsmYDGpzbURSRFV/Qogty29AiAWTqLJj4YsA0e80C3cF5T+2F0SxH7AUit2yuthZPyb4g=="}]},"maintainers":[{"name":"chenjiahan","email":"416417567@163.com"}],"_npmUser":{"name":"chenjiahan","email":"416417567@163.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/rodal_1.7.0_1572140149385_0.7691318320843892"},"_hasShrinkwrap":false},"1.8.0":{"name":"rodal","version":"1.8.0","description":"A React modal with animations.","main":"lib/rodal.js","module":"lib/rodal.esm.js","dependencies":{"classnames":"^2.2.6"},"devDependencies":{"@babel/cli":"^7.8.4","@babel/core":"^7.8.4","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/preset-env":"^7.8.4","@babel/preset-react":"^7.8.3","babel-loader":"^8.0.6","css-loader":"^3.4.2","postcss-loader":"^3.0.0","prop-types":"^15.7.2","react":"^16.12.0","react-dom":"^16.12.0","style-loader":"^1.1.3","webpack":"^4.41.5","webpack-cli":"^3.3.10","webpack-dev-server":"^3.10.2"},"peerDependencies":{"prop-types":"^15.6.0","react":"^16.0.0"},"scripts":{"dev":"webpack-dev-server","build":"webpack -p --hide-modules","lib":"babel src/rodal.js --out-file lib/rodal.js && BABEL_MODULE=es babel src/rodal.js --out-file lib/rodal.esm.js && cp src/rodal.css lib","test":"npm run lib","release":"npm run build && npm run lib && npm publish"},"repository":{"type":"git","url":"git+https://github.com/chenjiahan/rodal.git"},"keywords":["react","modal","animation","react-modal","react-component"],"author":{"name":"neverland"},"license":"MIT","bugs":{"url":"https://github.com/chenjiahan/rodal/issues"},"homepage":"https://github.com/chenjiahan/rodal#readme","gitHead":"af2e1cf53449931771575f881a627635607b7a15","_id":"rodal@1.8.0","_nodeVersion":"12.14.1","_npmVersion":"6.13.4","dist":{"integrity":"sha512-8xg7K3TqJD2/5craUzas1lD3IeN9eevZFEnbJV9c8O8H/8F7xSevWdNIZIDSfYoY9+Koyf+tky6mthQU3kvyhw==","shasum":"590a0acf7fb0154727cd53539fe3b7df0059f190","tarball":"https://registry.npmjs.org/rodal/-/rodal-1.8.0.tgz","fileCount":9,"unpackedSize":188389,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeOSXgCRA9TVsSAnZWagAAAVcP/j1VRKa6TK/hHRbZmVBP\nQ5wsjYm/ukZRJyXj/c9B2ciWEX4i7/UjUEF77T39N73u6U/7RtsIo8IWyzyI\nk64X66zQ0lu9wh6x5G3pvXKwZvOIfxUABLMbqRJLq8F+FmTDGeUP21OysszN\nYzphBRHk1Iy6dB3XPYXM00U5ZZa4BjJo3Xo6wbOX34kMJRvp6PNPMWhH63Hj\nZZROVTYTQRVpRFIUPc9l1tiya3UAIO/bxhkRw5o1AUvvaQ2Nhft3j/oJ2DNX\nrxVJyb/TeAeKbDFo58i6i0F83nHOklIBbizzwt9FVP0d+Bj2soT1iKV4wntX\nqmaEURQVAGr5DRThUwjFCF6XMHm/2OzE16ieSNhIRN3gcjnGjqNnEpNrc5AR\nN6z29ENaJwJ7PUbziXYW7pS9I8o3zRiYqVfwLLxZtr6YLyv0ikwFWfxC4u1z\n2DA57RgEDAELMY2DMfZlqH1/gJ71lEpHSvAVYCr1B1Vsi6D2IF0fbEMsrTCB\nRwZb6wX0BQr7S/LEhYoolquyUKMOIdDo1AGiIE5fBmzmXkISKG6faaqdQIuH\nlOSMODRbuTM3FLufHmXkL9vy/ObdxvWjRFux06yB6dhnY8Jltif3+u0bPsJr\nmmdHiqFbrGOaX0Zr6adQxEhmr9OJhLMNWHfS7e8/Z3tjrBMy+UzzWU7vf7mt\ncE6x\r\n=CdAF\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGFs85elZYErJi8MKYshirotoA/Ij8ILLH6EkaoilAWEAiEA87G3guTXX0kHD8PJvKCP3qzC3kF8z/ONQeKPb0D80cw="}]},"maintainers":[{"name":"chenjiahan","email":"416417567@163.com"}],"_npmUser":{"name":"chenjiahan","email":"416417567@163.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/rodal_1.8.0_1580803551715_0.557618208409884"},"_hasShrinkwrap":false},"1.8.1":{"name":"rodal","version":"1.8.1","description":"A React modal with animations.","main":"lib/rodal.js","module":"lib/rodal.esm.js","dependencies":{"classnames":"^2.2.6"},"devDependencies":{"@babel/cli":"^7.8.4","@babel/core":"^7.8.4","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/preset-env":"^7.8.4","@babel/preset-react":"^7.8.3","babel-loader":"^8.0.6","css-loader":"^3.4.2","postcss-loader":"^3.0.0","prop-types":"^15.7.2","react":"^16.12.0","react-dom":"^16.12.0","style-loader":"^1.1.3","webpack":"^4.41.5","webpack-cli":"^3.3.10","webpack-dev-server":"^3.10.2"},"peerDependencies":{"prop-types":"^15.6.0","react":"^16.0.0"},"scripts":{"dev":"webpack-dev-server","build":"webpack -p --hide-modules","lib":"babel src/rodal.js --out-file lib/rodal.js && BABEL_MODULE=es babel src/rodal.js --out-file lib/rodal.esm.js && cp src/rodal.css lib","test":"npm run lib","release":"npm run build && npm run lib && npm publish"},"repository":{"type":"git","url":"git+https://github.com/chenjiahan/rodal.git"},"keywords":["react","modal","animation","react-modal","react-component"],"author":{"name":"neverland"},"license":"MIT","bugs":{"url":"https://github.com/chenjiahan/rodal/issues"},"homepage":"https://github.com/chenjiahan/rodal#readme","gitHead":"c82410274b4f4c9ce301857e5d7742baccdfacd8","_id":"rodal@1.8.1","_nodeVersion":"12.14.1","_npmVersion":"6.13.4","dist":{"integrity":"sha512-3BpwZrLpaWSDHu8Atzz/S83MkpqpnXL9uGjNPZy1N6V7p4eWWsBSP8er5t+1xV+fZmbGEjLTNo01pUzYHqc7vg==","shasum":"b34b97f00fb4e957184083f84c0e49ace33b3160","tarball":"https://registry.npmjs.org/rodal/-/rodal-1.8.1.tgz","fileCount":9,"unpackedSize":188411,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeQhuVCRA9TVsSAnZWagAATugQAJRdtSkxQ6Jz2gbXXvLS\nomRJkDNgXnGlWZics1Idy5acvBMmZm1gzCAQ8t44cUYoi4bFa0dLXjIhziSv\nR6pyNdWYlWOChN7OoykagCM7x5vuxDnRRwTAC3Kxx573ClZ+YObUJlC8A9Z9\nMD8+ZkE9kwD2M8WwNGJnwXVT9vl7rroePLu2DcWDekm7OkkQTcQ4c/8eeSAC\nDHuy+tyM19qA3NpglGpjdBsRICjNfwJ6Xa8Nu48PpKIj9KSFTQi6xq/mWr8d\nyai5O6HdEsJNBQ50lo+SNpoLdygHirLx/T2P0yZU6N+o/BZ7q4Qj0+PRzwVf\nc8a+hoicGoVeorXZBjAABjrtvEx2VoU/RxNZoVCJVmgB7wFPCgRRXXOlTLJe\n7iGBp8+UmoGl6pq4wuVHjceQ8zrnYI6/Gg2iNdkXvHg5U7h5HC7JpsTFW2s9\nKdyeUtV45nl4YBS17dHaXXpRAbYHJQ39Ww9iVops6ZY1S31hjwrFZbGyXTf5\n69wjLG9UwXoYKaUOg8H4sAffwH2EQ2hdGym5ml1z2GrCKGWjBd3UXwXYsZbV\niAYEOT7iSKv81zOqHMVrRZ0976o6iD4C7g2FMTXFkflHBs4H1jw8I//3/wxr\npZkOJ+PlNB+MorMvp7cvW4MB1RTIFjyfd84VWdBz3rLkCRlVhexPg+cbjUw3\nJJfH\r\n=OTv5\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBaspK4URDpOxnpgOz4P/PDZHVv6HAIysDkTdVnv48HaAiArQu+M1piJhNryImYTPIFPTJPPjZA04jK16bZXdT0aYQ=="}]},"maintainers":[{"name":"chenjiahan","email":"416417567@163.com"}],"_npmUser":{"name":"chenjiahan","email":"416417567@163.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/rodal_1.8.1_1581390740603_0.9273109142346982"},"_hasShrinkwrap":false},"1.8.2":{"name":"rodal","version":"1.8.2","description":"A React modal with animations.","main":"lib/rodal.js","module":"lib/rodal.esm.js","dependencies":{"classnames":"^2.2.6"},"devDependencies":{"@babel/cli":"^7.8.4","@babel/core":"^7.8.4","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/preset-env":"^7.8.4","@babel/preset-react":"^7.8.3","babel-loader":"^8.0.6","css-loader":"^3.4.2","postcss-loader":"^3.0.0","prop-types":"^15.7.2","react":"^16.12.0","react-dom":"^16.12.0","style-loader":"^1.1.3","webpack":"^4.41.5","webpack-cli":"^3.3.10","webpack-dev-server":"^3.10.2"},"peerDependencies":{"prop-types":"^15.6.0","react":"^16.0.0"},"scripts":{"dev":"webpack-dev-server","build":"webpack -p --hide-modules","lib":"babel src/rodal.js --out-file lib/rodal.js && BABEL_MODULE=es babel src/rodal.js --out-file lib/rodal.esm.js && cp src/rodal.css lib","test":"npm run lib","release":"npm run build && npm run lib && npm publish"},"repository":{"type":"git","url":"git+https://github.com/chenjiahan/rodal.git"},"keywords":["react","modal","animation","react-modal","react-component"],"author":{"name":"neverland"},"license":"MIT","bugs":{"url":"https://github.com/chenjiahan/rodal/issues"},"homepage":"https://github.com/chenjiahan/rodal#readme","gitHead":"5862c845d853d1a0f28f847f30b724f2f0756135","_id":"rodal@1.8.2","_nodeVersion":"14.18.1","_npmVersion":"8.1.2","dist":{"integrity":"sha512-Ktp2vW4UinLhS7KmCoSWXy3V46umLyvKwy0ffkrAiSw+MrWlzfrH90vHW7/I5eppTW3lFODLnHVoxin4vTiVnw==","shasum":"76b0ce7004d94d8ac7ba1c0f27febd4cf2a8eca1","tarball":"https://registry.npmjs.org/rodal/-/rodal-1.8.2.tgz","fileCount":9,"unpackedSize":189041,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh6NgZCRA9TVsSAnZWagAA07QQAKMmD5gLaKwML+Dbi11b\nFONwEXNX7kCAMeX7hBi41nhL6QqRfh4M9PW+70Y5K/jfW2xrNC065AgnFWP7\nLwgJArKkkWCRy577gxcU/NRgRMi72t3Y/CKINMuGXaT3iZatzULvsBWhHMu/\nvpR1pSw+RMmlU5IAw2sXDfoUu33/TbipUgB1xTHRHiMHMdV+bhwtnfri/lo4\nW6eg5l/5cggOWd44PlZ+VyfuLkl4Oixpx4/5Zk1ETsyOaObsoP5omLGOBi9n\nrlghDEuLKahk9K0B+zrDQm+EmOA+iU7XyCVni+2zhp4c5lgMm/Coq0ky8FEi\n5RAqwmYWduCYUP+bNAMVsAp8nKa5yCyvzwj70aV/y4Nn7I8wdM7sCEPtoZxy\nlAi45WG8A/DBg7tCjbqjeVU1e/0CC2CJl2giml83Vu+C+sjrLY5skrU2seoT\nLHttDjM/VH2iJo/Ps28ed29pE/LimTw/YmO/5XWo0rWzvfSVEbQ3Q9J1k9KN\nC1NFPku8uCiVHDStLBF9+dIO0sKlcs0EVWch59trOqMjdiMoF2Uf2CnijpIQ\n9rSaMRh9yBQRkDskG1UkGY6qWJu3RGvUs8qzwCXSU3sehErA0795n8vZxP1a\nnvWDm2MPIZ85CsGWlA+f/BzgOmtWCQlRaz+Ou8ChuZDfwRLmP3ntK1PZAZw9\nM7cQ\r\n=ekNq\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGggbrFoUU8srlBqQYOZpI2CMTVPpr8J8Tk+gCxsrYlPAiAB2Fj0vKWah4S/tHQIOYuDSvasXifVVKJtz8qtWWaDLg=="}]},"_npmUser":{"name":"chenjiahan","email":"416417567@163.com"},"directories":{},"maintainers":[{"name":"chenjiahan","email":"416417567@163.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/rodal_1.8.2_1642649625178_0.6657326110409936"},"_hasShrinkwrap":false},"1.8.3":{"name":"rodal","version":"1.8.3","description":"A React modal with animations.","main":"lib/rodal.js","module":"lib/rodal.esm.js","dependencies":{"classnames":"^2.2.6"},"devDependencies":{"@babel/cli":"^7.8.4","@babel/core":"^7.8.4","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/preset-env":"^7.8.4","@babel/preset-react":"^7.8.3","babel-loader":"^8.0.6","css-loader":"^3.4.2","postcss-loader":"^3.0.0","prop-types":"^15.7.2","react":"^16.12.0","react-dom":"^16.12.0","style-loader":"^1.1.3","webpack":"^4.41.5","webpack-cli":"^3.3.10","webpack-dev-server":"^3.10.2"},"peerDependencies":{"prop-types":"^15.6.0","react":">= ^16.0.0"},"scripts":{"dev":"webpack-dev-server","build":"webpack -p --hide-modules","lib":"babel src/rodal.js --out-file lib/rodal.js && BABEL_MODULE=es babel src/rodal.js --out-file lib/rodal.esm.js && cp src/rodal.css lib","test":"npm run lib","release":"npm run build && npm run lib && npm publish"},"repository":{"type":"git","url":"git+https://github.com/chenjiahan/rodal.git"},"keywords":["react","modal","animation","react-modal","react-component"],"author":{"name":"neverland"},"license":"MIT","bugs":{"url":"https://github.com/chenjiahan/rodal/issues"},"homepage":"https://github.com/chenjiahan/rodal#readme","gitHead":"3c69af5dfd4f3880856c3200b66d530673de9de1","_id":"rodal@1.8.3","_nodeVersion":"14.18.1","_npmVersion":"8.1.2","dist":{"integrity":"sha512-N7eilcq4vVN9pgU3xTJ7kxUbvRPxAQrB29grZVejxH/XVsg5ILSfN/kzZNmYR1O6srNnmGgZA15ITwYjeC7rgw==","shasum":"19f016a48374fd4bb03e2b6f761559955c2b8c72","tarball":"https://registry.npmjs.org/rodal/-/rodal-1.8.3.tgz","fileCount":9,"unpackedSize":189044,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh9gNFCRA9TVsSAnZWagAArr8P/ik3bLWojuYhSrP/Usgp\nyk+0tumJuvzf7yICd5lWh8siLg2m9tuAyLnffnD1PhtatU5CtIAPPfda54MF\nNj8R/gkR/kOaK8ucpUmzPygWz9HL+uFqn7lGTSCwYfj9NE4NCgE8CZaw/dJi\naykWcNpT0089BjGhoiGs6hUrCO/x+0s7RG1J9BGmL/TbmL/DHbIclrUXYADA\nly0vzBK/0XkPSfVQS79ATRLB4n16WKFiHZV4rqIayMbekQtMCEKZJYfeX5nY\n7onuvLLxxf7V/MlAJzv6fjdk6snCr2GTRqzWXlhRk6751nopznIWnkQL9HjT\nlJVKtN6XplC6xjSNDLr7Xy4deihCsFuBLHtqUbEGC3o5zdY+6lDFgJLBAQ9A\n/ICnmO6waKHowVmZ2+iL1VvwavblxnIwXFCOG6w0phy+fPPfFuW2zo9+zod1\nD69XaFLDh9gFMUg1HKr0kM7B2byYG25lpwN+q3pNz1tMZ7MDSdkqya9RfImi\n5S2Air0o4YoOdkA88CHpL+bZ3Gt5y4sd+D2GEGCbDMcbdi8OXtD/ZIt7d1d4\nSK+y7vgo0COXvLlD8spvjBjdCxa2ZyWjYGqnSxamb4BxnfW8CeOQW5Odh35Y\nbO9k+2xJEssIm3+XbcyzlMS6H0WbFg6LXAW9MhbNjYKi/M80dAIIozwjQbMV\nV0p+\r\n=xRit\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC/uxctChBBNmqVE3es2QwTmZ3mw3bMur133GPr8ZTeAgIhAIFA+n0zgwi5SN8y5nAbezwrEPu5xMR+kryJ1hw92UrM"}]},"_npmUser":{"name":"chenjiahan","email":"416417567@163.com"},"directories":{},"maintainers":[{"name":"chenjiahan","email":"416417567@163.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/rodal_1.8.3_1643512645070_0.09717284196194775"},"_hasShrinkwrap":false},"2.0.0":{"name":"rodal","version":"2.0.0","description":"A React modal with animations.","main":"lib/rodal.js","module":"lib/rodal.esm.js","dependencies":{"prop-types":"^15.6.0","classnames":"^2.2.6"},"devDependencies":{"@babel/cli":"^7.8.4","@babel/core":"^7.8.4","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/preset-env":"^7.8.4","@babel/preset-react":"^7.8.3","babel-loader":"^8.0.6","css-loader":"^3.4.2","postcss-loader":"^3.0.0","prop-types":"^15.7.2","react":"^18.0.0","react-dom":"^18.0.0","style-loader":"^1.1.3","webpack":"^4.41.5","webpack-cli":"^3.3.10","webpack-dev-server":"^3.10.2"},"peerDependencies":{"react":">= ^17.0.0"},"scripts":{"dev":"webpack-dev-server","build":"webpack -p --hide-modules","lib":"babel src/rodal.js --out-file lib/rodal.js && BABEL_MODULE=es babel src/rodal.js --out-file lib/rodal.esm.js && cp src/rodal.css lib","test":"npm run lib","release":"npm run build && npm run lib && npm publish"},"repository":{"type":"git","url":"git+https://github.com/chenjiahan/rodal.git"},"keywords":["react","modal","animation","react-modal","react-component"],"author":{"name":"neverland"},"license":"MIT","bugs":{"url":"https://github.com/chenjiahan/rodal/issues"},"homepage":"https://github.com/chenjiahan/rodal#readme","gitHead":"3f2b05357d4799896f975b383976a45abd5d5bc9","_id":"rodal@2.0.0","_nodeVersion":"14.20.0","_npmVersion":"6.14.17","dist":{"integrity":"sha512-xLiyEZbOtpbADk0YHbmZ02XtPIO78opgWAY2cL9i6ChUaFySzwUZTueqSFKv6Z9p9zET+mOsn88g4vKCVknOcQ==","shasum":"1ffa0c3867b3fabf7119644437b916332d3b554e","tarball":"https://registry.npmjs.org/rodal/-/rodal-2.0.0.tgz","fileCount":9,"unpackedSize":203221,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDOQ7TD/ic3wT9iGYpaLllsvs6UfyK9ely+nG/8v2hY4AIgKwwM+29BfE2U/REqFVpQXBewd9emzEGl04Vt8T3qzuE="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjFzOsACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqF5xAAnIJpXrIBIzYIqPTKPzjIPo3p9tMxlaEkETKrpR9a/EofhQ49\r\nulR5u+lC0ZXnZ3DDi1z/idoIrfEFNx2Xl5TwyOtptydm+COPd/HT5Gwm6EHc\r\ndb35owRWyseZ9QGo4LNgvNnJ6nBY1y734qeEobjUzlV0M0adVq58ab/QmvXq\r\n96aeZ4MQtxTKQ0pztsoxLbMaafsp1lNQK4aspAERmVo5HLar8ZZ1JLtPj3LF\r\nvVc+Lo0OzuQ5s9tY31seF2jtFHjlo/kJthY2XBVX8ucsgnnJyErB5nscsRq3\r\n5cBa7rVNtyb9/mobIRqkY1Gfgf2ww9cpapuiPfG/Wr+KlXS/ADsiBLQCJTWm\r\nyuNYs4+qleuHwLo1LXLznrBaTOFCy6xyWHZgeEjSEEe9X7DBVn3PkIJe8I8a\r\n1WKW/bYxL/JYXifjuLDF14Pp99ZTrvEK1eg2qTRRNPhMb83AKcwKAlMI3vwh\r\nQVpCshZU6NenLTOMsqTXQw/RXz7Jw8Vtq6B9492+PO/znXeW7abht2eG0S0u\r\ng/zz/rsxtWoSL3bKKwHLvjIrqZe4ZeuW7rDRglnszethgyCeHTm+1P6tJcS4\r\nX76Hx4o7AMFcZYNyAv4B16RdQPDbkZajWED0mgIUkeTAJbpcn9/ftYJP73aO\r\nm+PNV+YMeqfEUWhIfeeE0/B1sl2SdwhFhcI=\r\n=68CS\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"chenjiahan","email":"416417567@163.com"},"directories":{},"maintainers":[{"name":"chenjiahan","email":"416417567@163.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/rodal_2.0.0_1662464939833_0.49768110492700113"},"_hasShrinkwrap":false},"2.0.1":{"name":"rodal","version":"2.0.1","description":"A React modal with animations.","main":"lib/rodal.js","module":"lib/rodal.esm.js","dependencies":{"prop-types":"^15.6.0","classnames":"^2.2.6"},"devDependencies":{"@babel/cli":"^7.8.4","@babel/core":"^7.8.4","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/preset-env":"^7.8.4","@babel/preset-react":"^7.8.3","babel-loader":"^8.0.6","css-loader":"^3.4.2","postcss-loader":"^3.0.0","prop-types":"^15.7.2","react":"^18.0.0","react-dom":"^18.0.0","style-loader":"^1.1.3","webpack":"^4.41.5","webpack-cli":"^3.3.10","webpack-dev-server":"^3.10.2"},"peerDependencies":{"react":">= ^17.0.0 || >= ^18.0.0"},"publishConfig":{"registry":"https://registry.npmjs.org/"},"scripts":{"dev":"webpack-dev-server","build":"webpack -p --hide-modules","lib":"babel src/rodal.js --out-file lib/rodal.js && BABEL_MODULE=es babel src/rodal.js --out-file lib/rodal.esm.js && cp src/rodal.css lib","test":"npm run lib","release":"npm run build && npm run lib && npm publish"},"repository":{"type":"git","url":"git+https://github.com/chenjiahan/rodal.git"},"keywords":["react","modal","animation","react-modal","react-component"],"author":{"name":"neverland"},"license":"MIT","bugs":{"url":"https://github.com/chenjiahan/rodal/issues"},"homepage":"https://github.com/chenjiahan/rodal#readme","gitHead":"a62b5c1f569dfe30c6cfc129d4f63d5162736d9e","_id":"rodal@2.0.1","_nodeVersion":"16.18.0","_npmVersion":"7.24.2","dist":{"integrity":"sha512-nb+Zn8TcIvRVNr3r4gJUd+zzxhkL3rEXu+npudvT/wJ0ukPhpMLCgQsUwhj9Kh2Via1uZrf3cQZMNiqt6n0i2g==","shasum":"87309fe371c1efe9190f95e4a77cfab65609e97f","tarball":"https://registry.npmjs.org/rodal/-/rodal-2.0.1.tgz","fileCount":9,"unpackedSize":203241,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBYzNHy1WuwfIl9SQFGHfx774/umqsg/1zgquzw2N60YAiAMU4/iEyl14z9iHwLWTuN7SNyY+kA26qObAzgrPWKsfg=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjlHbMACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpRWBAAgzZ4TZrn4/wmqKOe0Ihfym/BJva9/Cy7ZD6FeXom8/2/mPdp\r\naFL1TBbwB3wGMtasiZAP1pZIV8+u2F2EmL8/w+twanSyRWGkFcFGXS92lWQV\r\nLiCacbgARVeB5h2+3sR0vW1PqqBE+sKHNr8/y8W2ISzFB+PY0ZtzeACf1gdW\r\nFyN4xMHM67aUpKHy+YzPkrRWfD+2ftn/AgIdXzwxyhxMKlPhMESY8xFpFkHE\r\nht5vTQeZP1Ciy56EuLBoKEBKCjSuz1vU0hWTCm29kS0kP4r4NNIOqTnIBXWA\r\nVnYaX/hdHs0qtgEugoUpR8cgIltHTCwWdF88YllHa3oS74g8AsFaeVpQC3Nx\r\nWY9DGgKsA7cxIr1Csj/sYAo8icI3JypI568ScKj6xp0TOQulEaVYN9gDFhPI\r\nKNe+Y+4WYMxZh/GJEWW7yzmMLJfzYk9Wfm0i7Jxko5n6Gg7YbFItshl0t+K8\r\nboK8RzRvO0UO+ARqf+0+2XV1swSVlnkt0kwP0SqoAXi3VZifPyz0lb3QazTm\r\nx0oP73+okcrozkcM2RFb+dNs0RzzLVy0T35Euuymgd6EZgf/+03jvmbscO5a\r\n/dELzA24ykFG4yAp7BUecx+WI521mCeWLuPD+6hHuiAgLEv18Un6eccS8OXf\r\nN3SwNt1V6XKXgV59h20B5FCUTOj2XUK+kqw=\r\n=QJMd\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"chenjiahan","email":"416417567@163.com"},"directories":{},"maintainers":[{"name":"chenjiahan","email":"416417567@163.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/rodal_2.0.1_1670674124410_0.9298399048121384"},"_hasShrinkwrap":false},"2.1.0":{"name":"rodal","version":"2.1.0","description":"A React modal with animations.","main":"lib/rodal.js","module":"lib/rodal.esm.js","types":"./index.d.ts","publishConfig":{"registry":"https://registry.npmjs.org/"},"scripts":{"dev":"webpack-dev-server","build":"webpack -p --hide-modules","lib":"babel src/rodal.js --out-file lib/rodal.js && BABEL_MODULE=es babel src/rodal.js --out-file lib/rodal.esm.js && cp src/rodal.css lib","test":"npm run lib","release":"npm run build && npm run lib && npm publish"},"repository":{"type":"git","url":"git+https://github.com/chenjiahan/rodal.git"},"keywords":["react","modal","animation","react-modal","react-component"],"author":{"name":"neverland"},"license":"MIT","bugs":{"url":"https://github.com/chenjiahan/rodal/issues"},"homepage":"https://github.com/chenjiahan/rodal#readme","dependencies":{"prop-types":"^15.6.0","classnames":"^2.2.6"},"devDependencies":{"@babel/cli":"^7.8.4","@babel/core":"^7.8.4","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/preset-env":"^7.8.4","@babel/preset-react":"^7.8.3","babel-loader":"^8.0.6","css-loader":"^3.4.2","postcss-loader":"^3.0.0","prop-types":"^15.7.2","react":"^18.0.0","react-dom":"^18.0.0","style-loader":"^1.1.3","webpack":"^4.41.5","webpack-cli":"^3.3.10","webpack-dev-server":"^3.10.2"},"peerDependencies":{"react":">= ^17.0.0 || >= ^18.0.0"},"gitHead":"24257ad030b270313731e76039164302672beed8","_id":"rodal@2.1.0","_nodeVersion":"16.19.1","_npmVersion":"8.19.3","dist":{"integrity":"sha512-CsxmmRjDxdQ3AxYlgemwQqGEVL+zVnZoj9Vu0sADvE7rU4WfCJxgo75/ZbzR53dEIdOix6RearSwLPhMbSzi/w==","shasum":"eda57d6315fc86c3d14b84154ee50149fc02440d","tarball":"https://registry.npmjs.org/rodal/-/rodal-2.1.0.tgz","fileCount":11,"unpackedSize":204077,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD3i/JWSOieFGuGN+j0Hjz3UinT7tkQ+Y1wvoA5UGyjDgIhAJRic/joK78RiTzOh7XzdcflCz2rny7tTXOFv48yvERd"}]},"_npmUser":{"name":"chenjiahan","email":"416417567@163.com"},"directories":{},"maintainers":[{"name":"chenjiahan","email":"416417567@163.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/rodal_2.1.0_1689555011892_0.7041938553992508"},"_hasShrinkwrap":false}},"homepage":"https://github.com/chenjiahan/rodal#readme","keywords":["react","modal","animation","react-modal","react-component"],"repository":{"type":"git","url":"git+https://github.com/chenjiahan/rodal.git"},"author":{"name":"neverland"},"bugs":{"url":"https://github.com/chenjiahan/rodal/issues"},"license":"MIT","readmeFilename":"README.md","users":{"chenjiahan":true,"ebuster":true,"abuelwafa":true,"ayoola_moore":true}}