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" + } +}