From 42dafe65a20b395ff65d2f0db2d56686c30339ce Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Thu, 28 Mar 2013 20:45:10 +0200 Subject: [PATCH] package.json: * add readmeFilename * add license * refactor entries a little --- package.json | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) 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" } -- 2.34.1