{"maintainers":[{"name":"am11","email":"adeelbm@outlook.com"},{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"keywords":["css","libsass","preprocessor","sass","scss","style"],"dist-tags":{"latest":"4.5.3","next":"4.4.0","beta":"4.4.0"},"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"description":"Wrapper around libsass","readme":"# node-sass\n\n#### Supported Node.js versions 0.10, 0.12, 1, 2, 3, 4, 5, 6 and 7.\n\n<table>\n  <tr>\n    <td>\n      <img width=\"77px\" alt=\"Sass logo\" src=\"https://rawgit.com/sass/node-sass/master/media/logo.svg\" />\n    </td>\n    <td valign=\"bottom\" align=\"right\">\n      <a href=\"https://www.npmjs.com/package/node-sass\">\n        <img width=\"100%\" src=\"https://nodei.co/npm/node-sass.png?downloads=true&downloadRank=true&stars=true\">\n      </a>\n    </td>\n  </tr>\n</table>\n\n[![Build Status](https://travis-ci.org/sass/node-sass.svg?branch=master&style=flat)](https://travis-ci.org/sass/node-sass)\n[![Build status](https://ci.appveyor.com/api/projects/status/22mjbk59kvd55m9y/branch/master)](https://ci.appveyor.com/project/sass/node-sass/branch/master)\n[![npm version](https://badge.fury.io/js/node-sass.svg)](http://badge.fury.io/js/node-sass)\n[![Dependency Status](https://david-dm.org/sass/node-sass.svg?theme=shields.io)](https://david-dm.org/sass/node-sass)\n[![devDependency Status](https://david-dm.org/sass/node-sass/dev-status.svg?theme=shields.io)](https://david-dm.org/sass/node-sass#info=devDependencies)\n[![Coverage Status](https://coveralls.io/repos/sass/node-sass/badge.svg?branch=master)](https://coveralls.io/r/sass/node-sass?branch=master)\n[![Inline docs](http://inch-ci.org/github/sass/node-sass.svg?branch=master)](http://inch-ci.org/github/sass/node-sass)\n[![Join us in Slakc](https://libsass-slack.herokuapp.com/badge.svg)](https://libsass-slack.herokuapp.com/)\n\nNode-sass is a library that provides binding for Node.js to [LibSass], the C version of the popular stylesheet preprocessor, Sass.\n\nIt allows you to natively compile .scss files to css at incredible speed and automatically via a connect middleware.\n\nFind it on npm: <https://www.npmjs.com/package/node-sass>\n\nFollow @nodesass on twitter for release updates: https://twitter.com/nodesass\n\n## Install\n\n```\nnpm install node-sass\n```\n\nSome users have reported issues installing on Ubuntu due to `node` being registered to another package. [Follow the official NodeJS docs](https://github.com/nodejs/node-v0.x-archive/wiki/Installing-Node.js-via-package-manager) to install NodeJS so that `#!/usr/bin/env node` correctly resolved.\n\nCompiling versions 0.9.4 and above on Windows machines requires [Visual Studio 2013 WD](https://www.microsoft.com/en-us/download/details.aspx?id=44914). If you have multiple VS versions, use ```npm install``` with the ```--msvs_version=2013``` flag also use this flag when rebuilding the module with node-gyp or nw-gyp.\n\n**Having installation troubles? Check out our [Troubleshooting guide](/TROUBLESHOOTING.md).**\n\n## Usage\n\n```javascript\nvar sass = require('node-sass');\nsass.render({\n  file: scss_filename,\n  [, options..]\n}, function(err, result) { /*...*/ });\n// OR\nvar result = sass.renderSync({\n  data: scss_content\n  [, options..]\n});\n```\n\n## Options\n### file\nType: `String`\nDefault: `null`\n**Special**: `file` or `data` must be specified\n\nPath to a file for [LibSass] to render.\n\n### data\nType: `String`\nDefault: `null`\n**Special**: `file` or `data` must be specified\n\nA string to pass to [LibSass] to render. It is recommended that you use `includePaths` in conjunction with this so that [LibSass] can find files when using the `@import` directive.\n\n### importer (>= v2.0.0) - _experimental_\n\n**This is an experimental LibSass feature. Use with caution.**\n\nType: `Function | Function[]` signature `function(url, prev, done)`\nDefault: `undefined`\n\nFunction Parameters and Information:\n* `url (String)` - the path in import **as-is**, which [LibSass] encountered\n* `prev (String)` - the previously resolved path\n* `done (Function)` - a callback function to invoke on async completion, takes an object literal containing\n  * `file (String)` - an alternate path for [LibSass] to use **OR**\n  * `contents (String)` - the imported contents (for example, read from memory or the file system)\n\nHandles when [LibSass] encounters the `@import` directive. A custom importer allows extension of the [LibSass] engine in both a synchronous and asynchronous manner. In both cases, the goal is to either `return` or call `done()` with an object literal. Depending on the value of the object literal, one of two things will happen.\n\nWhen returning or calling `done()` with `{ file: \"String\" }`, the new file path will be assumed for the `@import`. It's recommended to be mindful of the value of `prev` in instances where relative path resolution may be required.\n\nWhen returning or calling `done()` with `{ contents: \"String\" }`, the string value will be used as if the file was read in through an external source.\n\nStarting from v3.0.0:\n\n* `this` refers to a contextual scope for the immediate run of `sass.render` or `sass.renderSync`\n\n* importers can return error and LibSass will emit that error in response. For instance:\n\n  ```javascript\n  done(new Error('doesn\\'t exist!'));\n  // or return synchornously\n  return new Error('nothing to do here');\n  ```\n\n* importer can be an array of functions, which will be called by LibSass in the order of their occurrence in array. This helps user specify special importer for particular kind of path (filesystem, http). If an importer does not want to handle a particular path, it should return `null`. See [functions section](#functions--v300) for more details on Sass types.\n\n### functions (>= v3.0.0) - _experimental_\n\n**This is an experimental LibSass feature. Use with caution.**\n\n`functions` is an `Object` that holds a collection of custom functions that may be invoked by the sass files being compiled. They may take zero or more input parameters and must return a value either synchronously (`return ...;`) or asynchronously (`done();`). Those parameters will be instances of one of the constructors contained in the `require('node-sass').types` hash. The return value must be of one of these types as well. See the list of available types below:\n\n#### types.Number(value [, unit = \"\"])\n* `getValue()`/ `setValue(value)` : gets / sets the numerical portion of the number\n* `getUnit()` / `setUnit(unit)` : gets / sets the unit portion of the number\n\n#### types.String(value)\n* `getValue()` / `setValue(value)` : gets / sets the enclosed string\n\n#### types.Color(r, g, b [, a = 1.0]) or types.Color(argb)\n* `getR()` / `setR(value)` : red component (integer from `0` to `255`)\n* `getG()` / `setG(value)` : green component (integer from `0` to `255`)\n* `getB()` / `setB(value)` : blue component (integer from `0` to `255`)\n* `getA()` / `setA(value)` : alpha component (number from `0` to `1.0`)\n\nExample:\n\n```javascript\nvar Color = require('node-sass').types.Color,\n  c1 = new Color(255, 0, 0),\n  c2 = new Color(0xff0088cc);\n```\n\n#### types.Boolean(value)\n* `getValue()` : gets the enclosed boolean\n* `types.Boolean.TRUE` : Singleton instance of `types.Boolean` that holds \"true\"\n* `types.Boolean.FALSE` : Singleton instance of `types.Boolean` that holds \"false\"\n\n#### types.List(length [, commaSeparator = true])\n* `getValue(index)` / `setValue(index, value)` : `value` must itself be an instance of one of the constructors in `sass.types`.\n* `getSeparator()` / `setSeparator(isComma)` : whether to use commas as a separator\n* `getLength()`\n\n#### types.Map(length)\n* `getKey(index)` / `setKey(index, value)`\n* `getValue(index)` / `setValue(index, value)`\n* `getLength()`\n\n#### types.Null()\n* `types.Null.NULL` : Singleton instance of `types.Null`.\n\n#### Example\n\n```javascript\nsass.renderSync({\n  data: '#{headings(2,5)} { color: #08c; }',\n  functions: {\n    'headings($from: 0, $to: 6)': function(from, to) {\n      var i, f = from.getValue(), t = to.getValue(),\n          list = new sass.types.List(t - f + 1);\n\n      for (i = f; i <= t; i++) {\n        list.setValue(i - f, new sass.types.String('h' + i));\n      }\n\n      return list;\n    }\n  }\n});\n```\n\n### includePaths\nType: `Array<String>`\nDefault: `[]`\n\nAn array of paths that [LibSass] can look in to attempt to resolve your `@import` declarations. When using `data`, it is recommended that you use this.\n\n### indentedSyntax\nType: `Boolean`\nDefault: `false`\n\n`true` values enable [Sass Indented Syntax](http://sass-lang.com/documentation/file.INDENTED_SYNTAX.html) for parsing the data string or file.\n\n__Note:__ node-sass/libsass will compile a mixed library of scss and indented syntax (.sass) files with the Default setting (false) as long as .sass and .scss extensions are used in filenames.\n\n### indentType (>= v3.0.0)\nType: `String`\nDefault: `space`\n\nUsed to determine whether to use space or tab character for indentation.\n\n### indentWidth (>= v3.0.0)\nType: `Number`\nDefault: `2`\nMaximum: `10`\n\nUsed to determine the number of spaces or tabs to be used for indentation.\n\n### linefeed (>= v3.0.0)\nType: `String`\nDefault: `lf`\n\nUsed to determine whether to use `cr`, `crlf`, `lf` or `lfcr` sequence for line break.\n\n### omitSourceMapUrl\nType: `Boolean`\nDefault: `false`\n**Special:** When using this, you should also specify `outFile` to avoid unexpected behavior.\n\n`true` values disable the inclusion of source map information in the output file.\n\n### outFile\nType: `String | null`\nDefault: `null`\n**Special:** Required when `sourceMap` is a truthy value\n\nSpecify the intended location of the output file. Strongly recommended when outputting source maps so that they can properly refer back to their intended files.\n\n**Attention** enabling this option will **not** write the file on disk for you, it's for internal reference purpose only (to generate the map for example).\n\nExample on how to write it on the disk\n```javascript\nsass.render({\n    ...\n    outFile: yourPathTotheFile,\n  }, function(error, result) { // node-style callback from v3.0.0 onwards\n    if(!error){\n      // No errors during the compilation, write this result on the disk\n      fs.writeFile(yourPathTotheFile, result.css, function(err){\n        if(!err){\n          //file written on disk\n        }\n      });\n    }\n  });\n});\n```\n\n### outputStyle\nType: `String`\nDefault: `nested`\nValues: `nested`, `expanded`, `compact`, `compressed`\n\nDetermines the output format of the final CSS style.\n\n### precision\nType: `Integer`\nDefault: `5`\n\nUsed to determine how many digits after the decimal will be allowed. For instance, if you had a decimal number of `1.23456789` and a precision of `5`, the result will be `1.23457` in the final CSS.\n\n### sourceComments\nType: `Boolean`\nDefault: `false`\n\n`true` Enables the line number and file where a selector is defined to be emitted into the compiled CSS as a comment. Useful for debugging, especially when using imports and mixins.\n\n### sourceMap\nType: `Boolean | String | undefined`\nDefault: `undefined`\n**Special:** Setting the `sourceMap` option requires also setting the `outFile` option\n\nEnables the outputting of a source map during `render` and `renderSync`. When `sourceMap === true`, the value of `outFile` is used as the target output location for the source map. When `typeof sourceMap === \"string\"`, the value of `sourceMap` will be used as the writing location for the file.\n\n### sourceMapContents\nType: `Boolean`\nDefault: `false`\n\n`true` includes the `contents` in the source map information\n\n### sourceMapEmbed\nType: `Boolean`\nDefault: `false`\n\n`true` embeds the source map as a data URI\n\n### sourceMapRoot\nType: `String`\nDefault: `undefined`\n\nthe value will be emitted as `sourceRoot` in the source map information\n\n## `render` Callback (>= v3.0.0)\nnode-sass supports standard node style asynchronous callbacks with the signature of `function(err, result)`. In error conditions, the `error` argument is populated with the error object. In success conditions, the `result` object is populated with an object describing the result of the render call.\n\n### Error Object\n* `message` (String) - The error message.\n* `line` (Number) - The line number of error.\n* `column` (Number) - The column number of error.\n* `status` (Number) - The status code.\n* `file` (String) - The filename of error. In case `file` option was not set (in favour of `data`), this will reflect the value `stdin`.\n\n### Result Object\n* `css` (Buffer) - The compiled CSS. Write this to a file, or serve it out as needed.\n* `map` (Buffer) - The source map\n* `stats` (Object) - An object containing information about the compile. It contains the following keys:\n  * `entry` (String) - The path to the scss file, or `data` if the source was not a file\n  * `start` (Number) - Date.now() before the compilation\n  * `end` (Number) - Date.now() after the compilation\n  * `duration` (Number) - *end* - *start*\n  * `includedFiles` (Array) - Absolute paths to all related scss files in no particular order.\n\n### Examples\n\n```javascript\nvar sass = require('node-sass');\nsass.render({\n  file: '/path/to/myFile.scss',\n  data: 'body{background:blue; a{color:black;}}',\n  importer: function(url, prev, done) {\n    // url is the path in import as is, which LibSass encountered.\n    // prev is the previously resolved path.\n    // done is an optional callback, either consume it or return value synchronously.\n    // this.options contains this options hash, this.callback contains the node-style callback\n    someAsyncFunction(url, prev, function(result){\n      done({\n        file: result.path, // only one of them is required, see section Special Behaviours.\n        contents: result.data\n      });\n    });\n    // OR\n    var result = someSyncFunction(url, prev);\n    return {file: result.path, contents: result.data};\n  },\n  includePaths: [ 'lib/', 'mod/' ],\n  outputStyle: 'compressed'\n}, function(error, result) { // node-style callback from v3.0.0 onwards\n  if (error) {\n    console.log(error.status); // used to be \"code\" in v2x and below\n    console.log(error.column);\n    console.log(error.message);\n    console.log(error.line);\n  }\n  else {\n    console.log(result.css.toString());\n\n    console.log(result.stats);\n\n    console.log(result.map.toString());\n    // or better\n    console.log(JSON.stringify(result.map)); // note, JSON.stringify accepts Buffer too\n  }\n});\n// OR\nvar result = sass.renderSync({\n  file: '/path/to/file.scss',\n  data: 'body{background:blue; a{color:black;}}',\n  outputStyle: 'compressed',\n  outFile: '/to/my/output.css',\n  sourceMap: true, // or an absolute or relative (to outFile) path\n  importer: function(url, prev, done) {\n    // url is the path in import as is, which LibSass encountered.\n    // prev is the previously resolved path.\n    // done is an optional callback, either consume it or return value synchronously.\n    // this.options contains this options hash\n    someAsyncFunction(url, prev, function(result){\n      done({\n        file: result.path, // only one of them is required, see section Sepcial Behaviours.\n        contents: result.data\n      });\n    });\n    // OR\n    var result = someSyncFunction(url, prev);\n    return {file: result.path, contents: result.data};\n  }\n}));\n\nconsole.log(result.css);\nconsole.log(result.map);\nconsole.log(result.stats);\n```\n\n### Special behaviours\n\n* In the case that both `file` and `data` options are set, node-sass will give precedence to `data` and use `file` to calculate paths in sourcemaps.\n\n### Version information (>= v2.0.0)\n\nBoth `node-sass` and `libsass` version info is now exposed via the `info` method:\n\n```javascript\nvar sass = require('node-sass');\n\nconsole.log(sass.info);\n\n/*\n  it will output something like:\n\n  node-sass       2.0.1   (Wrapper)       [JavaScript]\n  libsass         3.1.0   (Sass Compiler) [C/C++]\n*/\n```\n\nSince node-sass >=v3.0.0 LibSass version is determined at run time.\n\n## Integrations\n\nListing of community uses of node-sass in build tools and frameworks.\n\n### Brackets extension\n\n[@jasonsanjose](https://github.com/jasonsanjose) has created a [Brackets](http://brackets.io) extension based on node-sass: <https://github.com/jasonsanjose/brackets-sass>. When editing Sass files, the extension compiles changes on save. The extension also integrates with Live Preview to show Sass changes in the browser without saving or compiling.\n\n### Brunch plugin\n\n[Brunch](http://brunch.io)'s official sass plugin uses node-sass by default, and automatically falls back to ruby if use of Compass is detected: <https://github.com/brunch/sass-brunch>\n\n### Connect/Express middleware\n\nRecompile `.scss` files automatically for connect and express based http servers.\n\nThis functionality has been moved to [`node-sass-middleware`](https://github.com/sass/node-sass-middleware) in node-sass v1.0.0\n\n### DocPad Plugin\n\n[@jking90](https://github.com/jking90) wrote a [DocPad](http://docpad.org/) plugin that compiles `.scss` files using node-sass: <https://github.com/jking90/docpad-plugin-nodesass>\n\n### Duo.js extension\n\n[@stephenway](https://github.com/stephenway) has created an extension that transpiles Sass to CSS using node-sass with [duo.js](http://duojs.org/)\n<https://github.com/duojs/sass>\n\n### Grunt extension\n\n[@sindresorhus](https://github.com/sindresorhus/) has created a set of grunt tasks based on node-sass: <https://github.com/sindresorhus/grunt-sass>\n\n### Gulp extension\n\n[@dlmanning](https://github.com/dlmanning/) has created a gulp sass plugin based on node-sass: <https://github.com/dlmanning/gulp-sass>\n\n### Harp\n\n[@sintaxi](https://github.com/sintaxi)’s Harp web server implicitly compiles `.scss` files using node-sass: <https://github.com/sintaxi/harp>\n\n### Metalsmith plugin\n\n[@stevenschobert](https://github.com/stevenschobert/) has created a metalsmith plugin based on node-sass: <https://github.com/stevenschobert/metalsmith-sass>\n\n### Meteor plugin\n\n[@fourseven](https://github.com/fourseven) has created a meteor plugin based on node-sass: <https://github.com/fourseven/meteor-scss>\n\n### Mimosa module\n\n[@dbashford](https://github.com/dbashford) has created a Mimosa module for sass which includes node-sass: <https://github.com/dbashford/mimosa-sass>\n\n## Example App\n\nThere is also an example connect app here: <https://github.com/andrew/node-sass-example>\n\n## Rebuilding binaries\n\nNode-sass includes pre-compiled binaries for popular platforms, to add a binary for your platform follow these steps:\n\nCheck out the project:\n\n```bash\ngit clone --recursive https://github.com/sass/node-sass.git\ncd node-sass\nnpm install\nnode scripts/build -f  # use -d switch for debug release\n# if succeeded, it will generate and move\n# the binary in vendor directory.\n```\n\n## Command Line Interface\n\nThe interface for command-line usage is fairly simplistic at this stage, as seen in the following usage section.\n\nOutput will be sent to stdout if the `--output` flag is omitted.\n\n### Usage\n `node-sass [options] <input> [output]`\n Or:\n `cat <input> | node-sass > output`\n\nExample:\n\n`node-sass src/style.scss dest/style.css`\n\n **Options:**\n\n```bash\n    -w, --watch                Watch a directory or file\n    -r, --recursive            Recursively watch directories or files\n    -o, --output               Output directory\n    -x, --omit-source-map-url  Omit source map URL comment from output\n    -i, --indented-syntax      Treat data from stdin as sass code (versus scss)\n    -q, --quiet                Suppress log output except on error\n    -v, --version              Prints version info\n    --output-style             CSS output style (nested | expanded | compact | compressed)\n    --indent-type              Indent type for output CSS (space | tab)\n    --indent-width             Indent width; number of spaces or tabs (maximum value: 10)\n    --linefeed                 Linefeed style (cr | crlf | lf | lfcr)\n    --source-comments          Include debug info in output\n    --source-map               Emit source map\n    --source-map-contents      Embed include contents in map\n    --source-map-embed         Embed sourceMappingUrl as data URI\n    --source-map-root          Base path, will be emitted in source-map as is\n    --include-path             Path to look for imported files\n    --follow                   Follow symlinked directories\n    --precision                The amount of precision allowed in decimal numbers\n    --error-bell               Output a bell character on errors\n    --importer                 Path to .js file containing custom importer\n    --functions                Path to .js file containing custom functions\n    --help                     Print usage info\n```\n\nThe `input` can be either a single `.scss` or `.sass`, or a directory. If the input is a directory the `--output` flag must also be supplied.\n\nAlso, note `--importer` takes the (absolute or relative to pwd) path to a js file, which needs to have a default `module.exports` set to the importer function. See our test [fixtures](https://github.com/sass/node-sass/tree/974f93e76ddd08ea850e3e663cfe64bb6a059dd3/test/fixtures/extras) for example.\n\nThe `--source-map` option accepts a boolean value, in which case it replaces destination extension with `.css.map`. It also accepts path to `.map` file and even path to the desired directory.\nWhen compiling a directory `--source-map` can either be a boolean value or a directory.\n\n## Binary configuration parameters\n\nnode-sass supports different configuration parameters to change settings related to the sass binary such as binary name, binary path or alternative download path. Following parameters are supported by node-sass:\n\nVariable name    | .npmrc parameter | Process argument   | Value\n-----------------|------------------|--------------------|------\nSASS_BINARY_NAME | sass_binary_name | --sass-binary-name | path\nSASS_BINARY_SITE | sass_binary_site | --sass-binary-site | URL\nSASS_BINARY_PATH | sass_binary_path | --sass-binary-path | path\n\nThese parameters can be used as environment variable:\n\n* E.g. `export SASS_BINARY_SITE=http://example.com/`\n\nAs local or global [.npmrc](https://docs.npmjs.com/misc/config) configuration file:\n\n* E.g. `sass_binary_site=http://example.com/`\n\nAs a process argument:\n\n* E.g. `npm install node-sass --sass-binary-site=http://example.com/`\n\n## Post-install Build\n\nInstall runs only two Mocha tests to see if your machine can use the pre-built [LibSass] which will save some time during install. If any tests fail it will build from source.\n\n## Maintainers\n\nThis module is brought to you and maintained by the following people:\n\n* Michael Mifsud - Project Lead ([Github](https://github.com/xzyfer) / [Twitter](https://twitter.com/xzyfer))\n* Andrew Nesbitt ([Github](https://github.com/andrew) / [Twitter](https://twitter.com/teabass))\n* Dean Mao ([Github](https://github.com/deanmao) / [Twitter](https://twitter.com/deanmao))\n* Brett Wilkins ([Github](https://github.com/bwilkins) / [Twitter](https://twitter.com/bjmaz))\n* Keith Cirkel ([Github](https://github.com/keithamus) / [Twitter](https://twitter.com/Keithamus))\n* Laurent Goderre ([Github](https://github.com/laurentgoderre) / [Twitter](https://twitter.com/laurentgoderre))\n* Nick Schonning ([Github](https://github.com/nschonni) / [Twitter](https://twitter.com/nschonni))\n* Adam Yeats ([Github](https://github.com/adamyeats) / [Twitter](https://twitter.com/adamyeats))\n* Adeel Mujahid ([Github](https://github.com/am11) / [Twitter](https://twitter.com/adeelbm))\n\n## Contributors\n\nWe <3 our contributors! A special thanks to all those who have clocked in some dev time on this project, we really appreciate your hard work. You can find [a full list of those people here.](https://github.com/sass/node-sass/graphs/contributors)\n\n### Note on Patches/Pull Requests\n\n * Fork the project.\n * Make your feature addition or bug fix.\n * Add documentation if necessary.\n * Add tests for it. This is important so I don't break it in a future version unintentionally.\n * Send a pull request. Bonus points for topic branches.\n\n## Copyright\n\nCopyright (c) 2015 Andrew Nesbitt. See [LICENSE](https://github.com/sass/node-sass/blob/master/LICENSE) for details.\n\n[LibSass]: https://github.com/sass/libsass\n","repository":{"type":"git","url":"git+https://github.com/sass/node-sass.git"},"users":{"jimmyking":true,"awaterma":true,"nschonni":true,"sebnitu":true,"andrewnez":true,"developit":true,"paazmaya":true,"octoo":true,"jdhartley":true,"shoobah":true,"jeffboyus":true,"travm":true,"robbschiller":true,"agtlucas":true,"xavierharrell":true,"febley":true,"ppo":true,"itonyyo":true,"manny":true,"andamira":true,"yanndinendal":true,"adambyrne":true,"drewigg":true,"langri-sha":true,"joaocunha":true,"asawq2006":true,"nano":true,"subchen":true,"hoitmort":true,"orlenka":true,"mjwilliams":true,"raiseandfall":true,"d4nyll":true,"hongbora":true,"cabrinha98":true,"runningtalus":true,"hideki_a":true,"flftfqwxf":true,"meabed":true,"elidiazgt":true,"levani":true,"decoded":true,"nicastelo":true,"insdevmail":true,"jimster305":true,"ugarz":true,"t1st3":true,"cypark":true,"davidnyhuis":true,"hal9zillion":true,"leopic":true,"kontrax":true,"kurre":true,"jalcine":true,"edloidas":true,"rubiadias":true,"alvint":true,"flynntsc":true,"afelicioni":true,"realtimecat":true,"jyounce":true,"lmhs":true,"abdihaikal":true,"csbun":true,"pandao":true,"sotosamper":true,"clholzin":true,"n370":true,"jruif":true,"crowbar":true,"skullmasher":true,"jaminroe":true,"ericwbailey":true,"vwal":true,"noobapp":true,"antixrist":true,"takethefire":true,"wkaifang":true,"redstrike":true,"schwartzman":true,"doptrois":true,"hex20dec":true,"cfleschhut":true,"demod":true,"stryczek":true,"cestrensem":true,"anarcociclista":true,"thomas.miele":true,"wiewioraz":true,"bvmiko":true,"grantcarthew":true,"pql0":true,"dralc":true,"joannerpena":true,"monjer":true,"xiaowtz":true,"abdul":true,"crankincrankin":true,"starknode":true,"tekket":true,"daam":true,"adc39":true,"dhampik":true,"plyr":true,"landy2014":true,"stretchgz":true,"nexdrew":true,"princetoad":true,"slavqa":true,"markthethomas":true,"alimd":true,"cedx":true,"dmsanchez86":true,"krawster":true,"elussich":true,"aquafadas":true,"muroc":true,"ackerapple":true,"oystein.amundsen":true,"sszhu":true,"djviolin":true,"iandstanley":true,"giuseppe.morelli":true,"pillar0514":true,"shiva127":true,"dcavalcante":true,"weerd":true,"lmanukyan":true,"sternelee":true,"sushiilbharti":true,"ttionya":true,"danielbankhead":true,"largepuma":true,"mobeicaoyuan":true,"jaychase":true,"yanrivera":true,"mhaidarh":true,"mahmoodramzani":true,"mr-smiley":true,"griname":true,"amandavianna":true,"pixel67":true,"kaapex":true,"lizhiqiang":true,"fibo":true,"klimnikita":true,"bapinney":true,"sajera":true,"panos277":true,"yeoyou":true,"youzaiyouzai666":true,"fedeghe":true,"cornelism":true,"danielbayley":true,"timwzou":true,"miroklarin":true,"zalemmmm":true,"yujiikebata":true,"igorsetsfire":true,"bluelovers":true,"xch":true,"awesomename":true,"mskjp":true,"evdokimovm":true,"juandaco":true,"bebeskin":true,"raojs":true,"bcawrse":true,"mads-thines":true,"luisgamero":true,"mrmasly":true,"chinawolf_wyp":true,"jaxcode":true,"artem.tkachuck":true,"craigiswayne":true,"pablopap":true,"ungurys":true,"serge-nikitin":true,"dylanh724":true,"pddivine":true,"santhoshbabu":true,"mjkatweb":true,"alexis-nava":true,"azertypow":true,"dollarshaveclub-engineering":true,"nickolas_sv":true,"jamesbedont":true,"4rontender":true},"bugs":{"url":"https://github.com/sass/node-sass/issues"},"license":"MIT","versions":{"0.2.0":{"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"name":"node-sass","description":"wrapper around libsass","version":"0.2.0","homepage":"http://github.com/andrew/node-sass","main":"./sass.js","repository":{"type":"git","url":"git://github.com/andrew/node-sass.git"},"engines":{"node":">=0.6.18"},"dependencies":{"mkdirp":"0.3.x"},"devDependencies":{},"optionalDependencies":{},"_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"_id":"node-sass@0.2.0","scripts":{"install":"node-gyp rebuild"},"_engineSupported":false,"_npmVersion":"1.1.16","_nodeVersion":"v0.6.15","_defaultsLoaded":true,"dist":{"shasum":"5d45a2b9586d78439e4bf97f0d69f988f004c947","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-0.2.0.tgz"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"}],"directories":{}},"0.2.1":{"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"name":"node-sass","description":"wrapper around libsass","version":"0.2.1","homepage":"http://github.com/andrew/node-sass","main":"./sass.js","repository":{"type":"git","url":"git://github.com/andrew/node-sass.git"},"engines":{"node":">=0.6.18"},"dependencies":{"mkdirp":"0.3.x"},"devDependencies":{},"optionalDependencies":{},"_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"_id":"node-sass@0.2.1","scripts":{"install":"node-gyp rebuild"},"_engineSupported":true,"_npmVersion":"1.1.21","_nodeVersion":"v0.6.18","_defaultsLoaded":true,"dist":{"shasum":"4b37f9eb85721b11dde405ff52ce94ac3a14827f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-0.2.1.tgz"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"}],"directories":{}},"0.2.2":{"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"name":"node-sass","description":"wrapper around libsass","version":"0.2.2","homepage":"http://github.com/andrew/node-sass","main":"./sass.js","repository":{"type":"git","url":"git://github.com/andrew/node-sass.git"},"engines":{"node":">=0.6.18"},"dependencies":{"mkdirp":"0.3.x"},"devDependencies":{},"optionalDependencies":{},"_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"_id":"node-sass@0.2.2","_engineSupported":true,"_npmVersion":"1.1.21","_nodeVersion":"v0.6.18","_defaultsLoaded":true,"dist":{"shasum":"2fe99dc7b93221496c426aeb4a7abbb89365d802","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-0.2.2.tgz"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"}],"directories":{}},"0.2.3":{"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"name":"node-sass","description":"wrapper around libsass","version":"0.2.3","homepage":"http://github.com/andrew/node-sass","main":"./sass.js","repository":{"type":"git","url":"git://github.com/andrew/node-sass.git"},"engines":{"node":">=0.6.18"},"dependencies":{"mkdirp":"0.3.x"},"devDependencies":{},"optionalDependencies":{},"_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"_id":"node-sass@0.2.3","_engineSupported":true,"_npmVersion":"1.1.21","_nodeVersion":"v0.6.18","_defaultsLoaded":true,"dist":{"shasum":"1da343a2980a97ac9f728a8e028efb7796acd58d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-0.2.3.tgz"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"}],"directories":{}},"0.2.4":{"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"name":"node-sass","description":"wrapper around libsass","version":"0.2.4","homepage":"http://github.com/andrew/node-sass","main":"./sass.js","repository":{"type":"git","url":"git://github.com/andrew/node-sass.git"},"scripts":{"install":"node rebuild.js"},"gypfile":true,"engines":{"node":">=0.6.18"},"dependencies":{"mkdirp":"0.3.x"},"devDependencies":{},"optionalDependencies":{},"_id":"node-sass@0.2.4","dist":{"shasum":"7fc5bf5554868eb9d81b7b6d565c8549b73232f3","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-0.2.4.tgz"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"}],"directories":{}},"0.2.5":{"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"name":"node-sass","description":"wrapper around libsass","version":"0.2.5","homepage":"http://github.com/andrew/node-sass","main":"./sass.js","repository":{"type":"git","url":"git://github.com/andrew/node-sass.git"},"scripts":{"install":"node rebuild.js"},"gypfile":true,"engines":{"node":">=0.6.18"},"dependencies":{"mkdirp":"0.3.x"},"devDependencies":{},"optionalDependencies":{},"_id":"node-sass@0.2.5","dist":{"shasum":"98132aea0d9c99c893e32c24fcd5dbb1ba5fd715","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-0.2.5.tgz"},"_npmVersion":"1.1.62","_npmUser":{"name":"deanmao","email":"deanmao@gmail.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"}],"directories":{}},"0.2.6":{"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"name":"node-sass","description":"wrapper around libsass","version":"0.2.6","homepage":"http://github.com/andrew/node-sass","main":"./sass.js","repository":{"type":"git","url":"git://github.com/andrew/node-sass.git"},"scripts":{"install":"node rebuild.js","test":"mocha test"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"engines":{"node":">=0.6.18"},"dependencies":{"mkdirp":"0.3.x","colors":"0.6.0-1"},"devDependencies":{"mocha":"1.7.x"},"optionalDependencies":{},"_id":"node-sass@0.2.6","dist":{"shasum":"f53068c391b57149fbf113d6e074de71e73273b4","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-0.2.6.tgz"},"_npmVersion":"1.1.65","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"}],"directories":{}},"0.3.0":{"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"name":"node-sass","description":"wrapper around libsass","version":"0.3.0","homepage":"https://github.com/andrew/node-sass","keywords":["sass","css","libsass"],"bugs":{"url":"https://github.com/andrew/node-sass/issues"},"licenses":[{"type":"MIT","url":"https://github.com/andrew/node-sass/blob/master/LICENSE"}],"main":"./sass.js","repository":{"type":"git","url":"git://github.com/andrew/node-sass.git"},"scripts":{"install":"node rebuild.js","test":"mocha test"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"engines":{"node":">=0.6.18"},"dependencies":{"mkdirp":"0.3.x","colors":"0.6.0-1"},"devDependencies":{"mocha":"1.7.x"},"_id":"node-sass@0.3.0","dist":{"shasum":"58c71e1d34571b60e30f0cb2d9d9bda2147e783a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-0.3.0.tgz"},"_npmVersion":"1.1.65","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"}],"directories":{}},"0.4.0":{"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"name":"node-sass","description":"wrapper around libsass","version":"0.4.0","homepage":"https://github.com/andrew/node-sass","keywords":["sass","css","libsass"],"bugs":{"url":"https://github.com/andrew/node-sass/issues"},"licenses":[{"type":"MIT","url":"https://github.com/andrew/node-sass/blob/master/LICENSE"}],"main":"./sass.js","repository":{"type":"git","url":"git://github.com/andrew/node-sass.git"},"scripts":{"install":"node rebuild.js","test":"mocha test"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"engines":{"node":">=0.10.0"},"dependencies":{"mkdirp":"0.3.x","colors":"0.6.0-1","optimist":"0.3.x"},"devDependencies":{"mocha":"1.7.x"},"_id":"node-sass@0.4.0","dist":{"shasum":"77552ac8a70fec45defad37be0f47ca59ee27bad","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-0.4.0.tgz"},"_npmVersion":"1.1.65","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"}],"directories":{}},"0.4.1":{"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"name":"node-sass","description":"wrapper around libsass","version":"0.4.1","homepage":"https://github.com/andrew/node-sass","keywords":["sass","css","libsass"],"bugs":{"url":"https://github.com/andrew/node-sass/issues"},"licenses":[{"type":"MIT","url":"https://github.com/andrew/node-sass/blob/master/LICENSE"}],"main":"./sass.js","repository":{"type":"git","url":"git://github.com/andrew/node-sass.git"},"scripts":{"install":"node rebuild.js","test":"mocha test"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"engines":{"node":">=0.10.0"},"dependencies":{"mkdirp":"0.3.x","colors":"0.6.0-1","optimist":"0.3.x"},"devDependencies":{"mocha":"1.7.x"},"_id":"node-sass@0.4.1","dist":{"shasum":"4ec8b9f8743bb33ad242f00535020cc44feed2a8","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-0.4.1.tgz"},"_npmVersion":"1.1.65","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"}],"directories":{}},"0.4.2":{"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"name":"node-sass","description":"wrapper around libsass","version":"0.4.2","homepage":"https://github.com/andrew/node-sass","keywords":["sass","css","libsass"],"bugs":{"url":"https://github.com/andrew/node-sass/issues"},"licenses":[{"type":"MIT","url":"https://github.com/andrew/node-sass/blob/master/LICENSE"}],"main":"./sass.js","repository":{"type":"git","url":"git://github.com/andrew/node-sass.git"},"scripts":{"install":"node rebuild.js","test":"mocha test"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"engines":{"node":">=0.10.0"},"dependencies":{"mkdirp":"0.3.x","colors":"0.6.0-1","optimist":"0.3.x"},"devDependencies":{"mocha":"1.7.x"},"_id":"node-sass@0.4.2","dist":{"shasum":"a57ec1022927a884eaa0546078142162c58f1eb3","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-0.4.2.tgz"},"_from":".","_npmVersion":"1.2.14","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"}],"directories":{}},"0.4.3":{"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"name":"node-sass","description":"wrapper around libsass","version":"0.4.3","homepage":"https://github.com/andrew/node-sass","keywords":["sass","css","libsass"],"bugs":{"url":"https://github.com/andrew/node-sass/issues"},"licenses":[{"type":"MIT","url":"https://github.com/andrew/node-sass/blob/master/LICENSE"}],"main":"./sass.js","repository":{"type":"git","url":"git://github.com/andrew/node-sass.git"},"scripts":{"install":"node rebuild.js","test":"mocha test"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"engines":{"node":">=0.10.0"},"dependencies":{"mkdirp":"0.3.x","colors":"0.6.0-1","optimist":"0.3.x"},"devDependencies":{"mocha":"1.7.x"},"_id":"node-sass@0.4.3","dist":{"shasum":"2061041cd770f33fecb64929dd81aa9a84e2f1a5","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-0.4.3.tgz"},"_from":".","_npmVersion":"1.2.15","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"}],"directories":{}},"0.4.4":{"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"name":"node-sass","description":"wrapper around libsass","version":"0.4.4","homepage":"https://github.com/andrew/node-sass","keywords":["sass","css","libsass"],"bugs":{"url":"https://github.com/andrew/node-sass/issues"},"licenses":[{"type":"MIT","url":"https://github.com/andrew/node-sass/blob/master/LICENSE"}],"main":"./sass.js","repository":{"type":"git","url":"git://github.com/andrew/node-sass.git"},"scripts":{"install":"node rebuild.js","test":"mocha test"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"engines":{"node":">=0.10.0"},"dependencies":{"mkdirp":"0.3.x","colors":"0.6.0-1","optimist":"0.4.x"},"devDependencies":{"mocha":"1.7.x"},"_id":"node-sass@0.4.4","dist":{"shasum":"afca7cbb1284476d27da86f9ecdbe264157dbde3","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-0.4.4.tgz"},"_from":".","_npmVersion":"1.2.15","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"}],"directories":{}},"0.5.0":{"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"name":"node-sass","description":"wrapper around libsass","version":"0.5.0","homepage":"https://github.com/andrew/node-sass","keywords":["sass","css","libsass"],"bugs":{"url":"https://github.com/andrew/node-sass/issues"},"licenses":[{"type":"MIT","url":"https://github.com/andrew/node-sass/blob/master/LICENSE"}],"main":"./sass.js","repository":{"type":"git","url":"git://github.com/andrew/node-sass.git"},"scripts":{"install":"node rebuild.js","test":"mocha test"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"engines":{"node":">=0.10.0"},"dependencies":{"mkdirp":"0.3.x","colors":"0.6.0-1","optimist":"0.4.x"},"devDependencies":{"mocha":"1.7.x"},"_id":"node-sass@0.5.0","dist":{"shasum":"c4f35916c0c5f4df400a67d079c5f1a435533bfb","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-0.5.0.tgz"},"_from":".","_npmVersion":"1.2.15","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"}],"directories":{}},"0.5.1":{"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"name":"node-sass","description":"wrapper around libsass","version":"0.5.1","homepage":"https://github.com/andrew/node-sass","keywords":["sass","css","libsass"],"bugs":{"url":"https://github.com/andrew/node-sass/issues"},"licenses":[{"type":"MIT","url":"https://github.com/andrew/node-sass/blob/master/LICENSE"}],"main":"./sass.js","repository":{"type":"git","url":"git://github.com/andrew/node-sass.git"},"scripts":{"install":"node rebuild.js","test":"mocha test"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"engines":{"node":">=0.10.0"},"dependencies":{"mkdirp":"0.3.x","colors":"0.6.0-1","optimist":"0.4.x"},"devDependencies":{"mocha":"1.7.x"},"_id":"node-sass@0.5.1","dist":{"shasum":"e34941c4a7df309cb0ff42345e3f060cc2ceb160","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-0.5.1.tgz"},"_from":".","_npmVersion":"1.2.15","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"}],"directories":{}},"0.5.2":{"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"name":"node-sass","description":"wrapper around libsass","version":"0.5.2","homepage":"https://github.com/andrew/node-sass","keywords":["sass","css","libsass"],"bugs":{"url":"https://github.com/andrew/node-sass/issues"},"licenses":[{"type":"MIT","url":"https://github.com/andrew/node-sass/blob/master/LICENSE"}],"main":"./sass.js","repository":{"type":"git","url":"git://github.com/andrew/node-sass.git"},"scripts":{"install":"node rebuild.js","test":"mocha test"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"engines":{"node":">=0.10.0"},"dependencies":{"mkdirp":"0.3.x","colors":"0.6.0-1","optimist":"0.4.x"},"devDependencies":{"mocha":"1.7.x"},"_id":"node-sass@0.5.2","dist":{"shasum":"c08990461dd366d280024c0ee12e5037f1cfd208","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-0.5.2.tgz"},"_from":".","_npmVersion":"1.2.25","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"}],"directories":{}},"0.5.3":{"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"name":"node-sass","description":"wrapper around libsass","version":"0.5.3","homepage":"https://github.com/andrew/node-sass","keywords":["sass","css","libsass"],"bugs":{"url":"https://github.com/andrew/node-sass/issues"},"licenses":[{"type":"MIT","url":"https://github.com/andrew/node-sass/blob/master/LICENSE"}],"main":"./sass.js","repository":{"type":"git","url":"git://github.com/andrew/node-sass.git"},"scripts":{"install":"node rebuild.js","test":"mocha test"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"engines":{"node":">=0.10.0"},"dependencies":{"mkdirp":"0.3.x","colors":"0.6.0-1","optimist":"0.4.x"},"devDependencies":{"mocha":"1.7.x"},"_id":"node-sass@0.5.3","dist":{"shasum":"06cd1c79800c4e32747604c3367dc8f63083e62a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-0.5.3.tgz"},"_npmVersion":"1.1.69","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"}],"directories":{}},"0.5.4":{"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"name":"node-sass","description":"wrapper around libsass","version":"0.5.4","homepage":"https://github.com/andrew/node-sass","keywords":["sass","css","libsass"],"bugs":{"url":"https://github.com/andrew/node-sass/issues"},"licenses":[{"type":"MIT","url":"https://github.com/andrew/node-sass/blob/master/LICENSE"}],"main":"./sass.js","repository":{"type":"git","url":"git://github.com/andrew/node-sass.git"},"scripts":{"install":"node rebuild.js","test":"mocha test"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"engines":{"node":">=0.10.0"},"dependencies":{"mkdirp":"0.3.x","colors":"0.6.0-1","optimist":"0.4.x"},"devDependencies":{"mocha":"1.7.x"},"_id":"node-sass@0.5.4","dist":{"shasum":"2521d84f9a4a9af8e6f9e129aaec6f3acfae33c1","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-0.5.4.tgz"},"_npmVersion":"1.1.69","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"}],"directories":{}},"0.6.0":{"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"name":"node-sass","description":"wrapper around libsass","version":"0.6.0","homepage":"https://github.com/andrew/node-sass","keywords":["sass","css","libsass"],"bugs":{"url":"https://github.com/andrew/node-sass/issues"},"licenses":[{"type":"MIT","url":"https://github.com/andrew/node-sass/blob/master/LICENSE"}],"main":"./sass.js","repository":{"type":"git","url":"git://github.com/andrew/node-sass.git"},"scripts":{"install":"node rebuild.js","test":"mocha test"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"engines":{"node":">=0.10.0"},"dependencies":{"mkdirp":"0.3.x","colors":"0.6.0-1","optimist":"0.4.x"},"devDependencies":{"mocha":"1.7.x"},"_id":"node-sass@0.6.0","dist":{"shasum":"db25f784290600dea63a551baadaa4d7c779a428","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-0.6.0.tgz"},"_npmVersion":"1.1.69","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"}],"directories":{}},"0.6.1":{"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"name":"node-sass","description":"wrapper around libsass","version":"0.6.1","homepage":"https://github.com/andrew/node-sass","keywords":["sass","css","libsass"],"bugs":{"url":"https://github.com/andrew/node-sass/issues"},"licenses":[{"type":"MIT","url":"https://github.com/andrew/node-sass/blob/master/LICENSE"}],"main":"./sass.js","repository":{"type":"git","url":"git://github.com/andrew/node-sass.git"},"scripts":{"install":"node rebuild.js","test":"mocha test"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"engines":{"node":">=0.10.0"},"dependencies":{"mkdirp":"0.3.x","colors":"0.6.0-1","optimist":"0.4.x"},"devDependencies":{"mocha":"1.7.x"},"_id":"node-sass@0.6.1","dist":{"shasum":"5977f2f99612e552a6ab03503cac4388f0e17b48","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-0.6.1.tgz"},"_from":".","_npmVersion":"1.2.32","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"}],"directories":{}},"0.6.2":{"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"name":"node-sass","description":"wrapper around libsass","version":"0.6.2","homepage":"https://github.com/andrew/node-sass","keywords":["sass","css","libsass"],"bugs":{"url":"https://github.com/andrew/node-sass/issues"},"licenses":[{"type":"MIT","url":"https://github.com/andrew/node-sass/blob/master/LICENSE"}],"main":"./sass.js","repository":{"type":"git","url":"git://github.com/andrew/node-sass.git"},"scripts":{"install":"node rebuild.js","test":"mocha test"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"engines":{"node":">=0.10.0"},"dependencies":{"mkdirp":"0.3.x","colors":"0.6.0-1","optimist":"0.4.x"},"devDependencies":{"mocha":"1.7.x"},"_id":"node-sass@0.6.2","dist":{"shasum":"bc4eaed4fcd6fe5a6412bfa864f4322beb91bb7b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-0.6.2.tgz"},"_from":".","_npmVersion":"1.3.5","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"}],"directories":{}},"0.6.3":{"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"name":"node-sass","description":"wrapper around libsass","version":"0.6.3","homepage":"https://github.com/andrew/node-sass","keywords":["sass","css","libsass"],"bugs":{"url":"https://github.com/andrew/node-sass/issues"},"licenses":[{"type":"MIT","url":"https://github.com/andrew/node-sass/blob/master/LICENSE"}],"main":"./sass.js","repository":{"type":"git","url":"git://github.com/andrew/node-sass.git"},"scripts":{"install":"node rebuild.js","test":"mocha test"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"engines":{"node":">=0.10.0"},"dependencies":{"mkdirp":"0.3.x","colors":"0.6.0-1","optimist":"0.4.x"},"devDependencies":{"mocha":"1.7.x"},"_id":"node-sass@0.6.3","dist":{"shasum":"a1a32cef1181e9c7e8f07fbccc7db9497ab967e4","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-0.6.3.tgz"},"_from":".","_npmVersion":"1.3.5","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"}],"directories":{}},"0.6.4":{"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"name":"node-sass","description":"wrapper around libsass","version":"0.6.4","homepage":"https://github.com/andrew/node-sass","keywords":["sass","css","libsass"],"bugs":{"url":"https://github.com/andrew/node-sass/issues"},"licenses":[{"type":"MIT","url":"https://github.com/andrew/node-sass/blob/master/LICENSE"}],"main":"./sass.js","repository":{"type":"git","url":"git://github.com/andrew/node-sass.git"},"scripts":{"install":"node rebuild.js","test":"mocha test"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"engines":{"node":">=0.10.0"},"dependencies":{"mkdirp":"0.3.x","colors":"0.6.0-1","optimist":"0.4.x"},"devDependencies":{"mocha":"1.7.x"},"_id":"node-sass@0.6.4","dist":{"shasum":"d4143e627e43e8b5ebfb4d57e988b846585243b1","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-0.6.4.tgz"},"_from":".","_npmVersion":"1.3.5","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"}],"directories":{}},"0.6.5":{"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"name":"node-sass","description":"wrapper around libsass","version":"0.6.5","homepage":"https://github.com/andrew/node-sass","keywords":["sass","css","libsass"],"bugs":{"url":"https://github.com/andrew/node-sass/issues"},"licenses":[{"type":"MIT","url":"https://github.com/andrew/node-sass/blob/master/LICENSE"}],"main":"./sass.js","repository":{"type":"git","url":"git://github.com/andrew/node-sass.git"},"scripts":{"install":"node rebuild.js","test":"mocha test"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"engines":{"node":">=0.10.0"},"dependencies":{"mkdirp":"0.3.x","colors":"0.6.0-1","optimist":"0.6.x","node-watch":"0.3.x"},"devDependencies":{"mocha":"1.7.x"},"_id":"node-sass@0.6.5","dist":{"shasum":"423c9f9968f9ad4025bdf30e5e860c4087e0defe","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-0.6.5.tgz"},"_from":".","_npmVersion":"1.3.5","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"}],"directories":{}},"0.6.6":{"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"name":"node-sass","description":"wrapper around libsass","version":"0.6.6","homepage":"https://github.com/andrew/node-sass","keywords":["sass","css","libsass"],"bugs":{"url":"https://github.com/andrew/node-sass/issues"},"licenses":[{"type":"MIT","url":"https://github.com/andrew/node-sass/blob/master/LICENSE"}],"main":"./sass.js","repository":{"type":"git","url":"git://github.com/andrew/node-sass.git"},"scripts":{"install":"node rebuild.js","test":"mocha test"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"engines":{"node":">=0.10.0"},"dependencies":{"mkdirp":"0.3.x","colors":"0.6.0-1","optimist":"0.6.x","node-watch":"0.3.x"},"devDependencies":{"mocha":"1.7.x"},"_id":"node-sass@0.6.6","dist":{"shasum":"27466a7c0ee3b9f30ac7865f9c9f3a0bc786ad21","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-0.6.6.tgz"},"_from":".","_npmVersion":"1.3.5","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"}],"directories":{}},"0.6.7":{"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"name":"node-sass","description":"wrapper around libsass","version":"0.6.7","homepage":"https://github.com/andrew/node-sass","keywords":["sass","css","libsass"],"bugs":{"url":"https://github.com/andrew/node-sass/issues"},"licenses":[{"type":"MIT","url":"https://github.com/andrew/node-sass/blob/master/LICENSE"}],"main":"./sass.js","repository":{"type":"git","url":"git://github.com/andrew/node-sass.git"},"scripts":{"install":"node rebuild.js","test":"mocha test"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"engines":{"node":">=0.10.0"},"dependencies":{"mkdirp":"0.3.x","colors":"0.6.0-1","optimist":"0.6.x","node-watch":"0.3.x"},"devDependencies":{"mocha":"1.7.x"},"_id":"node-sass@0.6.7","dist":{"shasum":"88afbdad2b39f548ad396ce8444ca8cf5455566f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-0.6.7.tgz"},"_from":".","_npmVersion":"1.3.5","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"}],"directories":{}},"0.7.0-alpha":{"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"name":"node-sass","description":"wrapper around libsass","version":"0.7.0-alpha","homepage":"https://github.com/andrew/node-sass","keywords":["sass","css","libsass"],"bugs":{"url":"https://github.com/andrew/node-sass/issues"},"licenses":[{"type":"MIT","url":"https://github.com/andrew/node-sass/blob/master/LICENSE"}],"main":"./sass.js","repository":{"type":"git","url":"git://github.com/andrew/node-sass.git"},"scripts":{"install":"node build.js","test":"mocha test","prepublish":"bash scripts/prepublish.sh"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"engines":{"node":">=0.10.0"},"dependencies":{"mkdirp":"0.3.x","colors":"0.6.0-1","optimist":"0.6.x","node-watch":"0.3.x","mocha":"1.13.x"},"_id":"node-sass@0.7.0-alpha","dist":{"shasum":"cbd337f10286a02f1ef58455eb86c218b3197118","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-0.7.0-alpha.tgz"},"_from":".","_npmVersion":"1.3.11","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"}],"directories":{}},"0.7.0":{"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"name":"node-sass","description":"wrapper around libsass","version":"0.7.0","homepage":"https://github.com/andrew/node-sass","keywords":["sass","css","libsass"],"bugs":{"url":"https://github.com/andrew/node-sass/issues"},"licenses":[{"type":"MIT","url":"https://github.com/andrew/node-sass/blob/master/LICENSE"}],"main":"./sass.js","repository":{"type":"git","url":"git://github.com/andrew/node-sass.git"},"scripts":{"install":"node build.js","test":"mocha test","prepublish":"bash scripts/prepublish.sh"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"engines":{"node":">=0.10.0"},"dependencies":{"mkdirp":"0.3.x","colors":"0.6.0-1","optimist":"0.6.x","node-watch":"0.3.x","mocha":"1.13.x"},"_id":"node-sass@0.7.0","dist":{"shasum":"eee9640cee6a2fed7e38d29a5f07f52fe8c65eb7","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-0.7.0.tgz"},"_from":".","_npmVersion":"1.3.11","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"}],"directories":{}},"0.8.0":{"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"name":"node-sass","description":"wrapper around libsass","version":"0.8.0","homepage":"https://github.com/andrew/node-sass","keywords":["sass","css","libsass"],"bugs":{"url":"https://github.com/andrew/node-sass/issues"},"licenses":[{"type":"MIT","url":"https://github.com/andrew/node-sass/blob/master/LICENSE"}],"main":"./sass.js","repository":{"type":"git","url":"git://github.com/andrew/node-sass.git"},"scripts":{"install":"node build.js","test":"mocha test","pretest":"jshint .","prepublish":"bash scripts/prepublish.sh"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"engines":{"node":">=0.10.0"},"dependencies":{"mkdirp":"0.3.x","optimist":"0.6.x","node-watch":"0.3.x","mocha":"1.13.x","chalk":"~0.3.0","nan":"~0.6.0"},"devDependencies":{"jshint":"~2.4.0"},"_id":"node-sass@0.8.0","dist":{"shasum":"ebf3d6d04c672eccd036c8d40875ebf4d88938f6","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-0.8.0.tgz"},"_from":".","_npmVersion":"1.3.11","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"}],"directories":{}},"0.8.1":{"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"name":"node-sass","description":"wrapper around libsass","version":"0.8.1","homepage":"https://github.com/andrew/node-sass","keywords":["sass","css","libsass"],"bugs":{"url":"https://github.com/andrew/node-sass/issues"},"licenses":[{"type":"MIT","url":"https://github.com/andrew/node-sass/blob/master/LICENSE"}],"main":"./sass.js","repository":{"type":"git","url":"git://github.com/andrew/node-sass.git"},"scripts":{"install":"node build.js","test":"mocha test","pretest":"jshint .","prepublish":"bash scripts/prepublish.sh"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"engines":{"node":">=0.10.0"},"dependencies":{"mkdirp":"0.3.x","optimist":"0.6.x","node-watch":"0.3.x","mocha":"1.13.x","chalk":"~0.3.0","nan":"~0.6.0"},"devDependencies":{"jshint":"~2.4.0"},"_id":"node-sass@0.8.1","dist":{"shasum":"3dade58a35a62253ba44bfeb7683f7a5733f89f8","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-0.8.1.tgz"},"_from":".","_npmVersion":"1.3.11","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"}],"directories":{}},"0.8.2":{"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"name":"node-sass","description":"wrapper around libsass","version":"0.8.2","homepage":"https://github.com/andrew/node-sass","keywords":["sass","css","libsass"],"bugs":{"url":"https://github.com/andrew/node-sass/issues"},"licenses":[{"type":"MIT","url":"https://github.com/andrew/node-sass/blob/master/LICENSE"}],"main":"./sass.js","repository":{"type":"git","url":"git://github.com/andrew/node-sass.git"},"scripts":{"install":"node build.js","test":"mocha test","coverage":"bash scripts/coverage.sh","pretest":"jshint .","prepublish":"bash scripts/prepublish.sh"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"engines":{"node":">=0.10.0"},"dependencies":{"mkdirp":"0.3.x","optimist":"0.6.x","node-watch":"0.3.x","mocha":"1.13.x","chalk":"~0.3.0","nan":"~0.6.0"},"devDependencies":{"jshint":"~2.4.0","coveralls":"~2.6.1","mocha-lcov-reporter":"0.0.1","jscoverage":"~0.3.8"},"_id":"node-sass@0.8.2","dist":{"shasum":"6174ed92553caa4e0bdf1ef44229e53acdcf3442","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-0.8.2.tgz"},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"}],"directories":{}},"0.8.3":{"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"name":"node-sass","description":"wrapper around libsass","version":"0.8.3","homepage":"https://github.com/andrew/node-sass","keywords":["sass","css","libsass"],"bugs":{"url":"https://github.com/andrew/node-sass/issues"},"licenses":[{"type":"MIT","url":"https://github.com/andrew/node-sass/blob/master/LICENSE"}],"main":"./sass.js","repository":{"type":"git","url":"git://github.com/andrew/node-sass.git"},"scripts":{"install":"node build.js","test":"mocha test","coverage":"bash scripts/coverage.sh","pretest":"jshint .","prepublish":"bash scripts/prepublish.sh"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"engines":{"node":">=0.10.0"},"dependencies":{"mkdirp":"0.3.x","optimist":"0.6.x","node-watch":"0.3.x","mocha":"1.13.x","chalk":"~0.3.0","nan":"~0.6.0"},"devDependencies":{"jshint":"~2.4.0","coveralls":"~2.6.1","mocha-lcov-reporter":"0.0.1","jscoverage":"~0.3.8"},"_id":"node-sass@0.8.3","dist":{"shasum":"1ac6ef89c6c9f9fe518599f68e0b945d08412bf3","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-0.8.3.tgz"},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"}],"directories":{}},"0.8.4":{"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"name":"node-sass","description":"wrapper around libsass","version":"0.8.4","homepage":"https://github.com/andrew/node-sass","keywords":["sass","css","libsass"],"bugs":{"url":"https://github.com/andrew/node-sass/issues"},"licenses":[{"type":"MIT","url":"https://github.com/andrew/node-sass/blob/master/LICENSE"}],"main":"./sass.js","repository":{"type":"git","url":"git://github.com/andrew/node-sass.git"},"scripts":{"install":"node build.js","test":"mocha test","coverage":"bash scripts/coverage.sh","pretest":"jshint .","prepublish":"bash scripts/prepublish.sh"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"engines":{"node":">=0.10.0"},"dependencies":{"mkdirp":"0.3.x","optimist":"0.6.x","node-watch":"0.3.x","mocha":"1.13.x","chalk":"~0.3.0","nan":"~0.6.0"},"devDependencies":{"jshint":"~2.4.0","coveralls":"~2.6.1","mocha-lcov-reporter":"0.0.1","jscoverage":"~0.3.8"},"_id":"node-sass@0.8.4","dist":{"shasum":"227a50bcb4e6a4803a51361115a685807bbcf822","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-0.8.4.tgz"},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"}],"directories":{}},"0.8.5":{"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"name":"node-sass","description":"wrapper around libsass","version":"0.8.5","homepage":"https://github.com/andrew/node-sass","keywords":["sass","css","libsass"],"bugs":{"url":"https://github.com/andrew/node-sass/issues"},"licenses":[{"type":"MIT","url":"https://github.com/andrew/node-sass/blob/master/LICENSE"}],"main":"./sass.js","repository":{"type":"git","url":"git://github.com/andrew/node-sass.git"},"scripts":{"install":"node build.js","test":"mocha test","coverage":"bash scripts/coverage.sh","pretest":"jshint .","prepublish":"bash scripts/prepublish.sh"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"engines":{"node":">=0.10.0"},"dependencies":{"mkdirp":"0.3.x","optimist":"0.6.x","node-watch":"0.3.x","chalk":"~0.4.0","nan":"~0.8.0","mocha":"1.18.x"},"devDependencies":{"jshint":"~2.4.4","coveralls":"~2.10.0","mocha-lcov-reporter":"0.0.1","jscoverage":"~0.3.8","sinon":"^1.9.1"},"_id":"node-sass@0.8.5","dist":{"shasum":"1cefac7a7d5413887dc82c5370e03ff35a90253a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-0.8.5.tgz"},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"}],"directories":{}},"0.8.6":{"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"name":"node-sass","description":"wrapper around libsass","version":"0.8.6","homepage":"https://github.com/andrew/node-sass","keywords":["sass","css","libsass"],"bugs":{"url":"https://github.com/andrew/node-sass/issues"},"licenses":[{"type":"MIT","url":"https://github.com/andrew/node-sass/blob/master/LICENSE"}],"main":"./sass.js","repository":{"type":"git","url":"git://github.com/andrew/node-sass.git"},"scripts":{"install":"node build.js","test":"mocha test","coverage":"bash scripts/coverage.sh","pretest":"jshint .","prepublish":"bash scripts/prepublish.sh"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"engines":{"node":">=0.10.0"},"dependencies":{"mkdirp":"0.3.x","optimist":"0.6.x","node-watch":"0.3.x","chalk":"~0.4.0","nan":"~0.8.0","mocha":"1.18.x","sinon":"^1.9.1"},"devDependencies":{"jshint":"~2.4.4","coveralls":"~2.10.0","mocha-lcov-reporter":"0.0.1","jscoverage":"~0.3.8"},"_id":"node-sass@0.8.6","dist":{"shasum":"5448626695e89cb7b472d067765fd6790412aba6","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-0.8.6.tgz"},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"}],"directories":{}},"0.9.0":{"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"name":"node-sass","description":"wrapper around libsass","version":"0.9.0","homepage":"https://github.com/andrew/node-sass","keywords":["sass","css","libsass"],"bugs":{"url":"https://github.com/andrew/node-sass/issues"},"licenses":[{"type":"MIT","url":"https://github.com/andrew/node-sass/blob/master/LICENSE"}],"main":"./sass.js","repository":{"type":"git","url":"git://github.com/andrew/node-sass.git"},"scripts":{"install":"node build.js","test":"node scripts/test","coverage":"node scripts/coverage","pretest":"node scripts/lint","prepublish":"node scripts/prepublish"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"engines":{"node":">=0.10.0"},"dependencies":{"chalk":"~0.4.0","mkdirp":"~0.3.5","mocha":"~1.18.2","nan":"~1.0.0","node-watch":"~0.3.4","optimist":"~0.6.1","shelljs":"~0.2.6","sinon":"~1.9.1"},"devDependencies":{"coveralls":"~2.10.0","jscoverage":"~0.3.8","jshint":"~2.5.0","mocha-lcov-reporter":"~0.0.1"},"_id":"node-sass@0.9.0","dist":{"shasum":"7ca99df5729259e0ccdd9ea5c84fb640f1c8004b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-0.9.0.tgz"},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"}],"directories":{}},"0.9.1":{"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"name":"node-sass","description":"wrapper around libsass","version":"0.9.1","homepage":"https://github.com/andrew/node-sass","keywords":["sass","css","libsass"],"bugs":{"url":"https://github.com/andrew/node-sass/issues"},"licenses":[{"type":"MIT","url":"https://github.com/andrew/node-sass/blob/master/LICENSE"}],"main":"./sass.js","repository":{"type":"git","url":"git://github.com/andrew/node-sass.git"},"scripts":{"install":"node build.js","test":"node scripts/test","coverage":"node scripts/coverage","pretest":"node scripts/lint","prepublish":"node scripts/prepublish"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"engines":{"node":">=0.10.0"},"dependencies":{"chalk":"~0.4.0","mkdirp":"~0.3.5","mocha":"~1.18.2","nan":"~1.0.0","node-watch":"~0.3.4","optimist":"~0.6.1","shelljs":"~0.2.6","sinon":"~1.9.1"},"devDependencies":{"coveralls":"~2.10.0","jscoverage":"~0.3.8","jshint":"~2.5.0","mocha-lcov-reporter":"~0.0.1"},"_id":"node-sass@0.9.1","dist":{"shasum":"dc1787bce8cb2c3727d4d00b338958939b8084f7","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-0.9.1.tgz"},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"}],"directories":{}},"0.9.2":{"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"name":"node-sass","description":"wrapper around libsass","version":"0.9.2","homepage":"https://github.com/andrew/node-sass","keywords":["sass","css","libsass"],"bugs":{"url":"https://github.com/andrew/node-sass/issues"},"licenses":[{"type":"MIT","url":"https://github.com/andrew/node-sass/blob/master/LICENSE"}],"main":"./sass.js","repository":{"type":"git","url":"git://github.com/andrew/node-sass.git"},"scripts":{"install":"node build.js","test":"node scripts/test","coverage":"node scripts/coverage","pretest":"node scripts/lint","prepublish":"node scripts/prepublish"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"engines":{"node":">=0.10.0"},"dependencies":{"chalk":"~0.4.0","mkdirp":"~0.3.5","mocha":"~1.18.2","nan":"~1.0.0","node-watch":"~0.3.4","object-assign":"^0.3.1","optimist":"~0.6.1","shelljs":"~0.2.6","sinon":"~1.9.1","node-sass-middleware":"~0.2.0"},"devDependencies":{"coveralls":"~2.10.0","jscoverage":"~0.3.8","jshint":"~2.5.0","mocha-lcov-reporter":"~0.0.1"},"_id":"node-sass@0.9.2","dist":{"shasum":"fe7b3626ed702ee0a45b99e67027d22d6a6cd9cb","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-0.9.2.tgz"},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"}],"directories":{}},"0.9.3":{"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"name":"node-sass","description":"wrapper around libsass","version":"0.9.3","homepage":"https://github.com/sass/node-sass","keywords":["sass","css","libsass"],"bugs":{"url":"https://github.com/sass/node-sass/issues"},"licenses":[{"type":"MIT","url":"https://github.com/sass/node-sass/blob/master/LICENSE"}],"main":"./sass.js","repository":{"type":"git","url":"git://github.com/sass/node-sass.git"},"scripts":{"install":"node build.js","test":"node scripts/test","coverage":"node scripts/coverage","pretest":"node scripts/lint","prepublish":"node scripts/prepublish"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"engines":{"node":">=0.10.0"},"dependencies":{"chalk":"~0.4.0","mkdirp":"~0.3.5","mocha":"~1.18.2","nan":"~1.0.0","node-watch":"~0.3.4","object-assign":"^0.3.1","optimist":"~0.6.1","shelljs":"~0.2.6","sinon":"~1.9.1","node-sass-middleware":"~0.2.0"},"devDependencies":{"coveralls":"~2.10.0","jscoverage":"~0.3.8","jshint":"~2.5.0","mocha-lcov-reporter":"~0.0.1"},"_id":"node-sass@0.9.3","dist":{"shasum":"f6d9c192aa77ac2a760541938d275cf157360fa9","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-0.9.3.tgz"},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"}],"directories":{}},"0.9.4-rc1":{"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"name":"node-sass","description":"wrapper around libsass","version":"0.9.4-rc1","homepage":"https://github.com/sass/node-sass","keywords":["sass","css","libsass"],"bugs":{"url":"https://github.com/sass/node-sass/issues"},"licenses":[{"type":"MIT","url":"https://github.com/sass/node-sass/blob/master/LICENSE"}],"main":"./sass.js","repository":{"type":"git","url":"git://github.com/sass/node-sass.git"},"scripts":{"install":"node build.js","test":"node scripts/test","coverage":"node scripts/coverage","pretest":"node scripts/lint","prepublish":"node scripts/prepublish"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"engines":{"node":">=0.10.0"},"dependencies":{"chalk":"~0.4.0","mkdirp":"~0.3.5","mocha":"~1.18.2","nan":"~1.3.0","node-watch":"~0.3.4","object-assign":"^0.3.1","shelljs":"~0.2.6","sinon":"~1.9.1","node-sass-middleware":"~0.2.0","yargs":"~1.3.1","get-stdin":"~3.0.0"},"devDependencies":{"coveralls":"^2.11.1","cross-spawn":"^0.2.3","jscoverage":"^0.5.6","jshint":"^2.5.5","mocha-lcov-reporter":"^0.0.1","object-assign":"^0.3.1"},"_id":"node-sass@0.9.4-rc1","dist":{"shasum":"3d0503570c2fee811dfe08cc46436a9cc710033e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-0.9.4-rc1.tgz"},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"}],"directories":{}},"0.9.4":{"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"name":"node-sass","description":"wrapper around libsass","version":"0.9.4","homepage":"https://github.com/sass/node-sass","keywords":["sass","css","libsass"],"bugs":{"url":"https://github.com/sass/node-sass/issues"},"licenses":[{"type":"MIT","url":"https://github.com/sass/node-sass/blob/master/LICENSE"}],"main":"./sass.js","repository":{"type":"git","url":"git://github.com/sass/node-sass.git"},"scripts":{"install":"node build.js","test":"node scripts/test","coverage":"node scripts/coverage","pretest":"node scripts/lint","prepublish":"node scripts/prepublish"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"engines":{"node":">=0.10.0"},"dependencies":{"chalk":"~0.4.0","mkdirp":"~0.3.5","mocha":"~1.18.2","nan":"~1.3.0","node-watch":"~0.3.4","object-assign":"^0.3.1","shelljs":"~0.2.6","sinon":"~1.9.1","node-sass-middleware":"~0.2.0","yargs":"~1.3.1","get-stdin":"~3.0.0"},"devDependencies":{"coveralls":"^2.11.1","cross-spawn":"^0.2.3","jscoverage":"^0.5.6","jshint":"^2.5.5","mocha-lcov-reporter":"^0.0.1","object-assign":"^0.3.1"},"_id":"node-sass@0.9.4","dist":{"shasum":"95f43d7d7472ce598cbf1cb3587d9a78a92d5452","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-0.9.4.tgz"},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"}],"directories":{}},"0.9.5-rc1":{"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"name":"node-sass","description":"wrapper around libsass","version":"0.9.5-rc1","homepage":"https://github.com/sass/node-sass","keywords":["sass","css","libsass"],"bugs":{"url":"https://github.com/sass/node-sass/issues"},"licenses":[{"type":"MIT","url":"https://github.com/sass/node-sass/blob/master/LICENSE"}],"main":"./sass.js","repository":{"type":"git","url":"git://github.com/sass/node-sass.git"},"scripts":{"install":"node build.js","test":"node scripts/test","coverage":"node scripts/coverage","pretest":"node scripts/lint","prepublish":"node scripts/prepublish"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"engines":{"node":">=0.10.0"},"dependencies":{"chalk":"~0.4.0","mkdirp":"~0.3.5","mocha":"~1.18.2","nan":"~1.3.0","node-watch":"~0.3.4","object-assign":"^0.3.1","shelljs":"~0.2.6","sinon":"~1.9.1","node-sass-middleware":"~0.2.0","yargs":"~1.3.1","get-stdin":"~3.0.0"},"devDependencies":{"coveralls":"^2.11.1","cross-spawn":"^0.2.3","jscoverage":"^0.5.6","jshint":"^2.5.5","mocha-lcov-reporter":"^0.0.1","object-assign":"^0.3.1"},"_id":"node-sass@0.9.5-rc1","dist":{"shasum":"50ea0c6ec5db9b7975c35d2b4adb53ee051b306b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-0.9.5-rc1.tgz"},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"}],"directories":{}},"0.9.5":{"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"name":"node-sass","description":"wrapper around libsass","version":"0.9.5","homepage":"https://github.com/sass/node-sass","keywords":["sass","css","libsass"],"bugs":{"url":"https://github.com/sass/node-sass/issues"},"licenses":[{"type":"MIT","url":"https://github.com/sass/node-sass/blob/master/LICENSE"}],"main":"./sass.js","repository":{"type":"git","url":"git://github.com/sass/node-sass.git"},"scripts":{"install":"node build.js","test":"node scripts/test","coverage":"node scripts/coverage","pretest":"node scripts/lint","prepublish":"node scripts/prepublish"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"engines":{"node":">=0.10.0"},"dependencies":{"chalk":"~0.5.1","mkdirp":"~0.5.0","mocha":"~1.21.4","nan":"~1.3.0","node-watch":"~0.3.4","object-assign":"~1.0.0","shelljs":"~0.3.0","sinon":"~1.10.3","node-sass-middleware":"~0.3.0","yargs":"~1.3.1","get-stdin":"~3.0.0"},"devDependencies":{"coveralls":"^2.11.1","cross-spawn":"^0.2.3","jscoverage":"^0.5.6","jshint":"^2.5.5","mocha-lcov-reporter":"^0.0.1","object-assign":"^1.0.0"},"_id":"node-sass@0.9.5","dist":{"shasum":"f0aab22050c1f19b6f1721c793c7b8be553ad075","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-0.9.5.tgz"},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"}],"directories":{}},"0.9.6":{"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"name":"node-sass","description":"wrapper around libsass","version":"0.9.6","homepage":"https://github.com/sass/node-sass","keywords":["sass","css","libsass"],"bugs":{"url":"https://github.com/sass/node-sass/issues"},"licenses":[{"type":"MIT","url":"https://github.com/sass/node-sass/blob/master/LICENSE"}],"main":"./sass.js","repository":{"type":"git","url":"git://github.com/sass/node-sass.git"},"scripts":{"install":"node build.js","test":"node scripts/test","coverage":"node scripts/coverage","pretest":"node scripts/lint","prepublish":"node scripts/prepublish"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"engines":{"node":">=0.10.0"},"dependencies":{"chalk":"~0.5.1","mkdirp":"~0.5.0","mocha":"~1.21.4","nan":"~1.3.0","node-watch":"~0.3.4","object-assign":"~1.0.0","shelljs":"~0.3.0","sinon":"~1.10.3","node-sass-middleware":"~0.3.0","yargs":"~1.3.1","get-stdin":"~3.0.0"},"devDependencies":{"coveralls":"^2.11.1","cross-spawn":"^0.2.3","jscoverage":"^0.5.6","jshint":"^2.5.5","mocha-lcov-reporter":"^0.0.1","object-assign":"^1.0.0"},"_id":"node-sass@0.9.6","dist":{"shasum":"0f8aab5332b9bdbd075406c8b7b8fd7c48014da5","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-0.9.6.tgz"},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"}],"directories":{}},"1.0.0":{"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"name":"node-sass","description":"wrapper around libsass","version":"1.0.0","homepage":"https://github.com/sass/node-sass","keywords":["sass","css","libsass","scss","style","preprocessor"],"bugs":{"url":"https://github.com/sass/node-sass/issues"},"licenses":[{"type":"MIT","url":"https://github.com/sass/node-sass/blob/master/LICENSE"}],"main":"./sass.js","repository":{"type":"git","url":"git://github.com/sass/node-sass.git"},"scripts":{"install":"node build.js","test":"node scripts/test","coverage":"node scripts/coverage","pretest":"node scripts/lint","prepublish":"node scripts/prepublish"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"engines":{"node":">=0.10.0"},"dependencies":{"chalk":"~0.5.1","mkdirp":"~0.5.0","mocha":"~1.21.4","nan":"~1.3.0","node-watch":"~0.3.4","object-assign":"~1.0.0","shelljs":"~0.3.0","sinon":"~1.10.3","yargs":"~1.3.1","get-stdin":"~3.0.0"},"devDependencies":{"coveralls":"^2.11.1","cross-spawn":"^0.2.3","jscoverage":"^0.5.6","jshint":"^2.5.5","mocha-lcov-reporter":"^0.0.1","object-assign":"^1.0.0"},"_id":"node-sass@1.0.0","dist":{"shasum":"e36af2ae52d8e1de4865e94c4cf4200c2b360e4f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-1.0.0.tgz"},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"}],"directories":{}},"1.0.1":{"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"name":"node-sass","description":"wrapper around libsass","version":"1.0.1","homepage":"https://github.com/sass/node-sass","keywords":["sass","css","libsass","scss","style","preprocessor"],"bugs":{"url":"https://github.com/sass/node-sass/issues"},"licenses":[{"type":"MIT","url":"https://github.com/sass/node-sass/blob/master/LICENSE"}],"main":"./sass.js","repository":{"type":"git","url":"git://github.com/sass/node-sass.git"},"scripts":{"install":"node build.js","test":"node scripts/test","coverage":"node scripts/coverage","pretest":"node scripts/lint","prepublish":"node scripts/prepublish"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"engines":{"node":">=0.10.0"},"dependencies":{"chalk":"~0.5.1","mkdirp":"~0.5.0","mocha":"~1.21.4","nan":"~1.3.0","node-watch":"~0.3.4","object-assign":"~1.0.0","shelljs":"~0.3.0","sinon":"~1.10.3","yargs":"~1.3.1","get-stdin":"~3.0.0"},"devDependencies":{"coveralls":"^2.11.1","cross-spawn":"^0.2.3","jscoverage":"^0.5.6","jshint":"^2.5.5","mocha-lcov-reporter":"^0.0.1","object-assign":"^1.0.0"},"_id":"node-sass@1.0.1","dist":{"shasum":"e2ccacfe41c44a73b5efd50d5bfd481cec38adae","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-1.0.1.tgz"},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"}],"directories":{}},"1.0.2-alpha":{"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"name":"node-sass","description":"wrapper around libsass","version":"1.0.2-alpha","homepage":"https://github.com/sass/node-sass","keywords":["sass","css","libsass","scss","style","preprocessor"],"bugs":{"url":"https://github.com/sass/node-sass/issues"},"licenses":[{"type":"MIT","url":"https://github.com/sass/node-sass/blob/master/LICENSE"}],"main":"./sass.js","repository":{"type":"git","url":"git://github.com/sass/node-sass.git"},"scripts":{"install":"node build.js","test":"node scripts/test","coverage":"node scripts/coverage","pretest":"node scripts/lint","prepublish":"node scripts/prepublish"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"engines":{"node":">=0.10.0"},"dependencies":{"chalk":"~0.5.1","get-stdin":"~3.0.0","meow":"^2.0.0","mkdirp":"~0.5.0","mocha":"~1.21.5","nan":"~1.3.0","node-watch":"~0.3.4","object-assign":"~1.0.0","shelljs":"~0.3.0","sinon":"~1.10.3"},"devDependencies":{"coveralls":"^2.11.1","cross-spawn":"^0.2.3","jscoverage":"^0.5.6","jshint":"^2.5.5","mocha-lcov-reporter":"^0.0.1","object-assign":"^1.0.0"},"_id":"node-sass@1.0.2-alpha","dist":{"shasum":"09408053345b580bb22b4c4b9129d1dd79bfa2bc","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-1.0.2-alpha.tgz"},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"}],"directories":{}},"1.0.2":{"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"name":"node-sass","description":"wrapper around libsass","version":"1.0.2","homepage":"https://github.com/sass/node-sass","keywords":["sass","css","libsass","scss","style","preprocessor"],"bugs":{"url":"https://github.com/sass/node-sass/issues"},"licenses":[{"type":"MIT","url":"https://github.com/sass/node-sass/blob/master/LICENSE"}],"main":"./sass.js","repository":{"type":"git","url":"git://github.com/sass/node-sass.git"},"scripts":{"install":"node build.js","test":"node scripts/test","coverage":"node scripts/coverage","pretest":"node scripts/lint","prepublish":"node scripts/prepublish"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"engines":{"node":">=0.10.0"},"dependencies":{"chalk":"~0.5.1","get-stdin":"~3.0.0","meow":"^2.0.0","mkdirp":"~0.5.0","mocha":"~1.21.5","nan":"~1.3.0","node-watch":"~0.3.4","object-assign":"~1.0.0","shelljs":"~0.3.0","sinon":"~1.10.3"},"devDependencies":{"coveralls":"^2.11.1","cross-spawn":"^0.2.3","jscoverage":"^0.5.6","jshint":"^2.5.5","mocha-lcov-reporter":"^0.0.1","object-assign":"^1.0.0"},"_id":"node-sass@1.0.2","dist":{"shasum":"fa16ee1f77a5b7d5010d2876295f9c6dff11534a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-1.0.2.tgz"},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"}],"directories":{}},"1.0.3":{"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"name":"node-sass","description":"wrapper around libsass","version":"1.0.3","homepage":"https://github.com/sass/node-sass","keywords":["sass","css","libsass","scss","style","preprocessor"],"bugs":{"url":"https://github.com/sass/node-sass/issues"},"licenses":[{"type":"MIT","url":"https://github.com/sass/node-sass/blob/master/LICENSE"}],"main":"./sass.js","repository":{"type":"git","url":"git://github.com/sass/node-sass.git"},"scripts":{"install":"node build.js","test":"node scripts/test","coverage":"node scripts/coverage","pretest":"node scripts/lint","prepublish":"node scripts/prepublish"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"engines":{"node":">=0.10.0"},"dependencies":{"chalk":"~0.5.1","get-stdin":"~3.0.0","meow":"^2.0.0","mkdirp":"~0.5.0","mocha":"~1.21.5","nan":"~1.3.0","node-watch":"~0.3.4","object-assign":"~1.0.0","shelljs":"~0.3.0","sinon":"~1.10.3"},"devDependencies":{"coveralls":"^2.11.1","cross-spawn":"^0.2.3","jscoverage":"^0.5.6","jshint":"^2.5.5","mocha-lcov-reporter":"^0.0.1","object-assign":"^1.0.0"},"_id":"node-sass@1.0.3","dist":{"shasum":"623afb78addc7b3faec8789d448a21d40e9809a2","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-1.0.3.tgz"},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"}],"directories":{}},"1.1.0":{"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"name":"node-sass","description":"wrapper around libsass","version":"1.1.0","homepage":"https://github.com/sass/node-sass","keywords":["sass","css","libsass","scss","style","preprocessor"],"bugs":{"url":"https://github.com/sass/node-sass/issues"},"licenses":[{"type":"MIT","url":"https://github.com/sass/node-sass/blob/master/LICENSE"}],"main":"./sass.js","repository":{"type":"git","url":"git://github.com/sass/node-sass.git"},"scripts":{"install":"node build.js","test":"node scripts/test","coverage":"node scripts/coverage","pretest":"node scripts/lint","prepublish":"node scripts/prepublish"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"engines":{"node":">=0.10.0"},"dependencies":{"chalk":"~0.5.1","get-stdin":"~3.0.0","meow":"^2.0.0","mkdirp":"~0.5.0","mocha":"~1.21.5","nan":"~1.3.0","node-watch":"~0.3.4","object-assign":"~1.0.0","shelljs":"~0.3.0","sinon":"~1.10.3"},"devDependencies":{"coveralls":"^2.11.1","cross-spawn":"^0.2.3","jscoverage":"^0.5.6","jshint":"^2.5.5","mocha-lcov-reporter":"^0.0.1","object-assign":"^1.0.0"},"_id":"node-sass@1.1.0","dist":{"shasum":"f7214c5d77532b8bdbdd6f82767d924007f6964b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-1.1.0.tgz"},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"}],"directories":{}},"1.1.1":{"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"name":"node-sass","description":"wrapper around libsass","version":"1.1.1","homepage":"https://github.com/sass/node-sass","keywords":["sass","css","libsass","scss","style","preprocessor"],"bugs":{"url":"https://github.com/sass/node-sass/issues"},"licenses":[{"type":"MIT","url":"https://github.com/sass/node-sass/blob/master/LICENSE"}],"main":"./sass.js","repository":{"type":"git","url":"git://github.com/sass/node-sass.git"},"scripts":{"install":"node build.js","test":"node scripts/test","coverage":"node scripts/coverage","pretest":"node scripts/lint","prepublish":"node scripts/prepublish"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"engines":{"node":">=0.10.0"},"dependencies":{"chalk":"~0.5.1","get-stdin":"~3.0.0","meow":"^2.0.0","mkdirp":"~0.5.0","mocha":"~1.21.5","nan":"~1.3.0","node-watch":"~0.3.4","object-assign":"~1.0.0","shelljs":"~0.3.0","sinon":"~1.10.3"},"devDependencies":{"coveralls":"^2.11.1","cross-spawn":"^0.2.3","jscoverage":"^0.5.6","jshint":"^2.5.5","mocha-lcov-reporter":"^0.0.1","object-assign":"^1.0.0"},"_id":"node-sass@1.1.1","dist":{"shasum":"460662cb2400592b49032ae564b1cbfa306dda74","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-1.1.1.tgz"},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"}],"directories":{}},"1.1.2":{"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"name":"node-sass","description":"wrapper around libsass","version":"1.1.2","homepage":"https://github.com/sass/node-sass","keywords":["sass","css","libsass","scss","style","preprocessor"],"bugs":{"url":"https://github.com/sass/node-sass/issues"},"licenses":[{"type":"MIT","url":"https://github.com/sass/node-sass/blob/master/LICENSE"}],"main":"./sass.js","repository":{"type":"git","url":"git://github.com/sass/node-sass.git"},"scripts":{"install":"node build.js","test":"node scripts/test","coverage":"node scripts/coverage","pretest":"node scripts/lint","prepublish":"node scripts/prepublish"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"engines":{"node":">=0.10.0"},"dependencies":{"chalk":"~0.5.1","get-stdin":"~3.0.0","meow":"^2.0.0","mkdirp":"~0.5.0","mocha":"~1.21.5","nan":"~1.3.0","node-watch":"~0.3.4","object-assign":"~1.0.0","shelljs":"~0.3.0","sinon":"~1.10.3"},"devDependencies":{"coveralls":"^2.11.1","cross-spawn":"^0.2.3","jscoverage":"^0.5.6","jshint":"^2.5.5","mocha-lcov-reporter":"^0.0.1","object-assign":"^1.0.0"},"gitHead":"c7cac144722427c1d754dcbc412cd108fa342733","_id":"node-sass@1.1.2","_shasum":"009dff5160b954b85ea9f0d3ef94575030ec1120","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"am11","email":"adeelbm@outlook.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"am11","email":"adeelbm@outlook.com"}],"dist":{"shasum":"009dff5160b954b85ea9f0d3ef94575030ec1120","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-1.1.2.tgz"},"directories":{}},"1.1.3":{"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"name":"node-sass","description":"wrapper around libsass","version":"1.1.3","homepage":"https://github.com/sass/node-sass","keywords":["sass","css","libsass","scss","style","preprocessor"],"bugs":{"url":"https://github.com/sass/node-sass/issues"},"licenses":[{"type":"MIT","url":"https://github.com/sass/node-sass/blob/master/LICENSE"}],"main":"./sass.js","repository":{"type":"git","url":"git://github.com/sass/node-sass.git"},"scripts":{"install":"node build.js","test":"node scripts/test","coverage":"node scripts/coverage","pretest":"node scripts/lint","prepublish":"node scripts/prepublish"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"engines":{"node":">=0.10.0"},"dependencies":{"chalk":"~0.5.1","get-stdin":"~3.0.0","meow":"^2.0.0","mkdirp":"~0.5.0","mocha":"~1.21.5","nan":"~1.3.0","node-watch":"~0.3.4","object-assign":"~1.0.0","shelljs":"~0.3.0","sinon":"~1.10.3"},"devDependencies":{"coveralls":"^2.11.1","cross-spawn":"^0.2.3","jscoverage":"^0.5.6","jshint":"^2.5.5","mocha-lcov-reporter":"^0.0.1","object-assign":"^1.0.0"},"gitHead":"766d535b21f49d61511658d140d7ff79d1d233c4","_id":"node-sass@1.1.3","_shasum":"b585ff164369275083df2d498e5982ef99a43cd9","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"am11","email":"adeelbm@outlook.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"am11","email":"adeelbm@outlook.com"}],"dist":{"shasum":"b585ff164369275083df2d498e5982ef99a43cd9","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-1.1.3.tgz"},"directories":{}},"1.1.4":{"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"name":"node-sass","description":"wrapper around libsass","version":"1.1.4","homepage":"https://github.com/sass/node-sass","keywords":["sass","css","libsass","scss","style","preprocessor"],"bugs":{"url":"https://github.com/sass/node-sass/issues"},"licenses":[{"type":"MIT","url":"https://github.com/sass/node-sass/blob/master/LICENSE"}],"main":"./sass.js","repository":{"type":"git","url":"git://github.com/sass/node-sass.git"},"scripts":{"install":"node build.js","test":"node scripts/test","coverage":"node scripts/coverage","pretest":"node scripts/lint","prepublish":"node scripts/prepublish"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"engines":{"node":">=0.10.0"},"dependencies":{"chalk":"~0.5.1","get-stdin":"~3.0.0","meow":"^2.0.0","mkdirp":"~0.5.0","mocha":"~1.21.5","nan":"~1.3.0","node-watch":"~0.3.4","object-assign":"~1.0.0","shelljs":"~0.3.0","sinon":"~1.10.3"},"devDependencies":{"coveralls":"^2.11.1","cross-spawn":"^0.2.3","jscoverage":"^0.5.6","jshint":"^2.5.5","mocha-lcov-reporter":"^0.0.1","object-assign":"^1.0.0"},"_id":"node-sass@1.1.4","dist":{"shasum":"3ba2bf30cdcc94bfb93bfe8cd14ffe5afb0916d8","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-1.1.4.tgz"},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"am11","email":"adeelbm@outlook.com"}],"directories":{}},"1.2.0":{"name":"node-sass","version":"1.2.0","description":"Wrapper around libsass","license":"MIT","homepage":"https://github.com/sass/node-sass","repository":{"type":"git","url":"git://github.com/sass/node-sass"},"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"engines":{"node":">=0.10.0"},"main":"lib/index.js","bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"node scripts/coverage.js","install":"node scripts/install.js","postinstall":"node scripts/build.js","pretest":"jshint bin lib test","test":"mocha test"},"files":["bin","binding.gyp","lib","scripts","src","test"],"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"chalk":"^0.5.1","cross-spawn":"^0.2.3","download":"^3.1.2","download-status":"^2.1.0","gaze":"^0.6.4","get-stdin":"^3.0.0","meow":"^2.0.0","mkdirp":"^0.5.0","mocha":"^2.0.1","nan":"^1.3.0","object-assign":"^1.0.0"},"devDependencies":{"coveralls":"^2.11.1","jscoverage":"^0.5.6","jshint":"^2.5.5","mocha-lcov-reporter":"^0.0.1"},"bugs":{"url":"https://github.com/sass/node-sass/issues"},"_id":"node-sass@1.2.0","dist":{"shasum":"9d9f0599318e6f247b799fb3cf612074d4fc357f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-1.2.0.tgz"},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"am11","email":"adeelbm@outlook.com"}],"directories":{}},"1.2.1":{"name":"node-sass","version":"1.2.1","description":"Wrapper around libsass","license":"MIT","homepage":"https://github.com/sass/node-sass","repository":{"type":"git","url":"git://github.com/sass/node-sass"},"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"engines":{"node":">=0.10.0"},"main":"lib/index.js","bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"node scripts/coverage.js","install":"node scripts/install.js","postinstall":"node scripts/build.js","pretest":"jshint bin lib test","test":"mocha test"},"files":["bin","binding.gyp","lib","scripts","src","test"],"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"chalk":"^0.5.1","cross-spawn":"^0.2.3","download":"^3.1.2","download-status":"^2.1.0","gaze":"^0.6.4","get-stdin":"^3.0.0","meow":"^2.0.0","mkdirp":"^0.5.0","mocha":"^2.0.1","nan":"^1.3.0","object-assign":"^1.0.0"},"devDependencies":{"coveralls":"^2.11.1","jscoverage":"^0.5.6","jshint":"^2.5.5","mocha-lcov-reporter":"^0.0.1"},"bugs":{"url":"https://github.com/sass/node-sass/issues"},"_id":"node-sass@1.2.1","dist":{"shasum":"eba7a97f98827f0baa66443937e29cf15487894d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-1.2.1.tgz"},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"am11","email":"adeelbm@outlook.com"}],"directories":{}},"1.2.2":{"name":"node-sass","version":"1.2.2","description":"Wrapper around libsass","license":"MIT","homepage":"https://github.com/sass/node-sass","repository":{"type":"git","url":"git://github.com/sass/node-sass"},"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"engines":{"node":">=0.10.0"},"main":"lib/index.js","bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"node scripts/coverage.js","install":"node scripts/install.js","postinstall":"node scripts/build.js","pretest":"jshint bin lib test","test":"mocha test"},"files":["bin","binding.gyp","lib","scripts","src","test"],"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"chalk":"^0.5.1","cross-spawn":"^0.2.3","download":"^3.1.2","download-status":"^2.1.0","gaze":"^0.5.1","get-stdin":"^3.0.0","meow":"^2.0.0","mkdirp":"^0.5.0","mocha":"^2.0.1","nan":"^1.3.0","object-assign":"^1.0.0"},"devDependencies":{"coveralls":"^2.11.1","jscoverage":"^0.5.6","jshint":"^2.5.5","mocha-lcov-reporter":"^0.0.1"},"bugs":{"url":"https://github.com/sass/node-sass/issues"},"_id":"node-sass@1.2.2","dist":{"shasum":"4023de13deff17f0868e557d76e49096f010b186","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-1.2.2.tgz"},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"am11","email":"adeelbm@outlook.com"}],"directories":{}},"1.2.3":{"name":"node-sass","version":"1.2.3","description":"Wrapper around libsass","license":"MIT","homepage":"https://github.com/sass/node-sass","repository":{"type":"git","url":"git://github.com/sass/node-sass"},"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"engines":{"node":">=0.10.0"},"main":"lib/index.js","bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"node scripts/coverage.js","install":"node scripts/install.js","postinstall":"node scripts/build.js","pretest":"jshint bin lib test","test":"mocha test"},"files":["bin","binding.gyp","lib","scripts","src","test"],"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"chalk":"^0.5.1","cross-spawn":"^0.2.3","gaze":"^0.5.1","get-stdin":"^3.0.0","meow":"^2.0.0","mkdirp":"^0.5.0","mocha":"^2.0.1","nan":"^1.3.0","object-assign":"^1.0.0","replace-ext":"0.0.1","request":"^2.48.0","shelljs":"^0.3.0"},"devDependencies":{"coveralls":"^2.11.1","jscoverage":"^0.5.6","jshint":"^2.5.5","mocha-lcov-reporter":"^0.0.1"},"bugs":{"url":"https://github.com/sass/node-sass/issues"},"_id":"node-sass@1.2.3","dist":{"shasum":"1e765edc5126ad18a46ec2291863d08bc7f7a4f2","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-1.2.3.tgz"},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"am11","email":"adeelbm@outlook.com"}],"directories":{}},"2.0.0-beta":{"name":"node-sass","version":"2.0.0-beta","libsass":"3.1.0-beta","description":"Wrapper around libsass","license":"MIT","homepage":"https://github.com/sass/node-sass","repository":{"type":"git","url":"https://github.com/sass/node-sass"},"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"engines":{"node":">=0.10.0"},"main":"lib/index.js","bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"node scripts/coverage.js","install":"node scripts/install.js","postinstall":"node scripts/build.js","pretest":"jshint bin lib test","test":"mocha test"},"files":["bin","binding.gyp","lib","scripts","src","test"],"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"chalk":"^0.5.1","cross-spawn":"^0.2.3","gaze":"^0.5.1","get-stdin":"^3.0.0","meow":"^2.0.0","mkdirp":"^0.5.0","mocha":"^2.0.1","nan":"^1.3.0","object-assign":"^2.0.0","replace-ext":"0.0.1","request":"^2.48.0","shelljs":"^0.3.0"},"devDependencies":{"coveralls":"^2.11.1","jscoverage":"^0.5.6","jshint":"^2.5.5","mocha-lcov-reporter":"^0.0.1"},"gitHead":"7f17da354852ccb9575a8f5ebeb9995789f29d9f","bugs":{"url":"https://github.com/sass/node-sass/issues"},"_id":"node-sass@2.0.0-beta","_shasum":"33e17f5e92c2fa8ab6c96d406ad95c70450d5e72","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"am11","email":"adeelbm@outlook.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"am11","email":"adeelbm@outlook.com"}],"dist":{"shasum":"33e17f5e92c2fa8ab6c96d406ad95c70450d5e72","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-2.0.0-beta.tgz"},"directories":{}},"2.0.0":{"name":"node-sass","version":"2.0.0","libsass":"3.1.0","description":"Wrapper around libsass","license":"MIT","homepage":"https://github.com/sass/node-sass","repository":{"type":"git","url":"https://github.com/sass/node-sass"},"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"engines":{"node":">=0.10.0"},"main":"lib/index.js","bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"node scripts/coverage.js","install":"node scripts/install.js","postinstall":"node scripts/build.js","pretest":"jshint bin lib test","test":"mocha test"},"files":["bin","binding.gyp","lib","scripts","src","test"],"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"chalk":"^0.5.1","cross-spawn":"^0.2.6","gaze":"^0.5.1","get-stdin":"^4.0.1","meow":"^3.0.0","mkdirp":"^0.5.0","mocha":"^2.1.0","nan":"^1.6.2","npmconf":"^2.1.1","object-assign":"^2.0.0","replace-ext":"0.0.1","request":"^2.53.0","sass-graph":"^1.0.3","semver":"^4.2.2","shelljs":"^0.3.0"},"devDependencies":{"coveralls":"^2.11.2","jscoverage":"^0.5.9","jshint":"^2.6.0","mocha-lcov-reporter":"^0.0.1","pangyp":"^2.1.0"},"gitHead":"eaee6ff3d87f3e68554f9183bd41b28e2fc5629f","bugs":{"url":"https://github.com/sass/node-sass/issues"},"_id":"node-sass@2.0.0","_shasum":"f793f421e45e2caad2e3879a0e8877f66b21444b","_from":".","_npmVersion":"2.5.1","_nodeVersion":"1.2.0","_npmUser":{"name":"am11","email":"adeelbm@outlook.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"am11","email":"adeelbm@outlook.com"}],"dist":{"shasum":"f793f421e45e2caad2e3879a0e8877f66b21444b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-2.0.0.tgz"},"directories":{}},"2.0.1":{"name":"node-sass","version":"2.0.1","libsass":"3.1.0","description":"Wrapper around libsass","license":"MIT","homepage":"https://github.com/sass/node-sass","repository":{"type":"git","url":"https://github.com/sass/node-sass"},"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"engines":{"node":">=0.10.0"},"main":"lib/index.js","bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"node scripts/coverage.js","install":"node scripts/install.js","postinstall":"node scripts/build.js","pretest":"jshint bin lib test","test":"mocha test"},"files":["bin","binding.gyp","lib","scripts","src","test"],"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"chalk":"^0.5.1","cross-spawn":"^0.2.6","gaze":"^0.5.1","get-stdin":"^4.0.1","meow":"^3.0.0","mkdirp":"^0.5.0","mocha":"^2.1.0","nan":"^1.6.2","npmconf":"^2.1.1","object-assign":"^2.0.0","replace-ext":"0.0.1","request":"^2.53.0","sass-graph":"^1.0.3","semver":"^4.2.2","shelljs":"^0.3.0"},"devDependencies":{"coveralls":"^2.11.2","jscoverage":"^0.5.9","jshint":"^2.6.0","mocha-lcov-reporter":"^0.0.1","pangyp":"^2.1.0"},"gitHead":"5bff1c73369aa37dd543c2d760952b1275f23c85","bugs":{"url":"https://github.com/sass/node-sass/issues"},"_id":"node-sass@2.0.1","_shasum":"28101ce16fae0584bea95242b400b2cc1d958b83","_from":".","_npmVersion":"2.5.1","_nodeVersion":"1.2.0","_npmUser":{"name":"am11","email":"adeelbm@outlook.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"am11","email":"adeelbm@outlook.com"}],"dist":{"shasum":"28101ce16fae0584bea95242b400b2cc1d958b83","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-2.0.1.tgz"},"directories":{}},"3.0.0-alpha.0":{"name":"node-sass","version":"3.0.0-alpha.0","libsass":"3.1.0","description":"Wrapper around libsass","license":"MIT","homepage":"https://github.com/sass/node-sass","repository":{"type":"git","url":"https://github.com/sass/node-sass"},"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"engines":{"node":">=0.10.0"},"main":"lib/index.js","bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"node scripts/coverage.js","install":"node scripts/install.js","postinstall":"node scripts/build.js","pretest":"jshint bin lib test","test":"mocha test"},"files":["bin","binding.gyp","lib","scripts","src"],"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"chalk":"^1.0.0","gaze":"^0.5.1","get-stdin":"^4.0.1","meow":"^3.1.0","mkdirp":"^0.5.0","nan":"^1.7.0","npmconf":"^2.1.1","pangyp":"^2.1.0","request":"^2.53.0","sass-graph":"^1.0.3"},"devDependencies":{"coveralls":"^2.11.2","cross-spawn":"^0.2.6","jscoverage":"^0.5.9","jshint":"^2.6.3","mocha":"^2.2.1","mocha-lcov-reporter":"^0.0.2"},"gitHead":"d72463da6be026ae41d124c0ab6d613259ed1dad","bugs":{"url":"https://github.com/sass/node-sass/issues"},"_id":"node-sass@3.0.0-alpha.0","_shasum":"bad2073ebfc2c6c3f3bc354fa5059f5437babf02","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"am11","email":"adeelbm@outlook.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"am11","email":"adeelbm@outlook.com"}],"dist":{"shasum":"bad2073ebfc2c6c3f3bc354fa5059f5437babf02","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-3.0.0-alpha.0.tgz"},"directories":{}},"3.0.0-beta.2":{"name":"node-sass","version":"3.0.0-beta.2","libsass":"3.2.0-beta.2","description":"Wrapper around libsass","license":"MIT","homepage":"https://github.com/sass/node-sass","repository":{"type":"git","url":"https://github.com/sass/node-sass"},"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"engines":{"node":">=0.10.0"},"main":"lib/index.js","bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"node scripts/coverage.js","install":"node scripts/install.js","postinstall":"node scripts/build.js","pretest":"jshint bin lib scripts test","test":"mocha test"},"files":["bin","binding.gyp","lib","libsass.gyp","scripts","src"],"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"chalk":"^1.0.0","gaze":"^0.5.1","get-stdin":"^4.0.1","meow":"^3.1.0","mkdirp":"^0.5.0","nan":"^1.7.0","npmconf":"^2.1.1","pangyp":"^2.1.0","request":"^2.53.0","sass-graph":"^1.2.0"},"devDependencies":{"coveralls":"^2.11.2","cross-spawn":"^0.2.6","jscoverage":"^0.5.9","jshint":"^2.6.3","mocha":"^2.2.1","mocha-lcov-reporter":"^0.0.2"},"gitHead":"a0bd310482edc071259b16c656456a64a5c28dd0","bugs":{"url":"https://github.com/sass/node-sass/issues"},"_id":"node-sass@3.0.0-beta.2","_shasum":"23a2d3f0e19f31776b9edd8cc50d2eed298ed1fc","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"am11","email":"adeelbm@outlook.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"am11","email":"adeelbm@outlook.com"}],"dist":{"shasum":"23a2d3f0e19f31776b9edd8cc50d2eed298ed1fc","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-3.0.0-beta.2.tgz"},"directories":{}},"3.0.0-beta.3":{"name":"node-sass","version":"3.0.0-beta.3","libsass":"3.2.0-beta.2","description":"Wrapper around libsass","license":"MIT","homepage":"https://github.com/sass/node-sass","repository":{"type":"git","url":"https://github.com/sass/node-sass"},"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"engines":{"node":">=0.10.0"},"main":"lib/index.js","bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"node scripts/coverage.js","install":"node scripts/install.js","postinstall":"node scripts/build.js","pretest":"jshint bin lib scripts test","test":"mocha test"},"files":["bin","binding.gyp","lib","scripts","src"],"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"chalk":"^1.0.0","gaze":"^0.5.1","get-stdin":"^4.0.1","meow":"^3.1.0","mkdirp":"^0.5.0","nan":"^1.7.0","npmconf":"^2.1.1","pangyp":"^2.1.0","request":"^2.53.0","sass-graph":"^1.2.0"},"devDependencies":{"coveralls":"^2.11.2","cross-spawn":"^0.2.6","jscoverage":"^0.5.9","jshint":"^2.6.3","mocha":"^2.2.1","mocha-lcov-reporter":"^0.0.2"},"gitHead":"f9a834858e06d5121f2e211acaf79904a0f582a3","bugs":{"url":"https://github.com/sass/node-sass/issues"},"_id":"node-sass@3.0.0-beta.3","_shasum":"385f17ae803a54b0d2dd6096bdcfbd8379622188","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"am11","email":"adeelbm@outlook.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"am11","email":"adeelbm@outlook.com"}],"dist":{"shasum":"385f17ae803a54b0d2dd6096bdcfbd8379622188","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-3.0.0-beta.3.tgz"},"directories":{}},"3.0.0-beta.4":{"name":"node-sass","version":"3.0.0-beta.4","libsass":"3.2.0-beta.2","description":"Wrapper around libsass","license":"MIT","homepage":"https://github.com/sass/node-sass","repository":{"type":"git","url":"https://github.com/sass/node-sass"},"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"engines":{"node":">=0.10.0"},"main":"lib/index.js","bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"node scripts/coverage.js","install":"node scripts/install.js","postinstall":"node scripts/build.js","pretest":"jshint bin lib scripts test","test":"mocha test"},"files":["bin","binding.gyp","lib","scripts","src"],"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"chalk":"^1.0.0","gaze":"^0.5.1","get-stdin":"^4.0.1","meow":"^3.1.0","mkdirp":"^0.5.0","nan":"^1.7.0","npmconf":"^2.1.1","pangyp":"^2.1.0","request":"^2.53.0","sass-graph":"^1.2.0"},"devDependencies":{"coveralls":"^2.11.2","cross-spawn":"^0.2.6","jscoverage":"^0.5.9","jshint":"^2.6.3","mocha":"^2.2.1","mocha-lcov-reporter":"^0.0.2"},"gitHead":"23f19bce378f4758bf15c2be36ae83141ada6f08","bugs":{"url":"https://github.com/sass/node-sass/issues"},"_id":"node-sass@3.0.0-beta.4","_shasum":"2c4c62f374f013f1a56838a72a450bd42f30d4b2","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"am11","email":"adeelbm@outlook.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"am11","email":"adeelbm@outlook.com"}],"dist":{"shasum":"2c4c62f374f013f1a56838a72a450bd42f30d4b2","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-3.0.0-beta.4.tgz"},"directories":{}},"2.1.0":{"name":"node-sass","version":"2.1.0","libsass":"3.1.0","description":"Wrapper around libsass","license":"MIT","homepage":"https://github.com/sass/node-sass","repository":{"type":"git","url":"https://github.com/sass/node-sass"},"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"engines":{"node":">=0.10.0"},"main":"lib/index.js","bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"node scripts/coverage.js","install":"node scripts/install.js","postinstall":"node scripts/build.js","pretest":"jshint bin lib test","test":"mocha test"},"files":["bin","binding.gyp","lib","scripts","src","test"],"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"chalk":"^0.5.1","cross-spawn":"^0.2.6","gaze":"^0.5.1","get-stdin":"^4.0.1","meow":"^3.0.0","mkdirp":"^0.5.0","mocha":"^2.1.0","nan":"^1.6.2","npmconf":"^2.1.1","object-assign":"^2.0.0","replace-ext":"0.0.1","request":"^2.53.0","sass-graph":"^1.0.3","semver":"^4.2.2","shelljs":"^0.3.0","pangyp":"^2.1.0"},"devDependencies":{"coveralls":"^2.11.2","jscoverage":"^0.5.9","jshint":"^2.6.0","mocha-lcov-reporter":"^0.0.1"},"gitHead":"23374b41a9aa26e05a5c6d8a6b2734f83a939bdf","bugs":{"url":"https://github.com/sass/node-sass/issues"},"_id":"node-sass@2.1.0","_shasum":"2f13f4b30a95decf1637ace2b46149b8c21a60e6","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"am11","email":"adeelbm@outlook.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"am11","email":"adeelbm@outlook.com"}],"dist":{"shasum":"2f13f4b30a95decf1637ace2b46149b8c21a60e6","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-2.1.0.tgz"},"directories":{}},"2.1.1":{"name":"node-sass","version":"2.1.1","libsass":"3.1.0","description":"Wrapper around libsass","license":"MIT","homepage":"https://github.com/sass/node-sass","repository":{"type":"git","url":"https://github.com/sass/node-sass"},"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"engines":{"node":">=0.10.0"},"main":"lib/index.js","bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"node scripts/coverage.js","install":"node scripts/install.js","postinstall":"node scripts/build.js","pretest":"jshint bin lib test","test":"mocha test"},"files":["bin","binding.gyp","lib","scripts","src","test"],"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"chalk":"^0.5.1","cross-spawn":"^0.2.6","gaze":"^0.5.1","get-stdin":"^4.0.1","meow":"^3.0.0","mkdirp":"^0.5.0","mocha":"^2.1.0","nan":"^1.6.2","npmconf":"^2.1.1","object-assign":"^2.0.0","replace-ext":"0.0.1","request":"^2.53.0","sass-graph":"^1.0.3","semver":"^4.2.2","shelljs":"^0.3.0","pangyp":"^2.1.0"},"devDependencies":{"coveralls":"^2.11.2","jscoverage":"^0.5.9","jshint":"^2.6.0","mocha-lcov-reporter":"^0.0.1"},"gitHead":"226861c6a186291f9e957697f1115e1ddb4a4202","bugs":{"url":"https://github.com/sass/node-sass/issues"},"_id":"node-sass@2.1.1","_shasum":"32847dceef9ef217bb68138ed5d3e2a72a6765fb","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"am11","email":"adeelbm@outlook.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"am11","email":"adeelbm@outlook.com"}],"dist":{"shasum":"32847dceef9ef217bb68138ed5d3e2a72a6765fb","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-2.1.1.tgz"},"directories":{}},"3.0.0-beta.5":{"name":"node-sass","version":"3.0.0-beta.5","libsass":"3.2.0-beta.5","description":"Wrapper around libsass","license":"MIT","homepage":"https://github.com/sass/node-sass","repository":{"type":"git","url":"https://github.com/sass/node-sass"},"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"engines":{"node":">=0.10.0"},"main":"lib/index.js","bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"node scripts/coverage.js","install":"node scripts/install.js","postinstall":"node scripts/build.js","pretest":"jshint bin lib scripts test","test":"mocha test"},"files":["bin","binding.gyp","lib","scripts","src"],"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"chalk":"^1.0.0","gaze":"^0.5.1","get-stdin":"^4.0.1","meow":"^3.1.0","mkdirp":"^0.5.0","nan":"^1.7.0","npmconf":"^2.1.1","pangyp":"^2.1.0","request":"^2.55.0","sass-graph":"^1.2.0"},"devDependencies":{"coveralls":"^2.11.2","cross-spawn":"^0.2.8","jscoverage":"^0.5.9","jshint":"^2.6.3","mocha":"^2.2.1","mocha-lcov-reporter":"^0.0.2"},"gitHead":"8799d95110dbf323f97cb71ba08b755f2be70ae9","bugs":{"url":"https://github.com/sass/node-sass/issues"},"_id":"node-sass@3.0.0-beta.5","_shasum":"a007e06f214cce0cd88a0b483972a568b44a105b","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"am11","email":"adeelbm@outlook.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"am11","email":"adeelbm@outlook.com"}],"dist":{"shasum":"a007e06f214cce0cd88a0b483972a568b44a105b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-3.0.0-beta.5.tgz"},"directories":{}},"3.0.0-beta.7":{"name":"node-sass","version":"3.0.0-beta.7","libsass":"3.2.0-beta.6","description":"Wrapper around libsass","license":"MIT","homepage":"https://github.com/sass/node-sass","repository":{"type":"git","url":"https://github.com/sass/node-sass"},"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"engines":{"node":">=0.10.0"},"main":"lib/index.js","bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"node scripts/coverage.js","install":"node scripts/install.js","postinstall":"node scripts/build.js","pretest":"jshint bin lib scripts test","test":"mocha test"},"files":["bin","binding.gyp","lib","scripts","src"],"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"async-foreach":"^0.1.3","chalk":"^1.0.0","gaze":"^0.5.1","get-stdin":"^4.0.1","glob":"^5.0.3","meow":"^3.1.0","mkdirp":"^0.5.0","nan":"^1.7.0","npmconf":"^2.1.1","pangyp":"^2.1.0","request":"^2.55.0","sass-graph":"^1.2.0"},"devDependencies":{"coveralls":"^2.11.2","cross-spawn":"^0.2.8","jscoverage":"^0.5.9","jshint":"^2.6.3","mocha":"^2.2.1","mocha-lcov-reporter":"^0.0.2","rimraf":"^2.3.2"},"gitHead":"6c55239dd150a85f9474d07e238e6b38f9618504","bugs":{"url":"https://github.com/sass/node-sass/issues"},"_id":"node-sass@3.0.0-beta.7","_shasum":"5b348cea2381d0c4575161ed81267a1299f7b095","_from":".","_npmVersion":"2.6.1","_nodeVersion":"0.10.29","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"am11","email":"adeelbm@outlook.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"dist":{"shasum":"5b348cea2381d0c4575161ed81267a1299f7b095","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-3.0.0-beta.7.tgz"},"directories":{}},"3.0.0":{"name":"node-sass","version":"3.0.0","libsass":"3.2.2","description":"Wrapper around libsass","license":"MIT","homepage":"https://github.com/sass/node-sass","repository":{"type":"git","url":"https://github.com/sass/node-sass"},"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"engines":{"node":">=0.10.0"},"main":"lib/index.js","nodeSassConfig":{"binarySite":"https://github.com/sass/node-sass/releases/download"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"node scripts/coverage.js","install":"node scripts/install.js","postinstall":"node scripts/build.js","pretest":"jshint bin lib scripts test","test":"mocha test"},"files":["bin","binding.gyp","lib","scripts","src"],"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"async-foreach":"^0.1.3","chalk":"^1.0.0","gaze":"^0.5.1","get-stdin":"^4.0.1","glob":"^5.0.3","meow":"^3.1.0","mkdirp":"^0.5.0","nan":"^1.8.4","npmconf":"^2.1.1","pangyp":"git+https://github.com/am11/pangyp","request":"^2.55.0","sass-graph":"^2.0.0"},"devDependencies":{"coveralls":"^2.11.2","cross-spawn":"^0.2.8","jscoverage":"^0.5.9","jshint":"^2.6.3","mocha":"^2.2.1","mocha-lcov-reporter":"^0.0.2","rimraf":"^2.3.2"},"gitHead":"16be724d33a0768519fb30a80ba3d625af9bcb2e","bugs":{"url":"https://github.com/sass/node-sass/issues"},"_id":"node-sass@3.0.0","_shasum":"40e1c5a1f3ba55d9efcc6ff2e2f06cf2f937d70d","_from":".","_npmVersion":"2.6.1","_nodeVersion":"0.10.29","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"am11","email":"adeelbm@outlook.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"dist":{"shasum":"40e1c5a1f3ba55d9efcc6ff2e2f06cf2f937d70d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-3.0.0.tgz"},"directories":{}},"3.1.0":{"name":"node-sass","version":"3.1.0","libsass":"3.2.4","description":"Wrapper around libsass","license":"MIT","homepage":"https://github.com/sass/node-sass","repository":{"type":"git","url":"https://github.com/sass/node-sass"},"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"engines":{"node":">=0.10.0"},"main":"lib/index.js","nodeSassConfig":{"binarySite":"https://github.com/sass/node-sass/releases/download"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"node scripts/coverage.js","install":"node scripts/install.js","postinstall":"node scripts/build.js","pretest":"jshint bin lib scripts test","test":"mocha test"},"files":["bin","binding.gyp","lib","scripts","src"],"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"async-foreach":"^0.1.3","chalk":"^1.0.0","gaze":"^0.5.1","get-stdin":"^4.0.1","glob":"^5.0.3","meow":"^3.1.0","mkdirp":"^0.5.0","nan":"^1.8.4","npmconf":"^2.1.1","pangyp":"^2.2.0","request":"^2.55.0","sass-graph":"^2.0.0"},"devDependencies":{"coveralls":"^2.11.2","cross-spawn":"^0.2.8","jscoverage":"^0.5.9","jshint":"^2.6.3","mocha":"^2.2.1","mocha-lcov-reporter":"^0.0.2","rimraf":"^2.3.2"},"gitHead":"1a2a9d3d80e32734a9ec9d313fa2c5831ed23ecd","bugs":{"url":"https://github.com/sass/node-sass/issues"},"_id":"node-sass@3.1.0","_shasum":"e1d95a38cf95a59d7d32b95ecc258c5ca1c2c2cb","_from":".","_npmVersion":"2.7.4","_nodeVersion":"0.12.2","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"am11","email":"adeelbm@outlook.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"dist":{"shasum":"e1d95a38cf95a59d7d32b95ecc258c5ca1c2c2cb","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-3.1.0.tgz"},"directories":{}},"3.1.1":{"name":"node-sass","version":"3.1.1","libsass":"3.2.4","description":"Wrapper around libsass","license":"MIT","homepage":"https://github.com/sass/node-sass","repository":{"type":"git","url":"https://github.com/sass/node-sass"},"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"engines":{"node":">=0.10.0"},"main":"lib/index.js","nodeSassConfig":{"binarySite":"https://github.com/sass/node-sass/releases/download"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"node scripts/coverage.js","install":"node scripts/install.js","postinstall":"node scripts/build.js","pretest":"jshint bin lib scripts test","test":"mocha test"},"files":["bin","binding.gyp","lib","scripts","src"],"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"async-foreach":"^0.1.3","chalk":"^1.0.0","gaze":"^0.5.1","get-stdin":"^4.0.1","glob":"^5.0.3","meow":"^3.1.0","mkdirp":"^0.5.0","nan":"^1.8.4","npmconf":"^2.1.1","pangyp":"^2.2.0","request":"^2.55.0","sass-graph":"^2.0.0"},"devDependencies":{"coveralls":"^2.11.2","cross-spawn":"^0.2.8","jscoverage":"^0.5.9","jshint":"^2.6.3","mocha":"^2.2.1","mocha-lcov-reporter":"^0.0.2","rimraf":"^2.3.2"},"gitHead":"58a85a022890b077d87957a993e49a9cfaecbf4f","bugs":{"url":"https://github.com/sass/node-sass/issues"},"_id":"node-sass@3.1.1","_shasum":"f4415058b5b587b59e2c8645f95a4617a12e68aa","_from":".","_npmVersion":"2.6.1","_nodeVersion":"0.10.29","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"am11","email":"adeelbm@outlook.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"dist":{"shasum":"f4415058b5b587b59e2c8645f95a4617a12e68aa","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-3.1.1.tgz"},"directories":{}},"3.1.2":{"name":"node-sass","version":"3.1.2","libsass":"3.2.4","description":"Wrapper around libsass","license":"MIT","homepage":"https://github.com/sass/node-sass","repository":{"type":"git","url":"https://github.com/sass/node-sass"},"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"engines":{"node":">=0.10.0"},"main":"lib/index.js","nodeSassConfig":{"binarySite":"https://github.com/sass/node-sass/releases/download"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"node scripts/coverage.js","install":"node scripts/install.js","postinstall":"node scripts/build.js","pretest":"jshint bin lib scripts test","test":"mocha test"},"files":["bin","binding.gyp","lib","scripts","src"],"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"async-foreach":"^0.1.3","chalk":"^1.0.0","gaze":"^0.5.1","get-stdin":"^4.0.1","glob":"^5.0.3","meow":"^3.1.0","mkdirp":"^0.5.0","nan":"^1.8.4","npmconf":"^2.1.1","pangyp":"^2.2.0","request":"^2.55.0","sass-graph":"^2.0.0"},"devDependencies":{"coveralls":"^2.11.2","cross-spawn":"^0.2.8","jscoverage":"^0.5.9","jshint":"^2.6.3","mocha":"^2.2.1","mocha-lcov-reporter":"^0.0.2","rimraf":"^2.3.2"},"gitHead":"411a94c1a1473d9f5f4c8e46764546a2974f634d","bugs":{"url":"https://github.com/sass/node-sass/issues"},"_id":"node-sass@3.1.2","_shasum":"d011fb725056f443ae56af5709c0866ccdc07765","_from":".","_npmVersion":"2.6.1","_nodeVersion":"0.10.29","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"am11","email":"adeelbm@outlook.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"dist":{"shasum":"d011fb725056f443ae56af5709c0866ccdc07765","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-3.1.2.tgz"},"directories":{}},"3.2.0":{"name":"node-sass","version":"3.2.0","libsass":"3.2.5","description":"Wrapper around libsass","license":"MIT","homepage":"https://github.com/sass/node-sass","repository":{"type":"git","url":"git+https://github.com/sass/node-sass.git"},"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"engines":{"node":">=0.10.0"},"main":"lib/index.js","nodeSassConfig":{"binarySite":"https://github.com/sass/node-sass/releases/download"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"node scripts/coverage.js","install":"node scripts/install.js","postinstall":"node scripts/build.js","pretest":"jshint bin lib scripts test","test":"mocha test"},"files":["bin","binding.gyp","lib","scripts","src"],"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"async-foreach":"^0.1.3","chalk":"^1.0.0","gaze":"^0.5.1","get-stdin":"^4.0.1","glob":"^5.0.3","meow":"^3.1.0","mkdirp":"^0.5.0","nan":"^1.8.4","npmconf":"^2.1.1","pangyp":"^2.2.0","request":"^2.55.0","sass-graph":"^2.0.0"},"devDependencies":{"coveralls":"^2.11.2","cross-spawn":"^0.2.8","jscoverage":"^0.5.9","jshint":"^2.6.3","mocha":"^2.2.1","mocha-lcov-reporter":"^0.0.2","rimraf":"^2.3.2"},"gitHead":"6343cea64ed6d33e2f37ff388888f6a3a189c8a8","bugs":{"url":"https://github.com/sass/node-sass/issues"},"_id":"node-sass@3.2.0","_shasum":"5b041a6a063863587f7c59c81cf3b6a04aff3510","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"am11","email":"adeelbm@outlook.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"dist":{"shasum":"5b041a6a063863587f7c59c81cf3b6a04aff3510","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-3.2.0.tgz"},"directories":{}},"3.3.0":{"name":"node-sass","version":"3.3.0","libsass":"3.2.5","description":"Wrapper around libsass","license":"MIT","homepage":"https://github.com/sass/node-sass","repository":{"type":"git","url":"git+https://github.com/sass/node-sass.git"},"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"engines":{"node":">=0.10.0"},"main":"lib/index.js","nodeSassConfig":{"binarySite":"https://github.com/sass/node-sass/releases/download"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"node scripts/coverage.js","install":"node scripts/install.js","postinstall":"node scripts/build.js","pretest":"jshint bin lib scripts test","test":"mocha test"},"files":["bin","binding.gyp","lib","scripts","src"],"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"async-foreach":"^0.1.3","chalk":"^1.1.1","gaze":"^0.5.1","get-stdin":"^4.0.1","glob":"^5.0.14","meow":"^3.3.0","mkdirp":"^0.5.1","nan":"^2.0.5","npmconf":"^2.1.2","pangyp":"^2.3.0","request":"^2.61.0","sass-graph":"^2.0.1"},"devDependencies":{"coveralls":"^2.11.4","cross-spawn":"^2.0.0","istanbul":"^0.3.18","jshint":"^2.8.0","mocha":"^2.2.5","mocha-lcov-reporter":"^0.0.2","rimraf":"^2.4.2"},"gitHead":"1da76f646ce1688b9c7216e560b42aac5bc928b7","bugs":{"url":"https://github.com/sass/node-sass/issues"},"_id":"node-sass@3.3.0","_shasum":"2bb24b20a4e00dce0b46ca0055e76529ac41bda2","_from":".","_npmVersion":"2.13.3","_nodeVersion":"3.2.0","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"am11","email":"adeelbm@outlook.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"dist":{"shasum":"2bb24b20a4e00dce0b46ca0055e76529ac41bda2","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-3.3.0.tgz"},"directories":{}},"3.3.1":{"name":"node-sass","version":"3.3.1","libsass":"3.2.5","description":"Wrapper around libsass","license":"MIT","homepage":"https://github.com/sass/node-sass","repository":{"type":"git","url":"git+https://github.com/sass/node-sass.git"},"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"engines":{"node":">=0.10.0"},"main":"lib/index.js","nodeSassConfig":{"binarySite":"https://github.com/sass/node-sass/releases/download"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"node scripts/coverage.js","install":"node scripts/install.js","postinstall":"node scripts/build.js","pretest":"jshint bin lib scripts test","test":"mocha test"},"files":["bin","binding.gyp","lib","scripts","src"],"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"async-foreach":"^0.1.3","chalk":"^1.1.1","gaze":"^0.5.1","get-stdin":"^4.0.1","glob":"^5.0.14","meow":"^3.3.0","mkdirp":"^0.5.1","nan":"^2.0.5","npmconf":"^2.1.2","pangyp":"^2.3.0","request":"^2.61.0","sass-graph":"^2.0.1","fsevents":"0.3.7"},"optionalDependencies":{"fsevents":"0.3.7"},"devDependencies":{"coveralls":"^2.11.4","cross-spawn":"^2.0.0","istanbul":"^0.3.18","jshint":"^2.8.0","mocha":"^2.2.5","mocha-lcov-reporter":"^0.0.2","rimraf":"^2.4.2"},"gitHead":"c6c67acca7693b577a5a326425f4eb51d4111694","bugs":{"url":"https://github.com/sass/node-sass/issues"},"_id":"node-sass@3.3.1","_shasum":"50ccf91a2e99f7756e38f5cdfe8fa25c3b7f7e32","_from":".","_npmVersion":"2.13.1","_nodeVersion":"0.10.29","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"am11","email":"adeelbm@outlook.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"dist":{"shasum":"50ccf91a2e99f7756e38f5cdfe8fa25c3b7f7e32","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-3.3.1.tgz"},"directories":{}},"3.3.2":{"name":"node-sass","version":"3.3.2","libsass":"3.2.5","description":"Wrapper around libsass","license":"MIT","homepage":"https://github.com/sass/node-sass","repository":{"type":"git","url":"git+https://github.com/sass/node-sass.git"},"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"engines":{"node":">=0.10.0"},"main":"lib/index.js","nodeSassConfig":{"binarySite":"https://github.com/sass/node-sass/releases/download"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"node scripts/coverage.js","install":"node scripts/install.js","postinstall":"node scripts/build.js","pretest":"jshint bin lib scripts test","test":"mocha test"},"files":["bin","binding.gyp","lib","scripts","src"],"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"async-foreach":"^0.1.3","chalk":"^1.1.1","gaze":"^0.5.1","get-stdin":"^4.0.1","glob":"^5.0.14","meow":"^3.3.0","mkdirp":"^0.5.1","nan":"^2.0.8","npmconf":"^2.1.2","pangyp":"^2.3.0","request":"^2.61.0","sass-graph":"^2.0.1"},"devDependencies":{"coveralls":"^2.11.4","cross-spawn":"^2.0.0","istanbul":"^0.3.18","jshint":"^2.8.0","mocha":"^2.2.5","mocha-lcov-reporter":"^0.0.2","rimraf":"^2.4.2"},"gitHead":"7d416cda9d2d2b2317ce4a41a6460f4c5867f147","bugs":{"url":"https://github.com/sass/node-sass/issues"},"_id":"node-sass@3.3.2","_shasum":"2ce74e3fcd56c0c14eb2a9214af83f128d7fa54a","_from":".","_npmVersion":"2.13.1","_nodeVersion":"0.10.29","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"maintainers":[{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"am11","email":"adeelbm@outlook.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"dist":{"shasum":"2ce74e3fcd56c0c14eb2a9214af83f128d7fa54a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-3.3.2.tgz"},"directories":{}},"3.3.3":{"name":"node-sass","version":"3.3.3","libsass":"3.2.5","description":"Wrapper around libsass","license":"MIT","homepage":"https://github.com/sass/node-sass","repository":{"type":"git","url":"git+https://github.com/sass/node-sass.git"},"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"engines":{"node":">=0.10.0"},"main":"lib/index.js","nodeSassConfig":{"binarySite":"https://github.com/sass/node-sass/releases/download"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"node scripts/coverage.js","install":"node scripts/install.js","postinstall":"node scripts/build.js","pretest":"jshint bin lib scripts test","test":"mocha test"},"files":["bin","binding.gyp","lib","scripts","src"],"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"async-foreach":"^0.1.3","chalk":"^1.1.1","cross-spawn":"^2.0.0","gaze":"^0.5.1","get-stdin":"^4.0.1","glob":"^5.0.14","meow":"^3.3.0","mkdirp":"^0.5.1","nan":"^2.0.8","npmconf":"^2.1.2","node-gyp":"^3.0.1","request":"^2.61.0","sass-graph":"^2.0.1"},"devDependencies":{"coveralls":"^2.11.4","istanbul":"^0.3.18","jshint":"^2.8.0","mocha":"^2.2.5","mocha-lcov-reporter":"^0.0.2","rimraf":"^2.4.2"},"gitHead":"d62f59f4a051b6d538e20f66a5d1ebcf21538ded","bugs":{"url":"https://github.com/sass/node-sass/issues"},"_id":"node-sass@3.3.3","_shasum":"620fe2e3149993405ec1b517f8487b6e643b228a","_from":".","_npmVersion":"2.13.5","_nodeVersion":"4.0.0-pre","_npmUser":{"name":"saperski","email":"npm@saper.info"},"dist":{"shasum":"620fe2e3149993405ec1b517f8487b6e643b228a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-3.3.3.tgz"},"maintainers":[{"name":"am11","email":"adeelbm@outlook.com"},{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{}},"3.4.0-beta1":{"name":"node-sass","version":"3.4.0-beta1","libsass":"3.3.0-beta2","description":"Wrapper around libsass","license":"MIT","homepage":"https://github.com/sass/node-sass","repository":{"type":"git","url":"git+https://github.com/sass/node-sass.git"},"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"engines":{"node":">=0.10.0"},"main":"lib/index.js","nodeSassConfig":{"binarySite":"https://github.com/sass/node-sass/releases/download"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"node scripts/coverage.js","install":"node scripts/install.js","postinstall":"node scripts/build.js","pretest":"jshint bin lib scripts test","test":"mocha test"},"files":["bin","binding.gyp","lib","scripts","src"],"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"async-foreach":"^0.1.3","chalk":"^1.1.1","cross-spawn":"^2.0.0","gaze":"^0.5.1","get-stdin":"^4.0.1","glob":"^5.0.14","meow":"^3.3.0","mkdirp":"^0.5.1","nan":"^2.0.8","npmconf":"^2.1.2","node-gyp":"^3.0.1","request":"^2.61.0","sass-graph":"^2.0.1"},"devDependencies":{"coveralls":"^2.11.4","istanbul":"^0.3.18","jshint":"^2.8.0","mocha":"^2.2.5","mocha-lcov-reporter":"^0.0.2","rimraf":"^2.4.2"},"gitHead":"f6b5fd2de527a4cba599c6b38797a227463decb2","bugs":{"url":"https://github.com/sass/node-sass/issues"},"_id":"node-sass@3.4.0-beta1","_shasum":"bf648f5950248dd8006bc935f10adea716970c20","_from":".","_npmVersion":"2.14.3","_nodeVersion":"4.1.0","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"maintainers":[{"name":"am11","email":"adeelbm@outlook.com"},{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"dist":{"shasum":"bf648f5950248dd8006bc935f10adea716970c20","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-3.4.0-beta1.tgz"},"directories":{}},"3.4.0-beta.2":{"name":"node-sass","version":"3.4.0-beta.2","libsass":"3.3.0-beta3","description":"Wrapper around libsass","license":"MIT","homepage":"https://github.com/sass/node-sass","repository":{"type":"git","url":"git+https://github.com/sass/node-sass.git"},"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"engines":{"node":">=0.10.0"},"main":"lib/index.js","nodeSassConfig":{"binarySite":"https://github.com/sass/node-sass/releases/download"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"node scripts/coverage.js","install":"node scripts/install.js","postinstall":"node scripts/build.js","pretest":"jshint bin lib scripts test","test":"mocha test"},"files":["bin","binding.gyp","lib","scripts","src"],"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"async-foreach":"^0.1.3","chalk":"^1.1.1","cross-spawn":"^2.0.0","gaze":"^0.5.1","get-stdin":"^4.0.1","glob":"^5.0.14","meow":"^3.3.0","mkdirp":"^0.5.1","nan":"^2.0.8","npmconf":"^2.1.2","node-gyp":"^3.0.1","request":"^2.61.0","sass-graph":"^2.0.1"},"devDependencies":{"coveralls":"^2.11.4","istanbul":"^0.3.18","jshint":"^2.8.0","mocha":"^2.2.5","mocha-lcov-reporter":"^0.0.2","rimraf":"^2.4.2"},"gitHead":"4d2c15e5b061088e410a17871cdf3cccaff5ff21","bugs":{"url":"https://github.com/sass/node-sass/issues"},"_id":"node-sass@3.4.0-beta.2","_shasum":"f2f00c575137d96792212bc80a80fcd229fcf1dd","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"maintainers":[{"name":"am11","email":"adeelbm@outlook.com"},{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"dist":{"shasum":"f2f00c575137d96792212bc80a80fcd229fcf1dd","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-3.4.0-beta.2.tgz"},"directories":{}},"3.4.0":{"name":"node-sass","version":"3.4.0","libsass":"3.3.0","description":"Wrapper around libsass","license":"MIT","homepage":"https://github.com/sass/node-sass","repository":{"type":"git","url":"git+https://github.com/sass/node-sass.git"},"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"engines":{"node":">=0.10.0"},"main":"lib/index.js","nodeSassConfig":{"binarySite":"https://github.com/sass/node-sass/releases/download"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"node scripts/coverage.js","install":"node scripts/install.js","postinstall":"node scripts/build.js","pretest":"jshint bin lib scripts test","test":"mocha test"},"files":["bin","binding.gyp","lib","scripts","src"],"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"async-foreach":"^0.1.3","chalk":"^1.1.1","cross-spawn":"^2.0.0","gaze":"^0.5.1","get-stdin":"^4.0.1","glob":"^5.0.14","meow":"^3.3.0","mkdirp":"^0.5.1","nan":"^2.0.8","npmconf":"^2.1.2","node-gyp":"^3.0.1","request":"^2.61.0","sass-graph":"^2.0.1"},"devDependencies":{"coveralls":"^2.11.4","istanbul":"^0.3.18","jshint":"^2.8.0","mocha":"^2.2.5","mocha-lcov-reporter":"^0.0.2","rimraf":"^2.4.2"},"gitHead":"d19825ec0994f305a6d19f93e69ffcdd84c48b90","bugs":{"url":"https://github.com/sass/node-sass/issues"},"_id":"node-sass@3.4.0","_shasum":"823313e44eec54ceefbd584604fa7238bb615988","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"maintainers":[{"name":"am11","email":"adeelbm@outlook.com"},{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"dist":{"shasum":"823313e44eec54ceefbd584604fa7238bb615988","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-3.4.0.tgz"},"directories":{}},"3.4.1":{"name":"node-sass","version":"3.4.1","libsass":"3.3.1","description":"Wrapper around libsass","license":"MIT","homepage":"https://github.com/sass/node-sass","repository":{"type":"git","url":"git+https://github.com/sass/node-sass.git"},"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"engines":{"node":">=0.10.0"},"main":"lib/index.js","nodeSassConfig":{"binarySite":"https://github.com/sass/node-sass/releases/download"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"node scripts/coverage.js","install":"node scripts/install.js","postinstall":"node scripts/build.js","pretest":"jshint bin lib scripts test","test":"mocha test"},"files":["bin","binding.gyp","lib","scripts","src"],"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"async-foreach":"^0.1.3","chalk":"^1.1.1","cross-spawn":"^2.0.0","gaze":"^0.5.1","get-stdin":"^4.0.1","glob":"^5.0.14","meow":"^3.3.0","mkdirp":"^0.5.1","nan":"^2.0.8","npmconf":"^2.1.2","node-gyp":"^3.0.1","request":"^2.61.0","sass-graph":"^2.0.1"},"devDependencies":{"coveralls":"^2.11.4","istanbul":"^0.3.18","jshint":"^2.8.0","mocha":"^2.2.5","mocha-lcov-reporter":"^0.0.2","rimraf":"^2.4.2"},"gitHead":"c107cbd2565bda9c86772201949c2e05e595923f","bugs":{"url":"https://github.com/sass/node-sass/issues"},"_id":"node-sass@3.4.1","_shasum":"b3c36494e39e11d85064fdd9d80ddfea0848817a","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"maintainers":[{"name":"am11","email":"adeelbm@outlook.com"},{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"dist":{"shasum":"b3c36494e39e11d85064fdd9d80ddfea0848817a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-3.4.1.tgz"},"directories":{}},"3.4.2":{"name":"node-sass","version":"3.4.2","libsass":"3.3.2","description":"Wrapper around libsass","license":"MIT","homepage":"https://github.com/sass/node-sass","repository":{"type":"git","url":"git+https://github.com/sass/node-sass.git"},"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"engines":{"node":">=0.10.0"},"main":"lib/index.js","nodeSassConfig":{"binarySite":"https://github.com/sass/node-sass/releases/download"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"node scripts/coverage.js","install":"node scripts/install.js","postinstall":"node scripts/build.js","pretest":"jshint bin lib scripts test","test":"mocha test"},"files":["bin","binding.gyp","lib","scripts","src"],"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"async-foreach":"^0.1.3","chalk":"^1.1.1","cross-spawn":"^2.0.0","gaze":"^0.5.1","get-stdin":"^4.0.1","glob":"^5.0.14","meow":"^3.3.0","mkdirp":"^0.5.1","nan":"^2.0.8","npmconf":"^2.1.2","node-gyp":"^3.0.1","request":"^2.61.0","sass-graph":"^2.0.1"},"devDependencies":{"coveralls":"^2.11.4","istanbul":"^0.3.18","jshint":"^2.8.0","mocha":"^2.2.5","mocha-lcov-reporter":"^0.0.2","rimraf":"^2.4.2"},"gitHead":"8ebf2a85ca182c86445add57d3ba480b59060ef7","bugs":{"url":"https://github.com/sass/node-sass/issues"},"_id":"node-sass@3.4.2","_shasum":"ef61069927f1578ae51408ed60298449c4cdd294","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"maintainers":[{"name":"am11","email":"adeelbm@outlook.com"},{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"dist":{"shasum":"ef61069927f1578ae51408ed60298449c4cdd294","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-3.4.2.tgz"},"directories":{}},"3.5.0-beta.1":{"name":"node-sass","version":"3.5.0-beta.1","libsass":"3.3.3","description":"Wrapper around libsass","license":"MIT","homepage":"https://github.com/sass/node-sass","repository":{"type":"git","url":"git+https://github.com/sass/node-sass.git"},"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"engines":{"node":">=0.10.0"},"main":"lib/index.js","nodeSassConfig":{"binarySite":"https://github.com/sass/node-sass/releases/download"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"node scripts/coverage.js","install":"node scripts/install.js","postinstall":"node scripts/build.js","pretest":"jshint bin lib scripts test","test":"mocha test","build":"node scripts/build.js --force"},"files":["bin","binding.gyp","lib","scripts","src"],"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"async-foreach":"^0.1.3","chalk":"^1.1.1","cross-spawn":"^2.0.0","gaze":"^0.5.1","get-stdin":"^4.0.1","glob":"^6.0.2","got":"^5.4.1","meow":"^3.3.0","mkdirp":"^0.5.1","nan":"^2.0.8","node-gyp":"^3.0.1","npmconf":"^2.1.2","sass-graph":"^2.0.1"},"devDependencies":{"coveralls":"^2.11.4","istanbul":"^0.4.1","jshint":"^2.8.0","mocha":"^2.3.4","mocha-lcov-reporter":"^1.0.0","rimraf":"^2.4.2"},"gitHead":"792165eb974bc943f0bc6fcb630f15ee796c78a6","bugs":{"url":"https://github.com/sass/node-sass/issues"},"_id":"node-sass@3.5.0-beta.1","_shasum":"880f77a664e44da5647925377501306abad80278","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"maintainers":[{"name":"am11","email":"adeelbm@outlook.com"},{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"dist":{"shasum":"880f77a664e44da5647925377501306abad80278","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-3.5.0-beta.1.tgz"},"directories":{}},"3.5.1":{"name":"node-sass","version":"3.5.1","libsass":"3.3.5","description":"Wrapper around libsass","license":"MIT","bugs":{"url":"https://github.com/sass/node-sass/issues"},"homepage":"https://github.com/sass/node-sass","repository":{"type":"git","url":"git+https://github.com/sass/node-sass.git"},"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"engines":{"node":">=0.10.0"},"main":"lib/index.js","nodeSassConfig":{"binarySite":"https://github.com/sass/node-sass/releases/download"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"node scripts/coverage.js","install":"node scripts/install.js","postinstall":"node scripts/build.js","pretest":"jshint bin lib scripts test","test":"mocha test","build":"node scripts/build.js --force","prepublish":"not-in-install && node scripts/prepublish.js || in-install"},"files":["bin","binding.gyp","lib","scripts","src","vendor"],"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"async-foreach":"^0.1.3","chalk":"^1.1.1","cross-spawn-async":"^2.1.9","gaze":"^1.0.0","get-stdin":"^4.0.1","glob":"^7.0.3","got":"^5.5.0","meow":"^3.7.0","in-publish":"^2.0.0","mkdirp":"^0.5.1","nan":"^2.2.0","node-gyp":"^3.3.1","sass-graph":"^2.1.1"},"devDependencies":{"coveralls":"^2.11.8","istanbul":"^0.4.2","jshint":"^2.9.1","mocha":"^2.4.5","mocha-lcov-reporter":"^1.2.0","rimraf":"^2.5.2"},"gitHead":"d70721869ee7ff3168cdd0abd2f5404c7ed163c6","_id":"node-sass@3.5.1","_shasum":"c6755887e5c06d8f7a1ec096330fa9651a989bb3","_from":".","_npmVersion":"3.8.3","_nodeVersion":"5.10.1","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"dist":{"shasum":"c6755887e5c06d8f7a1ec096330fa9651a989bb3","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-3.5.1.tgz"},"maintainers":[{"name":"am11","email":"adeelbm@outlook.com"},{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/node-sass-3.5.1.tgz_1461162134004_0.5838129897601902"},"directories":{}},"3.5.2":{"name":"node-sass","version":"3.5.2","libsass":"3.3.5","description":"Wrapper around libsass","license":"MIT","bugs":{"url":"https://github.com/sass/node-sass/issues"},"homepage":"https://github.com/sass/node-sass","repository":{"type":"git","url":"git+https://github.com/sass/node-sass.git"},"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"engines":{"node":">=0.10.0"},"main":"lib/index.js","nodeSassConfig":{"binarySite":"https://github.com/sass/node-sass/releases/download"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"node scripts/coverage.js","install":"node scripts/install.js","postinstall":"node scripts/build.js","pretest":"jshint bin lib scripts test","test":"mocha test","build":"node scripts/build.js --force","prepublish":"not-in-install && node scripts/prepublish.js || in-install"},"files":["bin","binding.gyp","lib","scripts","src","vendor"],"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"async-foreach":"^0.1.3","chalk":"^1.1.1","cross-spawn-async":"^2.1.9","gaze":"^1.0.0","get-stdin":"^4.0.1","glob":"^7.0.3","got":"^5.5.0","meow":"^3.7.0","in-publish":"^2.0.0","mkdirp":"^0.5.1","nan":"^2.2.0","node-gyp":"^3.3.1","npmconf":"^2.1.2","sass-graph":"^2.1.1"},"devDependencies":{"coveralls":"^2.11.8","istanbul":"^0.4.2","jshint":"^2.9.1","mocha":"^2.4.5","mocha-lcov-reporter":"^1.2.0","rimraf":"^2.5.2"},"gitHead":"7e0c359c3dd0a61ff2effc8953d9bf7b3cd999e0","_id":"node-sass@3.5.2","_shasum":"f3aec35b45aa65f01fa9700d67518322e3cd7947","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.9.0","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"dist":{"shasum":"f3aec35b45aa65f01fa9700d67518322e3cd7947","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-3.5.2.tgz"},"maintainers":[{"name":"am11","email":"adeelbm@outlook.com"},{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/node-sass-3.5.2.tgz_1461236219924_0.7013591642025858"},"directories":{}},"3.5.3":{"name":"node-sass","version":"3.5.3","libsass":"3.3.5","description":"Wrapper around libsass","license":"MIT","bugs":{"url":"https://github.com/sass/node-sass/issues"},"homepage":"https://github.com/sass/node-sass","repository":{"type":"git","url":"git+https://github.com/sass/node-sass.git"},"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"engines":{"node":">=0.10.0"},"main":"lib/index.js","nodeSassConfig":{"binarySite":"https://github.com/sass/node-sass/releases/download"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"node scripts/coverage.js","install":"node scripts/install.js","postinstall":"node scripts/build.js","pretest":"jshint bin lib scripts test","test":"mocha test","build":"node scripts/build.js --force","prepublish":"not-in-install && node scripts/prepublish.js || in-install"},"files":["bin","binding.gyp","lib","scripts","src","vendor"],"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"async-foreach":"^0.1.3","chalk":"^1.1.1","cross-spawn-async":"^2.1.9","gaze":"^1.0.0","get-stdin":"^4.0.1","glob":"^7.0.3","meow":"^3.7.0","in-publish":"^2.0.0","mkdirp":"^0.5.1","nan":"^2.2.0","node-gyp":"^3.3.1","npmconf":"^2.1.2","request":"^2.61.0","sass-graph":"^2.1.1"},"devDependencies":{"coveralls":"^2.11.8","istanbul":"^0.4.2","jshint":"^2.9.1","mocha":"^2.4.5","mocha-lcov-reporter":"^1.2.0","rimraf":"^2.5.2"},"gitHead":"ca96aa71d10055812a00bd0eaf3204d11afc411f","_id":"node-sass@3.5.3","_shasum":"abf3d5f2d171d49e98ac9d9bba53b89cf280f3ed","_from":".","_npmVersion":"3.8.3","_nodeVersion":"5.10.1","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"dist":{"shasum":"abf3d5f2d171d49e98ac9d9bba53b89cf280f3ed","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-3.5.3.tgz"},"maintainers":[{"name":"am11","email":"adeelbm@outlook.com"},{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/node-sass-3.5.3.tgz_1461244054205_0.8217440338339657"},"directories":{}},"3.6.0":{"name":"node-sass","version":"3.6.0","libsass":"3.3.6","description":"Wrapper around libsass","license":"MIT","bugs":{"url":"https://github.com/sass/node-sass/issues"},"homepage":"https://github.com/sass/node-sass","repository":{"type":"git","url":"git+https://github.com/sass/node-sass.git"},"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"engines":{"node":">=0.10.0"},"main":"lib/index.js","nodeSassConfig":{"binarySite":"https://github.com/sass/node-sass/releases/download"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"node scripts/coverage.js","install":"node scripts/install.js","postinstall":"node scripts/build.js","pretest":"jshint bin lib scripts test","test":"mocha test","build":"node scripts/build.js --force","prepublish":"not-in-install && node scripts/prepublish.js || in-install"},"files":["bin","binding.gyp","lib","scripts","src","vendor"],"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"async-foreach":"^0.1.3","chalk":"^1.1.1","cross-spawn-async":"^2.1.9","gaze":"^1.0.0","get-stdin":"^4.0.1","glob":"^7.0.3","meow":"^3.7.0","in-publish":"^2.0.0","mkdirp":"^0.5.1","nan":"^2.2.0","node-gyp":"^3.3.1","npmconf":"^2.1.2","request":"^2.61.0","sass-graph":"^2.1.1"},"devDependencies":{"coveralls":"^2.11.8","istanbul":"^0.4.2","jshint":"^2.9.1","mocha":"^2.4.5","mocha-lcov-reporter":"^1.2.0","rimraf":"^2.5.2"},"gitHead":"a40540096e79473dcd717f75aa568f889013c238","_id":"node-sass@3.6.0","_shasum":"43d78fa2a85f6139da68fba570c391c3eed8ab0d","_from":".","_npmVersion":"3.8.3","_nodeVersion":"5.10.1","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"dist":{"shasum":"43d78fa2a85f6139da68fba570c391c3eed8ab0d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-3.6.0.tgz"},"maintainers":[{"name":"am11","email":"adeelbm@outlook.com"},{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/node-sass-3.6.0.tgz_1461413956166_0.017324273008853197"},"directories":{}},"3.7.0":{"name":"node-sass","version":"3.7.0","libsass":"3.3.6","description":"Wrapper around libsass","license":"MIT","bugs":{"url":"https://github.com/sass/node-sass/issues"},"homepage":"https://github.com/sass/node-sass","repository":{"type":"git","url":"git+https://github.com/sass/node-sass.git"},"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"engines":{"node":">=0.10.0"},"main":"lib/index.js","nodeSassConfig":{"binarySite":"https://github.com/sass/node-sass/releases/download"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"node scripts/coverage.js","install":"node scripts/install.js","postinstall":"node scripts/build.js","pretest":"jshint bin lib scripts test","test":"mocha test","build":"node scripts/build.js --force","prepublish":"not-in-install && node scripts/prepublish.js || in-install"},"files":["bin","binding.gyp","lib","scripts","src","vendor"],"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"async-foreach":"^0.1.3","chalk":"^1.1.1","cross-spawn-async":"^2.1.9","gaze":"^1.0.0","get-stdin":"^4.0.1","glob":"^7.0.3","meow":"^3.7.0","in-publish":"^2.0.0","mkdirp":"^0.5.1","nan":"^2.3.2","node-gyp":"^3.3.1","request":"^2.61.0","sass-graph":"^2.1.1"},"devDependencies":{"coveralls":"^2.11.8","istanbul":"^0.4.2","jshint":"^2.9.1","mocha":"^2.4.5","mocha-lcov-reporter":"^1.2.0","rimraf":"^2.5.2"},"gitHead":"993855789e4cbefd0e4c26f4ede59b0d7c1116b5","_id":"node-sass@3.7.0","_shasum":"09a1824b2f60eba5085998b73f2d60d41f209ffc","_from":".","_npmVersion":"2.14.3","_nodeVersion":"3.3.1","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"dist":{"shasum":"09a1824b2f60eba5085998b73f2d60d41f209ffc","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-3.7.0.tgz"},"maintainers":[{"name":"am11","email":"adeelbm@outlook.com"},{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/node-sass-3.7.0.tgz_1462269261773_0.03616604791022837"},"directories":{}},"3.8.0":{"name":"node-sass","version":"3.8.0","libsass":"3.3.6","description":"Wrapper around libsass","license":"MIT","bugs":{"url":"https://github.com/sass/node-sass/issues"},"homepage":"https://github.com/sass/node-sass","repository":{"type":"git","url":"git+https://github.com/sass/node-sass.git"},"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"engines":{"node":">=0.10.0"},"main":"lib/index.js","nodeSassConfig":{"binarySite":"https://github.com/sass/node-sass/releases/download"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"node scripts/coverage.js","install":"node scripts/install.js","postinstall":"node scripts/build.js","pretest":"jshint bin lib scripts test","test":"mocha test","build":"node scripts/build.js --force","prepublish":"not-in-install && node scripts/prepublish.js || in-install"},"files":["bin","binding.gyp","lib","scripts","src","vendor"],"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"async-foreach":"^0.1.3","chalk":"^1.1.1","cross-spawn":"^3.0.0","gaze":"^1.0.0","get-stdin":"^4.0.1","glob":"^7.0.3","in-publish":"^2.0.0","lodash.clonedeep":"^4.3.2","meow":"^3.7.0","mkdirp":"^0.5.1","nan":"^2.3.2","node-gyp":"^3.3.1","request":"^2.61.0","sass-graph":"^2.1.1"},"devDependencies":{"coveralls":"^2.11.8","istanbul":"^0.4.2","jshint":"^2.9.1","mocha":"^2.4.5","mocha-lcov-reporter":"^1.2.0","rimraf":"^2.5.2"},"gitHead":"a6594d1419987c766ecfdd0ed30b6eb5f0dde4de","_id":"node-sass@3.8.0","_shasum":"ec0f89ae6625e1d990dc7ff713b275ea15dfee05","_from":".","_npmVersion":"3.8.3","_nodeVersion":"5.10.1","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"dist":{"shasum":"ec0f89ae6625e1d990dc7ff713b275ea15dfee05","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-3.8.0.tgz"},"maintainers":[{"name":"am11","email":"adeelbm@outlook.com"},{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/node-sass-3.8.0.tgz_1466206389572_0.06157258222810924"},"directories":{}},"3.9.0":{"name":"node-sass","version":"3.9.0","libsass":"3.3.6","description":"Wrapper around libsass","license":"MIT","bugs":{"url":"https://github.com/sass/node-sass/issues"},"homepage":"https://github.com/sass/node-sass","repository":{"type":"git","url":"git+https://github.com/sass/node-sass.git"},"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"engines":{"node":">=0.10.0"},"main":"lib/index.js","nodeSassConfig":{"binarySite":"https://github.com/sass/node-sass/releases/download"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"node scripts/coverage.js","install":"node scripts/install.js","postinstall":"node scripts/build.js","lint":"eslint bin/node-sass lib scripts test","test":"mocha test","build":"node scripts/build.js --force","prepublish":"not-in-install && node scripts/prepublish.js || in-install"},"files":["bin","binding.gyp","lib","scripts","src","test","vendor"],"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"async-foreach":"^0.1.3","chalk":"^1.1.1","cross-spawn":"^3.0.0","gaze":"^1.0.0","get-stdin":"^4.0.1","glob":"^7.0.3","in-publish":"^2.0.0","lodash.clonedeep":"^4.3.2","meow":"^3.7.0","mkdirp":"^0.5.1","nan":"^2.3.2","node-gyp":"^3.3.1","npmlog":"^4.0.0","request":"^2.61.0","sass-graph":"^2.1.1"},"devDependencies":{"coveralls":"^2.11.8","eslint":"^2.9.0","istanbul":"^0.4.2","mocha":"^2.4.5","mocha-lcov-reporter":"^1.2.0","rimraf":"^2.5.2"},"gitHead":"7f1332bc4ea7bb1e80f7ad06590c0c18e60ec818","_id":"node-sass@3.9.0","_shasum":"4077f972c9d9d16e46f446d82e47dcc3ae515028","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.9.0","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"dist":{"shasum":"4077f972c9d9d16e46f446d82e47dcc3ae515028","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-3.9.0.tgz"},"maintainers":[{"name":"am11","email":"adeelbm@outlook.com"},{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/node-sass-3.9.0.tgz_1473031802556_0.6314690343569964"},"directories":{}},"3.9.1":{"name":"node-sass","version":"3.9.1","libsass":"3.3.6","description":"Wrapper around libsass","license":"MIT","bugs":{"url":"https://github.com/sass/node-sass/issues"},"homepage":"https://github.com/sass/node-sass","repository":{"type":"git","url":"git+https://github.com/sass/node-sass.git"},"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"engines":{"node":">=0.10.0"},"main":"lib/index.js","nodeSassConfig":{"binarySite":"https://github.com/sass/node-sass/releases/download"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"node scripts/coverage.js","install":"node scripts/install.js","postinstall":"node scripts/build.js","lint":"eslint bin/node-sass lib scripts test","test":"mocha test","build":"node scripts/build.js --force","prepublish":"not-in-install && node scripts/prepublish.js || in-install"},"files":["bin","binding.gyp","lib","scripts","src","test","vendor"],"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"async-foreach":"^0.1.3","chalk":"^1.1.1","cross-spawn":"^3.0.0","gaze":"^1.0.0","get-stdin":"^4.0.1","glob":"^7.0.3","in-publish":"^2.0.0","lodash.clonedeep":"^4.3.2","meow":"^3.7.0","mkdirp":"^0.5.1","nan":"^2.3.2","node-gyp":"^3.3.1","npmlog":"^4.0.0","request":"^2.61.0","sass-graph":"^2.1.1"},"devDependencies":{"coveralls":"^2.11.8","eslint":"^2.9.0","istanbul":"^0.4.2","mocha":"^2.4.5","mocha-lcov-reporter":"^1.2.0","rimraf":"^2.5.2"},"gitHead":"3bc61658f3690a081c8dbd1243bff99c3f71a2dd","_id":"node-sass@3.9.1","_shasum":"ba69e540afcfbadc3b7bee436cfcf55cf7dc2c8c","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.9.0","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"dist":{"shasum":"ba69e540afcfbadc3b7bee436cfcf55cf7dc2c8c","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-3.9.1.tgz"},"maintainers":[{"name":"am11","email":"adeelbm@outlook.com"},{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/node-sass-3.9.1.tgz_1473138957671_0.9615636004600674"},"directories":{}},"3.9.2":{"name":"node-sass","version":"3.9.2","libsass":"3.3.6","description":"Wrapper around libsass","license":"MIT","bugs":{"url":"https://github.com/sass/node-sass/issues"},"homepage":"https://github.com/sass/node-sass","repository":{"type":"git","url":"git+https://github.com/sass/node-sass.git"},"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"engines":{"node":">=0.10.0"},"main":"lib/index.js","nodeSassConfig":{"binarySite":"https://github.com/sass/node-sass/releases/download"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"node scripts/coverage.js","install":"node scripts/install.js","postinstall":"node scripts/build.js","lint":"eslint bin/node-sass lib scripts test","test":"mocha test","build":"node scripts/build.js --force","prepublish":"not-in-install && node scripts/prepublish.js || in-install"},"files":["bin","binding.gyp","lib","scripts","src","test","vendor"],"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"async-foreach":"^0.1.3","chalk":"^1.1.1","cross-spawn":"^3.0.0","gaze":"^1.0.0","get-stdin":"^4.0.1","glob":"^7.0.3","in-publish":"^2.0.0","lodash.clonedeep":"^4.3.2","meow":"^3.7.0","mkdirp":"^0.5.1","nan":"^2.3.2","node-gyp":"^3.3.1","npmlog":"^4.0.0","request":"^2.61.0","sass-graph":"^2.1.1"},"devDependencies":{"coveralls":"^2.11.8","eslint":"^2.9.0","istanbul":"^0.4.2","mocha":"^2.4.5","mocha-lcov-reporter":"^1.2.0","rimraf":"^2.5.2"},"gitHead":"2c2f6a24478c253022b8e935012745674eedb320","_id":"node-sass@3.9.2","_shasum":"2332d27c00f325720c9ab781e28ca1963e3e61b2","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.9.0","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"dist":{"shasum":"2332d27c00f325720c9ab781e28ca1963e3e61b2","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-3.9.2.tgz"},"maintainers":[{"name":"am11","email":"adeelbm@outlook.com"},{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/node-sass-3.9.2.tgz_1473142284472_0.9937453060410917"},"directories":{}},"3.9.3":{"name":"node-sass","version":"3.9.3","libsass":"3.3.6","description":"Wrapper around libsass","license":"MIT","bugs":{"url":"https://github.com/sass/node-sass/issues"},"homepage":"https://github.com/sass/node-sass","repository":{"type":"git","url":"git+https://github.com/sass/node-sass.git"},"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"engines":{"node":">=0.10.0"},"main":"lib/index.js","nodeSassConfig":{"binarySite":"https://github.com/sass/node-sass/releases/download"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"node scripts/coverage.js","install":"node scripts/install.js","postinstall":"node scripts/build.js","lint":"eslint bin/node-sass lib scripts test","test":"mocha test","build":"node scripts/build.js --force","prepublish":"not-in-install && node scripts/prepublish.js || in-install"},"files":["bin","binding.gyp","lib","scripts","src","test","vendor"],"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"async-foreach":"^0.1.3","chalk":"^1.1.1","cross-spawn":"^3.0.0","gaze":"^1.0.0","get-stdin":"^4.0.1","glob":"^7.0.3","in-publish":"^2.0.0","lodash.clonedeep":"^4.3.2","meow":"^3.7.0","mkdirp":"^0.5.1","nan":"^2.3.2","node-gyp":"^3.3.1","npmlog":"^4.0.0","request":"^2.61.0","sass-graph":"^2.1.1"},"devDependencies":{"coveralls":"^2.11.8","eslint":"^2.9.0","istanbul":"^0.4.2","mocha":"^2.4.5","mocha-lcov-reporter":"^1.2.0","rimraf":"^2.5.2"},"gitHead":"72af63e7faee466720cffc8e61e386bcbdfa4cb5","_id":"node-sass@3.9.3","_shasum":"9bbc9183e98b88c8d2f7123518700562102cf31a","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.12.0","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"dist":{"shasum":"9bbc9183e98b88c8d2f7123518700562102cf31a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-3.9.3.tgz"},"maintainers":[{"name":"am11","email":"adeelbm@outlook.com"},{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/node-sass-3.9.3.tgz_1473157630631_0.7507968035060912"},"directories":{}},"3.10.0":{"name":"node-sass","version":"3.10.0","libsass":"3.3.6","description":"Wrapper around libsass","license":"MIT","bugs":{"url":"https://github.com/sass/node-sass/issues"},"homepage":"https://github.com/sass/node-sass","repository":{"type":"git","url":"git+https://github.com/sass/node-sass.git"},"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"engines":{"node":">=0.10.0"},"main":"lib/index.js","nodeSassConfig":{"binarySite":"https://github.com/sass/node-sass/releases/download"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"node scripts/coverage.js","install":"node scripts/install.js","postinstall":"node scripts/build.js","lint":"eslint bin/node-sass lib scripts test","test":"mocha test","build":"node scripts/build.js --force","prepublish":"not-in-install && node scripts/prepublish.js || in-install"},"files":["bin","binding.gyp","lib","scripts","src","vendor"],"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"async-foreach":"^0.1.3","chalk":"^1.1.1","cross-spawn":"^3.0.0","gaze":"^1.0.0","get-stdin":"^4.0.1","glob":"^7.0.3","in-publish":"^2.0.0","lodash.assign":"^4.2.0","lodash.clonedeep":"^4.3.2","meow":"^3.7.0","mkdirp":"^0.5.1","nan":"^2.3.2","node-gyp":"^3.3.1","npmlog":"^4.0.0","request":"^2.61.0","sass-graph":"^2.1.1"},"devDependencies":{"coveralls":"^2.11.8","eslint":"^3.4.0","istanbul":"^0.4.2","mocha":"^2.4.5","mocha-lcov-reporter":"^1.2.0","object-merge":"^2.5.1","read-yaml":"^1.0.0","rimraf":"^2.5.2","sass-spec":"^3.3.6-3"},"gitHead":"aec7049bef2e5262083784b3fc5b6f7d97fb005c","_id":"node-sass@3.10.0","_shasum":"01864956f23f05c1bc80c3858d9c5051ec0462f1","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.9.0","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"dist":{"shasum":"01864956f23f05c1bc80c3858d9c5051ec0462f1","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-3.10.0.tgz"},"maintainers":[{"name":"am11","email":"adeelbm@outlook.com"},{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/node-sass-3.10.0.tgz_1473817226650_0.726131311384961"},"directories":{}},"3.10.0-1":{"name":"node-sass","version":"3.10.0-1","libsass":"3.3.6","description":"Wrapper around libsass","license":"MIT","bugs":{"url":"https://github.com/sass/node-sass/issues"},"homepage":"https://github.com/sass/node-sass","repository":{"type":"git","url":"git+https://github.com/sass/node-sass.git"},"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"engines":{"node":">=0.10.0"},"main":"lib/index.js","nodeSassConfig":{"binarySite":"https://github.com/sass/node-sass/releases/download"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"node scripts/coverage.js","install":"node scripts/install.js","postinstall":"node scripts/build.js","lint":"eslint bin/node-sass lib scripts test","test":"mocha test","build":"node scripts/build.js --force","prepublish":"not-in-install && node scripts/prepublish.js || in-install"},"files":["bin","binding.gyp","lib","scripts","src","test","vendor"],"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"async-foreach":"^0.1.3","chalk":"^1.1.1","cross-spawn":"^3.0.0","gaze":"^1.0.0","get-stdin":"^4.0.1","glob":"^7.0.3","in-publish":"^2.0.0","lodash.assign":"^4.2.0","lodash.clonedeep":"^4.3.2","meow":"^3.7.0","mkdirp":"^0.5.1","nan":"^2.3.2","node-gyp":"^3.3.1","npmlog":"^4.0.0","request":"^2.61.0","sass-graph":"^2.1.1"},"devDependencies":{"coveralls":"^2.11.8","eslint":"^3.4.0","istanbul":"^0.4.2","mocha":"^2.4.5","mocha-lcov-reporter":"^1.2.0","object-merge":"^2.5.1","read-yaml":"^1.0.0","rimraf":"^2.5.2","sass-spec":"^3.3.6-3"},"gitHead":"7e27148d834dc2b092f4882895a0b18e70c4bbea","_id":"node-sass@3.10.0-1","_shasum":"9098985ffed20a7b098d096df79c2498cc45ce14","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.12.0","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"dist":{"shasum":"9098985ffed20a7b098d096df79c2498cc45ce14","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-3.10.0-1.tgz"},"maintainers":[{"name":"am11","email":"adeelbm@outlook.com"},{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/node-sass-3.10.0-1.tgz_1475213912882_0.4005159398075193"},"directories":{}},"3.10.1":{"name":"node-sass","version":"3.10.1","libsass":"3.3.6","description":"Wrapper around libsass","license":"MIT","bugs":{"url":"https://github.com/sass/node-sass/issues"},"homepage":"https://github.com/sass/node-sass","repository":{"type":"git","url":"git+https://github.com/sass/node-sass.git"},"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"engines":{"node":">=0.10.0"},"main":"lib/index.js","nodeSassConfig":{"binarySite":"https://github.com/sass/node-sass/releases/download"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"node scripts/coverage.js","install":"node scripts/install.js","postinstall":"node scripts/build.js","lint":"eslint bin/node-sass lib scripts test","test":"mocha test","build":"node scripts/build.js --force","prepublish":"not-in-install && node scripts/prepublish.js || in-install"},"files":["bin","binding.gyp","lib","scripts","src","test","vendor"],"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"async-foreach":"^0.1.3","chalk":"^1.1.1","cross-spawn":"^3.0.0","gaze":"^1.0.0","get-stdin":"^4.0.1","glob":"^7.0.3","in-publish":"^2.0.0","lodash.assign":"^4.2.0","lodash.clonedeep":"^4.3.2","meow":"^3.7.0","mkdirp":"^0.5.1","nan":"^2.3.2","node-gyp":"^3.3.1","npmlog":"^4.0.0","request":"^2.61.0","sass-graph":"^2.1.1"},"devDependencies":{"coveralls":"^2.11.8","eslint":"^3.4.0","istanbul":"^0.4.2","mocha":"^2.4.5","mocha-lcov-reporter":"^1.2.0","object-merge":"^2.5.1","read-yaml":"^1.0.0","rimraf":"^2.5.2","sass-spec":"^3.3.6-3"},"gitHead":"7e27148d834dc2b092f4882895a0b18e70c4bbea","_id":"node-sass@3.10.1","_shasum":"c535b2e1a5439240591e06d7308cb663820d616c","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.12.0","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"dist":{"shasum":"c535b2e1a5439240591e06d7308cb663820d616c","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-3.10.1.tgz"},"maintainers":[{"name":"am11","email":"adeelbm@outlook.com"},{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/node-sass-3.10.1.tgz_1475218502758_0.22819128329865634"},"directories":{}},"3.11.0":{"name":"node-sass","version":"3.11.0","libsass":"3.3.6","description":"Wrapper around libsass","license":"MIT","bugs":{"url":"https://github.com/sass/node-sass/issues"},"homepage":"https://github.com/sass/node-sass","repository":{"type":"git","url":"git+https://github.com/sass/node-sass.git"},"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"engines":{"node":">=0.10.0"},"main":"lib/index.js","nodeSassConfig":{"binarySite":"https://github.com/sass/node-sass/releases/download"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"node scripts/coverage.js","install":"node scripts/install.js","postinstall":"node scripts/build.js","lint":"eslint bin/node-sass lib scripts test","test":"mocha test/{*,**/**}.js","build":"node scripts/build.js --force","prepublish":"not-in-install && node scripts/prepublish.js || in-install"},"files":["bin","binding.gyp","lib","scripts","src","test","vendor"],"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"async-foreach":"^0.1.3","chalk":"^1.1.1","cross-spawn":"^3.0.0","gaze":"^1.0.0","get-stdin":"^4.0.1","glob":"^7.0.3","in-publish":"^2.0.0","lodash.assign":"^4.2.0","lodash.clonedeep":"^4.3.2","meow":"^3.7.0","mkdirp":"^0.5.1","nan":"^2.3.2","node-gyp":"^3.3.1","npmlog":"^4.0.0","request":"^2.61.0","sass-graph":"^2.1.1"},"devDependencies":{"coveralls":"^2.11.8","eslint":"^3.4.0","istanbul":"^0.4.2","mocha":"^2.4.5","mocha-lcov-reporter":"^1.2.0","object-merge":"^2.5.1","read-yaml":"^1.0.0","rimraf":"^2.5.2","sass-spec":"^3.3.6-3"},"gitHead":"73726fe7b28b8dfc82f3e03591fa3488348abae3","_id":"node-sass@3.11.0","_shasum":"5b1f6522e12cc1b4f1e256af5bb52fcfc13eddbf","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.5.0","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"dist":{"shasum":"5b1f6522e12cc1b4f1e256af5bb52fcfc13eddbf","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-3.11.0.tgz"},"maintainers":[{"name":"am11","email":"adeelbm@outlook.com"},{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/node-sass-3.11.0.tgz_1478132119838_0.8136486208532006"},"directories":{}},"3.11.1":{"name":"node-sass","version":"3.11.1","libsass":"3.3.6","description":"Wrapper around libsass","license":"MIT","bugs":{"url":"https://github.com/sass/node-sass/issues"},"homepage":"https://github.com/sass/node-sass","repository":{"type":"git","url":"git+https://github.com/sass/node-sass.git"},"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"engines":{"node":">=0.10.0"},"main":"lib/index.js","nodeSassConfig":{"binarySite":"https://github.com/sass/node-sass/releases/download"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"node scripts/coverage.js","install":"node scripts/install.js","postinstall":"node scripts/build.js","lint":"eslint bin/node-sass lib scripts test","test":"mocha test/{*,**/**}.js","build":"node scripts/build.js --force","prepublish":"not-in-install && node scripts/prepublish.js || in-install"},"files":["bin","binding.gyp","lib","scripts","src","test","vendor"],"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"async-foreach":"^0.1.3","chalk":"^1.1.1","cross-spawn":"^3.0.0","gaze":"^1.0.0","get-stdin":"^4.0.1","glob":"^7.0.3","in-publish":"^2.0.0","lodash.assign":"^4.2.0","lodash.clonedeep":"^4.3.2","meow":"^3.7.0","mkdirp":"^0.5.1","nan":"^2.3.2","node-gyp":"^3.3.1","npmlog":"^4.0.0","request":"^2.61.0","sass-graph":"^2.1.1"},"devDependencies":{"coveralls":"^2.11.8","eslint":"^3.4.0","istanbul":"^0.4.2","mocha":"^2.4.5","mocha-lcov-reporter":"^1.2.0","object-merge":"^2.5.1","read-yaml":"^1.0.0","rimraf":"^2.5.2","sass-spec":"^3.3.6-3"},"gitHead":"36856f4102d6a3b382b14f86d98a56d3c033307e","_id":"node-sass@3.11.1","_shasum":"0b25699663cc9d616e8c6fb874e7d9b25e5a8e20","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.12.0","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"dist":{"shasum":"0b25699663cc9d616e8c6fb874e7d9b25e5a8e20","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-3.11.1.tgz"},"maintainers":[{"name":"am11","email":"adeelbm@outlook.com"},{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/node-sass-3.11.1.tgz_1478174420511_0.38417499559000134"},"directories":{}},"3.11.2":{"name":"node-sass","version":"3.11.2","libsass":"3.3.6","description":"Wrapper around libsass","license":"MIT","bugs":{"url":"https://github.com/sass/node-sass/issues"},"homepage":"https://github.com/sass/node-sass","repository":{"type":"git","url":"git+https://github.com/sass/node-sass.git"},"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"engines":{"node":">=0.10.0"},"main":"lib/index.js","nodeSassConfig":{"binarySite":"https://github.com/sass/node-sass/releases/download"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"node scripts/coverage.js","install":"node scripts/install.js","postinstall":"node scripts/build.js","lint":"eslint bin/node-sass lib scripts test","test":"mocha test/{*,**/**}.js","build":"node scripts/build.js --force","prepublish":"not-in-install && node scripts/prepublish.js || in-install"},"files":["bin","binding.gyp","lib","scripts","src","test","vendor"],"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"async-foreach":"^0.1.3","chalk":"^1.1.1","cross-spawn":"^3.0.0","gaze":"^1.0.0","get-stdin":"^4.0.1","glob":"^7.0.3","in-publish":"^2.0.0","lodash.assign":"^4.2.0","lodash.clonedeep":"^4.3.2","meow":"^3.7.0","mkdirp":"^0.5.1","nan":"^2.3.2","node-gyp":"^3.3.1","npmlog":"^4.0.0","request":"^2.61.0","sass-graph":"^2.1.1"},"devDependencies":{"coveralls":"^2.11.8","eslint":"^3.4.0","istanbul":"^0.4.2","mocha":"^2.4.5","mocha-lcov-reporter":"^1.2.0","object-merge":"^2.5.1","read-yaml":"^1.0.0","rimraf":"^2.5.2","sass-spec":"^3.3.6-3"},"gitHead":"7fe625c6e860e0fcac7643703c3ec14258df02e6","_id":"node-sass@3.11.2","_shasum":"ba3bef8cd46bd1698c2bdb2b6d2af1f9e7d7878f","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.12.0","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"dist":{"shasum":"ba3bef8cd46bd1698c2bdb2b6d2af1f9e7d7878f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-3.11.2.tgz"},"maintainers":[{"name":"am11","email":"adeelbm@outlook.com"},{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/node-sass-3.11.2.tgz_1478327362980_0.733085063053295"},"directories":{}},"3.11.3":{"name":"node-sass","version":"3.11.3","libsass":"3.3.6","description":"Wrapper around libsass","license":"MIT","bugs":{"url":"https://github.com/sass/node-sass/issues"},"homepage":"https://github.com/sass/node-sass","repository":{"type":"git","url":"git+https://github.com/sass/node-sass.git"},"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"engines":{"node":">=0.10.0"},"main":"lib/index.js","nodeSassConfig":{"binarySite":"https://github.com/sass/node-sass/releases/download"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"node scripts/coverage.js","install":"node scripts/install.js","postinstall":"node scripts/build.js","lint":"eslint bin/node-sass lib scripts test","test":"mocha test/{*,**/**}.js","build":"node scripts/build.js --force","prepublish":"not-in-install && node scripts/prepublish.js || in-install"},"files":["bin","binding.gyp","lib","scripts","src","test","vendor"],"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"async-foreach":"^0.1.3","chalk":"^1.1.1","cross-spawn":"^3.0.0","gaze":"^1.0.0","get-stdin":"^4.0.1","glob":"^7.0.3","in-publish":"^2.0.0","lodash.assign":"^4.2.0","lodash.clonedeep":"^4.3.2","meow":"^3.7.0","mkdirp":"^0.5.1","nan":"^2.3.2","node-gyp":"^3.3.1","npmlog":"^4.0.0","request":"^2.61.0","sass-graph":"^2.1.1"},"devDependencies":{"coveralls":"^2.11.8","eslint":"^3.4.0","istanbul":"^0.4.2","mocha":"^3.1.2","mocha-lcov-reporter":"^1.2.0","object-merge":"^2.5.1","read-yaml":"^1.0.0","rimraf":"^2.5.2","sass-spec":"^3.3.6-3"},"gitHead":"8d8f80c7116b8cfec055a17760b793c77563d214","_id":"node-sass@3.11.3","_shasum":"a0135958b54688101e1ec9414ff07628ddf4213d","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.12.0","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"dist":{"shasum":"a0135958b54688101e1ec9414ff07628ddf4213d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-3.11.3.tgz"},"maintainers":[{"name":"am11","email":"adeelbm@outlook.com"},{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/node-sass-3.11.3.tgz_1478924680863_0.7603142037987709"},"directories":{}},"3.12.0":{"name":"node-sass","version":"3.12.0","libsass":"3.3.6","description":"Wrapper around libsass","license":"MIT","bugs":{"url":"https://github.com/sass/node-sass/issues"},"homepage":"https://github.com/sass/node-sass","repository":{"type":"git","url":"git+https://github.com/sass/node-sass.git"},"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"engines":{"node":">=0.10.0"},"main":"lib/index.js","nodeSassConfig":{"binarySite":"https://github.com/sass/node-sass/releases/download"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"node scripts/coverage.js","install":"node scripts/install.js","postinstall":"node scripts/build.js","lint":"eslint bin/node-sass lib scripts test","test":"mocha test/{*,**/**}.js","build":"node scripts/build.js --force","prepublish":"not-in-install && node scripts/prepublish.js || in-install"},"files":["bin","binding.gyp","lib","scripts","src","test","vendor"],"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"async-foreach":"^0.1.3","chalk":"^1.1.1","cross-spawn":"^3.0.0","gaze":"^1.0.0","get-stdin":"^4.0.1","glob":"^7.0.3","in-publish":"^2.0.0","lodash.assign":"^4.2.0","lodash.clonedeep":"^4.3.2","meow":"^3.7.0","mkdirp":"^0.5.1","nan":"^2.3.2","node-gyp":"^3.3.1","npmlog":"^4.0.0","request":"^2.61.0","sass-graph":"^2.1.1"},"devDependencies":{"coveralls":"^2.11.8","eslint":"^3.4.0","istanbul":"^0.4.2","mocha":"^3.1.2","mocha-lcov-reporter":"^1.2.0","object-merge":"^2.5.1","read-yaml":"^1.0.0","rimraf":"^2.5.2","sass-spec":"^3.3.6-3"},"gitHead":"21ee4e30cf3591ec50a64d316a8760f16eace746","_id":"node-sass@3.12.0","_shasum":"9221320f1fae1c98de0467ed3d755c10be1f928d","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.5.0","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"dist":{"shasum":"9221320f1fae1c98de0467ed3d755c10be1f928d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-3.12.0.tgz"},"maintainers":[{"name":"am11","email":"adeelbm@outlook.com"},{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/node-sass-3.12.0.tgz_1479077855025_0.4271840958390385"},"directories":{}},"3.12.1":{"name":"node-sass","version":"3.12.1","libsass":"3.3.6","description":"Wrapper around libsass","license":"MIT","bugs":{"url":"https://github.com/sass/node-sass/issues"},"homepage":"https://github.com/sass/node-sass","repository":{"type":"git","url":"git+https://github.com/sass/node-sass.git"},"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"engines":{"node":">=0.10.0"},"main":"lib/index.js","nodeSassConfig":{"binarySite":"https://github.com/sass/node-sass/releases/download"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"node scripts/coverage.js","install":"node scripts/install.js","postinstall":"node scripts/build.js","lint":"eslint bin/node-sass lib scripts test","test":"mocha test/{*,**/**}.js","build":"node scripts/build.js --force","prepublish":"not-in-install && node scripts/prepublish.js || in-install"},"files":["bin","binding.gyp","lib","scripts","src","test","vendor"],"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"async-foreach":"^0.1.3","chalk":"^1.1.1","cross-spawn":"^3.0.0","gaze":"^1.0.0","get-stdin":"^4.0.1","glob":"^7.0.3","in-publish":"^2.0.0","lodash.assign":"^4.2.0","lodash.clonedeep":"^4.3.2","meow":"^3.7.0","mkdirp":"^0.5.1","nan":"^2.3.2","node-gyp":"^3.3.1","npmlog":"^4.0.0","request":"^2.61.0","sass-graph":"^2.1.1"},"devDependencies":{"coveralls":"^2.11.8","eslint":"^3.4.0","istanbul":"^0.4.2","mocha":"^3.1.2","mocha-lcov-reporter":"^1.2.0","object-merge":"^2.5.1","read-yaml":"^1.0.0","rimraf":"^2.5.2","sass-spec":"^3.3.6-3"},"gitHead":"aa76f8fd8cc0545a4f95846fe7b8dfad88272ec9","_id":"node-sass@3.12.1","_shasum":"c48315edec4175266f938b0df8af9c372465b866","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.5.0","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"dist":{"shasum":"c48315edec4175266f938b0df8af9c372465b866","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-3.12.1.tgz"},"maintainers":[{"name":"am11","email":"adeelbm@outlook.com"},{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/node-sass-3.12.1.tgz_1479082925754_0.17534893518313766"},"directories":{}},"3.12.2":{"name":"node-sass","version":"3.12.2","libsass":"3.3.6","description":"Wrapper around libsass","license":"MIT","bugs":{"url":"https://github.com/sass/node-sass/issues"},"homepage":"https://github.com/sass/node-sass","repository":{"type":"git","url":"git+https://github.com/sass/node-sass.git"},"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"engines":{"node":">=0.10.0"},"main":"lib/index.js","nodeSassConfig":{"binarySite":"https://github.com/sass/node-sass/releases/download"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"node scripts/coverage.js","install":"node scripts/install.js","postinstall":"node scripts/build.js","lint":"eslint bin/node-sass lib scripts test","test":"mocha test/{*,**/**}.js","build":"node scripts/build.js --force","prepublish":"not-in-install && node scripts/prepublish.js || in-install"},"files":["bin","binding.gyp","lib","scripts","src","test","vendor"],"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"async-foreach":"^0.1.3","chalk":"^1.1.1","cross-spawn":"^3.0.0","gaze":"^1.0.0","get-stdin":"^4.0.1","glob":"^7.0.3","in-publish":"^2.0.0","lodash.assign":"^4.2.0","lodash.clonedeep":"^4.3.2","meow":"^3.7.0","mkdirp":"^0.5.1","nan":"^2.3.2","node-gyp":"^3.3.1","npmlog":"^4.0.0","request":"^2.61.0","sass-graph":"^2.1.1"},"devDependencies":{"coveralls":"^2.11.8","eslint":"^3.4.0","istanbul":"^0.4.2","mocha":"^3.1.2","mocha-lcov-reporter":"^1.2.0","object-merge":"^2.5.1","read-yaml":"^1.0.0","rimraf":"^2.5.2","sass-spec":"^3.3.6-3"},"gitHead":"33fbd2b6e4117df3681037ebf1d400d759221a9c","_id":"node-sass@3.12.2","_shasum":"dc6dfe0463ec6968b8b7776f30d2c5d30a967b84","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.5.0","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"dist":{"shasum":"dc6dfe0463ec6968b8b7776f30d2c5d30a967b84","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-3.12.2.tgz"},"maintainers":[{"name":"am11","email":"adeelbm@outlook.com"},{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/node-sass-3.12.2.tgz_1479101714975_0.7719818986952305"},"directories":{}},"3.12.3":{"name":"node-sass","version":"3.12.3","libsass":"3.3.6","description":"Wrapper around libsass","license":"MIT","bugs":{"url":"https://github.com/sass/node-sass/issues"},"homepage":"https://github.com/sass/node-sass","repository":{"type":"git","url":"git+https://github.com/sass/node-sass.git"},"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"engines":{"node":">=0.10.0"},"main":"lib/index.js","nodeSassConfig":{"binarySite":"https://github.com/sass/node-sass/releases/download"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"node scripts/coverage.js","install":"node scripts/install.js","postinstall":"node scripts/build.js","lint":"eslint bin/node-sass lib scripts test","test":"mocha test/{*,**/**}.js","build":"node scripts/build.js --force","prepublish":"not-in-install && node scripts/prepublish.js || in-install"},"files":["bin","binding.gyp","lib","scripts","src","test","vendor"],"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"async-foreach":"^0.1.3","chalk":"^1.1.1","cross-spawn":"^3.0.0","gaze":"^1.0.0","get-stdin":"^4.0.1","glob":"^7.0.3","in-publish":"^2.0.0","lodash.assign":"^4.2.0","lodash.clonedeep":"^4.3.2","meow":"^3.7.0","mkdirp":"^0.5.1","nan":"^2.3.2","node-gyp":"^3.3.1","npmlog":"^4.0.0","request":"^2.61.0","sass-graph":"^2.1.1"},"devDependencies":{"coveralls":"^2.11.8","eslint":"^3.4.0","istanbul":"^0.4.2","mocha":"^3.1.2","mocha-lcov-reporter":"^1.2.0","object-merge":"^2.5.1","read-yaml":"^1.0.0","rimraf":"^2.5.2","sass-spec":"^3.3.6-3"},"gitHead":"bee91ae850d791ad01931a765a309983010de681","_id":"node-sass@3.12.3","_shasum":"ce528eb34d79bf3f08fdd731f352c4388219dc4c","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.5.0","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"dist":{"shasum":"ce528eb34d79bf3f08fdd731f352c4388219dc4c","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-3.12.3.tgz"},"maintainers":[{"name":"am11","email":"adeelbm@outlook.com"},{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/node-sass-3.12.3.tgz_1479176252954_0.781213590176776"},"directories":{}},"3.12.4":{"name":"node-sass","version":"3.12.4","libsass":"3.3.6","description":"Wrapper around libsass","license":"MIT","bugs":{"url":"https://github.com/sass/node-sass/issues"},"homepage":"https://github.com/sass/node-sass","repository":{"type":"git","url":"git+https://github.com/sass/node-sass.git"},"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"engines":{"node":">=0.10.0"},"main":"lib/index.js","nodeSassConfig":{"binarySite":"https://github.com/sass/node-sass/releases/download"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"node scripts/coverage.js","install":"node scripts/install.js","postinstall":"node scripts/build.js","lint":"eslint bin/node-sass lib scripts test","test":"mocha test/{*,**/**}.js","build":"node scripts/build.js --force","prepublish":"not-in-install && node scripts/prepublish.js || in-install"},"files":["bin","binding.gyp","lib","scripts","src","test","vendor"],"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"async-foreach":"^0.1.3","chalk":"^1.1.1","cross-spawn":"^3.0.0","gaze":"^1.0.0","get-stdin":"^4.0.1","glob":"^7.0.3","in-publish":"^2.0.0","lodash.assign":"^4.2.0","lodash.clonedeep":"^4.3.2","meow":"^3.7.0","mkdirp":"^0.5.1","nan":"^2.3.2","node-gyp":"^3.3.1","npmlog":"^4.0.0","request":"^2.61.0","sass-graph":"^2.1.1"},"devDependencies":{"coveralls":"^2.11.8","eslint":"^3.4.0","istanbul":"^0.4.2","mocha":"^3.1.2","mocha-lcov-reporter":"^1.2.0","object-merge":"^2.5.1","read-yaml":"^1.0.0","rimraf":"^2.5.2","sass-spec":"^3.3.6-3"},"gitHead":"3aadc7d327e62b0ed693e21ac8418d2dff89966c","_id":"node-sass@3.12.4","_shasum":"f234d4c879fb16ba71aa19469a9ac78be8bc0960","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.5.0","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"dist":{"shasum":"f234d4c879fb16ba71aa19469a9ac78be8bc0960","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-3.12.4.tgz"},"maintainers":[{"name":"am11","email":"adeelbm@outlook.com"},{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/node-sass-3.12.4.tgz_1479178638037_0.16378923994489014"},"directories":{}},"3.12.5":{"name":"node-sass","version":"3.12.5","libsass":"3.3.6","description":"Wrapper around libsass","license":"MIT","bugs":{"url":"https://github.com/sass/node-sass/issues"},"homepage":"https://github.com/sass/node-sass","repository":{"type":"git","url":"git+https://github.com/sass/node-sass.git"},"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"engines":{"node":">=0.10.0"},"main":"lib/index.js","nodeSassConfig":{"binarySite":"https://github.com/sass/node-sass/releases/download"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"node scripts/coverage.js","install":"node scripts/install.js","postinstall":"node scripts/build.js","lint":"eslint bin/node-sass lib scripts test","test":"mocha test/{*,**/**}.js","build":"node scripts/build.js --force","prepublish":"not-in-install && node scripts/prepublish.js || in-install"},"files":["bin","binding.gyp","lib","scripts","src","test","vendor"],"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"async-foreach":"^0.1.3","chalk":"^1.1.1","cross-spawn":"^3.0.0","gaze":"^1.0.0","get-stdin":"^4.0.1","glob":"^7.0.3","in-publish":"^2.0.0","lodash.assign":"^4.2.0","lodash.clonedeep":"^4.3.2","meow":"^3.7.0","mkdirp":"^0.5.1","nan":"^2.3.2","node-gyp":"^3.3.1","npmlog":"^4.0.0","request":"^2.61.0","sass-graph":"^2.1.1"},"devDependencies":{"coveralls":"^2.11.8","eslint":"^3.4.0","istanbul":"^0.4.2","mocha":"^3.1.2","mocha-lcov-reporter":"^1.2.0","object-merge":"^2.5.1","read-yaml":"^1.0.0","rimraf":"^2.5.2","sass-spec":"^3.3.6-3"},"gitHead":"79237e6090f90d9ec0cc6ea026a7d09760b6b415","_id":"node-sass@3.12.5","_shasum":"5d7c4bd205d670422793c4b0597dd04d4537452b","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.5.0","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"dist":{"shasum":"5d7c4bd205d670422793c4b0597dd04d4537452b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-3.12.5.tgz"},"maintainers":[{"name":"am11","email":"adeelbm@outlook.com"},{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/node-sass-3.12.5.tgz_1479180608183_0.14344063214957714"},"directories":{}},"3.13.0":{"name":"node-sass","version":"3.13.0","libsass":"3.3.6","description":"Wrapper around libsass","license":"MIT","bugs":{"url":"https://github.com/sass/node-sass/issues"},"homepage":"https://github.com/sass/node-sass","repository":{"type":"git","url":"git+https://github.com/sass/node-sass.git"},"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"engines":{"node":">=0.10.0"},"main":"lib/index.js","nodeSassConfig":{"binarySite":"https://github.com/sass/node-sass/releases/download"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"node scripts/coverage.js","install":"node scripts/install.js","postinstall":"node scripts/build.js","lint":"eslint bin/node-sass lib scripts test","test":"mocha test/{*,**/**}.js","build":"node scripts/build.js --force","prepublish":"not-in-install && node scripts/prepublish.js || in-install"},"files":["bin","binding.gyp","lib","scripts","src","test","vendor"],"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"async-foreach":"^0.1.3","chalk":"^1.1.1","cross-spawn":"^3.0.0","gaze":"^1.0.0","get-stdin":"^4.0.1","glob":"^7.0.3","in-publish":"^2.0.0","lodash.assign":"^4.2.0","lodash.clonedeep":"^4.3.2","meow":"^3.7.0","mkdirp":"^0.5.1","nan":"^2.3.2","node-gyp":"^3.3.1","npmlog":"^4.0.0","request":"^2.61.0","sass-graph":"^2.1.1"},"devDependencies":{"coveralls":"^2.11.8","eslint":"^3.4.0","istanbul":"^0.4.2","mocha":"^3.1.2","mocha-lcov-reporter":"^1.2.0","object-merge":"^2.5.1","read-yaml":"^1.0.0","rimraf":"^2.5.2","sass-spec":"^3.3.6-3"},"gitHead":"2e7f37084a1b30e93b142674cfed1fcd05c79e82","_id":"node-sass@3.13.0","_shasum":"d08b95bdebf40941571bd2c16a9334b980f8924f","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.5.0","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"dist":{"shasum":"d08b95bdebf40941571bd2c16a9334b980f8924f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-3.13.0.tgz"},"maintainers":[{"name":"am11","email":"adeelbm@outlook.com"},{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/node-sass-3.13.0.tgz_1479253519023_0.3307026196271181"},"directories":{}},"3.14.0-0":{"name":"node-sass","version":"3.14.0-0","libsass":"3.3.6","description":"Wrapper around libsass","license":"MIT","bugs":{"url":"https://github.com/sass/node-sass/issues"},"homepage":"https://github.com/sass/node-sass","repository":{"type":"git","url":"git+https://github.com/sass/node-sass.git"},"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"engines":{"node":">=0.10.0"},"main":"lib/index.js","nodeSassConfig":{"binarySite":"https://github.com/sass/node-sass/releases/download"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"node scripts/coverage.js","install":"node scripts/install.js","postinstall":"node scripts/build.js","lint":"eslint bin/node-sass lib scripts test","test":"mocha test/{*,**/**}.js","build":"node scripts/build.js --force","prepublish":"not-in-install && node scripts/prepublish.js || in-install"},"files":["bin","binding.gyp","lib","scripts","src","test","vendor"],"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"async-foreach":"^0.1.3","chalk":"^1.1.1","cross-spawn":"^3.0.0","gaze":"^1.0.0","get-stdin":"^4.0.1","glob":"^7.0.3","in-publish":"^2.0.0","lodash.assign":"^4.2.0","lodash.clonedeep":"^4.3.2","lodash.isarray":"^4.0.0","lodash.mergewith":"^4.6.0","meow":"^3.7.0","mkdirp":"^0.5.1","nan":"^2.3.2","node-gyp":"^3.3.1","npmlog":"^4.0.0","request":"^2.61.0","sass-graph":"^2.1.1"},"devDependencies":{"coveralls":"^2.11.8","eslint":"^3.4.0","istanbul":"^0.4.2","mocha":"^3.1.2","mocha-lcov-reporter":"^1.2.0","object-merge":"^2.5.1","read-yaml":"^1.0.0","rimraf":"^2.5.2","sass-spec":"^3.4.0-0"},"gitHead":"2d89607511f05d872eeaaf5ab6ab989ba581644b","_id":"node-sass@3.14.0-0","_shasum":"fbd728ee810c7171192c7a75a3e18f42d59fe64f","_from":".","_npmVersion":"3.10.9","_nodeVersion":"7.1.0","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"dist":{"shasum":"fbd728ee810c7171192c7a75a3e18f42d59fe64f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-3.14.0-0.tgz"},"maintainers":[{"name":"am11","email":"adeelbm@outlook.com"},{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/node-sass-3.14.0-0.tgz_1479393964296_0.022714039776474237"},"directories":{}},"3.13.1":{"name":"node-sass","version":"3.13.1","libsass":"3.3.6","description":"Wrapper around libsass","license":"MIT","bugs":{"url":"https://github.com/sass/node-sass/issues"},"homepage":"https://github.com/sass/node-sass","repository":{"type":"git","url":"git+https://github.com/sass/node-sass.git"},"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"engines":{"node":">=0.10.0"},"main":"lib/index.js","nodeSassConfig":{"binarySite":"https://github.com/sass/node-sass/releases/download"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"node scripts/coverage.js","install":"node scripts/install.js","postinstall":"node scripts/build.js","lint":"eslint bin/node-sass lib scripts test","test":"mocha test/{*,**/**}.js","build":"node scripts/build.js --force","prepublish":"not-in-install && node scripts/prepublish.js || in-install"},"files":["bin","binding.gyp","lib","scripts","src","test","vendor"],"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"async-foreach":"^0.1.3","chalk":"^1.1.1","cross-spawn":"^3.0.0","gaze":"^1.0.0","get-stdin":"^4.0.1","glob":"^7.0.3","in-publish":"^2.0.0","lodash.assign":"^4.2.0","lodash.clonedeep":"^4.3.2","meow":"^3.7.0","mkdirp":"^0.5.1","nan":"^2.3.2","node-gyp":"^3.3.1","npmlog":"^4.0.0","request":"^2.61.0","sass-graph":"^2.1.1"},"devDependencies":{"coveralls":"^2.11.8","eslint":"^3.4.0","istanbul":"^0.4.2","mocha":"^3.1.2","mocha-lcov-reporter":"^1.2.0","object-merge":"^2.5.1","read-yaml":"^1.0.0","rimraf":"^2.5.2","sass-spec":"^3.3.6-5"},"gitHead":"1bb893f386fc9751e317fa8b96f4dbd3c2623534","_id":"node-sass@3.13.1","_shasum":"7240fbbff2396304b4223527ed3020589c004fc2","_from":".","_npmVersion":"3.10.9","_nodeVersion":"7.1.0","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"dist":{"shasum":"7240fbbff2396304b4223527ed3020589c004fc2","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-3.13.1.tgz"},"maintainers":[{"name":"am11","email":"adeelbm@outlook.com"},{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/node-sass-3.13.1.tgz_1481350666505_0.7651687352918088"},"directories":{}},"4.0.0":{"name":"node-sass","version":"4.0.0","libsass":"3.4.0","description":"Wrapper around libsass","license":"MIT","bugs":{"url":"https://github.com/sass/node-sass/issues"},"homepage":"https://github.com/sass/node-sass","repository":{"type":"git","url":"git+https://github.com/sass/node-sass.git"},"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"engines":{"node":">=0.10.0"},"main":"lib/index.js","nodeSassConfig":{"binarySite":"https://github.com/sass/node-sass/releases/download"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"node scripts/coverage.js","install":"node scripts/install.js","postinstall":"node scripts/build.js","lint":"eslint bin/node-sass lib scripts test","test":"mocha test/{*,**/**}.js","build":"node scripts/build.js --force","prepublish":"not-in-install && node scripts/prepublish.js || in-install"},"files":["bin","binding.gyp","lib","scripts","src","test","vendor"],"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"async-foreach":"^0.1.3","chalk":"^1.1.1","cross-spawn":"^3.0.0","gaze":"^1.0.0","get-stdin":"^4.0.1","glob":"^7.0.3","in-publish":"^2.0.0","lodash.assign":"^4.2.0","lodash.clonedeep":"^4.3.2","lodash.isarray":"^4.0.0","lodash.mergewith":"^4.6.0","meow":"^3.7.0","mkdirp":"^0.5.1","nan":"^2.3.2","node-gyp":"^3.3.1","npmlog":"^4.0.0","request":"^2.61.0","sass-graph":"^2.1.1"},"devDependencies":{"coveralls":"^2.11.8","eslint":"^3.4.0","istanbul":"^0.4.2","mocha":"^3.1.2","mocha-lcov-reporter":"^1.2.0","object-merge":"^2.5.1","read-yaml":"^1.0.0","rimraf":"^2.5.2","sass-spec":"^3.4.0"},"gitHead":"d8b6ecd62ffd5635dc0f5b67d39448227c0eedf4","_id":"node-sass@4.0.0","_shasum":"3208301ad5a6096de227f3fc4c3ce682b9816afc","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"dist":{"shasum":"3208301ad5a6096de227f3fc4c3ce682b9816afc","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-4.0.0.tgz"},"maintainers":[{"name":"am11","email":"adeelbm@outlook.com"},{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/node-sass-4.0.0.tgz_1481377319570_0.09212961886078119"},"directories":{}},"4.1.0":{"name":"node-sass","version":"4.1.0","libsass":"3.4.0","description":"Wrapper around libsass","license":"MIT","bugs":{"url":"https://github.com/sass/node-sass/issues"},"homepage":"https://github.com/sass/node-sass","repository":{"type":"git","url":"git+https://github.com/sass/node-sass.git"},"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"engines":{"node":">=0.10.0"},"main":"lib/index.js","nodeSassConfig":{"binarySite":"https://github.com/sass/node-sass/releases/download"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"node scripts/coverage.js","install":"node scripts/install.js","postinstall":"node scripts/build.js","lint":"eslint bin/node-sass lib scripts test","test":"mocha test/{*,**/**}.js","build":"node scripts/build.js --force","prepublish":"not-in-install && node scripts/prepublish.js || in-install"},"files":["bin","binding.gyp","lib","scripts","src","test","vendor"],"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"async-foreach":"^0.1.3","chalk":"^1.1.1","cross-spawn":"^3.0.0","gaze":"^1.0.0","get-stdin":"^4.0.1","glob":"^7.0.3","in-publish":"^2.0.0","lodash.assign":"^4.2.0","lodash.clonedeep":"^4.3.2","lodash.mergewith":"^4.6.0","meow":"^3.7.0","mkdirp":"^0.5.1","nan":"^2.3.2","node-gyp":"^3.3.1","npmlog":"^4.0.0","request":"^2.61.0","sass-graph":"^2.1.1","stdout-stream":"^1.4.0"},"devDependencies":{"coveralls":"^2.11.8","eslint":"^3.4.0","istanbul":"^0.4.2","mocha":"^3.1.2","mocha-lcov-reporter":"^1.2.0","object-merge":"^2.5.1","read-yaml":"^1.0.0","rimraf":"^2.5.2","sass-spec":"^3.4.0"},"gitHead":"396ad288c5911c892e51ea976f86d67901f07a1a","_id":"node-sass@4.1.0","_shasum":"d6d304f104b0815b076921e87ef71090555bbfdb","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"dist":{"shasum":"d6d304f104b0815b076921e87ef71090555bbfdb","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-4.1.0.tgz"},"maintainers":[{"name":"am11","email":"adeelbm@outlook.com"},{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/node-sass-4.1.0.tgz_1482132751418_0.8786397711373866"},"directories":{}},"4.1.1":{"name":"node-sass","version":"4.1.1","libsass":"3.4.0","description":"Wrapper around libsass","license":"MIT","bugs":{"url":"https://github.com/sass/node-sass/issues"},"homepage":"https://github.com/sass/node-sass","repository":{"type":"git","url":"git+https://github.com/sass/node-sass.git"},"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"engines":{"node":">=0.10.0"},"main":"lib/index.js","nodeSassConfig":{"binarySite":"https://github.com/sass/node-sass/releases/download"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"node scripts/coverage.js","install":"node scripts/install.js","postinstall":"node scripts/build.js","lint":"eslint bin/node-sass lib scripts test","test":"mocha test/{*,**/**}.js","build":"node scripts/build.js --force","prepublish":"not-in-install && node scripts/prepublish.js || in-install"},"files":["bin","binding.gyp","lib","scripts","src","test","vendor"],"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"async-foreach":"^0.1.3","chalk":"^1.1.1","cross-spawn":"^3.0.0","gaze":"^1.0.0","get-stdin":"^4.0.1","glob":"^7.0.3","in-publish":"^2.0.0","lodash.assign":"^4.2.0","lodash.clonedeep":"^4.3.2","lodash.mergewith":"^4.6.0","meow":"^3.7.0","mkdirp":"^0.5.1","nan":"^2.3.2","node-gyp":"^3.3.1","npmlog":"^4.0.0","request":"^2.61.0","sass-graph":"^2.1.1","stdout-stream":"^1.4.0"},"devDependencies":{"coveralls":"^2.11.8","eslint":"^3.4.0","istanbul":"^0.4.2","mocha":"^3.1.2","mocha-lcov-reporter":"^1.2.0","object-merge":"^2.5.1","read-yaml":"^1.0.0","rimraf":"^2.5.2","sass-spec":"3.4.0"},"gitHead":"5c83bb72e22afb26d5c70cabbd3b40d0e029c52a","_id":"node-sass@4.1.1","_shasum":"dc3e27d25bd827b6276ea243be357c7c7cd07111","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"dist":{"shasum":"dc3e27d25bd827b6276ea243be357c7c7cd07111","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-4.1.1.tgz"},"maintainers":[{"name":"am11","email":"adeelbm@outlook.com"},{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/node-sass-4.1.1.tgz_1482229442556_0.6751126418821514"},"directories":{}},"4.2.0":{"name":"node-sass","version":"4.2.0","libsass":"3.4.3","description":"Wrapper around libsass","license":"MIT","bugs":{"url":"https://github.com/sass/node-sass/issues"},"homepage":"https://github.com/sass/node-sass","repository":{"type":"git","url":"git+https://github.com/sass/node-sass.git"},"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"engines":{"node":">=0.10.0"},"main":"lib/index.js","nodeSassConfig":{"binarySite":"https://github.com/sass/node-sass/releases/download"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"node scripts/coverage.js","install":"node scripts/install.js","postinstall":"node scripts/build.js","lint":"eslint bin/node-sass lib scripts test","test":"mocha test/{*,**/**}.js","build":"node scripts/build.js --force","prepublish":"not-in-install && node scripts/prepublish.js || in-install"},"files":["bin","binding.gyp","lib","scripts","src","test","vendor"],"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"async-foreach":"^0.1.3","chalk":"^1.1.1","cross-spawn":"^3.0.0","gaze":"^1.0.0","get-stdin":"^4.0.1","glob":"^7.0.3","in-publish":"^2.0.0","lodash.assign":"^4.2.0","lodash.clonedeep":"^4.3.2","lodash.mergewith":"^4.6.0","meow":"^3.7.0","mkdirp":"^0.5.1","nan":"^2.3.2","node-gyp":"^3.3.1","npmlog":"^4.0.0","request":"^2.61.0","sass-graph":"^2.1.1","stdout-stream":"^1.4.0"},"devDependencies":{"coveralls":"^2.11.8","eslint":"^3.4.0","istanbul":"^0.4.2","mocha":"^3.1.2","mocha-lcov-reporter":"^1.2.0","object-merge":"^2.5.1","read-yaml":"^1.0.0","rimraf":"^2.5.2","sass-spec":"3.4.3"},"gitHead":"1e76d99164a112a8895c668af795594a35dcdca6","_id":"node-sass@4.2.0","_shasum":"ef3e686c119118e01b0a3c7345821a0d7400acf2","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.1.0","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"dist":{"shasum":"ef3e686c119118e01b0a3c7345821a0d7400acf2","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-4.2.0.tgz"},"maintainers":[{"name":"am11","email":"adeelbm@outlook.com"},{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/node-sass-4.2.0.tgz_1483921907324_0.4270094248931855"},"directories":{}},"4.3.0":{"name":"node-sass","version":"4.3.0","libsass":"3.4.3","description":"Wrapper around libsass","license":"MIT","bugs":{"url":"https://github.com/sass/node-sass/issues"},"homepage":"https://github.com/sass/node-sass","repository":{"type":"git","url":"git+https://github.com/sass/node-sass.git"},"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"engines":{"node":">=0.10.0"},"main":"lib/index.js","nodeSassConfig":{"binarySite":"https://github.com/sass/node-sass/releases/download"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"node scripts/coverage.js","install":"node scripts/install.js","postinstall":"node scripts/build.js","lint":"eslint bin/node-sass lib scripts test","test":"mocha test/{*,**/**}.js","build":"node scripts/build.js --force","prepublish":"not-in-install && node scripts/prepublish.js || in-install"},"files":["bin","binding.gyp","lib","scripts","src","test","vendor"],"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"async-foreach":"^0.1.3","chalk":"^1.1.1","cross-spawn":"^3.0.0","gaze":"^1.0.0","get-stdin":"^4.0.1","glob":"^7.0.3","in-publish":"^2.0.0","lodash.assign":"^4.2.0","lodash.clonedeep":"^4.3.2","lodash.mergewith":"^4.6.0","meow":"^3.7.0","mkdirp":"^0.5.1","nan":"^2.3.2","node-gyp":"^3.3.1","npmlog":"^4.0.0","request":"^2.61.0","sass-graph":"^2.1.1","stdout-stream":"^1.4.0"},"devDependencies":{"coveralls":"^2.11.8","eslint":"^3.4.0","istanbul":"^0.4.2","mocha":"^3.1.2","mocha-lcov-reporter":"^1.2.0","object-merge":"^2.5.1","read-yaml":"^1.0.0","rimraf":"^2.5.2","sass-spec":"3.4.3"},"gitHead":"71a7a84ca58daaeba9fc4fc22621ebe00d756ff6","_id":"node-sass@4.3.0","_shasum":"d014f64595d77b26af99e9f7a7e74704d9976bda","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"dist":{"shasum":"d014f64595d77b26af99e9f7a7e74704d9976bda","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-4.3.0.tgz"},"maintainers":[{"name":"am11","email":"adeelbm@outlook.com"},{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/node-sass-4.3.0.tgz_1484261887305_0.8134009372442961"},"directories":{}},"4.4.0":{"name":"node-sass","version":"4.4.0","libsass":"3.5.0.beta.2","description":"Wrapper around libsass","license":"MIT","bugs":{"url":"https://github.com/sass/node-sass/issues"},"homepage":"https://github.com/sass/node-sass","repository":{"type":"git","url":"git+https://github.com/sass/node-sass.git"},"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"engines":{"node":">=0.10.0"},"main":"lib/index.js","nodeSassConfig":{"binarySite":"https://github.com/sass/node-sass/releases/download"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"node scripts/coverage.js","install":"node scripts/install.js","postinstall":"node scripts/build.js","lint":"eslint bin/node-sass lib scripts test","test":"mocha test/{*,**/**}.js","build":"node scripts/build.js --force","prepublish":"not-in-install && node scripts/prepublish.js || in-install"},"files":["bin","binding.gyp","lib","scripts","src","test","vendor"],"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"async-foreach":"^0.1.3","chalk":"^1.1.1","cross-spawn":"^3.0.0","gaze":"^1.0.0","get-stdin":"^4.0.1","glob":"^7.0.3","in-publish":"^2.0.0","lodash.assign":"^4.2.0","lodash.clonedeep":"^4.3.2","lodash.mergewith":"^4.6.0","meow":"^3.7.0","mkdirp":"^0.5.1","nan":"^2.3.2","node-gyp":"^3.3.1","npmlog":"^4.0.0","request":"^2.61.0","sass-graph":"^2.1.1","stdout-stream":"^1.4.0"},"devDependencies":{"coveralls":"^2.11.8","eslint":"^3.4.0","istanbul":"^0.4.2","mocha":"^3.1.2","mocha-lcov-reporter":"^1.2.0","object-merge":"^2.5.1","read-yaml":"^1.0.0","rimraf":"^2.5.2","sass-spec":"3.5.0-1"},"gitHead":"d628b103f722f484bb60376a15cb441d48c60c40","_id":"node-sass@4.4.0","_shasum":"ff08ff2fded2a1d0bee270e8ed1275f7bc9c5a16","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"dist":{"shasum":"ff08ff2fded2a1d0bee270e8ed1275f7bc9c5a16","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-4.4.0.tgz"},"maintainers":[{"name":"am11","email":"adeelbm@outlook.com"},{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/node-sass-4.4.0.tgz_1485484027962_0.4535397090949118"},"directories":{}},"4.5.0":{"name":"node-sass","version":"4.5.0","libsass":"3.5.0.beta.2","description":"Wrapper around libsass","license":"MIT","bugs":{"url":"https://github.com/sass/node-sass/issues"},"homepage":"https://github.com/sass/node-sass","repository":{"type":"git","url":"git+https://github.com/sass/node-sass.git"},"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"engines":{"node":">=0.10.0"},"main":"lib/index.js","nodeSassConfig":{"binarySite":"https://github.com/sass/node-sass/releases/download"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"node scripts/coverage.js","install":"node scripts/install.js","postinstall":"node scripts/build.js","lint":"eslint bin/node-sass lib scripts test","test":"mocha test/{*,**/**}.js","build":"node scripts/build.js --force","prepublish":"not-in-install && node scripts/prepublish.js || in-install"},"files":["bin","binding.gyp","lib","scripts","src","test","vendor"],"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"async-foreach":"^0.1.3","chalk":"^1.1.1","cross-spawn":"^3.0.0","gaze":"^1.0.0","get-stdin":"^4.0.1","glob":"^7.0.3","in-publish":"^2.0.0","lodash.assign":"^4.2.0","lodash.clonedeep":"^4.3.2","lodash.mergewith":"^4.6.0","meow":"^3.7.0","mkdirp":"^0.5.1","nan":"^2.3.2","node-gyp":"^3.3.1","npmlog":"^4.0.0","request":"^2.61.0","sass-graph":"^2.1.1","stdout-stream":"^1.4.0"},"devDependencies":{"coveralls":"^2.11.8","eslint":"^3.4.0","istanbul":"^0.4.2","mocha":"^3.1.2","mocha-lcov-reporter":"^1.2.0","object-merge":"^2.5.1","read-yaml":"^1.0.0","rimraf":"^2.5.2","sass-spec":"3.5.0-1"},"gitHead":"cc7c3b37ba65fe5c7ebd0965c16e086abec57f3b","_id":"node-sass@4.5.0","_shasum":"532e37bad0ce587348c831535dbc98ea4289508b","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"dist":{"shasum":"532e37bad0ce587348c831535dbc98ea4289508b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-4.5.0.tgz"},"maintainers":[{"name":"am11","email":"adeelbm@outlook.com"},{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/node-sass-4.5.0.tgz_1485920797403_0.3499185631517321"},"directories":{}},"4.5.1":{"name":"node-sass","version":"4.5.1","libsass":"3.5.0.beta.2","description":"Wrapper around libsass","license":"MIT","bugs":{"url":"https://github.com/sass/node-sass/issues"},"homepage":"https://github.com/sass/node-sass","repository":{"type":"git","url":"git+https://github.com/sass/node-sass.git"},"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"engines":{"node":">=0.10.0"},"main":"lib/index.js","nodeSassConfig":{"binarySite":"https://github.com/sass/node-sass/releases/download"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"node scripts/coverage.js","install":"node scripts/install.js","postinstall":"node scripts/build.js","lint":"eslint bin/node-sass lib scripts test","test":"mocha test/{*,**/**}.js","build":"node scripts/build.js --force","prepublish":"not-in-install && node scripts/prepublish.js || in-install"},"files":["bin","binding.gyp","lib","scripts","src","test","vendor"],"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"async-foreach":"^0.1.3","chalk":"^1.1.1","cross-spawn":"^3.0.0","gaze":"^1.0.0","get-stdin":"^4.0.1","glob":"^7.0.3","in-publish":"^2.0.0","lodash.assign":"^4.2.0","lodash.clonedeep":"^4.3.2","lodash.mergewith":"^4.6.0","meow":"^3.7.0","mkdirp":"^0.5.1","nan":"^2.3.2","node-gyp":"^3.3.1","npmlog":"^4.0.0","request":"^2.79.0","sass-graph":"^2.1.1","stdout-stream":"^1.4.0"},"devDependencies":{"coveralls":"^2.11.8","eslint":"^3.4.0","istanbul":"^0.4.2","mocha":"^3.1.2","mocha-lcov-reporter":"^1.2.0","object-merge":"^2.5.1","read-yaml":"^1.0.0","rimraf":"^2.5.2","sass-spec":"3.5.0-1"},"gitHead":"f2b410b7ffecb8b48b11e59b2ce2aa9601367112","_id":"node-sass@4.5.1","_shasum":"e8e119fe3c8213ad7e56ca618dd231e9e8b30f5b","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"dist":{"shasum":"e8e119fe3c8213ad7e56ca618dd231e9e8b30f5b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-4.5.1.tgz"},"maintainers":[{"name":"am11","email":"adeelbm@outlook.com"},{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/node-sass-4.5.1.tgz_1490095318768_0.7931501974817365"},"directories":{}},"4.5.2":{"name":"node-sass","version":"4.5.2","libsass":"3.5.0.beta.2","description":"Wrapper around libsass","license":"MIT","bugs":{"url":"https://github.com/sass/node-sass/issues"},"homepage":"https://github.com/sass/node-sass","repository":{"type":"git","url":"git+https://github.com/sass/node-sass.git"},"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"engines":{"node":">=0.10.0"},"main":"lib/index.js","nodeSassConfig":{"binarySite":"https://github.com/sass/node-sass/releases/download"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"node scripts/coverage.js","install":"node scripts/install.js","postinstall":"node scripts/build.js","lint":"eslint bin/node-sass lib scripts test","test":"mocha test/{*,**/**}.js","build":"node scripts/build.js --force","prepublish":"not-in-install && node scripts/prepublish.js || in-install"},"files":["bin","binding.gyp","lib","scripts","src","test","vendor"],"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"async-foreach":"^0.1.3","chalk":"^1.1.1","cross-spawn":"^3.0.0","gaze":"^1.0.0","get-stdin":"^4.0.1","glob":"^7.0.3","in-publish":"^2.0.0","lodash.assign":"^4.2.0","lodash.clonedeep":"^4.3.2","lodash.mergewith":"^4.6.0","meow":"^3.7.0","mkdirp":"^0.5.1","nan":"^2.3.2","node-gyp":"^3.3.1","npmlog":"^4.0.0","request":"^2.79.0","sass-graph":"^2.1.1","stdout-stream":"^1.4.0"},"devDependencies":{"coveralls":"^2.11.8","eslint":"^3.4.0","istanbul":"^0.4.2","mocha":"^3.1.2","mocha-lcov-reporter":"^1.2.0","object-merge":"^2.5.1","read-yaml":"^1.0.0","rimraf":"^2.5.2","sass-spec":"3.5.0-1"},"gitHead":"ae4f935f04ec1d3a5db2b5692f97171ec7ddb9a5","_id":"node-sass@4.5.2","_shasum":"4012fa2bd129b1d6365117e88d9da0500d99da64","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.6.0","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"dist":{"shasum":"4012fa2bd129b1d6365117e88d9da0500d99da64","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-4.5.2.tgz"},"maintainers":[{"name":"am11","email":"adeelbm@outlook.com"},{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/node-sass-4.5.2.tgz_1490769057844_0.9959443658590317"},"directories":{}},"4.5.3":{"name":"node-sass","version":"4.5.3","libsass":"3.5.0.beta.2","description":"Wrapper around libsass","license":"MIT","bugs":{"url":"https://github.com/sass/node-sass/issues"},"homepage":"https://github.com/sass/node-sass","repository":{"type":"git","url":"git+https://github.com/sass/node-sass.git"},"author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"engines":{"node":">=0.10.0"},"main":"lib/index.js","nodeSassConfig":{"binarySite":"https://github.com/sass/node-sass/releases/download"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"node scripts/coverage.js","install":"node scripts/install.js","postinstall":"node scripts/build.js","lint":"eslint bin/node-sass lib scripts test","test":"mocha test/{*,**/**}.js","build":"node scripts/build.js --force","prepublish":"not-in-install && node scripts/prepublish.js || in-install"},"files":["bin","binding.gyp","lib","scripts","src","test","vendor"],"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"async-foreach":"^0.1.3","chalk":"^1.1.1","cross-spawn":"^3.0.0","gaze":"^1.0.0","get-stdin":"^4.0.1","glob":"^7.0.3","in-publish":"^2.0.0","lodash.assign":"^4.2.0","lodash.clonedeep":"^4.3.2","lodash.mergewith":"^4.6.0","meow":"^3.7.0","mkdirp":"^0.5.1","nan":"^2.3.2","node-gyp":"^3.3.1","npmlog":"^4.0.0","request":"^2.79.0","sass-graph":"^2.1.1","stdout-stream":"^1.4.0"},"devDependencies":{"coveralls":"^2.11.8","eslint":"^3.4.0","istanbul":"^0.4.2","mocha":"^3.1.2","mocha-lcov-reporter":"^1.2.0","object-merge":"^2.5.1","read-yaml":"^1.0.0","rimraf":"^2.5.2","sass-spec":"3.5.0-1"},"gitHead":"48bbed1b923ab3f6338f866e8dc3fe906909803b","_id":"node-sass@4.5.3","_shasum":"d09c9d1179641239d1b97ffc6231fdcec53e1568","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.6.0","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"dist":{"shasum":"d09c9d1179641239d1b97ffc6231fdcec53e1568","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/node-sass/-/node-sass-4.5.3.tgz"},"maintainers":[{"name":"am11","email":"adeelbm@outlook.com"},{"name":"andrewnez","email":"andrewnez@gmail.com"},{"name":"deanmao","email":"deanmao@gmail.com"},{"name":"keithamus","email":"npm@keithcirkel.co.uk"},{"name":"laurentgoderre","email":"laurent.goderre@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/node-sass-4.5.3.tgz_1494946716672_0.5895557960029691"},"directories":{}}},"name":"node-sass","time":{"modified":"2017-06-18T21:19:13.897Z","created":"2012-06-12T19:49:43.331Z","0.2.0":"2012-06-12T19:49:45.950Z","0.2.1":"2012-06-17T20:50:20.200Z","0.2.2":"2012-07-08T17:28:18.030Z","0.2.3":"2012-08-23T11:53:31.647Z","0.2.4":"2012-08-26T20:16:39.035Z","0.2.5":"2012-11-01T09:05:07.591Z","0.2.6":"2013-01-12T10:53:26.399Z","0.3.0":"2013-02-03T21:26:38.510Z","0.4.0":"2013-03-28T17:10:12.248Z","0.4.1":"2013-04-15T23:28:40.016Z","0.4.2":"2013-04-19T12:49:01.523Z","0.4.3":"2013-04-22T09:13:18.917Z","0.4.4":"2013-04-27T22:27:05.192Z","0.5.0":"2013-05-10T10:27:20.255Z","0.5.1":"2013-05-29T07:41:59.970Z","0.5.2":"2013-06-12T10:19:49.001Z","0.5.3":"2013-07-08T08:08:26.682Z","0.5.4":"2013-07-12T21:32:56.983Z","0.6.0":"2013-07-30T20:23:32.043Z","0.6.1":"2013-07-30T21:00:51.314Z","0.6.2":"2013-08-01T21:25:56.657Z","0.6.3":"2013-08-02T19:09:50.064Z","0.6.4":"2013-08-08T19:39:40.917Z","0.6.5":"2013-09-07T08:30:30.404Z","0.6.6":"2013-09-13T16:31:16.896Z","0.6.7":"2013-10-03T09:01:27.390Z","0.7.0-alpha":"2013-10-19T15:13:39.524Z","0.7.0":"2013-10-23T08:44:00.175Z","0.8.0":"2014-01-10T23:56:39.818Z","0.8.1":"2014-01-13T08:47:58.939Z","0.8.2":"2014-03-12T17:35:26.604Z","0.8.3":"2014-03-12T17:41:42.401Z","0.8.4":"2014-03-26T20:03:04.280Z","0.8.5":"2014-04-22T09:14:36.053Z","0.8.6":"2014-04-22T13:08:42.143Z","0.9.0":"2014-06-05T20:34:24.593Z","0.9.1":"2014-06-06T10:28:02.828Z","0.9.2":"2014-06-08T19:48:26.349Z","0.9.3":"2014-06-16T09:26:38.455Z","0.9.4-rc1":"2014-09-20T15:38:26.116Z","0.9.4":"2014-09-21T20:24:00.776Z","0.9.5-rc1":"2014-09-22T16:39:18.564Z","0.9.5":"2014-10-05T11:01:24.538Z","0.9.6":"2014-10-06T07:09:06.084Z","1.0.0":"2014-10-16T20:03:11.849Z","1.0.1":"2014-10-16T20:17:45.086Z","1.0.2-alpha":"2014-10-24T20:49:20.903Z","1.0.2":"2014-10-24T20:57:56.372Z","1.0.3":"2014-10-24T21:42:54.595Z","1.1.0":"2014-10-29T10:19:52.664Z","1.1.1":"2014-10-29T11:44:43.001Z","1.1.2":"2014-10-29T12:36:06.800Z","1.1.3":"2014-10-29T12:47:17.351Z","1.1.4":"2014-10-29T17:07:45.922Z","1.2.0":"2014-11-06T10:30:58.159Z","1.2.1":"2014-11-06T10:36:59.425Z","1.2.2":"2014-11-06T18:51:52.447Z","1.2.3":"2014-11-19T21:44:00.859Z","2.0.0-beta":"2014-12-24T23:40:39.110Z","2.0.0":"2015-02-12T04:04:23.708Z","2.0.1":"2015-02-12T08:43:40.780Z","3.0.0-preview":"2015-03-11T05:24:39.307Z","3.0.0-pre":"2015-03-11T06:29:45.853Z","3.0.0-alpha.0":"2015-03-16T02:17:47.712Z","3.0.0-beta.1":"2015-03-24T21:46:30.571Z","3.0.0-beta.2":"2015-03-25T21:50:29.267Z","3.0.0-beta.3":"2015-03-27T07:45:41.739Z","3.0.0-beta.4":"2015-03-27T10:08:00.495Z","2.1.0":"2015-03-28T17:51:00.008Z","2.1.1":"2015-03-28T18:16:08.690Z","3.0.0-beta.5":"2015-04-06T10:18:06.735Z","3.0.0-beta.6":"2015-04-22T00:40:34.419Z","3.0.0-beta.7":"2015-04-22T01:19:32.029Z","3.0.0":"2015-05-06T13:51:55.529Z","3.1.0":"2015-05-13T12:20:32.248Z","3.1.1":"2015-05-15T06:35:50.720Z","3.1.2":"2015-05-21T02:57:01.566Z","3.2.0":"2015-06-11T17:57:07.143Z","3.3.0":"2015-08-26T02:47:27.877Z","3.3.1":"2015-08-26T10:18:33.259Z","3.3.2":"2015-08-30T04:21:09.834Z","3.3.3":"2015-09-17T16:00:05.990Z","3.4.0-beta1":"2015-09-18T06:59:15.656Z","3.4.0-beta.2":"2015-10-16T09:30:14.525Z","3.4.0":"2015-10-25T03:24:53.616Z","3.4.1":"2015-10-27T01:55:26.915Z","3.4.2":"2015-11-12T16:39:26.875Z","3.5.0-beta.1":"2016-01-29T01:24:46.422Z","3.5.0":"2016-04-20T14:08:44.304Z","3.5.1":"2016-04-20T14:22:16.189Z","3.5.2":"2016-04-21T10:57:02.941Z","3.5.3":"2016-04-21T13:07:34.623Z","3.6.0":"2016-04-23T12:19:16.648Z","3.7.0":"2016-05-03T09:54:24.510Z","3.8.0":"2016-06-17T23:33:09.981Z","3.9.0":"2016-09-04T23:30:02.870Z","3.9.1":"2016-09-06T05:15:57.906Z","3.9.2":"2016-09-06T06:11:24.729Z","3.9.3":"2016-09-06T10:27:12.752Z","3.10.0":"2016-09-14T01:40:28.649Z","3.10.0-1":"2016-09-30T05:38:33.147Z","3.10.1":"2016-09-30T06:55:05.457Z","3.11.0":"2016-11-03T00:15:22.007Z","3.11.1":"2016-11-03T12:00:20.754Z","3.11.2":"2016-11-05T06:29:23.246Z","3.11.3":"2016-11-12T04:24:43.294Z","3.12.0":"2016-11-13T22:57:35.287Z","3.12.1":"2016-11-14T00:22:06.004Z","3.12.2":"2016-11-14T05:35:17.293Z","3.12.3":"2016-11-15T02:17:35.046Z","3.12.4":"2016-11-15T02:57:20.131Z","3.12.5":"2016-11-15T03:30:08.453Z","3.13.0":"2016-11-15T23:45:19.365Z","3.14.0-0":"2016-11-17T14:46:06.396Z","3.13.1":"2016-12-10T06:17:48.624Z","4.0.0":"2016-12-10T13:42:01.903Z","4.1.0":"2016-12-19T07:32:33.824Z","4.1.1":"2016-12-20T10:24:02.811Z","4.2.0":"2017-01-09T00:31:48.067Z","4.3.0":"2017-01-12T22:58:09.575Z","4.4.0":"2017-01-27T02:27:08.237Z","4.5.0":"2017-02-01T03:46:38.185Z","4.5.1":"2017-03-21T11:21:59.057Z","4.5.2":"2017-03-29T06:30:58.593Z","4.5.3":"2017-05-16T14:58:38.284Z"},"readmeFilename":"README.md","homepage":"https://github.com/sass/node-sass"}