diff --git a/.editorconfig b/.editorconfig
new file mode 100644
index 0000000..7c9fcfd
--- /dev/null
+++ b/.editorconfig
@@ -0,0 +1,22 @@
+# This file is for unifying the coding style for different editors and IDEs
+# editorconfig.org
+
+root = true
+
+[*]
+charset = utf-8
+indent_style = tab
+end_of_line = lf
+insert_final_newline = true
+trim_trailing_whitespace = true
+
+[{package,bower}.json]
+indent_style = space
+indent_size = 2
+
+[*.{html}]
+quote_type = double
+
+[*.md]
+# use `
` to insert a line break explicitly.
+; trim_trailing_whitespace = false
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..e900060
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,22 @@
+Thumbs.db
+ehthumbs.db
+[Dd]esktop.ini
+$RECYCLE.BIN/
+.DS_Store
+.klive
+.dropbox.cache
+
+*.tmp
+*.bak
+*.swp
+*.lnk
+
+.svn
+.idea
+
+node_modules/
+bower_components/
+npm-debug.log
+
+*.zip
+*.gz
diff --git a/.npmignore b/.npmignore
new file mode 100644
index 0000000..199c076
--- /dev/null
+++ b/.npmignore
@@ -0,0 +1,5 @@
+*
+
+!package.json
+!README.md
+!src/**/*.*
diff --git a/README.md b/README.md
index 1bbe888..4354f40 100644
--- a/README.md
+++ b/README.md
@@ -1,42 +1,52 @@
-# ScrollFix
-
-ScrollFix is a small script that *partially* works around the most common issue with using iOS5's `overflow: scroll` for fullscreen web apps.
-
-The newly support `overflow:scroll` is a great addition and works well except under the following conditions:
-
-- The scroll area is at the top and the user tries to scroll up
-- The scroll area is at the bottom and the user tries to scroll down.
-
-In a native app, you'd expect the content to rubber band but in Safari the whole page is scrolled instead. Under occasions where you've deliberately hidden the browser chrome, this interaction can bring it back into view.
-
-ScrollFix works around this by manually offsetting the `scrollTop` value to one away from the limit at either extreme, which causes the browser to use rubber banding rather than passing the event up the DOM tree.
-
-# How to use
-
-Setup a scrollable section:
-
-
-
-Then call the following code on the area that has the `overflow: scroll` property:
-
- var scrollable = document.getElementById("scrollable");
- new ScrollFix(scrollable);
-
-# Known Issues
-
-ScrollFix doesn't prevent the page from being scrolled when if a touch is registered whilst the scrolling section is bouncing (rubber banding). This is an issue I don't think can be worked around with the current implementation of iOS5's `overflow: scroll`.
-
-[This ticket](https://github.com/joelambert/ScrollFix/issues/1#issuecomment-2421225) better explains the issue, Apple are aware of the problem (thanks to [Matteo Spinelli](http://www.twitter.com/cubiq)), hopefully this will be resolved in iOS 5.1.
-
-# License
-
-ScrollFix is Copyright © 2011-2013 [Joe Lambert](http://www.joelambert.co.uk) and is licensed under the terms of the [MIT License](http://www.opensource.org/licenses/mit-license.php).
+# Scroll Box
+
+> Lightweight solution for scrolling content on mobile device.
+
+> Inspired by [ScrollFix](https://github.com/joelambert/ScrollFix).
+
+ScrollFix's original documentation is below (probably not applicable to this project):
+
+***
+
+> ### ScrollFix
+>
+> ScrollFix is a small script that *partially* works around the most common issue with using iOS5's `overflow: scroll` for fullscreen web apps.
+>
+> The newly support `overflow:scroll` is a great addition and works well except under the following conditions:
+>
+> - The scroll area is at the top and the user tries to scroll up
+> - The scroll area is at the bottom and the user tries to scroll down.
+>
+> In a native app, you'd expect the content to rubber band but in Safari the whole page is scrolled instead. Under occasions where you've deliberately hidden the browser chrome, this interaction can bring it back into view.
+>
+> ScrollFix works around this by manually offsetting the `scrollTop` value to one away from the limit at either extreme, which causes the browser to use rubber banding rather than passing the event up the DOM tree.
+>
+> ### How to use
+>
+> Setup a scrollable section:
+>
+> ```html
+>
+> ```
+>
+> Then call the following code on the area that has the `overflow: scroll` property:
+>
+> ```js
+> var scrollable = document.getElementById("scrollable");
+> new ScrollFix(scrollable);
+> ```
+
+***
+
+## License
+
+[MIT License](http://www.opensource.org/licenses/mit-license.php)
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..8c22bf0
--- /dev/null
+++ b/package.json
@@ -0,0 +1,20 @@
+{
+ "name": "scroll-box",
+ "version": "0.2.0-alpha.1",
+ "homepage": "https://github.com/CMUI/scroll-box",
+ "author": "cssmagic ",
+ "description": "Lightweight solution for scrolling content on mobile device.",
+ "license": "MIT",
+ "keywords": [
+ "overflow",
+ "scroll",
+ "touch",
+ "mobile"
+ ],
+ "main": "./src/scroll-box.js",
+ "scripts": {
+ "test": "echo \"Error: no test specified\" && exit 1"
+ },
+ "dependencies": {},
+ "devDependencies": {}
+}