{
  "name": "grunt-contrib-csslint",
  "description": "Lint CSS files.",
  "version": "0.1.0",
  "homepage": "https://github.com/gruntjs/grunt-contrib-csslint",
  "author": {
    "name": "Grunt Team",
    "url": "http://gruntjs.com/"
  },
  "repository": {
    "type": "git",
    "url": "git://github.com/gruntjs/grunt-contrib-csslint.git"
  },
  "bugs": {
    "url": "https://github.com/gruntjs/grunt-contrib-csslint/issues"
  },
  "licenses": [
    {
      "type": "MIT",
      "url": "https://github.com/gruntjs/grunt-contrib-csslint/blob/master/LICENSE-MIT"
    }
  ],
  "main": "Gruntfile.js",
  "engines": {
    "node": ">= 0.8.0"
  },
  "scripts": {
    "test": "grunt test"
  },
  "dependencies": {
    "csslint": "~0.9.10"
  },
  "devDependencies": {
    "grunt-contrib-jshint": "~0.2.0",
    "grunt-contrib-nodeunit": "~0.1.2",
    "grunt-contrib-internal": "~0.4.2",
    "grunt": "~0.4.0"
  },
  "peerDependencies": {
    "grunt": "~0.4.0"
  },
  "keywords": [
    "gruntplugin"
  ],
  "contributors": [
    {
      "name": "Jörn Zaefferer",
      "url": "http://bassistance.de"
    }
  ],
  "readme": "# grunt-contrib-csslint [![Build Status](https://secure.travis-ci.org/gruntjs/grunt-contrib-csslint.png?branch=master)](http://travis-ci.org/gruntjs/grunt-contrib-csslint)\n\n> Lint CSS files.\n\n\n\n## Getting Started\nThis plugin requires Grunt `~0.4.0`\n\nIf you haven't used [Grunt](http://gruntjs.com/) before, be sure to check out the [Getting Started](http://gruntjs.com/getting-started) guide, as it explains how to create a [Gruntfile](http://gruntjs.com/sample-gruntfile) as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:\n\n```shell\nnpm install grunt-contrib-csslint --save-dev\n```\n\nOnce the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:\n\n```js\ngrunt.loadNpmTasks('grunt-contrib-csslint');\n```\n\n\n\n\n## Csslint task\n_Run this task with the `grunt csslint` command._\n\nTask targets, files and options may be specified according to the grunt [Configuring tasks](http://gruntjs.com/configuring-tasks) guide.\n\nFiles are linted with [csslint](https://github.com/stubbornella/csslint).\n### Options\n\nAny specified option will be passed through directly to [csslint], thus you can specify any option that csslint supports. The csslint API is a bit awkward: For each rule, a value of `false` ignores the rule, a value of `2` will set it to become an error. Otherwise all rules are considered warnings.\n\n[csslint]: http://csslint.net/\n\nFor the current csslint version, these rules are available:\n\n* important\n* adjoining-classes\n* known-properties\n* box-sizing\n* box-model\n* overqualified-elements\n* display-property-grouping\n* bulletproof-font-face\n* compatible-vendor-prefixes\n* regex-selectors\n* errors\n* duplicate-background-images\n* duplicate-properties\n* empty-rules\n* selector-max-approaching\n* gradients\n* fallback-colors\n* font-sizes\n* font-faces\n* floats\n* star-property-hack\n* outline-none\n* import\n* ids\n* underscore-property-hack\n* rules-count\n* qualified-headings\n* selector-max\n* shorthand\n* text-indent\n* unique-headings\n* universal-selector\n* unqualified-attributes\n* vendor-prefix\n* zero-units\n\nFor an explanation of those rules, [check the csslint wiki](https://github.com/stubbornella/csslint/wiki/Rules).\n\n*Side note: To update this list, run this:*\n\n```bash\nnode -e \"require('csslint').CSSLint.getRules().forEach(function(x) { console.log(x.id) })\"\n```\n\n### Usage Examples\n\n```js\ncsslint: {\n  strict: {\n    options: {\n      import: 2\n    },\n    src: ['path/to/**/*.css']\n  },\n  lax: {\n    options: {\n      import: false\n    },\n    src: ['path/to/**/*.css']\n  }\n}\n```\n\n## Release History\n\n * 2013-03-06   v0.1.0   Initial release.\n\n---\n\nTask submitted by [Jörn Zaefferer](http://bassistance.de)\n\n*This file was generated on Thu Mar 07 2013 14:20:56.*\n",
  "readmeFilename": "README.md",
  "_id": "grunt-contrib-csslint@0.1.0",
  "_from": "grunt-contrib-csslint@0.1.0"
}
