Skip to content

Commit 20b4ac4

Browse files
committedJul 27, 2015
Updating the package manifest for npm
1 parent d38e7a9 commit 20b4ac4

6 files changed

+14
-17
lines changed
 

‎Gruntfile.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ module.exports = function(grunt) {
66
banner : "/**\n" +
77
" * <%= pkg.name %>\n" +
88
" *\n" +
9-
" * @author <%= pkg.author.name %> <<%= pkg.author.email %>>\n" +
10-
" * @copyright <%= grunt.template.today('yyyy') %> <%= pkg.author.name %>\n" +
11-
" * @license <%= pkg.licenses[0].type %> <<%= pkg.licenses[0].url %>>\n" +
9+
" * @author <%= pkg.author %>\n" +
10+
" * @copyright <%= grunt.template.today('yyyy') %> <%= pkg.author %>\n" +
11+
" * @license <%= pkg.license %>\n" +
1212
" * @link <%= pkg.homepage %>\n" +
1313
" * @module <%= pkg.name %>\n" +
1414
" * @version <%= pkg.version %>\n" +

‎lib/filesize.es6.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
* filesize
33
*
44
* @author Jason Mulligan <jason.mulligan@avoidwork.com>
5-
* @copyright 2015 Jason Mulligan
6-
* @license BSD-3 <https://raw.github.com/avoidwork/filesize.js/master/LICENSE>
5+
* @copyright 2015 Jason Mulligan <jason.mulligan@avoidwork.com>
6+
* @license BSD-3-Clause
77
* @link http://filesizejs.com
88
* @module filesize
9-
* @version 3.1.2
9+
* @version 3.1.3
1010
*/
1111
( global ) => {
1212
const bit = /b$/;

‎lib/filesize.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
* filesize
55
*
66
* @author Jason Mulligan <jason.mulligan@avoidwork.com>
7-
* @copyright 2015 Jason Mulligan
8-
* @license BSD-3 <https://raw.github.com/avoidwork/filesize.js/master/LICENSE>
7+
* @copyright 2015 Jason Mulligan <jason.mulligan@avoidwork.com>
8+
* @license BSD-3-Clause
99
* @link http://filesizejs.com
1010
* @module filesize
11-
* @version 3.1.2
11+
* @version 3.1.3
1212
*/
1313
(function (global) {
1414
var bit = /b$/;

‎lib/filesize.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎lib/filesize.min.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+2-5
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
11
{
22
"name": "filesize",
33
"description": "JavaScript library to generate a human readable String describing the file size",
4-
"version": "3.1.2",
4+
"version": "3.1.3",
55
"homepage": "http://filesizejs.com",
6-
"author": {
7-
"name": "Jason Mulligan",
8-
"email": "jason.mulligan@avoidwork.com"
9-
},
6+
"author": "Jason Mulligan <jason.mulligan@avoidwork.com>",
107
"repository": {
118
"type": "git",
129
"url": "git://github.com/avoidwork/filesize.js.git"

0 commit comments

Comments
 (0)
Please sign in to comment.