{
  "name": "node-bourbon",
  "version": "1.2.3",
  "description": "node-sass port of thoughtbot's Bourbon library",
  "main": "index.js",
  "scripts": {
    "test": "mocha --reporter spec --recursive --growl"
  },
  "repository": {
    "type": "git",
    "url": "git://github.com/lacroixdesign/node-bourbon.git"
  },
  "keywords": [
    "sass",
    "css"
  ],
  "author": {
    "name": "Michael LaCroix",
    "email": "michael@lacroixdesign.net",
    "url": "http://www.lacroixdesign.net"
  },
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/lacroixdesign/node-bourbon/issues"
  },
  "devDependencies": {
    "chai": "~1.8.1",
    "mocha": "~1.14.0",
    "node-sass": "~0.8.6"
  },
  "readme": "[![Bourbon Sass Mixin Library](http://bourbon.io/images/shared/bourbon-logo.png)](http://bourbon.io)\n\n*This is a node-sass port of the [Bourbon](http://bourbon.io) library. If you\nare looking for the original Ruby/Rails version, you can find it\n[here](https://github.com/thoughtbot/bourbon).*\n\n[![Build Status](https://travis-ci.org/lacroixdesign/node-bourbon.png?branch=master)](https://travis-ci.org/lacroixdesign/node-bourbon)\n\n# Contents\n\n- [Requirements](#requirements)\n- [Installation](#installation)\n- [Usage](#usage)\n  - [Basic Usage](#basic-usage)\n  - [gulp.js](#gulpjs-usage)\n  - [Grunt](#grunt-usage)\n  - [node-sass](#node-sass-usage)\n- [Getting Help](#getting-help)\n- [Testing](#testing)\n- [Credits](#credits)\n- [License](#license)\n\n# Requirements\n- [node](http://nodejs.org)\n- [gulp.js](http://gulpjs.com) -or- [Grunt](http://gruntjs.com) -or- [node-sass](https://github.com/andrew/node-sass)\n\n# Installation\n\nTo install as a development dependency, run:\n\n```bash\nnpm install --save-dev node-bourbon\n```\n\nIf you need it in production, replace `--save-dev` with `--save`.\n\n# Usage\n\n## Basic Usage\n\nTo use `node-bourbon` with tools like [gulp.js](#gulpjs-usage), [Grunt](#grunt-usage), or directly with [node-sass](#node-sass-usage), provide the path to Bourbon in your Sass config. There are a couple of convenience methods for this, depending on whether you want Sass to include additional directories or not.\n\n### with() Function\n\nThe `with()` function will include any additional paths you pass as arguments.\n\nReturns an array of paths.\n\n```javascript\nvar bourbon = require('node-bourbon');\n// Any of these will return an array of Bourbon paths plus your custom path(s)\nbourbon.with('path/to/stylesheets')\nbourbon.with('path/to/stylesheets1', 'path/to/stylesheets2')\nbourbon.with(['path/to/stylesheets1', 'path/to/stylesheets2'])\n```\n\n### includePaths Property\n\nThe `includePaths` property returns an array of Bourbon's paths to use in your config.\n\n```javascript\nvar bourbon = require('node-bourbon');\nbourbon.includePaths // Array of Bourbon paths\n```\n\n### Stylesheet usage\n\nUse either method above with the Sass config for your chosen tool (gulp.js, Grunt, etc.), then it's business as usual for Bourbon in your stylesheet:\n\n```scss\n@import \"bourbon\";\n```\n\n## gulp.js Usage\n\nUsing the [gulp-sass](https://github.com/dlmanning/gulp-sass) plugin.\n\n```javascript\nvar gulp = require('gulp');\nvar sass = require('gulp-sass');\n\ngulp.task('sass', function () {\n  gulp.src('path/to/input.scss')\n    .pipe(sass({\n      // includePaths: require('node-bourbon').with('other/path', 'another/path')\n      // - or -\n      includePaths: require('node-bourbon').includePaths\n    }))\n    .pipe(gulp.dest('path/to/output.css'));\n});\n```\n\n## Grunt Usage\n\n### Using *grunt-sass*\n\nThe [grunt-sass](https://github.com/sindresorhus/grunt-sass) task uses\n[node-sass](https://github.com/andrew/node-sass)\n([LibSass](https://github.com/hcatlin/libsass)) underneath, and is the recommended\nway to use Grunt with node-bourbon.\n\nExample config:\n\n```javascript\ngrunt.initConfig({\n  sass: {\n    dist: {\n      options: {\n        // includePaths: require('node-bourbon').with('other/path', 'another/path')\n        // - or -\n        includePaths: require('node-bourbon').includePaths\n      },\n      files: {\n        'path/to/output.css': 'path/to/input.scss'\n      }\n    }\n  }\n});\n```\n\n### Using *grunt-contrib-sass*\n\nIf you are using the Ruby version of Sass with node-bourbon, then you will need to use\nthe [grunt-contrib-sass](https://github.com/gruntjs/grunt-contrib-sass) task instead.\n\n*Note that node-bourbon is __NOT__ tested against the __Ruby__ version – only against __LibSass__.*\n\nExample config:\n\n```javascript\ngrunt.initConfig({\n  sass: {\n    dist: {\n      options: {\n        // loadPath: require('node-bourbon').with('other/path', 'another/path')\n        // - or -\n        loadPath: require('node-bourbon').includePaths\n      },\n      files: {\n        'path/to/output.css': 'path/to/input.scss'\n      }\n    }\n  }\n});\n```\n\n## node-sass Usage\n\nUsing it directly with [node-sass](https://github.com/andrew/node-sass).\n\n```javascript\nvar sass    = require('node-sass')\nvar bourbon = require('node-bourbon');\n\nsass.render({\n  file: './application.scss',\n  success: function(css){\n    console.log(css);\n  },\n  error: function(error) {\n    console.log(error);\n  },\n  // includePaths: bourbon.with('other/path', 'another/path'),\n  // - or -\n  includePaths: bourbon.includePaths,\n  outputStyle: 'compressed'\n});\n```\n\n# Getting Help\n\nFeel free to tweet me with questions [@iamlacroix](https://twitter.com/iamlacroix), or [open a ticket](https://github.com/lacroixdesign/node-bourbon/issues) on GitHub.\n\n# Testing\n\n`node-bourbon` is tested against the examples provided in the \n[Bourbon documentation](http://bourbon.io/docs). The tests check for compile \nerrors, so if a feature compiles but the expected output is incorrect, be sure \nto [open a ticket](https://github.com/lacroixdesign/node-bourbon/issues).\n\nRun the tests with:\n\n```\nmake test\n```\n\n# Credits\n\nThis node-sass port is maintained by Michael LaCroix, however all credits for\nthe Bourbon library go to [thoughtbot, inc](http://thoughtbot.com/community):\n\n> ![thoughtbot](http://thoughtbot.com/images/tm/logo.png)\n>\n> Bourbon is maintained and funded by [thoughtbot, inc](http://thoughtbot.com/community)\n>\n> The names and logos for thoughtbot are trademarks of thoughtbot, inc.\n>\n> Got questions? Need help? Tweet at [@phillapier](http://twitter.com/phillapier).\n\n# License\n\nnode-bourbon is Copyright © 2013-2014 Michael LaCroix. It is free software, and may be redistributed under the terms specified in the LICENSE file.\n",
  "readmeFilename": "README.md",
  "homepage": "https://github.com/lacroixdesign/node-bourbon",
  "_id": "node-bourbon@1.2.3",
  "_from": "node-bourbon@^1.2.3"
}
