diff --git a/README.md b/README.md index c893938..dec6525 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ A service which makes it easy possible to have recursive Angular directives. When an Angular directive calls itself, Angular gets into an endless loop. This service provides the logic needed to work around this. ## Installation -1. `bower install angular-recursion`. +1. `bower install angular-recursion --save` or `npm install angular-recursion --save`. 2. Include `bower_components/angular-recursion/angular-recursion.min.js`. 3. Add the `RecursionHelper` module as a dependency. 4. Inject the `RecursionHelper` service and use it. diff --git a/bower.json b/bower.json index 8f93aa7..164c660 100644 --- a/bower.json +++ b/bower.json @@ -1,12 +1,12 @@ { "name": "angular-recursion", + "version": "1.0.5", + "description": "An Angular service which helps with creating recursive directives.", "main": "angular-recursion.js", - "version": "1.0.4", "homepage": "https://github.com/marklagendijk/angular-recursion", "authors": [ "Mark Lagendijk " ], - "description": "An Angular service which helps with creating recursive directives.", "keywords": [ "angular", "angular-service", diff --git a/package.json b/package.json index e82141b..39aec71 100644 --- a/package.json +++ b/package.json @@ -1,4 +1,8 @@ { + "name": "angular-recursion", + "version": "1.0.5", + "description": "An Angular service which helps with creating recursive directives.", + "main": "angular-recursion.js", "directories": { "test": "test" }, @@ -19,5 +23,23 @@ "scripts": { "test": "gulp test", "minify": "gulp minify" - } + }, + "repository": { + "type": "git", + "url": "https://marklagendijk@github.com/marklagendijk/angular-recursion.git" + }, + "keywords": [ + "angular", + "angular-service", + "angular-recursion", + "angular-recursion-helper", + "recursion", + "recursive" + ], + "author": "Mark Lagendijk ", + "license": "MIT", + "bugs": { + "url": "https://github.com/marklagendijk/angular-recursion/issues" + }, + "homepage": "https://github.com/marklagendijk/angular-recursion" }