From fba952a1992f8a49e7959d2ac5f578bfc72cc555 Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Sat, 25 Jan 2014 18:13:39 +0200 Subject: [PATCH] Normalize package.json. --- package.json | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/package.json b/package.json index abe9007..33f716d 100644 --- a/package.json +++ b/package.json @@ -3,13 +3,10 @@ "description": "A grunt task for generating CSS files containing only those styles used in your project.", "version": "0.1.9", "homepage": "https://github.com/addyosmani/grunt-uncss", - "author": { - "name": "Addy Osmani", - "email": "addyosmani@gmail.com" - }, + "author": "Addy Osmani ", "repository": { "type": "git", - "url": "git://github.com/addyosmani/grunt-uncss.git" + "url": "https://github.com/addyosmani/grunt-uncss.git" }, "bugs": { "url": "https://github.com/addyosmani/grunt-uncss/issues" @@ -20,6 +17,11 @@ "url": "https://github.com/addyosmani/grunt-uncss/blob/master/LICENSE-MIT" } ], + "keywords": [ + "gruntplugin", + "uncss", + "css" + ], "files": [ "changelog.md", "LICENSE-MIT", @@ -36,29 +38,27 @@ "peerDependencies": { "grunt": "~0.4.1" }, + "dependencies": { + "uncss": "~0.7.5", + "underscore": "~1.5.2" + }, "devDependencies": { - "grunt-contrib-jshint": "~0.3.0", - "grunt-contrib-clean": "~0.4.1", + "chai": "~1.8.1", "grunt": "~0.4.1", - "grunt-contrib-watch": "~0.3.1", + "grunt-compare-size": "~0.4.0-rc.3", + "grunt-contrib-clean": "~0.4.1", "grunt-contrib-connect": "~0.3.0", - "grunt-processhtml": "~0.1.1", "grunt-contrib-copy": "~0.4.1", "grunt-contrib-cssmin": "~0.6.2", - "grunt-compare-size": "~0.4.0-rc.3", - "load-grunt-tasks": "~0.2.1", + "grunt-contrib-jshint": "~0.3.0", + "grunt-contrib-watch": "~0.3.1", + "grunt-processhtml": "~0.1.1", "grunt-simple-mocha": "~0.4.0", + "load-grunt-tasks": "~0.2.1", "mocha": "~1.16.2", - "chai": "~1.8.1", "underscore": "~1.4.4" }, - "keywords": [ - "gruntplugin", - "uncss", - "css" - ], - "dependencies": { - "underscore": "~1.5.2", - "uncss": "~0.7.5" + "directories": { + "test": "tests" } }