diff --git a/component.json b/component.json new file mode 100644 index 0000000..5d791b2 --- /dev/null +++ b/component.json @@ -0,0 +1,13 @@ +{ + "name": "scroller", + "repo": "zynga/scroller", + "description": "Accelerated panning and zooming for HTML and Canvas", + "version": "0.0.1", + "keywords": ["scroller", "mobile", "animation"], + "scripts": [ + "index.js", + "src/Animate.js", + "src/Scroller.js" + ], + "license": "MIT" +} \ No newline at end of file diff --git a/index.js b/index.js new file mode 100644 index 0000000..14734c3 --- /dev/null +++ b/index.js @@ -0,0 +1,5 @@ + +require('./src/Animate'); +require('./src/Scroller'); + +module.exports = Scroller; \ No newline at end of file