{"maintainers":[{"name":"jljsj33","email":"155259966@qq.com"}],"keywords":["react","react-component","react-scroll-anim","scroll-anim"],"dist-tags":{"latest":"1.0.3"},"author":{"name":"155259966@qq.com"},"description":"scroll-anim anim component for react","readme":"# rc-scroll-anim\n---\n\nReact ScrollAnim Component\n\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-scroll-anim.svg?style=flat-square\n[npm-url]: http://npmjs.org/package/rc-scroll-anim\n[travis-image]: https://img.shields.io/travis/react-component/scroll-anim.svg?style=flat-square\n[travis-url]: https://travis-ci.org/react-component/scroll-anim\n[coveralls-image]: https://img.shields.io/coveralls/react-component/scroll-anim.svg?style=flat-square\n[coveralls-url]: https://coveralls.io/r/react-component/scroll-anim?branch=master\n[gemnasium-image]: http://img.shields.io/gemnasium/react-component/scroll-anim.svg?style=flat-square\n[gemnasium-url]: https://gemnasium.com/react-component/scroll-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-scroll-anim.svg?style=flat-square\n[download-url]: https://npmjs.org/package/rc-scroll-anim\n\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\n## Development\n\n```\nnpm install\nnpm start\n```\n\n## Example\n\nhttp://localhost:8020/examples/ \n\nhttp://react-component.github.io/scroll-anim/\n\nhttp://ant.design/\n\n\n## Feature\n\n* support ie8,ie8+,chrome,firefox,safari\n\n## install\n\n[![rc-scroll-anim](https://nodei.co/npm/rc-scroll-anim.png)](https://npmjs.org/package/rc-scroll-anim)\n\n\n## Usage\n\n#### ScrollOverPack \n```js\nvar ScrollAnim = require('rc-scroll-anim');\nvar ScrollOverPack = ScrollAnim.OverPack;\nvar React = require('react');\n\n// ScrollOverPack support rc-animate,rc-queue-anim,rc-tween-one;\n\nReact.render(<ScrollOverPack>\n  <QueueAnim key='queueAnim'>\n    <div key='a'>enter</div>\n    <div key='b'>enter</div>\n    <div key='b'>enter</div>\n  </QueueAnim>\n  <TweenOne key='tweenOne' vars={{x:100}}>one element</TweenOne>\n  <Animate key='rc-animate' transitionName=\"fade\" transitionAppear>rc-animate</Animate>\n</ScrollOverPack>, container);\n```\n#### Parallax\n\n```js\nvar ScrollParallax = ScrollAnim.Parallax;\nReact.render(<ScrollParallax vars={{x:100}}>Parallax</ScrollPallax>,container);\n```\n\n#### Link, Element\n\n```js\nvar Link = ScrollAnim.Link;\nvar Element = ScrollAnim.Element;\nReact.render(<div>\n  <div className=\"nav\">\n    <Link className=\"nav-list\" to=\"page0\">nav0</Link>\n    <Link className=\"nav-list\" to=\"page1\">nav1</Link>\n  </div>\n  <Element className=\"pack-page\" id=\"page0\">demo</Element>\n  <Element className=\"pack-page\" id=\"page1\">demo</Element>\n</div>,container);\n```\n\n### scrollScreen\n\n```js\nScrollAnim.scrollScreen.init();\nScrollAnim.scrollScreen.unMount();\n```\n\n## API\n\n<a href='https://motion.ant.design/api/scroll-anim' target='_blank'>中文文档</a>\n\n### props\n\n### Element \n\n| name      | type           | default | description    |\n|-----------|----------------|---------|----------------|\n| component | string         | `div`   | -            |\n| id | string         | null    | need to location the id，parallax the `location` or link the `to`, need to use |\n| targetId  |  string        | null    |  scroll target id, if don't window scroll, parent element is `overflow: scroll`, use parent id to do scroll; [demo refs](http://react-component.github.io/scroll-anim/examples/target.html) |\n| playScale | number / array / string       | `0.5`   | percentage of screen to start play, screen center is 0.5, if replay is true : [bottomEnter, topLeave]， topLeave >= bottomEnter |\n| onChange  | func           | null     | change callback({ mode, scrollName }); mode: `enter` or `leave` |\n| location  | string         | null     |  v0.6.0 above have,location, the parent id; |\n\n> Note: if the element is not the above component, you need to location this element; please use the `Element`\n\n### OverPack \n\nOverPack inherit Element; `component` `playScale` `onChange` `location` refer to  `Element`;\n\n> 1.0.0 remove hideProps;\n\n| name      | type           | default | description    |\n|-----------|----------------|---------|----------------|\n| always    | boolean        | `true`  | back to top, enter replay，as `false` will only play it again, leave does not play |\n| replay    | boolean        | `false` | play every enter, do you want to animate each time you show the current, `false` only scroll to down play animate |\n| appear | boolean         | `true`  | whether support appear the operation |\n\n### Parallax\n| name      | type           | default | description    |\n|-----------|----------------|---------|----------------|\n| animation      | object / array | `null`  | animation data     |\n| location  | string         | `null`  | location, the parent id |\n| always    | boolean        | `true`  | -            |\n| component | string         | `div`   | -            |\n\n#### animation = { }\n| name      | type           | default | description    |\n|-----------|----------------|---------|----------------|\n| playScale | array          | `[0, 1]`| play area, [start, end]<br/> timeline: `[{playScale: [0, 0.2]}, {playScale: [0, 0.8]}]]`, Second will increase by 0.2, The second end is 1  |\n| ease      | string         | `easeInOutQuad`| animation easing string |\n| onUpdate  | function       |    -    |  animate updates, callback: onUpdate(easeValue})   |\n| onStart   | function       |    -    |  scroll down animate start (playScale[0]) callback; |\n| onComplete| function       |    -    |  scroll down animate completed (playScale[1]) callback |\n| onStartBack   | function       |    -    |   scroll up animate start (playScale[1]) callback; |\n| onCompleteBack | function       |    -    |   scroll up animate completed (playScale[0]) callback; |\n\n> animation = [{},{}] is timeline;\n\n### Link\n| name      | type           | default | description    |\n|-----------|----------------|---------|----------------|\n| to  | string         | `null`  | need; Specifies the element to top; `Element` the id  |\n| toHash | boolean     | true    | add `to` to the `location.hash` |\n| duration  | number         | `450`   | scroll animate duration |\n| ease      | string         | `easeInOutQuad` | animation easing string | \n| active    | string         | `active`| selected className  |\n| showHeightActive| string / number / array | `50%` | enter: the element offset top `50%` add `active`, leave: the element in the window `50%` remove `active`; is array [enter, leave]; |\n| toShowHeight | boolean     | false   | scroll to `showHeightActive` |\n| offsetTop |  number        |  0      | scroll to elem top offset   |\n| onFocus   | func           | null    | check callback,onFocus({target,to}) |\n| onBlur    | func           | null    | blur callback |\n| onAsynchronousAddEvent | func | null | Asynchronous add onScroll; callback(function) [refs](http://react-component.github.io/scroll-anim/examples/linkAsynchronous.html) |\n| component | string         | `div`   | -            |\n\n### ScrollAnim.scrollScreen.init(vars)\nUse: scroll a screen window;\n\n#### vars = { }\n\n| name      | type           | default | description    |\n|-----------|----------------|---------|----------------|\n| duration  | number         | 450     | scroll duration   |\n| ease      | string         | `easeInOutQuad` | easing |\n| docHeight | number         | null    | default to HTML height, when body or html the height: 100%, page height can not be obtained, need their own definition |\n| loop      | boolean        | false   | Before and after the phase cycle  |\n| scrollInterval | number    | 1000    | rolling interval time |\n\n### ScrollAnim.scrollScreen.unMount()\n\nClear a screen scrolling effect;\n\n### Event \n```jsx\nvar Event = ScrollAnim.Event;\nEvent.addEventListener('scroll.xxxx',func);\nEvent.removeEventListener('scroll.xxx',func);\n```\n","repository":{"type":"git","url":"git+https://github.com/react-component/scroll-anim.git"},"bugs":{"url":"https://github.com/react-component/scroll-anim/issues"},"versions":{"0.0.2":{"name":"rc-scroll-anim","version":"0.0.2","description":"scroll-anim anim component for react","keywords":["react","react-component","react-scroll-anim","scroll-anim"],"homepage":"https://github.com/ant-motion/scroll-anim","author":{"name":"155259966@qq.com"},"repository":{"type":"git","url":"git+https://github.com/ant-motion/scroll-anim.git"},"bugs":{"url":"https://github.com/ant-motion/scroll-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8020},"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.x","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"0.14.x","react-dom":"0.14.x","rc-util":"3.x","rc-queue-anim":"0.11.3","rc-tween-one":"0.1.x","rc-animate":"2.0.x"},"pre-commit":["lint"],"dependencies":{"object-assign":"~4.0.1","tween-functions":"^1.0.1"},"gitHead":"ebef65257b2da74f20eef3e5ef853a23ed961142","_id":"rc-scroll-anim@0.0.2","_shasum":"3ea9a468e0856cd80d96bec88bb3f0fc75f3268a","_from":".","_npmVersion":"3.5.2","_nodeVersion":"4.2.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"3ea9a468e0856cd80d96bec88bb3f0fc75f3268a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-scroll-anim/-/rc-scroll-anim-0.0.2.tgz"},"maintainers":[{"name":"jljsj33","email":"155259966@qq.com"}],"directories":{}},"0.0.3":{"name":"rc-scroll-anim","version":"0.0.3","description":"scroll-anim anim component for react","keywords":["react","react-component","react-scroll-anim","scroll-anim"],"homepage":"https://github.com/ant-motion/scroll-anim","author":{"name":"155259966@qq.com"},"repository":{"type":"git","url":"git+https://github.com/ant-motion/scroll-anim.git"},"bugs":{"url":"https://github.com/ant-motion/scroll-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8020},"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.x","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"0.14.x","react-dom":"0.14.x","rc-util":"3.x","rc-queue-anim":"0.11.3","rc-tween-one":"0.1.x","rc-animate":"2.0.x"},"pre-commit":["lint"],"dependencies":{"object-assign":"~4.0.1","tween-functions":"^1.0.1"},"gitHead":"463d5ddd5bdac36ecb7e906b840424cfddf4afb9","_id":"rc-scroll-anim@0.0.3","_shasum":"11bd0e12deb44848fa236d0fb1e4fb0f70aa2f81","_from":".","_npmVersion":"3.5.2","_nodeVersion":"4.2.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"11bd0e12deb44848fa236d0fb1e4fb0f70aa2f81","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-scroll-anim/-/rc-scroll-anim-0.0.3.tgz"},"maintainers":[{"name":"jljsj33","email":"155259966@qq.com"}],"directories":{}},"0.0.4":{"name":"rc-scroll-anim","version":"0.0.4","description":"scroll-anim anim component for react","keywords":["react","react-component","react-scroll-anim","scroll-anim"],"homepage":"https://github.com/ant-motion/scroll-anim","author":{"name":"155259966@qq.com"},"repository":{"type":"git","url":"git+https://github.com/ant-motion/scroll-anim.git"},"bugs":{"url":"https://github.com/ant-motion/scroll-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8020},"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.x","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"0.14.x","react-dom":"0.14.x","rc-util":"3.x","rc-queue-anim":"0.11.3","rc-tween-one":"0.1.x","rc-animate":"2.0.x"},"pre-commit":["lint"],"dependencies":{"object-assign":"~4.0.1","tween-functions":"^1.0.1"},"gitHead":"4f8e94b914794dadf6ee93df763be861d47df900","_id":"rc-scroll-anim@0.0.4","_shasum":"513d10f54af35ea9fb9d22cc6b9109b14a14ce4d","_from":".","_npmVersion":"3.5.2","_nodeVersion":"4.2.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"513d10f54af35ea9fb9d22cc6b9109b14a14ce4d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-scroll-anim/-/rc-scroll-anim-0.0.4.tgz"},"maintainers":[{"name":"jljsj33","email":"155259966@qq.com"}],"directories":{}},"0.0.5":{"name":"rc-scroll-anim","version":"0.0.5","description":"scroll-anim anim component for react","keywords":["react","react-component","react-scroll-anim","scroll-anim"],"homepage":"https://github.com/ant-motion/scroll-anim","author":{"name":"155259966@qq.com"},"repository":{"type":"git","url":"git+https://github.com/ant-motion/scroll-anim.git"},"bugs":{"url":"https://github.com/ant-motion/scroll-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8020},"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.x","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"0.14.x","react-dom":"0.14.x","rc-util":"3.x","rc-queue-anim":"0.11.3","rc-tween-one":"0.1.x","rc-animate":"2.0.x"},"pre-commit":["lint"],"dependencies":{"object-assign":"~4.0.1","tween-functions":"^1.0.1"},"gitHead":"2d90a46cafc2c9a4df6e5c2de6486d338b04300b","_id":"rc-scroll-anim@0.0.5","_shasum":"e023494dadceb97b4ab1162b094bc2792df1869a","_from":".","_npmVersion":"3.5.2","_nodeVersion":"4.2.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"e023494dadceb97b4ab1162b094bc2792df1869a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-scroll-anim/-/rc-scroll-anim-0.0.5.tgz"},"maintainers":[{"name":"jljsj33","email":"155259966@qq.com"}],"directories":{}},"0.1.0":{"name":"rc-scroll-anim","version":"0.1.0","description":"scroll-anim anim component for react","keywords":["react","react-component","react-scroll-anim","scroll-anim"],"homepage":"https://github.com/ant-motion/scroll-anim","author":{"name":"155259966@qq.com"},"repository":{"type":"git","url":"git+https://github.com/ant-motion/scroll-anim.git"},"bugs":{"url":"https://github.com/ant-motion/scroll-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8020},"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.x","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"0.14.x","react-dom":"0.14.x","rc-util":"3.x","rc-queue-anim":"0.11.3","rc-tween-one":"0.1.8","rc-animate":"2.0.x"},"pre-commit":["lint"],"dependencies":{"object-assign":"~4.0.1","tween-functions":"^1.0.1","raf":"^3.1.0"},"gitHead":"9a11ec402eaa5a074d22b7f27c5171cb35dc3c5f","_id":"rc-scroll-anim@0.1.0","_shasum":"97394a0c7eed52dce08690edf64ffec56bf42a2a","_from":".","_npmVersion":"3.5.2","_nodeVersion":"4.2.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"97394a0c7eed52dce08690edf64ffec56bf42a2a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-scroll-anim/-/rc-scroll-anim-0.1.0.tgz"},"maintainers":[{"name":"jljsj33","email":"155259966@qq.com"}],"directories":{}},"0.1.1":{"name":"rc-scroll-anim","version":"0.1.1","description":"scroll-anim anim component for react","keywords":["react","react-component","react-scroll-anim","scroll-anim"],"homepage":"https://github.com/ant-motion/scroll-anim","author":{"name":"155259966@qq.com"},"repository":{"type":"git","url":"git+https://github.com/ant-motion/scroll-anim.git"},"bugs":{"url":"https://github.com/ant-motion/scroll-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8020},"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.x","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"0.14.x","react-dom":"0.14.x","rc-util":"3.x","rc-queue-anim":"0.11.3","rc-tween-one":"0.1.8","rc-animate":"2.0.x"},"pre-commit":["lint"],"dependencies":{"object-assign":"~4.0.1","tween-functions":"^1.0.1","raf":"^3.1.0"},"gitHead":"e063835ac3b86b9bbe27118661c8c4269638a2c8","_id":"rc-scroll-anim@0.1.1","_shasum":"6f2d74e1d2bd818e02497c76158bdc146c60980a","_from":".","_npmVersion":"3.5.2","_nodeVersion":"4.2.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"6f2d74e1d2bd818e02497c76158bdc146c60980a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-scroll-anim/-/rc-scroll-anim-0.1.1.tgz"},"maintainers":[{"name":"jljsj33","email":"155259966@qq.com"}],"directories":{}},"0.1.2":{"name":"rc-scroll-anim","version":"0.1.2","description":"scroll-anim anim component for react","keywords":["react","react-component","react-scroll-anim","scroll-anim"],"homepage":"https://github.com/ant-motion/scroll-anim","author":{"name":"155259966@qq.com"},"repository":{"type":"git","url":"git+https://github.com/ant-motion/scroll-anim.git"},"bugs":{"url":"https://github.com/ant-motion/scroll-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8020},"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.x","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"0.14.x","react-dom":"0.14.x","rc-util":"3.x","rc-queue-anim":"0.11.3","rc-tween-one":"0.1.8","rc-animate":"2.0.x"},"pre-commit":["lint"],"dependencies":{"object-assign":"~4.0.1","tween-functions":"^1.0.1","raf":"^3.1.0"},"gitHead":"e92708bd0a225b9c1cedf4fd0090aed2ef57720f","_id":"rc-scroll-anim@0.1.2","_shasum":"ad1ff328cd858e87f26cf334275988d8e425e203","_from":".","_npmVersion":"3.5.2","_nodeVersion":"4.2.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"ad1ff328cd858e87f26cf334275988d8e425e203","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-scroll-anim/-/rc-scroll-anim-0.1.2.tgz"},"maintainers":[{"name":"jljsj33","email":"155259966@qq.com"}],"directories":{}},"0.1.3":{"name":"rc-scroll-anim","version":"0.1.3","description":"scroll-anim anim component for react","keywords":["react","react-component","react-scroll-anim","scroll-anim"],"homepage":"https://github.com/ant-motion/scroll-anim","author":{"name":"155259966@qq.com"},"repository":{"type":"git","url":"git+https://github.com/ant-motion/scroll-anim.git"},"bugs":{"url":"https://github.com/ant-motion/scroll-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8020},"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.x","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"0.14.x","react-dom":"0.14.x","rc-util":"3.x","rc-queue-anim":"0.11.3","rc-tween-one":"0.1.8","rc-animate":"2.0.x"},"pre-commit":["lint"],"dependencies":{"object-assign":"~4.0.1","tween-functions":"^1.0.1","raf":"^3.1.0"},"gitHead":"7165ce19727373854ea8e2011586670f2c87d53a","_id":"rc-scroll-anim@0.1.3","_shasum":"3a0473e455894445aab911f8c8127133504e414a","_from":".","_npmVersion":"3.5.2","_nodeVersion":"4.2.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"3a0473e455894445aab911f8c8127133504e414a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-scroll-anim/-/rc-scroll-anim-0.1.3.tgz"},"maintainers":[{"name":"jljsj33","email":"155259966@qq.com"}],"directories":{}},"0.1.4":{"name":"rc-scroll-anim","version":"0.1.4","description":"scroll-anim anim component for react","keywords":["react","react-component","react-scroll-anim","scroll-anim"],"homepage":"https://github.com/ant-motion/scroll-anim","author":{"name":"155259966@qq.com"},"repository":{"type":"git","url":"git+https://github.com/ant-motion/scroll-anim.git"},"bugs":{"url":"https://github.com/ant-motion/scroll-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8020},"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.x","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"0.14.x","react-dom":"0.14.x","rc-util":"3.x","rc-queue-anim":"0.11.3","rc-tween-one":"0.1.8","rc-animate":"2.0.x"},"pre-commit":["lint"],"dependencies":{"object-assign":"~4.0.1","tween-functions":"^1.0.1","raf":"^3.1.0"},"gitHead":"145d7f70a8cbf70b69adb008912f65e2e5398e1f","_id":"rc-scroll-anim@0.1.4","_shasum":"db632787825440a1d4a2b51d7ce74d563356171b","_from":".","_npmVersion":"3.5.2","_nodeVersion":"4.2.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"db632787825440a1d4a2b51d7ce74d563356171b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-scroll-anim/-/rc-scroll-anim-0.1.4.tgz"},"maintainers":[{"name":"jljsj33","email":"155259966@qq.com"}],"directories":{}},"0.1.5":{"name":"rc-scroll-anim","version":"0.1.5","description":"scroll-anim anim component for react","keywords":["react","react-component","react-scroll-anim","scroll-anim"],"homepage":"https://github.com/ant-motion/scroll-anim","author":{"name":"155259966@qq.com"},"repository":{"type":"git","url":"git+https://github.com/ant-motion/scroll-anim.git"},"bugs":{"url":"https://github.com/ant-motion/scroll-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8020},"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.x","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"0.14.x","react-dom":"0.14.x","rc-util":"3.x","rc-queue-anim":"0.11.3","rc-tween-one":"0.1.8","rc-animate":"2.0.x"},"pre-commit":["lint"],"dependencies":{"object-assign":"~4.0.1","tween-functions":"^1.0.1","raf":"^3.1.0"},"gitHead":"4ea1f0b4c1288206984004c1ce7b631ef618e8c6","_id":"rc-scroll-anim@0.1.5","_shasum":"3a9600133e87f848d3b35cd6a81fada624e44bfa","_from":".","_npmVersion":"3.5.2","_nodeVersion":"4.2.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"3a9600133e87f848d3b35cd6a81fada624e44bfa","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-scroll-anim/-/rc-scroll-anim-0.1.5.tgz"},"maintainers":[{"name":"jljsj33","email":"155259966@qq.com"}],"directories":{}},"0.1.6":{"name":"rc-scroll-anim","version":"0.1.6","description":"scroll-anim anim component for react","keywords":["react","react-component","react-scroll-anim","scroll-anim"],"homepage":"https://github.com/ant-motion/scroll-anim","author":{"name":"155259966@qq.com"},"repository":{"type":"git","url":"git+https://github.com/ant-motion/scroll-anim.git"},"bugs":{"url":"https://github.com/ant-motion/scroll-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8020},"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.x","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"0.14.x","react-dom":"0.14.x","rc-util":"3.x","rc-queue-anim":"0.11.3","rc-tween-one":"0.1.8","rc-animate":"2.0.x"},"pre-commit":["lint"],"dependencies":{"object-assign":"~4.0.1","tween-functions":"^1.0.1","raf":"^3.1.0"},"gitHead":"482f25229b6ea62445389250eb039c8d789a0963","_id":"rc-scroll-anim@0.1.6","_shasum":"c1600361771e34e4f0a9f8dd4b490d1fe90f47e1","_from":".","_npmVersion":"3.5.2","_nodeVersion":"4.2.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"c1600361771e34e4f0a9f8dd4b490d1fe90f47e1","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-scroll-anim/-/rc-scroll-anim-0.1.6.tgz"},"maintainers":[{"name":"jljsj33","email":"155259966@qq.com"}],"directories":{}},"0.1.7":{"name":"rc-scroll-anim","version":"0.1.7","description":"scroll-anim anim component for react","keywords":["react","react-component","react-scroll-anim","scroll-anim"],"homepage":"https://github.com/ant-motion/scroll-anim","author":{"name":"155259966@qq.com"},"repository":{"type":"git","url":"git+https://github.com/ant-motion/scroll-anim.git"},"bugs":{"url":"https://github.com/ant-motion/scroll-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8020},"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.x","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"0.14.x","react-dom":"0.14.x","rc-util":"3.x","rc-queue-anim":"0.11.3","rc-tween-one":"0.1.8","rc-animate":"2.0.x"},"pre-commit":["lint"],"dependencies":{"object-assign":"~4.0.1","tween-functions":"^1.0.1","raf":"^3.1.0"},"gitHead":"328cdba46a435d5343b4528b8a011f7209cafab8","_id":"rc-scroll-anim@0.1.7","_shasum":"f676d348e6760c84e6378467cad8e9724994fb9b","_from":".","_npmVersion":"3.5.2","_nodeVersion":"4.2.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"f676d348e6760c84e6378467cad8e9724994fb9b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-scroll-anim/-/rc-scroll-anim-0.1.7.tgz"},"maintainers":[{"name":"jljsj33","email":"155259966@qq.com"}],"directories":{}},"0.1.8":{"name":"rc-scroll-anim","version":"0.1.8","description":"scroll-anim anim component for react","keywords":["react","react-component","react-scroll-anim","scroll-anim"],"homepage":"https://github.com/ant-motion/scroll-anim","author":{"name":"155259966@qq.com"},"repository":{"type":"git","url":"git+https://github.com/ant-motion/scroll-anim.git"},"bugs":{"url":"https://github.com/ant-motion/scroll-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8020},"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.x","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"0.14.x","react-dom":"0.14.x","rc-util":"3.x","rc-queue-anim":"0.11.3","rc-tween-one":"0.1.8","rc-animate":"2.0.x"},"pre-commit":["lint"],"dependencies":{"object-assign":"~4.0.1","tween-functions":"^1.0.1","raf":"^3.1.0"},"gitHead":"4502d6d697f9c61c93b1c85bdc41d5d9c9e472df","_id":"rc-scroll-anim@0.1.8","_shasum":"813afba04f11f3be7b80e8411156fe258bc4440f","_from":".","_npmVersion":"3.5.2","_nodeVersion":"4.2.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"813afba04f11f3be7b80e8411156fe258bc4440f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-scroll-anim/-/rc-scroll-anim-0.1.8.tgz"},"maintainers":[{"name":"jljsj33","email":"155259966@qq.com"}],"directories":{}},"0.1.9":{"name":"rc-scroll-anim","version":"0.1.9","description":"scroll-anim anim component for react","keywords":["react","react-component","react-scroll-anim","scroll-anim"],"homepage":"https://github.com/ant-motion/scroll-anim","author":{"name":"155259966@qq.com"},"repository":{"type":"git","url":"git+https://github.com/ant-motion/scroll-anim.git"},"bugs":{"url":"https://github.com/ant-motion/scroll-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8020},"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.x","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"0.14.x","react-dom":"0.14.x","rc-util":"3.x","rc-queue-anim":"0.11.3","rc-tween-one":"0.1.8","rc-animate":"2.0.x"},"pre-commit":["lint"],"dependencies":{"object-assign":"~4.0.1","tween-functions":"^1.0.1","raf":"^3.1.0"},"gitHead":"d0b9fedab008537d4a2303c2f95bbe59733852e5","_id":"rc-scroll-anim@0.1.9","_shasum":"ec9694f2c7668246a5ad0d671a9287b0a6a3784b","_from":".","_npmVersion":"3.5.2","_nodeVersion":"4.2.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"ec9694f2c7668246a5ad0d671a9287b0a6a3784b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-scroll-anim/-/rc-scroll-anim-0.1.9.tgz"},"maintainers":[{"name":"jljsj33","email":"155259966@qq.com"}],"directories":{}},"0.2.0":{"name":"rc-scroll-anim","version":"0.2.0","description":"scroll-anim anim component for react","keywords":["react","react-component","react-scroll-anim","scroll-anim"],"homepage":"https://github.com/react-component/scroll-anim","author":{"name":"155259966@qq.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/scroll-anim.git"},"bugs":{"url":"https://github.com/react-component/scroll-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8020},"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.x","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"0.14.x","react-dom":"0.14.x","rc-queue-anim":"0.11.x","rc-tween-one":"0.2.x","rc-animate":"2.0.x"},"pre-commit":["lint"],"dependencies":{"object-assign":"~4.0.1","tween-functions":"^1.0.1","raf":"^3.1.0"},"gitHead":"01070ed0fc9c298981341f494be57b2e22d0b15a","_id":"rc-scroll-anim@0.2.0","_shasum":"2520a55aeb23d0ccac0cd021701680fa0e92cd65","_from":".","_npmVersion":"3.5.2","_nodeVersion":"4.2.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"2520a55aeb23d0ccac0cd021701680fa0e92cd65","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-scroll-anim/-/rc-scroll-anim-0.2.0.tgz"},"maintainers":[{"name":"jljsj33","email":"155259966@qq.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-scroll-anim-0.2.0.tgz_1457497413765_0.6835403207223862"},"directories":{}},"0.2.1":{"name":"rc-scroll-anim","version":"0.2.1","description":"scroll-anim anim component for react","keywords":["react","react-component","react-scroll-anim","scroll-anim"],"homepage":"https://github.com/react-component/scroll-anim","author":{"name":"155259966@qq.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/scroll-anim.git"},"bugs":{"url":"https://github.com/react-component/scroll-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8020},"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.x","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"0.14.x","react-dom":"0.14.x","rc-queue-anim":"0.11.x","rc-tween-one":"0.2.x","rc-animate":"2.0.x"},"pre-commit":["lint"],"dependencies":{"object-assign":"4.0.1","tween-functions":"1.0.1","raf":"3.1.0"},"gitHead":"78a503d6dca2770fd64294c2ff704acf4987d407","_id":"rc-scroll-anim@0.2.1","_shasum":"e9e9ec42f5cc1f77e23bb0feb619dea4854f1835","_from":".","_npmVersion":"3.5.2","_nodeVersion":"4.2.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"e9e9ec42f5cc1f77e23bb0feb619dea4854f1835","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-scroll-anim/-/rc-scroll-anim-0.2.1.tgz"},"maintainers":[{"name":"jljsj33","email":"155259966@qq.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-scroll-anim-0.2.1.tgz_1458013835057_0.8840332289692014"},"directories":{}},"0.2.2":{"name":"rc-scroll-anim","version":"0.2.2","description":"scroll-anim anim component for react","keywords":["react","react-component","react-scroll-anim","scroll-anim"],"homepage":"https://github.com/react-component/scroll-anim","author":{"name":"155259966@qq.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/scroll-anim.git"},"bugs":{"url":"https://github.com/react-component/scroll-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8020},"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.x","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"0.14.x","react-dom":"0.14.x","rc-queue-anim":"0.11.x","rc-tween-one":"0.2.x","rc-animate":"2.0.x"},"pre-commit":["lint"],"dependencies":{"object-assign":"4.0.1","tween-functions":"1.0.1","raf":"3.1.0"},"gitHead":"59f45111d0904f0c7428e77d442d6130c0f9c6cd","_id":"rc-scroll-anim@0.2.2","_shasum":"68dc522096efaeace7eba548a246e3f7f3766c18","_from":".","_npmVersion":"3.5.2","_nodeVersion":"4.2.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"68dc522096efaeace7eba548a246e3f7f3766c18","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-scroll-anim/-/rc-scroll-anim-0.2.2.tgz"},"maintainers":[{"name":"jljsj33","email":"155259966@qq.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-scroll-anim-0.2.2.tgz_1458726788650_0.41075539821758866"},"directories":{}},"0.2.3":{"name":"rc-scroll-anim","version":"0.2.3","description":"scroll-anim anim component for react","keywords":["react","react-component","react-scroll-anim","scroll-anim"],"homepage":"https://github.com/react-component/scroll-anim","author":{"name":"155259966@qq.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/scroll-anim.git"},"bugs":{"url":"https://github.com/react-component/scroll-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8020},"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.x","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"^15.0.0","react-addons-test-utils":"0.14.x","react-dom":"0.14.x","rc-queue-anim":"0.11.x","rc-tween-one":"0.2.x","rc-animate":"2.0.x"},"pre-commit":["lint"],"dependencies":{"object-assign":"4.0.1","tween-functions":"1.0.1","raf":"3.1.0","style-utils":"~0.0.1"},"gitHead":"04e8e891a67a2906593a11691e3e657cefe4d34e","_id":"rc-scroll-anim@0.2.3","_shasum":"e3830d4101c21d2e3349080c130ad6179f920720","_from":".","_npmVersion":"3.5.2","_nodeVersion":"4.2.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"e3830d4101c21d2e3349080c130ad6179f920720","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-scroll-anim/-/rc-scroll-anim-0.2.3.tgz"},"maintainers":[{"name":"jljsj33","email":"155259966@qq.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/rc-scroll-anim-0.2.3.tgz_1460355616437_0.5776360651943833"},"directories":{}},"0.2.4":{"name":"rc-scroll-anim","version":"0.2.4","description":"scroll-anim anim component for react","keywords":["react","react-component","react-scroll-anim","scroll-anim"],"homepage":"https://github.com/react-component/scroll-anim","author":{"name":"155259966@qq.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/scroll-anim.git"},"bugs":{"url":"https://github.com/react-component/scroll-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8020},"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.x","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"^15.0.0","react-addons-test-utils":"0.14.x","react-dom":"0.14.x","rc-queue-anim":"0.11.x","rc-tween-one":"0.2.x","rc-animate":"2.0.x"},"pre-commit":["lint"],"dependencies":{"object-assign":"4.0.1","tween-functions":"1.0.1","raf":"3.1.0","style-utils":"~0.0.1"},"gitHead":"48c443d9ec246b7bb5357ea39c272cec4e00f048","_id":"rc-scroll-anim@0.2.4","_shasum":"72ee6e8a92dcad283403f1eaf7fc343cfeb74a59","_from":".","_npmVersion":"3.5.2","_nodeVersion":"4.2.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"72ee6e8a92dcad283403f1eaf7fc343cfeb74a59","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-scroll-anim/-/rc-scroll-anim-0.2.4.tgz"},"maintainers":[{"name":"jljsj33","email":"155259966@qq.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/rc-scroll-anim-0.2.4.tgz_1460366977694_0.9084566519595683"},"directories":{}},"0.2.6":{"name":"rc-scroll-anim","version":"0.2.6","description":"scroll-anim anim component for react","keywords":["react","react-component","react-scroll-anim","scroll-anim"],"homepage":"https://github.com/react-component/scroll-anim","author":{"name":"155259966@qq.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/scroll-anim.git"},"bugs":{"url":"https://github.com/react-component/scroll-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8020},"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.x","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-dom":"^15.0.0","rc-queue-anim":"0.11.x","rc-tween-one":"0.2.x","rc-animate":"2.0.x"},"pre-commit":["lint"],"dependencies":{"object-assign":"4.0.x","tween-functions":"1.0.x","raf":"3.1.x","style-utils":"0.0.x"},"gitHead":"c71b169b28f5482ce9081d17c546b687179b2faa","_id":"rc-scroll-anim@0.2.6","_shasum":"e7d5c80e8507e495e11d4452c8fbad9b33ea3976","_from":".","_npmVersion":"3.5.2","_nodeVersion":"4.2.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"e7d5c80e8507e495e11d4452c8fbad9b33ea3976","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-scroll-anim/-/rc-scroll-anim-0.2.6.tgz"},"maintainers":[{"name":"jljsj33","email":"155259966@qq.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-scroll-anim-0.2.6.tgz_1460718002319_0.5619240519590676"},"directories":{}},"0.2.7":{"name":"rc-scroll-anim","version":"0.2.7","description":"scroll-anim anim component for react","keywords":["react","react-component","react-scroll-anim","scroll-anim"],"homepage":"https://github.com/react-component/scroll-anim","author":{"name":"155259966@qq.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/scroll-anim.git"},"bugs":{"url":"https://github.com/react-component/scroll-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8020},"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.x","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-dom":"^15.0.0","rc-queue-anim":"0.11.x","rc-tween-one":"0.2.x","rc-animate":"2.0.x"},"pre-commit":["lint"],"dependencies":{"object-assign":"4.0.x","tween-functions":"1.0.x","raf":"3.1.x","style-utils":"0.0.x"},"gitHead":"814f05f8bf876ccf0e184e1081961fbea9e8728b","_id":"rc-scroll-anim@0.2.7","_shasum":"f6148fabe922b1cf4cd44e39f2dd0f5a102bf018","_from":".","_npmVersion":"3.5.2","_nodeVersion":"4.2.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"f6148fabe922b1cf4cd44e39f2dd0f5a102bf018","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-scroll-anim/-/rc-scroll-anim-0.2.7.tgz"},"maintainers":[{"name":"jljsj33","email":"155259966@qq.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-scroll-anim-0.2.7.tgz_1460954465955_0.6537937268149108"},"directories":{}},"0.2.8":{"name":"rc-scroll-anim","version":"0.2.8","description":"scroll-anim anim component for react","keywords":["react","react-component","react-scroll-anim","scroll-anim"],"homepage":"https://github.com/react-component/scroll-anim","author":{"name":"155259966@qq.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/scroll-anim.git"},"bugs":{"url":"https://github.com/react-component/scroll-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8020},"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.x","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-dom":"^15.0.0","rc-queue-anim":"0.11.x","rc-tween-one":"0.2.x","rc-animate":"2.0.x"},"pre-commit":["lint"],"dependencies":{"object-assign":"4.0.x","tween-functions":"1.0.x","raf":"3.1.x","style-utils":"0.0.x"},"gitHead":"34f3693a65651d8af49b2487c551e794ac284b7d","_id":"rc-scroll-anim@0.2.8","_shasum":"e28be5919ac25189761d0bc37d7e44049d4da229","_from":".","_npmVersion":"3.5.2","_nodeVersion":"4.2.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"e28be5919ac25189761d0bc37d7e44049d4da229","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-scroll-anim/-/rc-scroll-anim-0.2.8.tgz"},"maintainers":[{"name":"jljsj33","email":"155259966@qq.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/rc-scroll-anim-0.2.8.tgz_1460957891045_0.0659595571924001"},"directories":{}},"0.2.9":{"name":"rc-scroll-anim","version":"0.2.9","description":"scroll-anim anim component for react","keywords":["react","react-component","react-scroll-anim","scroll-anim"],"homepage":"https://github.com/react-component/scroll-anim","author":{"name":"155259966@qq.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/scroll-anim.git"},"bugs":{"url":"https://github.com/react-component/scroll-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8020},"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.x","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-dom":"^15.0.0","rc-queue-anim":"0.11.x","rc-animate":"2.0.x"},"pre-commit":["lint"],"dependencies":{"object-assign":"4.0.x","tween-functions":"1.0.x","raf":"3.1.x","rc-tween-one":"~0.5.5"},"gitHead":"cf26d01158b87154c0242ffc0fe05ec4824da8c7","_id":"rc-scroll-anim@0.2.9","_shasum":"b143c7e9ef966bcee382d555a46ce92d12c06340","_from":".","_npmVersion":"3.5.2","_nodeVersion":"4.2.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"b143c7e9ef966bcee382d555a46ce92d12c06340","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-scroll-anim/-/rc-scroll-anim-0.2.9.tgz"},"maintainers":[{"name":"jljsj33","email":"155259966@qq.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-scroll-anim-0.2.9.tgz_1464177740738_0.839286103611812"},"directories":{}},"0.2.10":{"name":"rc-scroll-anim","version":"0.2.10","description":"scroll-anim anim component for react","keywords":["react","react-component","react-scroll-anim","scroll-anim"],"homepage":"https://github.com/react-component/scroll-anim","author":{"name":"155259966@qq.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/scroll-anim.git"},"bugs":{"url":"https://github.com/react-component/scroll-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8020},"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.x","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-dom":"^15.0.0","rc-queue-anim":"0.11.x","rc-animate":"2.0.x"},"pre-commit":["lint"],"dependencies":{"object-assign":"4.0.x","tween-functions":"1.0.x","raf":"3.1.x","rc-tween-one":"~0.5.5"},"gitHead":"214db7bce51bcf6bd9dc5fda5fe7c4e3cbc7c4de","_id":"rc-scroll-anim@0.2.10","_shasum":"61b693d6c1d869aba96e0983730718305982a521","_from":".","_npmVersion":"3.5.2","_nodeVersion":"4.2.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"61b693d6c1d869aba96e0983730718305982a521","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-scroll-anim/-/rc-scroll-anim-0.2.10.tgz"},"maintainers":[{"name":"jljsj33","email":"155259966@qq.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/rc-scroll-anim-0.2.10.tgz_1467726264017_0.891232855618"},"directories":{}},"0.2.11":{"name":"rc-scroll-anim","version":"0.2.11","description":"scroll-anim anim component for react","keywords":["react","react-component","react-scroll-anim","scroll-anim"],"homepage":"https://github.com/react-component/scroll-anim","author":{"name":"155259966@qq.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/scroll-anim.git"},"bugs":{"url":"https://github.com/react-component/scroll-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8020},"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.x","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"~15.2.0","react-addons-test-utils":"~15.2.0","react-dom":"~15.2.0","rc-queue-anim":"0.11.x","rc-animate":"2.x"},"pre-commit":["lint"],"dependencies":{"object-assign":"4.0.x","object.omit":"^2.0.0","raf":"3.1.x","rc-tween-one":"~0.5.5","tween-functions":"1.0.x"},"gitHead":"b0e6db95d59c467609b680308a9f48d1cf62a7cb","_id":"rc-scroll-anim@0.2.11","_shasum":"8b514e85aeee053a50b2655d6e4a3c9a786ef484","_from":".","_npmVersion":"3.5.2","_nodeVersion":"4.2.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"8b514e85aeee053a50b2655d6e4a3c9a786ef484","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-scroll-anim/-/rc-scroll-anim-0.2.11.tgz"},"maintainers":[{"name":"jljsj33","email":"155259966@qq.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/rc-scroll-anim-0.2.11.tgz_1467872067371_0.39123219065368176"},"directories":{}},"0.3.0":{"name":"rc-scroll-anim","version":"0.3.0","description":"scroll-anim anim component for react","keywords":["react","react-component","react-scroll-anim","scroll-anim"],"homepage":"https://github.com/react-component/scroll-anim","author":{"name":"155259966@qq.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/scroll-anim.git"},"bugs":{"url":"https://github.com/react-component/scroll-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8020},"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.x","pre-commit":"1.x","rc-tools":"5.x","react":"~15.2.0","react-addons-test-utils":"~15.2.0","react-dom":"~15.2.0","rc-queue-anim":"0.11.x","rc-animate":"2.x"},"pre-commit":["lint"],"dependencies":{"object-assign":"4.0.x","raf":"3.1.x","rc-tween-one":"~0.6.19","tween-functions":"1.0.x"},"gitHead":"e95746a8f2dd9abff006325a50b4f7f18ad39915","_id":"rc-scroll-anim@0.3.0","_shasum":"17e9607ae44bee15f9f49e56c80bdf35570386f5","_from":".","_npmVersion":"3.5.2","_nodeVersion":"4.2.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"17e9607ae44bee15f9f49e56c80bdf35570386f5","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-scroll-anim/-/rc-scroll-anim-0.3.0.tgz"},"maintainers":[{"name":"jljsj33","email":"155259966@qq.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/rc-scroll-anim-0.3.0.tgz_1467890506676_0.8758759079501033"},"directories":{}},"0.3.1":{"name":"rc-scroll-anim","version":"0.3.1","description":"scroll-anim anim component for react","keywords":["react","react-component","react-scroll-anim","scroll-anim"],"homepage":"https://github.com/react-component/scroll-anim","author":{"name":"155259966@qq.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/scroll-anim.git"},"bugs":{"url":"https://github.com/react-component/scroll-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8020},"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.x","pre-commit":"1.x","rc-tools":"5.x","react":"~15.2.0","react-addons-test-utils":"~15.2.0","react-dom":"~15.2.0","rc-queue-anim":"0.11.x","rc-animate":"2.x"},"pre-commit":["lint"],"dependencies":{"object-assign":"4.0.x","raf":"3.1.x","rc-tween-one":"~0.6.19","tween-functions":"1.0.x"},"gitHead":"ac1676797b8fb77e522f21ab4f2aa7bf7d278716","_id":"rc-scroll-anim@0.3.1","_shasum":"2089becce2fba8d4b7c251803ec468645674112a","_from":".","_npmVersion":"3.5.2","_nodeVersion":"4.2.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"2089becce2fba8d4b7c251803ec468645674112a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-scroll-anim/-/rc-scroll-anim-0.3.1.tgz"},"maintainers":[{"name":"jljsj33","email":"155259966@qq.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-scroll-anim-0.3.1.tgz_1468578013558_0.12599392631091177"},"directories":{}},"0.3.2":{"name":"rc-scroll-anim","version":"0.3.2","description":"scroll-anim anim component for react","keywords":["react","react-component","react-scroll-anim","scroll-anim"],"homepage":"https://github.com/react-component/scroll-anim","author":{"name":"155259966@qq.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/scroll-anim.git"},"bugs":{"url":"https://github.com/react-component/scroll-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8020},"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.x","pre-commit":"1.x","rc-tools":"5.x","react":"~15.2.0","react-addons-test-utils":"~15.2.0","react-dom":"~15.2.0","rc-queue-anim":"0.11.x","rc-animate":"2.x"},"pre-commit":["lint"],"dependencies":{"object-assign":"4.0.x","raf":"3.1.x","rc-tween-one":"~0.6.19","tween-functions":"1.0.x"},"gitHead":"7fb84ca94e77b41101f7be4c2b52859b7f86cf95","_id":"rc-scroll-anim@0.3.2","_shasum":"57fa0146d3a6b023c28e8160d957f34859abec08","_from":".","_npmVersion":"3.5.2","_nodeVersion":"4.2.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"57fa0146d3a6b023c28e8160d957f34859abec08","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-scroll-anim/-/rc-scroll-anim-0.3.2.tgz"},"maintainers":[{"name":"jljsj33","email":"155259966@qq.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/rc-scroll-anim-0.3.2.tgz_1468921368866_0.7357061333023012"},"directories":{}},"0.3.3":{"name":"rc-scroll-anim","version":"0.3.3","description":"scroll-anim anim component for react","keywords":["react","react-component","react-scroll-anim","scroll-anim"],"homepage":"https://github.com/react-component/scroll-anim","author":{"name":"155259966@qq.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/scroll-anim.git"},"bugs":{"url":"https://github.com/react-component/scroll-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8020},"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.x","pre-commit":"1.x","rc-tools":"5.x","react":"~15.2.0","react-addons-test-utils":"~15.2.0","react-dom":"~15.2.0","rc-queue-anim":"0.11.x","rc-animate":"2.x"},"pre-commit":["lint"],"dependencies":{"object-assign":"4.0.x","raf":"3.1.x","rc-tween-one":"~0.6.19","tween-functions":"1.0.x"},"gitHead":"de5c0c63b3e687a8e1ee506bc205f1f887e472dd","_id":"rc-scroll-anim@0.3.3","_shasum":"1ca669e839f9597904a26386469e571ad3d30ce6","_from":".","_npmVersion":"3.5.2","_nodeVersion":"4.2.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"1ca669e839f9597904a26386469e571ad3d30ce6","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-scroll-anim/-/rc-scroll-anim-0.3.3.tgz"},"maintainers":[{"name":"jljsj33","email":"155259966@qq.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-scroll-anim-0.3.3.tgz_1468985046764_0.20447052060626447"},"directories":{}},"0.3.4":{"name":"rc-scroll-anim","version":"0.3.4","description":"scroll-anim anim component for react","keywords":["react","react-component","react-scroll-anim","scroll-anim"],"homepage":"https://github.com/react-component/scroll-anim","author":{"name":"155259966@qq.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/scroll-anim.git"},"bugs":{"url":"https://github.com/react-component/scroll-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8020},"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.x","pre-commit":"1.x","rc-tools":"5.x","react":"~15.2.0","react-addons-test-utils":"~15.2.0","react-dom":"~15.2.0","rc-queue-anim":"0.11.x","rc-animate":"2.x"},"pre-commit":["lint"],"dependencies":{"object-assign":"4.0.x","raf":"3.1.x","rc-tween-one":"~0.6.19","tween-functions":"1.0.x"},"gitHead":"0d891894c330d2e1ea3b85247e6945df9bc0147d","_id":"rc-scroll-anim@0.3.4","_shasum":"4a01fe583ad65ca28f7aa4c8114edbfe54862c92","_from":".","_npmVersion":"3.5.2","_nodeVersion":"4.2.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"4a01fe583ad65ca28f7aa4c8114edbfe54862c92","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-scroll-anim/-/rc-scroll-anim-0.3.4.tgz"},"maintainers":[{"name":"jljsj33","email":"155259966@qq.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-scroll-anim-0.3.4.tgz_1469599989489_0.6385009693913162"},"directories":{}},"0.3.5":{"name":"rc-scroll-anim","version":"0.3.5","description":"scroll-anim anim component for react","keywords":["react","react-component","react-scroll-anim","scroll-anim"],"homepage":"https://github.com/react-component/scroll-anim","author":{"name":"155259966@qq.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/scroll-anim.git"},"bugs":{"url":"https://github.com/react-component/scroll-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8020},"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.x","pre-commit":"1.x","rc-tools":"5.x","react":"~15.2.0","react-addons-test-utils":"~15.2.0","react-dom":"~15.2.0","rc-queue-anim":"0.11.x","rc-animate":"2.x"},"pre-commit":["lint"],"dependencies":{"object-assign":"4.0.x","raf":"3.1.x","rc-tween-one":"~0.6.19","tween-functions":"1.0.x"},"gitHead":"bc5490501dfa4cd9e04b94980e03fc99f89b0510","_id":"rc-scroll-anim@0.3.5","_shasum":"53cd06a14480d1d4cc3edd9443ed2823de3a7892","_from":".","_npmVersion":"3.5.2","_nodeVersion":"4.2.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"53cd06a14480d1d4cc3edd9443ed2823de3a7892","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-scroll-anim/-/rc-scroll-anim-0.3.5.tgz"},"maintainers":[{"name":"jljsj33","email":"155259966@qq.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/rc-scroll-anim-0.3.5.tgz_1470127060009_0.049675215035676956"},"directories":{}},"0.3.6":{"name":"rc-scroll-anim","version":"0.3.6","description":"scroll-anim anim component for react","keywords":["react","react-component","react-scroll-anim","scroll-anim"],"homepage":"https://github.com/react-component/scroll-anim","author":{"name":"155259966@qq.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/scroll-anim.git"},"bugs":{"url":"https://github.com/react-component/scroll-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8020},"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.x","pre-commit":"1.x","rc-tools":"5.x","react":"~15.2.0","react-addons-test-utils":"~15.2.0","react-dom":"~15.2.0","rc-queue-anim":"0.11.x","rc-animate":"2.x"},"pre-commit":["lint"],"dependencies":{"object-assign":"4.0.x","raf":"3.1.x","rc-tween-one":"~0.6.19","tween-functions":"1.0.x"},"gitHead":"83b0f47129175de99e983b2248e610e5ce00d60a","_id":"rc-scroll-anim@0.3.6","_shasum":"9669d2de4b92c428606e649829b0d9053a3309a2","_from":".","_npmVersion":"3.5.2","_nodeVersion":"4.2.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"9669d2de4b92c428606e649829b0d9053a3309a2","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-scroll-anim/-/rc-scroll-anim-0.3.6.tgz"},"maintainers":[{"name":"jljsj33","email":"155259966@qq.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-scroll-anim-0.3.6.tgz_1472016604802_0.67623649421148"},"directories":{}},"0.3.7":{"name":"rc-scroll-anim","version":"0.3.7","description":"scroll-anim anim component for react","keywords":["react","react-component","react-scroll-anim","scroll-anim"],"homepage":"https://github.com/react-component/scroll-anim","author":{"name":"155259966@qq.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/scroll-anim.git"},"bugs":{"url":"https://github.com/react-component/scroll-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8020},"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.x","pre-commit":"1.x","rc-tools":"5.x","react":"~15.2.0","react-addons-test-utils":"~15.2.0","react-dom":"~15.2.0","rc-queue-anim":"0.11.x","rc-animate":"2.x"},"pre-commit":["lint"],"dependencies":{"raf":"3.1.x","rc-tween-one":"~0.8.0","tween-functions":"1.0.x"},"gitHead":"d2524152d046d02d29b9268875e95cfc356f2a27","_id":"rc-scroll-anim@0.3.7","_shasum":"0593f91e4e71265bf4cb3917f893c4c3b493bf05","_from":".","_npmVersion":"3.5.2","_nodeVersion":"4.2.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"0593f91e4e71265bf4cb3917f893c4c3b493bf05","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-scroll-anim/-/rc-scroll-anim-0.3.7.tgz"},"maintainers":[{"name":"jljsj33","email":"155259966@qq.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-scroll-anim-0.3.7.tgz_1472124630177_0.13336693332530558"},"directories":{}},"0.3.8":{"name":"rc-scroll-anim","version":"0.3.8","description":"scroll-anim anim component for react","keywords":["react","react-component","react-scroll-anim","scroll-anim"],"homepage":"https://github.com/react-component/scroll-anim","author":{"name":"155259966@qq.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/scroll-anim.git"},"bugs":{"url":"https://github.com/react-component/scroll-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8020},"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.x","pre-commit":"1.x","rc-tools":"5.x","react":"~15.2.0","react-addons-test-utils":"~15.2.0","react-dom":"~15.2.0","rc-queue-anim":"0.11.x","rc-animate":"2.x"},"pre-commit":["lint"],"dependencies":{"raf":"3.1.x","rc-tween-one":"~0.8.0","tween-functions":"1.0.x"},"gitHead":"3df11479b5f066cde0bb5043e926377771e8960e","_id":"rc-scroll-anim@0.3.8","_shasum":"dfcf357b333a5fca502c6816fbcd13a4921bdee5","_from":".","_npmVersion":"3.5.2","_nodeVersion":"4.2.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"dfcf357b333a5fca502c6816fbcd13a4921bdee5","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-scroll-anim/-/rc-scroll-anim-0.3.8.tgz"},"maintainers":[{"name":"jljsj33","email":"155259966@qq.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/rc-scroll-anim-0.3.8.tgz_1472125544183_0.5876777230296284"},"directories":{}},"0.3.9":{"name":"rc-scroll-anim","version":"0.3.9","description":"scroll-anim anim component for react","keywords":["react","react-component","react-scroll-anim","scroll-anim"],"homepage":"https://github.com/react-component/scroll-anim","author":{"name":"155259966@qq.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/scroll-anim.git"},"bugs":{"url":"https://github.com/react-component/scroll-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8020},"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.x","pre-commit":"1.x","rc-tools":"5.x","react":"~15.2.0","react-addons-test-utils":"~15.2.0","react-dom":"~15.2.0","rc-queue-anim":"0.11.x","rc-animate":"2.x"},"pre-commit":["lint"],"dependencies":{"raf":"3.1.x","rc-tween-one":"~0.8.0","tween-functions":"1.0.x"},"gitHead":"c352d959b861e89c086da1df68a05f6b8cdb966f","_id":"rc-scroll-anim@0.3.9","_shasum":"5f00cf5f6e5d6c857219264bed109e111825c87a","_from":".","_npmVersion":"3.5.2","_nodeVersion":"4.2.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"5f00cf5f6e5d6c857219264bed109e111825c87a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-scroll-anim/-/rc-scroll-anim-0.3.9.tgz"},"maintainers":[{"name":"jljsj33","email":"155259966@qq.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-scroll-anim-0.3.9.tgz_1473315294132_0.5045581329613924"},"directories":{}},"0.4.0":{"name":"rc-scroll-anim","version":"0.4.0","description":"scroll-anim anim component for react","keywords":["react","react-component","react-scroll-anim","scroll-anim"],"homepage":"https://github.com/react-component/scroll-anim","author":{"name":"155259966@qq.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/scroll-anim.git"},"bugs":{"url":"https://github.com/react-component/scroll-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8020},"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.x","pre-commit":"1.x","rc-tools":"5.x","react":"~15.2.0","react-addons-test-utils":"~15.2.0","react-dom":"~15.2.0","rc-queue-anim":"0.11.x","rc-animate":"2.x"},"pre-commit":["lint"],"dependencies":{"raf":"3.1.x","rc-tween-one":"~0.8.0","tween-functions":"1.0.x"},"gitHead":"14b9cd0c94766ba65c98400147ec73c934c310f2","_id":"rc-scroll-anim@0.4.0","_shasum":"8a41867cdf6dee2de9194e92d8be59f59fe2f8f9","_from":".","_npmVersion":"3.5.2","_nodeVersion":"4.2.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"8a41867cdf6dee2de9194e92d8be59f59fe2f8f9","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-scroll-anim/-/rc-scroll-anim-0.4.0.tgz"},"maintainers":[{"name":"jljsj33","email":"155259966@qq.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-scroll-anim-0.4.0.tgz_1477022361390_0.6071679037995636"},"directories":{}},"0.4.1":{"name":"rc-scroll-anim","version":"0.4.1","description":"scroll-anim anim component for react","keywords":["react","react-component","react-scroll-anim","scroll-anim"],"homepage":"https://github.com/react-component/scroll-anim","author":{"name":"155259966@qq.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/scroll-anim.git"},"bugs":{"url":"https://github.com/react-component/scroll-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8020},"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.x","pre-commit":"1.x","rc-tools":"5.x","react":"~15.2.0","react-addons-test-utils":"~15.2.0","react-dom":"~15.2.0","rc-queue-anim":"0.11.x","rc-animate":"2.x"},"pre-commit":["lint"],"dependencies":{"raf":"3.x","rc-tween-one":"~0.9.0","tween-functions":"1.x"},"gitHead":"8b387f78ec5d83226b35369c5d302d3f5e3111c4","_id":"rc-scroll-anim@0.4.1","_shasum":"dbaab495e0944f5c67ece27510380604d44df365","_from":".","_npmVersion":"3.5.2","_nodeVersion":"4.2.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"dbaab495e0944f5c67ece27510380604d44df365","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-scroll-anim/-/rc-scroll-anim-0.4.1.tgz"},"maintainers":[{"name":"jljsj33","email":"155259966@qq.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-scroll-anim-0.4.1.tgz_1477036818760_0.8670269318390638"},"directories":{}},"0.5.0":{"name":"rc-scroll-anim","version":"0.5.0","description":"scroll-anim anim component for react","keywords":["react","react-component","react-scroll-anim","scroll-anim"],"homepage":"https://github.com/react-component/scroll-anim","author":{"name":"155259966@qq.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/scroll-anim.git"},"bugs":{"url":"https://github.com/react-component/scroll-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8020},"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.x","pre-commit":"1.x","rc-tools":"5.x","react":"~15.2.0","react-addons-test-utils":"~15.2.0","react-dom":"~15.2.0","rc-queue-anim":"0.11.x","rc-animate":"2.x"},"pre-commit":["lint"],"dependencies":{"raf":"3.x","rc-tween-one":"~0.11.6","tween-functions":"1.x"},"gitHead":"a0f76e50fd6206ad351e62342ad32b0bd1ff9479","_id":"rc-scroll-anim@0.5.0","_shasum":"2ed6d8cef2cafafeeea293a53bec777417edea48","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"2ed6d8cef2cafafeeea293a53bec777417edea48","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-scroll-anim/-/rc-scroll-anim-0.5.0.tgz"},"maintainers":[{"name":"jljsj33","email":"155259966@qq.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-scroll-anim-0.5.0.tgz_1478781346098_0.01923271524719894"},"directories":{}},"0.5.1":{"name":"rc-scroll-anim","version":"0.5.1","description":"scroll-anim anim component for react","keywords":["react","react-component","react-scroll-anim","scroll-anim"],"homepage":"https://github.com/react-component/scroll-anim","author":{"name":"155259966@qq.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/scroll-anim.git"},"bugs":{"url":"https://github.com/react-component/scroll-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8020},"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.x","pre-commit":"1.x","rc-tools":"5.x","react":"~15.2.0","react-addons-test-utils":"~15.2.0","react-dom":"~15.2.0","rc-queue-anim":"0.11.x","rc-animate":"2.x"},"pre-commit":["lint"],"dependencies":{"raf":"3.x","rc-tween-one":"~0.11.6","tween-functions":"1.x"},"gitHead":"cd45ca8c63f0be094f5e57d4f1b99fda39f0dffe","_id":"rc-scroll-anim@0.5.1","_shasum":"ccc4ab2a80a58875883b4229213bd831e793e6d6","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"ccc4ab2a80a58875883b4229213bd831e793e6d6","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-scroll-anim/-/rc-scroll-anim-0.5.1.tgz"},"maintainers":[{"name":"jljsj33","email":"155259966@qq.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-scroll-anim-0.5.1.tgz_1478852558090_0.8503558312077075"},"directories":{}},"0.5.2":{"name":"rc-scroll-anim","version":"0.5.2","description":"scroll-anim anim component for react","keywords":["react","react-component","react-scroll-anim","scroll-anim"],"homepage":"https://github.com/react-component/scroll-anim","author":{"name":"155259966@qq.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/scroll-anim.git"},"bugs":{"url":"https://github.com/react-component/scroll-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8020},"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.x","pre-commit":"1.x","rc-tools":"5.x","react":"~15.2.0","react-addons-test-utils":"~15.2.0","react-dom":"~15.2.0","rc-queue-anim":"0.11.x","rc-animate":"2.x"},"pre-commit":["lint"],"dependencies":{"raf":"3.x","rc-tween-one":"~0.11.6","tween-functions":"1.x"},"gitHead":"873086bfd4f9cdb03a15fa701851ff6ea06aa49a","_id":"rc-scroll-anim@0.5.2","_shasum":"ee533cc8c1b6f45fd7d7691b866ceb4212ab9e67","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"ee533cc8c1b6f45fd7d7691b866ceb4212ab9e67","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-scroll-anim/-/rc-scroll-anim-0.5.2.tgz"},"maintainers":[{"name":"jljsj33","email":"155259966@qq.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/rc-scroll-anim-0.5.2.tgz_1479716443106_0.1301865221466869"},"directories":{}},"0.5.3":{"name":"rc-scroll-anim","version":"0.5.3","description":"scroll-anim anim component for react","keywords":["react","react-component","react-scroll-anim","scroll-anim"],"homepage":"https://github.com/react-component/scroll-anim","author":{"name":"155259966@qq.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/scroll-anim.git"},"bugs":{"url":"https://github.com/react-component/scroll-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8020},"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.x","pre-commit":"1.x","rc-tools":"5.x","react":"~15.2.0","react-addons-test-utils":"~15.2.0","react-dom":"~15.2.0","rc-queue-anim":"0.11.x","rc-animate":"2.x"},"pre-commit":["lint"],"dependencies":{"raf":"3.x","rc-tween-one":"~0.11.6","tween-functions":"1.x"},"gitHead":"61b927397b928b3358e465d5aaef7b49a0d176b6","_id":"rc-scroll-anim@0.5.3","_shasum":"dce6c2751054de9754eb4b93c4bf3ba7c52e144a","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"dce6c2751054de9754eb4b93c4bf3ba7c52e144a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-scroll-anim/-/rc-scroll-anim-0.5.3.tgz"},"maintainers":[{"name":"jljsj33","email":"155259966@qq.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/rc-scroll-anim-0.5.3.tgz_1479969509226_0.17699269857257605"},"directories":{}},"0.6.0":{"name":"rc-scroll-anim","version":"0.6.0","description":"scroll-anim anim component for react","keywords":["react","react-component","react-scroll-anim","scroll-anim"],"homepage":"https://github.com/react-component/scroll-anim","author":{"name":"155259966@qq.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/scroll-anim.git"},"bugs":{"url":"https://github.com/react-component/scroll-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8020},"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.x","pre-commit":"1.x","rc-tools":"5.x","react":"~15.2.0","react-addons-test-utils":"~15.2.0","react-dom":"~15.2.0","rc-queue-anim":"0.11.x","rc-animate":"2.x"},"pre-commit":["lint"],"dependencies":{"raf":"3.x","rc-tween-one":"~0.11.6","tween-functions":"1.x"},"gitHead":"5ca493f2136cd9abffc4c2432b11cf8ab372dc59","_id":"rc-scroll-anim@0.6.0","_shasum":"511165c5ec99d517ab6e8b47e0a5c308d50f8521","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"511165c5ec99d517ab6e8b47e0a5c308d50f8521","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-scroll-anim/-/rc-scroll-anim-0.6.0.tgz"},"maintainers":[{"name":"jljsj33","email":"155259966@qq.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-scroll-anim-0.6.0.tgz_1481535739767_0.9572877357713878"},"directories":{}},"0.6.1":{"name":"rc-scroll-anim","version":"0.6.1","description":"scroll-anim anim component for react","keywords":["react","react-component","react-scroll-anim","scroll-anim"],"homepage":"https://github.com/react-component/scroll-anim","author":{"name":"155259966@qq.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/scroll-anim.git"},"bugs":{"url":"https://github.com/react-component/scroll-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8020},"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.x","pre-commit":"1.x","rc-tools":"5.x","react":"~15.2.0","react-addons-test-utils":"~15.2.0","react-dom":"~15.2.0","rc-queue-anim":"0.11.x","rc-animate":"2.x"},"pre-commit":["lint"],"dependencies":{"raf":"3.x","rc-tween-one":"~0.11.6","tween-functions":"1.x"},"gitHead":"5b350ca6402f71e86ee051774dad3b21895ebc8f","_id":"rc-scroll-anim@0.6.1","_shasum":"f587131ca352d983dbd5ca1c2bd8c1fdf4570e76","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"f587131ca352d983dbd5ca1c2bd8c1fdf4570e76","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-scroll-anim/-/rc-scroll-anim-0.6.1.tgz"},"maintainers":[{"name":"jljsj33","email":"155259966@qq.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-scroll-anim-0.6.1.tgz_1481536741449_0.2735044804867357"},"directories":{}},"0.6.2":{"name":"rc-scroll-anim","version":"0.6.2","description":"scroll-anim anim component for react","keywords":["react","react-component","react-scroll-anim","scroll-anim"],"homepage":"https://github.com/react-component/scroll-anim","author":{"name":"155259966@qq.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/scroll-anim.git"},"bugs":{"url":"https://github.com/react-component/scroll-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8020},"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.x","pre-commit":"1.x","rc-tools":"5.x","react":"~15.2.0","react-addons-test-utils":"~15.2.0","react-dom":"~15.2.0","rc-queue-anim":"0.11.x","rc-animate":"2.x"},"pre-commit":["lint"],"dependencies":{"raf":"3.x","rc-tween-one":"~0.11.6","tween-functions":"1.x"},"gitHead":"0dfb912372fcac90135c86186b89c09e9832b5f0","_id":"rc-scroll-anim@0.6.2","_shasum":"20d0a25792d80611947a8efb9541685f032ad182","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"20d0a25792d80611947a8efb9541685f032ad182","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-scroll-anim/-/rc-scroll-anim-0.6.2.tgz"},"maintainers":[{"name":"jljsj33","email":"155259966@qq.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-scroll-anim-0.6.2.tgz_1482302990096_0.5687552073504776"},"directories":{}},"0.6.3":{"name":"rc-scroll-anim","version":"0.6.3","description":"scroll-anim anim component for react","keywords":["react","react-component","react-scroll-anim","scroll-anim"],"homepage":"https://github.com/react-component/scroll-anim","author":{"name":"155259966@qq.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/scroll-anim.git"},"bugs":{"url":"https://github.com/react-component/scroll-anim/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8020},"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.x","pre-commit":"1.x","rc-tools":"5.x","react":"~15.2.0","react-addons-test-utils":"~15.2.0","react-dom":"~15.2.0","rc-queue-anim":"0.11.x","rc-animate":"2.x"},"pre-commit":["lint"],"dependencies":{"raf":"3.x","rc-tween-one":"~0.11.6","tween-functions":"1.x"},"gitHead":"9646bb79bc6038374d081536f02fd76dee14ba49","_id":"rc-scroll-anim@0.6.3","_shasum":"4425d47263f30079d6f00a1de5e8be3f7b8a7837","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"4425d47263f30079d6f00a1de5e8be3f7b8a7837","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-scroll-anim/-/rc-scroll-anim-0.6.3.tgz"},"maintainers":[{"name":"jljsj33","email":"155259966@qq.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/rc-scroll-anim-0.6.3.tgz_1487055382136_0.7515539741143584"},"directories":{}},"0.6.4":{"name":"rc-scroll-anim","version":"0.6.4","description":"scroll-anim anim component for react","keywords":["react","react-component","react-scroll-anim","scroll-anim"],"homepage":"https://github.com/react-component/scroll-anim","author":{"name":"155259966@qq.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/scroll-anim.git"},"bugs":{"url":"https://github.com/react-component/scroll-anim/issues"},"files":["lib","assets/*.css","dist"],"licenses":"MIT","main":"./lib/index","entry":{"rc-scroll-anim":["./src/index.js","./assets/index.less"]},"config":{"port":8020},"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.x","pre-commit":"1.x","rc-tools":"5.x","react":"~15.2.0","react-addons-test-utils":"~15.2.0","react-dom":"~15.2.0","rc-queue-anim":"0.11.x","rc-animate":"2.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","raf":"3.x","rc-tween-one":"~0.11.6","tween-functions":"1.x"},"gitHead":"5df7e2f7cfea9fb7ba08a4ff6cc8c3299a96fe80","_id":"rc-scroll-anim@0.6.4","_shasum":"d74fb9b3fbd078be40e85aa29e7bf9594e21f15f","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"d74fb9b3fbd078be40e85aa29e7bf9594e21f15f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-scroll-anim/-/rc-scroll-anim-0.6.4.tgz"},"maintainers":[{"name":"jljsj33","email":"155259966@qq.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-scroll-anim-0.6.4.tgz_1488772563854_0.36043463833630085"},"directories":{}},"0.6.5":{"name":"rc-scroll-anim","version":"0.6.5","description":"scroll-anim anim component for react","keywords":["react","react-component","react-scroll-anim","scroll-anim"],"homepage":"https://github.com/react-component/scroll-anim","author":{"name":"155259966@qq.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/scroll-anim.git"},"bugs":{"url":"https://github.com/react-component/scroll-anim/issues"},"files":["lib","assets/*.css","dist"],"licenses":"MIT","main":"./lib/index","entry":{"rc-scroll-anim":["./assets/index.less","./src/index.js"]},"config":{"port":8020},"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.x","pre-commit":"1.x","rc-tools":"5.x","react":"~15.2.0","react-addons-test-utils":"~15.2.0","react-dom":"~15.2.0","rc-queue-anim":"0.11.x","rc-animate":"2.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","raf":"3.x","rc-tween-one":"~0.11.6","tween-functions":"1.x"},"gitHead":"791af254adb8eff2f40b5aa38bb4eb60f8703af3","_id":"rc-scroll-anim@0.6.5","_shasum":"463e945eb570eb7b13e1ac06ee9a6e9e20a1eba0","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"463e945eb570eb7b13e1ac06ee9a6e9e20a1eba0","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-scroll-anim/-/rc-scroll-anim-0.6.5.tgz"},"maintainers":[{"name":"jljsj33","email":"155259966@qq.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-scroll-anim-0.6.5.tgz_1488777911137_0.19171722722239792"},"directories":{}},"1.0.0":{"name":"rc-scroll-anim","version":"1.0.0","description":"scroll-anim anim component for react","keywords":["react","react-component","react-scroll-anim","scroll-anim"],"homepage":"https://github.com/react-component/scroll-anim","author":{"name":"155259966@qq.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/scroll-anim.git"},"bugs":{"url":"https://github.com/react-component/scroll-anim/issues"},"files":["lib","assets/*.css","dist"],"licenses":"MIT","main":"./lib/index","entry":{"rc-scroll-anim":["./assets/index.less","./src/index.js"]},"config":{"port":8020},"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.x","pre-commit":"1.x","rc-tools":"5.x","react":"~15.2.0","react-addons-test-utils":"~15.2.0","react-dom":"~15.2.0","rc-queue-anim":"0.11.x","rc-animate":"2.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","raf":"3.x","rc-tween-one":"~1.1.2","tween-functions":"1.x"},"gitHead":"81ff727bb0f0f9e1ff2c0b960216a817b6f43463","_id":"rc-scroll-anim@1.0.0","_shasum":"2376cd4bd0fc1e6f81542bca7261bb4668c17845","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"2376cd4bd0fc1e6f81542bca7261bb4668c17845","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-scroll-anim/-/rc-scroll-anim-1.0.0.tgz"},"maintainers":[{"name":"jljsj33","email":"155259966@qq.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-scroll-anim-1.0.0.tgz_1490090736053_0.6301698198076338"},"directories":{}},"1.0.1":{"name":"rc-scroll-anim","version":"1.0.1","description":"scroll-anim anim component for react","keywords":["react","react-component","react-scroll-anim","scroll-anim"],"homepage":"https://github.com/react-component/scroll-anim","author":{"name":"155259966@qq.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/scroll-anim.git"},"bugs":{"url":"https://github.com/react-component/scroll-anim/issues"},"files":["lib","assets/*.css","dist"],"licenses":"MIT","main":"./lib/index","entry":{"rc-scroll-anim":["./assets/index.less","./src/index.js"]},"config":{"port":8020},"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.x","pre-commit":"1.x","rc-tools":"5.x","react":"~15.2.0","react-addons-test-utils":"~15.2.0","react-dom":"~15.2.0","rc-queue-anim":"0.11.x","rc-animate":"2.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","raf":"3.x","rc-tween-one":"~1.1.2","tween-functions":"1.x"},"gitHead":"e9db3faa5ab2aadc8680c89a7312a6de6cc12048","_id":"rc-scroll-anim@1.0.1","_shasum":"aecf0e6a28be09932b303291abcc26c957820bbb","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"aecf0e6a28be09932b303291abcc26c957820bbb","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-scroll-anim/-/rc-scroll-anim-1.0.1.tgz"},"maintainers":[{"name":"jljsj33","email":"155259966@qq.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-scroll-anim-1.0.1.tgz_1490166086059_0.5040162997320294"},"directories":{}},"1.0.2":{"name":"rc-scroll-anim","version":"1.0.2","description":"scroll-anim anim component for react","keywords":["react","react-component","react-scroll-anim","scroll-anim"],"homepage":"https://github.com/react-component/scroll-anim","author":{"name":"155259966@qq.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/scroll-anim.git"},"bugs":{"url":"https://github.com/react-component/scroll-anim/issues"},"files":["lib","assets/*.css","dist"],"licenses":"MIT","main":"./lib/index","entry":{"rc-scroll-anim":["./assets/index.less","./src/index.js"]},"config":{"port":8020},"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.x","pre-commit":"1.x","rc-tools":"5.x","react":"~15.2.0","react-addons-test-utils":"~15.2.0","react-dom":"~15.2.0","rc-queue-anim":"0.11.x","rc-animate":"2.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","raf":"3.x","rc-tween-one":"~1.1.2","tween-functions":"1.x"},"gitHead":"cd7f4918e60fe6829347c34a2180bd3921405f6e","_id":"rc-scroll-anim@1.0.2","_shasum":"94d4b3a64f4cbc72536f2534d2d13215097b4d87","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"94d4b3a64f4cbc72536f2534d2d13215097b4d87","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-scroll-anim/-/rc-scroll-anim-1.0.2.tgz"},"maintainers":[{"name":"jljsj33","email":"155259966@qq.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/rc-scroll-anim-1.0.2.tgz_1490179576162_0.36490588053129613"},"directories":{}},"1.0.3":{"name":"rc-scroll-anim","version":"1.0.3","description":"scroll-anim anim component for react","keywords":["react","react-component","react-scroll-anim","scroll-anim"],"homepage":"https://github.com/react-component/scroll-anim","author":{"name":"155259966@qq.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/scroll-anim.git"},"bugs":{"url":"https://github.com/react-component/scroll-anim/issues"},"files":["lib","assets/*.css","dist"],"licenses":"MIT","main":"./lib/index","entry":{"rc-scroll-anim":["./assets/index.less","./src/index.js"]},"config":{"port":8020},"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.x","pre-commit":"1.x","rc-tools":"5.x","react":"~15.2.0","react-addons-test-utils":"~15.2.0","react-dom":"~15.2.0","rc-queue-anim":"0.11.x","rc-animate":"2.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","raf":"3.x","rc-tween-one":"~1.1.2","tween-functions":"1.x"},"gitHead":"a45d630a654bdd006b3392f732921c4ad3557119","_id":"rc-scroll-anim@1.0.3","_shasum":"2d4b28956090315d202dab52daf0dcc43e50e83e","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"jljsj33","email":"155259966@qq.com"},"dist":{"shasum":"2d4b28956090315d202dab52daf0dcc43e50e83e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-scroll-anim/-/rc-scroll-anim-1.0.3.tgz"},"maintainers":[{"name":"jljsj33","email":"155259966@qq.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-scroll-anim-1.0.3.tgz_1490249960155_0.45501701161265373"},"directories":{}}},"name":"rc-scroll-anim","time":{"modified":"2017-03-23T06:19:20.423Z","created":"2016-01-07T04:01:18.674Z","0.0.2":"2016-01-07T04:01:18.674Z","0.0.3":"2016-01-07T05:39:22.817Z","0.0.4":"2016-01-07T05:47:41.998Z","0.0.5":"2016-01-07T06:08:12.829Z","0.1.0":"2016-01-18T11:36:29.437Z","0.1.1":"2016-01-19T06:11:28.402Z","0.1.2":"2016-01-20T06:24:40.266Z","0.1.3":"2016-01-20T07:12:00.802Z","0.1.4":"2016-01-20T07:46:14.589Z","0.1.5":"2016-01-20T08:19:32.311Z","0.1.6":"2016-01-20T11:31:22.301Z","0.1.7":"2016-01-21T06:53:37.342Z","0.1.8":"2016-01-22T06:28:28.830Z","0.1.9":"2016-01-26T05:40:46.374Z","0.2.0":"2016-03-09T04:23:38.127Z","0.2.1":"2016-03-15T03:50:35.643Z","0.2.2":"2016-03-23T09:53:09.111Z","0.2.3":"2016-04-11T06:20:18.775Z","0.2.4":"2016-04-11T09:29:39.798Z","0.2.6":"2016-04-15T11:00:02.816Z","0.2.7":"2016-04-18T04:41:06.324Z","0.2.8":"2016-04-18T05:38:13.086Z","0.2.9":"2016-05-25T12:02:21.145Z","0.2.10":"2016-07-05T13:44:26.453Z","0.2.11":"2016-07-07T06:14:28.528Z","0.3.0":"2016-07-07T11:21:47.855Z","0.3.1":"2016-07-15T10:20:16.318Z","0.3.2":"2016-07-19T09:42:50.006Z","0.3.3":"2016-07-20T03:24:08.623Z","0.3.4":"2016-07-27T06:13:11.444Z","0.3.5":"2016-08-02T08:37:40.991Z","0.3.6":"2016-08-24T05:30:06.785Z","0.3.7":"2016-08-25T11:30:32.149Z","0.3.8":"2016-08-25T11:45:47.154Z","0.3.9":"2016-09-08T06:14:55.824Z","0.4.0":"2016-10-21T03:59:23.471Z","0.4.1":"2016-10-21T08:00:20.887Z","0.5.0":"2016-11-10T12:35:48.162Z","0.5.1":"2016-11-11T08:22:39.962Z","0.5.2":"2016-11-21T08:20:43.793Z","0.5.3":"2016-11-24T06:38:30.007Z","0.6.0":"2016-12-12T09:42:21.738Z","0.6.1":"2016-12-12T09:59:03.479Z","0.6.2":"2016-12-21T06:49:50.318Z","0.6.3":"2017-02-14T06:56:23.889Z","0.6.4":"2017-03-06T03:56:04.131Z","0.6.5":"2017-03-06T05:25:11.362Z","1.0.0":"2017-03-21T10:05:36.297Z","1.0.1":"2017-03-22T07:01:26.698Z","1.0.2":"2017-03-22T10:46:18.326Z","1.0.3":"2017-03-23T06:19:20.423Z"},"readmeFilename":"README.md","homepage":"https://github.com/react-component/scroll-anim"}