diff --git a/README.md b/README.md
index abe3f02..a11d5b9 100644
--- a/README.md
+++ b/README.md
@@ -32,6 +32,13 @@ or you can use CloudFlare CDN:
+## Install with Bower or NPM
+
+ bower install authy-form-helpers --save
+
+ or
+
+ npm install authy-form-helpers --save
## Registration form (user enabling two factor)
diff --git a/bower.json b/bower.json
new file mode 100644
index 0000000..ed34d69
--- /dev/null
+++ b/bower.json
@@ -0,0 +1,30 @@
+{
+ "name": "authy-form-helpers",
+ "version": "2.4.0",
+ "homepage": "https://github.com/authy/authy-form-helpers",
+ "authors": [
+ "Authy Inc. "
+ ],
+ "description": "Authy javascripts and css file to help create quick forms for the authy api",
+ "main": [
+ "src/form.authy.min.js",
+ "src/form.authy.min.css"
+ ],
+ "moduleType": [
+ "globals"
+ ],
+ "keywords": [
+ "Authy",
+ "2fa",
+ "form",
+ "helper"
+ ],
+ "license": "MIT",
+ "ignore": [
+ "**/.*",
+ "node_modules",
+ "bower_components",
+ "test",
+ "tests"
+ ]
+}
diff --git a/index.js b/index.js
new file mode 100644
index 0000000..75edae7
--- /dev/null
+++ b/index.js
@@ -0,0 +1 @@
+require('./src/form.authy.min.js');
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..7b6250c
--- /dev/null
+++ b/package.json
@@ -0,0 +1,24 @@
+{
+ "name": "authy-form-helpers",
+ "version": "2.4.3",
+ "description": "Authy javascripts and css file to help create quick forms for the authy api",
+ "main": "index.js",
+ "scripts": {
+ "test": "echo \"Error: no test specified\" && exit 1"
+ },
+ "repository": {
+ "type": "git",
+ "url": "git+https://github.com/cepinos/authy-form-helpers.git"
+ },
+ "keywords": [
+ "2fa",
+ "Form",
+ "helpers"
+ ],
+ "author": "Authy Inc. ",
+ "license": "MIT",
+ "bugs": {
+ "url": "https://github.com/cepinos/authy-form-helpers/issues"
+ },
+ "homepage": "https://github.com/cepinos/authy-form-helpers#readme"
+}