Skip to content

Commit

Permalink
Publish to npm
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Lagendijk committed Feb 23, 2015
1 parent 5ce7d0f commit c95920d
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions 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 <mark@lagendijk.info>"
],
"description": "An Angular service which helps with creating recursive directives.",
"keywords": [
"angular",
"angular-service",
Expand Down
24 changes: 23 additions & 1 deletion 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"
},
Expand All @@ -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 <mark@lagendijk.info>",
"license": "MIT",
"bugs": {
"url": "https://github.com/marklagendijk/angular-recursion/issues"
},
"homepage": "https://github.com/marklagendijk/angular-recursion"
}

0 comments on commit c95920d

Please sign in to comment.