From 054378f8226847bba7b432b603f29a0973864afc Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Sun, 9 Feb 2014 13:13:00 +0200 Subject: [PATCH] Normalize package.json. Fix version info, add missing properties. --- package.json | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/package.json b/package.json index 3ddf184..d41f592 100644 --- a/package.json +++ b/package.json @@ -1,23 +1,21 @@ { "name": "filesaver.js", - "version": "2013.1.23", + "version": "2013.1.24", "description": "A saveAs() FileSaver implementation", + "author": "Eli Grey", + "license": "MIT/X11", "main": "FileSaver.js", - "scripts": { - "test": "echo \"Error: no test specified\" && exit 1" - }, "repository": { "type": "git", "url": "https://github.com/eligrey/FileSaver.js.git" }, + "bugs": { + "url": "https://github.com/eligrey/FileSaver.js/issues" + }, + "homepage": "https://github.com/eligrey/FileSaver.js", "keywords": [ "filesaver", "saveas", "blob" - ], - "author": "Eli Grey", - "license": "MIT/X11", - "bugs": { - "url": "https://github.com/eligrey/FileSaver.js/issues" - } + ] }