diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b590662 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.idea/ +bower_components/ \ No newline at end of file diff --git a/angular-underscorejs.js b/angular-underscorejs.js new file mode 100644 index 0000000..a0fcd78 --- /dev/null +++ b/angular-underscorejs.js @@ -0,0 +1,16 @@ +/** + * angular-underscorejs: underscorejs + AngularJS + * + * @author Manuel Santisteban + * @url https://github.com/Xen3r0/angular-underscorejs + * @license MIT + */ +(function (angular, _) { + var isolate_ = angular.copy(_); + + angular.module('xen3r0.underscorejs', []) + .factory('_', function () { + return isolate_; + }) + ; +})(angular, _); \ No newline at end of file diff --git a/bower.json b/bower.json new file mode 100644 index 0000000..f13d39a --- /dev/null +++ b/bower.json @@ -0,0 +1,26 @@ +{ + "name": "angular-underscorejs", + "homepage": "https://github.com/Xen3r0/angular-underscorejs", + "authors": [ + "Manuel Santisteban " + ], + "description": "Wrapper underscorejs with AngularJS", + "main": "angular-underscorejs.js", + "keywords": [ + "angular", + "underscorejs", + "wrapper" + ], + "license": "MIT", + "ignore": [ + "**/.*", + "node_modules", + "bower_components", + "test", + "tests" + ], + "dependencies": { + "underscore": "^1.8.3", + "angular": "angularjs#^1.5.8" + } +}