123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- {
- "name": "clean-css",
- "version": "1.1.7",
- "author": "Jakub Pawlowicz <jakub@goalsmashers.com> (http://twitter.com/GoalSmashers)",
- "description": "A well-tested CSS minifier",
- "keywords": [
- "css",
- "minifier"
- ],
- "homepage": "https://github.com/GoalSmashers/clean-css",
- "repository": {
- "type": "git",
- "url": "https://github.com/GoalSmashers/clean-css.git"
- },
- "bugs": {
- "url": "https://github.com/GoalSmashers/clean-css/issues"
- },
- "bin": {
- "cleancss": "./bin/cleancss"
- },
- "main": "index.js",
- "files": [
- "bin",
- "lib",
- "History.md",
- "index.js",
- "LICENSE"
- ],
- "scripts": {
- "bench": "node ./test/bench.js",
- "check": "jshint .",
- "prepublish": "jshint .",
- "test": "vows"
- },
- "dependencies": {
- "commander": "2.0.x"
- },
- "devDependencies": {
- "vows": "0.7.x",
- "jshint": "~2.1.9"
- },
- "jshintConfig": {
- "browser": false,
- "maxerr": 100,
- "node": true,
- "camelcase": true,
- "curly": false,
- "eqeqeq": false,
- "eqnull": false,
- "immed": true,
- "latedef": true,
- "multistr": true,
- "noarg": true,
- "plusplus": false,
- "quotmark": "true",
- "regexp": false,
- "strict": false,
- "trailing": true,
- "undef": true,
- "unused": true
- },
- "engines": {
- "node": ">=0.8.0"
- },
- "license": "MIT"
- }
|