{"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"jljsj33","email":"155259966@qq.com"}],"keywords":["react","react-component","react-queue-anim","queue-anim"],"dist-tags":{"latest":"1.2.0"},"author":{"name":"afc163@gmail.com"},"description":"Queue animation component for react","readme":"# rc-queue-anim\n---\n\nAnimate React Component in queue, thanks to [rc-animate](https://github.com/react-component/animate) and [enter-animation](https://github.com/jljsj33/enter-animation).\n\n[![NPM version][npm-image]][npm-url]\n[![build status][travis-image]][travis-url]\n[![Test coverage][coveralls-image]][coveralls-url]\n[![gemnasium deps][gemnasium-image]][gemnasium-url]\n[![node version][node-image]][node-url]\n[![npm download][download-image]][download-url]\n\n[npm-image]: http://img.shields.io/npm/v/rc-queue-anim.svg?style=flat-square\n[npm-url]: http://npmjs.org/package/rc-queue-anim\n[travis-image]: https://img.shields.io/travis/react-component/queue-anim.svg?style=flat-square\n[travis-url]: https://travis-ci.org/react-component/queue-anim\n[coveralls-image]: https://img.shields.io/coveralls/react-component/queue-anim.svg?style=flat-square\n[coveralls-url]: https://coveralls.io/r/react-component/queue-anim?branch=master\n[gemnasium-image]: http://img.shields.io/gemnasium/react-component/queue-anim.svg?style=flat-square\n[gemnasium-url]: https://gemnasium.com/react-component/queue-anim\n[node-image]: https://img.shields.io/badge/node.js-%3E=_0.10-green.svg?style=flat-square\n[node-url]: http://nodejs.org/download/\n[download-image]: https://img.shields.io/npm/dm/rc-queue-anim.svg?style=flat-square\n[download-url]: https://npmjs.org/package/rc-queue-anim\n\n## Example\n\nhttp://react-component.github.io/queue-anim/examples/\n\n![](https://t.alipayobjects.com/images/rmsweb/T12PliXjXgXXXXXXXX.gif)\n\n## Usage\n\n```js\nimport QueueAnim from 'rc-queue-anim';\nimport React from 'react';\nimport ReactDom from 'react-dom';\n\nReactDom.render(\n  <QueueAnim>\n    <div key=\"1\">enter in queue</div>\n    <div key=\"2\">enter in queue</div>\n    <div key=\"3\">enter in queue</div>\n  </QueueAnim>\n, mountNode);\n```\n\n## Install\n\n[![rc-queue-anim](https://nodei.co/npm/rc-queue-anim.png)](https://npmjs.org/package/rc-queue-anim)\n\n## Browser Support\n\n|![IE](https://raw.github.com/alrra/browser-logos/master/internet-explorer/internet-explorer_48x48.png) | ![Chrome](https://raw.github.com/alrra/browser-logos/master/chrome/chrome_48x48.png) | ![Firefox](https://raw.github.com/alrra/browser-logos/master/firefox/firefox_48x48.png) | ![Opera](https://raw.github.com/alrra/browser-logos/master/opera/opera_48x48.png) | ![Safari](https://raw.github.com/alrra/browser-logos/master/safari/safari_48x48.png)|\n| --- | --- | --- | --- | --- |\n| IE 8+ ✔ | Chrome 31.0+ ✔ | Firefox 31.0+ ✔ | Opera 30.0+ ✔ | Safari 7.0+ ✔ |\n\n## API\n\n| props      | type           | default | description    |\n|------------|----------------|---------|----------------|\n| type       | string / array | `right` | Animation Styles <br/>`alpha` `left` `right` `top` `bottom` `scale` `scaleBig` `scaleX` `scaleY`|\n| animConfig | object / array | null    | Custom Velocity config, See below for more details [animConfig](#animConfig) |\n| delay      | number / array | 0       | delay of animation |\n| duration   | number / array | 450     | duration of animation  |\n| interval   | number / array | 100      | interval of duration |\n| leaveReverse | boolean      | false   | reverse animation order at leave |\n| ease       | string / array | `easeOutQuart` | animation easing config like `'ease'`, `['easeIn', 'easeOut']`, `[[.42,0,.58,1]`, [.42,0,.58,1]]: [more](http://julian.com/research/velocity/#easing) |\n| appear     | boolean        |  true   | whether support appear anim |\n| component  | string | `div` | component tag |\n| componentProps | Object | null | component tag props |\n| animatingClassName | array | `['queue-anim-entering', 'queue-anim-leaving']` | className to every element of animating |\n| onEnd      | function      |   null    |  animate end callback({ key, type }), type: `enter` or `leave` |\n\n> Above props support array format, like `['left', 'top']`, the secord item is leave config. [Demo](http://react-component.github.io/queue-anim/examples/enter-leave.html)\n\nYou must provide the key attribute for all children of QueueAnim, children would not peform any animation without key.\n\n### animConfig\n\n**Data fall into three categories：**\n\n- Custom set start: `{ opacity:[1, 0] }` ；\n<br/> default；\n<br/>type: `{ opacity: Array<end, start> }`；\n<br/>leave automatic reverse: `{ opacity: Array<start, end> }`；\n\n- Custom: `{ opacity: 0 }`；\n<br/> Start position is not set。\n\n- Array: `[{ opacity:[1, 0] }, { opacity:[1, 0] }]`；\n<br/> type: `[{ opacity: Array<end, start> }, { opacity: Array<start, end>}]`\n\n## Development\n\n```\nnpm install\nnpm start\n```\n","repository":{"type":"git","url":"git+https://github.com/react-component/queue-anim.git"},"users":{"smoojitter":true,"arcticicestudio":true},"bugs":{"url":"https://github.com/react-component/queue-anim/issues"},"versions":{"0.9.0":{"name":"rc-queue-anim","version":"0.9.0","description":"Queue animation component for react","keywords":["react","react-component","react-queue-anim","queue-anim"],"homepage":"https://github.com/react-component/queue-anim","author":{"name":"afc163@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/queue-anim.git"},"bugs":{"url":"https://github.com/react-component/queue-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"~0.3.1","jquery":"~1.11.3","precommit-hook":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"~0.14.0","react-addons-test-utils":"~0.14.0","react-dom":"~0.14.0","react-router":"~1.0.0-rc1"},"precommit":["lint"],"dependencies":{"react-dom":"~0.14.0","velocity-animate":"~1.2.3"},"gitHead":"32e456adb6ae9c4a65523f07ed8a893cbb5c1313","_id":"rc-queue-anim@0.9.0","_shasum":"8888bd0f540b7a6e122e9bcce85da0db38cf13b7","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"}],"dist":{"shasum":"8888bd0f540b7a6e122e9bcce85da0db38cf13b7","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-queue-anim/-/rc-queue-anim-0.9.0.tgz"},"directories":{}},"0.9.1":{"name":"rc-queue-anim","version":"0.9.1","description":"Queue animation component for react","keywords":["react","react-component","react-queue-anim","queue-anim"],"homepage":"https://github.com/react-component/queue-anim","author":{"name":"afc163@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/queue-anim.git"},"bugs":{"url":"https://github.com/react-component/queue-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"~0.3.1","jquery":"~1.11.3","precommit-hook":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"~0.14.0","react-addons-test-utils":"~0.14.0","react-dom":"~0.14.0","react-router":"~1.0.0-rc1"},"precommit":["lint"],"dependencies":{"velocity-animate":"~1.2.3"},"gitHead":"d66af298670611208a92d228bd3810e5d288b01f","_id":"rc-queue-anim@0.9.1","_shasum":"a3998d29881797ffdf3529fc31bf9e60e1faae41","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"}],"dist":{"shasum":"a3998d29881797ffdf3529fc31bf9e60e1faae41","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-queue-anim/-/rc-queue-anim-0.9.1.tgz"},"directories":{}},"0.9.2":{"name":"rc-queue-anim","version":"0.9.2","description":"Queue animation component for react","keywords":["react","react-component","react-queue-anim","queue-anim"],"homepage":"https://github.com/react-component/queue-anim","author":{"name":"afc163@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/queue-anim.git"},"bugs":{"url":"https://github.com/react-component/queue-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"~0.3.1","jquery":"~1.11.3","precommit-hook":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"~0.14.0","react-addons-test-utils":"~0.14.0","react-dom":"~0.14.0","react-router":"~1.0.0-rc1"},"precommit":["lint"],"dependencies":{"velocity-animate":"~1.2.3"},"gitHead":"a19ca3a4c2613b71f5b02df59f21d2666cce5a83","_id":"rc-queue-anim@0.9.2","_shasum":"4baff0edf9538fa595d51faa5bd036c72261eed2","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"jljsj33","email":"155259966@qq.com"}],"dist":{"shasum":"4baff0edf9538fa595d51faa5bd036c72261eed2","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-queue-anim/-/rc-queue-anim-0.9.2.tgz"},"directories":{}},"0.9.3":{"name":"rc-queue-anim","version":"0.9.3","description":"Queue animation component for react","keywords":["react","react-component","react-queue-anim","queue-anim"],"homepage":"https://github.com/react-component/queue-anim","author":{"name":"afc163@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/queue-anim.git"},"bugs":{"url":"https://github.com/react-component/queue-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"~0.3.1","jquery":"~1.11.3","precommit-hook":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"~0.14.0","react-addons-test-utils":"~0.14.0","react-dom":"~0.14.0","react-router":"~1.0.0-rc1"},"precommit":["lint"],"dependencies":{"velocity-animate":"~1.2.3"},"gitHead":"abd937a015a4b3b51da402cccc6f26fcc421bda0","_id":"rc-queue-anim@0.9.3","_shasum":"d3df42f1736c55b09ef18cf0f11e7015861492fa","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"jljsj33","email":"155259966@qq.com"}],"dist":{"shasum":"d3df42f1736c55b09ef18cf0f11e7015861492fa","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-queue-anim/-/rc-queue-anim-0.9.3.tgz"},"directories":{}},"0.10.0":{"name":"rc-queue-anim","version":"0.10.0","description":"Queue animation component for react","keywords":["react","react-component","react-queue-anim","queue-anim"],"homepage":"https://github.com/react-component/queue-anim","author":{"name":"afc163@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/queue-anim.git"},"bugs":{"url":"https://github.com/react-component/queue-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"~0.3.1","jquery":"~1.11.3","precommit-hook":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"~0.14.0","react-addons-test-utils":"~0.14.0","react-dom":"~0.14.0","react-router":"~1.0.0-rc1"},"precommit":["lint"],"dependencies":{"velocity-animate":"~1.2.3"},"gitHead":"7eb0fcb30c1acef0636a9cc6d158e8b7e6175664","_id":"rc-queue-anim@0.10.0","_shasum":"bff5243ee457f5a5526b7eb9f0555c310e075d1d","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"jljsj33","email":"155259966@qq.com"}],"dist":{"shasum":"bff5243ee457f5a5526b7eb9f0555c310e075d1d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-queue-anim/-/rc-queue-anim-0.10.0.tgz"},"directories":{}},"0.10.1":{"name":"rc-queue-anim","version":"0.10.1","description":"Queue animation component for react","keywords":["react","react-component","react-queue-anim","queue-anim"],"homepage":"https://github.com/react-component/queue-anim","author":{"name":"afc163@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/queue-anim.git"},"bugs":{"url":"https://github.com/react-component/queue-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"~0.3.1","jquery":"~1.11.3","precommit-hook":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"~0.14.0","react-addons-test-utils":"~0.14.0","react-dom":"~0.14.0","react-router":"~1.0.0-rc1"},"precommit":["lint"],"dependencies":{"velocity-animate":"~1.2.3"},"gitHead":"84a29271b9e08c3fe576fa15c05125041db3ea02","_id":"rc-queue-anim@0.10.1","_shasum":"5e02a99600496e5ee45849216b17ade90b75fbe0","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"jljsj33","email":"155259966@qq.com"}],"dist":{"shasum":"5e02a99600496e5ee45849216b17ade90b75fbe0","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-queue-anim/-/rc-queue-anim-0.10.1.tgz"},"directories":{}},"0.10.2":{"name":"rc-queue-anim","version":"0.10.2","description":"Queue animation component for react","keywords":["react","react-component","react-queue-anim","queue-anim"],"homepage":"https://github.com/react-component/queue-anim","author":{"name":"afc163@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/queue-anim.git"},"bugs":{"url":"https://github.com/react-component/queue-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"~0.3.1","jquery":"~1.11.3","precommit-hook":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"~0.14.0","react-addons-test-utils":"~0.14.0","react-dom":"~0.14.0","react-router":"~1.0.0-rc1"},"precommit":["lint"],"dependencies":{"velocity-animate":"~1.2.3"},"gitHead":"61ce72b6d30e85f56ab20a1226fc61fff480e0ff","_id":"rc-queue-anim@0.10.2","_shasum":"6379a01f071d6ea56332c5db2a5f76a80424f972","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"jljsj33","email":"155259966@qq.com"}],"dist":{"shasum":"6379a01f071d6ea56332c5db2a5f76a80424f972","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-queue-anim/-/rc-queue-anim-0.10.2.tgz"},"directories":{}},"0.10.3":{"name":"rc-queue-anim","version":"0.10.3","description":"Queue animation component for react","keywords":["react","react-component","react-queue-anim","queue-anim"],"homepage":"https://github.com/react-component/queue-anim","author":{"name":"afc163@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/queue-anim.git"},"bugs":{"url":"https://github.com/react-component/queue-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"~0.3.1","jquery":"~1.11.3","precommit-hook":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"~0.14.0","react-addons-test-utils":"~0.14.0","react-dom":"~0.14.0","react-router":"~1.0.0-rc1"},"precommit":["lint"],"dependencies":{"velocity-animate":"~1.2.3"},"gitHead":"ba4966a23092680de475527bfa01c51ad5dcdb2e","_id":"rc-queue-anim@0.10.3","_shasum":"95527827e6ecdca2c55df541cd3f314939654a73","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"jljsj33","email":"155259966@qq.com"}],"dist":{"shasum":"95527827e6ecdca2c55df541cd3f314939654a73","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-queue-anim/-/rc-queue-anim-0.10.3.tgz"},"directories":{}},"0.10.4":{"name":"rc-queue-anim","version":"0.10.4","description":"Queue animation component for react","keywords":["react","react-component","react-queue-anim","queue-anim"],"homepage":"https://github.com/react-component/queue-anim","author":{"name":"afc163@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/queue-anim.git"},"bugs":{"url":"https://github.com/react-component/queue-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"~0.3.1","jquery":"~1.11.3","precommit-hook":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"~0.14.0","react-addons-test-utils":"~0.14.0","react-dom":"~0.14.0","react-router":"~1.0.0-rc1"},"precommit":["lint"],"dependencies":{"velocity-animate":"~1.2.3"},"gitHead":"704ac9df270bcbdba73c4aaa6fa7b39bf93d793c","_id":"rc-queue-anim@0.10.4","_shasum":"e70e6351a1f5688ecf95afd6270d632e6fde2a01","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"jljsj33","email":"155259966@qq.com"}],"dist":{"shasum":"e70e6351a1f5688ecf95afd6270d632e6fde2a01","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-queue-anim/-/rc-queue-anim-0.10.4.tgz"},"directories":{}},"0.10.5":{"name":"rc-queue-anim","version":"0.10.5","description":"Queue animation component for react","keywords":["react","react-component","react-queue-anim","queue-anim"],"homepage":"https://github.com/react-component/queue-anim","author":{"name":"afc163@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/queue-anim.git"},"bugs":{"url":"https://github.com/react-component/queue-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"~0.3.1","jquery":"~1.11.3","precommit-hook":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"~0.14.0","react-addons-test-utils":"~0.14.0","react-dom":"~0.14.0","react-router":"~1.0.0-rc1"},"precommit":["lint"],"dependencies":{"velocity-animate":"~1.2.3"},"gitHead":"1a974c7435f338219e80b4e5046f502065fe2314","_id":"rc-queue-anim@0.10.5","_shasum":"863396c7cb6a4841cfe5f1af61e3a340d6fdd9ea","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"jljsj33","email":"155259966@qq.com"}],"dist":{"shasum":"863396c7cb6a4841cfe5f1af61e3a340d6fdd9ea","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-queue-anim/-/rc-queue-anim-0.10.5.tgz"},"directories":{}},"0.10.6":{"name":"rc-queue-anim","version":"0.10.6","description":"Queue animation component for react","keywords":["react","react-component","react-queue-anim","queue-anim"],"homepage":"https://github.com/react-component/queue-anim","author":{"name":"afc163@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/queue-anim.git"},"bugs":{"url":"https://github.com/react-component/queue-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"~0.3.1","jquery":"~1.11.3","precommit-hook":"1.x","rc-server":"3.x","rc-tools":"4.x","rc-dialog":"~5.2.1","react":"~0.14.0","react-addons-test-utils":"~0.14.0","react-dom":"~0.14.0","react-router":"~1.0.0-rc1"},"precommit":["lint"],"dependencies":{"velocity-animate":"~1.2.3"},"gitHead":"6c6ffaea7c8763e4bca4d14a3de3f801ff4c2c30","_id":"rc-queue-anim@0.10.6","_shasum":"31c77884c56de5e9ce60175f4f2eed5e28ac704d","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"31c77884c56de5e9ce60175f4f2eed5e28ac704d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-queue-anim/-/rc-queue-anim-0.10.6.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"jljsj33","email":"155259966@qq.com"}],"directories":{}},"0.11.0":{"name":"rc-queue-anim","version":"0.11.0","description":"Queue animation component for react","keywords":["react","react-component","react-queue-anim","queue-anim"],"homepage":"https://github.com/react-component/queue-anim","author":{"name":"afc163@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/queue-anim.git"},"bugs":{"url":"https://github.com/react-component/queue-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"~0.3.1","jquery":"~1.11.3","precommit-hook":"1.x","rc-server":"3.x","rc-tools":"4.x","rc-dialog":"~5.2.1","react":"~0.14.0","react-addons-test-utils":"~0.14.0","react-dom":"~0.14.0","react-router":"~1.0.0-rc1"},"precommit":["lint"],"dependencies":{"velocity-animate":"~1.2.3"},"gitHead":"3ec2b3e84d587db7f85717a64d79988581b41069","_id":"rc-queue-anim@0.11.0","_shasum":"41fac7379750168f0f1a9db86de51f338c11a675","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"41fac7379750168f0f1a9db86de51f338c11a675","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-queue-anim/-/rc-queue-anim-0.11.0.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"jljsj33","email":"155259966@qq.com"}],"directories":{}},"0.11.2":{"name":"rc-queue-anim","version":"0.11.2","description":"Queue animation component for react","keywords":["react","react-component","react-queue-anim","queue-anim"],"homepage":"https://github.com/react-component/queue-anim","author":{"name":"afc163@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/queue-anim.git"},"bugs":{"url":"https://github.com/react-component/queue-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"~0.3.1","jquery":"~1.11.3","precommit-hook":"1.x","rc-server":"3.x","rc-tools":"4.x","rc-dialog":"~5.2.1","react":"~0.14.0","react-addons-test-utils":"~0.14.0","react-dom":"~0.14.0","react-router":"~1.0.0-rc1"},"precommit":["lint"],"dependencies":{"velocity-animate":"~1.2.3"},"gitHead":"954cff2eef5dda6283fedddf5b2004b85a026cf5","_id":"rc-queue-anim@0.11.2","_shasum":"3cfdd330b210b2b2824f9fbffa56ddb466eba383","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"3cfdd330b210b2b2824f9fbffa56ddb466eba383","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-queue-anim/-/rc-queue-anim-0.11.2.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"jljsj33","email":"155259966@qq.com"}],"directories":{}},"0.11.3":{"name":"rc-queue-anim","version":"0.11.3","description":"Queue animation component for react","keywords":["react","react-component","react-queue-anim","queue-anim"],"homepage":"https://github.com/react-component/queue-anim","author":{"name":"afc163@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/queue-anim.git"},"bugs":{"url":"https://github.com/react-component/queue-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"~0.3.1","jquery":"~1.11.3","precommit-hook":"1.x","rc-server":"3.x","rc-tools":"4.x","rc-dialog":"~5.2.1","react":"~0.14.0","react-addons-test-utils":"~0.14.0","react-dom":"~0.14.0","react-router":"~1.0.0-rc1"},"precommit":["lint"],"dependencies":{"velocity-animate":"~1.2.3"},"gitHead":"fcb9907da03744f11a10b61e320170c2722dcbf5","_id":"rc-queue-anim@0.11.3","_shasum":"13eb30ac798ffbc3c6328c5c4721c498b440d27e","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"13eb30ac798ffbc3c6328c5c4721c498b440d27e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-queue-anim/-/rc-queue-anim-0.11.3.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"jljsj33","email":"155259966@qq.com"}],"directories":{}},"0.11.4":{"name":"rc-queue-anim","version":"0.11.4","description":"Queue animation component for react","keywords":["react","react-component","react-queue-anim","queue-anim"],"homepage":"https://github.com/react-component/queue-anim","author":{"name":"afc163@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/queue-anim.git"},"bugs":{"url":"https://github.com/react-component/queue-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"~0.3.1","jquery":"~1.11.3","precommit-hook":"1.x","rc-server":"3.x","rc-tools":"4.x","rc-dialog":"~5.2.1","react":"~0.14.0","react-addons-test-utils":"~0.14.0","react-dom":"~0.14.0","react-router":"~1.0.0-rc1"},"precommit":["lint"],"dependencies":{"velocity-animate":"~1.2.3"},"gitHead":"568d24c5867bb731686b186567d03a569bbf66c0","_id":"rc-queue-anim@0.11.4","_shasum":"e1c54c44c7e14babc23642e069b77ebfcc5bd994","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"e1c54c44c7e14babc23642e069b77ebfcc5bd994","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-queue-anim/-/rc-queue-anim-0.11.4.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"jljsj33","email":"155259966@qq.com"}],"directories":{}},"0.11.5":{"name":"rc-queue-anim","version":"0.11.5","description":"Queue animation component for react","keywords":["react","react-component","react-queue-anim","queue-anim"],"homepage":"https://github.com/react-component/queue-anim","author":{"name":"afc163@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/queue-anim.git"},"bugs":{"url":"https://github.com/react-component/queue-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"~0.3.1","jquery":"~1.11.3","precommit-hook":"1.x","rc-server":"3.x","rc-tools":"4.x","rc-dialog":"~5.2.1","react":"~0.14.0","react-addons-test-utils":"~0.14.0","react-dom":"~0.14.0","react-router":"~1.0.0-rc1"},"precommit":["lint"],"dependencies":{"velocity-animate":"~1.2.3"},"gitHead":"c3de83a3292f66a54d22a6e38a46e2194dab4a57","_id":"rc-queue-anim@0.11.5","_shasum":"ee3a1d033ca27120e2c35ad8e0e0f89a3fb2359d","_from":".","_npmVersion":"3.5.2","_nodeVersion":"4.2.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"ee3a1d033ca27120e2c35ad8e0e0f89a3fb2359d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-queue-anim/-/rc-queue-anim-0.11.5.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"jljsj33","email":"155259966@qq.com"}],"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/rc-queue-anim-0.11.5.tgz_1455854806621_0.7679990055039525"},"directories":{}},"0.11.6":{"name":"rc-queue-anim","version":"0.11.6","description":"Queue animation component for react","keywords":["react","react-component","react-queue-anim","queue-anim"],"homepage":"https://github.com/react-component/queue-anim","author":{"name":"afc163@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/queue-anim.git"},"bugs":{"url":"https://github.com/react-component/queue-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"~0.3.1","jquery":"~1.11.3","precommit-hook":"1.x","rc-server":"3.x","rc-tools":"4.x","rc-dialog":"~5.2.1","react":"~0.14.0","react-addons-test-utils":"~0.14.0","react-dom":"~0.14.0","react-router":"~1.0.0-rc1"},"precommit":["lint"],"dependencies":{"velocity-animate":"~1.2.3"},"gitHead":"6d429d01a6c03f60759bc59a294ae6e581726426","_id":"rc-queue-anim@0.11.6","_shasum":"91a7cadab7cc3d14b480f6531019502e3daa57e1","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"91a7cadab7cc3d14b480f6531019502e3daa57e1","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-queue-anim/-/rc-queue-anim-0.11.6.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"jljsj33","email":"155259966@qq.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-queue-anim-0.11.6.tgz_1458273548980_0.1547123077325523"},"directories":{}},"0.11.7":{"name":"rc-queue-anim","version":"0.11.7","description":"Queue animation component for react","keywords":["react","react-component","react-queue-anim","queue-anim"],"homepage":"https://github.com/react-component/queue-anim","author":{"name":"afc163@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/queue-anim.git"},"bugs":{"url":"https://github.com/react-component/queue-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"~0.3.1","jquery":"~1.11.3","precommit-hook":"1.x","rc-server":"3.x","rc-tools":"4.x","rc-dialog":"~5.2.1","react":"~0.14.0","react-addons-test-utils":"~0.14.0","react-dom":"~0.14.0","react-router":"~1.0.0-rc1"},"precommit":["lint"],"dependencies":{"velocity-animate":"~1.2.3"},"gitHead":"71cc71c095102e9f4b2df40ac695f921b634c8f9","_id":"rc-queue-anim@0.11.7","_shasum":"4bac63282c3710a4e7f9b744ef58362635897a4e","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"4bac63282c3710a4e7f9b744ef58362635897a4e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-queue-anim/-/rc-queue-anim-0.11.7.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"jljsj33","email":"155259966@qq.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/rc-queue-anim-0.11.7.tgz_1459254805298_0.06694508786313236"},"directories":{}},"0.11.8":{"name":"rc-queue-anim","version":"0.11.8","description":"Queue animation component for react","keywords":["react","react-component","react-queue-anim","queue-anim"],"homepage":"https://github.com/react-component/queue-anim","author":{"name":"afc163@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/queue-anim.git"},"bugs":{"url":"https://github.com/react-component/queue-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"~0.3.1","history":"^2.0.1","jquery":"~1.11.3","precommit-hook":"1.x","rc-dialog":"~5.2.1","rc-server":"3.x","rc-tools":"4.x","react":"~0.14.0","react-addons-test-utils":"~0.14.0","react-dom":"~0.14.0","react-router":"~1.0.0-rc1"},"precommit":["lint"],"dependencies":{"velocity-animate":"~1.2.3"},"gitHead":"41b342f5e00b6f41f478d3fdc3f4bb7b1a722686","_id":"rc-queue-anim@0.11.8","_shasum":"9479fb1f59393aaf69e9b82fe26f7786f3b9f7cc","_from":".","_npmVersion":"3.5.2","_nodeVersion":"4.2.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"9479fb1f59393aaf69e9b82fe26f7786f3b9f7cc","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-queue-anim/-/rc-queue-anim-0.11.8.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"jljsj33","email":"155259966@qq.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-queue-anim-0.11.8.tgz_1459912825284_0.6835548600647599"},"directories":{}},"0.11.9":{"name":"rc-queue-anim","version":"0.11.9","description":"Queue animation component for react","keywords":["react","react-component","react-queue-anim","queue-anim"],"homepage":"https://github.com/react-component/queue-anim","author":{"name":"afc163@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/queue-anim.git"},"bugs":{"url":"https://github.com/react-component/queue-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"~0.3.1","history":"^2.0.1","jquery":"~1.11.3","precommit-hook":"1.x","rc-dialog":"~5.2.1","rc-server":"3.x","rc-tools":"4.x","react":"~0.14.0","react-addons-test-utils":"~0.14.0","react-dom":"~0.14.0","react-router":"~1.0.0-rc1"},"precommit":["lint"],"dependencies":{"velocity-animate":"~1.2.3"},"gitHead":"85c2533c65f9d516965e59e54b60f9e0852d73fe","_id":"rc-queue-anim@0.11.9","_shasum":"3ed66e4d43424fbac4cd01b1a108cf40bd891c83","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"3ed66e4d43424fbac4cd01b1a108cf40bd891c83","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-queue-anim/-/rc-queue-anim-0.11.9.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"jljsj33","email":"155259966@qq.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-queue-anim-0.11.9.tgz_1460000159298_0.0919928140938282"},"directories":{}},"0.11.10":{"name":"rc-queue-anim","version":"0.11.10","description":"Queue animation component for react","keywords":["react","react-component","react-queue-anim","queue-anim"],"homepage":"https://github.com/react-component/queue-anim","author":{"name":"afc163@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/queue-anim.git"},"bugs":{"url":"https://github.com/react-component/queue-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"~0.3.1","history":"^2.0.1","jquery":"~1.11.3","precommit-hook":"1.x","rc-dialog":"~5.2.1","rc-server":"3.x","rc-tools":"4.x","react":"~0.14.0","react-addons-test-utils":"~0.14.0","react-dom":"~0.14.0","react-router":"~1.0.0-rc1"},"precommit":["lint"],"dependencies":{"velocity-animate":"~1.2.3"},"gitHead":"a8e0e4b006d9853a6dc4fc13d5231fb736a6e2e5","_id":"rc-queue-anim@0.11.10","_shasum":"205a4c30bfa5cacf69e10249931904c11b0cfe08","_from":".","_npmVersion":"2.15.0","_nodeVersion":"4.4.2","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"205a4c30bfa5cacf69e10249931904c11b0cfe08","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-queue-anim/-/rc-queue-anim-0.11.10.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"jljsj33","email":"155259966@qq.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-queue-anim-0.11.10.tgz_1465913767617_0.7755010360851884"},"directories":{}},"0.11.11":{"name":"rc-queue-anim","version":"0.11.11","description":"Queue animation component for react","keywords":["react","react-component","react-queue-anim","queue-anim"],"homepage":"https://github.com/react-component/queue-anim","author":{"name":"afc163@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/queue-anim.git"},"bugs":{"url":"https://github.com/react-component/queue-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"expect.js":"~0.3.1","history":"^2.0.1","jquery":"~1.11.3","precommit-hook":"1.x","rc-dialog":"~5.2.1","rc-tools":"5.x","react":"~0.14.0","react-addons-test-utils":"~0.14.0","react-dom":"~0.14.0","react-router":"~1.0.0-rc1"},"precommit":["lint"],"dependencies":{"velocity-animate":"~1.2.3"},"gitHead":"b34231d85850cc4b56646c238221beff85f53e31","_id":"rc-queue-anim@0.11.11","_shasum":"f926db650fe04d884448b343fe8cb5da2b0f7c87","_from":".","_npmVersion":"2.15.0","_nodeVersion":"4.4.2","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"f926db650fe04d884448b343fe8cb5da2b0f7c87","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-queue-anim/-/rc-queue-anim-0.11.11.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"jljsj33","email":"155259966@qq.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-queue-anim-0.11.11.tgz_1466065503344_0.9683717198204249"},"directories":{}},"0.11.12":{"name":"rc-queue-anim","version":"0.11.12","description":"Queue animation component for react","keywords":["react","react-component","react-queue-anim","queue-anim"],"homepage":"https://github.com/react-component/queue-anim","author":{"name":"afc163@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/queue-anim.git"},"bugs":{"url":"https://github.com/react-component/queue-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"expect.js":"~0.3.1","history":"^2.0.1","jquery":"~1.11.3","precommit-hook":"1.x","rc-dialog":"~5.2.1","rc-tools":"5.x","react":"~15.2.0","react-addons-test-utils":"~15.2.0","react-dom":"~15.2.0","react-router":"~1.0.0-rc1"},"precommit":["lint"],"dependencies":{"velocity-animate":"~1.2.3"},"gitHead":"d8ad64db7b4bec49c884ad73b38e7ae6349a781b","_id":"rc-queue-anim@0.11.12","_shasum":"b786169b910863ec0eddd207e18210b8579139e8","_from":".","_npmVersion":"3.5.2","_nodeVersion":"4.2.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"b786169b910863ec0eddd207e18210b8579139e8","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-queue-anim/-/rc-queue-anim-0.11.12.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"jljsj33","email":"155259966@qq.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/rc-queue-anim-0.11.12.tgz_1467873252062_0.32700634142383933"},"directories":{}},"0.12.0":{"name":"rc-queue-anim","version":"0.12.0","description":"Queue animation component for react","keywords":["react","react-component","react-queue-anim","queue-anim"],"homepage":"https://github.com/react-component/queue-anim","author":{"name":"afc163@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/queue-anim.git"},"bugs":{"url":"https://github.com/react-component/queue-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"expect.js":"~0.3.1","history":"^2.0.1","jquery":"~1.11.3","precommit-hook":"1.x","rc-dialog":"~5.2.1","rc-tools":"5.x","react":"~15.2.0","react-addons-test-utils":"~15.2.0","react-dom":"~15.2.0","react-router":"~1.0.0-rc1"},"precommit":["lint"],"dependencies":{"velocity-animate":"~1.2.3"},"gitHead":"0a1b26a97876b14a471b540aabe04870e601a03c","_id":"rc-queue-anim@0.12.0","_shasum":"0eadb5577c4a798c6fc6251444b914c007c0777b","_from":".","_npmVersion":"3.5.2","_nodeVersion":"4.2.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"0eadb5577c4a798c6fc6251444b914c007c0777b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-queue-anim/-/rc-queue-anim-0.12.0.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"jljsj33","email":"155259966@qq.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/rc-queue-anim-0.12.0.tgz_1469419299536_0.6034988288301975"},"directories":{}},"0.12.1":{"name":"rc-queue-anim","version":"0.12.1","description":"Queue animation component for react","keywords":["react","react-component","react-queue-anim","queue-anim"],"homepage":"https://github.com/react-component/queue-anim","author":{"name":"afc163@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/queue-anim.git"},"bugs":{"url":"https://github.com/react-component/queue-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"expect.js":"~0.3.1","history":"^2.0.1","jquery":"~1.11.3","precommit-hook":"1.x","rc-dialog":"~5.2.1","rc-tools":"5.x","react":"~15.2.0","react-addons-test-utils":"~15.2.0","react-dom":"~15.2.0","react-router":"~1.0.0-rc1"},"precommit":["lint"],"dependencies":{"velocity-animate":"~1.2.3"},"gitHead":"6c28c9ab83ed84e4f0f637b579d9687119b1d5c8","_id":"rc-queue-anim@0.12.1","_shasum":"fdf2b8610efc784eb7b9eeeb29dd084f082c9b36","_from":".","_npmVersion":"3.5.2","_nodeVersion":"4.2.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"fdf2b8610efc784eb7b9eeeb29dd084f082c9b36","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-queue-anim/-/rc-queue-anim-0.12.1.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"jljsj33","email":"155259966@qq.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-queue-anim-0.12.1.tgz_1469424255347_0.5946445344015956"},"directories":{}},"0.12.2":{"name":"rc-queue-anim","version":"0.12.2","description":"Queue animation component for react","keywords":["react","react-component","react-queue-anim","queue-anim"],"homepage":"https://github.com/react-component/queue-anim","author":{"name":"afc163@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/queue-anim.git"},"bugs":{"url":"https://github.com/react-component/queue-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"expect.js":"~0.3.1","history":"^2.0.1","jquery":"~1.11.3","precommit-hook":"1.x","rc-dialog":"~5.2.1","rc-tools":"5.x","react":"~15.2.0","react-addons-test-utils":"~15.2.0","react-dom":"~15.2.0","react-router":"~1.0.0-rc1"},"precommit":["lint"],"dependencies":{"velocity-animate":"~1.2.3"},"gitHead":"47d3f517e5fda1a2fd5b32d68f83a16141d0e556","_id":"rc-queue-anim@0.12.2","_shasum":"53dfbc855f4479431763af83a9d8e6b4d76ebb47","_from":".","_npmVersion":"3.5.2","_nodeVersion":"4.2.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"53dfbc855f4479431763af83a9d8e6b4d76ebb47","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-queue-anim/-/rc-queue-anim-0.12.2.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"jljsj33","email":"155259966@qq.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/rc-queue-anim-0.12.2.tgz_1469430631186_0.9077022606506944"},"directories":{}},"0.12.3":{"name":"rc-queue-anim","version":"0.12.3","description":"Queue animation component for react","keywords":["react","react-component","react-queue-anim","queue-anim"],"homepage":"https://github.com/react-component/queue-anim","author":{"name":"afc163@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/queue-anim.git"},"bugs":{"url":"https://github.com/react-component/queue-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"expect.js":"~0.3.1","history":"^2.0.1","jquery":"~1.11.3","precommit-hook":"1.x","rc-dialog":"~5.2.1","rc-tools":"5.x","react":"~15.2.0","react-addons-test-utils":"~15.2.0","react-dom":"~15.2.0","react-router":"~1.0.0-rc1"},"precommit":["lint"],"dependencies":{"velocity-animate":"~1.2.3"},"gitHead":"21392f15b95191b57e46c5de42c3fd507af3230d","_id":"rc-queue-anim@0.12.3","_shasum":"5fed5176c5fdb812c0ca67df139cde0aecd06175","_from":".","_npmVersion":"3.5.2","_nodeVersion":"4.2.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"5fed5176c5fdb812c0ca67df139cde0aecd06175","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-queue-anim/-/rc-queue-anim-0.12.3.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"jljsj33","email":"155259966@qq.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/rc-queue-anim-0.12.3.tgz_1469440134787_0.7356330940965563"},"directories":{}},"0.12.4":{"name":"rc-queue-anim","version":"0.12.4","description":"Queue animation component for react","keywords":["react","react-component","react-queue-anim","queue-anim"],"homepage":"https://github.com/react-component/queue-anim","author":{"name":"afc163@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/queue-anim.git"},"bugs":{"url":"https://github.com/react-component/queue-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"expect.js":"~0.3.1","history":"^2.0.1","jquery":"~1.11.3","precommit-hook":"1.x","rc-dialog":"~5.2.1","rc-tools":"5.x","react":"~15.2.0","react-addons-test-utils":"~15.2.0","react-dom":"~15.2.0","react-router":"~1.0.0-rc1"},"precommit":["lint"],"dependencies":{"velocity-animate":"~1.2.3"},"gitHead":"df612aac184f075e7910eb2d0dc5adbeb2c4502c","_id":"rc-queue-anim@0.12.4","_shasum":"faef2095586e759d94877ad26cbbc54161d9b356","_from":".","_npmVersion":"3.5.2","_nodeVersion":"4.2.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"faef2095586e759d94877ad26cbbc54161d9b356","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-queue-anim/-/rc-queue-anim-0.12.4.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"jljsj33","email":"155259966@qq.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/rc-queue-anim-0.12.4.tgz_1469799549039_0.3547325856052339"},"directories":{}},"0.12.5":{"name":"rc-queue-anim","version":"0.12.5","description":"Queue animation component for react","keywords":["react","react-component","react-queue-anim","queue-anim"],"homepage":"https://github.com/react-component/queue-anim","author":{"name":"afc163@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/queue-anim.git"},"bugs":{"url":"https://github.com/react-component/queue-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"expect.js":"~0.3.1","history":"^2.0.1","jquery":"~1.11.3","precommit-hook":"1.x","rc-dialog":"~5.2.1","rc-tools":"5.x","react":"~15.2.0","react-addons-test-utils":"~15.2.0","react-dom":"~15.2.0","react-router":"~1.0.0-rc1"},"precommit":["lint"],"dependencies":{"velocity-animate":"~1.2.3"},"gitHead":"545cec81a40cf6dffc1148eff56a74d31c7c9945","_id":"rc-queue-anim@0.12.5","_shasum":"bb8da775b730e4f653aef2bb397d18920560fe40","_from":".","_npmVersion":"3.5.2","_nodeVersion":"4.2.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"bb8da775b730e4f653aef2bb397d18920560fe40","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-queue-anim/-/rc-queue-anim-0.12.5.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"jljsj33","email":"155259966@qq.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/rc-queue-anim-0.12.5.tgz_1475125120866_0.7138120075687766"},"directories":{}},"0.12.6":{"name":"rc-queue-anim","version":"0.12.6","description":"Queue animation component for react","keywords":["react","react-component","react-queue-anim","queue-anim"],"homepage":"https://github.com/react-component/queue-anim","author":{"name":"afc163@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/queue-anim.git"},"bugs":{"url":"https://github.com/react-component/queue-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"expect.js":"~0.3.1","history":"^2.0.1","jquery":"~1.11.3","precommit-hook":"1.x","rc-dialog":"~5.2.1","rc-tools":"5.x","react":"~15.2.0","react-addons-test-utils":"~15.2.0","react-dom":"~15.2.0","react-router":"~1.0.0-rc1"},"precommit":["lint"],"dependencies":{"velocity-animate":"~1.2.3"},"gitHead":"ab741b64e4f545df41597cdab0ce3347b7752e28","_id":"rc-queue-anim@0.12.6","_shasum":"fee0f1b122e5db7d7f01ddc12634ccf5ef2a3b12","_from":".","_npmVersion":"3.10.9","_nodeVersion":"6.7.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"fee0f1b122e5db7d7f01ddc12634ccf5ef2a3b12","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-queue-anim/-/rc-queue-anim-0.12.6.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"jljsj33","email":"155259966@qq.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-queue-anim-0.12.6.tgz_1479624059752_0.030916818883270025"},"directories":{}},"0.13.0":{"name":"rc-queue-anim","version":"0.13.0","description":"Queue animation component for react","keywords":["react","react-component","react-queue-anim","queue-anim"],"homepage":"https://github.com/react-component/queue-anim","author":{"name":"afc163@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/queue-anim.git"},"bugs":{"url":"https://github.com/react-component/queue-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"expect.js":"~0.3.1","history":"^2.0.1","jquery":"~1.11.3","precommit-hook":"1.x","rc-dialog":"~5.2.1","rc-tools":"5.x","react":"~15.2.0","react-addons-test-utils":"~15.2.0","react-dom":"~15.2.0","react-router":"~1.0.0-rc1"},"precommit":["lint"],"dependencies":{"velocity-animate":"~1.3.1"},"gitHead":"0d493e22674208603eb7fef5c04d9daf7027943a","_id":"rc-queue-anim@0.13.0","_shasum":"8d4e39bf92da6654947e8b0cd0b71c6d86bea3aa","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"8d4e39bf92da6654947e8b0cd0b71c6d86bea3aa","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-queue-anim/-/rc-queue-anim-0.13.0.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"jljsj33","email":"155259966@qq.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-queue-anim-0.13.0.tgz_1482299732848_0.15471081691794097"},"directories":{}},"0.13.1":{"name":"rc-queue-anim","version":"0.13.1","description":"Queue animation component for react","keywords":["react","react-component","react-queue-anim","queue-anim"],"homepage":"https://github.com/react-component/queue-anim","author":{"name":"afc163@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/queue-anim.git"},"bugs":{"url":"https://github.com/react-component/queue-anim/issues"},"files":["lib","assets/*.css","dist"],"licenses":"MIT","main":"./lib/index","entry":{"rc-queue-anim":["./src/index.js","./assets/index.less"]},"config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"expect.js":"~0.3.1","history":"^2.0.1","jquery":"~1.11.3","precommit-hook":"1.x","rc-dialog":"~5.2.1","rc-tools":"5.x","react":"~15.2.0","react-addons-test-utils":"~15.2.0","react-dom":"~15.2.0","react-router":"~1.0.0-rc1"},"precommit":["lint"],"dependencies":{"babel-runtime":"6.x","velocity-animate":"~1.3.1"},"gitHead":"e5d6eff167ebbf7dc3135bc601b4bbf6da815c96","_id":"rc-queue-anim@0.13.1","_shasum":"3d40c9f876354c6770fc2a79e19ed66d5788a4cd","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"3d40c9f876354c6770fc2a79e19ed66d5788a4cd","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-queue-anim/-/rc-queue-anim-0.13.1.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"jljsj33","email":"155259966@qq.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/rc-queue-anim-0.13.1.tgz_1488776828054_0.8463466535322368"},"directories":{}},"0.13.2":{"name":"rc-queue-anim","version":"0.13.2","description":"Queue animation component for react","keywords":["react","react-component","react-queue-anim","queue-anim"],"homepage":"https://github.com/react-component/queue-anim","author":{"name":"afc163@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/queue-anim.git"},"bugs":{"url":"https://github.com/react-component/queue-anim/issues"},"files":["lib","assets/*.css","dist"],"licenses":"MIT","main":"./lib/index","entry":{"rc-queue-anim":["./assets/index.less","./src/index.js"]},"config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"expect.js":"~0.3.1","history":"^2.0.1","jquery":"~1.11.3","precommit-hook":"1.x","rc-dialog":"~5.2.1","rc-tools":"5.x","react":"~15.2.0","react-addons-test-utils":"~15.2.0","react-dom":"~15.2.0","react-router":"~1.0.0-rc1"},"precommit":["lint"],"dependencies":{"babel-runtime":"6.x","velocity-animate":"~1.3.1"},"gitHead":"7c1551a383e4e50411be0adac8ffb2d12a7d08ff","_id":"rc-queue-anim@0.13.2","_shasum":"1f48b8e76522da25b6655f2554a1163eab0f50a6","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"1f48b8e76522da25b6655f2554a1163eab0f50a6","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-queue-anim/-/rc-queue-anim-0.13.2.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"jljsj33","email":"155259966@qq.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/rc-queue-anim-0.13.2.tgz_1488778077011_0.9622761439532042"},"directories":{}},"0.13.3":{"name":"rc-queue-anim","version":"0.13.3","description":"Queue animation component for react","keywords":["react","react-component","react-queue-anim","queue-anim"],"homepage":"https://github.com/react-component/queue-anim","author":{"name":"afc163@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/queue-anim.git"},"bugs":{"url":"https://github.com/react-component/queue-anim/issues"},"files":["lib","assets/*.css","dist"],"licenses":"MIT","main":"./lib/index","entry":{"rc-queue-anim":["./assets/index.less","./src/index.js"]},"config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"expect.js":"~0.3.1","history":"^2.0.1","jquery":"~1.11.3","precommit-hook":"1.x","rc-dialog":"~5.2.1","rc-tools":"5.x","react":"~15.2.0","react-addons-test-utils":"~15.2.0","react-dom":"~15.2.0","react-router":"~1.0.0-rc1"},"precommit":["lint"],"dependencies":{"babel-runtime":"6.x","velocity-animate":"~1.3.1"},"gitHead":"3b8386c90087ea89ea6ea0a0ec868d30a4f85086","_id":"rc-queue-anim@0.13.3","_shasum":"12bfa0d36764154bd52671dcc8d213ebedd5f5fb","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"12bfa0d36764154bd52671dcc8d213ebedd5f5fb","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-queue-anim/-/rc-queue-anim-0.13.3.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"jljsj33","email":"155259966@qq.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-queue-anim-0.13.3.tgz_1490172979903_0.9585947303567082"},"directories":{}},"1.0.0":{"name":"rc-queue-anim","version":"1.0.0","description":"Queue animation component for react","keywords":["react","react-component","react-queue-anim","queue-anim"],"homepage":"https://github.com/react-component/queue-anim","author":{"name":"afc163@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/queue-anim.git"},"bugs":{"url":"https://github.com/react-component/queue-anim/issues"},"files":["lib","assets/*.css","dist"],"licenses":"MIT","main":"./lib/index","entry":{"rc-queue-anim":["./assets/index.less","./src/index.js"]},"config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"expect.js":"~0.3.1","history":"^2.1.2","jquery":"~1.11.3","precommit-hook":"1.x","rc-dialog":"~5.2.1","rc-tools":"5.x","react":"~15.5.0","react-addons-test-utils":"~15.5.0","react-dom":"~15.5.0","react-router-dom":"^4.1.0","react-router":"~4.1.0"},"precommit":["lint"],"dependencies":{"babel-runtime":"6.x","prop-types":"^15.5.0","rc-tween-one":"~1.2.0"},"gitHead":"3fb3ead3485df385da9199bbd9a58cef9e327878","_id":"rc-queue-anim@1.0.0","_shasum":"2b6b11940eb359ea52f4c2bc7670bb512838998d","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"2b6b11940eb359ea52f4c2bc7670bb512838998d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-queue-anim/-/rc-queue-anim-1.0.0.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"jljsj33","email":"155259966@qq.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/rc-queue-anim-1.0.0.tgz_1492053662242_0.49395605456084013"},"directories":{}},"1.0.1":{"name":"rc-queue-anim","version":"1.0.1","description":"Queue animation component for react","keywords":["react","react-component","react-queue-anim","queue-anim"],"homepage":"https://github.com/react-component/queue-anim","author":{"name":"afc163@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/queue-anim.git"},"bugs":{"url":"https://github.com/react-component/queue-anim/issues"},"files":["lib","assets/*.css","dist"],"licenses":"MIT","main":"./lib/index","entry":{"rc-queue-anim":["./assets/index.less","./src/index.js"]},"config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"expect.js":"~0.3.1","history":"^2.1.2","jquery":"~1.11.3","precommit-hook":"1.x","rc-dialog":"~5.2.1","rc-tools":"5.x","react":"~15.5.0","react-addons-test-utils":"~15.5.0","react-dom":"~15.5.0","react-router-dom":"^4.1.0","react-router":"~4.1.0"},"precommit":["lint"],"dependencies":{"babel-runtime":"6.x","prop-types":"^15.5.0","rc-tween-one":"~1.2.4"},"gitHead":"962ac7092718abbf0d14e5c7866554619e854da1","_id":"rc-queue-anim@1.0.1","_shasum":"0b78ddc42f8c9074f6d442984637214a39330312","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"0b78ddc42f8c9074f6d442984637214a39330312","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-queue-anim/-/rc-queue-anim-1.0.1.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"jljsj33","email":"155259966@qq.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/rc-queue-anim-1.0.1.tgz_1492150602990_0.19345581624656916"},"directories":{}},"1.0.2":{"name":"rc-queue-anim","version":"1.0.2","description":"Queue animation component for react","keywords":["react","react-component","react-queue-anim","queue-anim"],"homepage":"https://github.com/react-component/queue-anim","author":{"name":"afc163@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/queue-anim.git"},"bugs":{"url":"https://github.com/react-component/queue-anim/issues"},"files":["lib","assets/*.css","dist"],"licenses":"MIT","main":"./lib/index","entry":{"rc-queue-anim":["./assets/index.less","./src/index.js"]},"config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"expect.js":"~0.3.1","history":"^2.1.2","jquery":"~1.11.3","precommit-hook":"1.x","rc-dialog":"~5.2.1","rc-tools":"5.x","react":"~15.5.0","react-addons-test-utils":"~15.5.0","react-dom":"~15.5.0","react-router-dom":"^4.1.0","react-router":"~4.1.0"},"precommit":["lint"],"dependencies":{"babel-runtime":"6.x","prop-types":"^15.5.0","rc-tween-one":"~1.2.4"},"gitHead":"452a7982261a3562302227a0dba63fcfa3d7151e","_id":"rc-queue-anim@1.0.2","_shasum":"2842be46e8b82768f3b7bf6ee40f26d7e1238e29","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"2842be46e8b82768f3b7bf6ee40f26d7e1238e29","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-queue-anim/-/rc-queue-anim-1.0.2.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"jljsj33","email":"155259966@qq.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/rc-queue-anim-1.0.2.tgz_1495614603908_0.006753541296347976"},"directories":{}},"1.0.3":{"name":"rc-queue-anim","version":"1.0.3","description":"Queue animation component for react","keywords":["react","react-component","react-queue-anim","queue-anim"],"homepage":"https://github.com/react-component/queue-anim","author":{"name":"afc163@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/queue-anim.git"},"bugs":{"url":"https://github.com/react-component/queue-anim/issues"},"files":["lib","assets/*.css","dist"],"licenses":"MIT","main":"./lib/index","entry":{"rc-queue-anim":["./assets/index.less","./src/index.js"]},"config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"expect.js":"~0.3.1","history":"^2.1.2","jquery":"~1.11.3","precommit-hook":"1.x","rc-dialog":"~5.2.1","rc-tools":"5.x","react":"~15.5.0","react-addons-test-utils":"~15.5.0","react-dom":"~15.5.0","react-router-dom":"^4.1.0","react-router":"~4.1.0"},"precommit":["lint"],"dependencies":{"babel-runtime":"6.x","prop-types":"^15.5.0","rc-tween-one":"~1.2.4"},"gitHead":"a290f39c6a5e471c27d4a7da7313a83cd759027f","_id":"rc-queue-anim@1.0.3","_shasum":"e2fbdf8613e215768c8f2b4ddaea4e7936bf0c2d","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"e2fbdf8613e215768c8f2b4ddaea4e7936bf0c2d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-queue-anim/-/rc-queue-anim-1.0.3.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"jljsj33","email":"155259966@qq.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/rc-queue-anim-1.0.3.tgz_1495614897900_0.62716462649405"},"directories":{}},"1.0.4":{"name":"rc-queue-anim","version":"1.0.4","description":"Queue animation component for react","keywords":["react","react-component","react-queue-anim","queue-anim"],"homepage":"https://github.com/react-component/queue-anim","author":{"name":"afc163@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/queue-anim.git"},"bugs":{"url":"https://github.com/react-component/queue-anim/issues"},"files":["lib","assets/*.css","dist"],"licenses":"MIT","main":"./lib/index","entry":{"rc-queue-anim":["./assets/index.less","./src/index.js"]},"config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"expect.js":"~0.3.1","history":"^2.1.2","jquery":"~1.11.3","precommit-hook":"1.x","rc-dialog":"~5.2.1","rc-tools":"5.x","react":"~15.5.0","react-addons-test-utils":"~15.5.0","react-dom":"~15.5.0","react-router-dom":"^4.1.0","react-router":"~4.1.0"},"precommit":["lint"],"dependencies":{"babel-runtime":"6.x","prop-types":"^15.5.0","rc-tween-one":"~1.2.4"},"gitHead":"704ef2d20204c9e2306097d63d4f69d446cb2b85","_id":"rc-queue-anim@1.0.4","_shasum":"e00863a4ffb7dc7a4c9d7c1e4d65a3041c581ab5","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"e00863a4ffb7dc7a4c9d7c1e4d65a3041c581ab5","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-queue-anim/-/rc-queue-anim-1.0.4.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"jljsj33","email":"155259966@qq.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/rc-queue-anim-1.0.4.tgz_1496648487066_0.22742912755347788"},"directories":{}},"1.0.5":{"name":"rc-queue-anim","version":"1.0.5","description":"Queue animation component for react","keywords":["react","react-component","react-queue-anim","queue-anim"],"homepage":"https://github.com/react-component/queue-anim","author":{"name":"afc163@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/queue-anim.git"},"bugs":{"url":"https://github.com/react-component/queue-anim/issues"},"files":["lib","assets/*.css","dist"],"licenses":"MIT","main":"./lib/index","entry":{"rc-queue-anim":["./assets/index.less","./src/index.js"]},"config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"expect.js":"~0.3.1","history":"^2.1.2","jquery":"~1.11.3","precommit-hook":"1.x","rc-dialog":"~5.2.1","rc-tools":"5.x","react":"~15.5.0","react-addons-test-utils":"~15.5.0","react-dom":"~15.5.0","react-router-dom":"^4.1.0","react-router":"~4.1.0"},"precommit":["lint"],"dependencies":{"babel-runtime":"6.x","prop-types":"^15.5.0","rc-tween-one":"~1.2.4"},"gitHead":"71bee640865d740b16046baabe98922d92b1b717","_id":"rc-queue-anim@1.0.5","_shasum":"f798e66eed8a0997a2ce7ef31824bfd175ad2b1c","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"f798e66eed8a0997a2ce7ef31824bfd175ad2b1c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-queue-anim/-/rc-queue-anim-1.0.5.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"jljsj33","email":"155259966@qq.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/rc-queue-anim-1.0.5.tgz_1496898943193_0.7547139511443675"},"directories":{}},"1.1.0":{"name":"rc-queue-anim","version":"1.1.0","description":"Queue animation component for react","keywords":["react","react-component","react-queue-anim","queue-anim"],"homepage":"https://github.com/react-component/queue-anim","author":{"name":"afc163@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/queue-anim.git"},"bugs":{"url":"https://github.com/react-component/queue-anim/issues"},"files":["lib","assets/*.css","dist"],"licenses":"MIT","main":"./lib/index","entry":{"rc-queue-anim":["./assets/index.less","./src/index.js"]},"config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"expect.js":"~0.3.1","history":"^2.1.2","jquery":"~1.11.3","precommit-hook":"1.x","rc-dialog":"~5.2.1","rc-tools":"5.x","react":"~15.5.0","react-addons-test-utils":"~15.5.0","react-dom":"~15.5.0","react-router-dom":"^4.1.0","react-router":"~4.1.0"},"precommit":["lint"],"dependencies":{"babel-runtime":"6.x","prop-types":"^15.5.0","rc-tween-one":"~1.3.0"},"gitHead":"5547bdf70ee0a403bcfb18ece397fa88b392c6e4","_id":"rc-queue-anim@1.1.0","_shasum":"26129600b0a38cc52c06f80dddc31b01d218cb56","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.11.0","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"26129600b0a38cc52c06f80dddc31b01d218cb56","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-queue-anim/-/rc-queue-anim-1.1.0.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"jljsj33","email":"155259966@qq.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/rc-queue-anim-1.1.0.tgz_1500430103519_0.6712085579056293"},"directories":{}},"1.1.1":{"name":"rc-queue-anim","version":"1.1.1","description":"Queue animation component for react","keywords":["react","react-component","react-queue-anim","queue-anim"],"homepage":"https://github.com/react-component/queue-anim","author":{"name":"afc163@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/queue-anim.git"},"bugs":{"url":"https://github.com/react-component/queue-anim/issues"},"files":["lib","assets/*.css","dist"],"licenses":"MIT","main":"./lib/index","entry":{"rc-queue-anim":["./assets/index.less","./src/index.js"]},"config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"expect.js":"~0.3.1","history":"^2.1.2","jquery":"~1.11.3","precommit-hook":"1.x","rc-dialog":"~5.2.1","rc-tools":"5.x","react":"~15.5.0","react-addons-test-utils":"~15.5.0","react-dom":"~15.5.0","react-router-dom":"^4.1.0","react-router":"~4.1.0"},"precommit":["lint"],"dependencies":{"babel-runtime":"6.x","prop-types":"^15.5.0","rc-tween-one":"~1.3.0"},"gitHead":"6100f3106c2897f8afffdb8685ef10e9ed996165","_id":"rc-queue-anim@1.1.1","_shasum":"512cbe4db52b96de6c3c14776d74247744711f5e","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.11.0","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"512cbe4db52b96de6c3c14776d74247744711f5e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-queue-anim/-/rc-queue-anim-1.1.1.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"jljsj33","email":"155259966@qq.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/rc-queue-anim-1.1.1.tgz_1500523497662_0.27574653876945376"},"directories":{}},"1.2.0":{"name":"rc-queue-anim","version":"1.2.0","description":"Queue animation component for react","keywords":["react","react-component","react-queue-anim","queue-anim"],"homepage":"https://github.com/react-component/queue-anim","author":{"name":"afc163@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/queue-anim.git"},"bugs":{"url":"https://github.com/react-component/queue-anim/issues"},"files":["lib","assets/*.css","dist"],"licenses":"MIT","main":"./lib/index","entry":{"rc-queue-anim":["./assets/index.less","./src/index.js"]},"config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"expect.js":"~0.3.1","history":"^2.1.2","jquery":"~1.11.3","precommit-hook":"1.x","rc-dialog":"~5.2.1","rc-tools":"5.x","react":"~15.5.0","react-addons-test-utils":"~15.5.0","react-dom":"~15.5.0","react-router-dom":"^4.1.0","react-router":"~4.1.0"},"precommit":["lint"],"dependencies":{"babel-runtime":"6.x","prop-types":"^15.5.0","rc-tween-one":"~1.3.0"},"gitHead":"4ff805706b0e07d9751985a55fa2c725c524f707","_id":"rc-queue-anim@1.2.0","_shasum":"b6164fe28803637ef99b28510ce269e30097a5de","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.11.0","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"b6164fe28803637ef99b28510ce269e30097a5de","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-queue-anim/-/rc-queue-anim-1.2.0.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"jljsj33","email":"155259966@qq.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/rc-queue-anim-1.2.0.tgz_1500630585708_0.031025448348373175"},"directories":{}}},"name":"rc-queue-anim","time":{"modified":"2017-07-21T09:49:46.068Z","created":"2015-10-17T09:19:47.370Z","0.9.0":"2015-10-17T09:19:47.370Z","0.9.1":"2015-10-19T07:12:20.058Z","0.9.2":"2015-10-19T08:15:15.268Z","0.9.3":"2015-10-19T08:48:31.959Z","0.10.0":"2015-10-20T12:35:31.685Z","0.10.1":"2015-10-21T08:04:36.381Z","0.10.2":"2015-10-21T08:54:44.105Z","0.10.3":"2015-10-21T08:58:29.080Z","0.10.4":"2015-10-21T09:26:28.603Z","0.10.5":"2015-10-23T06:10:27.944Z","0.10.6":"2015-11-12T08:05:57.545Z","0.11.0":"2015-11-12T13:11:11.283Z","0.11.2":"2015-11-17T03:44:50.282Z","0.11.3":"2015-11-28T10:56:02.611Z","0.11.4":"2016-01-13T15:04:45.464Z","0.11.5":"2016-02-19T04:06:50.855Z","0.11.6":"2016-03-18T03:59:11.472Z","0.11.7":"2016-03-29T12:33:26.254Z","0.11.8":"2016-04-06T03:20:27.630Z","0.11.9":"2016-04-07T03:36:01.638Z","0.11.10":"2016-06-14T14:16:10.005Z","0.11.11":"2016-06-16T08:25:05.635Z","0.11.12":"2016-07-07T06:34:13.228Z","0.12.0":"2016-07-25T04:01:41.590Z","0.12.1":"2016-07-25T05:24:17.430Z","0.12.2":"2016-07-25T07:10:33.216Z","0.12.3":"2016-07-25T09:48:56.805Z","0.12.4":"2016-07-29T13:39:13.709Z","0.12.5":"2016-09-29T04:58:41.627Z","0.12.6":"2016-11-20T06:41:01.630Z","0.13.0":"2016-12-21T05:55:33.082Z","0.13.1":"2017-03-06T05:07:10.361Z","0.13.2":"2017-03-06T05:27:59.112Z","0.13.3":"2017-03-22T08:56:20.161Z","1.0.0":"2017-04-13T03:21:04.445Z","1.0.1":"2017-04-14T06:16:45.256Z","1.0.2":"2017-05-24T08:30:04.091Z","1.0.3":"2017-05-24T08:34:58.149Z","1.0.4":"2017-06-05T07:41:27.154Z","1.0.5":"2017-06-08T05:15:43.368Z","1.1.0":"2017-07-19T02:08:23.799Z","1.1.1":"2017-07-20T04:04:58.013Z","1.2.0":"2017-07-21T09:49:46.068Z"},"readmeFilename":"README.md","homepage":"https://github.com/react-component/queue-anim"}