{"maintainers":[{"name":"anonymous","email":"hollowdoor99@gmail.com"}],"keywords":["scrolling","DOM"],"dist-tags":{"latest":"2.3.4"},"author":{"name":"Quentin Engles","email":"hollowdoor99@gmail.com"},"description":"Auto scroll dom elements","readme":"dom-autoscroller\n================\n\n![dom autoscroller](logo.png)\n\nThe syncMove option and synchronizing move\n------------------------------------------\n\n`dom-autoscroller` has a new option named syncMove.\n\n`syncMove` takes a boolean, or a function that returns a boolean, and the returned value of `syncMove` toggles the event synching of `dom-autoscroller`.\n\nWhy do that? There are some situations where `dom-autoscroller` might be doing what it does, but even though the mouse cursor moves relative to the scroll position `mousemove` events do not get fired. When you set `syncMove` to true that allows `mousemove` events with fresh coordinates to be fired for some other source that might need those events.\n\nFor now the option `syncMove` is set to false. This is for experimental purposes, and because this functionality is likely to be buggy. `touchmove` syncing is also planned, but it's best if the integration of move syncing be taken slow. Please leave plenty of issues to help integrate `syncMove`, and `mousemove` dispatch into `dom-autoscroller`.\n\nOnce movement sync is fully integrated into `dom-autoscroller` the `syncMove` option might be set to default true, or removed entirely. It depends on how things work out down the line.\n\nBig Announcement!\n-----------------\n\nVersion 2 of dom-autoscroller is out. You can upgrade to version 2.\n\nHere are the differences.\n\n-\t**pixels option removed.**\n-\tmaxSpeed option added.\n-\tSlightly different algorithm for scrolling\n-\tScrolling speed changes dynamically based on distance from element edge\n-\tCompatibility with [rollup](https://github.com/rollup/rollup).\n\nScrolling in dom-autoscroller is now much smoother. So you should upgrade to version 2.\n\nInstall\n-------\n\n**NPM**\n\n`npm install --save dom-autoscroller`\n\n**BOWER**\n\n`bower install --save dom-autoscroller`\n\nThen use browserify, webpack, or [rollup](https://github.com/rollup/rollup) to build your script.\n\nOr Download one of these files from the Github repo:\n\n-\t*dist/dom-autoscroller.js*\n-\t*dist/dom-autoscroller.min.js*\n\nIf you use one of these prepackaged files the global name is **autoScroll**.\n\nDemo\n---\n\n[jsfiddle Demo of dom-autoscroller](http://jsfiddle.net/gh/get/library/pure/hollowdoor/dom_autoscroller_demo/tree/master/Demo)\n\n\nUsage\n-----\n\nThis example uses [link-css](https://www.npmjs.com/package/link-css), and [dragula](https://www.npmjs.com/package/dragula).\n\n```javascript\nrequire('link-css')('../node_modules/dragula/dist/dragula.min.css');\nvar dragula = require('dragula'),\n    autoScroll = require('dom-autoscroller');\n\n\nvar drake = dragula([document.querySelector('#list'), document.querySelector('#hlist')]);\nvar scroll = autoScroll([\n        document.querySelector('#list-container'),\n        document.querySelector('#container2')\n    ],{\n    margin: 20,\n    maxSpeed: 5,\n    scrollWhenOutside: true,\n    autoScroll: function(){\n        //Only scroll when the pointer is down, and there is a child being dragged.\n        return this.down && drake.dragging;\n    }\n});\n```\n\nKeep In Mind\n------------\n\n`dom-autoscroller` exploits the simplicity of the single parent, to child relationship. A scrolling element with more than one children will likely not work well with `dom-autoscroller`.\n\nFor clarity here is a more complete example:\n\n```html\n<!DOCTYPE html>\n<html>\n<head>\n    <title>Drag test</title>\n    <style>\n    #list-container{\n        /*The height produces the scroll bar.*/\n        height: 100px;\n        /*Make this scrollable.*/\n        overflow-y: auto;\n    }\n    </style>\n</head>\n<body>\n    <div id=\"list-container\">\n        <ol id=\"list\" type=\"1\">\n            <li>zero</li>\n            <li>one</li>\n            <li>two</li>\n            <li>three</li>\n            <li>four</li>\n            <li>five</li>\n            <li>six</li>\n            <li>seven</li>\n            <li>eight</li>\n            <li>nine</li>\n            <li>ten</li>\n            <li>eleven</li>\n            <li>twelve</li>\n            <li>thirteen</li>\n            <li>fourteen</li>\n            <li>fifteen</li>\n        </ol>\n    </div>\n    <div id=\"container2\">\n        <ol id=\"hlist\">\n            <li>zero</li>\n            <li>one</li>\n            <li>two</li>\n            <li>three</li>\n            <li>four</li>\n            <li>five</li>\n            <li>six</li>\n            <li>seven</li>\n            <li>eight</li>\n            <li>nine</li>\n            <li>ten</li>\n            <li>11</li>\n            <li>12</li>\n            <li>13</li>\n            <li>14</li>\n            <li>15</li>\n        </ol>\n    </div>\n    <script>\n    //Load dragula's css.\n    require('link-css')('../node_modules/dragula/dist/dragula.min.css');\n    var dragula = require('dragula'),\n        papyri = require('dom-autoscroller');\n\n\n    var drake = dragula([document.querySelector('#list'), document.querySelector('#hlist')]);\n    var scroll = autoScroll([\n            document.querySelector('#list-container'),\n            document.querySelector('#container2')\n        ],{\n        margin: 20,\n        pixels: 5,\n        scrollWhenOutside: false,\n        autoScroll: function(){\n            return this.down && drake.dragging;\n        }\n    });\n    </script>\n</body>\n</html>\n```\n\nIf you look at the last example notice the containers have only one child, and that they're different from the containers used by *dragula*. In theory multiple children could work with `dom-autoscroller`, but the children scrolling might interfere with the workings of the library *dragula*.\n\n\nAuto Scroller API\n-----------------\n\n### autoScroll(element|elements, options) -> instance\n\nCreate an auto scroller on an **element**, or and **array of elements**.\n\n**The element should have only one child element to work consistently.**\n\n#### options.margin = Integer\n\nAn inner area to detect when the pointer is close to the edge.\n\n#### options.autoScroll = Function\n\nA callback function used to determine if the element should scroll, or when the element should scroll.\n\nReturn a boolean value from this function to allow scrolling.\n\n#### options.maxSpeed = Integer\n\n`maxSpeed` defaults to 4.\n\nSpeed effects in dom-autoscroller:\n\n1.\tSpeed adjusts dynamically depending on how close to the edge your pointer is.\n2.\tSpeed is pixels per frame.\n\n`maxSpeed` limits pixels per frame.\n\n#### options.pixels = Integer\n\n**removed in version 2**\n\nSet how many pixels per second you want to scroll during the auto scrolling action. More is smoother.\n\nSpeed was **pixels/second** in version 1, and in version 2 speed is **pixels/frame**.\n\n#### options.scrollWhenOutside = Boolean\n\nWhther or not it should continue to scroll when the pointer is outside the container. Defaults to **false**.\n\nAuto Scroller Properties\n------------------------\n\n### down = Boolean\n\nIs the pointer down?\n\n### scrolling = Boolean\n\nIs one of the elements scrolling?\n\n### point = Object\n\n**This reference no longer exists.**\n\nA reference to the [pointer](https://github.com/hollowdoor/pointer_point) object.\n\nAuto Scroller Methods\n---------------------\n\n### autoScroll\n\nThe function you set in the constructor options for `options.autoScroll`.\n\n### destroy(forceCleanAnimation)\n\nRemove all event listeners needed to be able to track the pointer. If destroy Auto Scroller meanwhile scrolling then just call `.destroy(true)` to force to stop scrolling animation. Call `.destroy()` and `.destroy(false)` is the same behaviours.\n\nUndocumented methods\n--------------------\n\nThere are undocumented methods in version 2.\n\nThese are:\n\n1.\tadd()\n2.\tremove()\n\nThese methods add, or remove elements from dom-autoscroller.\n\nWhy are these considered undocumented even though there here in the document? :)\n\n`add`, and `remove` are incomplete, and there is no detailed explanation. Use these methods at your own risk.\n\nAbout\n-----\n\nThere are tons of reasons to have auto scrolling. The main one being sometimes a finger can't reach the mouse wheel comfortably. `dom-autoscroller` is a comfort module.\n\nThis is also a nice small module to do this kind of thing when auto scrolling is all you need.\n","repository":{"type":"git","url":"git+https://github.com/hollowdoor/dom_autoscroller.git"},"users":{"dare21century":true},"license":"MIT","bugs":{"url":"https://github.com/hollowdoor/dom_autoscroller/issues"},"versions":{"1.0.0":{"name":"dom-autoscroller","version":"1.0.0","description":"Auto scroll dom elements","main":"index.js","directories":{"test":"test"},"scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"keywords":["scrolling","DOM"],"author":{"name":"Quentin Engles","email":"hollowdoor99@gmail.com"},"license":"MIT","dependencies":{"pointer-point":"^2.1.7"},"devDependencies":{"dragula":"^3.5.4"},"gitHead":"e08398f0c8396760db54a2bfa590edc41d417b65","_id":"dom-autoscroller@1.0.0","_shasum":"cb0547f6d736b43d265a3ea766a31a99013cee74","_from":".","_npmVersion":"2.9.0","_nodeVersion":"1.8.4","_npmUser":{"name":"anonymous","email":"hollowdoor99@gmail.com"},"maintainers":[{"name":"anonymous","email":"hollowdoor99@gmail.com"}],"dist":{"shasum":"cb0547f6d736b43d265a3ea766a31a99013cee74","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/dom-autoscroller/-/dom-autoscroller-1.0.0.tgz","integrity":"sha512-cZXtfP44fa+HGTyyMyQWjoYkcD15BnE9XuquXK/imGotVuzh4YtNHycc2+IHMfQiVLqpaDOp0N82z7mP/ifFig==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBL5ko4kIjP40IGm88P0txswgIImMUD0qLc6Ng+CAutlAiBzqk3IPhdRzxIL1HzoVFt01saNs2+AkuzZrYHMma6eTg=="}]}},"1.1.0":{"name":"dom-autoscroller","version":"1.1.0","description":"Auto scroll dom elements","main":"index.js","directories":{"test":"test"},"scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"keywords":["scrolling","DOM"],"author":{"name":"Quentin Engles","email":"hollowdoor99@gmail.com"},"license":"MIT","dependencies":{"pointer-point":"^2.1.7"},"devDependencies":{"dragula":"^3.5.4"},"repository":{"type":"git","url":"git+https://github.com/hollowdoor/dom_autoscroller.git"},"gitHead":"49177ede694611d860fefccc45e0a1baad3a4afa","bugs":{"url":"https://github.com/hollowdoor/dom_autoscroller/issues"},"homepage":"https://github.com/hollowdoor/dom_autoscroller#readme","_id":"dom-autoscroller@1.1.0","_shasum":"89e18bb6a30ecfe8992ad7f06b807c356af15f0c","_from":".","_npmVersion":"2.9.0","_nodeVersion":"1.8.4","_npmUser":{"name":"anonymous","email":"hollowdoor99@gmail.com"},"maintainers":[{"name":"anonymous","email":"hollowdoor99@gmail.com"}],"dist":{"shasum":"89e18bb6a30ecfe8992ad7f06b807c356af15f0c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/dom-autoscroller/-/dom-autoscroller-1.1.0.tgz","integrity":"sha512-MK9uoe3sTihf302VLdoRqLMXnx3RgxvuzRbQ/xGNUZWCwBcyvsNvP2J318mbaAkt3I34UBC8QaHcdDOtknSbkQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD8qidQBRKuTFx0zHQ85FE+uNFGYessHa/NTgz6x4KfcwIgA4DTi+nwX4QrmBK2rjAkLEb/OigfBZ2a3qLIpfxlylE="}]}},"1.1.1":{"name":"dom-autoscroller","version":"1.1.1","description":"Auto scroll dom elements","main":"index.js","directories":{"test":"test"},"scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"keywords":["scrolling","DOM"],"author":{"name":"Quentin Engles","email":"hollowdoor99@gmail.com"},"license":"MIT","dependencies":{"pointer-point":"^2.1.7"},"devDependencies":{"dragula":"^3.5.4"},"repository":{"type":"git","url":"git+https://github.com/hollowdoor/dom_autoscroller.git"},"gitHead":"73015375ef665adcda8669e7f4ab9538c30bd942","bugs":{"url":"https://github.com/hollowdoor/dom_autoscroller/issues"},"homepage":"https://github.com/hollowdoor/dom_autoscroller#readme","_id":"dom-autoscroller@1.1.1","_shasum":"9784e8a2576a0e26e69572b28a1fef39bda26806","_from":".","_npmVersion":"2.9.0","_nodeVersion":"1.8.4","_npmUser":{"name":"anonymous","email":"hollowdoor99@gmail.com"},"maintainers":[{"name":"anonymous","email":"hollowdoor99@gmail.com"}],"dist":{"shasum":"9784e8a2576a0e26e69572b28a1fef39bda26806","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/dom-autoscroller/-/dom-autoscroller-1.1.1.tgz","integrity":"sha512-zty185luEmZn4jhHuJXoRq6K9sV73R+rjknE/11BeGX6drWYqUoiFbUJ19f5hd2Y7yRZBPw3DUcCmLfBzMvcvA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCBdxTVj/HyuaMPpe2zDw59Bot/xd9XeSn+7l0v2kjnHwIhANy2SW1LPKTHW8NJnSFR0t+fX3pe68uIaHpGxjYEHupx"}]}},"1.2.1":{"name":"dom-autoscroller","version":"1.2.1","description":"Auto scroll dom elements","main":"index.js","directories":{"test":"test"},"scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"keywords":["scrolling","DOM"],"author":{"name":"Quentin Engles","email":"hollowdoor99@gmail.com"},"license":"MIT","dependencies":{"pointer-point":"^2.1.7"},"devDependencies":{"dragula":"^3.5.4"},"repository":{"type":"git","url":"git+https://github.com/hollowdoor/dom_autoscroller.git"},"gitHead":"8aaf83b5e7f8e4a0c18cc0ed93233a260f2c1b22","bugs":{"url":"https://github.com/hollowdoor/dom_autoscroller/issues"},"homepage":"https://github.com/hollowdoor/dom_autoscroller#readme","_id":"dom-autoscroller@1.2.1","_shasum":"79748e195ebe4b29439a5e29948977c2e8ed460a","_from":".","_npmVersion":"2.9.0","_nodeVersion":"1.8.4","_npmUser":{"name":"anonymous","email":"hollowdoor99@gmail.com"},"maintainers":[{"name":"anonymous","email":"hollowdoor99@gmail.com"}],"dist":{"shasum":"79748e195ebe4b29439a5e29948977c2e8ed460a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/dom-autoscroller/-/dom-autoscroller-1.2.1.tgz","integrity":"sha512-NZ3rTOazW7WDmEe7xEAVrxTLyc7pYDNFx3HjYn+eEHpip4CWAyeIlXNu0SJMquwfBe/EqKbpZdpXgjTGXm2sbw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIF3CDGOZe4u9Gqfa7UH8Kzh2RtWaLmwePCirKpGedcd1AiBdn6jQ4IKWyoYvXHfqdZCCfqM8z/nNwKjIzUqZup4Qjg=="}]}},"1.2.2":{"name":"dom-autoscroller","version":"1.2.2","description":"Auto scroll dom elements","main":"index.js","directories":{"test":"test"},"scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"keywords":["scrolling","DOM"],"author":{"name":"Quentin Engles","email":"hollowdoor99@gmail.com"},"license":"MIT","dependencies":{"pointer-point":"^2.1.12"},"devDependencies":{"dragula":"^3.5.4"},"repository":{"type":"git","url":"git+https://github.com/hollowdoor/dom_autoscroller.git"},"gitHead":"bdb6a818429327318674f343026d931bc71c812d","bugs":{"url":"https://github.com/hollowdoor/dom_autoscroller/issues"},"homepage":"https://github.com/hollowdoor/dom_autoscroller#readme","_id":"dom-autoscroller@1.2.2","_shasum":"ace1f298b1515f8ca77b3ad2f690e189babe9359","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.5.0","_npmUser":{"name":"anonymous","email":"hollowdoor99@gmail.com"},"maintainers":[{"name":"anonymous","email":"hollowdoor99@gmail.com"}],"dist":{"shasum":"ace1f298b1515f8ca77b3ad2f690e189babe9359","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/dom-autoscroller/-/dom-autoscroller-1.2.2.tgz","integrity":"sha512-CaysuQg3hoBL5HctqNwHg50pHVCu8iGxieyUpH860yHUB0TCURQktJvKgCoiuipTWZZVQ7lSaevs54oJ0QI8Aw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDsm/hanhumOxPYsS8sgDisM3Yo0vjqXqerp5NL8K9yBwIgfBUSNkoe2aS/fdhpciVYLoeF7zBc3ZDEmq3q2Puiv78="}]}},"1.2.3":{"name":"dom-autoscroller","version":"1.2.3","description":"Auto scroll dom elements","main":"index.js","directories":{"test":"test"},"scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"keywords":["scrolling","DOM"],"author":{"name":"Quentin Engles","email":"hollowdoor99@gmail.com"},"license":"MIT","dependencies":{"pointer-point":"^2.1.12"},"devDependencies":{"dragula":"^3.5.4"},"repository":{"type":"git","url":"git+https://github.com/hollowdoor/dom_autoscroller.git"},"gitHead":"de3469b9c3fafde18c2c6e97c52d2f8b8d89891f","bugs":{"url":"https://github.com/hollowdoor/dom_autoscroller/issues"},"homepage":"https://github.com/hollowdoor/dom_autoscroller#readme","_id":"dom-autoscroller@1.2.3","_shasum":"db9935fc4959127b9ce5564e8648a00d05a9461e","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.5.0","_npmUser":{"name":"anonymous","email":"hollowdoor99@gmail.com"},"maintainers":[{"name":"anonymous","email":"hollowdoor99@gmail.com"}],"dist":{"shasum":"db9935fc4959127b9ce5564e8648a00d05a9461e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/dom-autoscroller/-/dom-autoscroller-1.2.3.tgz","integrity":"sha512-cf5MIaF9AbC9fZtJN5oPYziNrBUwbY71GV22kfkVnJwkF/0QaUrWkObIr34DxEPXiY+m0uFjWrBR8JopOrW3Hw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCO60dA9Vdh81oDUg51K0xyfIE3XwXSRUgpvXLFJSSr/QIgIYvBCe00XH6xFGTqmaHelXWu+O0d95GodO4ttUrwbkw="}]},"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/dom-autoscroller-1.2.3.tgz_1454727687547_0.9068563764449209"}},"1.2.4":{"name":"dom-autoscroller","version":"1.2.4","description":"Auto scroll dom elements","main":"index.js","directories":{"test":"test"},"scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"keywords":["scrolling","DOM"],"author":{"name":"Quentin Engles","email":"hollowdoor99@gmail.com"},"license":"MIT","dependencies":{"pointer-point":"^2.1.12"},"devDependencies":{"dragula":"^3.5.4"},"repository":{"type":"git","url":"git+https://github.com/hollowdoor/dom_autoscroller.git"},"gitHead":"20b789ef053161669948fc28cb2d033736bf4261","bugs":{"url":"https://github.com/hollowdoor/dom_autoscroller/issues"},"homepage":"https://github.com/hollowdoor/dom_autoscroller#readme","_id":"dom-autoscroller@1.2.4","_shasum":"1f4e17aab9c0d5d22607670da243fbcb0f3d6796","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.6.0","_npmUser":{"name":"anonymous","email":"hollowdoor99@gmail.com"},"maintainers":[{"name":"anonymous","email":"hollowdoor99@gmail.com"}],"dist":{"shasum":"1f4e17aab9c0d5d22607670da243fbcb0f3d6796","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/dom-autoscroller/-/dom-autoscroller-1.2.4.tgz","integrity":"sha512-YI+cwU8avxDUvgHt+iuA469Q9iMDnPYBdSJhF4flrhlBHjLl1rQTRYjeJarBkt+owJ8Ewyev3x+y7xeoIX7p4Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHFFUv3e9AmdYyXpF5pdxnPk/jCSbxeAj74vlOglW+2zAiBtbTSQWqZzChqOzSzfRy3frEnUsLLD3jBx6QPXBXAw7w=="}]},"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/dom-autoscroller-1.2.4.tgz_1458234245671_0.8302857270464301"}},"1.3.0":{"name":"dom-autoscroller","version":"1.3.0","description":"Auto scroll dom elements","main":"index.js","directories":{"test":"test"},"scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"browserify index.js --standalone autoScroller > dist/dom-autoscroller.js","minify":"browserify index.js -d -p [minifyify --no-map] --standalone autoScroller > dist/dom-autoscroller.min.js","gadd":"git add dist","lint":"jshint .","validate":"npm ls"},"pre-commit":["build","minify","gadd"],"keywords":["scrolling","DOM"],"author":{"name":"Quentin Engles","email":"hollowdoor99@gmail.com"},"license":"MIT","dependencies":{"create-point-cb":"^1.0.0"},"devDependencies":{"browserify":"^13.0.1","dragula":"^3.5.4","minifyify":"^7.3.3","precommit-hook":"^3.0.0"},"repository":{"type":"git","url":"git+https://github.com/hollowdoor/dom_autoscroller.git"},"files":["dist","LICENSE","index.js"],"gitHead":"ba0cb70333ca74873b97cfac84850aca5221a060","bugs":{"url":"https://github.com/hollowdoor/dom_autoscroller/issues"},"homepage":"https://github.com/hollowdoor/dom_autoscroller#readme","_id":"dom-autoscroller@1.3.0","_shasum":"42db1263ae444b4b3f5687274ae66b433834672d","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.6.0","_npmUser":{"name":"anonymous","email":"hollowdoor99@gmail.com"},"maintainers":[{"name":"anonymous","email":"hollowdoor99@gmail.com"}],"dist":{"shasum":"42db1263ae444b4b3f5687274ae66b433834672d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/dom-autoscroller/-/dom-autoscroller-1.3.0.tgz","integrity":"sha512-wpJcK84zX29ssO9vTXroXU1fGBlSe7I+tGi9qJlRT2r5MWVqSZIbhZuTiCr4GzFfo7oeeTBlPXY5Kc0ij4gW8A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCKHX8O+Z9qqq/bDYVcxwxluIHmsH0i6QyRhQ5dh9rWmgIgP+tSXkFkWoTO1WAtwVea/AWNmMr//GmLWVqfnTYWOQo="}]},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/dom-autoscroller-1.3.0.tgz_1464924846250_0.6896142945624888"}},"1.3.1":{"name":"dom-autoscroller","version":"1.3.1","description":"Auto scroll dom elements","main":"index.js","directories":{"test":"test"},"scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"browserify index.js --standalone autoScroller > dist/dom-autoscroller.js","minify":"browserify index.js -d -p [minifyify --no-map] --standalone autoScroller > dist/dom-autoscroller.min.js","gadd":"git add dist","lint":"jshint .","validate":"npm ls"},"pre-commit":["build","minify","gadd"],"keywords":["scrolling","DOM"],"author":{"name":"Quentin Engles","email":"hollowdoor99@gmail.com"},"license":"MIT","dependencies":{"create-point-cb":"^1.0.0"},"devDependencies":{"browserify":"^13.0.1","dragula":"^3.5.4","minifyify":"^7.3.3","precommit-hook":"^3.0.0"},"repository":{"type":"git","url":"git+https://github.com/hollowdoor/dom_autoscroller.git"},"files":["dist","LICENSE","index.js"],"gitHead":"34ddb1a11b13aa387173fbbc9bce3b9514897aa1","bugs":{"url":"https://github.com/hollowdoor/dom_autoscroller/issues"},"homepage":"https://github.com/hollowdoor/dom_autoscroller#readme","_id":"dom-autoscroller@1.3.1","_shasum":"eeb6d664992fdbabd4a9c856f5a37add9ed41d9b","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.6.0","_npmUser":{"name":"anonymous","email":"hollowdoor99@gmail.com"},"maintainers":[{"name":"anonymous","email":"hollowdoor99@gmail.com"}],"dist":{"shasum":"eeb6d664992fdbabd4a9c856f5a37add9ed41d9b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/dom-autoscroller/-/dom-autoscroller-1.3.1.tgz","integrity":"sha512-OrdCve6OvGkPoyvIQjJ1Bs0dP/jm3kBygeN7t6HHZa/hSD7VG9jhv6CnvMptU4aij9OVJ7/V51qmvVNfqOsTyg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIED+hPqK3wWn6Dp/9AdVfcjtVQeKaWC7WJUjvYor6FU5AiBa8xX41HiVDHERuC/J3ybkABAEFLPpJnF63H/rpl7yxw=="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/dom-autoscroller-1.3.1.tgz_1464925074969_0.5483176331035793"}},"1.4.0":{"name":"dom-autoscroller","version":"1.4.0","description":"Auto scroll dom elements","main":"index.js","directories":{"test":"test"},"scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"browserify index.js --standalone autoScroll > dist/dom-autoscroller.js","minify":"browserify index.js -d -p [minifyify --no-map] --standalone autoScroll > dist/dom-autoscroller.min.js","gadd":"git add dist","lint":"jshint .","validate":"npm ls"},"pre-commit":["build","minify","gadd"],"keywords":["scrolling","DOM"],"author":{"name":"Quentin Engles","email":"hollowdoor99@gmail.com"},"license":"MIT","dependencies":{"create-point-cb":"^1.0.0"},"devDependencies":{"browserify":"^13.0.1","dragula":"^3.5.4","minifyify":"^7.3.3","precommit-hook":"^3.0.0"},"repository":{"type":"git","url":"git+https://github.com/hollowdoor/dom_autoscroller.git"},"files":["dist","LICENSE","index.js"],"gitHead":"8a8fae35c6f0aa06267a8eab4adf0c0f723f6375","bugs":{"url":"https://github.com/hollowdoor/dom_autoscroller/issues"},"homepage":"https://github.com/hollowdoor/dom_autoscroller#readme","_id":"dom-autoscroller@1.4.0","_shasum":"65c1b9adfa254881a6b49d09747edfaab6a21723","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.6.0","_npmUser":{"name":"anonymous","email":"hollowdoor99@gmail.com"},"maintainers":[{"name":"anonymous","email":"hollowdoor99@gmail.com"}],"dist":{"shasum":"65c1b9adfa254881a6b49d09747edfaab6a21723","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/dom-autoscroller/-/dom-autoscroller-1.4.0.tgz","integrity":"sha512-phnwJIoSl7oOFiJP8Ctto2IYZzuw6T/z7zFJrOPDxPB4bPTTo3CZGM+S7OA4Um3XC+8fMxa3El9g5psSvmeE7g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBxSBAtG/0SuH23ZyeiEzt54gT4LyXYQYJaVfC0322PIAiB+c0wrExJ30YN4gm9k9IsHByGTh+vC7Mud1L6HBcpHgA=="}]},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/dom-autoscroller-1.4.0.tgz_1474937351583_0.5178008526563644"}},"1.4.1":{"name":"dom-autoscroller","version":"1.4.1","description":"Auto scroll dom elements","main":"index.js","directories":{"test":"test"},"scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"browserify index.js --standalone autoScroll > dist/dom-autoscroller.js","minify":"browserify index.js -d -p [minifyify --no-map] --standalone autoScroll > dist/dom-autoscroller.min.js","gadd":"git add dist","lint":"jshint .","validate":"npm ls"},"pre-commit":["build","minify","gadd"],"keywords":["scrolling","DOM"],"author":{"name":"Quentin Engles","email":"hollowdoor99@gmail.com"},"license":"MIT","dependencies":{"create-point-cb":"^1.0.0"},"devDependencies":{"browserify":"^13.0.1","dragula":"^3.5.4","minifyify":"^7.3.3","precommit-hook":"^3.0.0"},"repository":{"type":"git","url":"git+https://github.com/hollowdoor/dom_autoscroller.git"},"files":["dist","LICENSE","index.js"],"gitHead":"c438cac95d5108a711b451e06c8d2611236f02cd","bugs":{"url":"https://github.com/hollowdoor/dom_autoscroller/issues"},"homepage":"https://github.com/hollowdoor/dom_autoscroller#readme","_id":"dom-autoscroller@1.4.1","_shasum":"8cfd815f76e256c89ba76eb122541b27f1922fa4","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.6.0","_npmUser":{"name":"anonymous","email":"hollowdoor99@gmail.com"},"maintainers":[{"name":"anonymous","email":"hollowdoor99@gmail.com"}],"dist":{"shasum":"8cfd815f76e256c89ba76eb122541b27f1922fa4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/dom-autoscroller/-/dom-autoscroller-1.4.1.tgz","integrity":"sha512-SVatgdUQVbGo1DIEU7bdCT+Pd1pqFBz6JQfw2r79tq0fa99Ov45wBUm0RxWfOGsRuqL2/m7+Y7wsOAvK3NY1wA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBnvixBGgMNf1vpwdOWR8WrIKeKCmzYF5gugOFL3k4GCAiAUuGyIiXtXcRcQH397Gx+5AAQ+kI0EW5ia30usTJWpqQ=="}]},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/dom-autoscroller-1.4.1.tgz_1475114653002_0.04390198551118374"}},"2.0.0":{"name":"dom-autoscroller","version":"2.0.0","description":"Auto scroll dom elements","main":"dist/bundle.js","jsnext:main":"dist/bundle.es.js","directories":{"test":"test"},"scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"node ./rollit"},"pre-commit":["build"],"keywords":["scrolling","DOM"],"author":{"name":"Quentin Engles","email":"hollowdoor99@gmail.com"},"license":"MIT","dependencies":{"create-point-cb":"^1.0.0"},"devDependencies":{"babel-preset-es2015-rollup":"^1.2.0","dragula":"^3.7.2","minifyify":"^7.3.3","precommit-hook":"^3.0.0","rollup-plugin-babel":"^2.6.1","rollup-plugin-commonjs":"^5.0.5","rollup-plugin-node-resolve":"^2.0.0","rollup-plugin-uglify":"^1.0.1","uglify-js":"^2.7.4"},"repository":{"type":"git","url":"git+https://github.com/hollowdoor/dom_autoscroller.git"},"files":["dist","LICENSE","index.js"],"gitHead":"b8b1ab00092587191266006733ef797acdafbea1","bugs":{"url":"https://github.com/hollowdoor/dom_autoscroller/issues"},"homepage":"https://github.com/hollowdoor/dom_autoscroller#readme","_id":"dom-autoscroller@2.0.0","_shasum":"5f9ac25a813733cec81207f7b5545dae3bcb8719","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.6.0","_npmUser":{"name":"anonymous","email":"hollowdoor99@gmail.com"},"maintainers":[{"name":"anonymous","email":"hollowdoor99@gmail.com"}],"dist":{"shasum":"5f9ac25a813733cec81207f7b5545dae3bcb8719","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/dom-autoscroller/-/dom-autoscroller-2.0.0.tgz","integrity":"sha512-O0NtcEx9tG7dQjo3uKx37yzvbi+SI4QmLh3SfHB64saMdv4HYGveseBErdUVKHAEi3tFqZ9UQ8w4MSyREhmEGQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDs7LaRYZ6Kk7OfHzaS+Vo2T9gQWmClaMSwKvGXH2Nw1wIhAK/E+c2gxfxpWDf+h89y514hCTXuS040WjC3odTZchL4"}]},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/dom-autoscroller-2.0.0.tgz_1477526527980_0.967597538838163"}},"2.1.0":{"name":"dom-autoscroller","version":"2.1.0","description":"Auto scroll dom elements","main":"dist/bundle.js","jsnext:main":"dist/bundle.es.js","directories":{"test":"test"},"scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"node ./rollit"},"pre-commit":["build"],"keywords":["scrolling","DOM"],"author":{"name":"Quentin Engles","email":"hollowdoor99@gmail.com"},"license":"MIT","dependencies":{"create-point-cb":"^1.0.0"},"devDependencies":{"babel-preset-es2015-rollup":"^1.2.0","dragula":"^3.7.2","minifyify":"^7.3.3","precommit-hook":"^3.0.0","rollup-plugin-babel":"^2.6.1","rollup-plugin-commonjs":"^5.0.5","rollup-plugin-node-resolve":"^2.0.0","rollup-plugin-uglify":"^1.0.1","uglify-js":"^2.7.4"},"repository":{"type":"git","url":"git+https://github.com/hollowdoor/dom_autoscroller.git"},"files":["dist","LICENSE","index.js"],"gitHead":"42ba82ae4b922c7d86956a90abafb32527172dc5","bugs":{"url":"https://github.com/hollowdoor/dom_autoscroller/issues"},"homepage":"https://github.com/hollowdoor/dom_autoscroller#readme","_id":"dom-autoscroller@2.1.0","_shasum":"ed4d4a407e94f6b38d7611786a8a760787749e3c","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.6.0","_npmUser":{"name":"anonymous","email":"hollowdoor99@gmail.com"},"maintainers":[{"name":"anonymous","email":"hollowdoor99@gmail.com"}],"dist":{"shasum":"ed4d4a407e94f6b38d7611786a8a760787749e3c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/dom-autoscroller/-/dom-autoscroller-2.1.0.tgz","integrity":"sha512-jSE6kVrX4mBBMXzWrIxYlenppNJCFGOZzj52CRDUEAS0Z4oen+OcaNt0JqjEtENUPjeGtOgOanYTbExmiwQ0Hw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBKc/2vLBSkKTNjlM0sgUid4qzFK0h3RGhRUtssZPy4KAiBwHvUeKsQrI6n/panw7ZDBbZ3xSqYwBldUsk8lLBoyBw=="}]},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/dom-autoscroller-2.1.0.tgz_1477540682640_0.35313034895807505"}},"2.1.1":{"name":"dom-autoscroller","version":"2.1.1","description":"Auto scroll dom elements","main":"dist/bundle.js","jsnext:main":"dist/bundle.es.js","directories":{"test":"test"},"scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"node ./rollit"},"pre-commit":["build"],"keywords":["scrolling","DOM"],"author":{"name":"Quentin Engles","email":"hollowdoor99@gmail.com"},"license":"MIT","dependencies":{"create-point-cb":"^1.0.0"},"devDependencies":{"babel-preset-es2015-rollup":"^1.2.0","dragula":"^3.7.2","minifyify":"^7.3.3","precommit-hook":"^3.0.0","rollup-plugin-babel":"^2.6.1","rollup-plugin-commonjs":"^5.0.5","rollup-plugin-node-resolve":"^2.0.0","rollup-plugin-uglify":"^1.0.1","uglify-js":"^2.7.4"},"repository":{"type":"git","url":"git+https://github.com/hollowdoor/dom_autoscroller.git"},"files":["dist","LICENSE","index.js"],"gitHead":"577a20ad4f68f2b026ba0e8fb69072571115000d","bugs":{"url":"https://github.com/hollowdoor/dom_autoscroller/issues"},"homepage":"https://github.com/hollowdoor/dom_autoscroller#readme","_id":"dom-autoscroller@2.1.1","_shasum":"c12378fc17383eadd6d9a73b7b619375cb4e9d07","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.6.0","_npmUser":{"name":"anonymous","email":"hollowdoor99@gmail.com"},"maintainers":[{"name":"anonymous","email":"hollowdoor99@gmail.com"}],"dist":{"shasum":"c12378fc17383eadd6d9a73b7b619375cb4e9d07","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/dom-autoscroller/-/dom-autoscroller-2.1.1.tgz","integrity":"sha512-gxXzM1GA8cornK83rUViQJJXce4wlHPPk0OFt2WAGueY4f7YrmTRvizYiHdHX2OrZR1Oh4lwGnNrZkKz9jUXjw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIB7GhActm3uUAxNRAMS4wUVQ0EEc8tDceVjJxCbkIHxRAiBF2JDJVVG7gELNGwbSUDYLH29xVZ607ZJ7bb2/JHJpIQ=="}]},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/dom-autoscroller-2.1.1.tgz_1477542139251_0.3879069846589118"}},"2.1.2":{"name":"dom-autoscroller","version":"2.1.2","description":"Auto scroll dom elements","main":"dist/bundle.js","jsnext:main":"dist/bundle.es.js","directories":{"test":"test"},"scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"node ./rollit"},"pre-commit":["build"],"keywords":["scrolling","DOM"],"author":{"name":"Quentin Engles","email":"hollowdoor99@gmail.com"},"license":"MIT","dependencies":{"create-point-cb":"^1.0.0"},"devDependencies":{"babel-preset-es2015-rollup":"^1.2.0","dragula":"^3.7.2","minifyify":"^7.3.3","precommit-hook":"^3.0.0","rollup-plugin-babel":"^2.6.1","rollup-plugin-commonjs":"^5.0.5","rollup-plugin-node-resolve":"^2.0.0","rollup-plugin-uglify":"^1.0.1","uglify-js":"^2.7.4"},"repository":{"type":"git","url":"git+https://github.com/hollowdoor/dom_autoscroller.git"},"files":["dist","LICENSE","index.js"],"gitHead":"9fd955937b770322a0dcf974bc933bde7a6ab552","bugs":{"url":"https://github.com/hollowdoor/dom_autoscroller/issues"},"homepage":"https://github.com/hollowdoor/dom_autoscroller#readme","_id":"dom-autoscroller@2.1.2","_shasum":"721a085f2ccc1aca212271a519c0e79030e3dd2f","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.6.0","_npmUser":{"name":"anonymous","email":"hollowdoor99@gmail.com"},"maintainers":[{"name":"anonymous","email":"hollowdoor99@gmail.com"}],"dist":{"shasum":"721a085f2ccc1aca212271a519c0e79030e3dd2f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/dom-autoscroller/-/dom-autoscroller-2.1.2.tgz","integrity":"sha512-eD1eh6Y7disKALewmi91I8MKNgmyhlTNCchKCKVc/ZI1R+iuZW7StfhnuxYcP15ObQNcjN9EO0wAr2oOGMhkVg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDS4dmqdMuOXtMH01+2vo6ckEIs1uxp7mrZNK3rFvU31AIhAL30aoFQ6U9qw+pJYdLv/ky8SRoHDZxLnk+CgUxSl539"}]},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/dom-autoscroller-2.1.2.tgz_1477545516395_0.8140601548366249"}},"2.1.3":{"name":"dom-autoscroller","version":"2.1.3","description":"Auto scroll dom elements","main":"dist/bundle.js","jsnext:main":"dist/bundle.es.js","directories":{"test":"test"},"scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"node ./rollit"},"pre-commit":["build"],"keywords":["scrolling","DOM"],"author":{"name":"Quentin Engles","email":"hollowdoor99@gmail.com"},"license":"MIT","dependencies":{"create-point-cb":"^1.0.0"},"devDependencies":{"babel-preset-es2015-rollup":"^1.2.0","dragula":"^3.7.2","minifyify":"^7.3.3","precommit-hook":"^3.0.0","rollup-plugin-babel":"^2.6.1","rollup-plugin-commonjs":"^5.0.5","rollup-plugin-node-resolve":"^2.0.0","rollup-plugin-uglify":"^1.0.1","uglify-js":"^2.7.4"},"repository":{"type":"git","url":"git+https://github.com/hollowdoor/dom_autoscroller.git"},"files":["dist","LICENSE","index.js"],"gitHead":"ee13a55dc7be2231d5ea49a8a07deabc3e95423d","bugs":{"url":"https://github.com/hollowdoor/dom_autoscroller/issues"},"homepage":"https://github.com/hollowdoor/dom_autoscroller#readme","_id":"dom-autoscroller@2.1.3","_shasum":"8d7826c19f453bc822f6cfe4b882bd5e66d26466","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.6.0","_npmUser":{"name":"anonymous","email":"hollowdoor99@gmail.com"},"maintainers":[{"name":"anonymous","email":"hollowdoor99@gmail.com"}],"dist":{"shasum":"8d7826c19f453bc822f6cfe4b882bd5e66d26466","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/dom-autoscroller/-/dom-autoscroller-2.1.3.tgz","integrity":"sha512-7RIpj1kSmUqZvtHK1fTGBGCBrIiIrYx8nfIIXzO7bfhQhAXYFnaaqWuF3XzYoWKjMistHZukP+Hh4l4AnBTdVw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIG++bA27pH6AHE40GR0zQ1lpPQ6jFPgpjFZ3pIxcygH7AiEAqa/bl4S0+wHeF5c3hg9mg1qHTxwQ3z/Rcgalj2MGynY="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/dom-autoscroller-2.1.3.tgz_1477546378325_0.3972434173338115"}},"2.1.4":{"name":"dom-autoscroller","version":"2.1.4","description":"Auto scroll dom elements","main":"dist/bundle.js","jsnext:main":"dist/bundle.es.js","directories":{"test":"test"},"scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"node ./rollit"},"pre-commit":["build"],"keywords":["scrolling","DOM"],"author":{"name":"Quentin Engles","email":"hollowdoor99@gmail.com"},"license":"MIT","dependencies":{"create-point-cb":"^1.0.0"},"devDependencies":{"babel-preset-es2015-rollup":"^1.2.0","dragula":"^3.7.2","minifyify":"^7.3.3","precommit-hook":"^3.0.0","rollup-plugin-babel":"^2.6.1","rollup-plugin-commonjs":"^5.0.5","rollup-plugin-node-resolve":"^2.0.0","rollup-plugin-uglify":"^1.0.1","uglify-js":"^2.7.4"},"repository":{"type":"git","url":"git+https://github.com/hollowdoor/dom_autoscroller.git"},"files":["dist","LICENSE","index.js"],"gitHead":"b982630358344c48332067038d2bde142a705b1c","bugs":{"url":"https://github.com/hollowdoor/dom_autoscroller/issues"},"homepage":"https://github.com/hollowdoor/dom_autoscroller#readme","_id":"dom-autoscroller@2.1.4","_shasum":"c104813757e5f957f8d83f2d19862792b4f1c00d","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.6.0","_npmUser":{"name":"anonymous","email":"hollowdoor99@gmail.com"},"maintainers":[{"name":"anonymous","email":"hollowdoor99@gmail.com"}],"dist":{"shasum":"c104813757e5f957f8d83f2d19862792b4f1c00d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/dom-autoscroller/-/dom-autoscroller-2.1.4.tgz","integrity":"sha512-zDNuh7Mwa0oy5OkO7Pdln2f2JtYHVYJGmpInzNlF/cxD52q45xP03GTAJXPcl1Jt0uYslqwawSxHQdAOteW4jw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD/RbWDWvqFgjbC9ZqfBTyxJUnXc3wMfhWuBMfEb1WkngIgGm/6jKpkdsG97j4vZhsQCyzwHlWkivNd9qXbdeAkPiY="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/dom-autoscroller-2.1.4.tgz_1477639239202_0.32499704975634813"}},"2.1.5":{"name":"dom-autoscroller","version":"2.1.5","description":"Auto scroll dom elements","main":"dist/bundle.js","jsnext:main":"dist/bundle.es.js","directories":{"test":"test"},"scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"node ./rollit"},"pre-commit":["build"],"keywords":["scrolling","DOM"],"author":{"name":"Quentin Engles","email":"hollowdoor99@gmail.com"},"license":"MIT","dependencies":{"create-point-cb":"^1.0.0"},"devDependencies":{"babel-preset-es2015-rollup":"^1.2.0","dragula":"^3.7.2","minifyify":"^7.3.3","precommit-hook":"^3.0.0","rollup-plugin-babel":"^2.6.1","rollup-plugin-commonjs":"^5.0.5","rollup-plugin-node-resolve":"^2.0.0","rollup-plugin-uglify":"^1.0.1","uglify-js":"^2.7.4"},"repository":{"type":"git","url":"git+https://github.com/hollowdoor/dom_autoscroller.git"},"files":["dist","LICENSE","index.js"],"gitHead":"750752f0a40ca5a0e6141f47194c8c2b753f94b3","bugs":{"url":"https://github.com/hollowdoor/dom_autoscroller/issues"},"homepage":"https://github.com/hollowdoor/dom_autoscroller#readme","_id":"dom-autoscroller@2.1.5","_shasum":"fc84a2fce889fad7c92960b4a03f4b95f54be755","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.6.0","_npmUser":{"name":"anonymous","email":"hollowdoor99@gmail.com"},"maintainers":[{"name":"anonymous","email":"hollowdoor99@gmail.com"}],"dist":{"shasum":"fc84a2fce889fad7c92960b4a03f4b95f54be755","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/dom-autoscroller/-/dom-autoscroller-2.1.5.tgz","integrity":"sha512-qyjTavqovrGfsO0M94tm9GRrQIyOFAUq32EspnHfgB1+C/U9NrosprH/k4jnALX4Bnq++9R5jF/fhXQ2sndCEg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDRvszu9pz3xQbkQntA23IXuPlkx+Bpy4htd71uPIMpiAiBsHwklU3keHZDEuEguUr0EsU0J8GsA0ekBhdHpyGOE1g=="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/dom-autoscroller-2.1.5.tgz_1477648890550_0.00041772983968257904"}},"2.1.6":{"name":"dom-autoscroller","version":"2.1.6","description":"Auto scroll dom elements","main":"dist/bundle.js","jsnext:main":"dist/bundle.es.js","directories":{"test":"test"},"scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"node ./rollit"},"pre-commit":["build"],"keywords":["scrolling","DOM"],"author":{"name":"Quentin Engles","email":"hollowdoor99@gmail.com"},"license":"MIT","dependencies":{"create-point-cb":"^1.0.0"},"devDependencies":{"babel-preset-es2015-rollup":"^1.2.0","dragula":"^3.7.2","minifyify":"^7.3.3","precommit-hook":"^3.0.0","rollup-plugin-babel":"^2.6.1","rollup-plugin-commonjs":"^5.0.5","rollup-plugin-node-resolve":"^2.0.0","rollup-plugin-uglify":"^1.0.1","uglify-js":"^2.7.4"},"repository":{"type":"git","url":"git+https://github.com/hollowdoor/dom_autoscroller.git"},"files":["dist","LICENSE","index.js"],"gitHead":"b85aaf476fbaf2ac5b5cc5ee5e64c2d99ca1be15","bugs":{"url":"https://github.com/hollowdoor/dom_autoscroller/issues"},"homepage":"https://github.com/hollowdoor/dom_autoscroller#readme","_id":"dom-autoscroller@2.1.6","_shasum":"65206c1c54aa08d3998566958b4d13c0e6c625ab","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.6.0","_npmUser":{"name":"anonymous","email":"hollowdoor99@gmail.com"},"maintainers":[{"name":"anonymous","email":"hollowdoor99@gmail.com"}],"dist":{"shasum":"65206c1c54aa08d3998566958b4d13c0e6c625ab","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/dom-autoscroller/-/dom-autoscroller-2.1.6.tgz","integrity":"sha512-m9qT48LrTvhg4buuAYZouz0e6fw1wSI4tqpJG/ZmyWpy3ZaxgEa3fKwZyiuXV79SK5pN2+KpU7bABJHeC3ZcAQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICqrSmViMEQoml0ar4Xgp2t3IlaJwSHUjQ1i2JJ6ohz+AiADDJpCO7uk5zGyMnIQmMVmntmMCLyNmnbe8tNjlG9zpA=="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/dom-autoscroller-2.1.6.tgz_1477693603432_0.15030786441639066"}},"2.2.0":{"name":"dom-autoscroller","version":"2.2.0","description":"Auto scroll dom elements","main":"dist/bundle.js","jsnext:main":"dist/bundle.es.js","directories":{"test":"test"},"scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"node ./rollit"},"pre-commit":["build"],"keywords":["scrolling","DOM"],"author":{"name":"Quentin Engles","email":"hollowdoor99@gmail.com"},"license":"MIT","dependencies":{"animation-frame-polyfill":"^1.0.0","create-point-cb":"^1.0.0","dom-plane":"^1.0.0","dom-set":"^1.0.1","type-func":"^1.0.1"},"devDependencies":{"babel-preset-es2015-rollup":"^1.2.0","dragula":"^3.7.2","minifyify":"^7.3.3","precommit-hook":"^3.0.0","rollup-plugin-babel":"^2.6.1","rollup-plugin-commonjs":"^5.0.5","rollup-plugin-node-resolve":"^2.0.0","rollup-plugin-uglify":"^1.0.1","uglify-js":"^2.7.4"},"repository":{"type":"git","url":"git+https://github.com/hollowdoor/dom_autoscroller.git"},"files":["dist","LICENSE","index.js"],"gitHead":"f9b917940730846512657b92e564e33b069753ff","bugs":{"url":"https://github.com/hollowdoor/dom_autoscroller/issues"},"homepage":"https://github.com/hollowdoor/dom_autoscroller#readme","_id":"dom-autoscroller@2.2.0","_shasum":"dbcdb1208e06bbc69c7075ac156c5959a6ff8785","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.6.0","_npmUser":{"name":"anonymous","email":"hollowdoor99@gmail.com"},"maintainers":[{"name":"anonymous","email":"hollowdoor99@gmail.com"}],"dist":{"shasum":"dbcdb1208e06bbc69c7075ac156c5959a6ff8785","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/dom-autoscroller/-/dom-autoscroller-2.2.0.tgz","integrity":"sha512-Rlbfm7axDiNtERNSi76ihJnIxCtFaEJsZdW2mTjpsnaQgy73x0LabppF9ea3MVCmckD97WeoQxoB+vWeOMIE/g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDsTzjT6UDk1tMcbpPww9zMt2bypt/6yWATa6/ueGkrlwIhAM0OiPShN7wNDGUOkYj7lHz0X8jYGv1pUsnPfzVFSJ2V"}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/dom-autoscroller-2.2.0.tgz_1478229678929_0.11265946179628372"}},"2.2.1":{"name":"dom-autoscroller","version":"2.2.1","description":"Auto scroll dom elements","main":"dist/bundle.js","jsnext:main":"dist/bundle.es.js","directories":{"test":"test"},"scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"node ./rollit"},"pre-commit":["build"],"keywords":["scrolling","DOM"],"author":{"name":"Quentin Engles","email":"hollowdoor99@gmail.com"},"license":"MIT","dependencies":{"animation-frame-polyfill":"^1.0.0","create-point-cb":"^1.0.0","dom-plane":"^1.0.0","dom-set":"^1.0.1","type-func":"^1.0.1"},"devDependencies":{"babel-preset-es2015-rollup":"^1.2.0","dragula":"^3.7.2","minifyify":"^7.3.3","precommit-hook":"^3.0.0","rollup-plugin-babel":"^2.6.1","rollup-plugin-commonjs":"^5.0.5","rollup-plugin-node-resolve":"^2.0.0","rollup-plugin-uglify":"^1.0.1","uglify-js":"^2.7.4"},"repository":{"type":"git","url":"git+https://github.com/hollowdoor/dom_autoscroller.git"},"files":["dist","LICENSE","index.js"],"gitHead":"a6aa112ae02af843a3ca7753afd96b6ac5ebd4f1","bugs":{"url":"https://github.com/hollowdoor/dom_autoscroller/issues"},"homepage":"https://github.com/hollowdoor/dom_autoscroller#readme","_id":"dom-autoscroller@2.2.1","_shasum":"f078b633dc64bc10a53bfcd4d1b5623aecd6e972","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.6.0","_npmUser":{"name":"anonymous","email":"hollowdoor99@gmail.com"},"maintainers":[{"name":"anonymous","email":"hollowdoor99@gmail.com"}],"dist":{"shasum":"f078b633dc64bc10a53bfcd4d1b5623aecd6e972","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/dom-autoscroller/-/dom-autoscroller-2.2.1.tgz","integrity":"sha512-qs3fvPtC+QjKw5evsFkT3qrIz1Ynkno0gHVhf+E2GRzVdmtgM6tMYlCT8hEWOvd64T7azaQ7o0gxHlnlOY0z1A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCRzh9ROeQxET6NXWl7u9kTZebz32k1W3Oh7+9ypoMG4QIgeh1oM6ECrzFsYpqJdhqcw2c9OblSHmTnbQJGMYTWux8="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/dom-autoscroller-2.2.1.tgz_1478229918796_0.3126132357865572"}},"2.2.2":{"name":"dom-autoscroller","version":"2.2.2","description":"Auto scroll dom elements","main":"dist/bundle.js","jsnext:main":"dist/bundle.es.js","directories":{"test":"test"},"scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"node ./rollit"},"pre-commit":["build"],"keywords":["scrolling","DOM"],"author":{"name":"Quentin Engles","email":"hollowdoor99@gmail.com"},"license":"MIT","dependencies":{"animation-frame-polyfill":"^1.0.0","create-point-cb":"^1.0.0","dom-plane":"^1.0.0","dom-set":"^1.0.1","type-func":"^1.0.1"},"devDependencies":{"babel-preset-es2015-rollup":"^1.2.0","dragula":"^3.7.2","minifyify":"^7.3.3","precommit-hook":"^3.0.0","rollup-plugin-babel":"^2.6.1","rollup-plugin-commonjs":"^5.0.5","rollup-plugin-node-resolve":"^2.0.0","rollup-plugin-uglify":"^1.0.1","uglify-js":"^2.7.4"},"repository":{"type":"git","url":"git+https://github.com/hollowdoor/dom_autoscroller.git"},"files":["dist","LICENSE","index.js"],"gitHead":"518f32e556a110e35e99928affac4d344916ddc4","bugs":{"url":"https://github.com/hollowdoor/dom_autoscroller/issues"},"homepage":"https://github.com/hollowdoor/dom_autoscroller#readme","_id":"dom-autoscroller@2.2.2","_shasum":"87dc2cdc546269a9fbf21ad87ca281f752b38981","_from":".","_npmVersion":"3.10.8","_nodeVersion":"7.0.0","_npmUser":{"name":"anonymous","email":"hollowdoor99@gmail.com"},"dist":{"shasum":"87dc2cdc546269a9fbf21ad87ca281f752b38981","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/dom-autoscroller/-/dom-autoscroller-2.2.2.tgz","integrity":"sha512-KzTNC1BsH6hBXFEcNQW6NWtNegT32Ex8l5vUvcn9G2uf6jaAgPGJeFvZM/SPWXLkqfBJuwki8XfnH+ZC8J1ELQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCP7OL4EjW1Sg2A/bQ+d2OCJPrVGQSMoQqXF/27nafWtAIhAMnQ2va0Yw5DUcHNWFreST+i4pQU7lzO+Aj1b6hOkKPA"}]},"maintainers":[{"name":"anonymous","email":"hollowdoor99@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/dom-autoscroller-2.2.2.tgz_1479183728089_0.9106356035917997"}},"2.2.3":{"name":"dom-autoscroller","version":"2.2.3","description":"Auto scroll dom elements","main":"dist/bundle.js","jsnext:main":"dist/bundle.es.js","directories":{"test":"test"},"scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"node ./rollit"},"pre-commit":["build"],"keywords":["scrolling","DOM"],"author":{"name":"Quentin Engles","email":"hollowdoor99@gmail.com"},"license":"MIT","dependencies":{"animation-frame-polyfill":"^1.0.0","create-point-cb":"^1.0.0","dom-plane":"^1.0.1","dom-set":"^1.0.1","type-func":"^1.0.1"},"devDependencies":{"babel-preset-es2015-rollup":"^1.2.0","dragula":"^3.7.2","minifyify":"^7.3.3","precommit-hook":"^3.0.0","rollup-plugin-babel":"^2.6.1","rollup-plugin-commonjs":"^5.0.5","rollup-plugin-node-resolve":"^2.0.0","rollup-plugin-uglify":"^1.0.1","uglify-js":"^2.7.4"},"repository":{"type":"git","url":"git+https://github.com/hollowdoor/dom_autoscroller.git"},"files":["dist","LICENSE","index.js"],"gitHead":"6f8c1228fbf85b11516d47f7d3ffee9b75a201a8","bugs":{"url":"https://github.com/hollowdoor/dom_autoscroller/issues"},"homepage":"https://github.com/hollowdoor/dom_autoscroller#readme","_id":"dom-autoscroller@2.2.3","_shasum":"1a8a7d2060902e826b249c687ca6447182431524","_from":".","_npmVersion":"3.10.8","_nodeVersion":"7.0.0","_npmUser":{"name":"anonymous","email":"hollowdoor99@gmail.com"},"dist":{"shasum":"1a8a7d2060902e826b249c687ca6447182431524","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/dom-autoscroller/-/dom-autoscroller-2.2.3.tgz","integrity":"sha512-OtL64QGUqoKYnmRUJJlfL908XiFO3+iIhS73O3bHWfaTvD7oHohW8rQifXQ9nRL3x7hPrzu/j05c9tezwPxWCA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIADrdj7Ta9ljl02LTugPXep4D6AIW+uoiSsHrFMZko1MAiBMsno3zSZOvouwEXWdG8CnQiC+dQEHKfmpe2lrdOqmMA=="}]},"maintainers":[{"name":"anonymous","email":"hollowdoor99@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/dom-autoscroller-2.2.3.tgz_1479185324517_0.5317616770043969"}},"2.2.4":{"name":"dom-autoscroller","version":"2.2.4","description":"Auto scroll dom elements","main":"dist/bundle.js","jsnext:main":"dist/bundle.es.js","directories":{"test":"test"},"scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"node ./rollit"},"pre-commit":["build"],"keywords":["scrolling","DOM"],"author":{"name":"Quentin Engles","email":"hollowdoor99@gmail.com"},"license":"MIT","dependencies":{"animation-frame-polyfill":"^1.0.0","create-point-cb":"^1.0.0","dom-plane":"^1.0.1","dom-set":"^1.0.1","type-func":"^1.0.1"},"devDependencies":{"babel-preset-es2015-rollup":"^1.2.0","dragula":"^3.7.2","minifyify":"^7.3.3","precommit-hook":"^3.0.0","rollup-plugin-babel":"^2.6.1","rollup-plugin-commonjs":"^5.0.5","rollup-plugin-node-resolve":"^2.0.0","rollup-plugin-uglify":"^1.0.1","uglify-js":"^2.7.4"},"repository":{"type":"git","url":"git+https://github.com/hollowdoor/dom_autoscroller.git"},"files":["dist","LICENSE","index.js"],"gitHead":"2796e6fe608bdfd2751a67d4f1f094f49ff08413","bugs":{"url":"https://github.com/hollowdoor/dom_autoscroller/issues"},"homepage":"https://github.com/hollowdoor/dom_autoscroller#readme","_id":"dom-autoscroller@2.2.4","_shasum":"368a2f3b0f3e607b8b93c407e4244817ca40a363","_from":".","_npmVersion":"3.10.8","_nodeVersion":"7.0.0","_npmUser":{"name":"anonymous","email":"hollowdoor99@gmail.com"},"dist":{"shasum":"368a2f3b0f3e607b8b93c407e4244817ca40a363","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/dom-autoscroller/-/dom-autoscroller-2.2.4.tgz","integrity":"sha512-bH7vXACunL+xoTqqVLuyHBZXlWTAXL3vkIkBrNykxF2Adz+xUJzuvu4E2NmNRe6LCBWMcaLRKCA1LntQ0+0DWQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDqVufQjgDK5XNuTdyGAbusmR9FEoKu3PRoEdMVKNqHRQIhAITAs0rg9+SfhdDl++m3u8LE0MlBRyl9dOafge5pFvek"}]},"maintainers":[{"name":"anonymous","email":"hollowdoor99@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/dom-autoscroller-2.2.4.tgz_1479319549184_0.764134872937575"}},"2.2.5":{"name":"dom-autoscroller","version":"2.2.5","description":"Auto scroll dom elements","main":"dist/bundle.js","jsnext:main":"dist/bundle.es.js","directories":{"test":"test"},"scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"node ./rollit"},"pre-commit":["build"],"keywords":["scrolling","DOM"],"author":{"name":"Quentin Engles","email":"hollowdoor99@gmail.com"},"license":"MIT","dependencies":{"animation-frame-polyfill":"^1.0.0","create-point-cb":"^1.0.0","dom-mousemove-dispatcher":"^1.0.1","dom-plane":"^1.0.1","dom-set":"^1.0.1","type-func":"^1.0.1"},"devDependencies":{"babel-preset-es2015-rollup":"^1.2.0","dragula":"^3.7.2","minifyify":"^7.3.3","precommit-hook":"^3.0.0","rollup-plugin-babel":"^2.6.1","rollup-plugin-commonjs":"^5.0.5","rollup-plugin-node-resolve":"^2.0.0","rollup-plugin-uglify":"^1.0.1","uglify-js":"^2.7.4"},"repository":{"type":"git","url":"git+https://github.com/hollowdoor/dom_autoscroller.git"},"files":["dist","LICENSE","index.js"],"gitHead":"286f2e8adc86640b21e3088bd17c7d7681c6cf88","bugs":{"url":"https://github.com/hollowdoor/dom_autoscroller/issues"},"homepage":"https://github.com/hollowdoor/dom_autoscroller#readme","_id":"dom-autoscroller@2.2.5","_shasum":"0d819cdaacfcf5fd2ce84dbea85dd1d975d3e8b5","_from":".","_npmVersion":"3.10.8","_nodeVersion":"7.0.0","_npmUser":{"name":"anonymous","email":"hollowdoor99@gmail.com"},"dist":{"shasum":"0d819cdaacfcf5fd2ce84dbea85dd1d975d3e8b5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/dom-autoscroller/-/dom-autoscroller-2.2.5.tgz","integrity":"sha512-ucx62qqYCkJFIwBkq5vOaItZvyeXNTPFLjIALUk5dBSHWgJ2UYjVqUYkgMDjZUViM+SyBtWirPjQeW1XfNNNcQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQClUFt6Vm6t9jFmE7HppNdXkqOej7B+t6OIRFJUJviYyAIhAIrvOnDj1ofiocQwEttdJjGCS4E+jVE+/Pj7GiPAz5oe"}]},"maintainers":[{"name":"anonymous","email":"hollowdoor99@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/dom-autoscroller-2.2.5.tgz_1479325493927_0.34834911627694964"}},"2.2.6":{"name":"dom-autoscroller","version":"2.2.6","description":"Auto scroll dom elements","main":"dist/bundle.js","jsnext:main":"dist/bundle.es.js","directories":{"test":"test"},"scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"node ./rollit"},"pre-commit":["build"],"keywords":["scrolling","DOM"],"author":{"name":"Quentin Engles","email":"hollowdoor99@gmail.com"},"license":"MIT","dependencies":{"animation-frame-polyfill":"^1.0.0","create-point-cb":"^1.0.0","dom-mousemove-dispatcher":"^1.0.1","dom-plane":"^1.0.1","dom-set":"^1.0.1","type-func":"^1.0.1"},"devDependencies":{"babel-preset-es2015-rollup":"^1.2.0","dragula":"^3.7.2","minifyify":"^7.3.3","precommit-hook":"^3.0.0","rollup-plugin-babel":"^2.6.1","rollup-plugin-commonjs":"^5.0.5","rollup-plugin-node-resolve":"^2.0.0","rollup-plugin-uglify":"^1.0.1","uglify-js":"^2.7.4"},"repository":{"type":"git","url":"git+https://github.com/hollowdoor/dom_autoscroller.git"},"files":["dist","LICENSE","index.js"],"gitHead":"224481ff9349a7d30491f4f6f82061854c5fe72b","bugs":{"url":"https://github.com/hollowdoor/dom_autoscroller/issues"},"homepage":"https://github.com/hollowdoor/dom_autoscroller#readme","_id":"dom-autoscroller@2.2.6","_shasum":"a4a98e85c0d798a32cfa4af91e692f5713869bf1","_from":".","_npmVersion":"3.10.8","_nodeVersion":"7.0.0","_npmUser":{"name":"anonymous","email":"hollowdoor99@gmail.com"},"dist":{"shasum":"a4a98e85c0d798a32cfa4af91e692f5713869bf1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/dom-autoscroller/-/dom-autoscroller-2.2.6.tgz","integrity":"sha512-jdbxzsjJYvAuCZsaEW53Qht4ag8DLLo3PM4iWrvbviXHTXZ/q4g0GJBQtkdDXmgLhSc4JdlQeaiufTebBZQtKQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICVHCHj1xNVEBnRKxANIMsuxrw2y/MrqMop8VRiox+boAiBx0gXAFrSyC6x+THlwnveXX0S93qvgQ69dn8LG76YDaQ=="}]},"maintainers":[{"name":"anonymous","email":"hollowdoor99@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/dom-autoscroller-2.2.6.tgz_1479327034197_0.5809787476900965"}},"2.2.7":{"name":"dom-autoscroller","version":"2.2.7","description":"Auto scroll dom elements","main":"dist/bundle.js","jsnext:main":"dist/bundle.es.js","directories":{"test":"test"},"scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"node ./rollit"},"pre-commit":["build"],"keywords":["scrolling","DOM"],"author":{"name":"Quentin Engles","email":"hollowdoor99@gmail.com"},"license":"MIT","dependencies":{"animation-frame-polyfill":"^1.0.0","create-point-cb":"^1.0.0","dom-mousemove-dispatcher":"^1.0.1","dom-plane":"^1.0.1","dom-set":"^1.0.1","type-func":"^1.0.1"},"devDependencies":{"babel-preset-es2015-rollup":"^1.2.0","dragula":"^3.7.2","minifyify":"^7.3.3","precommit-hook":"^3.0.0","rollup-plugin-babel":"^2.6.1","rollup-plugin-commonjs":"^5.0.5","rollup-plugin-node-resolve":"^2.0.0","rollup-plugin-uglify":"^1.0.1","uglify-js":"^2.7.4"},"repository":{"type":"git","url":"git+https://github.com/hollowdoor/dom_autoscroller.git"},"files":["dist","LICENSE","index.js"],"gitHead":"2581640638b451a737933813710a7f1156219a7b","bugs":{"url":"https://github.com/hollowdoor/dom_autoscroller/issues"},"homepage":"https://github.com/hollowdoor/dom_autoscroller#readme","_id":"dom-autoscroller@2.2.7","_shasum":"774112c12419c0437ad9b79361994540f72d7d3f","_from":".","_npmVersion":"3.10.8","_nodeVersion":"7.0.0","_npmUser":{"name":"anonymous","email":"hollowdoor99@gmail.com"},"dist":{"shasum":"774112c12419c0437ad9b79361994540f72d7d3f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/dom-autoscroller/-/dom-autoscroller-2.2.7.tgz","integrity":"sha512-gUD2GGEafLAIgfY8Z05Ou74WzxVTbfItQL09y4oGRkLfJzEISWN+NrM3lTENvEdjaTmGA4JU7rLcwha2wF0ilw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGJdpy9FN5qcVAZYgYso0KzzpxwL7PPmXZ+tSwf47FTiAiEAkfEvaFq0RufjR0AHkM7kD+FoVS9Z5SWj74dpxwcOTr4="}]},"maintainers":[{"name":"anonymous","email":"hollowdoor99@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/dom-autoscroller-2.2.7.tgz_1479409160589_0.19856107933446765"}},"2.2.8":{"name":"dom-autoscroller","version":"2.2.8","description":"Auto scroll dom elements","main":"dist/bundle.js","jsnext:main":"dist/bundle.es.js","directories":{"test":"test"},"scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"node ./rollit"},"keywords":["scrolling","DOM"],"author":{"name":"Quentin Engles","email":"hollowdoor99@gmail.com"},"license":"MIT","dependencies":{"animation-frame-polyfill":"^1.0.0","create-point-cb":"^1.0.0","dom-mousemove-dispatcher":"^1.0.1","dom-plane":"^1.0.1","dom-set":"^1.0.1","type-func":"^1.0.1"},"devDependencies":{"dragula":"^3.7.2","minifyify":"^7.3.3","rollup":"^0.41.4","rollup-plugin-buble":"^0.15.0","rollup-plugin-commonjs":"^5.0.5","rollup-plugin-node-resolve":"^2.0.0","rollup-plugin-uglify":"^1.0.1","uglify-js":"^2.7.4"},"repository":{"type":"git","url":"git+https://github.com/hollowdoor/dom_autoscroller.git"},"files":["dist","LICENSE","index.js"],"gitHead":"68b437c3e6f005aaa4f2372e628e456443d5a773","bugs":{"url":"https://github.com/hollowdoor/dom_autoscroller/issues"},"homepage":"https://github.com/hollowdoor/dom_autoscroller#readme","_id":"dom-autoscroller@2.2.8","_shasum":"349b9ab7f0272f44ce983ec8ddc60dfe54187412","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"anonymous","email":"hollowdoor99@gmail.com"},"dist":{"shasum":"349b9ab7f0272f44ce983ec8ddc60dfe54187412","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/dom-autoscroller/-/dom-autoscroller-2.2.8.tgz","integrity":"sha512-MGpXXB3toeSj1C02gnbua4/JqLd6OxyNESt9VzvxHMMFpmuUfRH4HN2LObnvzabNU4PdnC2i9KkMiJkGe4Fyfw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICFvJHLCrPuLkKI+wClXve8aZrt9bF/El6W2BX6Sow5nAiAqIewLxhbTxMQ/C4Z7gdrNxqPyPcJyPl/zMd1BqZWDEA=="}]},"maintainers":[{"name":"anonymous","email":"hollowdoor99@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/dom-autoscroller-2.2.8.tgz_1484933340182_0.3531789993867278"}},"2.3.0":{"name":"dom-autoscroller","version":"2.3.0","description":"Auto scroll dom elements","main":"dist/bundle.js","jsnext:main":"dist/bundle.es.js","directories":{"test":"test"},"scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"node ./rollit"},"keywords":["scrolling","DOM"],"author":{"name":"Quentin Engles","email":"hollowdoor99@gmail.com"},"license":"MIT","dependencies":{"animation-frame-polyfill":"^1.0.0","create-point-cb":"^1.0.0","dom-mousemove-dispatcher":"^1.0.1","dom-plane":"^1.0.1","dom-set":"^1.0.1","type-func":"^1.0.1"},"devDependencies":{"dragula":"^3.7.2","minifyify":"^7.3.3","rollup":"^0.41.4","rollup-plugin-buble":"^0.15.0","rollup-plugin-commonjs":"^5.0.5","rollup-plugin-node-resolve":"^2.0.0","rollup-plugin-uglify":"^1.0.1","uglify-js":"^2.7.4"},"repository":{"type":"git","url":"git+https://github.com/hollowdoor/dom_autoscroller.git"},"files":["dist","LICENSE","index.js"],"gitHead":"2b3172239986bf9efecfa575a079406f6b833650","bugs":{"url":"https://github.com/hollowdoor/dom_autoscroller/issues"},"homepage":"https://github.com/hollowdoor/dom_autoscroller#readme","_id":"dom-autoscroller@2.3.0","_shasum":"763a3af296be59f3b02942c06d078f34da1a3232","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.9.0","_npmUser":{"name":"anonymous","email":"hollowdoor99@gmail.com"},"dist":{"shasum":"763a3af296be59f3b02942c06d078f34da1a3232","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/dom-autoscroller/-/dom-autoscroller-2.3.0.tgz","integrity":"sha512-cisWa2jI+5dU5ma5QrFrWtgjP5iYCfzar3kF2+wIndFCow07ZMbwjkml+BJbojwTTTUY+AAr2ErKmUSRbVf4Xw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCRt3FIFCpOyrAcB75g+Ga19xShXm/c7ybUD2P06SBKIAIhAIyjthVC7kachlPOA2gYyucNQ4PFllg5ffYNp7juSmT5"}]},"maintainers":[{"name":"anonymous","email":"hollowdoor99@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/dom-autoscroller-2.3.0.tgz_1493138958938_0.4669529339298606"}},"2.3.1":{"name":"dom-autoscroller","version":"2.3.1","description":"Auto scroll dom elements","main":"dist/bundle.js","jsnext:main":"dist/bundle.es.js","directories":{"test":"test"},"scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"node ./rollit"},"keywords":["scrolling","DOM"],"author":{"name":"Quentin Engles","email":"hollowdoor99@gmail.com"},"license":"MIT","dependencies":{"animation-frame-polyfill":"^1.0.0","create-point-cb":"^1.0.0","dom-mousemove-dispatcher":"^1.0.1","dom-plane":"^1.0.1","dom-set":"^1.0.1","type-func":"^1.0.1"},"devDependencies":{"dragula":"^3.7.2","minifyify":"^7.3.3","rollup":"^0.41.4","rollup-plugin-buble":"^0.15.0","rollup-plugin-commonjs":"^5.0.5","rollup-plugin-node-resolve":"^2.0.0","rollup-plugin-uglify":"^1.0.1","uglify-js":"^2.7.4"},"repository":{"type":"git","url":"git+https://github.com/hollowdoor/dom_autoscroller.git"},"files":["dist","LICENSE","index.js"],"gitHead":"2f791b034b693443c97074b22880725fe5e1fa44","bugs":{"url":"https://github.com/hollowdoor/dom_autoscroller/issues"},"homepage":"https://github.com/hollowdoor/dom_autoscroller#readme","_id":"dom-autoscroller@2.3.1","_shasum":"1eaf70a66072eca824eabd7dc8df91e601c69152","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.10.0","_npmUser":{"name":"anonymous","email":"hollowdoor99@gmail.com"},"dist":{"shasum":"1eaf70a66072eca824eabd7dc8df91e601c69152","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/dom-autoscroller/-/dom-autoscroller-2.3.1.tgz","integrity":"sha512-jotkPuQDzwSmQquv2k6ZGLnFe1uNY0TW0JxpLOgbgSF3KHmcZB7t7ocPV7MCJFPzV3llwP0WJ2UkXzbU9DdUiA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCh/JyhylB0ksyCkYTf5vwzUcgqmPpIRmdvvNexBMSIhAIhAMBewJ1XTUg0eZoU1j6cMvdf5hsQTGG1TN/BLOoxVPHc"}]},"maintainers":[{"name":"anonymous","email":"hollowdoor99@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dom-autoscroller-2.3.1.tgz_1495867008633_0.3884631800465286"}},"2.3.2":{"name":"dom-autoscroller","version":"2.3.2","description":"Auto scroll dom elements","main":"dist/bundle.js","jsnext:main":"dist/bundle.es.js","directories":{"test":"test"},"scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"node ./rollit"},"keywords":["scrolling","DOM"],"author":{"name":"Quentin Engles","email":"hollowdoor99@gmail.com"},"license":"MIT","dependencies":{"animation-frame-polyfill":"^1.0.0","create-point-cb":"^1.0.0","dom-mousemove-dispatcher":"^1.0.1","dom-plane":"^1.0.1","dom-set":"^1.0.1","type-func":"^1.0.1"},"devDependencies":{"dragula":"^3.7.2","minifyify":"^7.3.3","rollup":"^0.41.4","rollup-plugin-buble":"^0.15.0","rollup-plugin-commonjs":"^5.0.5","rollup-plugin-node-resolve":"^2.0.0","rollup-plugin-uglify":"^1.0.1","uglify-js":"^2.7.4"},"repository":{"type":"git","url":"git+https://github.com/hollowdoor/dom_autoscroller.git"},"files":["dist","LICENSE","index.js"],"gitHead":"8034384a0f8056ca7813c64caac64c7e2795b1de","bugs":{"url":"https://github.com/hollowdoor/dom_autoscroller/issues"},"homepage":"https://github.com/hollowdoor/dom_autoscroller#readme","_id":"dom-autoscroller@2.3.2","_shasum":"bf342cc73021eeda5061ab53f413ce622fc066c7","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.10.0","_npmUser":{"name":"anonymous","email":"hollowdoor99@gmail.com"},"dist":{"shasum":"bf342cc73021eeda5061ab53f413ce622fc066c7","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/dom-autoscroller/-/dom-autoscroller-2.3.2.tgz","integrity":"sha512-IahY9VFUmzA39/ye65jJ9UgCaTCRRBru4QMJGwLomDvnrRQLNFbe7NiQo80Ct6jdcoMJMUtFGgv8pgrKXvaZlg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBL9qq5Qds/6ppiQZgpiXVxyaVU62nNnwS2ccgtRX8BvAiEAizbXCvRLvH/QX39hnTSsfSBtsz//Ol8NBQIAVf4oecM="}]},"maintainers":[{"name":"anonymous","email":"hollowdoor99@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dom-autoscroller-2.3.2.tgz_1498881037567_0.007551094982773066"}},"2.3.3":{"name":"dom-autoscroller","version":"2.3.3","description":"Auto scroll dom elements","main":"dist/bundle.js","jsnext:main":"dist/bundle.es.js","directories":{"test":"test"},"scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"node ./rollit"},"keywords":["scrolling","DOM"],"author":{"name":"Quentin Engles","email":"hollowdoor99@gmail.com"},"license":"MIT","dependencies":{"animation-frame-polyfill":"^1.0.0","create-point-cb":"^1.0.0","dom-mousemove-dispatcher":"^1.0.1","dom-plane":"^1.0.1","dom-set":"^1.0.1","type-func":"^1.0.1"},"devDependencies":{"dragula":"^3.7.2","minifyify":"^7.3.3","rollup":"^0.41.4","rollup-plugin-buble":"^0.15.0","rollup-plugin-commonjs":"^5.0.5","rollup-plugin-node-resolve":"^2.0.0","rollup-plugin-uglify":"^1.0.1","uglify-js":"^2.7.4"},"repository":{"type":"git","url":"git+https://github.com/hollowdoor/dom_autoscroller.git"},"files":["dist","LICENSE","index.js"],"gitHead":"a3eacd980d421a9650b26edf9c80c7141e161f57","bugs":{"url":"https://github.com/hollowdoor/dom_autoscroller/issues"},"homepage":"https://github.com/hollowdoor/dom_autoscroller#readme","_id":"dom-autoscroller@2.3.3","_shasum":"96b56b1cf5284149ddf664f5bda2b9b7f7d061d9","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.10.0","_npmUser":{"name":"anonymous","email":"hollowdoor99@gmail.com"},"dist":{"shasum":"96b56b1cf5284149ddf664f5bda2b9b7f7d061d9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/dom-autoscroller/-/dom-autoscroller-2.3.3.tgz","integrity":"sha512-bu5uhBDtT9XohidvRYaEDodpeX+fB2g34z3o7H/orscZToPeAv4Ogdio/efPqQc4ajH4Z6a5RvcgbC1NFJqL6A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDJgpjg0HOQCUviINMr0EEXf1jPV13fEuHpbYlVlTvUmgIgFOntxcpGR7jx/Or++6R2GADtwtePSSQeYC2GB7m6cRQ="}]},"maintainers":[{"name":"anonymous","email":"hollowdoor99@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dom-autoscroller-2.3.3.tgz_1498881299343_0.5028065217193216"}},"2.3.4":{"name":"dom-autoscroller","version":"2.3.4","description":"Auto scroll dom elements","main":"dist/bundle.js","jsnext:main":"dist/bundle.es.js","directories":{"test":"test"},"scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"node ./rollit"},"keywords":["scrolling","DOM"],"author":{"name":"Quentin Engles","email":"hollowdoor99@gmail.com"},"license":"MIT","dependencies":{"animation-frame-polyfill":"^1.0.0","create-point-cb":"^1.0.0","dom-mousemove-dispatcher":"^1.0.1","dom-plane":"^1.0.1","dom-set":"^1.0.1","type-func":"^1.0.1"},"devDependencies":{"dragula":"^3.7.2","minifyify":"^7.3.3","rollup":"^0.41.4","rollup-plugin-buble":"^0.15.0","rollup-plugin-commonjs":"^5.0.5","rollup-plugin-node-resolve":"^2.0.0","rollup-plugin-uglify":"^1.0.1","uglify-js":"^2.7.4"},"repository":{"type":"git","url":"git+https://github.com/hollowdoor/dom_autoscroller.git"},"files":["dist","LICENSE","index.js"],"gitHead":"7c808b995ccfc84ef38ecf634138eaf08db7238d","bugs":{"url":"https://github.com/hollowdoor/dom_autoscroller/issues"},"homepage":"https://github.com/hollowdoor/dom_autoscroller#readme","_id":"dom-autoscroller@2.3.4","_npmVersion":"5.6.0","_nodeVersion":"9.4.0","_npmUser":{"name":"anonymous","email":"hollowdoor99@gmail.com"},"dist":{"integrity":"sha512-HcAdt/2Dq9x4CG6LWXc2x9Iq0MJPAu8fuzHncclq7byufqYEYVtx9sZ/dyzR+gdj4qwEC9p27Lw1G2HRRYX6jQ==","shasum":"1ed25cbde2bdf3bf3eb762937089b20ecef190bd","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/dom-autoscroller/-/dom-autoscroller-2.3.4.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDji/McGxY7LJLgwQHFjkdnOPPynhdSEQ9ytmWrY2tjzwIhAM1zaDb+BGO1XTuo5XRj9hqmDtFVZPhKv+d4IcqyH8Ka"}]},"maintainers":[{"name":"anonymous","email":"hollowdoor99@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dom-autoscroller-2.3.4.tgz_1516232899945_0.3472055126912892"}}},"name":"dom-autoscroller","time":{"modified":"2022-06-15T21:04:29.301Z","created":"2015-11-24T20:29:04.948Z","1.0.0":"2015-11-24T20:29:04.948Z","1.1.0":"2015-11-24T20:32:38.974Z","1.1.1":"2015-11-24T21:03:41.753Z","1.2.1":"2015-12-14T22:21:31.163Z","1.2.2":"2016-01-29T23:17:22.254Z","1.2.3":"2016-02-06T03:01:30.962Z","1.2.4":"2016-03-17T17:04:08.125Z","1.3.0":"2016-06-03T03:34:07.577Z","1.3.1":"2016-06-03T03:37:57.278Z","1.4.0":"2016-09-27T00:49:12.991Z","1.4.1":"2016-09-29T02:04:13.705Z","2.0.0":"2016-10-27T00:02:10.301Z","2.1.0":"2016-10-27T03:58:05.027Z","2.1.1":"2016-10-27T04:22:21.732Z","2.1.2":"2016-10-27T05:18:38.960Z","2.1.3":"2016-10-27T05:33:00.368Z","2.1.4":"2016-10-28T07:20:41.444Z","2.1.5":"2016-10-28T10:01:32.757Z","2.1.6":"2016-10-28T22:26:45.291Z","2.2.0":"2016-11-04T03:21:21.451Z","2.2.1":"2016-11-04T03:25:20.673Z","2.2.2":"2016-11-15T04:22:10.117Z","2.2.3":"2016-11-15T04:48:46.294Z","2.2.4":"2016-11-16T18:05:49.814Z","2.2.5":"2016-11-16T19:44:54.620Z","2.2.6":"2016-11-16T20:10:36.351Z","2.2.7":"2016-11-17T18:59:21.258Z","2.2.8":"2017-01-20T17:29:02.295Z","2.3.0":"2017-04-25T16:49:21.275Z","2.3.1":"2017-05-27T06:36:49.861Z","2.3.2":"2017-07-01T03:50:38.670Z","2.3.3":"2017-07-01T03:55:00.486Z","2.3.4":"2018-01-17T23:48:21.152Z"},"readmeFilename":"README.md","homepage":"https://github.com/hollowdoor/dom_autoscroller#readme"}