{
  "name": "grunt-sass",
  "version": "0.14.0",
  "description": "Compile Sass to CSS using node-sass",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git://github.com/sindresorhus/grunt-sass"
  },
  "author": {
    "name": "Sindre Sorhus",
    "email": "sindresorhus@gmail.com",
    "url": "http://sindresorhus.com"
  },
  "engines": {
    "node": ">=0.10.0"
  },
  "scripts": {
    "test": "grunt"
  },
  "files": [
    "tasks"
  ],
  "keywords": [
    "gruntplugin",
    "css",
    "sass",
    "scss",
    "style",
    "compile",
    "preprocess",
    "compile",
    "libsass"
  ],
  "dependencies": {
    "chalk": "^0.4.0",
    "each-async": "^0.1.2",
    "node-sass": "^0.9.0",
    "object-assign": "^0.3.1"
  },
  "devDependencies": {
    "grunt": "^0.4.0",
    "grunt-contrib-clean": "^0.5.0",
    "grunt-contrib-nodeunit": "^0.4.0"
  },
  "peerDependencies": {
    "grunt": "^0.4.0"
  },
  "readme": "# grunt-sass [![Build Status](https://travis-ci.org/sindresorhus/grunt-sass.svg?branch=master)](https://travis-ci.org/sindresorhus/grunt-sass)\n\n[<img src=\"https://rawgit.com/andrew/node-sass/master/media/logo.svg\" width=\"200\" align=\"right\">](https://github.com/andrew/node-sass)\n\n> Compile Sass to CSS using [node-sass](https://github.com/andrew/node-sass)\n\n*Issues with the output should be reported on the libsass [issue tracker](https://github.com/hcatlin/libsass/issues).*\n\nThis task uses libsass which is an experimental Sass compiler in C++. In contrast to the original Ruby compiler, this one is much faster, but is missing some features, though improving quickly. Check out [grunt-contrib-sass](https://github.com/gruntjs/grunt-contrib-sass) if you prefer something more stable, but slower.\n\n\n## Install\n\n```sh\n$ npm install --save-dev grunt-sass\n```\n\n\n## Usage\n\n```js\ngrunt.initConfig({\n\tsass: {\t\t\t\t\t\t\t\t\t// task\n\t\tdist: {\t\t\t\t\t\t\t\t// target\n\t\t\tfiles: {\t\t\t\t\t\t// dictionary of files\n\t\t\t\t'main.css': 'main.scss'\t\t// 'destination': 'source'\n\t\t\t}\n\t\t},\n\t\tdev: {\t\t\t\t\t\t\t\t// another target\n\t\t\toptions: {\t\t\t\t\t\t// dictionary of render options\n\t\t\t\tsourceMap: true\n\t\t\t},\n\t\t\tfiles: {\n\t\t\t\t'main.css': 'main.scss'\n\t\t\t}\n\t\t}\n\t}\n});\n\ngrunt.loadNpmTasks('grunt-sass');\ngrunt.registerTask('default', ['sass']);\n```\n\n\n## API\n\nFiles starting with `_` are ignored to match the expected [Sass partial behaviour](http://sass-lang.com/documentation/file.SASS_REFERENCE.html#partials).\n\n### Options\n\n#### includePaths\n\nType: `array`  \nDefault: `[]`\n\nImport paths to include.\n\n#### outputStyle\n\nType: `string`  \nDefault: `nested`  \nValues: `'nested'`, `'compressed'`\n\nSpecify the CSS output style.\n\n#### imagePath\n\nType: `string`\n\nRepresents the public image path. When using the `image-url()` function in a stylesheet, this path will be prepended to the path you supply. Example: Given an `imagePath` of `/path/to/images`, `background-image: image-url('image.png')` will compile to `background-image: url(\"/path/to/images/image.png\")`.\n\n#### sourceMap\n\nType: `boolean`, `string`  \nDefault: `false`\n\nSet it to `true` to output a Source Map to the same location as the CSS *(output.css.map)*, or specify a path relative to the CSS file to where you want the Source Map.\n\n\n#### precision\n\nType: `number`  \nDefault: `10`\n\nNumber of digits to preserve after the dot. With the number 1.23456789 and a precision of 3, the result will be 1.234 in the final CSS.\n\n\n## License\n\nMIT © [Sindre Sorhus](http://sindresorhus.com)\n",
  "readmeFilename": "readme.md",
  "bugs": {
    "url": "https://github.com/sindresorhus/grunt-sass/issues"
  },
  "homepage": "https://github.com/sindresorhus/grunt-sass",
  "_id": "grunt-sass@0.14.0",
  "_shasum": "9d7f74c75af9a1db14da28e0b417a295084aec75",
  "_from": "grunt-sass@",
  "_resolved": "https://registry.npmjs.org/grunt-sass/-/grunt-sass-0.14.0.tgz"
}
