Prepare integration with Bower. #138
diff --git a/README.md b/README.md
index 5249ec2..2fb92b7 100644
--- a/README.md
+++ b/README.md
@@ -60,8 +60,12 @@
 - Go to Edit > Preferences > General > and check on "Allow Scripts to Write Files and Access Network"
 
 # HTML player installation
-```node
+```bash
+# with npm
 npm install bodymovin
+
+# with bower
+bower install bodymovin
 ```  
 Or you can use the script file from here:  
 https://cdnjs.com/libraries/bodymovin  
diff --git a/bower.json b/bower.json
new file mode 100644
index 0000000..e789f72
--- /dev/null
+++ b/bower.json
@@ -0,0 +1,27 @@
+{
+  "name": "bodymovin",
+  "description": "After Effects plugin for exporting animations to SVG + JavaScript or canvas + JavaScript",
+  "main": "./build/player/bodymovin.js",
+  "authors": [
+    "hernan <bodymovin@users.noreply.github.com>"
+  ],
+  "license": "MIT",
+  "keywords": [
+    "animation",
+    "canvas",
+    "svg",
+    "after",
+    "effects",
+    "plugin",
+    "export"
+  ],
+  "homepage": "https://github.com/bodymovin/bodymovin",
+  "ignore": [
+    "**/.*",
+    "bower_components",
+    "node_modules",
+    "player",
+    "test",
+    "tests"
+  ]
+}