{"_attachments":{},"_id":"node-sass","_rev":"3023-61f14a80b677e08f51149690","author":{"name":"Andrew Nesbitt","email":"andrewnez@gmail.com","url":"http://andrew.github.com"},"description":"Wrapper around libsass","dist-tags":{"beta":"4.11.0","latest":"9.0.0","next":"4.8.3"},"license":"MIT","maintainers":[{"name":"xzyfer","email":"xzyfer@gmail.com"},{"name":"nex3","email":"nex342@gmail.com"}],"name":"node-sass","readme":"# node-sass\n\n**Warning:** [LibSass and Node Sass are deprecated](https://sass-lang.com/blog/libsass-is-deprecated).\nWhile they will continue to receive maintenance releases indefinitely, there are no\nplans to add additional features or compatibility with any new CSS or Sass features.\nProjects that still use it should move onto\n[Dart Sass](https://sass-lang.com/dart-sass).\n\n## Node version support policy\n\n1. Supported Node.js versions vary by release, please consult the [releases page](https://github.com/sass/node-sass/releases).\n1. Node versions that hit end of life <https://github.com/nodejs/Release>, will be dropped from support at each node-sass release (major, minor).\n1. We will stop building binaries for unsupported releases, testing for breakages in dependency compatibility, but we will not block installations for those that want to support themselves.\n1. New node release require minor internal changes along with support from CI providers (AppVeyor, GitHub Actions). We will open a single issue for interested parties to subscribe to, and close additional issues.\n\nBelow is a quick guide for minimum and maximum supported versions of node-sass:\n\nNodeJS  | Supported node-sass version | Node Module\n--------|-----------------------------|------------\nNode 20 | 9.0+                        | 115\nNode 19 | 8.0+                        | 111\nNode 18 | 8.0+                        | 108\nNode 17 | 7.0+, <8.0                  | 102\nNode 16 | 6.0+                        | 93\nNode 15 | 5.0+, <7.0                  | 88\nNode 14 | 4.14+, <9.0                 | 83\nNode 13 | 4.13+, <5.0                 | 79\nNode 12 | 4.12+, <8.0                 | 72\nNode 11 | 4.10+, <5.0                 | 67\nNode 10 | 4.9+, <6.0                  | 64\nNode 8  | 4.5.3+, <5.0                | 57\nNode <8 | <5.0                        | <57\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![Alpine](https://github.com/sass/node-sass/workflows/Build%20bindings%20for%20Alpine%20releases/badge.svg)\n![Linux](https://github.com/sass/node-sass/workflows/Build%20bindings%20for%20Linux%20releases/badge.svg)\n![macOS](https://github.com/sass/node-sass/workflows/Build%20bindings%20for%20macOS%20releases/badge.svg)\n![Windows x64](https://github.com/sass/node-sass/workflows/Build%20bindings%20for%20Windows%20releases/badge.svg)\n![Linting](https://github.com/sass/node-sass/workflows/Lint%20JS/badge.svg)\n[![Windows x86](https://ci.appveyor.com/api/projects/status/22mjbk59kvd55m9y/branch/master?svg=true)](https://ci.appveyor.com/project/sass/node-sass/branch/master)\n[![Coverage Status](https://coveralls.io/repos/sass/node-sass/badge.svg?branch=master)](https://coveralls.io/r/sass/node-sass?branch=master)\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```shell\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/nodesource/distributions/blob/master/README.md#debinstall) to install NodeJS so that `#!/usr/bin/env node` correctly resolves.\n\nCompiling on Windows machines requires the [node-gyp prerequisites](https://github.com/nodejs/node-gyp#on-windows).\n\nAre you seeing the following error? Check out our [Troubleshooting guide](https://github.com/sass/node-sass/blob/master/TROUBLESHOOTING.md#installing-node-sass-4x-with-node--4).**\n\n```\nSyntaxError: Use of const in strict mode.\n```\n\n**Having installation troubles? Check out our [Troubleshooting guide](https://github.com/sass/node-sass/blob/master/TROUBLESHOOTING.md).**\n\n### Install from mirror in China\n\n```shell\nnpm install -g mirror-config-china --registry=https://registry.npmmirror.com\nnpm install node-sass\n```\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\n### file\n\n* Type: `String`\n* Default: `null`\n\n**Special**: `file` or `data` must be specified\n\nPath to a file for [LibSass] to compile.\n\n### data\n\n* Type: `String`\n* Default: `null`\n\n**Special**: `file` or `data` must be specified\n\nA string to pass to [LibSass] to compile. 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\n* Type: `Function | Function[]` signature `function(url, prev, done)`\n* Default: `undefined`\n\nFunction Parameters and Information:\n\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 synchronously\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---experimental) 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\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\n* `getValue()` / `setValue(value)` : gets / sets the enclosed string\n\n#### types.Color(r, g, b [, a = 1.0]) or types.Color(argb)\n\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\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\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\n* `getKey(index)` / `setKey(index, value)`\n* `getValue(index)` / `setValue(index, value)`\n* `getLength()`\n\n#### types.Null()\n\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\n\n* Type: `Array<String>`\n* Default: `[]`\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\n\n* Type: `Boolean`\n* Default: `false`\n\n`true` values enable [Sass Indented Syntax](https://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)\n\n* Type: `String`\n* Default: `space`\n\nUsed to determine whether to use space or tab character for indentation.\n\n### indentWidth (>= v3.0.0)\n\n* Type: `Number`\n* Default: `2`\n* Maximum: `10`\n\nUsed to determine the number of spaces or tabs to be used for indentation.\n\n### linefeed (>= v3.0.0)\n\n* Type: `String`\n* Default: `lf`\n\nUsed to determine whether to use `cr`, `crlf`, `lf` or `lfcr` sequence for line break.\n\n### omitSourceMapUrl\n\n* Type: `Boolean`\n* Default: `false`\n\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\n\n* Type: `String | null`\n* Default: `null`\n\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\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\n\n* Type: `String`\n* Default: `nested`\n* Values: `nested`, `expanded`, `compact`, `compressed`\n\nDetermines the output format of the final CSS style.\n\n### precision\n\n* Type: `Integer`\n* Default: `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\n\n* Type: `Boolean`\n* Default: `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\n\n* Type: `Boolean | String | undefined`\n* Default: `undefined`\n\nEnables source map generation during `render` and `renderSync`.\n\nWhen `sourceMap === true`, the value of `outFile` is used as the target output location for the source map with the suffix `.map` appended. If no `outFile` is set, `sourceMap` parameter is ignored.\n\nWhen `typeof sourceMap === \"string\"`, the value of `sourceMap` will be used as the writing location for the file.\n\n### sourceMapContents\n\n* Type: `Boolean`\n* Default: `false`\n\n`true` includes the `contents` in the source map information\n\n### sourceMapEmbed\n\n* Type: `Boolean`\n* Default: `false`\n\n`true` embeds the source map as a data URI\n\n### sourceMapRoot\n\n* Type: `String`\n* Default: `undefined`\n\nthe value will be emitted as `sourceRoot` in the source map information\n\n## `render` Callback (>= v3.0.0)\n\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\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\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 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});\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[@10xLaCroixDrinker](https://github.com/10xLaCroixDrinker) wrote a [DocPad](http://docpad.org/) plugin that compiles `.scss` files using node-sass: <https://github.com/docpad/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\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\nSASS_BINARY_DIR          | sass_binary_dir          | --sass-binary-dir          | path\nSASS_REJECT_UNAUTHORIZED | sass_reject_unauthorized | --sass-reject-unauthorized | value\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\nIf you are using self-signed certificates for your binary then `SASS_REJECT_UNAUTHORIZED` will override (rejectUnauthorized)[https://nodejs.org/docs/latest/api/tls.html#tls_tls_createserver_options_secureconnectionlistener].\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* 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\nCheck out our [Contributing guide](/.github/CONTRIBUTING.md)\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","time":{"created":"2022-01-26T13:20:00.175Z","modified":"2024-07-24T21:04:32.393Z","7.0.0":"2021-12-06T12:11:39.975Z","6.0.1":"2021-06-24T08:34:49.107Z","6.0.0":"2021-05-08T15:34:55.950Z","5.0.0":"2020-10-31T13:53:38.530Z","4.14.1":"2020-05-04T23:42:29.967Z","4.14.0":"2020-04-23T10:17:26.875Z","4.13.1":"2020-01-16T12:47:40.307Z","4.13.0":"2019-10-24T06:51:57.195Z","4.12.0":"2019-04-27T02:37:54.201Z","4.11.0":"2018-11-15T11:39:45.989Z","4.10.0":"2018-11-04T07:13:47.082Z","4.9.4":"2018-10-15T07:53:45.672Z","4.9.3":"2018-08-09T13:03:15.598Z","4.9.2":"2018-07-08T06:38:57.281Z","4.9.1":"2018-07-05T10:15:19.331Z","4.9.0":"2018-04-25T16:21:18.844Z","4.8.3":"2018-03-18T23:40:23.699Z","4.8.2":"2018-03-13T13:08:01.189Z","4.8.1":"2018-03-11T09:53:43.531Z","4.7.2":"2017-11-20T21:50:28.943Z","4.7.1":"2017-11-17T23:34:03.869Z","4.6.1":"2017-11-11T23:06:07.461Z","4.6.0":"2017-11-03T23:00:40.337Z","4.5.3":"2017-05-16T14:58:38.284Z","4.5.2":"2017-03-29T06:30:58.593Z","4.5.1":"2017-03-21T11:21:59.057Z","4.5.0":"2017-02-01T03:46:38.185Z","4.4.0":"2017-01-27T02:27:08.237Z","4.3.0":"2017-01-12T22:58:09.575Z","4.2.0":"2017-01-09T00:31:48.067Z","4.1.1":"2016-12-20T10:24:02.811Z","4.1.0":"2016-12-19T07:32:33.824Z","4.0.0":"2016-12-10T13:42:01.903Z","3.13.1":"2016-12-10T06:17:48.624Z","3.14.0-0":"2016-11-17T14:46:06.396Z","3.13.0":"2016-11-15T23:45:19.365Z","3.12.5":"2016-11-15T03:30:08.453Z","3.12.4":"2016-11-15T02:57:20.131Z","3.12.3":"2016-11-15T02:17:35.046Z","3.12.2":"2016-11-14T05:35:17.293Z","3.12.1":"2016-11-14T00:22:06.004Z","3.12.0":"2016-11-13T22:57:35.287Z","3.11.3":"2016-11-12T04:24:43.294Z","3.11.2":"2016-11-05T06:29:23.246Z","3.11.1":"2016-11-03T12:00:20.754Z","3.11.0":"2016-11-03T00:15:22.007Z","3.10.1":"2016-09-30T06:55:05.457Z","3.10.0-1":"2016-09-30T05:38:33.147Z","3.10.0":"2016-09-14T01:40:28.649Z","3.9.3":"2016-09-06T10:27:12.752Z","3.9.2":"2016-09-06T06:11:24.729Z","3.9.1":"2016-09-06T05:15:57.906Z","3.9.0":"2016-09-04T23:30:02.870Z","3.8.0":"2016-06-17T23:33:09.981Z","3.7.0":"2016-05-03T09:54:24.510Z","3.6.0":"2016-04-23T12:19:16.648Z","3.5.3":"2016-04-21T13:07:34.623Z","3.5.2":"2016-04-21T10:57:02.941Z","3.5.1":"2016-04-20T14:22:16.189Z","3.5.0-beta.1":"2016-01-29T01:24:46.422Z","3.4.2":"2015-11-12T16:39:26.875Z","3.4.1":"2015-10-27T01:55:26.915Z","3.4.0":"2015-10-25T03:24:53.616Z","3.4.0-beta.2":"2015-10-16T09:30:14.525Z","3.4.0-beta1":"2015-09-18T06:59:15.656Z","3.3.3":"2015-09-17T16:00:05.990Z","3.3.2":"2015-08-30T04:21:09.834Z","3.3.1":"2015-08-26T10:18:33.259Z","3.3.0":"2015-08-26T02:47:27.877Z","3.2.0":"2015-06-11T17:57:07.143Z","3.1.2":"2015-05-21T02:57:01.566Z","3.1.1":"2015-05-15T06:35:50.720Z","3.1.0":"2015-05-13T12:20:32.248Z","3.0.0":"2015-05-06T13:51:55.529Z","3.0.0-beta.7":"2015-04-22T01:19:32.029Z","3.0.0-beta.5":"2015-04-06T10:18:06.735Z","2.1.1":"2015-03-28T18:16:08.690Z","2.1.0":"2015-03-28T17:51:00.008Z","3.0.0-beta.4":"2015-03-27T10:08:00.495Z","3.0.0-beta.3":"2015-03-27T07:45:41.739Z","3.0.0-beta.2":"2015-03-25T21:50:29.267Z","3.0.0-alpha.0":"2015-03-16T02:17:47.712Z","2.0.1":"2015-02-12T08:43:40.780Z","2.0.0":"2015-02-12T04:04:23.708Z","2.0.0-beta":"2014-12-24T23:40:39.110Z","1.2.3":"2014-11-19T21:44:00.859Z","1.2.2":"2014-11-06T18:51:52.447Z","1.2.1":"2014-11-06T10:36:59.425Z","1.2.0":"2014-11-06T10:30:58.159Z","1.1.4":"2014-10-29T17:07:45.922Z","1.1.3":"2014-10-29T12:47:17.351Z","1.1.2":"2014-10-29T12:36:06.800Z","1.1.1":"2014-10-29T11:44:43.001Z","1.1.0":"2014-10-29T10:19:52.664Z","1.0.2":"2014-10-24T20:57:56.372Z","1.0.3":"2014-10-24T21:42:54.595Z","1.0.2-alpha":"2014-10-24T20:49:20.903Z","1.0.1":"2014-10-16T20:17:45.086Z","1.0.0":"2014-10-16T20:03:11.849Z","0.9.6":"2014-10-06T07:09:06.084Z","0.9.5":"2014-10-05T11:01:24.538Z","0.9.5-rc1":"2014-09-22T16:39:18.564Z","0.9.4":"2014-09-21T20:24:00.776Z","0.9.4-rc1":"2014-09-20T15:38:26.116Z","0.9.3":"2014-06-16T09:26:38.455Z","0.9.2":"2014-06-08T19:48:26.349Z","0.9.1":"2014-06-06T10:28:02.828Z","0.9.0":"2014-06-05T20:34:24.593Z","0.8.6":"2014-04-22T13:08:42.143Z","0.8.5":"2014-04-22T09:14:36.053Z","0.8.4":"2014-03-26T20:03:04.280Z","0.8.3":"2014-03-12T17:41:42.401Z","0.8.2":"2014-03-12T17:35:26.604Z","0.8.1":"2014-01-13T08:47:58.939Z","0.8.0":"2014-01-10T23:56:39.818Z","0.7.0":"2013-10-23T08:44:00.175Z","0.7.0-alpha":"2013-10-19T15:13:39.524Z","0.6.7":"2013-10-03T09:01:27.390Z","0.6.6":"2013-09-13T16:31:16.896Z","0.6.5":"2013-09-07T08:30:30.404Z","0.6.4":"2013-08-08T19:39:40.917Z","0.6.3":"2013-08-02T19:09:50.064Z","0.6.2":"2013-08-01T21:25:56.657Z","0.6.1":"2013-07-30T21:00:51.314Z","0.6.0":"2013-07-30T20:23:32.043Z","0.5.4":"2013-07-12T21:32:56.983Z","0.5.3":"2013-07-08T08:08:26.682Z","0.5.2":"2013-06-12T10:19:49.001Z","0.5.1":"2013-05-29T07:41:59.970Z","0.5.0":"2013-05-10T10:27:20.255Z","0.4.4":"2013-04-27T22:27:05.192Z","0.4.3":"2013-04-22T09:13:18.917Z","0.4.2":"2013-04-19T12:49:01.523Z","0.4.1":"2013-04-15T23:28:40.016Z","0.4.0":"2013-03-28T17:10:12.248Z","0.3.0":"2013-02-03T21:26:38.510Z","0.2.6":"2013-01-12T10:53:26.399Z","0.2.5":"2012-11-01T09:05:07.591Z","0.2.4":"2012-08-26T20:16:39.035Z","0.2.3":"2012-08-23T11:53:31.647Z","0.2.2":"2012-07-08T17:28:18.030Z","0.2.1":"2012-06-17T20:50:20.200Z","0.2.0":"2012-06-12T19:49:45.950Z","7.0.1":"2021-12-27T06:29:50.520Z","7.0.2":"2022-09-08T02:33:46.540Z","7.0.3":"2022-09-08T08:37:32.202Z","8.0.0":"2022-11-09T10:19:45.412Z","9.0.0":"2023-05-20T06:03:42.097Z"},"versions":{"7.0.0":{"name":"node-sass","version":"7.0.0","libsass":"3.5.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":">=12"},"main":"lib/index.js","nodeSassConfig":{"binarySite":"https://github.com/sass/node-sass/releases/download"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"nyc npm run test","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","prepublishOnly ":"scripts/prepublish.js"},"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"async-foreach":"^0.1.3","chalk":"^4.1.2","cross-spawn":"^7.0.3","gaze":"^1.0.0","get-stdin":"^4.0.1","glob":"^7.0.3","lodash":"^4.17.15","meow":"^9.0.0","nan":"^2.13.2","node-gyp":"^7.1.0","npmlog":"^5.0.0","request":"^2.88.0","sass-graph":"2.2.5","stdout-stream":"^1.4.0","true-case-path":"^1.0.2"},"devDependencies":{"eslint":"^8.0.0","fs-extra":"^10.0.0","mocha":"^9.0.1","nyc":"^15.1.0","rimraf":"^3.0.2","unique-temp-dir":"^1.0.0"},"gitHead":"918dcb3a7712a02578947b0354b9f109656f7abf","_id":"node-sass@7.0.0","_nodeVersion":"11.15.0","_npmVersion":"6.7.0","dist":{"integrity":"sha512-6yUnsD3L8fVbgMX6nKQqZkjRcG7a/PpmF0pEyeWf+BgbTj2ToJlCYrnUifL2KbjV5gIY22I3oppahBWA3B+jUg==","shasum":"33ee7c2df299d51f682f13d79f3d2a562225788e","tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-7.0.0.tgz","fileCount":340,"unpackedSize":4651949,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhrf37CRA9TVsSAnZWagAAwaQP/13c7sKvUtLTTaPcooaT\nXEEY2nYS9XqmP2UKv/YZ1wuGaxx1rdDinjhEzGwap3MgUe+t0sJRhbX0IN7D\n0JM/dx4xYDzUNeJHEJAD6uRX/HAl4b16wdNsIeiiBZTW7o2IQtqvKreTBY9j\nhBxAarL8rnkqn2nOPOv5Ml20xl6amQoyYLRMAl+bp0euMvzFpliVeihyij0Q\n/PnbTkTPTjHHh020PKGKW8k8J987n9sd6NTDTKNv+jweeoiNUNmvRQnWTUa1\n7FcbyITtULBtzcN3p4ucNS0Ny9b+U0yl0SImsB86SaW0epunKx4xHyCIiXhk\nwgjWKLMGwEm7QNhK8vGYpiBdQsZcdSiD8eohXkv1E/VT++HUg46qQKidB9h9\nW7F1JMz7Wmu3kPoxhd4lErNy9LkDy0SHfkLT0SYCKc9ejEx90cpNqpz3UXAQ\nMwBy7yc0q9GO9ZE7U5aIiDoByPXlhopGpJ00GfpunRuIIfDF12v9QCb3ldzW\nHUjxnO7zbpKSJqs2x7rW/5JOFzGPWi6+YH9aeuwJ2gVf2Acqxjw/yfR0onVj\nfrAy3y6EE8hHqvbDoeSwTRZu5QNcyKH4Rbzchb8R2ptE2JXABW70eWRZHDuH\nD5E30LhJBiUwo3KmmCzjjiQh2nwgvXm5D0K5mTD4Hp+KgkHsFVBBsG+QSoLU\n6Yaf\r\n=JuqW\r\n-----END PGP SIGNATURE-----\r\n","size":1288550,"noattachment":false},"_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"directories":{},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/node-sass_7.0.0_1638792699818_0.4555126818027917"},"_hasShrinkwrap":false,"publish_time":1638792699975,"_cnpm_publish_time":1638792699975,"_cnpmcore_publish_time":"2021-12-13T13:23:18.368Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"6.0.1":{"name":"node-sass","version":"6.0.1","libsass":"3.5.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":">=12"},"main":"lib/index.js","nodeSassConfig":{"binarySite":"https://github.com/sass/node-sass/releases/download"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"nyc npm run test","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","prepublishOnly ":"scripts/prepublish.js"},"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"async-foreach":"^0.1.3","chalk":"^1.1.1","cross-spawn":"^7.0.3","gaze":"^1.0.0","get-stdin":"^4.0.1","glob":"^7.0.3","lodash":"^4.17.15","meow":"^9.0.0","nan":"^2.13.2","node-gyp":"^7.1.0","npmlog":"^4.0.0","request":"^2.88.0","sass-graph":"2.2.5","stdout-stream":"^1.4.0","true-case-path":"^1.0.2"},"devDependencies":{"eslint":"^7.10.0","fs-extra":"^0.30.0","mocha":"^9.0.1","nyc":"^15.1.0","rimraf":"^3.0.2","unique-temp-dir":"^1.0.0"},"gitHead":"c167004da6cbf0fb1fdc3406073eaff48bea2b51","_id":"node-sass@6.0.1","_nodeVersion":"11.15.0","_npmVersion":"6.7.0","dist":{"shasum":"cad1ccd0ce63e35c7181f545d8b986f3a9a887fe","size":387440,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-6.0.1.tgz","integrity":"sha512-f+Rbqt92Ful9gX0cGtdYwjTrWAaGURgaK5rZCWOgCNyGWusFYHhbqCCBoFBeat+HKETOU02AyTxNhJV0YZf2jQ=="},"_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"directories":{},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/node-sass_6.0.1_1624523688903_0.22048656945145306"},"_hasShrinkwrap":false,"publish_time":1624523689107,"_cnpm_publish_time":1624523689107,"_cnpmcore_publish_time":"2021-12-13T13:23:18.873Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"6.0.0":{"name":"node-sass","version":"6.0.0","libsass":"3.5.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":">=12"},"main":"lib/index.js","nodeSassConfig":{"binarySite":"https://github.com/sass/node-sass/releases/download"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"nyc npm run test","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","prepublishOnly ":"scripts/prepublish.js"},"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"async-foreach":"^0.1.3","chalk":"^1.1.1","cross-spawn":"^7.0.3","gaze":"^1.0.0","get-stdin":"^4.0.1","glob":"^7.0.3","lodash":"^4.17.15","meow":"^3.7.0","mkdirp":"^0.5.1","nan":"^2.13.2","node-gyp":"^7.1.0","npmlog":"^4.0.0","request":"^2.88.0","sass-graph":"2.2.5","stdout-stream":"^1.4.0","true-case-path":"^1.0.2"},"devDependencies":{"eslint":"^7.10.0","fs-extra":"^0.30.0","mocha":"^8.1.3","nyc":"^15.1.0","rimraf":"^3.0.2","unique-temp-dir":"^1.0.0"},"gitHead":"886319b0c66af74145816fcc601ac0e7edbea1e9","_id":"node-sass@6.0.0","_nodeVersion":"11.15.0","_npmVersion":"6.7.0","dist":{"shasum":"f30da3e858ad47bfd138bc0e0c6f924ed2f734af","size":387485,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-6.0.0.tgz","integrity":"sha512-GDzDmNgWNc9GNzTcSLTi6DU6mzSPupVJoStIi7cF3GjwSE9q1cVakbvAAVSt59vzUjV9JJoSZFKoo9krbjKd2g=="},"_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"directories":{},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/node-sass_6.0.0_1620488095669_0.1064353127893527"},"_hasShrinkwrap":false,"publish_time":1620488095950,"_cnpm_publish_time":1620488095950,"_cnpmcore_publish_time":"2021-12-13T13:23:19.327Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"5.0.0":{"name":"node-sass","version":"5.0.0","libsass":"3.5.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":">=10"},"main":"lib/index.js","nodeSassConfig":{"binarySite":"https://github.com/sass/node-sass/releases/download"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"nyc npm run test","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","prepublishOnly ":"scripts/prepublish.js"},"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"async-foreach":"^0.1.3","chalk":"^1.1.1","cross-spawn":"^7.0.3","gaze":"^1.0.0","get-stdin":"^4.0.1","glob":"^7.0.3","lodash":"^4.17.15","meow":"^3.7.0","mkdirp":"^0.5.1","nan":"^2.13.2","node-gyp":"^7.1.0","npmlog":"^4.0.0","request":"^2.88.0","sass-graph":"2.2.5","stdout-stream":"^1.4.0","true-case-path":"^1.0.2"},"devDependencies":{"eslint":"^7.10.0","fs-extra":"^0.30.0","mocha":"^8.1.3","nyc":"^15.1.0","rimraf":"^3.0.2","unique-temp-dir":"^1.0.0"},"gitHead":"7105b0abd35377a52a7df8994aa45aa8395a18e4","_id":"node-sass@5.0.0","_nodeVersion":"11.15.0","_npmVersion":"6.7.0","dist":{"shasum":"4e8f39fbef3bac8d2dc72ebe3b539711883a78d2","size":387633,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-5.0.0.tgz","integrity":"sha512-opNgmlu83ZCF792U281Ry7tak9IbVC+AKnXGovcQ8LG8wFaJv6cLnRlc6DIHlmNxWEexB5bZxi9SZ9JyUuOYjw=="},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/node-sass_5.0.0_1604152418366_0.7599427421699088"},"_hasShrinkwrap":false,"publish_time":1604152418530,"_cnpm_publish_time":1604152418530,"_cnpmcore_publish_time":"2021-12-13T13:23:19.857Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"4.14.1":{"name":"node-sass","version":"4.14.1","libsass":"3.5.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","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"},"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":"^4.17.15","meow":"^3.7.0","mkdirp":"^0.5.1","nan":"^2.13.2","node-gyp":"^3.8.0","npmlog":"^4.0.0","request":"^2.88.0","sass-graph":"2.2.5","stdout-stream":"^1.4.0","true-case-path":"^1.0.2"},"devDependencies":{"coveralls":"^3.0.2","eslint":"^3.4.0","fs-extra":"^0.30.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":"git+https://github.com/sass/sass-spec.git#dc2d573","unique-temp-dir":"^1.0.0"},"gitHead":"0d6c3cc36a5362e83529d901484b0bbf3e96de81","_id":"node-sass@4.14.1","_nodeVersion":"11.15.0","_npmVersion":"6.7.0","dist":{"shasum":"99c87ec2efb7047ed638fb4c9db7f3a42e2217b5","size":390148,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-4.14.1.tgz","integrity":"sha512-sjCuOlvGyCJS40R8BscF5vhVlQjNN069NtQ1gSxyK1u9iqvn6tf7O1R4GNowVZfiZUCRt5MmMs1xd+4V/7Yr0g=="},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/node-sass_4.14.1_1588635749642_0.7985645045065246"},"_hasShrinkwrap":false,"publish_time":1588635749967,"_cnpm_publish_time":1588635749967,"_cnpmcore_publish_time":"2021-12-13T13:23:20.277Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"4.14.0":{"name":"node-sass","version":"4.14.0","libsass":"3.5.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","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"},"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":"^4.17.15","meow":"^3.7.0","mkdirp":"^0.5.1","nan":"^2.13.2","node-gyp":"^3.8.0","npmlog":"^4.0.0","request":"^2.88.0","sass-graph":"^2.2.4","stdout-stream":"^1.4.0","true-case-path":"^1.0.2"},"devDependencies":{"coveralls":"^3.0.2","eslint":"^3.4.0","fs-extra":"^0.30.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":"git+https://github.com/sass/sass-spec.git#dc2d573","unique-temp-dir":"^1.0.0"},"gitHead":"eac343c6cc39abff153b2c8e9cc0d6b8351c8a8f","_id":"node-sass@4.14.0","_nodeVersion":"11.15.0","_npmVersion":"6.7.0","dist":{"shasum":"a8e9d7720f8e15b4a1072719dcf04006f5648eeb","size":390149,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-4.14.0.tgz","integrity":"sha512-AxqU+DFpk0lEz95sI6jO0hU0Rwyw7BXVEv6o9OItoXLyeygPeaSpiV4rwQb10JiTghHaa0gZeD21sz+OsQluaw=="},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/node-sass_4.14.0_1587637045903_0.8322374392660146"},"_hasShrinkwrap":false,"publish_time":1587637046875,"_cnpm_publish_time":1587637046875,"_cnpmcore_publish_time":"2021-12-13T13:23:20.723Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"4.13.1":{"name":"node-sass","version":"4.13.1","libsass":"3.5.4","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"},"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":"^4.17.15","meow":"^3.7.0","mkdirp":"^0.5.1","nan":"^2.13.2","node-gyp":"^3.8.0","npmlog":"^4.0.0","request":"^2.88.0","sass-graph":"^2.2.4","stdout-stream":"^1.4.0","true-case-path":"^1.0.2"},"devDependencies":{"coveralls":"^3.0.2","eslint":"^3.4.0","fs-extra":"^0.30.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":"git+https://github.com/sass/sass-spec.git#dc2d573","unique-temp-dir":"^1.0.0"},"gitHead":"b54053a1b50fd97e951eb0311a7fb818683a8e99","_id":"node-sass@4.13.1","_nodeVersion":"11.15.0","_npmVersion":"6.7.0","dist":{"shasum":"9db5689696bb2eec2c32b98bfea4c7a2e992d0a3","size":390118,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-4.13.1.tgz","integrity":"sha512-TTWFx+ZhyDx1Biiez2nB0L3YrCZ/8oHagaDalbuBSlqXgUPsdkUSzJsVxeDO9LtPB49+Fh3WQl3slABo6AotNw=="},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/node-sass_4.13.1_1579178860178_0.5157990583401317"},"_hasShrinkwrap":false,"publish_time":1579178860307,"_cnpm_publish_time":1579178860307,"_cnpmcore_publish_time":"2021-12-13T13:23:21.172Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"4.13.0":{"name":"node-sass","version":"4.13.0","libsass":"3.5.4","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"},"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":"^4.17.15","meow":"^3.7.0","mkdirp":"^0.5.1","nan":"^2.13.2","node-gyp":"^3.8.0","npmlog":"^4.0.0","request":"^2.88.0","sass-graph":"^2.2.4","stdout-stream":"^1.4.0","true-case-path":"^1.0.2"},"devDependencies":{"coveralls":"^3.0.2","eslint":"^3.4.0","fs-extra":"^0.30.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":"git+https://github.com/sass/sass-spec.git#dc2d573","unique-temp-dir":"^1.0.0"},"gitHead":"60fad5f2d92d9978af6a3d9bb29f4b0ff4a70070","_id":"node-sass@4.13.0","_nodeVersion":"11.15.0","_npmVersion":"6.7.0","dist":{"shasum":"b647288babdd6a1cb726de4545516b31f90da066","size":389905,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-4.13.0.tgz","integrity":"sha512-W1XBrvoJ1dy7VsvTAS5q1V45lREbTlZQqFbiHb3R3OTTCma0XBtuG6xZ6Z4506nR4lmHPTqVRwxT6KgtWC97CA=="},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/node-sass_4.13.0_1571899916887_0.6603527152918991"},"_hasShrinkwrap":false,"publish_time":1571899917195,"_cnpm_publish_time":1571899917195,"_cnpmcore_publish_time":"2021-12-13T13:23:21.671Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"4.12.0":{"name":"node-sass","version":"4.12.0","libsass":"3.5.4","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"},"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":"^4.17.11","meow":"^3.7.0","mkdirp":"^0.5.1","nan":"^2.13.2","node-gyp":"^3.8.0","npmlog":"^4.0.0","request":"^2.88.0","sass-graph":"^2.2.4","stdout-stream":"^1.4.0","true-case-path":"^1.0.2"},"devDependencies":{"coveralls":"^3.0.2","eslint":"^3.4.0","fs-extra":"^0.30.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":"git+https://github.com/sass/sass-spec.git#dc2d573","unique-temp-dir":"^1.0.0"},"gitHead":"23c86596a9bbcf1e72c6871e3a7cf084d7b68496","_id":"node-sass@4.12.0","_nodeVersion":"12.0.0","_npmVersion":"6.9.0","dist":{"shasum":"0914f531932380114a30cc5fa4fa63233a25f017","size":389903,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-4.12.0.tgz","integrity":"sha512-A1Iv4oN+Iel6EPv77/HddXErL2a+gZ4uBeZUy+a8O35CFYTXhgA8MgLCWBtwpGZdCvTvQ9d+bQxX/QC36GDPpQ=="},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/node-sass_4.12.0_1556332674012_0.891894211311735"},"_hasShrinkwrap":false,"publish_time":1556332674201,"_cnpm_publish_time":1556332674201,"_cnpmcore_publish_time":"2021-12-13T13:23:22.146Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"4.11.0":{"name":"node-sass","version":"4.11.0","libsass":"3.5.4","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"},"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.10.0","node-gyp":"^3.8.0","npmlog":"^4.0.0","request":"^2.88.0","sass-graph":"^2.2.4","stdout-stream":"^1.4.0","true-case-path":"^1.0.2"},"devDependencies":{"coveralls":"^3.0.2","eslint":"^3.4.0","fs-extra":"^0.30.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":"git+https://github.com/sass/sass-spec.git#dc2d573","unique-temp-dir":"^1.0.0"},"gitHead":"dfe1f05aba0f681eb237bc146d8cf1716d1086c4","readmeFilename":"README.md","_id":"node-sass@4.11.0","_npmVersion":"6.4.1","_nodeVersion":"10.13.0","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"dist":{"shasum":"183faec398e9cbe93ba43362e2768ca988a6369a","size":389800,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-4.11.0.tgz","integrity":"sha512-bHUdHTphgQJZaF1LASx0kAviPH7sGlcyNhWade4eVIpFp6tsn7SV8xNMTbsQFpEV9VXpnwTTnNYlfsZXgGgmkA=="},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/node-sass_4.11.0_1542281985715_0.4569298086657536"},"_hasShrinkwrap":false,"publish_time":1542281985989,"_cnpm_publish_time":1542281985989,"_cnpmcore_publish_time":"2021-12-13T13:23:22.660Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"4.10.0":{"name":"node-sass","version":"4.10.0","libsass":"3.5.4","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"},"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.10.0","node-gyp":"^3.8.0","npmlog":"^4.0.0","request":"^2.88.0","sass-graph":"^2.2.4","stdout-stream":"^1.4.0","true-case-path":"^1.0.2"},"devDependencies":{"coveralls":"^3.0.2","eslint":"^3.4.0","fs-extra":"^0.30.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.4-1","unique-temp-dir":"^1.0.0"},"gitHead":"c65a1bfe2ce221521503d3111f3fe2a34f524f36","_id":"node-sass@4.10.0","_npmVersion":"5.6.0","_nodeVersion":"9.11.2","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"dist":{"shasum":"dcc2b364c0913630945ccbf7a2bbf1f926effca4","size":391345,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-4.10.0.tgz","integrity":"sha512-fDQJfXszw6vek63Fe/ldkYXmRYK/QS6NbvM3i5oEo9ntPDy4XX7BcKZyTKv+/kSSxRtXXc7l+MSwEmYc0CSy6Q=="},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/node-sass_4.10.0_1541315626883_0.5819388197828481"},"_hasShrinkwrap":false,"publish_time":1541315627082,"_cnpm_publish_time":1541315627082,"_cnpmcore_publish_time":"2021-12-13T13:23:23.233Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"4.9.4":{"name":"node-sass","version":"4.9.4","libsass":"3.5.4","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"},"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.10.0","node-gyp":"^3.8.0","npmlog":"^4.0.0","request":"^2.88.0","sass-graph":"^2.2.4","stdout-stream":"^1.4.0","true-case-path":"^1.0.2"},"devDependencies":{"coveralls":"^3.0.2","eslint":"^3.4.0","fs-extra":"^0.30.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.4-1","unique-temp-dir":"^1.0.0"},"gitHead":"476e11c157f132511a4e01868cd14d11d5fb2afd","_id":"node-sass@4.9.4","_npmVersion":"6.4.1","_nodeVersion":"10.12.0","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"dist":{"shasum":"349bd7f1c89422ffe7e1e4b60f2055a69fbc5512","size":390402,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-4.9.4.tgz","integrity":"sha512-MXyurANsUoE4/6KmfMkwGcBzAnJQ5xJBGW7Ei6ea8KnUKuzHr/SguVBIi3uaUAHtZCPUYkvlJ3Ef5T5VAwVpaA=="},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/node-sass_4.9.4_1539590025434_0.39953895504669856"},"_hasShrinkwrap":false,"publish_time":1539590025672,"_cnpm_publish_time":1539590025672,"_cnpmcore_publish_time":"2021-12-13T13:23:23.782Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"4.9.3":{"name":"node-sass","version":"4.9.3","libsass":"3.5.4","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.10.0","node-gyp":"^3.8.0","npmlog":"^4.0.0","request":"2.87.0","sass-graph":"^2.2.4","stdout-stream":"^1.4.0","true-case-path":"^1.0.2"},"devDependencies":{"coveralls":"^3.0.2","eslint":"^3.4.0","fs-extra":"^0.30.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.4-1","unique-temp-dir":"^1.0.0"},"gitHead":"cdf24f212e11e7ee0406ae23798fce62d10da5a3","_id":"node-sass@4.9.3","_npmVersion":"6.1.0","_nodeVersion":"10.0.0","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"dist":{"shasum":"f407cf3d66f78308bb1e346b24fa428703196224","size":390152,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-4.9.3.tgz","integrity":"sha512-XzXyGjO+84wxyH7fV6IwBOTrEBe2f0a6SBze9QWWYR/cL74AcQUks2AsqcCZenl/Fp/JVbuEaLpgrLtocwBUww=="},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/node-sass_4.9.3_1533819795466_0.35972498752582216"},"_hasShrinkwrap":false,"publish_time":1533819795598,"_cnpm_publish_time":1533819795598,"_cnpmcore_publish_time":"2021-12-13T13:23:24.374Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"4.9.2":{"name":"node-sass","version":"4.9.2","libsass":"3.5.4","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.10.0","node-gyp":"^3.3.1","npmlog":"^4.0.0","request":"2.87.0","sass-graph":"^2.2.4","stdout-stream":"^1.4.0","true-case-path":"^1.0.2"},"devDependencies":{"coveralls":"^3.0.2","eslint":"^3.4.0","fs-extra":"^0.30.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.4-1","unique-temp-dir":"^1.0.0"},"gitHead":"ecfcab00b33d66e64b69915ae2210312f239f521","_id":"node-sass@4.9.2","_npmVersion":"6.1.0","_nodeVersion":"9.8.0","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"dist":{"shasum":"5e63fe6bd0f2ae3ac9d6c14ede8620e2b8bdb437","size":390141,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-4.9.2.tgz","integrity":"sha512-LdxoJLZutx0aQXHtWIYwJKMj+9pTjneTcLWJgzf2XbGu0q5pRNqW5QvFCEdm3mc5rJOdru/mzln5d0EZLacf6g=="},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/node-sass_4.9.2_1531031937096_0.4438090765365903"},"_hasShrinkwrap":false,"publish_time":1531031937281,"_cnpm_publish_time":1531031937281,"_cnpmcore_publish_time":"2021-12-13T13:23:24.950Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"4.9.1":{"name":"node-sass","version":"4.9.1","libsass":"3.5.4","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.10.0","node-gyp":"^3.3.1","npmlog":"^4.0.0","request":"2.87.0","sass-graph":"^2.2.4","stdout-stream":"^1.4.0","true-case-path":"^1.0.2"},"devDependencies":{"coveralls":"^3.0.2","eslint":"^3.4.0","fs-extra":"^0.30.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.4-1","unique-temp-dir":"^1.0.0"},"gitHead":"240e8da8f14bf9d7fa10fac9e27889ad949a3143","_id":"node-sass@4.9.1","_npmVersion":"6.1.0","_nodeVersion":"9.3.0","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"dist":{"shasum":"5416ae7079d991f0e7002e62c8b0ba3fedc15c79","size":388512,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-4.9.1.tgz","integrity":"sha512-m6H1I6cHXsHsJ7BIWdnJsz9S9gVMyh+/H2cOTXgl2/2WqyyWlBcl4PHJcqrXo5RZVCfCUFqOtjPN0+0XbVHR5Q=="},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/node-sass_4.9.1_1530785719181_0.052481166179148886"},"_hasShrinkwrap":false,"publish_time":1530785719331,"_cnpm_publish_time":1530785719331,"_cnpmcore_publish_time":"2021-12-13T13:23:25.503Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"4.9.0":{"name":"node-sass","version":"4.9.0","libsass":"3.5.4","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.10.0","node-gyp":"^3.3.1","npmlog":"^4.0.0","request":"~2.79.0","sass-graph":"^2.2.4","stdout-stream":"^1.4.0","true-case-path":"^1.0.2"},"devDependencies":{"coveralls":"^2.11.8","eslint":"^3.4.0","fs-extra":"^0.30.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.4-1","unique-temp-dir":"^1.0.0"},"readmeFilename":"README.md","gitHead":"9d6faf6f0a005dc73870b1f87268014a82f170e3","_id":"node-sass@4.9.0","_npmVersion":"5.7.1","_nodeVersion":"9.8.0","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"dist":{"shasum":"d1b8aa855d98ed684d6848db929a20771cc2ae52","size":390114,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-4.9.0.tgz","integrity":"sha512-QFHfrZl6lqRU3csypwviz2XLgGNOoWQbo2GOvtsfQqOfL4cy1BtWnhx/XUeAO9LT3ahBzSRXcEO6DdvAH9DzSg=="},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/node-sass_4.9.0_1524673278655_0.7275462928767635"},"_hasShrinkwrap":false,"publish_time":1524673278844,"_cnpm_publish_time":1524673278844,"_cnpmcore_publish_time":"2021-12-13T13:23:26.072Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"4.8.3":{"name":"node-sass","version":"4.8.3","libsass":"3.5.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.10.0","node-gyp":"^3.3.1","npmlog":"^4.0.0","request":"~2.79.0","sass-graph":"^2.2.4","stdout-stream":"^1.4.0","true-case-path":"^1.0.2"},"devDependencies":{"coveralls":"^2.11.8","eslint":"^3.4.0","fs-extra":"^0.30.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.1","unique-temp-dir":"^1.0.0"},"readmeFilename":"README.md","gitHead":"b2df434a02c10b2263d3879fe75dfbed4460b75f","_id":"node-sass@4.8.3","_npmVersion":"5.7.1","_nodeVersion":"9.8.0","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"dist":{"shasum":"d077cc20a08ac06f661ca44fb6f19cd2ed41debb","size":387478,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-4.8.3.tgz","integrity":"sha512-tfFWhUsCk/Y19zarDcPo5xpj+IW3qCfOjVdHtYeG6S1CKbQOh1zqylnQK6cV3z9k80yxAnFX9Y+a9+XysDhhfg=="},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/node-sass_4.8.3_1521416423594_0.2467753746573127"},"_hasShrinkwrap":false,"publish_time":1521416423699,"_cnpm_publish_time":1521416423699,"_cnpmcore_publish_time":"2021-12-13T13:23:26.743Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"4.8.2":{"name":"node-sass","version":"4.8.2","libsass":"3.5.1","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.9.2","node-gyp":"^3.3.1","npmlog":"^4.0.0","request":"~2.79.0","sass-graph":"^2.2.4","stdout-stream":"^1.4.0","true-case-path":"^1.0.2"},"devDependencies":{"coveralls":"^2.11.8","eslint":"^3.4.0","fs-extra":"^0.30.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.1","unique-temp-dir":"^1.0.0"},"readmeFilename":"README.md","gitHead":"7648fc461d68e2995278cdb7b2946d488a5e182f","_id":"node-sass@4.8.2","_npmVersion":"5.7.1","_nodeVersion":"9.8.0","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"dist":{"shasum":"d265fc0355e5980c685340846d0751596d0e514b","size":385915,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-4.8.2.tgz","integrity":"sha512-YQ9eAgtcSIqMGZO5BCIJRd/XCIz6cQuc8pChE3ZW0ANn2Yz0f2G0M6yqVg/1hXopScbJsmcyVt4ar7fJCmeldw=="},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/node-sass_4.8.2_1520946481027_0.04169170367106223"},"_hasShrinkwrap":false,"publish_time":1520946481189,"_cnpm_publish_time":1520946481189,"_cnpmcore_publish_time":"2021-12-13T13:23:27.284Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"4.8.1":{"name":"node-sass","version":"4.8.1","libsass":"3.5.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.9.2","node-gyp":"^3.3.1","npmlog":"^4.0.0","request":"~2.79.0","sass-graph":"^2.2.4","stdout-stream":"^1.4.0","true-case-path":"^1.0.2"},"devDependencies":{"coveralls":"^2.11.8","eslint":"^3.4.0","fs-extra":"^0.30.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","unique-temp-dir":"^1.0.0"},"readmeFilename":"README.md","gitHead":"96d0d0b1e49b716e5aa418c72dc29cff4454707f","_id":"node-sass@4.8.1","_npmVersion":"5.6.0","_nodeVersion":"9.8.0","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"dist":{"shasum":"8ad4de07456cc4ba2fa0c808729bec09fa1b5065","size":386291,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-4.8.1.tgz","integrity":"sha512-3fUkFCkgOPUD7YjFiRDO/oAcyjlT8HeN4u1CacfMKVjZTsDXvAjk0CdmjZIJ1MYvGuHJpye00wbIkecsmux2kA=="},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/node-sass_4.8.1_1520762023416_0.6352064599260916"},"_hasShrinkwrap":false,"publish_time":1520762023531,"_cnpm_publish_time":1520762023531,"_cnpmcore_publish_time":"2021-12-13T13:23:27.908Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"4.7.2":{"name":"node-sass","version":"4.7.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.2.4","stdout-stream":"^1.4.0","true-case-path":"^1.0.2"},"devDependencies":{"coveralls":"^2.11.8","eslint":"^3.4.0","fs-extra":"^0.30.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","unique-temp-dir":"^1.0.0"},"gitHead":"0ea34e487b1a26e4b41fed2e9a88eb1b80f7fb92","_id":"node-sass@4.7.2","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"dist":{"shasum":"9366778ba1469eb01438a9e8592f4262bcb6794e","size":375893,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-4.7.2.tgz","integrity":"sha512-CaV+wLqZ7//Jdom5aUFCpGNoECd7BbNhjuwdsX/LkXBrHl8eb1Wjw4HvWqcFvhr5KuNgAk8i/myf/MQ1YYeroA=="},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/node-sass-4.7.2.tgz_1511214628766_0.17489767144434154"},"directories":{},"publish_time":1511214628943,"_hasShrinkwrap":false,"_cnpm_publish_time":1511214628943,"_cnpmcore_publish_time":"2021-12-13T13:23:28.583Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"4.7.1":{"name":"node-sass","version":"4.7.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.2.4","stdout-stream":"^1.4.0","true-case-path":"^1.0.2"},"devDependencies":{"coveralls":"^2.11.8","eslint":"^3.4.0","fs-extra":"^0.30.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","unique-temp-dir":"^1.0.0"},"gitHead":"e38a59c5133f2fe65345e52e6dee2a56e962356a","_id":"node-sass@4.7.1","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"dist":{"shasum":"bec978ab33b5cf56825bf72922323a56ebaf4f66","size":375889,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-4.7.1.tgz","integrity":"sha512-WUG10FNj6E3bXpAy7f3bXVdLVUJuNn8pRbT4oo5ez9Zp5ZfqPFKsVJuDEEUmkpdyGa8P9JwifEr5dhNgZT2FpQ=="},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/node-sass-4.7.1.tgz_1510961643641_0.04191728914156556"},"directories":{},"publish_time":1510961643869,"_hasShrinkwrap":false,"_cnpm_publish_time":1510961643869,"_cnpmcore_publish_time":"2021-12-13T13:23:29.252Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"4.6.1":{"name":"node-sass","version":"4.6.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.2.4","stdout-stream":"^1.4.0"},"devDependencies":{"coveralls":"^2.11.8","eslint":"^3.4.0","fs-extra":"^0.30.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","unique-temp-dir":"^1.0.0"},"gitHead":"6b7b67901bc7c1f803073089ad93b95ec5fc61d4","_id":"node-sass@4.6.1","_npmVersion":"5.4.2","_nodeVersion":"8.6.0","_npmUser":{"name":"saperski","email":"npm@saper.info"},"dist":{"shasum":"9b331cf943ee5440f199e858941a90d13bc9bfc5","size":372852,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-4.6.1.tgz","integrity":"sha512-0zQQ7tjEK5W8RfW9LiQrkzfo7uLZ0QtZGV69rdKn5cFzdweHLJ14lR6xLPvI6UimkXMO8m0qDsXwUCNdnqV3sA=="},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/node-sass-4.6.1.tgz_1510441565452_0.31306573329493403"},"directories":{},"publish_time":1510441567461,"_hasShrinkwrap":false,"_cnpm_publish_time":1510441567461,"_cnpmcore_publish_time":"2021-12-13T13:23:29.936Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"4.6.0":{"name":"node-sass","version":"4.6.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.79.0","sass-graph":"^2.2.4","stdout-stream":"^1.4.0"},"devDependencies":{"coveralls":"^2.11.8","eslint":"^3.4.0","fs-extra":"^0.30.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","unique-temp-dir":"^1.0.0"},"gitHead":"54f9873c99dbb2dab2c6443dcf25b6c2ef1414ae","_id":"node-sass@4.6.0","_npmVersion":"5.5.1","_nodeVersion":"8.5.0","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"dist":{"shasum":"1a54f5f4502e3cde310a26d6346266fd667271d9","size":373014,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-4.6.0.tgz","integrity":"sha512-rh0CvkxpYdQdbWx4EQfunmG0+99BVyVwQHlFE+yUzc6lteF5K3WUcJ0bdmv9E9CqQA1RfuMyvmpDP99cmBObow=="},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/node-sass-4.6.0.tgz_1509750040133_0.5645369670819491"},"directories":{},"publish_time":1509750040337,"_hasShrinkwrap":false,"_cnpm_publish_time":1509750040337,"_cnpmcore_publish_time":"2021-12-13T13:23:30.653Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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","size":371302,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-4.5.3.tgz","integrity":"sha512-qlhPv2oz3vylj8L13h4Age2VzZASJ49jasSabQu37cXO+W/gsGI//8rYccecaDWWlBTE374OZ38qHUjexf0TWg=="},"maintainers":[{"name":"nschonni","email":"nschonni@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":{},"publish_time":1494946718284,"_hasShrinkwrap":false,"_cnpm_publish_time":1494946718284,"_cnpmcore_publish_time":"2021-12-13T13:23:31.330Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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","size":371282,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-4.5.2.tgz","integrity":"sha512-fcTCFbpVitiHxwDr9IWKo4gwLQmkYi+n4wwfg9FMzlJDkn7LhD9EE7tPhZWt5G4QEehZkLBOxk5OTPvSTvmKgA=="},"maintainers":[{"name":"nschonni","email":"nschonni@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":{},"publish_time":1490769058593,"_hasShrinkwrap":false,"_cnpm_publish_time":1490769058593,"_cnpmcore_publish_time":"2021-12-13T13:23:32.088Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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","size":371164,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-4.5.1.tgz","integrity":"sha512-k0UMUUtC0npRLyxfT2b1h2rvzrcIbva3z0CqvZP1JJlGSnLxz9MUMKy0b52eKrsbmpcjSgvr57feMAEZteq5kA=="},"maintainers":[{"name":"nschonni","email":"nschonni@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":{},"publish_time":1490095319057,"_hasShrinkwrap":false,"_cnpm_publish_time":1490095319057,"_cnpmcore_publish_time":"2021-12-13T13:23:32.920Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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","size":371137,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-4.5.0.tgz","integrity":"sha512-2gz/7zOENkAPx8BDd2dA0IXj0o7dfVHeE4Jp3JrBdacscMZ86YsIskK+CN/SYIOqMpuJ1pUEFbzFhxOOeVFwNA=="},"maintainers":[{"name":"nschonni","email":"nschonni@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":{},"publish_time":1485920798185,"_hasShrinkwrap":false,"_cnpm_publish_time":1485920798185,"_cnpmcore_publish_time":"2021-12-13T13:23:33.616Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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","size":370087,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-4.4.0.tgz","integrity":"sha512-oW38KhzcupMMPAdrPpcYGR43UaRvh5Z7DHphr1tUocLDhjygMqv8tuEGAp/T5MFvBkQ4GRhW+y+/uknCAE9esg=="},"maintainers":[{"name":"nschonni","email":"nschonni@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":{},"publish_time":1485484028237,"_hasShrinkwrap":false,"_cnpm_publish_time":1485484028237,"_cnpmcore_publish_time":"2021-12-13T13:23:34.299Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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","size":366067,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-4.3.0.tgz","integrity":"sha512-8jyl/I4HODvpLiLIKNEy/kxALsuZgq/2G646ubMhElEAAzbVIHH0nl9ieyUf1esPqChcJIBpR/zBcW70hk7pMw=="},"maintainers":[{"name":"nschonni","email":"nschonni@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":{},"publish_time":1484261889575,"_hasShrinkwrap":false,"_cnpm_publish_time":1484261889575,"_cnpmcore_publish_time":"2021-12-13T13:23:35.209Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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","size":366856,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-4.2.0.tgz","integrity":"sha512-0KwGJ3oPBj0GrxS+5jpqZ/fDHRUQCb4VGH5qf7yZQD0kadpWHDgBPmCMLUuMDDgFfEqI7OFID2RyIzC0hcUAUQ=="},"maintainers":[{"name":"nschonni","email":"nschonni@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":{},"publish_time":1483921908067,"_hasShrinkwrap":false,"_cnpm_publish_time":1483921908067,"_cnpmcore_publish_time":"2021-12-13T13:23:36.100Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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","size":358128,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-4.1.1.tgz","integrity":"sha512-BJXnpdlCyQAYhEvJesGeQcaE+3wBPEzzkMmGpBPSmoh8gmV5RoW92LYDstwzmbhKTD7XbfP5RzNmBGMV/0qeJg=="},"maintainers":[{"name":"nschonni","email":"nschonni@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":{},"publish_time":1482229442811,"_hasShrinkwrap":false,"_cnpm_publish_time":1482229442811,"_cnpmcore_publish_time":"2021-12-13T13:23:36.963Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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","size":358125,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-4.1.0.tgz","integrity":"sha512-JZcjjb10r93IjacwVE6dc4lixdZm6kc2TW+sTtf5+y0C422PoPTQLdUSlkFlTBqC2sDu/ww6v2QxlBcxzKY3Hw=="},"maintainers":[{"name":"nschonni","email":"nschonni@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":{},"publish_time":1482132753824,"_hasShrinkwrap":false,"_cnpm_publish_time":1482132753824,"_cnpmcore_publish_time":"2021-12-13T13:23:37.774Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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","size":357774,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-4.0.0.tgz","integrity":"sha512-+1WNehBq6/bG5YIze1GohwSPdrTsf2B620dtXUYzaFAchv2coyZAsqalcQH+X4KLIPwempOu19+xseb1P1+HqA=="},"maintainers":[{"name":"nschonni","email":"nschonni@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":{},"publish_time":1481377321903,"_hasShrinkwrap":false,"_cnpm_publish_time":1481377321903,"_cnpmcore_publish_time":"2021-12-13T13:23:38.523Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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","size":349608,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-3.13.1.tgz","integrity":"sha512-RKe1FM3F8uSIU8ZBRwjUsnV28rysWeWSik156fppyPss0/7B0KfLwJ7Ds5t2wzG0yyON/RbTceHHgMHJP1jvUw=="},"maintainers":[{"name":"nschonni","email":"nschonni@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":{},"publish_time":1481350668624,"_hasShrinkwrap":false,"_cnpm_publish_time":1481350668624,"_cnpmcore_publish_time":"2021-12-13T13:23:39.271Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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","size":357710,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-3.14.0-0.tgz","integrity":"sha512-jKmPtJbWuxvOLK25IbyMvQV44bNGwcWi44hmO2/xMzfJ+VTgAqTBqZ228b3ZZ4s3NcHfSvr+xYLbfvyho9C4QQ=="},"maintainers":[{"name":"nschonni","email":"nschonni@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":{},"publish_time":1479393966396,"_hasShrinkwrap":false,"_cnpm_publish_time":1479393966396,"_cnpmcore_publish_time":"2021-12-13T13:23:40.104Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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","size":349695,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-3.13.0.tgz","integrity":"sha512-Ns8OGscMa6CNaOIJq8rxE6leFykcx06E9px5jufPbnpcUNMkgmX1sAoLes8Z+cI3YG8HtEVmqaX3ymv/wGWKTw=="},"maintainers":[{"name":"nschonni","email":"nschonni@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":{},"publish_time":1479253519365,"_hasShrinkwrap":false,"_cnpm_publish_time":1479253519365,"_cnpmcore_publish_time":"2021-12-13T13:23:41.067Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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","size":350134,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-3.12.5.tgz","integrity":"sha512-5F7PdCxKYD6yBffaYCQN1boZfZkfbxNbnYMHdS8JZvFzYcNOkUYY28BCmmRmsi3Vk7RPyVz5yy32xnYJQyZ/ew=="},"maintainers":[{"name":"nschonni","email":"nschonni@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":{},"publish_time":1479180608453,"_hasShrinkwrap":false,"_cnpm_publish_time":1479180608453,"_cnpmcore_publish_time":"2021-12-13T13:23:41.986Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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","size":350156,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-3.12.4.tgz","integrity":"sha512-3hg+kTY43mMUBsGDGxGDKh4Lb9lEluk4acSFFQLpXmWHLKysK8U3J3dTU1+bHB0btqq6lUYbGc2gnygVlMrmMw=="},"maintainers":[{"name":"nschonni","email":"nschonni@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":{},"publish_time":1479178640131,"_hasShrinkwrap":false,"_cnpm_publish_time":1479178640131,"_cnpmcore_publish_time":"2021-12-13T13:23:43.097Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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","size":350161,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-3.12.3.tgz","integrity":"sha512-NllBlpvNx4iLrX/0Ofbq0st7otOhQQg5tkTBtWMzAbR/kbPJV2GumyWb2gJIV+gaeK+9/VuCMdW5ULcFxDz7mg=="},"maintainers":[{"name":"nschonni","email":"nschonni@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":{},"publish_time":1479176255046,"_hasShrinkwrap":false,"_cnpm_publish_time":1479176255046,"_cnpmcore_publish_time":"2021-12-13T13:23:43.933Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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","size":350144,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-3.12.2.tgz","integrity":"sha512-Qye8u2llugeVXyaOg4cTJnWEqpZoUBGqnNSJ2ptM2GI2a4TgtKUG+iWwNhZ1at2QijUSNtrG0mBdkvCnNXBN2A=="},"maintainers":[{"name":"nschonni","email":"nschonni@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":{},"publish_time":1479101717293,"_hasShrinkwrap":false,"_cnpm_publish_time":1479101717293,"_cnpmcore_publish_time":"2021-12-13T13:23:44.840Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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","size":350138,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-3.12.1.tgz","integrity":"sha512-jBSLeTugIYuiU+QayUyEs6AcBCHSufcnZA2KCuXvA2uKxYxATHW7XBzzktYanqe8V5UjZsP28rrQJ3gS19+cUg=="},"maintainers":[{"name":"nschonni","email":"nschonni@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":{},"publish_time":1479082926004,"_hasShrinkwrap":false,"_cnpm_publish_time":1479082926004,"_cnpmcore_publish_time":"2021-12-13T13:23:46.026Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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","size":350110,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-3.12.0.tgz","integrity":"sha512-sQP4l6FE278qV6RJmcdGKtCnH6+FY2rbD64JRaFw8b6VCUJKa/1J/1DkAzwSzxaRcqmAgJESRDFspnG8lcCM1w=="},"maintainers":[{"name":"nschonni","email":"nschonni@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":{},"publish_time":1479077855287,"_hasShrinkwrap":false,"_cnpm_publish_time":1479077855287,"_cnpmcore_publish_time":"2021-12-13T13:23:46.946Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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","size":348784,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-3.11.3.tgz","integrity":"sha512-G5JV1fij3zWNBwohxdemg1pm4RwM7THBeIxsmkpEdkFAJMi7fjWtFZoZ37YwfQXkzBEI9EAbtSpk29KeiT0Vdw=="},"maintainers":[{"name":"nschonni","email":"nschonni@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":{},"publish_time":1478924683294,"_hasShrinkwrap":false,"_cnpm_publish_time":1478924683294,"_cnpmcore_publish_time":"2021-12-13T13:23:47.976Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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","size":348596,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-3.11.2.tgz","integrity":"sha512-otKdOc04JNQwv7CyyuXoJldOCrohGYYCXmNHnSgskAY7a9FMDC1/pipZ+9XA7KtxYUb1a8L+tU5TQKuDCG8F8A=="},"maintainers":[{"name":"nschonni","email":"nschonni@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":{},"publish_time":1478327363246,"_hasShrinkwrap":false,"_cnpm_publish_time":1478327363246,"_cnpmcore_publish_time":"2021-12-13T13:23:48.890Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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","size":348569,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-3.11.1.tgz","integrity":"sha512-xRStmEG5/y53X7gwX2tNBKDpgA4dyHTxrlpYoMmcMGytC2GkY08N3aX/DU4yRdaucJCnQBBLXUa+D2Km7kKYXg=="},"maintainers":[{"name":"nschonni","email":"nschonni@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":{},"publish_time":1478174420754,"_hasShrinkwrap":false,"_cnpm_publish_time":1478174420754,"_cnpmcore_publish_time":"2021-12-13T13:23:49.882Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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","size":349383,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-3.11.0.tgz","integrity":"sha512-YtHnop/3NnyP46CAMSS1fgDi3alyK7+a35lVg4xkAfiSsqxJPTQIi3UqVwS19aZJJXq58TeTIhAQxTfx/Qeiuw=="},"maintainers":[{"name":"nschonni","email":"nschonni@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":{},"publish_time":1478132122007,"_hasShrinkwrap":false,"_cnpm_publish_time":1478132122007,"_cnpmcore_publish_time":"2021-12-13T13:23:51.119Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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","size":347405,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-3.10.1.tgz","integrity":"sha512-Qa2UxoNXcw6pgbLKQFlvROE0FzmchsQXxivB3jsXbS0JdGCbOFEuNOOrbnh2q8zE/0EdXLUG/j288zSWQpuTww=="},"maintainers":[{"name":"nschonni","email":"nschonni@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":{},"publish_time":1475218505457,"_hasShrinkwrap":false,"_cnpm_publish_time":1475218505457,"_cnpmcore_publish_time":"2021-12-13T13:23:52.286Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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","size":347726,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-3.10.0-1.tgz","integrity":"sha512-ySMjwJuDgZCWJ02XSW3vwB8sKfdzunGDZIB+TrpKoq1Vy/O15bagOSiRHEHgHV0M7JXPq5ZuRDyNgbjER59Wag=="},"maintainers":[{"name":"nschonni","email":"nschonni@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":{},"publish_time":1475213913147,"_hasShrinkwrap":false,"_cnpm_publish_time":1475213913147,"_cnpmcore_publish_time":"2021-12-13T13:23:53.480Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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","size":330089,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-3.10.0.tgz","integrity":"sha512-gK6QVngiGLxcfNYrTx2gtLJn9DuFWHpHWOHT/4Pe7fZPLMo9SNc+16r+78ohgRzuqRgjphaKZNFLysnOGKDxEg=="},"maintainers":[{"name":"nschonni","email":"nschonni@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":{},"publish_time":1473817228649,"_hasShrinkwrap":false,"_cnpm_publish_time":1473817228649,"_cnpmcore_publish_time":"2021-12-13T13:23:54.775Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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","size":346801,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-3.9.3.tgz","integrity":"sha512-oBH8NZH5FeMuJfkek6ClUOqUPXBwGeSwacYrqXeu2uRZIX3M2e8acTVLCtRs9/fdqe2wadZXa+TwLXrP9yxyrg=="},"maintainers":[{"name":"nschonni","email":"nschonni@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":{},"publish_time":1473157632752,"_hasShrinkwrap":false,"_cnpm_publish_time":1473157632752,"_cnpmcore_publish_time":"2021-12-13T13:23:55.959Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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","size":1757560,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-3.9.2.tgz","integrity":"sha512-mLV1doHpbs2KlELwwE2jW43c7b1ddrCXA15k8HyXXUEkg+/Uy6IJ5TWEIi3LBaQQ4qGnQAuBBFhRAabJ4W6lnQ=="},"maintainers":[{"name":"nschonni","email":"nschonni@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":{},"publish_time":1473142284729,"_hasShrinkwrap":false,"_cnpm_publish_time":1473142284729,"_cnpmcore_publish_time":"2021-12-13T13:23:57.417Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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","size":347511,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-3.9.1.tgz","integrity":"sha512-WlMgGOr9MRfaGTUZK+KNPof9J3q+z4HxmtbaNHdgSx0jL8FJShCsFfbyHfNDDfHybbl8anIkyrWYGmD5SQyU/w=="},"maintainers":[{"name":"nschonni","email":"nschonni@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":{},"publish_time":1473138957906,"_hasShrinkwrap":false,"_cnpm_publish_time":1473138957906,"_cnpmcore_publish_time":"2021-12-13T13:23:58.604Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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","size":1760522,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-3.9.0.tgz","integrity":"sha512-ZLGL3yMNPPpxSXHzz490tcSgV727qUrCqVIsamBnMvppXsMyQKfdMJqWQdDMheWIpgA19DGL7SMDxySe+rSvtA=="},"maintainers":[{"name":"nschonni","email":"nschonni@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":{},"publish_time":1473031802870,"_hasShrinkwrap":false,"_cnpm_publish_time":1473031802870,"_cnpmcore_publish_time":"2021-12-13T13:23:59.844Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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","size":328831,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-3.8.0.tgz","integrity":"sha512-qxO+tPZBaWT5T6O0DhRmUlkFkpAMyW0lxd9rRvFlAkLafC5BxfbbwpcoTHfQsboB5zIcjQYQeUly4l/2aKYeMA=="},"maintainers":[{"name":"nschonni","email":"nschonni@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":{},"publish_time":1466206389981,"_hasShrinkwrap":false,"_cnpm_publish_time":1466206389981,"_cnpmcore_publish_time":"2021-12-13T13:24:01.154Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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","size":327984,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-3.7.0.tgz","integrity":"sha512-ZpTRZHGVfRWLrTvueNNttm7Np4s9x9cRWi2Z6KEB2B+bTH8svMslnWYCd6vtGueYDx3zlf++Hi3xuufiLLL3AQ=="},"maintainers":[{"name":"nschonni","email":"nschonni@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":{},"publish_time":1462269264510,"_hasShrinkwrap":false,"_cnpm_publish_time":1462269264510,"_cnpmcore_publish_time":"2021-12-13T13:24:02.454Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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","size":327850,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-3.6.0.tgz","integrity":"sha512-fHS+MTyxT8WdeWGkTddDs0aT3v9oWbDkI2FR8TIXj7XqIg7FOHyT0oGjSBthmvKKAPC4E64NL9zQshDqbmyRWw=="},"maintainers":[{"name":"nschonni","email":"nschonni@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":{},"publish_time":1461413956648,"_hasShrinkwrap":false,"_cnpm_publish_time":1461413956648,"_cnpmcore_publish_time":"2021-12-13T13:24:03.691Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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","size":33069,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-3.5.3.tgz","integrity":"sha512-R7pIVHZEE5iV/C1EHZ7MRkq0pTPNoRGjFDhvFsKOEzczhwfuUjz+bLj27CMUrj3FgLZ8l38AWMMBR6jj5I+ovA=="},"maintainers":[{"name":"nschonni","email":"nschonni@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":{},"publish_time":1461244054623,"_hasShrinkwrap":false,"_cnpm_publish_time":1461244054623,"_cnpmcore_publish_time":"2021-12-13T13:24:04.691Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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","size":324434,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-3.5.2.tgz","integrity":"sha512-167JNKw4vzpFwZ4ZTFrJg8oeXMgG4TfoUvFT8zOnNyBPYo19M8T4+4sy5JK0WO2y1dJSDj/48Mxdizvso66jMg=="},"maintainers":[{"name":"nschonni","email":"nschonni@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":{},"publish_time":1461236222941,"_hasShrinkwrap":false,"_cnpm_publish_time":1461236222941,"_cnpmcore_publish_time":"2021-12-13T13:24:06.012Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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","size":32899,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-3.5.1.tgz","integrity":"sha512-VgZp7or5B9aDylV7LwvXqjsAe7CpK0C5ja4q7Qxn8Yfa2c37ndtUtkPYDT4201w8sOW66cP7VfpeYCJSIJp/Lw=="},"maintainers":[{"name":"nschonni","email":"nschonni@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":{},"publish_time":1461162136189,"_hasShrinkwrap":false,"_cnpm_publish_time":1461162136189,"_cnpmcore_publish_time":"2021-12-13T13:24:07.341Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"dist":{"shasum":"880f77a664e44da5647925377501306abad80278","size":321294,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-3.5.0-beta.1.tgz","integrity":"sha512-UwNbof+HAw2pdCv4GN6+ihFr2rHvA+PtFupE4IGB1ZmOOvNqeCDuGSaEu7pqTd5zDOKxKP2ZnaEZXxc+kjV5sQ=="},"directories":{},"publish_time":1454030686422,"_hasShrinkwrap":false,"_cnpm_publish_time":1454030686422,"_cnpmcore_publish_time":"2021-12-13T13:24:08.608Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"dist":{"shasum":"ef61069927f1578ae51408ed60298449c4cdd294","size":314006,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-3.4.2.tgz","integrity":"sha512-xq1DJwGJ5q/6CQvPi+ojDEv20ag2ktm8WSWpEZezKbwoozCmGiBMFWnLNOJMhkxpur9+2kGIxHBkCHN/shrn6Q=="},"directories":{},"publish_time":1447346366875,"_hasShrinkwrap":false,"_cnpm_publish_time":1447346366875,"_cnpmcore_publish_time":"2021-12-13T13:24:09.902Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"dist":{"shasum":"b3c36494e39e11d85064fdd9d80ddfea0848817a","size":309277,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-3.4.1.tgz","integrity":"sha512-c8MGK7adOticQW5Y4MByZAnvuwVEWW8f7p0fceZOnIzKhpq5Ax96hrbPgeFr17TCisvHankm+8k5OZ7htS3NFg=="},"directories":{},"publish_time":1445910926915,"_hasShrinkwrap":false,"_cnpm_publish_time":1445910926915,"_cnpmcore_publish_time":"2021-12-13T13:24:11.480Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"dist":{"shasum":"823313e44eec54ceefbd584604fa7238bb615988","size":309194,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-3.4.0.tgz","integrity":"sha512-dOSefoIjfGKw7f7yydlWARVB0kn7sCTYWclRnlxcnRgXKNZu+xdNs2+052WQrbAEgC3Pp74pJ9SRduq0WGlu3Q=="},"directories":{},"publish_time":1445743493616,"_hasShrinkwrap":false,"_cnpm_publish_time":1445743493616,"_cnpmcore_publish_time":"2021-12-13T13:24:12.871Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"dist":{"shasum":"f2f00c575137d96792212bc80a80fcd229fcf1dd","size":281181,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-3.4.0-beta.2.tgz","integrity":"sha512-kMrF/XNzeaPLqeyrnvFvIhYw503tWWlDlfyHlC40yBlCk+WJSz9wLgIYYYAXe6yKEQUc7bJxoKjy3J4YrWHsAQ=="},"directories":{},"publish_time":1444987814525,"_hasShrinkwrap":false,"_cnpm_publish_time":1444987814525,"_cnpmcore_publish_time":"2021-12-13T13:24:14.452Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"dist":{"shasum":"bf648f5950248dd8006bc935f10adea716970c20","size":279875,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-3.4.0-beta1.tgz","integrity":"sha512-8pIy+FqZA747sJSNjGXB2e7N7Bh6myxIwCUsN1KbGwpzOlkRwV5Qbjpo3UlSNRZ442Tm470PFv86/DXcyZ6QUw=="},"directories":{},"publish_time":1442559555656,"_hasShrinkwrap":false,"_cnpm_publish_time":1442559555656,"_cnpmcore_publish_time":"2021-12-13T13:24:15.812Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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","size":254038,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-3.3.3.tgz","integrity":"sha512-AGRSIuUk5/h2SpV5Fh855JsJ6Gifeh0vmYslgEoUSMwE/SkKTPY8nneJYCLfUXepAGEeicrJsFPu/22FWQ0Vfg=="},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"publish_time":1442505605990,"_hasShrinkwrap":false,"_cnpm_publish_time":1442505605990,"_cnpmcore_publish_time":"2021-12-13T13:24:17.379Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"dist":{"shasum":"2ce74e3fcd56c0c14eb2a9214af83f128d7fa54a","size":254160,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-3.3.2.tgz","integrity":"sha512-vGSMeljHQE14DPMtGhDttPUolF7bQ92ksF5D6NxzwBtkXaZWV3Dgyg41V1srlBdJpNuzKvGEanCKyDIXMqa3QQ=="},"directories":{},"publish_time":1440908469834,"_hasShrinkwrap":false,"_cnpm_publish_time":1440908469834,"_cnpmcore_publish_time":"2021-12-13T13:24:18.751Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"dist":{"shasum":"50ccf91a2e99f7756e38f5cdfe8fa25c3b7f7e32","size":254069,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-3.3.1.tgz","integrity":"sha512-b/Qy1wAk2RT80RXK8LvC5JB/S5AZBNauz5cxerRgaXyML0eJuX4d9hkd27FlyvCmt4kV+fLBOShSjjPGcx4vrA=="},"directories":{},"publish_time":1440584313259,"_hasShrinkwrap":false,"_cnpm_publish_time":1440584313259,"_cnpmcore_publish_time":"2021-12-13T13:24:20.294Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"dist":{"shasum":"2bb24b20a4e00dce0b46ca0055e76529ac41bda2","size":254053,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-3.3.0.tgz","integrity":"sha512-/KklJkuit4aMHn9QwNSwWv+hyZ580jyIrIvjLWk8kK4cJ3tAf59IaMbXHfAUCtXfGHYbAGL1KhWMBUPEYAJUtg=="},"directories":{},"publish_time":1440557247877,"_hasShrinkwrap":false,"_cnpm_publish_time":1440557247877,"_cnpmcore_publish_time":"2021-12-13T13:24:21.812Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"dist":{"shasum":"5b041a6a063863587f7c59c81cf3b6a04aff3510","size":251963,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-3.2.0.tgz","integrity":"sha512-zKahIbnoqg/l2Txz69xdEB3OZobFtkUggrDg23KtNWzR7U9ew4fWPjs6lDG36hSO+K4x+JZE5peDy2Hxvxzv/g=="},"directories":{},"publish_time":1434045427143,"_hasShrinkwrap":false,"_cnpm_publish_time":1434045427143,"_cnpmcore_publish_time":"2021-12-13T13:24:23.485Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"dist":{"shasum":"d011fb725056f443ae56af5709c0866ccdc07765","size":251375,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-3.1.2.tgz","integrity":"sha512-8qCCg7fuva/2ZHbM1bnAL3dmEFV7BSdwZjY+KpCmbmK1y6xEubkGTmWnhyjljvazyzE5eDD4rUg10ikQJHgrow=="},"directories":{},"publish_time":1432177021566,"_hasShrinkwrap":false,"_cnpm_publish_time":1432177021566,"_cnpmcore_publish_time":"2021-12-13T13:24:25.022Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"dist":{"shasum":"f4415058b5b587b59e2c8645f95a4617a12e68aa","size":251080,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-3.1.1.tgz","integrity":"sha512-HHZhR0xr4YO4jNIfRiBHj2FEB8PmP81/uQbnhKhpkdYjiHvNjfMZkbImgj2lDoNrfEYOsZBXW8JjiTyyDCAtOQ=="},"directories":{},"publish_time":1431671750720,"_hasShrinkwrap":false,"_cnpm_publish_time":1431671750720,"_cnpmcore_publish_time":"2021-12-13T13:24:26.708Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"dist":{"shasum":"e1d95a38cf95a59d7d32b95ecc258c5ca1c2c2cb","size":28602,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-3.1.0.tgz","integrity":"sha512-9CX4pBaNtexBkpKFL9GJPhX3NUmUWMshKgnAGDEa9JZQbtsZsF7ce4uqtuq2un49Y8Wy5FWNmeUeR4SEvLGipQ=="},"directories":{},"publish_time":1431519632248,"_hasShrinkwrap":false,"_cnpm_publish_time":1431519632248,"_cnpmcore_publish_time":"2021-12-13T13:24:28.267Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"dist":{"shasum":"40e1c5a1f3ba55d9efcc6ff2e2f06cf2f937d70d","size":247718,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-3.0.0.tgz","integrity":"sha512-JCB6hV+/xihkG/sI+owRFiLInpZMWrwQ3mipJq27ggs0zI6u1x8S7uIA4phsbnYwVOOOVJ3u9vt6SnpKLpgYJw=="},"directories":{},"publish_time":1430920315529,"_hasShrinkwrap":false,"_cnpm_publish_time":1430920315529,"_cnpmcore_publish_time":"2021-12-13T13:24:29.882Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"dist":{"shasum":"5b348cea2381d0c4575161ed81267a1299f7b095","size":244368,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-3.0.0-beta.7.tgz","integrity":"sha512-mjh0MG1yL4tqMj/P1Hdd1NsAHQwQ44A6fTlZ3F7NaBkoIiY/2WhTKBE2MTo2Fv63HqlLn/zNVmY6Q7IRD7SYkA=="},"directories":{},"publish_time":1429665572029,"_hasShrinkwrap":false,"_cnpm_publish_time":1429665572029,"_cnpmcore_publish_time":"2021-12-13T13:24:31.343Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"dist":{"shasum":"a007e06f214cce0cd88a0b483972a568b44a105b","size":244578,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-3.0.0-beta.5.tgz","integrity":"sha512-IeLffldCNmGaIjqkN+KRm8xMlb4mRABEr1Oxw4HyD414n8CtLvge50hzeJioI1iKL56jWdb1RoA4c8uViJI/SA=="},"directories":{},"publish_time":1428315486735,"_hasShrinkwrap":false,"_cnpm_publish_time":1428315486735,"_cnpmcore_publish_time":"2021-12-13T13:24:33.102Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"dist":{"shasum":"32847dceef9ef217bb68138ed5d3e2a72a6765fb","size":447822,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-2.1.1.tgz","integrity":"sha512-mCZZivBXbcrEjeensnId4zU7puO19DJjkgr2jAooenYSY+a6x/SBwJ66JP9QJcz1INH8j7/yiTPdkPrgh8SC9g=="},"directories":{},"publish_time":1427566568690,"_hasShrinkwrap":false,"_cnpm_publish_time":1427566568690,"_cnpmcore_publish_time":"2021-12-13T13:24:34.712Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"dist":{"shasum":"2f13f4b30a95decf1637ace2b46149b8c21a60e6","size":462133,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-2.1.0.tgz","integrity":"sha512-AlWtkZolAKTxjfv80ar+ml+J4Zgz3h/Sg4i3p+wsPj00LAC6lDAZWHtgnzuMxiSl7zvWh+gZ24GxzxaK2F90OQ=="},"directories":{},"publish_time":1427565060008,"_hasShrinkwrap":false,"_cnpm_publish_time":1427565060008,"_cnpmcore_publish_time":"2021-12-13T13:24:36.231Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"dist":{"shasum":"2c4c62f374f013f1a56838a72a450bd42f30d4b2","size":233899,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-3.0.0-beta.4.tgz","integrity":"sha512-zvQ6vkF63mFF9wC+3ziSyYUiD2Z10apBo0JhEdCaWqJtsTCLavt7j2JWfqG30FF+6KK8lk8PcsZiInAp7o4SeQ=="},"directories":{},"publish_time":1427450880495,"_hasShrinkwrap":false,"_cnpm_publish_time":1427450880495,"_cnpmcore_publish_time":"2021-12-13T13:24:37.731Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"dist":{"shasum":"385f17ae803a54b0d2dd6096bdcfbd8379622188","size":233879,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-3.0.0-beta.3.tgz","integrity":"sha512-VL6+4gbhckIqtdg9yrbMXnwTbvN05MQE0qkDlx9upAAUGssCEX3EYNSLoYK+0dDT8X86OlkVTR0hAtYB7+RSdA=="},"directories":{},"publish_time":1427442341739,"_hasShrinkwrap":false,"_cnpm_publish_time":1427442341739,"_cnpmcore_publish_time":"2021-12-13T13:24:39.226Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"dist":{"shasum":"23a2d3f0e19f31776b9edd8cc50d2eed298ed1fc","size":234101,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-3.0.0-beta.2.tgz","integrity":"sha512-qfxhgDJlF+HC7Xf2+bMDlI7+vUhn2APnDbJXPQ/68QGoUZrHG9JO9SA/1cgAzElQOo7kNHJSxXuBq74IJG+KRg=="},"directories":{},"publish_time":1427320229267,"_hasShrinkwrap":false,"_cnpm_publish_time":1427320229267,"_cnpmcore_publish_time":"2021-12-13T13:24:41.013Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"dist":{"shasum":"bad2073ebfc2c6c3f3bc354fa5059f5437babf02","size":204309,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-3.0.0-alpha.0.tgz","integrity":"sha512-3B+zyxKde5o+AFIeci5VNYiUZijES4BuQrAdanPx5LK0hTwX05RHhalgYfIef38BbSRFQ/lgFk/jBZYk0FtD+g=="},"directories":{},"publish_time":1426472267712,"_hasShrinkwrap":false,"_cnpm_publish_time":1426472267712,"_cnpmcore_publish_time":"2021-12-13T13:24:42.586Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"dist":{"shasum":"28101ce16fae0584bea95242b400b2cc1d958b83","size":446372,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-2.0.1.tgz","integrity":"sha512-tlDIiciasT//FmgasTZz92Y0jhrG0m1BjUbNclClWAIHFSt5ns7QnwTbtRHe//zPs/cT9NVuZ6Riwga7OOU9+w=="},"directories":{},"publish_time":1423730620780,"_hasShrinkwrap":false,"_cnpm_publish_time":1423730620780,"_cnpmcore_publish_time":"2021-12-13T13:24:44.245Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"dist":{"shasum":"f793f421e45e2caad2e3879a0e8877f66b21444b","size":446347,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-2.0.0.tgz","integrity":"sha512-i0eNXxgdUdRg0/LSjWDjTMByXbhlV2E/Qg07qKzW9QGSQccfNjStpt7Hht9wkhLeYLFiDMIGJIFH9s2Kta+Lzw=="},"directories":{},"publish_time":1423713863708,"_hasShrinkwrap":false,"_cnpm_publish_time":1423713863708,"_cnpmcore_publish_time":"2021-12-13T13:24:45.901Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"dist":{"shasum":"33e17f5e92c2fa8ab6c96d406ad95c70450d5e72","size":442923,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-2.0.0-beta.tgz","integrity":"sha512-+/r+bZxwC3PQtSvpqG+RNKyNg0g47oc5KshA8yVmKZaVO3Eoo5xwAAR3LjEinjMqLUhI7VgBVakExd/fH0GZ7g=="},"directories":{},"publish_time":1419464439110,"_hasShrinkwrap":false,"_cnpm_publish_time":1419464439110,"_cnpmcore_publish_time":"2021-12-13T13:24:47.688Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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","size":401841,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-1.2.3.tgz","integrity":"sha512-9QQG7vQ0IBg0BqPSmQPuHNIXj02whz1ly9WiVDBvVKJyr4VF3kGV8sIZPgoVV8qN3p6oT2kCCI/Uazt/2qgX0g=="},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"publish_time":1416433440859,"_hasShrinkwrap":false,"_cnpm_publish_time":1416433440859,"_cnpmcore_publish_time":"2021-12-13T13:24:49.253Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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","size":401199,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-1.2.2.tgz","integrity":"sha512-xUUr9DylejAO1B5KDsYdWFkPRpzWfyGltgswlk7zEGXBdciryuynNo7alVKT4K/bDTtCmoBGjVoFekOh6id2Iw=="},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"publish_time":1415299912447,"_hasShrinkwrap":false,"_cnpm_publish_time":1415299912447,"_cnpmcore_publish_time":"2021-12-13T13:24:50.924Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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","size":401052,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-1.2.1.tgz","integrity":"sha512-qlPO3KP5GvLQSIHkHFM+e3HSPHxkIKjSWdwAcoLqWFH5de/m2D1x22mGC6xx2qI6wYMZxmnx3voGERUhJbeUNw=="},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"publish_time":1415270219425,"_hasShrinkwrap":false,"_cnpm_publish_time":1415270219425,"_cnpmcore_publish_time":"2021-12-13T13:24:52.783Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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","size":401049,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-1.2.0.tgz","integrity":"sha512-QOYjedJ1ZeRKjTcLP4/TL+bJUyYqzIdvJE8AA8ROqo0l0rV1yvtr2A7bDYEE6+o+XkWY0EuYAZe6SmT0B755hQ=="},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"publish_time":1415269858159,"_hasShrinkwrap":false,"_cnpm_publish_time":1415269858159,"_cnpmcore_publish_time":"2021-12-13T13:24:54.605Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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","size":2573960,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-1.1.4.tgz","integrity":"sha512-oZhlQ1JbehsscdphJQ+L4NemOQ+BpMq0QUZGqlTdTanq6/FCSlqtCQxNrEPnTfmjobEwndMbL7Qbq6rOCk5wyQ=="},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"publish_time":1414602465922,"_hasShrinkwrap":false,"_cnpm_publish_time":1414602465922,"_cnpmcore_publish_time":"2021-12-13T13:24:56.577Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"dist":{"shasum":"b585ff164369275083df2d498e5982ef99a43cd9","size":2585018,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-1.1.3.tgz","integrity":"sha512-VgUzOxeSE9yvbS+bu0wSo8YtmHqsLUsE6jkl155K99kJdty3d7o9iesoxkIxw9Ck/V0KotvD+FM1jqAWYTG8+w=="},"directories":{},"publish_time":1414586837351,"_hasShrinkwrap":false,"_cnpm_publish_time":1414586837351,"_cnpmcore_publish_time":"2021-12-13T13:24:58.614Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"dist":{"shasum":"009dff5160b954b85ea9f0d3ef94575030ec1120","size":2563578,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-1.1.2.tgz","integrity":"sha512-NsuYyYuc1YZGnPbpN6EAIs+/3tT3sGVM5yAQ8RM8UobQF5IoieyRsQ2su76LQfT3UseczUJGZ00GFsH4inh89w=="},"directories":{},"publish_time":1414586166800,"_hasShrinkwrap":false,"_cnpm_publish_time":1414586166800,"_cnpmcore_publish_time":"2021-12-13T13:25:00.516Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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","size":2573675,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-1.1.1.tgz","integrity":"sha512-6yAr7YNnr2beL9IXERp0tmVdwq3vXdOaRb4I8yjW+A4hotX1X+8rj69xCDgoFrumlhlei7CiuDi6ZXXwjUKfJw=="},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"publish_time":1414583083001,"_hasShrinkwrap":false,"_cnpm_publish_time":1414583083001,"_cnpmcore_publish_time":"2021-12-13T13:25:02.523Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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","size":2575253,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-1.1.0.tgz","integrity":"sha512-0DcJcn+6gcfoxy8vdG29Vf2/YZPhATpH0BzRNzr9xNhDNfGn68BdsN/0aP5rRGQo9zdaiTYMS7pqZT1RJf+K0w=="},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"publish_time":1414577992664,"_hasShrinkwrap":false,"_cnpm_publish_time":1414577992664,"_cnpmcore_publish_time":"2021-12-13T13:25:04.674Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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","size":2533036,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-1.0.2.tgz","integrity":"sha512-kqwJ0LLQej6keJqXmEKL5nOKt5UTIh9qs99Ux1ASfN0qlbi5bur0cxhBVNc3xepz6PtW41MIEsRH1eiMRzwmuA=="},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"publish_time":1414184276372,"_hasShrinkwrap":false,"_cnpm_publish_time":1414184276372,"_cnpmcore_publish_time":"2021-12-13T13:25:06.732Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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","size":2533314,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-1.0.3.tgz","integrity":"sha512-9olrBHoO1edp4BPL3nWEalZHGor6CDa8ei9yUnAKJx26rXwpDsxx0wbaoxbcPkrFMaib61RiLMuQU+TSd3XCyw=="},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"publish_time":1414186974595,"_hasShrinkwrap":false,"_cnpm_publish_time":1414186974595,"_cnpmcore_publish_time":"2021-12-13T13:25:09.036Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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","size":2533048,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-1.0.2-alpha.tgz","integrity":"sha512-V9JtspaBUr2VnfqFxtYAyDFvTEyK8MlWZqdHZyZILM+7j7aaaM36DxKJYZHNK/VcT8dk5cPwD7u3ySsCsaadvQ=="},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"publish_time":1414183760903,"_hasShrinkwrap":false,"_cnpm_publish_time":1414183760903,"_cnpmcore_publish_time":"2021-12-13T13:25:11.439Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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","size":2508429,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-1.0.1.tgz","integrity":"sha512-pJBVhVZHGa/d/Ib7pFKj6kFrMMhhatlo5UVUcr+KSar9VFKPdn1KoVgS8RyES8H2XQGUAUBD91DRVyHJF1JSQg=="},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"publish_time":1413490665086,"_hasShrinkwrap":false,"_cnpm_publish_time":1413490665086,"_cnpmcore_publish_time":"2021-12-13T13:25:13.543Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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","size":2508683,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-1.0.0.tgz","integrity":"sha512-47oCNTF9n4gcKfttymQz33YMo9nQVFbcfOUalEeHWxu6ku1CFaZsFMHLR8WXw7yqtnyriJogYLjH8ESP5btZSw=="},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"publish_time":1413489791849,"_hasShrinkwrap":false,"_cnpm_publish_time":1413489791849,"_cnpmcore_publish_time":"2021-12-13T13:25:15.515Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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","size":2187114,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-0.9.6.tgz","integrity":"sha512-9oVk66iYQ+fzHox5zS/2mdXLWGgwPVYuv8Dckf4bt8HH2RiukLcx5zK43CvyFtcFhji4qj1G7ou62TkS6eC56Q=="},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"publish_time":1412579346084,"_hasShrinkwrap":false,"_cnpm_publish_time":1412579346084,"_cnpmcore_publish_time":"2021-12-13T13:25:17.569Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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","size":2167213,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-0.9.5.tgz","integrity":"sha512-SItVYSeLEPzROuwqX1sF/MIKCMv6SVk4wKx7zfkMgTGPdpOr/0X6NaBdMLVoio0cuXHD6M3a4OCnj/m+LI0v8Q=="},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"publish_time":1412506884538,"_hasShrinkwrap":false,"_cnpm_publish_time":1412506884538,"_cnpmcore_publish_time":"2021-12-13T13:25:19.896Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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","size":1995079,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-0.9.5-rc1.tgz","integrity":"sha512-bN9nR0ELawNPwq/boYyUeG6Szmu4TpUn6Ltt7MjhII2kUFgVMz8yo/0JJ8lVkcQm7nRdHmHOTtS4TyDEHGezIA=="},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"publish_time":1411403958564,"_hasShrinkwrap":false,"_cnpm_publish_time":1411403958564,"_cnpmcore_publish_time":"2021-12-13T13:25:21.893Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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","size":1985009,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-0.9.4.tgz","integrity":"sha512-C6KDN6pBWQSboWc5VFRxienklxD2/JINLD8oxYjqJa+fRoR97MiNK1F3C3Lfe3Utf4CDfgVQtTryfON6A0gQmg=="},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"publish_time":1411331040776,"_hasShrinkwrap":false,"_cnpm_publish_time":1411331040776,"_cnpmcore_publish_time":"2021-12-13T13:25:24.034Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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","size":1986721,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-0.9.4-rc1.tgz","integrity":"sha512-8WiEhXCpp5lzLcUWHvbw5/VQ8m5H44FmSKdyIUABdriWDVywWY2bY2kj6tYsllgnjjSNQ+fTVGqsFuYy+REHrQ=="},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"publish_time":1411227506116,"_hasShrinkwrap":false,"_cnpm_publish_time":1411227506116,"_cnpmcore_publish_time":"2021-12-13T13:25:25.979Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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","size":1896379,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-0.9.3.tgz","integrity":"sha512-hhIJkpOLwFjYFajB+FrXUo0Nin48MOr2JCC2Ri+1C9ZwKtoLNYBJ6IAotEVqVZeokN5wTmFeo1yF9ZCny4QAvg=="},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"publish_time":1402910798455,"_hasShrinkwrap":false,"_cnpm_publish_time":1402910798455,"_cnpmcore_publish_time":"2021-12-13T13:25:28.091Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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","size":2012066,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-0.9.2.tgz","integrity":"sha512-VKEjCUPzZHC0ngxoFtb5zbowmHm/klxvzmCiaZsHHQjQYLLvpm3JgOxWHHue4EcdJkNXqyjreCMNYJ+YzZ/iLQ=="},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"publish_time":1402256906349,"_hasShrinkwrap":false,"_cnpm_publish_time":1402256906349,"_cnpmcore_publish_time":"2021-12-13T13:25:30.047Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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","size":2011975,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-0.9.1.tgz","integrity":"sha512-UiAIVOoTU842CviWUetbXgvUblFVT/jx7NASSv/xnOZbMKhtnbFOz4Jv+UOtcnBcYP2tQWmD9dSUdisIfG1VFQ=="},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"publish_time":1402050482828,"_hasShrinkwrap":false,"_cnpm_publish_time":1402050482828,"_cnpmcore_publish_time":"2021-12-13T13:25:32.518Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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","size":1999436,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-0.9.0.tgz","integrity":"sha512-FSTZtG+Fyb80JVARrC0zSd8ASH2tEKtMgYtR5+p3MtSNIXT3FbgIWg0zB8wxXwV8ZKTD+rI0LTa266iiICCZng=="},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"publish_time":1402000464593,"_hasShrinkwrap":false,"_cnpm_publish_time":1402000464593,"_cnpmcore_publish_time":"2021-12-13T13:25:34.691Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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","size":1795011,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-0.8.6.tgz","integrity":"sha512-768z+6HMuZfjvNBVG47v5BqkfDdfb915UCaNFuIFfOl+6b17YnsCQ9m+/WXl3xOuPY86L6kWfmNPSt5yrjCMmg=="},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"publish_time":1398172122143,"_hasShrinkwrap":false,"_cnpm_publish_time":1398172122143,"_cnpmcore_publish_time":"2021-12-13T13:25:36.960Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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","size":1795001,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-0.8.5.tgz","integrity":"sha512-ra5JUnbWASrLfpN1GhsCGkYYDV0bk+de1wMhLQUtPrL4WXcmf5cuSBag39bXvi0hI8RNDV9sE6NNiID3MqIPVw=="},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"publish_time":1398158076053,"_hasShrinkwrap":false,"_cnpm_publish_time":1398158076053,"_cnpmcore_publish_time":"2021-12-13T13:25:38.997Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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","size":1788747,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-0.8.4.tgz","integrity":"sha512-jsmUggsdNLURYuybRJs+TetK1EIyZMvO3dLavXcnfyhs2XTh9XuwPQBbYMWGVczVslNFIOgYrS6Kc0+Co5ziew=="},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"publish_time":1395864184280,"_hasShrinkwrap":false,"_cnpm_publish_time":1395864184280,"_cnpmcore_publish_time":"2021-12-13T13:25:40.822Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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","size":1796454,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-0.8.3.tgz","integrity":"sha512-uxYkMqutOJysfzjZbWploWZxobEzOWzYSole2skDXOWHFWQccKxUAkI6iU9KmmCUJVmZVLGPPUkjWflcPvkj5A=="},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"publish_time":1394646102401,"_hasShrinkwrap":false,"_cnpm_publish_time":1394646102401,"_cnpmcore_publish_time":"2021-12-13T13:25:43.318Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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","size":439209,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-0.8.2.tgz","integrity":"sha512-q9vwdk9R4wF6YfwXH2NyJ4YDprQJx3s3+f+G3dGxMwp8zVDpxCZdNmtCdc3C4BohI/v9knBREeqzV9I7ahrifA=="},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"publish_time":1394645726604,"_hasShrinkwrap":false,"_cnpm_publish_time":1394645726604,"_cnpmcore_publish_time":"2021-12-13T13:25:45.861Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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"},"readmeFilename":"README.md","_id":"node-sass@0.8.1","dist":{"shasum":"3dade58a35a62253ba44bfeb7683f7a5733f89f8","size":1656013,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-0.8.1.tgz","integrity":"sha512-nFYl2bmG4ZtbZZjKwEGOy+7jqJeHE2gE90jSXOYXN0oaAp4kWgiFBAH4Pd/fSHrK4ukogHxgUE7xhJC7fJHf/Q=="},"_from":".","_npmVersion":"1.3.11","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"publish_time":1389602878939,"_hasShrinkwrap":false,"_cnpm_publish_time":1389602878939,"_cnpmcore_publish_time":"2021-12-13T13:25:48.242Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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"},"readmeFilename":"README.md","_id":"node-sass@0.8.0","dist":{"shasum":"ebf3d6d04c672eccd036c8d40875ebf4d88938f6","size":1655815,"noattachment":false,"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-0.8.0.tgz","integrity":"sha512-C7etBMV3mCXJnAJmOparDbt8Lz23G3sCilKqMZR1lufsc9u70CcZKCbtO79B3V1/DjzEE7Hjb5DfoMQ6E1bn6w=="},"_from":".","_npmVersion":"1.3.11","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"publish_time":1389398199818,"_hasShrinkwrap":false,"_cnpm_publish_time":1389398199818,"_cnpmcore_publish_time":"2021-12-13T13:25:50.483Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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"},"readmeFilename":"README.md","_id":"node-sass@0.7.0","dist":{"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-0.7.0.tgz","shasum":"eee9640cee6a2fed7e38d29a5f07f52fe8c65eb7","size":2032689,"noattachment":false,"integrity":"sha512-db5oJTjYCLoPboxeVWyNkSOBMCP77Qp1YMNto/WUmNGt2uPZnF8K2Y/z5rfyygMCVEBg5fyOae3wbf0h7yEfiw=="},"_from":".","_npmVersion":"1.3.11","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"publish_time":1382517840175,"_hasShrinkwrap":false,"_cnpm_publish_time":1382517840175,"_cnpmcore_publish_time":"2021-12-13T13:25:52.961Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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"},"readmeFilename":"README.md","_id":"node-sass@0.7.0-alpha","dist":{"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-0.7.0-alpha.tgz","shasum":"cbd337f10286a02f1ef58455eb86c218b3197118","size":2032690,"noattachment":false,"integrity":"sha512-Eg06LAnKADgNgtN+rx0r0E3mwuGcths7B7GtJcuuxfHiAEjpWRl0pzHg5vxa2lkBV0pElD49M1N4HvEYJL1Gew=="},"_from":".","_npmVersion":"1.3.11","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"publish_time":1382195619524,"_hasShrinkwrap":false,"_cnpm_publish_time":1382195619524,"_cnpmcore_publish_time":"2021-12-13T13:25:55.188Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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"},"readmeFilename":"README.md","_id":"node-sass@0.6.7","dist":{"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-0.6.7.tgz","shasum":"88afbdad2b39f548ad396ce8444ca8cf5455566f","size":2431249,"noattachment":false,"integrity":"sha512-m14r0zQRu7/E+w5EkJgcG5bR2bLw9iubgKd1hXfAWXH15+iDTMQLppsaoor3XM600ZWttcfaIkxzJUNWah0CgQ=="},"_from":".","_npmVersion":"1.3.5","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"publish_time":1380790887390,"_hasShrinkwrap":false,"_cnpm_publish_time":1380790887390,"_cnpmcore_publish_time":"2021-12-13T13:25:57.299Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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"},"readmeFilename":"README.md","_id":"node-sass@0.6.6","dist":{"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-0.6.6.tgz","shasum":"27466a7c0ee3b9f30ac7865f9c9f3a0bc786ad21","size":2414570,"noattachment":false,"integrity":"sha512-1N5sj2ZRJF4FTjmojo+BwketbZS56jPPb6j6QGyhGTua75n420V+g9qY3FSecXJHs/50vdjgP/rAn0U7D0yTfw=="},"_from":".","_npmVersion":"1.3.5","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"publish_time":1379089876896,"_hasShrinkwrap":false,"_cnpm_publish_time":1379089876896,"_cnpmcore_publish_time":"2021-12-13T13:25:59.906Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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"},"readmeFilename":"README.md","_id":"node-sass@0.6.5","dist":{"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-0.6.5.tgz","shasum":"423c9f9968f9ad4025bdf30e5e860c4087e0defe","size":2414483,"noattachment":false,"integrity":"sha512-RZhNRgf3nM16cEUuZVfDigVbxWX+DFUz/9moBETualD8/+Uwb4AkU46DtdnDVTugM7Un330XXBTgl+XGBLEdpw=="},"_from":".","_npmVersion":"1.3.5","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"publish_time":1378542630404,"_hasShrinkwrap":false,"_cnpm_publish_time":1378542630404,"_cnpmcore_publish_time":"2021-12-13T13:26:02.006Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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"},"readmeFilename":"README.md","_id":"node-sass@0.6.4","dist":{"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-0.6.4.tgz","shasum":"d4143e627e43e8b5ebfb4d57e988b846585243b1","size":2400893,"noattachment":false,"integrity":"sha512-uOBu5kt0DWBSB5FdvSbio4ab8P3vwVMbXc6SUPzEYNSuTPZKfoDQuKTYVxVUkAPfoucnjqpToEmweqZBCDFRGg=="},"_from":".","_npmVersion":"1.3.5","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"publish_time":1375990780917,"_hasShrinkwrap":false,"_cnpm_publish_time":1375990780917,"_cnpmcore_publish_time":"2021-12-13T13:26:04.124Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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"},"readmeFilename":"README.md","_id":"node-sass@0.6.3","dist":{"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-0.6.3.tgz","shasum":"a1a32cef1181e9c7e8f07fbccc7db9497ab967e4","size":2545339,"noattachment":false,"integrity":"sha512-4ZhywzDin/fdiSiQMJ2oY9w8VTfwNQDOrAQHR3IECJF5xVNt4jAcqpRTydZiITuyt+CggwjyTsNtgDQ0csiCCw=="},"_from":".","_npmVersion":"1.3.5","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"publish_time":1375470590064,"_hasShrinkwrap":false,"_cnpm_publish_time":1375470590064,"_cnpmcore_publish_time":"2021-12-13T13:26:06.656Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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"},"readmeFilename":"README.md","_id":"node-sass@0.6.2","dist":{"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-0.6.2.tgz","shasum":"bc4eaed4fcd6fe5a6412bfa864f4322beb91bb7b","size":2396097,"noattachment":false,"integrity":"sha512-KPzZyktLJLJfRpOi4Gv+8qreaYL1nIakMsF57K4tS2tP7JaQuta8RQ9D0caCLsB7G7E2wqfppOH1AoXoC375zg=="},"_from":".","_npmVersion":"1.3.5","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"publish_time":1375392356657,"_hasShrinkwrap":false,"_cnpm_publish_time":1375392356657,"_cnpmcore_publish_time":"2021-12-13T13:26:08.638Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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"},"readmeFilename":"README.md","_id":"node-sass@0.6.1","dist":{"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-0.6.1.tgz","shasum":"5977f2f99612e552a6ab03503cac4388f0e17b48","size":2390062,"noattachment":false,"integrity":"sha512-WnbsCeniTR3soNazhF75ZZ0p2IpbBSiLbhcooHE9L/EJWkzOx64XBI8JkY4YYJ6y5eayNdMv5jUe9cKM0MVRcw=="},"_from":".","_npmVersion":"1.2.32","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"publish_time":1375218051314,"_hasShrinkwrap":false,"_cnpm_publish_time":1375218051314,"_cnpmcore_publish_time":"2021-12-13T13:26:10.613Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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"},"readmeFilename":"README.md","_id":"node-sass@0.6.0","dist":{"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-0.6.0.tgz","shasum":"db25f784290600dea63a551baadaa4d7c779a428","size":2391263,"noattachment":false,"integrity":"sha512-NK+tar4kz+c0p0yZrG5GtRk+EVMXjgWqi2XeLB3+2qE1/KZH4dg4fdZOFIfNw8rxY4Vx1KM3CR4AQO8dFtcGyw=="},"_npmVersion":"1.1.69","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"publish_time":1375215812043,"_hasShrinkwrap":false,"_cnpm_publish_time":1375215812043,"_cnpmcore_publish_time":"2021-12-13T13:26:12.856Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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"},"readmeFilename":"README.md","_id":"node-sass@0.5.4","dist":{"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-0.5.4.tgz","shasum":"2521d84f9a4a9af8e6f9e129aaec6f3acfae33c1","size":1530538,"noattachment":false,"integrity":"sha512-sj90Ic9WYXriq3E8DPxo4p8ona6ks9b05p/8Jq8t3xJevcUbmASNhZFdEY00AeRKg+DGty59fsQlyxPSSVvE0g=="},"_npmVersion":"1.1.69","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"publish_time":1373664776983,"_hasShrinkwrap":false,"_cnpm_publish_time":1373664776983,"_cnpmcore_publish_time":"2021-12-13T13:26:15.362Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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"},"readmeFilename":"README.md","_id":"node-sass@0.5.3","dist":{"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-0.5.3.tgz","shasum":"06cd1c79800c4e32747604c3367dc8f63083e62a","size":1925095,"noattachment":false,"integrity":"sha512-wBAqRAvAIk54L+LXouUlBTLnh22Cw3NtY8069FpUf3HBT8ekUFbc5kpUu58ITU0nsbrJLb+filOY4/OBhMhs6Q=="},"_npmVersion":"1.1.69","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"publish_time":1373270906682,"_hasShrinkwrap":false,"_cnpm_publish_time":1373270906682,"_cnpmcore_publish_time":"2021-12-13T13:26:17.528Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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"},"readmeFilename":"README.md","_id":"node-sass@0.5.2","dist":{"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-0.5.2.tgz","shasum":"c08990461dd366d280024c0ee12e5037f1cfd208","size":1919571,"noattachment":false,"integrity":"sha512-SRT4nz4hZ1/36DMfz8GCbwEDWWuTes9Ky3fmyiDEawuMFc8FyrpCOfkpc09Yr68yLLJGlIeqWDJulZB+bA/UJA=="},"_from":".","_npmVersion":"1.2.25","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"publish_time":1371032389001,"_hasShrinkwrap":false,"_cnpm_publish_time":1371032389001,"_cnpmcore_publish_time":"2021-12-13T13:26:19.928Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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"},"readmeFilename":"README.md","_id":"node-sass@0.5.1","dist":{"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-0.5.1.tgz","shasum":"e34941c4a7df309cb0ff42345e3f060cc2ceb160","size":1869829,"noattachment":false,"integrity":"sha512-Ky8ElRfQWqAf8LAZoQHtnOLjNGRIP0uomaFjaZ+YyZVMaCXfkXXRoSHsp6XiON6tFUusO9y5hdWRQk3Avk/zVw=="},"_from":".","_npmVersion":"1.2.15","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"publish_time":1369813319970,"_hasShrinkwrap":false,"_cnpm_publish_time":1369813319970,"_cnpmcore_publish_time":"2021-12-13T13:26:22.581Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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"},"readmeFilename":"README.md","_id":"node-sass@0.5.0","dist":{"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-0.5.0.tgz","shasum":"c4f35916c0c5f4df400a67d079c5f1a435533bfb","size":1872905,"noattachment":false,"integrity":"sha512-qUmFpklVJdYxTz0szqz73s3Bvc0zihtMAChp1BcSRkfMB86zmUzV7EkvxK1ps4ty83kridb5tJZX1nU/EV6ooA=="},"_from":".","_npmVersion":"1.2.15","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"publish_time":1368181640255,"_hasShrinkwrap":false,"_cnpm_publish_time":1368181640255,"_cnpmcore_publish_time":"2021-12-13T13:26:25.152Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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"},"readmeFilename":"README.md","_id":"node-sass@0.4.4","dist":{"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-0.4.4.tgz","shasum":"afca7cbb1284476d27da86f9ecdbe264157dbde3","size":1849674,"noattachment":false,"integrity":"sha512-+xcEzaDLpJoDeA7kcOEabcjYHdhGoIL6lH+6Zg8NoGWIwDpOTXRMvulJ/qd6/72phYHU3utb8Ra2z0gQtM5RFw=="},"_from":".","_npmVersion":"1.2.15","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"publish_time":1367101625192,"_hasShrinkwrap":false,"_cnpm_publish_time":1367101625192,"_cnpmcore_publish_time":"2021-12-13T13:26:27.506Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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"},"readmeFilename":"README.md","_id":"node-sass@0.4.3","dist":{"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-0.4.3.tgz","shasum":"2061041cd770f33fecb64929dd81aa9a84e2f1a5","size":1795537,"noattachment":false,"integrity":"sha512-7KDytxfSbtUjXXjGCef9soqqD//a17rLs3+vJ2unik1SVnVRu2SABtdZ2mOdBQjlmmgQE1qXg+VYmqKDAGoSEQ=="},"_from":".","_npmVersion":"1.2.15","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"publish_time":1366621998917,"_hasShrinkwrap":false,"_cnpm_publish_time":1366621998917,"_cnpmcore_publish_time":"2021-12-13T13:26:29.922Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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"},"readmeFilename":"README.md","_id":"node-sass@0.4.2","dist":{"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-0.4.2.tgz","shasum":"a57ec1022927a884eaa0546078142162c58f1eb3","size":1778238,"noattachment":false,"integrity":"sha512-Kih2HNnRo0T8dysrTOZETEsss9nwjTVK5kUY4KwQ0YlbZ6liq6muY1zz8Xvu20kJk7KPNO5leXIgYB2fQesblA=="},"_from":".","_npmVersion":"1.2.14","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"publish_time":1366375741523,"_hasShrinkwrap":false,"_cnpm_publish_time":1366375741523,"_cnpmcore_publish_time":"2021-12-13T13:26:32.174Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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"},"readmeFilename":"README.md","_id":"node-sass@0.4.1","dist":{"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-0.4.1.tgz","shasum":"4ec8b9f8743bb33ad242f00535020cc44feed2a8","size":1778270,"noattachment":false,"integrity":"sha512-uagwIzKFfcEt2J1ldLgUeRzgGaglVcgz4WVx9hPBoE1ho/+uH2JZgfscHpw4sAqkC0GnMg0+KbmI+aP5C5OStQ=="},"_npmVersion":"1.1.65","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"publish_time":1366068520016,"_hasShrinkwrap":false,"_cnpm_publish_time":1366068520016,"_cnpmcore_publish_time":"2021-12-13T13:26:34.791Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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"},"readmeFilename":"README.md","_id":"node-sass@0.4.0","dist":{"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-0.4.0.tgz","shasum":"77552ac8a70fec45defad37be0f47ca59ee27bad","size":1777099,"noattachment":false,"integrity":"sha512-5FDS+38/IgTxnN3S1FfVTWxSRqSESebSLkjC7dzogzSho6ia5+KONXBlH0852Dhn8bow8TGc7GZDGTVW+6HWBA=="},"_npmVersion":"1.1.65","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"publish_time":1364490612248,"_hasShrinkwrap":false,"_cnpm_publish_time":1364490612248,"_cnpmcore_publish_time":"2021-12-13T13:26:37.112Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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"},"readmeFilename":"README.md","_id":"node-sass@0.3.0","dist":{"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-0.3.0.tgz","shasum":"58c71e1d34571b60e30f0cb2d9d9bda2147e783a","size":1583709,"noattachment":false,"integrity":"sha512-FCK9QNXDX5oLDNnyOFR86Urlf5xMKAHJOp1hJ7fgtW+T4P/3TqnLXiojZu1DnKZSVcFYL8RiphdOzrvf/RvmWg=="},"_npmVersion":"1.1.65","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"publish_time":1359926798510,"_hasShrinkwrap":false,"_cnpm_publish_time":1359926798510,"_cnpmcore_publish_time":"2021-12-13T13:26:39.476Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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":{},"readmeFilename":"README.md","_id":"node-sass@0.2.6","dist":{"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-0.2.6.tgz","shasum":"f53068c391b57149fbf113d6e074de71e73273b4","size":1571869,"noattachment":false,"integrity":"sha512-WuiRbXU4Cg1u/+8PvwT9JQBvxvlOEI4L6R3E1S8Wd+OpB+8DO2wKSrtdyte+qAJOiccn+MGk1qzOe9RE3dtauQ=="},"_npmVersion":"1.1.65","_npmUser":{"name":"andrewnez","email":"andrewnez@gmail.com"},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"publish_time":1357988006399,"_hasShrinkwrap":false,"_cnpm_publish_time":1357988006399,"_cnpmcore_publish_time":"2021-12-13T13:26:42.014Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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":{"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-0.2.5.tgz","shasum":"98132aea0d9c99c893e32c24fcd5dbb1ba5fd715","size":1296545,"noattachment":false,"integrity":"sha512-Gso33pd7Gd02zxd7Gf89gtd4Ju9w/jk8XDrGCCfw01irP+NU63lvHi+C2SBKme5id5u1PzS3MlUwhup3sV3Qww=="},"_npmVersion":"1.1.62","_npmUser":{"name":"deanmao","email":"deanmao@gmail.com"},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"publish_time":1351760707591,"_hasShrinkwrap":false,"_cnpm_publish_time":1351760707591,"_cnpmcore_publish_time":"2021-12-13T13:26:44.910Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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":{"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-0.2.4.tgz","shasum":"7fc5bf5554868eb9d81b7b6d565c8549b73232f3","size":841937,"noattachment":false,"integrity":"sha512-wSFVg/AzZ9eD4QTXxlvXZEkX9rH/isJhfdgYtQwK4AXvGNRmhe1iUZ3LJ9kH8vjstkfGI+VLLhf+A0Y4GnNi4w=="},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"publish_time":1346012199035,"_hasShrinkwrap":false,"_cnpm_publish_time":1346012199035,"_cnpmcore_publish_time":"2021-12-13T13:26:47.272Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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":{"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-0.2.3.tgz","shasum":"1da343a2980a97ac9f728a8e028efb7796acd58d","size":1648154,"noattachment":false,"integrity":"sha512-6/0ZK/uU3DOMIvw010+FS68gDvURoK0T9179/4DNN+F+/jd+72+v+AE0PoykMAZJgUhlSo+F0o/BUdeLzrItBg=="},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"publish_time":1345722811647,"_hasShrinkwrap":false,"_cnpm_publish_time":1345722811647,"_cnpmcore_publish_time":"2021-12-13T13:26:49.557Z","deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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":{"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-0.2.2.tgz","shasum":"2fe99dc7b93221496c426aeb4a7abbb89365d802","size":1481021,"noattachment":false,"integrity":"sha512-vbmiSz9MQkAio6KuYzt9AeW5VMz5p8Nsal0Uq6JEDTw8zeqaIZQepuf7Xpr4vhmupObzlavjPR3o6cnyFWAXmQ=="},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"publish_time":1341768498030,"_hasShrinkwrap":false,"_cnpm_publish_time":1341768498030,"_cnpmcore_publish_time":"2021-12-13T13:26:52.365Z","deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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":{"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-0.2.1.tgz","shasum":"4b37f9eb85721b11dde405ff52ce94ac3a14827f","size":325065,"noattachment":false,"integrity":"sha512-e7fxadr6loSTZ9wwOC1WcMbGCYdJ//gbhoAamLHDF/4cnLaXfATxkTK5d/bDZz6nKq6fmNvGgyRxnMlYPMbeMw=="},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"publish_time":1339966220200,"_hasShrinkwrap":false,"_cnpm_publish_time":1339966220200,"_cnpmcore_publish_time":"2021-12-13T13:26:54.919Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"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":{"tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-0.2.0.tgz","shasum":"5d45a2b9586d78439e4bf97f0d69f988f004c947","size":324832,"noattachment":false,"integrity":"sha512-wnoNOwtrbW1fNCeoduCvWJFVvWfFRBGWFgv3trayarKsqkNBaQSqa1UZ+d55kx0CFt1wk3qYk0QrTCe/TQe7YA=="},"maintainers":[{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"saperski","email":"npm@saper.info"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"directories":{},"publish_time":1339530585950,"_hasShrinkwrap":false,"_cnpm_publish_time":1339530585950,"_cnpmcore_publish_time":"2021-12-13T13:26:56.951Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"7.0.1":{"name":"node-sass","version":"7.0.1","libsass":"3.5.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":">=12"},"main":"lib/index.js","nodeSassConfig":{"binarySite":"https://github.com/sass/node-sass/releases/download"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"nyc npm run test","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","prepublishOnly ":"scripts/prepublish.js"},"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"async-foreach":"^0.1.3","chalk":"^4.1.2","cross-spawn":"^7.0.3","gaze":"^1.0.0","get-stdin":"^4.0.1","glob":"^7.0.3","lodash":"^4.17.15","meow":"^9.0.0","nan":"^2.13.2","node-gyp":"^8.4.1","npmlog":"^5.0.0","request":"^2.88.0","sass-graph":"4.0.0","stdout-stream":"^1.4.0","true-case-path":"^1.0.2"},"devDependencies":{"eslint":"^8.0.0","fs-extra":"^10.0.0","mocha":"^9.0.1","nyc":"^15.1.0","rimraf":"^3.0.2","unique-temp-dir":"^1.0.0"},"gitHead":"99242d756d746c6f3c01f39ff081b08f979d3975","_id":"node-sass@7.0.1","_nodeVersion":"11.15.0","_npmVersion":"6.7.0","dist":{"integrity":"sha512-uMy+Xt29NlqKCFdFRZyXKOTqGt+QaKHexv9STj2WeLottnlqZEEWx6Bj0MXNthmFRRdM/YwyNo/8Tr46TOM0jQ==","shasum":"ad4f6bc663de8acc0a9360db39165a1e2620aa72","tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-7.0.1.tgz","fileCount":340,"unpackedSize":4651949,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhyV1eCRA9TVsSAnZWagAALtYQAKTnnv4RZn/sxBP7DwVK\nJQXMgW4w5to3MQHwRGKQXcdFyYDEAuR+jHKccLBLAl/jiIjkDyDhF6VTVFYB\n7rFwryio91mWVZLBl9OMrtnqALJjFDQ+atoOqu0ML6LlcIg3exrgoeNWMxvb\nI7zgqQR63MZsK058E5fokDVX1fVj+j2mwss2FfDUKgArEyGBWPTPzy/VHwOJ\nBp603hZ0vO3X7daDQAFyoKX12gQ9h8CJGvuJvb7ittgvfrIU49/U9atgSJuH\nnQ/vchJESHSpu5PGosCOs6DIuJPmtLr8fqmNrM5Z4OtchbRE2nHQc7NaTgol\nQaD1XOAbrk1sCZGq3eEvr1Fmbz5sfQzqCBDtYP1KgT4A/tEAtA8EySNXRmNq\npyUZHsQGL+Z6c1x8bkftTIweFl/JARfiQMt3o9HY8JJZsDIYKZVONFXP6lNt\nLWACKDDLahDe8P1kBBGg/eKGvK3aT6VmVUPa8kr5u2LZE18K0JC59FRb5Ffj\ny8KYKzhS2ohjJ/t68acHfslO1bcn/PopkgZi3QaFCYgR97zLsGey5rbLIkd4\ndPfNgVCf867t5ZunQCgBndWnWZec4FUNjHA+QpY28UFRFwdyoJf5f0QnRwtb\namoSFf/SorSddHLYn9fTSAejMfppLIHnjXR/YUz4YqzpYK56raHmwf+S+fI8\nkTDo\r\n=nTyC\r\n-----END PGP SIGNATURE-----\r\n","size":1288553},"_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"directories":{},"maintainers":[{"name":"saperski","email":"npm@saper.info"},{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/node-sass_7.0.1_1640586590242_0.4714733956211765"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2021-12-28T01:36:39.147Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"7.0.2":{"name":"node-sass","version":"7.0.2","libsass":"3.5.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":">=14"},"main":"lib/index.js","nodeSassConfig":{"binarySite":"https://github.com/sass/node-sass/releases/download"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"nyc npm run test","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","prepublishOnly ":"scripts/prepublish.js"},"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"async-foreach":"^0.1.3","chalk":"^4.1.2","cross-spawn":"^7.0.3","gaze":"^1.0.0","get-stdin":"^4.0.1","glob":"^7.0.3","lodash":"^4.17.15","make-fetch-happen":"^10.0.4","meow":"^9.0.0","nan":"^2.13.2","node-gyp":"^9.0.0","sass-graph":"^4.0.1","stdout-stream":"^1.4.0","true-case-path":"^2.2.1"},"devDependencies":{"eslint":"^8.0.0","fs-extra":"^10.0.0","mocha":"^9.0.1","nyc":"^15.1.0","rimraf":"^3.0.2","unique-temp-dir":"^1.0.0"},"gitHead":"3b556c1c9a79e87fd54fdaa9a1a18741a7616025","_id":"node-sass@7.0.2","_nodeVersion":"11.15.0","_npmVersion":"6.7.0","dist":{"integrity":"sha512-C00r842fX4A7KMqlL0hHex9mQA5L/JAiyqtNhr4/D8fEVBT4VfFJbieufez+Bv1UrrN/uqaZRXMZ2yG4PZ8HqQ==","shasum":"9022e59a38960cb1b9fa57751bac026fef7c41fe","tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-7.0.2.tgz","fileCount":340,"unpackedSize":4650187,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIE5AuCJVCVQRMh1g8dJkJNo0qX544R5zMjtgQ6hxSBymAiAp7AKAepDEamphlrm+24hvMkXeHv4Z87ekY+XQ5SujBg=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjGVSKACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmqvrw//efGod9Q0WCocOx1ZNQowdQnpLbdNZtmMQbXdQRO5kP9Eqcwu\r\nT29lKVwBldRr1woJQBajyha8+3DfuLUPvVhmjtXii01rdQ3zM6k6yaxse6RM\r\nAk9kiwsnPYuAu5RkWJUVkRtgLBzcXcOe5DIPprAvTGdPjRhbDTwDn/f/WASZ\r\ngp4ke8jyTReo7ymp0LefgvfXeF3aTXPnmIAUaoibov9NcMbL9I3FEWRrHfAb\r\nn0UjayMUrUBBjoeN5/Wsxw4sK+Z1WYK+K+v60GLlBt3ONGTif9wErFWqlW9y\r\nDofFaiQasPs5QMnPBCxkDw/OOjH5ZbJJPLj3KMJewnWjM6hphr3EdcxFsnaB\r\n8GSnRJr24O39T9HMbFqRuKxDxDyoksgD4+cqf7dSmi5NMlcgs2IbZqpGg2ct\r\nTyP1We8w42N6OXDyuNOpgDYhp5OU6rJlzHNqOQZTfU9L3uUKb947ab3gN/L/\r\nchWZR+9+w+7p1KCZ8wL/ZqIoJ4bGgHpwUBDAUKMzHGTCWWBFW3ubFvlf9pUm\r\nLjBvjNHi69k3yW9AqnaewbNP5DMObnxy84DNd95IALmoe+6C5IvaKstex2iI\r\nTe19pO0yceL95vYbw3WXzYU6R5gHqqgIASKFCbK0e8Zawdt5glynfMNIv0n5\r\np3jM1mfH1E/gEG0RnLT33ZDrrZh2piUb9OE=\r\n=HoX8\r\n-----END PGP SIGNATURE-----\r\n","size":1288032},"_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"directories":{},"maintainers":[{"name":"saperski","email":"npm@saper.info"},{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/node-sass_7.0.2_1662604425619_0.30348803979319006"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-09-08T02:34:06.155Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"7.0.3":{"name":"node-sass","version":"7.0.3","libsass":"3.5.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":">=12"},"main":"lib/index.js","nodeSassConfig":{"binarySite":"https://github.com/sass/node-sass/releases/download"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"nyc npm run test","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","prepublishOnly ":"scripts/prepublish.js"},"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"async-foreach":"^0.1.3","chalk":"^4.1.2","cross-spawn":"^7.0.3","gaze":"^1.0.0","get-stdin":"^4.0.1","glob":"^7.0.3","lodash":"^4.17.15","meow":"^9.0.0","nan":"^2.13.2","node-gyp":"^8.4.1","npmlog":"^5.0.0","request":"^2.88.0","sass-graph":"^4.0.1","stdout-stream":"^1.4.0","true-case-path":"^1.0.2"},"devDependencies":{"eslint":"^8.0.0","fs-extra":"^10.0.0","mocha":"^9.0.1","nyc":"^15.1.0","rimraf":"^3.0.2","unique-temp-dir":"^1.0.0"},"gitHead":"73869ea88f99bbede2575c5e74b7f21da1b50f33","_id":"node-sass@7.0.3","_nodeVersion":"16.1.0","_npmVersion":"7.11.2","dist":{"integrity":"sha512-8MIlsY/4dXUkJDYht9pIWBhMil3uHmE8b/AdJPjmFn1nBx9X9BASzfzmsCy0uCCb8eqI3SYYzVPDswWqSx7gjw==","shasum":"7620bcd5559c2bf125c4fbb9087ba75cd2df2ab2","tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-7.0.3.tgz","fileCount":337,"unpackedSize":4640242,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBq0RMHhpiiAzvqh39qqfUKU35yqgMzCz50mdrgjlMgQAiAREsb6aYTTik7K/TUTMXg7LMoemssZyjDIZWkejGXjBA=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjGanMACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpP9g//fbEUa2He6XMCXIvW1LzLGiHiggtp0KFpwAql9hL3ecqp1uf1\r\ncdUQmCN0FAlIltGnaYzO+/7K73ePB6NktICOqIDGoMrpyogrG8qWVt001mPI\r\n/7Zdb4HXKrEek/2iNCnby+c3S0CnDDeASMrGWKHCjoD/KKCn7ItYwqZnyXJC\r\ngZ7QjThboqS3yvdh7fUJ1+oZxRERydrnWCY4DoR3Ay7My10an/MQPcDO6bPo\r\nXDC0BpWHWrV9sB5MJlmaCeu+vxrF83RUXUxGUWwUBCYIDIe3tEDMBi2VDJtu\r\n6sDYjc0fEb6OCuqxNtcwOj5mQdg2r+C2YrFy3keTC4Pqd7/Tqfn/rOS3BG+6\r\nSfD69oD104ibtIwoGSP7F8Y3WGyZVyxni2pVikZ05OarpxR8nObsxRH9MURz\r\ncWnVkZEXqhqyOkOpfKC1rNTvD8DywyPSzCVbnTVH0oGTJjyBdHhtmZf9Wj2a\r\nLGu3AMRkLpmhOgXasrnwx1kyX5FpfbzoP8juq121M/0Wq964o4ptqXhdcESK\r\nYS+7/3Jo0jt90a3t3Pndei8Ya4pYcCZBZ3uJCu08jPmTMHr3YpRBWCn4rs2u\r\nH8n7b/UoHeQelI0Dgg2ge5S8JAk8ivJ7AXOpX9uGVEYH8FaGW+1eRwHK5XV2\r\n5ji4oFIc49HU7xJDvxLZD4R73gEJ38oZXsM=\r\n=WG6T\r\n-----END PGP SIGNATURE-----\r\n","size":1285685},"_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"directories":{},"maintainers":[{"name":"saperski","email":"npm@saper.info"},{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/node-sass_7.0.3_1662626251891_0.5142335723364908"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-09-08T08:52:50.761Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"8.0.0":{"name":"node-sass","version":"8.0.0","libsass":"3.5.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":">=14"},"main":"lib/index.js","nodeSassConfig":{"binarySite":"https://github.com/sass/node-sass/releases/download"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"nyc npm run test","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","prepublishOnly ":"scripts/prepublish.js"},"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"async-foreach":"^0.1.3","chalk":"^4.1.2","cross-spawn":"^7.0.3","gaze":"^1.0.0","get-stdin":"^4.0.1","glob":"^7.0.3","lodash":"^4.17.15","make-fetch-happen":"^10.0.4","meow":"^9.0.0","nan":"^2.17.0","node-gyp":"^8.4.1","sass-graph":"^4.0.1","stdout-stream":"^1.4.0","true-case-path":"^2.2.1"},"devDependencies":{"eslint":"^8.0.0","fs-extra":"^10.0.0","mocha":"^9.0.1","nyc":"^15.1.0","rimraf":"^3.0.2","unique-temp-dir":"^1.0.0"},"gitHead":"8edbedd500ccae73b0e33873c202108f60b6c15b","_id":"node-sass@8.0.0","_nodeVersion":"19.0.1","_npmVersion":"8.19.2","dist":{"integrity":"sha512-jPzqCF2/e6JXw6r3VxfIqYc8tKQdkj5Z/BDATYyG6FL6b/LuYBNFGFVhus0mthcWifHm/JzBpKAd+3eXsWeK/A==","shasum":"c80d52148db0ce88610bcf1e1d112027393c13e1","tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-8.0.0.tgz","fileCount":338,"unpackedSize":10233790,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIB6KSvYH0DU5cVTCk/RT7M3QA0qVC0+k0AsZvSkEZYD7AiBfiUm5Pp2OZ3vBuqqcJmPMJj7EfEm3AC6qHhx4Ftki+Q=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJja37BACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpLqg/8CdIFsMAzdIwvkMg2qPYUp0Y///MIpa10fL/ce1g67WESkmxh\r\nnHYngLStAhxubs4OBcskGoIX1SURswxyYejwuEwfw5XW8tgqXkS+Mx22D6qE\r\nJQM5NINsKQs7UJSkfmZkTJw3CSe6KZ5456RZX2DOUO6oKPlt/+wSAQxwaCjT\r\njnEvPvo9x9cxStz9tTAXYpJNBxsvdr4Qft1lUHps1dos3o/V0DmX5uPb0TL5\r\n1+rXB0CXs9zXHVQiUmzDTRLeAtlCuMk/r9pXoEAmohBW5OXckyTU/Jokd0eJ\r\n/2Q5zPTK1N3g33V9lk/OOipfS9WwB5gVCadCCjRvqtVjK9V85EnTufWjPqBm\r\nTkjD34oLQ2dVzBRdwJhtali+1HhHfuTMhGhY4XJ3P9ua8+i4ZoR1k/r6r2IN\r\nGwWdB8jSLeE+87vP6rwGxolk6oSlyfrHXX4gi+Z1OP6ctyuXpqkuID3F4f/x\r\n0rQF2KexVWKE6iJIz7Y9GnYfuG5zbzwsALzpkqTZLCgckgJK1GfpDguFpH8Q\r\nAo6+X8aGsFTP2va1twtJsYryhWbsFxlPyXeFmmHq7NfMntiAwzGAMvFoa+8g\r\nieJkbuszAOlxg+bQh6/sr3sPZlcXlXrudXc2qX8Q4+gQXeLnOaqV/MTvefOU\r\nOO11fRSPr0bslCYsR1DPj8gUt/Ygno8DBqs=\r\n=hlzj\r\n-----END PGP SIGNATURE-----\r\n","size":3073358},"_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"directories":{},"maintainers":[{"name":"saperski","email":"npm@saper.info"},{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/node-sass_8.0.0_1667989185160_0.653177174187533"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-11-09T10:50:37.536Z","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."},"9.0.0":{"name":"node-sass","version":"9.0.0","libsass":"3.5.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":">=16"},"main":"lib/index.js","nodeSassConfig":{"binarySite":"https://github.com/sass/node-sass/releases/download"},"bin":{"node-sass":"bin/node-sass"},"gypfile":true,"scripts":{"coverage":"nyc npm run test","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","prepublishOnly ":"scripts/prepublish.js"},"keywords":["css","libsass","preprocessor","sass","scss","style"],"dependencies":{"async-foreach":"^0.1.3","chalk":"^4.1.2","cross-spawn":"^7.0.3","gaze":"^1.0.0","get-stdin":"^4.0.1","glob":"^7.0.3","lodash":"^4.17.15","make-fetch-happen":"^10.0.4","meow":"^9.0.0","nan":"^2.17.0","node-gyp":"^8.4.1","sass-graph":"^4.0.1","stdout-stream":"^1.4.0","true-case-path":"^2.2.1"},"devDependencies":{"eslint":"^8.0.0","fs-extra":"^10.0.0","mocha":"^9.0.1","nyc":"^15.1.0","rimraf":"^3.0.2","unique-temp-dir":"^1.0.0"},"gitHead":"87f38998da059d13a87a7fc9f3d29d5728128e2c","_id":"node-sass@9.0.0","_nodeVersion":"20.2.0","_npmVersion":"9.6.6","dist":{"integrity":"sha512-yltEuuLrfH6M7Pq2gAj5B6Zm7m+gdZoG66wTqG6mIZV/zijq3M2OO2HswtT6oBspPyFhHDcaxWpsBm0fRNDHPg==","shasum":"c21cd17bd9379c2d09362b3baf2cbf089bce08ed","tarball":"https://registry.npmmirror.com/node-sass/-/node-sass-9.0.0.tgz","fileCount":334,"unpackedSize":1833350,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCFTfdHsbRCVtMIG6T/Hv3zymYjV6tnBGtq+WTSItZDAgIhANirFtvgeXiCDpmSXrS6qZVdSvwGiChKLO4SMy1OO2V5"}],"size":390705},"_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"directories":{},"maintainers":[{"name":"saperski","email":"npm@saper.info"},{"name":"nschonni","email":"nschonni@gmail.com"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/node-sass_9.0.0_1684562621870_0.9154547288462234"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-05-20T06:03:42.097Z","publish_time":1684562622097,"_source_registry_name":"default","hasInstallScript":true,"deprecated":"Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead."}},"bugs":{"url":"https://github.com/sass/node-sass/issues"},"homepage":"https://github.com/sass/node-sass","keywords":["css","libsass","preprocessor","sass","scss","style"],"repository":{"type":"git","url":"git+https://github.com/sass/node-sass.git"},"_source_registry_name":"default"}