{"maintainers":[{"name":"dlmanning","email":"dlmanning@me.com"},{"name":"snugug","email":"sam@snug.ug"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"keywords":["gulpplugin","sass","gulp"],"dist-tags":{"latest":"3.1.0","beta":"2.3.0-beta.1"},"author":{"name":"David Manning"},"description":"Gulp plugin for sass","readme":"# gulp-sass [![Build Status](https://travis-ci.org/dlmanning/gulp-sass.svg?branch=master)](https://travis-ci.org/dlmanning/gulp-sass) [![Join the chat at https://gitter.im/dlmanning/gulp-sass](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/dlmanning/gulp-sass?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [![npm version](https://badge.fury.io/js/gulp-sass.svg)](http://badge.fury.io/js/gulp-sass)\n\nSass plugin for [Gulp](https://github.com/gulpjs/gulp).\n\n**_Before filing an issue, please make sure you have [Updated to the latest Gulp Sass](https://github.com/dlmanning/gulp-sass/wiki/Update-to-the-latest-Gulp-Sass) and have gone through our [Common Issues and Their Fixes](https://github.com/dlmanning/gulp-sass/wiki/Common-Issues-and-Their-Fixes) section._**\n\n# Install\n\n```\nnpm install gulp-sass --save-dev\n```\n\n# Basic Usage\n\nSomething like this will compile your Sass files:\n\n```javascript\n'use strict';\n\nvar gulp = require('gulp');\nvar sass = require('gulp-sass');\n\ngulp.task('sass', function () {\n  return gulp.src('./sass/**/*.scss')\n    .pipe(sass().on('error', sass.logError))\n    .pipe(gulp.dest('./css'));\n});\n\ngulp.task('sass:watch', function () {\n  gulp.watch('./sass/**/*.scss', ['sass']);\n});\n```\n\nYou can also compile synchronously, doing something like this:\n\n```javascript\n'use strict';\n\nvar gulp = require('gulp');\nvar sass = require('gulp-sass');\n\ngulp.task('sass', function () {\n  return gulp.src('./sass/**/*.scss')\n    .pipe(sass.sync().on('error', sass.logError))\n    .pipe(gulp.dest('./css'));\n});\n\ngulp.task('sass:watch', function () {\n  gulp.watch('./sass/**/*.scss', ['sass']);\n});\n```\n\n## Options\n\nPass in options just like you would for [`node-sass`](https://github.com/sass/node-sass#options); they will be passed along just as if you were using `node-sass`. Except for the `data` option which is used by gulp-sass internally. Using the `file` option is also unsupported and results in undefined behaviour that may change without notice.  \n\nFor example:\n\n```javascript\ngulp.task('sass', function () {\n return gulp.src('./sass/**/*.scss')\n   .pipe(sass({outputStyle: 'compressed'}).on('error', sass.logError))\n   .pipe(gulp.dest('./css'));\n});\n```\n\n## Source Maps\n\n`gulp-sass` can be used in tandem with [gulp-sourcemaps](https://github.com/floridoo/gulp-sourcemaps) to generate source maps for the Sass to CSS compilation. You will need to initialize [gulp-sourcemaps](https://github.com/floridoo/gulp-sourcemaps) prior to running `gulp-sass` and write the source maps after.\n\n```javascript\nvar sourcemaps = require('gulp-sourcemaps');\n\ngulp.task('sass', function () {\n return gulp.src('./sass/**/*.scss')\n  .pipe(sourcemaps.init())\n  .pipe(sass().on('error', sass.logError))\n  .pipe(sourcemaps.write())\n  .pipe(gulp.dest('./css'));\n});\n```\n\nBy default, [gulp-sourcemaps](https://github.com/floridoo/gulp-sourcemaps) writes the source maps inline in the compiled CSS files. To write them to a separate file, specify a path relative to the `gulp.dest()` destination in the `sourcemaps.write()` function.\n\n```javascript\nvar sourcemaps = require('gulp-sourcemaps');\ngulp.task('sass', function () {\n return gulp.src('./sass/**/*.scss')\n  .pipe(sourcemaps.init())\n  .pipe(sass().on('error', sass.logError))\n  .pipe(sourcemaps.write('./maps'))\n  .pipe(gulp.dest('./css'));\n});\n```\n\n# Issues\n\n`gulp-sass` is a very light-weight wrapper around [`node-sass`](https://github.com/sass/node-sass), which in turn is a Node binding for [`libsass`](https://github.com/sass/libsass), which in turn is a port of [`Sass`](https://github.com/sass/sass). Because of this, the issue you're having likely isn't a `gulp-sass` issue, but an issue with one of those three projects.\n\nIf you have a feature request/question how Sass works/concerns on how your Sass gets compiled/errors in your compiling, it's likely a `libsass` or `Sass` issue and you should file your issue with one of those projects.\n\nIf you're having problems with the options you're passing in, it's likely a `node-sass` or `libsass` issue and you should file your issue with one of those projects.\n\nWe may, in the course of resolving issues, direct you to one of these other projects. If we do so, please follow up by searching that project's issue queue (both open and closed) for your problem and, if it doesn't exist, filing an issue with them.\n","repository":{"type":"git","url":"git://github.com/dlmanning/gulp-sass.git"},"users":{"lmartins":true,"green_goo":true,"thasmo":true,"dysonchan":true,"takethefire":true,"levisl176":true,"tymo":true,"mikend":true,"lonekorean":true,"bigdawggi":true,"korthjp17":true,"jitendravyas":true,"nguyenlamzx":true,"jmrv92":true,"jakobgrannas":true,"tamlyn":true,"atriix":true,"jbdelhommeau":true,"hil":true,"rafx":true,"isaacalves":true,"barinbritva":true,"andreyantipov":true,"stooboo":true,"gluten":true,"jehoshua02":true,"princemaple":true,"rafaell-lycan":true,"crook":true,"pythondave":true,"majorbarberry":true,"tedyhy":true,"sergeif":true,"markmiro":true,"kunl":true,"iamjoechiang":true,"enuobear":true,"joaocunha":true,"andamira":true,"markthethomas":true,"xueqingxiao":true,"ignatovmsu":true,"yodairish":true,"yanndinendal":true,"dmarsh":true,"drewigg":true,"gussyboy81":true,"webit":true,"oplopop":true,"riszw":true,"virtyaluk":true,"jream":true,"knugen":true,"animezis":true,"phoenix-xsy":true,"baskaal":true,"itonyyo":true,"adammench":true,"crowbar":true,"hackensack":true,"venkateshwar":true,"lucasneves":true,"parkerproject":true,"mpcjazz":true,"oleaasen":true,"alemohamad":true,"qbylucky":true,"dominikkucharski":true,"chihiro.urabe":true,"d4nyll":true,"russiansoon":true,"isyara":true,"arahnoid":true,"wangnan0610":true,"owanturist":true,"flayks":true,"mahmoud":true,"rjv":true,"chrisjordanme":true,"danrootdesign":true,"laravelfanatic":true,"tmaciej":true,"piecioshka":true,"ssartell":true,"jeffersonwilliammachado":true,"jabbrwcky":true,"drewnull":true,"travm":true,"rokt33r":true,"michaelmeinhart":true,"abrahamwilliams":true,"tzsiga":true,"dennykuo":true,"mrtwister":true,"lmhs":true,"boluge":true,"jovib":true,"mezeitamas":true,"amaxwell01":true,"anthonyberan":true,"skrueger":true,"leonardorb":true,"ilkanimal":true,"thatk":true,"inflowmotion":true,"temoto-kun":true,"rushone":true,"rdecamps":true,"langylang":true,"johnym":true,"monkeykode":true,"labstersrak":true,"maskedcoder":true,"t1st3":true,"airani":true,"ifeature":true,"fotooo":true,"avdons":true,"ben_mitchel":true,"mcharton":true,"mat3o":true,"okmogwai":true,"nickpfisterer":true,"utwo":true,"klimnikita":true,"kurre":true,"jordandunn":true,"huimin":true,"xueboren":true,"dskecse":true,"davidnyhuis":true,"edloidas":true,"mjurincic":true,"maxime1992":true,"bpatel":true,"jerkovicl":true,"ujwal_bharat":true,"robsoer":true,"flynntsc":true,"krabello":true,"kparkov":true,"crysp":true,"botero.89":true,"boterom89":true,"adevade":true,"thierrymarianne":true,"afelicioni":true,"4ster":true,"jyounce":true,"joxe":true,"paroczi":true,"davidhellmann":true,"evan2x":true,"highflying":true,"miroamarillo":true,"crazyjingling":true,"raisiqueira":true,"jonathan.soifer":true,"affiction":true,"ldinglding":true,"zplus":true,"pandao":true,"hustliu":true,"fassetar":true,"bits":true,"marcelohmdias":true,"lydiadugger":true,"tommyzzm":true,"sadsenpai":true,"n370":true,"kelsen":true,"laviyatziv":true,"gary_johnson":true,"krawster":true,"runningtalus":true,"fdeneux":true,"jaminroe":true,"ericwbailey":true,"bebaps":true,"fadihania":true,"kaktusv6":true,"bnu":true,"viweei":true,"antixrist":true,"mehrdaad":true,"nikitka_m":true,"rsmccloskey":true,"keberox":true,"mingyi":true,"seu":true,"weiduolee":true,"bpolonia":true,"dengo":true,"cfleschhut":true,"lelivero":true,"mayukojpn":true,"joshukraine":true,"hbtb":true,"seleckis":true,"ridermansb":true,"acterce":true,"nsokilldwnload":true,"igorissen":true,"thynado":true,"bruinebeer":true,"parnick":true,"porreh":true,"shaddyhm":true,"koutak":true,"soulchainer":true,"vvilardell":true,"brpaz":true,"rplittle":true,"martijndevalk":true,"daam":true,"sonar":true,"vrfrnco":true,"zlatip":true,"phritolay":true,"highlanderkev":true,"jchrng":true,"eedaihee":true,"landy2014":true,"jytu":true,"alejcerro":true,"daimonfx":true,"mattweb":true,"kevinrwing":true,"ajduke":true,"illuminator":true,"filipve":true,"ristostevcev":true,"joannerpena":true,"monjer":true,"chuot":true,"bob.cody":true,"ramono":true,"richardcfelix":true,"zbreakstone":true,"vividyellow4":true,"tdmalone":true,"pawlikdoc":true,"jyd119":true,"hypo9eal":true,"sanketss84":true,"artjacob":true,"stalker":true,"kannier":true,"mnew":true,"fanus":true,"kirusha":true,"dnik":true,"kazuyahama":true,"andrew_palchykovsky":true,"tikal13":true,"grin_zhou":true,"peunzhang":true,"abdihaikal":true,"zhenzhuquan":true,"donkapetra":true,"kuklo":true,"dennisli87":true,"amandavianna":true,"tin-lek":true,"downtempa":true,"biasso":true,"joelwallis":true,"sternelee":true,"escapeimagery":true,"giovannipds":true,"bethrezen":true,"stretchgz":true,"rubiadias":true,"danylomoraes":true,"sam16":true,"nanotime":true,"alche_xie":true,"ngrenwalt":true,"diegosoaresdev":true,"pico":true,"purushoth":true,"glebec":true,"kasumi":true,"cilerler":true,"griname":true,"maximtomsky":true,"gnhaku":true,"alantsuis":true,"pablo.tavarez":true,"hpiirainen":true,"mamadoo":true,"justaddcl":true,"marcobiedermann":true,"vibesharing":true,"sesamechee":true,"djviolin":true,"mluberry":true,"hongz1125":true,"vincentritter":true,"dwilson":true,"sushiilbharti":true,"acoyang":true,"geertdd":true,"ookangzheng":true,"bntzio":true,"guanfeng":true,"xiaochao":true,"mobeicaoyuan":true,"vchouhan":true,"evandrosevergnini":true,"cognivator":true,"fotonmoton":true,"rhinosaurus":true,"nicholasgame":true,"orlenka":true,"maxbizbd":true,"umidjons":true,"bitmill":true,"tmurngon":true,"nawaragfx":true,"alexander.katkov":true,"johnend":true,"fbnlsr":true,"ognjen.jevremovic":true,"mhaidarh":true,"ezeikel":true,"troygizzi":true,"dockawash":true,"dylanh724":true,"agiko":true,"larnera":true,"ageofsys":true,"luiscauro":true,"sabatesduran":true,"kelicia":true,"sisti86":true,"alanho":true,"dzhou777":true,"nickolas_sv":true,"sushiifox":true,"egodzb":true,"mkstix6":true,"lizhiqiang":true,"alexvoloshchenko":true,"kiandrajayne":true,"eswat2":true,"bapinney":true,"leowoods":true,"v.sapigura":true,"deneboulton":true,"zooks":true,"stone-jin":true,"albert_rar":true,"baraunaluciano":true,"tiagobraga":true,"axelrindle":true,"nml":true,"ungurys":true,"evovilol":true,"gwydionismyhero":true,"saoskia":true,"raschdiaz":true,"alexdevero":true,"ernestos":true,"whatsamoorefor":true,"zalemmmm":true,"sensaetions":true,"binaryjim":true,"lorza":true,"mskjp":true,"hafizshehbazali":true,"mtsplinter":true,"shawnfan":true,"xmalinov":true,"oliverastro":true,"hemen":true,"congnk":true,"o_vigilante":true,"grraoo":true,"jyyoi":true,"ghe1219":true,"keyu":true,"sure2darling":true,"luisgamero":true,"olliejt":true,"hehehai":true,"bcawrse":true,"mikebrew":true,"junos":true,"xx1196":true,"carlosvillademor":true,"krands":true,"cwooz":true,"sabrinabgbc":true,"johnny_kim":true,"tdgarceau":true,"chinawolf_wyp":true,"pablopap":true,"beningreenjam":true,"linger":true,"zacharyjbaldwin":true,"kwesi":true,"maalthous":true,"giuseppe.morelli":true,"serge-nikitin":true,"nickkaramoff":true,"siemens82":true,"karbunkul":true,"panos277":true,"muziya":true,"anderpo":true,"gpuente":true,"okraciunas":true,"waliente":true,"arugalab":true,"patta":true,"valenwave":true,"rajakannan":true,"brunoluizgr":true,"brunoescalona":true,"justinho1989":true,"cruzrovira":true,"dwayneford":true},"bugs":{"url":"https://github.com/dlmanning/gulp-sass/issues"},"license":"MIT","versions":{"0.1.0":{"name":"gulp-sass","version":"0.1.0","description":"Gulp plugin for sass","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git://github.com/dlmanning/gulp-sass"},"keywords":["gulpplugin"],"author":{"name":"David Manning"},"license":"MIT","bugs":{"url":"https://github.com/dlmanning/gulp-sass/issues"},"dependencies":{"node-sass":"~0.6.4","event-stream":"~3.0.16","clone":"~0.1.10","gulp-util":"0.0.1"},"devDependencies":{"gulp":"~0.2.0"},"_id":"gulp-sass@0.1.0","dist":{"shasum":"a8a304755b6fdc8f1f957002aa745b42cc4d5968","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/gulp-sass/-/gulp-sass-0.1.0.tgz"},"_from":".","_npmVersion":"1.3.8","_npmUser":{"name":"dlmanning","email":"dlmanning@me.com"},"maintainers":[{"name":"dlmanning","email":"dlmanning@me.com"}],"directories":{}},"0.2.1":{"name":"gulp-sass","version":"0.2.1","description":"Gulp plugin for sass","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git://github.com/dlmanning/gulp-sass"},"keywords":["gulpplugin"],"author":{"name":"David Manning"},"license":"MIT","bugs":{"url":"https://github.com/dlmanning/gulp-sass/issues"},"dependencies":{"node-sass":"~0.6.4","event-stream":"~3.0.16","clone":"~0.1.10","gulp-util":"0.0.1"},"devDependencies":{"gulp":"~0.2.0"},"_id":"gulp-sass@0.2.1","dist":{"shasum":"b6601fafa5950230bcdf7f52b1acebbed0784db9","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/gulp-sass/-/gulp-sass-0.2.1.tgz"},"_from":".","_npmVersion":"1.3.8","_npmUser":{"name":"dlmanning","email":"dlmanning@me.com"},"maintainers":[{"name":"dlmanning","email":"dlmanning@me.com"}],"directories":{}},"0.2.2":{"name":"gulp-sass","version":"0.2.2","description":"Gulp plugin for sass","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git://github.com/dlmanning/gulp-sass"},"keywords":["gulpplugin"],"author":{"name":"David Manning"},"license":"MIT","bugs":{"url":"https://github.com/dlmanning/gulp-sass/issues"},"dependencies":{"event-stream":"~3.0.16","clone":"~0.1.10","node-sass":"~0.7.0","gulp-util":"~2.1.3"},"devDependencies":{"gulp":"~3.1.4"},"homepage":"https://github.com/dlmanning/gulp-sass","_id":"gulp-sass@0.2.2","dist":{"shasum":"d2b3fd15d91f31f98f4e877220495459860b074a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/gulp-sass/-/gulp-sass-0.2.2.tgz"},"_from":".","_npmVersion":"1.3.14","_npmUser":{"name":"dlmanning","email":"dlmanning@me.com"},"maintainers":[{"name":"dlmanning","email":"dlmanning@me.com"}],"directories":{}},"0.2.3":{"name":"gulp-sass","version":"0.2.3","description":"Gulp plugin for sass","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git://github.com/dlmanning/gulp-sass"},"keywords":["gulpplugin"],"author":{"name":"David Manning"},"license":"MIT","bugs":{"url":"https://github.com/dlmanning/gulp-sass/issues"},"dependencies":{"event-stream":"~3.0.16","clone":"~0.1.10","node-sass":"~0.7.0","gulp-util":"~2.2.5"},"devDependencies":{"gulp":"~3.2.3"},"homepage":"https://github.com/dlmanning/gulp-sass","_id":"gulp-sass@0.2.3","dist":{"shasum":"6a236432794d5130e53083197db5c147dd3241d6","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/gulp-sass/-/gulp-sass-0.2.3.tgz"},"_from":".","_npmVersion":"1.3.21","_npmUser":{"name":"dlmanning","email":"dlmanning@me.com"},"maintainers":[{"name":"dlmanning","email":"dlmanning@me.com"}],"directories":{}},"0.3.0":{"name":"gulp-sass","version":"0.3.0","description":"Gulp plugin for sass","main":"index.js","repository":{"type":"git","url":"git://github.com/dlmanning/gulp-sass"},"keywords":["gulpplugin"],"author":{"name":"David Manning"},"license":"MIT","bugs":{"url":"https://github.com/dlmanning/gulp-sass/issues"},"dependencies":{"event-stream":"~3.0.16","clone":"~0.1.10","node-sass":"~0.7.0","gulp-util":"~2.2.5"},"devDependencies":{"gulp":"~3.2.3","tape":"~2.3.2","concat-stream":"~1.4.1"},"homepage":"https://github.com/dlmanning/gulp-sass","_id":"gulp-sass@0.3.0","dist":{"shasum":"4fbb31bab8a3ce8319a7d10109296cef75456cfa","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/gulp-sass/-/gulp-sass-0.3.0.tgz"},"_from":".","_npmVersion":"1.3.21","_npmUser":{"name":"dlmanning","email":"dlmanning@me.com"},"maintainers":[{"name":"dlmanning","email":"dlmanning@me.com"}],"directories":{}},"0.4.0":{"name":"gulp-sass","version":"0.4.0","description":"Gulp plugin for sass","main":"index.js","repository":{"type":"git","url":"git://github.com/dlmanning/gulp-sass"},"keywords":["gulpplugin"],"author":{"name":"David Manning"},"license":"MIT","bugs":{"url":"https://github.com/dlmanning/gulp-sass/issues"},"dependencies":{"event-stream":"~3.0.16","clone":"~0.1.10","node-sass":"~0.7.0","gulp-util":"~2.2.5"},"devDependencies":{"gulp":"~3.2.3","tape":"~2.3.2","concat-stream":"~1.4.1"},"homepage":"https://github.com/dlmanning/gulp-sass","_id":"gulp-sass@0.4.0","dist":{"shasum":"7a0d6b6bb733f9169357031f4e5454e5992f5d00","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/gulp-sass/-/gulp-sass-0.4.0.tgz"},"_from":".","_npmVersion":"1.3.21","_npmUser":{"name":"dlmanning","email":"dlmanning@me.com"},"maintainers":[{"name":"dlmanning","email":"dlmanning@me.com"}],"directories":{}},"0.4.1":{"name":"gulp-sass","version":"0.4.1","description":"Gulp plugin for sass","main":"index.js","scripts":{"test":"node test/test.js"},"repository":{"type":"git","url":"git://github.com/dlmanning/gulp-sass"},"keywords":["gulpplugin","sass","gulp"],"author":{"name":"David Manning"},"license":"MIT","bugs":{"url":"https://github.com/dlmanning/gulp-sass/issues"},"dependencies":{"event-stream":"~3.0.16","clone":"~0.1.10","node-sass":"~0.7.0","gulp-util":"~2.2.5"},"devDependencies":{"tape":"~2.3.2","concat-stream":"~1.4.1"},"jshintConfig":{"laxcomma":true},"homepage":"https://github.com/dlmanning/gulp-sass","_id":"gulp-sass@0.4.1","dist":{"shasum":"c95b8d11d4440d53c1be21534db8e1fb8aa941aa","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/gulp-sass/-/gulp-sass-0.4.1.tgz"},"_from":".","_npmVersion":"1.3.21","_npmUser":{"name":"dlmanning","email":"dlmanning@me.com"},"maintainers":[{"name":"dlmanning","email":"dlmanning@me.com"}],"directories":{}},"0.5.0":{"name":"gulp-sass","version":"0.5.0","description":"Gulp plugin for sass","main":"index.js","scripts":{"test":"node test/test.js"},"repository":{"type":"git","url":"git://github.com/dlmanning/gulp-sass"},"keywords":["gulpplugin","sass","gulp"],"author":{"name":"David Manning"},"license":"MIT","bugs":{"url":"https://github.com/dlmanning/gulp-sass/issues"},"dependencies":{"node-sass":"~0.7.0","gulp-util":"~2.2.5","map-stream":"~0.1.0"},"devDependencies":{"tape":"~2.3.2","concat-stream":"~1.4.1"},"jshintConfig":{"laxcomma":true},"homepage":"https://github.com/dlmanning/gulp-sass","_id":"gulp-sass@0.5.0","dist":{"shasum":"01ea84f2a4cfc35d3c01df05ece7a6b204691bc9","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/gulp-sass/-/gulp-sass-0.5.0.tgz"},"_from":".","_npmVersion":"1.3.21","_npmUser":{"name":"dlmanning","email":"dlmanning@me.com"},"maintainers":[{"name":"dlmanning","email":"dlmanning@me.com"}],"directories":{}},"0.5.1":{"name":"gulp-sass","version":"0.5.1","description":"Gulp plugin for sass","main":"index.js","scripts":{"test":"node test/test.js"},"repository":{"type":"git","url":"git://github.com/dlmanning/gulp-sass"},"keywords":["gulpplugin","sass","gulp"],"author":{"name":"David Manning"},"license":"MIT","bugs":{"url":"https://github.com/dlmanning/gulp-sass/issues"},"dependencies":{"node-sass":"~0.8.1","gulp-util":"~2.2.5","map-stream":"~0.1.0"},"devDependencies":{"tape":"~2.3.2","concat-stream":"~1.4.1"},"jshintConfig":{"laxcomma":true},"homepage":"https://github.com/dlmanning/gulp-sass","_id":"gulp-sass@0.5.1","dist":{"shasum":"bf5a24ceba696f2ef2052162919a14ac5b2e72b0","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/gulp-sass/-/gulp-sass-0.5.1.tgz"},"_from":".","_npmVersion":"1.3.21","_npmUser":{"name":"dlmanning","email":"dlmanning@me.com"},"maintainers":[{"name":"dlmanning","email":"dlmanning@me.com"}],"directories":{}},"0.5.2":{"name":"gulp-sass","version":"0.5.2","description":"Gulp plugin for sass","main":"index.js","scripts":{"test":"node test/test.js"},"repository":{"type":"git","url":"git://github.com/dlmanning/gulp-sass"},"keywords":["gulpplugin","sass","gulp"],"author":{"name":"David Manning"},"license":"MIT","bugs":{"url":"https://github.com/dlmanning/gulp-sass/issues"},"dependencies":{"node-sass":"~0.8.1","gulp-util":"~2.2.5","map-stream":"~0.1.0"},"devDependencies":{"tape":"~2.3.2","concat-stream":"~1.4.1"},"jshintConfig":{"laxcomma":true},"homepage":"https://github.com/dlmanning/gulp-sass","_id":"gulp-sass@0.5.2","dist":{"shasum":"572e50c2f4847e0b21f357a9dda3dde6e69495f6","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/gulp-sass/-/gulp-sass-0.5.2.tgz"},"_from":".","_npmVersion":"1.3.21","_npmUser":{"name":"dlmanning","email":"dlmanning@me.com"},"maintainers":[{"name":"dlmanning","email":"dlmanning@me.com"}],"directories":{}},"0.6.0":{"name":"gulp-sass","version":"0.6.0","description":"Gulp plugin for sass","main":"index.js","scripts":{"test":"node test/test.js"},"repository":{"type":"git","url":"git://github.com/dlmanning/gulp-sass"},"keywords":["gulpplugin","sass","gulp"],"author":{"name":"David Manning"},"license":"MIT","bugs":{"url":"https://github.com/dlmanning/gulp-sass/issues"},"dependencies":{"node-sass":"~0.8.1","gulp-util":"~2.2.5","map-stream":"~0.1.0"},"devDependencies":{"tape":"~2.3.2","concat-stream":"~1.4.1"},"jshintConfig":{"laxcomma":true},"homepage":"https://github.com/dlmanning/gulp-sass","_id":"gulp-sass@0.6.0","dist":{"shasum":"2154a2348185df08a8dd6b14529fb6c5b46d7ffe","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/gulp-sass/-/gulp-sass-0.6.0.tgz"},"_from":".","_npmVersion":"1.3.21","_npmUser":{"name":"dlmanning","email":"dlmanning@me.com"},"maintainers":[{"name":"dlmanning","email":"dlmanning@me.com"}],"directories":{}},"0.7.0":{"name":"gulp-sass","version":"0.7.0","description":"Gulp plugin for sass","main":"index.js","scripts":{"test":"node test/test.js"},"repository":{"type":"git","url":"git://github.com/dlmanning/gulp-sass"},"keywords":["gulpplugin","sass","gulp"],"author":{"name":"David Manning"},"license":"MIT","bugs":{"url":"https://github.com/dlmanning/gulp-sass/issues"},"dependencies":{"node-sass":"~0.8","gulp-util":"~2.2","map-stream":"~0.1"},"devDependencies":{"tape":"~2.3","concat-stream":"~1.4"},"jshintConfig":{"laxcomma":true},"homepage":"https://github.com/dlmanning/gulp-sass","_id":"gulp-sass@0.7.0","dist":{"shasum":"a663426fc29bdc1b00a1f116a3c8fac24b613962","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/gulp-sass/-/gulp-sass-0.7.0.tgz"},"_from":".","_npmVersion":"1.3.21","_npmUser":{"name":"dlmanning","email":"dlmanning@me.com"},"maintainers":[{"name":"dlmanning","email":"dlmanning@me.com"}],"directories":{}},"0.7.1":{"name":"gulp-sass","version":"0.7.1","description":"Gulp plugin for sass","main":"index.js","scripts":{"test":"node test/test.js"},"repository":{"type":"git","url":"git://github.com/dlmanning/gulp-sass"},"keywords":["gulpplugin","sass","gulp"],"author":{"name":"David Manning"},"license":"MIT","bugs":{"url":"https://github.com/dlmanning/gulp-sass/issues"},"dependencies":{"node-sass":"~0.8","gulp-util":"~2.2","map-stream":"~0.1"},"devDependencies":{"tape":"~2.3","concat-stream":"~1.4"},"jshintConfig":{"laxcomma":true},"homepage":"https://github.com/dlmanning/gulp-sass","_id":"gulp-sass@0.7.1","dist":{"shasum":"de3697197ac35758e474496940695193058757a3","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/gulp-sass/-/gulp-sass-0.7.1.tgz"},"_from":".","_npmVersion":"1.3.21","_npmUser":{"name":"dlmanning","email":"dlmanning@me.com"},"maintainers":[{"name":"dlmanning","email":"dlmanning@me.com"}],"directories":{}},"0.7.2":{"name":"gulp-sass","version":"0.7.2","description":"Gulp plugin for sass","main":"index.js","scripts":{"test":"node test/test.js"},"repository":{"type":"git","url":"git://github.com/dlmanning/gulp-sass"},"keywords":["gulpplugin","sass","gulp"],"author":{"name":"David Manning"},"license":"MIT","bugs":{"url":"https://github.com/dlmanning/gulp-sass/issues"},"dependencies":{"node-sass":"^0.9","gulp-util":"~2.2","map-stream":"~0.1"},"devDependencies":{"tape":"~2.3","concat-stream":"~1.4"},"jshintConfig":{"laxcomma":true},"homepage":"https://github.com/dlmanning/gulp-sass","_id":"gulp-sass@0.7.2","_shasum":"c3345e6d5ab08fa3781d533c49787943ad7f28fb","_from":".","_npmVersion":"1.4.10","_npmUser":{"name":"dlmanning","email":"dlmanning@me.com"},"maintainers":[{"name":"dlmanning","email":"dlmanning@me.com"}],"dist":{"shasum":"c3345e6d5ab08fa3781d533c49787943ad7f28fb","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/gulp-sass/-/gulp-sass-0.7.2.tgz"},"directories":{}},"0.7.3":{"name":"gulp-sass","version":"0.7.3","description":"Gulp plugin for sass","main":"index.js","scripts":{"test":"node test/test.js"},"repository":{"type":"git","url":"git://github.com/dlmanning/gulp-sass"},"keywords":["gulpplugin","sass","gulp"],"author":{"name":"David Manning"},"license":"MIT","bugs":{"url":"https://github.com/dlmanning/gulp-sass/issues"},"dependencies":{"node-sass":"^0.9","gulp-util":"^3.0","map-stream":"~0.1"},"devDependencies":{"tape":"~2.3","concat-stream":"~1.4"},"jshintConfig":{"laxcomma":true},"gitHead":"57b7a6cfcfea0bb43675c9b6f51be96805100cc2","homepage":"https://github.com/dlmanning/gulp-sass","_id":"gulp-sass@0.7.3","_shasum":"4bfbb4e4d95a40be8beeebe07e8e477e7f7a2edc","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"dlmanning","email":"dlmanning@me.com"},"maintainers":[{"name":"dlmanning","email":"dlmanning@me.com"}],"dist":{"shasum":"4bfbb4e4d95a40be8beeebe07e8e477e7f7a2edc","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/gulp-sass/-/gulp-sass-0.7.3.tgz"},"directories":{}},"1.0.0":{"name":"gulp-sass","version":"1.0.0","description":"Gulp plugin for sass","main":"index.js","scripts":{"test":"node test/test.js"},"repository":{"type":"git","url":"git://github.com/dlmanning/gulp-sass"},"keywords":["gulpplugin","sass","gulp"],"author":{"name":"David Manning"},"license":"MIT","bugs":{"url":"https://github.com/dlmanning/gulp-sass/issues"},"dependencies":{"node-sass":"^0.9","gulp-util":"^3.0","map-stream":"~0.1","vinyl-sourcemaps-apply":"~0.1.1"},"devDependencies":{"tape":"~2.3","concat-stream":"~1.4"},"jshintConfig":{"laxcomma":true},"homepage":"https://github.com/dlmanning/gulp-sass","_id":"gulp-sass@1.0.0","_shasum":"6e79082d5d5bf0941eada27c57cf5b8e8d5c6117","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"dlmanning","email":"dlmanning@me.com"},"maintainers":[{"name":"dlmanning","email":"dlmanning@me.com"}],"dist":{"shasum":"6e79082d5d5bf0941eada27c57cf5b8e8d5c6117","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/gulp-sass/-/gulp-sass-1.0.0.tgz"},"directories":{}},"1.1.0":{"name":"gulp-sass","version":"1.1.0","description":"Gulp plugin for sass","main":"index.js","scripts":{"test":"node test/test.js"},"repository":{"type":"git","url":"git://github.com/dlmanning/gulp-sass"},"keywords":["gulpplugin","sass","gulp"],"author":{"name":"David Manning"},"license":"MIT","bugs":{"url":"https://github.com/dlmanning/gulp-sass/issues"},"dependencies":{"node-sass":"^0.9","gulp-util":"^3.0","map-stream":"~0.1","vinyl-sourcemaps-apply":"~0.1.1"},"devDependencies":{"tape":"~2.3","concat-stream":"~1.4"},"jshintConfig":{"laxcomma":true},"gitHead":"052a674d3600b9f7d2bc0ce860d8a2cc1aa20bae","homepage":"https://github.com/dlmanning/gulp-sass","_id":"gulp-sass@1.1.0","_shasum":"52d5bf1ee062bf59667fcb758f6985af86ce67e4","_from":".","_npmVersion":"1.4.26","_npmUser":{"name":"dlmanning","email":"dlmanning@me.com"},"maintainers":[{"name":"dlmanning","email":"dlmanning@me.com"}],"dist":{"shasum":"52d5bf1ee062bf59667fcb758f6985af86ce67e4","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/gulp-sass/-/gulp-sass-1.1.0.tgz"},"directories":{}},"1.2.0":{"name":"gulp-sass","version":"1.2.0","description":"Gulp plugin for sass","main":"index.js","scripts":{"test":"node test/test.js"},"repository":{"type":"git","url":"git://github.com/dlmanning/gulp-sass"},"keywords":["gulpplugin","sass","gulp"],"author":{"name":"David Manning"},"license":"MIT","bugs":{"url":"https://github.com/dlmanning/gulp-sass/issues"},"dependencies":{"node-sass":"^1.0","gulp-util":"^3.0","map-stream":"~0.1","vinyl-sourcemaps-apply":"~0.1.1"},"devDependencies":{"tape":"~2.3","concat-stream":"~1.4"},"jshintConfig":{"laxcomma":true},"gitHead":"5395cae064b3b33f27a9f76c6ed9458d11d34cb2","homepage":"https://github.com/dlmanning/gulp-sass","_id":"gulp-sass@1.2.0","_shasum":"33bbc37c7f6063b9f770e080a964d8eaa768ffd7","_from":".","_npmVersion":"1.4.26","_npmUser":{"name":"dlmanning","email":"dlmanning@me.com"},"maintainers":[{"name":"dlmanning","email":"dlmanning@me.com"}],"dist":{"shasum":"33bbc37c7f6063b9f770e080a964d8eaa768ffd7","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/gulp-sass/-/gulp-sass-1.2.0.tgz"},"directories":{}},"1.2.1":{"name":"gulp-sass","version":"1.2.1","description":"Gulp plugin for sass","main":"index.js","scripts":{"test":"node test/test.js"},"repository":{"type":"git","url":"git://github.com/dlmanning/gulp-sass"},"keywords":["gulpplugin","sass","gulp"],"author":{"name":"David Manning"},"license":"MIT","bugs":{"url":"https://github.com/dlmanning/gulp-sass/issues"},"dependencies":{"node-sass":"^1.0","gulp-util":"^3.0","map-stream":"~0.1","vinyl-sourcemaps-apply":"~0.1.1"},"devDependencies":{"tape":"~2.3","concat-stream":"~1.4"},"jshintConfig":{"laxcomma":true},"gitHead":"91776b3a3940f7cdc2a74fcdf5796518cb8fc31f","homepage":"https://github.com/dlmanning/gulp-sass","_id":"gulp-sass@1.2.1","_shasum":"8d409bf5de1808b6ee6715cad441164a4f14e7db","_from":".","_npmVersion":"1.4.26","_npmUser":{"name":"dlmanning","email":"dlmanning@me.com"},"maintainers":[{"name":"dlmanning","email":"dlmanning@me.com"}],"dist":{"shasum":"8d409bf5de1808b6ee6715cad441164a4f14e7db","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/gulp-sass/-/gulp-sass-1.2.1.tgz"},"directories":{}},"1.2.2":{"name":"gulp-sass","version":"1.2.2","description":"Gulp plugin for sass","main":"index.js","scripts":{"test":"node test/test.js"},"repository":{"type":"git","url":"git://github.com/dlmanning/gulp-sass"},"keywords":["gulpplugin","sass","gulp"],"author":{"name":"David Manning"},"license":"MIT","bugs":{"url":"https://github.com/dlmanning/gulp-sass/issues"},"dependencies":{"node-sass":"^1.0","gulp-util":"^3.0","map-stream":"~0.1","vinyl-sourcemaps-apply":"~0.1.1"},"devDependencies":{"tape":"~2.3","concat-stream":"~1.4"},"jshintConfig":{"laxcomma":true},"gitHead":"2babd14e7f7c8c466730c7913b5b34468e8d624b","homepage":"https://github.com/dlmanning/gulp-sass","_id":"gulp-sass@1.2.2","_shasum":"0ac8af1a5d74a5f6bcdd156769f2ddcd61342d85","_from":".","_npmVersion":"1.4.26","_npmUser":{"name":"dlmanning","email":"dlmanning@me.com"},"maintainers":[{"name":"dlmanning","email":"dlmanning@me.com"}],"dist":{"shasum":"0ac8af1a5d74a5f6bcdd156769f2ddcd61342d85","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/gulp-sass/-/gulp-sass-1.2.2.tgz"},"directories":{}},"1.2.3":{"name":"gulp-sass","version":"1.2.3","description":"Gulp plugin for sass","main":"index.js","scripts":{"test":"node test/test.js"},"repository":{"type":"git","url":"git://github.com/dlmanning/gulp-sass"},"keywords":["gulpplugin","sass","gulp"],"author":{"name":"David Manning"},"license":"MIT","bugs":{"url":"https://github.com/dlmanning/gulp-sass/issues"},"dependencies":{"node-sass":"^1.0","gulp-util":"^3.0","map-stream":"~0.1","vinyl-sourcemaps-apply":"~0.1.1","clone":"~0.1.18"},"devDependencies":{"tape":"~2.3","concat-stream":"~1.4"},"jshintConfig":{"laxcomma":true},"gitHead":"b5cba0eaafd8a0162756c5b977fdc3e73ef3cff9","homepage":"https://github.com/dlmanning/gulp-sass","_id":"gulp-sass@1.2.3","_shasum":"01522bce46f7c05c6dce430c25b77ebac8a04800","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"dlmanning","email":"dlmanning@me.com"},"maintainers":[{"name":"dlmanning","email":"dlmanning@me.com"}],"dist":{"shasum":"01522bce46f7c05c6dce430c25b77ebac8a04800","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/gulp-sass/-/gulp-sass-1.2.3.tgz"},"directories":{}},"1.2.4":{"name":"gulp-sass","version":"1.2.4","description":"Gulp plugin for sass","main":"index.js","scripts":{"test":"node test/test.js"},"repository":{"type":"git","url":"git://github.com/dlmanning/gulp-sass"},"keywords":["gulpplugin","sass","gulp"],"author":{"name":"David Manning"},"license":"MIT","bugs":{"url":"https://github.com/dlmanning/gulp-sass/issues"},"dependencies":{"node-sass":"^1.0","gulp-util":"^3.0","map-stream":"~0.1","vinyl-sourcemaps-apply":"~0.1.1","clone":"~0.1.18"},"devDependencies":{"tape":"~2.3","concat-stream":"~1.4"},"jshintConfig":{"laxcomma":true},"gitHead":"0c429d5d909bd63e6d146d523e6f5978e9b7acb6","homepage":"https://github.com/dlmanning/gulp-sass","_id":"gulp-sass@1.2.4","_shasum":"f9de5dff16f9c3369f45bdabf466a588db819c68","_from":".","_npmVersion":"2.1.10","_nodeVersion":"0.10.33","_npmUser":{"name":"dlmanning","email":"dlmanning@me.com"},"maintainers":[{"name":"dlmanning","email":"dlmanning@me.com"}],"dist":{"shasum":"f9de5dff16f9c3369f45bdabf466a588db819c68","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/gulp-sass/-/gulp-sass-1.2.4.tgz"},"directories":{}},"1.3.0":{"name":"gulp-sass","version":"1.3.0","description":"Gulp plugin for sass","main":"index.js","scripts":{"test":"node test/test.js"},"repository":{"type":"git","url":"git://github.com/dlmanning/gulp-sass"},"keywords":["gulpplugin","sass","gulp"],"author":{"name":"David Manning"},"license":"MIT","bugs":{"url":"https://github.com/dlmanning/gulp-sass/issues"},"dependencies":{"clone":"~0.1.18","gulp-util":"^3.0","map-stream":"~0.1","node-sass":"2.0.0-beta","vinyl-sourcemaps-apply":"~0.1.1"},"devDependencies":{"tape":"~2.3","concat-stream":"~1.4"},"jshintConfig":{"laxcomma":true},"gitHead":"dd33e9176be4de95d1e1a761c9ac64ca7195046e","homepage":"https://github.com/dlmanning/gulp-sass","_id":"gulp-sass@1.3.0","_shasum":"05d14b24aab3500f7694f6cf2adad58fb2f440f9","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"dlmanning","email":"dlmanning@me.com"},"maintainers":[{"name":"dlmanning","email":"dlmanning@me.com"}],"dist":{"shasum":"05d14b24aab3500f7694f6cf2adad58fb2f440f9","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/gulp-sass/-/gulp-sass-1.3.0.tgz"},"directories":{}},"1.3.1":{"name":"gulp-sass","version":"1.3.1","description":"Gulp plugin for sass","main":"index.js","scripts":{"test":"node test/test.js"},"repository":{"type":"git","url":"git://github.com/dlmanning/gulp-sass"},"keywords":["gulpplugin","sass","gulp"],"author":{"name":"David Manning"},"license":"MIT","bugs":{"url":"https://github.com/dlmanning/gulp-sass/issues"},"dependencies":{"clone":"~0.1.18","gulp-util":"^3.0","map-stream":"~0.1","node-sass":"2.0.0-beta","vinyl-sourcemaps-apply":"~0.1.1"},"devDependencies":{"tape":"~2.3","concat-stream":"~1.4"},"jshintConfig":{"laxcomma":true},"gitHead":"24cc36a033b0508a9e6ed7628c8153d349759703","homepage":"https://github.com/dlmanning/gulp-sass","_id":"gulp-sass@1.3.1","_shasum":"7661d438a1619799cb4635c5c0028af082094a45","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"dlmanning","email":"dlmanning@me.com"},"maintainers":[{"name":"dlmanning","email":"dlmanning@me.com"}],"dist":{"shasum":"7661d438a1619799cb4635c5c0028af082094a45","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/gulp-sass/-/gulp-sass-1.3.1.tgz"},"directories":{}},"1.3.2":{"name":"gulp-sass","version":"1.3.2","description":"Gulp plugin for sass","main":"index.js","scripts":{"test":"node test/test.js"},"repository":{"type":"git","url":"git://github.com/dlmanning/gulp-sass"},"keywords":["gulpplugin","sass","gulp"],"author":{"name":"David Manning"},"license":"MIT","bugs":{"url":"https://github.com/dlmanning/gulp-sass/issues"},"dependencies":{"clone":"~0.1.18","gulp-util":"^3.0","map-stream":"~0.1","node-sass":"2.0.0-beta","vinyl-sourcemaps-apply":"~0.1.1"},"devDependencies":{"tape":"~2.3","concat-stream":"~1.4"},"jshintConfig":{"laxcomma":true},"gitHead":"53d44c2caa0e67cb417e8f9b80fe24c14a719054","homepage":"https://github.com/dlmanning/gulp-sass","_id":"gulp-sass@1.3.2","_shasum":"ef7502a803351813ec4fe027ebb77e07522b2ab4","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"dlmanning","email":"dlmanning@me.com"},"maintainers":[{"name":"dlmanning","email":"dlmanning@me.com"}],"dist":{"shasum":"ef7502a803351813ec4fe027ebb77e07522b2ab4","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/gulp-sass/-/gulp-sass-1.3.2.tgz"},"directories":{}},"1.3.3":{"name":"gulp-sass","version":"1.3.3","description":"Gulp plugin for sass","main":"index.js","scripts":{"test":"node test/test.js"},"repository":{"type":"git","url":"git://github.com/dlmanning/gulp-sass"},"keywords":["gulpplugin","sass","gulp"],"author":{"name":"David Manning"},"license":"MIT","bugs":{"url":"https://github.com/dlmanning/gulp-sass/issues"},"dependencies":{"clone":"~0.1.18","gulp-util":"^3.0","map-stream":"~0.1","node-sass":"^2.0.1","vinyl-sourcemaps-apply":"~0.1.1"},"devDependencies":{"tape":"~2.3","concat-stream":"~1.4"},"jshintConfig":{"laxcomma":true},"gitHead":"314ce5c1594e541a55e5c5009fb0733c45226567","homepage":"https://github.com/dlmanning/gulp-sass","_id":"gulp-sass@1.3.3","_shasum":"66da87646bbfd299988c8ebbe94cefaff50e5662","_from":".","_npmVersion":"2.5.1","_nodeVersion":"1.2.0","_npmUser":{"name":"dlmanning","email":"dlmanning@me.com"},"maintainers":[{"name":"dlmanning","email":"dlmanning@me.com"}],"dist":{"shasum":"66da87646bbfd299988c8ebbe94cefaff50e5662","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/gulp-sass/-/gulp-sass-1.3.3.tgz"},"directories":{}},"2.0.0-alpha.1":{"name":"gulp-sass","version":"2.0.0-alpha.1","description":"Gulp plugin for sass","main":"index.js","scripts":{"test":"mocha test"},"repository":{"type":"git","url":"git://github.com/dlmanning/gulp-sass"},"keywords":["gulpplugin","sass","gulp"],"author":{"name":"David Manning"},"license":"MIT","bugs":{"url":"https://github.com/dlmanning/gulp-sass/issues"},"dependencies":{"gulp-util":"^3.0","node-sass":"^3.0.0-beta.4","object-assign":"^2.0.0","through2":"^0.6.3","vinyl-sourcemaps-apply":"~0.1.1"},"devDependencies":{"eslint":"^0.17.1","mocha":"^2.2.1","should":"^5.2.0"},"gitHead":"cc2f81581390481504eec3d3a2efd084ccdee043","homepage":"https://github.com/dlmanning/gulp-sass","_id":"gulp-sass@2.0.0-alpha.1","_shasum":"31ee1c254f931344975ebcbad9532288d67132a4","_from":".","_npmVersion":"2.7.0","_nodeVersion":"1.5.1","_npmUser":{"name":"dlmanning","email":"dlmanning@me.com"},"maintainers":[{"name":"dlmanning","email":"dlmanning@me.com"}],"dist":{"shasum":"31ee1c254f931344975ebcbad9532288d67132a4","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/gulp-sass/-/gulp-sass-2.0.0-alpha.1.tgz"},"directories":{}},"2.0.0":{"name":"gulp-sass","version":"2.0.0","description":"Gulp plugin for sass","main":"index.js","scripts":{"test":"mocha test"},"repository":{"type":"git","url":"git://github.com/dlmanning/gulp-sass"},"keywords":["gulpplugin","sass","gulp"],"author":{"name":"David Manning"},"license":"MIT","bugs":{"url":"https://github.com/dlmanning/gulp-sass/issues"},"dependencies":{"gulp-util":"^3.0","node-sass":"^3.0.0","object-assign":"^2.0.0","through2":"^0.6.3","vinyl-sourcemaps-apply":"~0.1.1"},"devDependencies":{"eslint":"^0.17.1","mocha":"^2.2.1","should":"^5.2.0"},"gitHead":"ee039186f01768688f29b04f226a78ca264425a7","homepage":"https://github.com/dlmanning/gulp-sass","_id":"gulp-sass@2.0.0","_shasum":"eb0bc779fcdbd4902a5612b53eb28f7d6f201dba","_from":".","_npmVersion":"2.7.4","_nodeVersion":"1.6.3","_npmUser":{"name":"dlmanning","email":"dlmanning@me.com"},"maintainers":[{"name":"dlmanning","email":"dlmanning@me.com"},{"name":"snugug","email":"sam@snug.ug"}],"dist":{"shasum":"eb0bc779fcdbd4902a5612b53eb28f7d6f201dba","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/gulp-sass/-/gulp-sass-2.0.0.tgz"},"directories":{}},"2.0.2":{"name":"gulp-sass","version":"2.0.2","description":"Gulp plugin for sass","main":"index.js","scripts":{"test":"mocha test"},"repository":{"type":"git","url":"git://github.com/dlmanning/gulp-sass"},"keywords":["gulpplugin","sass","gulp"],"author":{"name":"David Manning"},"license":"MIT","bugs":{"url":"https://github.com/dlmanning/gulp-sass/issues"},"dependencies":{"gulp-util":"^3.0","node-sass":"^3.0.0","object-assign":"^2.0.0","through2":"^0.6.3","vinyl-sourcemaps-apply":"~0.1.1"},"devDependencies":{"autoprefixer-core":"^5.1.11","eslint":"^0.17.1","gulp":"^3.8.11","gulp-postcss":"^5.1.6","gulp-sourcemaps":"^1.5.2","gulp-tap":"^0.1.3","mocha":"^2.2.1","should":"^5.2.0"},"gitHead":"d1930b8cba2783121438bc794940cf875797bc89","homepage":"https://github.com/dlmanning/gulp-sass","_id":"gulp-sass@2.0.2","_shasum":"ae7cddbc45301214a12b71ac44c686e5aff1c720","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"snugug","email":"sam@snug.ug"},"maintainers":[{"name":"dlmanning","email":"dlmanning@me.com"},{"name":"snugug","email":"sam@snug.ug"}],"dist":{"shasum":"ae7cddbc45301214a12b71ac44c686e5aff1c720","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/gulp-sass/-/gulp-sass-2.0.2.tgz"},"deprecated":"Empty partial bug copied to CSS folder fixed","directories":{}},"2.0.3":{"name":"gulp-sass","version":"2.0.3","description":"Gulp plugin for sass","main":"index.js","scripts":{"test":"mocha test"},"repository":{"type":"git","url":"git://github.com/dlmanning/gulp-sass"},"keywords":["gulpplugin","sass","gulp"],"author":{"name":"David Manning"},"license":"MIT","bugs":{"url":"https://github.com/dlmanning/gulp-sass/issues"},"dependencies":{"gulp-util":"^3.0","node-sass":"^3.0.0","object-assign":"^2.0.0","through2":"^0.6.3","vinyl-sourcemaps-apply":"~0.1.1"},"devDependencies":{"autoprefixer-core":"^5.1.11","eslint":"^0.17.1","gulp":"^3.8.11","gulp-postcss":"^5.1.6","gulp-sourcemaps":"^1.5.2","gulp-tap":"^0.1.3","mocha":"^2.2.1","should":"^5.2.0"},"gitHead":"a94f80de4e5b1a64b3c6bc552319ee40b6b6262a","homepage":"https://github.com/dlmanning/gulp-sass","_id":"gulp-sass@2.0.3","_shasum":"31c5631b0062876301bc99796cd38935aecd12bf","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"snugug","email":"sam@snug.ug"},"dist":{"shasum":"31c5631b0062876301bc99796cd38935aecd12bf","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/gulp-sass/-/gulp-sass-2.0.3.tgz"},"maintainers":[{"name":"dlmanning","email":"dlmanning@me.com"},{"name":"snugug","email":"sam@snug.ug"}],"directories":{}},"2.0.4":{"name":"gulp-sass","version":"2.0.4","description":"Gulp plugin for sass","main":"index.js","scripts":{"test":"mocha test"},"repository":{"type":"git","url":"git://github.com/dlmanning/gulp-sass.git"},"keywords":["gulpplugin","sass","gulp"],"author":{"name":"David Manning"},"license":"MIT","bugs":{"url":"https://github.com/dlmanning/gulp-sass/issues"},"dependencies":{"gulp-util":"^3.0","node-sass":"^3.0.0","object-assign":"^2.0.0","through2":"^0.6.3","vinyl-sourcemaps-apply":"~0.1.1"},"devDependencies":{"autoprefixer-core":"^5.1.11","eslint":"^0.17.1","globule":"^0.2.0","gulp":"^3.8.11","gulp-postcss":"^5.1.6","gulp-sourcemaps":"^1.5.2","gulp-tap":"^0.1.3","mocha":"^2.2.1","should":"^5.2.0"},"gitHead":"8f5e91f4427161f17415edfd709085205ee47608","homepage":"https://github.com/dlmanning/gulp-sass#readme","_id":"gulp-sass@2.0.4","_shasum":"9703de980b9ebf2a418271e0c5e3e4ed9adf76ba","_from":".","_npmVersion":"2.11.2","_nodeVersion":"0.12.5","_npmUser":{"name":"snugug","email":"sam@snug.ug"},"dist":{"shasum":"9703de980b9ebf2a418271e0c5e3e4ed9adf76ba","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/gulp-sass/-/gulp-sass-2.0.4.tgz"},"maintainers":[{"name":"dlmanning","email":"dlmanning@me.com"},{"name":"snugug","email":"sam@snug.ug"}],"directories":{}},"2.1.0-beta":{"name":"gulp-sass","version":"2.1.0-beta","description":"Gulp plugin for sass","main":"index.js","scripts":{"test":"mocha test"},"repository":{"type":"git","url":"git://github.com/dlmanning/gulp-sass.git"},"keywords":["gulpplugin","sass","gulp"],"author":{"name":"David Manning"},"license":"MIT","bugs":{"url":"https://github.com/dlmanning/gulp-sass/issues"},"dependencies":{"gulp-util":"^3.0","node-sass":"^3.4.0-beta1","object-assign":"^2.0.0","through2":"^0.6.3","vinyl-sourcemaps-apply":"~0.1.1"},"devDependencies":{"autoprefixer-core":"^5.1.11","eslint":"^0.17.1","globule":"^0.2.0","gulp":"^3.8.11","gulp-postcss":"^5.1.6","gulp-sourcemaps":"^1.5.2","gulp-tap":"^0.1.3","mocha":"^2.2.1","should":"^5.2.0"},"gitHead":"04f9a9318c8e4ee51d6d7666f9b72ebc25db152a","homepage":"https://github.com/dlmanning/gulp-sass#readme","_id":"gulp-sass@2.1.0-beta","_shasum":"4efbfa09f420b2ec61fd2b64b173860f39d41767","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"maintainers":[{"name":"dlmanning","email":"dlmanning@me.com"},{"name":"snugug","email":"sam@snug.ug"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"dist":{"shasum":"4efbfa09f420b2ec61fd2b64b173860f39d41767","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/gulp-sass/-/gulp-sass-2.1.0-beta.tgz"},"directories":{}},"2.1.0":{"name":"gulp-sass","version":"2.1.0","description":"Gulp plugin for sass","main":"index.js","scripts":{"test":"mocha test"},"repository":{"type":"git","url":"git://github.com/dlmanning/gulp-sass.git"},"keywords":["gulpplugin","sass","gulp"],"author":{"name":"David Manning"},"license":"MIT","bugs":{"url":"https://github.com/dlmanning/gulp-sass/issues"},"dependencies":{"gulp-util":"^3.0","node-sass":"^3.4.1","object-assign":"^4.0.1","through2":"^2.0.0","vinyl-sourcemaps-apply":"^0.2.0"},"devDependencies":{"autoprefixer-core":"^5.2.1","eslint":"^1.6.0","globule":"^0.2.0","gulp":"^3.8.11","gulp-postcss":"^5.1.10","gulp-sourcemaps":"^1.5.2","gulp-tap":"^0.1.3","mocha":"^2.2.1","rimraf":"^2.4.3","should":"^7.1.0"},"gitHead":"5787925539b491533c87c1a75e8ada1812c54a40","homepage":"https://github.com/dlmanning/gulp-sass#readme","_id":"gulp-sass@2.1.0","_shasum":"2587bc535d8b508bc10f4e2cf35f01185737d80b","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"maintainers":[{"name":"dlmanning","email":"dlmanning@me.com"},{"name":"snugug","email":"sam@snug.ug"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"dist":{"shasum":"2587bc535d8b508bc10f4e2cf35f01185737d80b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/gulp-sass/-/gulp-sass-2.1.0.tgz"},"directories":{}},"2.1.1":{"name":"gulp-sass","version":"2.1.1","description":"Gulp plugin for sass","main":"index.js","scripts":{"test":"mocha test"},"repository":{"type":"git","url":"git://github.com/dlmanning/gulp-sass.git"},"keywords":["gulpplugin","sass","gulp"],"author":{"name":"David Manning"},"license":"MIT","bugs":{"url":"https://github.com/dlmanning/gulp-sass/issues"},"dependencies":{"gulp-util":"^3.0","node-sass":"^3.4.1","object-assign":"^4.0.1","through2":"^2.0.0","vinyl-sourcemaps-apply":"^0.2.0"},"devDependencies":{"autoprefixer-core":"^5.2.1","eslint":"^1.6.0","globule":"^0.2.0","gulp":"^3.8.11","gulp-postcss":"^5.1.10","gulp-sourcemaps":"^1.5.2","gulp-tap":"^0.1.3","mocha":"^2.2.1","rimraf":"^2.4.3","should":"^7.1.0"},"gitHead":"d62227fb9d8787e31a5eee6962c6b7a3c5b92244","homepage":"https://github.com/dlmanning/gulp-sass#readme","_id":"gulp-sass@2.1.1","_shasum":"6b266adbb36991992df8a3906a821392d0e2fe75","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"maintainers":[{"name":"dlmanning","email":"dlmanning@me.com"},{"name":"snugug","email":"sam@snug.ug"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"dist":{"shasum":"6b266adbb36991992df8a3906a821392d0e2fe75","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/gulp-sass/-/gulp-sass-2.1.1.tgz"},"directories":{}},"2.2.0":{"name":"gulp-sass","version":"2.2.0","description":"Gulp plugin for sass","main":"index.js","scripts":{"test":"mocha test"},"repository":{"type":"git","url":"git://github.com/dlmanning/gulp-sass.git"},"keywords":["gulpplugin","sass","gulp"],"author":{"name":"David Manning"},"license":"MIT","bugs":{"url":"https://github.com/dlmanning/gulp-sass/issues"},"dependencies":{"gulp-util":"^3.0","node-sass":"^3.4.1","object-assign":"^4.0.1","through2":"^2.0.0","vinyl-sourcemaps-apply":"^0.2.0"},"devDependencies":{"autoprefixer-core":"^5.2.1","eslint":"^1.6.0","globule":"^0.2.0","gulp":"^3.8.11","gulp-postcss":"^5.1.10","gulp-sourcemaps":"^1.5.2","gulp-tap":"^0.1.3","mocha":"^2.2.1","rimraf":"^2.4.3","should":"^7.1.0"},"gitHead":"1888f3561f7db25c016dbc17ace4fcfd4456e940","homepage":"https://github.com/dlmanning/gulp-sass#readme","_id":"gulp-sass@2.2.0","_shasum":"ac7fb33112443ee4fd2df7468ed966a14a72476f","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"maintainers":[{"name":"dlmanning","email":"dlmanning@me.com"},{"name":"snugug","email":"sam@snug.ug"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"dist":{"shasum":"ac7fb33112443ee4fd2df7468ed966a14a72476f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/gulp-sass/-/gulp-sass-2.2.0.tgz"},"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/gulp-sass-2.2.0.tgz_1454585742634_0.3176706349477172"},"directories":{}},"2.3.0-beta.1":{"name":"gulp-sass","version":"2.3.0-beta.1","description":"Gulp plugin for sass","main":"index.js","scripts":{"test":"mocha test"},"repository":{"type":"git","url":"git://github.com/dlmanning/gulp-sass.git"},"keywords":["gulpplugin","sass","gulp"],"author":{"name":"David Manning"},"license":"MIT","bugs":{"url":"https://github.com/dlmanning/gulp-sass/issues"},"dependencies":{"gulp-util":"^3.0","node-sass":"^3.5.0-beta.1","object-assign":"^4.0.1","through2":"^2.0.0","vinyl-sourcemaps-apply":"^0.2.0"},"devDependencies":{"autoprefixer-core":"^5.2.1","eslint":"^1.6.0","globule":"^0.2.0","gulp":"^3.8.11","gulp-postcss":"^5.1.10","gulp-sourcemaps":"^1.5.2","gulp-tap":"^0.1.3","mocha":"^2.2.1","rimraf":"^2.4.3","should":"^7.1.0"},"gitHead":"06dd57a7970715b171890c490ab38f503dffa265","homepage":"https://github.com/dlmanning/gulp-sass#readme","_id":"gulp-sass@2.3.0-beta.1","_shasum":"4e18b122bd72ae3591c4aee81af6a8ffbddd11c8","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"maintainers":[{"name":"dlmanning","email":"dlmanning@me.com"},{"name":"snugug","email":"sam@snug.ug"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"dist":{"shasum":"4e18b122bd72ae3591c4aee81af6a8ffbddd11c8","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/gulp-sass/-/gulp-sass-2.3.0-beta.1.tgz"},"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/gulp-sass-2.3.0-beta.1.tgz_1454587659041_0.6152317628730088"},"directories":{}},"2.3.0":{"name":"gulp-sass","version":"2.3.0","description":"Gulp plugin for sass","main":"index.js","scripts":{"test":"mocha test"},"repository":{"type":"git","url":"git://github.com/dlmanning/gulp-sass.git"},"keywords":["gulpplugin","sass","gulp"],"author":{"name":"David Manning"},"license":"MIT","bugs":{"url":"https://github.com/dlmanning/gulp-sass/issues"},"dependencies":{"gulp-util":"^3.0","node-sass":"^3.5.1","object-assign":"^4.0.1","through2":"^2.0.0","vinyl-sourcemaps-apply":"^0.2.0"},"devDependencies":{"autoprefixer-core":"^5.2.1","eslint":"^1.6.0","globule":"^0.2.0","gulp":"^3.8.11","gulp-postcss":"^5.1.10","gulp-sourcemaps":"^1.5.2","gulp-tap":"^0.1.3","mocha":"^2.2.1","rimraf":"^2.4.3","should":"^7.1.0"},"gitHead":"439035f380476497ca18b7885aea68e738b27a5b","homepage":"https://github.com/dlmanning/gulp-sass#readme","_id":"gulp-sass@2.3.0","_shasum":"fe9a140313de5b8087ff4670f340b093dbc5dde4","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"dist":{"shasum":"fe9a140313de5b8087ff4670f340b093dbc5dde4","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/gulp-sass/-/gulp-sass-2.3.0.tgz"},"maintainers":[{"name":"dlmanning","email":"dlmanning@me.com"},{"name":"snugug","email":"sam@snug.ug"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/gulp-sass-2.3.0.tgz_1461202694064_0.3443477372638881"},"directories":{}},"2.3.1":{"name":"gulp-sass","version":"2.3.1","description":"Gulp plugin for sass","main":"index.js","scripts":{"test":"mocha test"},"repository":{"type":"git","url":"git://github.com/dlmanning/gulp-sass.git"},"keywords":["gulpplugin","sass","gulp"],"author":{"name":"David Manning"},"license":"MIT","bugs":{"url":"https://github.com/dlmanning/gulp-sass/issues"},"dependencies":{"gulp-util":"^3.0","node-sass":"^3.4.2","object-assign":"^4.0.1","through2":"^2.0.0","vinyl-sourcemaps-apply":"^0.2.0"},"devDependencies":{"autoprefixer-core":"^5.2.1","eslint":"^1.6.0","globule":"^0.2.0","gulp":"^3.8.11","gulp-postcss":"^5.1.10","gulp-sourcemaps":"^1.5.2","gulp-tap":"^0.1.3","mocha":"^2.2.1","rimraf":"^2.4.3","should":"^7.1.0"},"gitHead":"cfee7560774d8f3c5cde46b42569b8d1d2a15f82","homepage":"https://github.com/dlmanning/gulp-sass#readme","_id":"gulp-sass@2.3.1","_shasum":"7fc71d58e6245cbe092392e329cb5d23423de40c","_from":".","_npmVersion":"3.8.3","_nodeVersion":"5.10.1","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"dist":{"shasum":"7fc71d58e6245cbe092392e329cb5d23423de40c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/gulp-sass/-/gulp-sass-2.3.1.tgz"},"maintainers":[{"name":"dlmanning","email":"dlmanning@me.com"},{"name":"snugug","email":"sam@snug.ug"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/gulp-sass-2.3.1.tgz_1461279817822_0.48147501423954964"},"directories":{}},"2.3.2":{"name":"gulp-sass","version":"2.3.2","description":"Gulp plugin for sass","main":"index.js","scripts":{"test":"mocha test"},"repository":{"type":"git","url":"git://github.com/dlmanning/gulp-sass.git"},"keywords":["gulpplugin","sass","gulp"],"author":{"name":"David Manning"},"license":"MIT","bugs":{"url":"https://github.com/dlmanning/gulp-sass/issues"},"dependencies":{"gulp-util":"^3.0","lodash.clonedeep":"^4.3.2","node-sass":"^3.4.2","through2":"^2.0.0","vinyl-sourcemaps-apply":"^0.2.0"},"devDependencies":{"autoprefixer-core":"^5.2.1","eslint":"^2.9.0","globule":"^1.0.0","gulp":"^3.8.11","gulp-postcss":"^5.1.10","gulp-sourcemaps":"^1.5.2","gulp-tap":"^0.1.3","mocha":"^2.2.1","rimraf":"^2.4.3","should":"^8.3.1"},"gitHead":"218560fc06f6e94151fb5ec3a4e0e047415c14ed","homepage":"https://github.com/dlmanning/gulp-sass#readme","_id":"gulp-sass@2.3.2","_shasum":"82b7ab90fe902cdc34c04f180d92f2c34902dd52","_from":".","_npmVersion":"3.8.3","_nodeVersion":"5.10.1","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"dist":{"shasum":"82b7ab90fe902cdc34c04f180d92f2c34902dd52","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/gulp-sass/-/gulp-sass-2.3.2.tgz"},"maintainers":[{"name":"dlmanning","email":"dlmanning@me.com"},{"name":"snugug","email":"sam@snug.ug"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/gulp-sass-2.3.2.tgz_1465988342649_0.716503701871261"},"directories":{}},"3.0.0":{"name":"gulp-sass","version":"3.0.0","description":"Gulp plugin for sass","main":"index.js","scripts":{"test":"mocha test"},"repository":{"type":"git","url":"git://github.com/dlmanning/gulp-sass.git"},"keywords":["gulpplugin","sass","gulp"],"author":{"name":"David Manning"},"license":"MIT","bugs":{"url":"https://github.com/dlmanning/gulp-sass/issues"},"dependencies":{"gulp-util":"^3.0","lodash.clonedeep":"^4.3.2","node-sass":"^4.0.0","through2":"^2.0.0","vinyl-sourcemaps-apply":"^0.2.0"},"devDependencies":{"autoprefixer-core":"^5.2.1","eslint":"^2.9.0","globule":"^1.0.0","gulp":"^3.8.11","gulp-postcss":"^5.1.10","gulp-sourcemaps":"^1.5.2","gulp-tap":"^0.1.3","mocha":"^2.2.1","rimraf":"^2.4.3","should":"^8.3.1"},"gitHead":"0d2a2bffb679667b302259bce4d389c9d3dcd975","homepage":"https://github.com/dlmanning/gulp-sass#readme","_id":"gulp-sass@3.0.0","_shasum":"22adde0b2bcc40f9bb38435b49f48cd459e002d3","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"dist":{"shasum":"22adde0b2bcc40f9bb38435b49f48cd459e002d3","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/gulp-sass/-/gulp-sass-3.0.0.tgz"},"maintainers":[{"name":"dlmanning","email":"dlmanning@me.com"},{"name":"snugug","email":"sam@snug.ug"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/gulp-sass-3.0.0.tgz_1481378173132_0.5833802067209035"},"directories":{}},"3.1.0":{"name":"gulp-sass","version":"3.1.0","description":"Gulp plugin for sass","main":"index.js","scripts":{"test":"mocha test"},"repository":{"type":"git","url":"git://github.com/dlmanning/gulp-sass.git"},"keywords":["gulpplugin","sass","gulp"],"author":{"name":"David Manning"},"license":"MIT","bugs":{"url":"https://github.com/dlmanning/gulp-sass/issues"},"dependencies":{"gulp-util":"^3.0","lodash.clonedeep":"^4.3.2","node-sass":"^4.2.0","through2":"^2.0.0","vinyl-sourcemaps-apply":"^0.2.0"},"devDependencies":{"autoprefixer-core":"^5.2.1","eslint":"^2.9.0","globule":"^1.0.0","gulp":"^3.8.11","gulp-postcss":"^5.1.10","gulp-sourcemaps":"^1.5.2","gulp-tap":"^0.1.3","mocha":"^2.2.1","rimraf":"^2.4.3","should":"^8.3.1"},"gitHead":"25d37e799a358ab11c176860fad1b6327be40329","homepage":"https://github.com/dlmanning/gulp-sass#readme","_id":"gulp-sass@3.1.0","_shasum":"53dc4b68a1f5ddfe4424ab4c247655269a8b74b7","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"xzyfer","email":"xzyfer@gmail.com"},"dist":{"shasum":"53dc4b68a1f5ddfe4424ab4c247655269a8b74b7","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/gulp-sass/-/gulp-sass-3.1.0.tgz"},"maintainers":[{"name":"dlmanning","email":"dlmanning@me.com"},{"name":"snugug","email":"sam@snug.ug"},{"name":"xzyfer","email":"xzyfer@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/gulp-sass-3.1.0.tgz_1483949892518_0.8293058883864433"},"directories":{}}},"name":"gulp-sass","time":{"modified":"2017-06-17T19:41:50.275Z","created":"2013-08-31T23:53:38.008Z","0.1.0":"2013-08-31T23:53:39.340Z","0.2.1":"2013-09-01T04:55:37.985Z","0.2.2":"2013-12-15T02:33:24.085Z","0.2.3":"2014-01-05T15:17:17.168Z","0.3.0":"2014-01-10T21:44:18.634Z","0.4.0":"2014-01-13T06:44:07.475Z","0.4.1":"2014-01-19T08:42:32.911Z","0.5.0":"2014-01-22T20:52:47.028Z","0.5.1":"2014-01-22T22:41:21.773Z","0.5.2":"2014-01-22T23:49:22.741Z","0.6.0":"2014-01-25T17:47:01.743Z","0.7.0":"2014-02-11T05:02:06.587Z","0.7.1":"2014-02-22T00:08:28.811Z","0.7.2":"2014-06-06T05:31:02.487Z","0.7.3":"2014-08-12T19:10:37.522Z","1.0.0":"2014-09-24T19:24:28.986Z","1.1.0":"2014-10-09T22:06:51.147Z","1.2.0":"2014-10-16T23:29:17.529Z","1.2.1":"2014-10-28T18:03:20.946Z","1.2.2":"2014-10-29T06:03:41.952Z","1.2.3":"2014-11-14T02:50:01.085Z","1.2.4":"2014-12-04T06:54:19.516Z","1.3.0":"2015-01-14T01:27:34.303Z","1.3.1":"2015-01-14T04:56:24.039Z","1.3.2":"2015-01-16T18:37:46.162Z","1.3.3":"2015-02-12T21:54:39.265Z","2.0.0-alpha.1":"2015-04-02T02:08:02.436Z","2.0.0":"2015-05-06T23:57:23.078Z","2.0.1":"2015-05-13T11:17:04.617Z","2.0.2":"2015-06-25T14:40:05.954Z","2.0.3":"2015-06-27T17:40:46.400Z","2.0.4":"2015-07-15T18:03:28.083Z","2.1.0-beta":"2015-09-21T12:17:46.405Z","2.1.0":"2015-10-28T06:15:09.835Z","2.1.1":"2015-12-10T12:59:30.365Z","2.2.0":"2016-02-04T11:35:45.196Z","2.3.0-beta.1":"2016-02-04T12:07:41.318Z","2.3.0":"2016-04-21T01:38:16.752Z","2.3.1":"2016-04-21T23:03:40.514Z","2.3.2":"2016-06-15T10:59:07.630Z","3.0.0":"2016-12-10T13:56:13.363Z","3.1.0":"2017-01-09T08:18:14.487Z"},"readmeFilename":"README.md","homepage":"https://github.com/dlmanning/gulp-sass#readme"}