From df926cfa2d8c96733725da92ae42ce1ce20c38d9 Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Sun, 3 Nov 2013 01:22:28 +0200 Subject: [PATCH 1/2] Normalize package.json. --- package.json | 41 +++++++++++++++++++---------------------- 1 file changed, 19 insertions(+), 22 deletions(-) diff --git a/package.json b/package.json index e9d4d99e..6f2e6d71 100644 --- a/package.json +++ b/package.json @@ -2,26 +2,17 @@ "name": "csslint", "version": "0.10.0", "description": "CSSLint", - "author": { - "name": "Nicole Sullivan" - }, + "author": "Nicole Sullivan", "contributors": [ - { - "name": "Nicholas C. Zakas" - } + "Nicholas C. Zakas" ], - "engines": { - "node": ">=0.8.0" - }, - "directories": { - "lib": "lib" - }, - "main": "./lib/csslint-node.js", - "bin": { - "csslint": "./cli.js" + "homepage": "http://csslint.net/", + "repository": { + "type": "git", + "url": "https://github.com/stubbornella/csslint.git" }, - "scripts": { - "test": "grunt test" + "bugs": { + "url": "https://github.com/stubbornella/csslint/issues" }, "licenses": [ { @@ -29,12 +20,12 @@ "url": "https://github.com/stubbornella/csslint/blob/master/LICENSE" } ], - "bugs": { - "url": "https://github.com/stubbornella/csslint/issues" + "main": "./lib/csslint-node.js", + "bin": { + "csslint": "./cli.js" }, - "repository": { - "type": "git", - "url": "https://github.com/stubbornella/csslint.git" + "scripts": { + "test": "grunt test" }, "dependencies": { "parserlib": "~0.2.2" @@ -48,5 +39,11 @@ "grunt-contrib-watch": "~0.4.4", "grunt-include-replace": "~0.4.0", "yuitest": "~0.7.9" + }, + "engines": { + "node": ">=0.8.0" + }, + "directories": { + "test": "tests" } } From 98fb6c2a948ba227fbbd3e549ea5c65c60f6a67c Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Fri, 22 Nov 2013 18:24:19 +0200 Subject: [PATCH 2/2] Update dependencies. --- package.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/package.json b/package.json index 6f2e6d71..8d195638 100644 --- a/package.json +++ b/package.json @@ -28,16 +28,16 @@ "test": "grunt test" }, "dependencies": { - "parserlib": "~0.2.2" + "parserlib": "~0.2.4" }, "devDependencies": { - "grunt": "~0.4.1", - "grunt-contrib-clean": "~0.4.1", - "grunt-contrib-concat": "~0.3.0", - "grunt-contrib-copy": "~0.4.1", + "grunt": "~0.4.4", + "grunt-contrib-clean": "~0.5.0", + "grunt-contrib-concat": "~0.4.0", + "grunt-contrib-copy": "~0.5.0", "grunt-contrib-jshint": "~0.10.0", - "grunt-contrib-watch": "~0.4.4", - "grunt-include-replace": "~0.4.0", + "grunt-contrib-watch": "~0.6.1", + "grunt-include-replace": "~1.2.0", "yuitest": "~0.7.9" }, "engines": {