1{ 2 "name": "clean-css", 3 "version": "4.2.4", 4 "author": "Jakub Pawlowicz <contact@jakubpawlowicz.com> (http://twitter.com/jakubpawlowicz)", 5 "description": "A well-tested CSS minifier", 6 "license": "MIT", 7 "keywords": [ 8 "css", 9 "minifier" 10 ], 11 "homepage": "https://github.com/jakubpawlowicz/clean-css", 12 "repository": { 13 "type": "git", 14 "url": "https://github.com/jakubpawlowicz/clean-css.git" 15 }, 16 "bugs": { 17 "url": "https://github.com/jakubpawlowicz/clean-css/issues" 18 }, 19 "main": "index.js", 20 "files": [ 21 "lib", 22 "History.md", 23 "index.js", 24 "LICENSE" 25 ], 26 "scripts": { 27 "browserify": "browserify --standalone CleanCSS index.js | uglifyjs --compress --mangle -o cleancss-browser.js", 28 "bench": "node ./test/bench.js", 29 "check": "jshint .", 30 "prepublish": "npm run check", 31 "test": "vows" 32 }, 33 "dependencies": { 34 "source-map": "~0.6.0" 35 }, 36 "devDependencies": { 37 "browserify": "^14.0.0", 38 "http-proxy": "1.x", 39 "jshint": "2.x", 40 "nock": "9.x", 41 "server-destroy": "1.x", 42 "uglify-js": ">=2.6.1", 43 "vows": "0.8.x" 44 }, 45 "engines": { 46 "node": ">= 4.0" 47 } 48} 49