From 275a928532ec7981d6c0da46c0e571f5c30d8f06 Mon Sep 17 00:00:00 2001 From: Moritz Meyer Date: Wed, 26 Feb 2014 16:18:07 +0100 Subject: [PATCH] create bower json and ignore bower_components directory --- .gitignore | 1 + bower.json | 25 +++++++++++++++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 bower.json diff --git a/.gitignore b/.gitignore index 9daa824..0bc7c71 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ .DS_Store node_modules +bower_components diff --git a/bower.json b/bower.json new file mode 100644 index 0000000..e999fea --- /dev/null +++ b/bower.json @@ -0,0 +1,25 @@ +{ + "name": "perfect-scrollbar", + "version": "0.4.8", + "homepage": "http://noraesae.github.io/perfect-scrollbar/", + "authors": [ + "Hyeonje Jun " + ], + "description": "Tiny but perfect jQuery scrollbar plugin", + "main": [ + "min/perfect-scrollbar-0.4.8.min.css", + "min/perfect-scrollbar-0.4.8.min.js", + "min/perfect-scrollbar-0.4.8.with-mousewheel.min.js" + ], + "license": "MIT", + "ignore": [ + "**/.*", + "node_modules", + "bower_components", + "test", + "tests" + ], + "dependencies": { + "jquery": "2.x" + } +}