From: XhmikosR Date: Thu, 28 Mar 2013 18:45:10 +0000 (+0200) Subject: package.json: X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=42dafe65a20b395ff65d2f0db2d56686c30339ce;p=clean-css.git package.json: * add readmeFilename * add license * refactor entries a little --- diff --git a/package.json b/package.json index 23b5b139..7aba6127 100644 --- a/package.json +++ b/package.json @@ -1,18 +1,21 @@ { "name": "clean-css", + "version": "0.10.2", "author": "Jakub Pawlowicz (http://twitter.com/GoalSmashers)", "description": "A well-tested CSS minifier", - "keywords": ["css", "minifier"], + "keywords": [ + "css", + "minifier" + ], "homepage": "https://github.com/GoalSmashers/clean-css", "repository": { - "type" : "git", - "url" : "https://github.com/GoalSmashers/clean-css.git" + "type": "git", + "url": "https://github.com/GoalSmashers/clean-css.git" }, - "version": "0.10.2", - "main": "index.js", "bin": { "cleancss": "./bin/cleancss" }, + "main": "index.js", "scripts": { "bench": "node test/bench.js", "check": "jshint .", @@ -28,5 +31,7 @@ }, "engines": { "node": ">=0.6.0" - } + }, + "readmeFilename": "README.md", + "license": "MIT" }