package.json:
authorXhmikosR <xhmikosr@users.sourceforge.net>
Thu, 28 Mar 2013 18:45:10 +0000 (20:45 +0200)
committerXhmikosR <xhmikosr@users.sourceforge.net>
Sat, 30 Mar 2013 10:02:15 +0000 (12:02 +0200)
* add readmeFilename
* add license
* refactor entries a little

package.json

index 23b5b13..7aba612 100644 (file)
@@ -1,18 +1,21 @@
 {
   "name": "clean-css",
+  "version": "0.10.2",
   "author": "Jakub Pawlowicz <jakub@goalsmashers.com> (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"
 }