From 853faf30bf9761677fbbb6b755f32215972fd432 Mon Sep 17 00:00:00 2001 From: shivanyshenoy Date: Sun, 15 Nov 2015 11:58:40 -0600 Subject: [PATCH] add a bower.json per bower spec, update gitignore --- .gitignore | 3 +++ bower.json | 22 ++++++++++++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 bower.json diff --git a/.gitignore b/.gitignore index 67f9a40..358e8ad 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,9 @@ # Node node_modules +#Ide +.idea + ## OS X .DS_Store .AppleDouble diff --git a/bower.json b/bower.json new file mode 100644 index 0000000..b5ca45c --- /dev/null +++ b/bower.json @@ -0,0 +1,22 @@ +{ + "name": "echojs", + "version": "1.7.3", + "homepage": "https://github.com/toddmotto/echo", + "authors": [ + "@toddmotto" + ], + "description": "Lazy-loading with data-* attributes, offset and throttle options", + "main": "src/echo.js", + "moduleType": [], + "keywords": [ + "echo" + ], + "license": "MIT", + "ignore": [ + "**/.*", + "node_modules", + "bower_components", + "test", + "tests" + ] +}