From b91249e185d26c927c273e3c4cbf3ec5f041e86a Mon Sep 17 00:00:00 2001 From: fpellet Date: Sun, 23 Aug 2015 18:25:41 +0200 Subject: [PATCH] Add bower config --- .gitignore | 1 + Jquery.ajaxFile.csproj | 1 + bower.json | 29 +++++++++++++++++++++++++++++ 3 files changed, 31 insertions(+) create mode 100644 bower.json diff --git a/.gitignore b/.gitignore index a9de61c..e22e849 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,7 @@ ## files generated by popular Visual Studio add-ons. node_modules/ +bower_components/ src/*/*.js src/*/*.map src/*.js diff --git a/Jquery.ajaxFile.csproj b/Jquery.ajaxFile.csproj index 5fd2c97..f613f6d 100644 --- a/Jquery.ajaxFile.csproj +++ b/Jquery.ajaxFile.csproj @@ -25,6 +25,7 @@ + diff --git a/bower.json b/bower.json new file mode 100644 index 0000000..a09cf60 --- /dev/null +++ b/bower.json @@ -0,0 +1,29 @@ +{ + "name": "jquery.ajaxFile", + "version": "0.0.4", + "main": [ + "dist/ajaxFile.js" + ], + "homepage": "https://github.com/fpellet/jquery.ajaxFile", + "authors": [ + "fpellet " + ], + "moduleType": [ + "amd", + "globals" + ], + "license": "MIT", + "ignore": [ + "**/.*", + "node_modules", + "bower_components", + "test", + "tests", + "Demo", + "*.csproj", + "*.sln" + ], + "dependencies": { + "jquery": ">= 1.9.1" + } +}