diff --git a/.eslintrc b/.eslintrc index 61b2a3f..86e2d05 100644 --- a/.eslintrc +++ b/.eslintrc @@ -33,7 +33,7 @@ "consistent-this": 0, "callback-return": 0, "valid-jsdoc": [ - 1, + 2, { "requireReturn": false, "prefer": { diff --git a/README.md b/README.md index 3366cca..4f0ecd8 100644 --- a/README.md +++ b/README.md @@ -97,7 +97,7 @@ See full docs at: [API Docs](docs/api.md) | Date | Version | Description | | ----------- | ------- | ----------- | -| 2015-10-24 | v0.0.37 | Maintenance | +| 2015-11-03 | v0.0.38 | Maintenance | | 2015-09-26 | v0.0.31 | Update bower dependencies | | 2015-09-26 | v0.0.30 | Added 'onClick' option to enable adding onclick event handler for the notification | | 2015-09-02 | v0.0.29 | Maintenance | diff --git a/bower.json b/bower.json index b959212..e9c8f05 100644 --- a/bower.json +++ b/bower.json @@ -1,18 +1,18 @@ { "name": "angular-web-notification", - "version": "0.0.37", + "version": "0.0.38", + "description": "AngularJS service for displaying web notifications.", "authors": [ "Sagie Gur-Ari " ], - "description": "AngularJS service for displaying web notifications.", - "main": "angular-web-notification.js", + "license": "Apache-2.0", + "homepage": "http://github.com/sagiegurari/angular-web-notification", "keywords": [ "AngularJS", "notifications", "web notifications" ], - "license": "Apache-2.0", - "homepage": "http://github.com/sagiegurari/angular-web-notification", + "main": "angular-web-notification.js", "ignore": [ "node_modules", "bower_components", diff --git a/package.json b/package.json index d249eb5..69e0837 100644 --- a/package.json +++ b/package.json @@ -7,20 +7,33 @@ "name": "Sagie Gur-Ari", "email": "sagiegurari@gmail.com" }, - "main": "angular-web-notification.js", - "directories": { - "test": "test/spec", - "example": "example" - }, + "license": "Apache-2.0", + "homepage": "http://github.com/sagiegurari/angular-web-notification", "repository": { "type": "git", "url": "http://github.com/sagiegurari/angular-web-notification.git" }, + "bugs": { + "url": "http://github.com/sagiegurari/angular-web-notification/issues" + }, "keywords": [ "angularjs", "web", "notification" ], + "main": "angular-web-notification.js", + "directories": { + "test": "test/spec", + "example": "example" + }, + "scripts": { + "test": "grunt test", + "clean": "grunt cleanup", + "lint": "grunt lint", + "docs": "grunt docs", + "build": "grunt build", + "precommit": "npm run build" + }, "devDependencies": { "grunt": "latest", "grunt-cli": "latest", @@ -45,18 +58,5 @@ "mocha": "latest", "phantomjs": "latest", "time-grunt": "latest" - }, - "scripts": { - "test": "grunt test", - "clean": "grunt cleanup", - "lint": "grunt lint", - "docs": "grunt docs", - "build": "grunt build", - "precommit": "npm run build" - }, - "license": "Apache-2.0", - "bugs": { - "url": "http://github.com/sagiegurari/angular-web-notification/issues" - }, - "homepage": "http://github.com/sagiegurari/angular-web-notification" + } }