Skip to content

Commit

Permalink
Adding author email to package.json and manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
gnarf committed Jan 16, 2013
1 parent 87e58bd commit 8866ad1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
7 changes: 2 additions & 5 deletions grunt.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ module.exports = function(grunt) {
});

// Default task.
grunt.registerTask('default', 'lint qunit concat min');
grunt.registerTask('default', 'lint qunit manifest concat min');

grunt.registerTask( "manifest", function() {
var pkg = grunt.config( "pkg" );
Expand All @@ -65,10 +65,7 @@ module.exports = function(grunt) {
description: pkg.description,
keywords: pkg.keywords,
version: pkg.version,
author: {
name: pkg.author.name,
url: pkg.author.url.replace( "master", pkg.version )
},
author: pkg.author,
maintainers: pkg.maintainers,
licenses: pkg.licenses.map(function( license ) {
license.url = license.url.replace( "master", pkg.version );
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"homepage": "https://github.com/gnarf37/jquery-requestAnimationFrame",
"author": {
"name": "Corey Frang",
"email": "gnarf37@gmail.com",
"url": "https://github.com/gnarf37"
},
"maintainers": [
Expand Down
5 changes: 3 additions & 2 deletions requestAnimationFrame.jquery.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@
"keywords": [
"animation"
],
"version": "0.1.0",
"version": "0.1.1pre",
"author": {
"name": "Corey Frang",
"email": "gnarf37@gmail.com",
"url": "https://github.com/gnarf37"
},
"maintainers": [
Expand All @@ -20,7 +21,7 @@
"licenses": [
{
"type": "MIT",
"url": "https://github.com/jquery/gnarf37/jquery-requestAnimationFrame/blob/0.1.0/LICENSE-MIT"
"url": "https://github.com/jquery/gnarf37/jquery-requestAnimationFrame/blob/0.1.1pre/LICENSE-MIT"
}
],
"bugs": "https://github.com/gnarf37/jquery-requestAnimationFrame/issues",
Expand Down

0 comments on commit 8866ad1

Please sign in to comment.