{"maintainers":[{"email":"sam@snug.ug","name":"anonymous"},{"email":"xzyfer@gmail.com","name":"anonymous"},{"email":"danjpurdy@gmail.com","name":"anonymous"}],"keywords":["gulpplugin","sass","gulp","lint"],"dist-tags":{"latest":"1.4.0"},"author":{"name":"Sam Richard"},"description":"Gulp plugin for Sass Lint","readme":"# Gulp Sass Lint [![npm version](https://badge.fury.io/js/gulp-sass-lint.svg)](http://badge.fury.io/js/gulp-sass-lint)\n\n[Gulp](http://gulpjs.com/) plugin for [Sass Lint](https://github.com/sasstools/sass-lint).\n\n## Install\n\n```\nnpm install gulp-sass-lint --save-dev\n```\n\n## Usage\n\n`gulpfile.js`\n\n```javascript\n'use strict';\n\nvar gulp = require('gulp'),\n    sassLint = require('gulp-sass-lint');\n\ngulp.task('default', function () {\n  return gulp.src('sass/**/*.s+(a|c)ss')\n    .pipe(sassLint())\n    .pipe(sassLint.format())\n    .pipe(sassLint.failOnError())\n});\n```\n\n## API\n\n### sassLint(options)\n\nYou can pass an object of options to configure gulp-sass-lint to your specific projects needs the options are listed below.\n\n#### options.options\n\nYou can find out more about the specific SassLint options from the [SassLint Documentation](https://github.com/sasstools/sass-lint/tree/develop/docs/options)\n\n```javascript\n{\n  options: {\n    formatter: 'stylish',\n    'merge-default-rules': false\n  }\n}\n```\n\nBy default SassLint includes it's own configuration file, if you provide one it attempts to merge everything except for the files section below. If you pass options directly into the plugin they take precedence. The order can be visualised below with the SassLint config being the base.\n\n`options > config file > SassLint default included config`\n\nYou can disable this behaviour by setting `merge-default-rules` to false within the `options.options` object that you pass to `gulp-sass-lint` or you can include it in your config file options that you can pass into `gulp-sass-lint` with `options.configFile`.\n\nMore info and examples can be found within the SassLint [docs](https://github.com/sasstools/sass-lint/blob/master/docs/options/merge-default-rules.md)\n\n#### options.files\n\n\nType: `Object`\n\nWithin the files object you can specify a glob pattern as a string or an array of glob pattern for both the `include` and `ignore` options. Please note that your include option will currently be ignored as you should be passing the glob patterns / file paths to be linted directly to gulp `gulp.src('sass/**/*.s+(a|c)ss')`. The ignore option however will still be respected if you'd rather specify them in your config rather than in the `gulp.src` method.\n\n```javascript\n{\n  files: {\n    include: '**/*.scss', // This will be ignored by gulp-sass-lint\n    ignore: 'test/**/*.scss' // This will still be respected and read\n  }\n}\n```\n\n#### options.rules\n\nType: `Object`\n\nYou can define which rules you would like to use here and set a severity too. For more information see how to [configure](https://github.com/sasstools/sass-lint/tree/master#rules) and also the SassLint [rules](https://github.com/sasstools/sass-lint/tree/master/docs/rules)\n\n```javascript\n{\n  rules: {\n    'no-ids': 0, // Severity 0 (disabled)\n    'no-mergeable-selectors': 1, // Severity 1 (warning)\n    'hex-length': [\n      2, // Severity 2 (error)\n      {\n        'style': 'long'\n      }\n    ]\n  }\n}\n```\n\n#### options.configFile\n\nYou can pass the path to a custom config file via the `configFile` option. The path will be relative to where you're running gulp from.\n\n```javascript\n{\n  configFile: 'app/config/.my-config.yml'\n}\n```\n\n### Example\n\nThe following highlights all of the above options in use\n\n```javascript\n\n'use strict';\n\nvar gulp = require('gulp'),\n    sassLint = require('gulp-sass-lint');\n\ngulp.task('default', function () {\n  return gulp.src('sass/**/*.s+(a|c)ss')\n    .pipe(sassLint({\n      options: {\n        formatter: 'stylish',\n        'merge-default-rules': false\n      },\n      files: {ignore: '**/*.scss'},\n      rules: {\n        'no-ids': 1,\n        'no-mergeable-selectors': 0\n      },\n      configFile: 'config/other/.sass-lint.yml'\n    }))\n    .pipe(sassLint.format())\n    .pipe(sassLint.failOnError())\n});\n\n```\n---\n\n### sassLint.format(writable)\n\nFormats the results dependent on your config file or the options you provided to the sassLint task above. The default format is `stylish` but you can choose any of the others that SassLint provides, see the [docs](https://github.com/sasstools/sass-lint/blob/master/docs/options/formatter.md).\n\nYou can also choose to output to a file from within the options you provide or your config file. See the [output-file docs](https://github.com/sasstools/sass-lint/blob/master/docs/options/output-file.md)\n\n```javascript\ngulp.task('lint_sass_jenkins', function () {\n    var file = fs.createWriteStream('reports/lint_sass.xml');\n    var stream = gulp.src('public/sass/**/*.scss')\n        .pipe(sassLint({\n            options: {\n                configFile: '.sass-lint.yml',\n                formatter: 'checkstyle'\n            }\n        }))\n        .pipe(sassLint.format(file));\n    stream.on('finish', function() {\n        file.end();\n    });\n    return stream;\n});\n```\n\n---\n\n### sassLint.failOnError()\n\nFails the task and emits a gulp error when all files have been linted if an error has been detected (rules set to severity 2).\n","repository":{"type":"git","url":"git+https://github.com/sasstools/gulp-sass-lint.git"},"users":{"rogeruiz":true,"rubiadias":true,"carlosvillademor":true,"alantsuis":true,"tdmalone":true,"abuelwafa":true,"vojtechjurasek":true,"phritolay":true,"cbeulke":true,"axelrindle":true,"cwooz":true,"okraciunas":true,"alexdevero":true},"bugs":{"url":"https://github.com/sasstools/gulp-sass-lint/issues"},"license":"MIT","versions":{"0.1.0-alpha.2":{"name":"gulp-sass-lint","version":"0.1.0-alpha.2","description":"Gulp plugin for Sass Lint","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/sasstools/gulp-sass-lint.git"},"keywords":["gulpplugin","sass","gulp","lint"],"author":{"name":"Sam Richard"},"license":"MIT","bugs":{"url":"https://github.com/sasstools/gulp-sass-lint/issues"},"homepage":"https://github.com/sasstools/gulp-sass-lint#readme","dependencies":{"gulp-util":"^3.0.6","sass-lint":"0.1.0-alpha.1","through2":"^2.0.0"},"devDependencies":{"gulp":"^3.9.0"},"gitHead":"9d02305c68eecbf5fbe4bb748ce0f49db45bd821","_id":"gulp-sass-lint@0.1.0-alpha.2","_shasum":"5730074e3e02cc8e48eb8c2cc9d3dd8c5ded5f80","_from":".","_npmVersion":"2.11.2","_nodeVersion":"0.12.5","_npmUser":{"name":"anonymous","email":"sam@snug.ug"},"dist":{"shasum":"5730074e3e02cc8e48eb8c2cc9d3dd8c5ded5f80","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gulp-sass-lint/-/gulp-sass-lint-0.1.0-alpha.2.tgz","integrity":"sha512-IpIjtDOzPKzRDKkuPObk2g4no6rafGGJSZN6QxKGtS40a/ArHGgGPCKsmX9yhSTW4BT9+v8mRC4ziVszYPhvtQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDmi9KQVbXP0nxLJ/AU4Z8dJ4G09GJxvo6rIRR82X8GvAiEAvGn8/eaaBkBdxgCSOjNqo4rlKPVl/b6EMLvAJ+sO14s="}]},"maintainers":[{"name":"anonymous","email":"sam@snug.ug"}],"directories":{}},"0.1.0-alpha.3":{"name":"gulp-sass-lint","version":"0.1.0-alpha.3","description":"Gulp plugin for Sass Lint","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/sasstools/gulp-sass-lint.git"},"keywords":["gulpplugin","sass","gulp","lint"],"author":{"name":"Sam Richard"},"license":"MIT","bugs":{"url":"https://github.com/sasstools/gulp-sass-lint/issues"},"homepage":"https://github.com/sasstools/gulp-sass-lint#readme","dependencies":{"gulp-util":"^3.0.6","sass-lint":"0.1.0-alpha.1","through2":"^2.0.0"},"devDependencies":{"gulp":"^3.9.0"},"gitHead":"320dcee5e06b79fb812341a99b446aea33a3189e","_id":"gulp-sass-lint@0.1.0-alpha.3","_shasum":"fb814715947e7f12bde2696b4d14153d2fafa1c1","_from":".","_npmVersion":"2.11.2","_nodeVersion":"0.12.5","_npmUser":{"name":"anonymous","email":"sam@snug.ug"},"dist":{"shasum":"fb814715947e7f12bde2696b4d14153d2fafa1c1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gulp-sass-lint/-/gulp-sass-lint-0.1.0-alpha.3.tgz","integrity":"sha512-lekIKkTwGirQAaK4+cBj0dNqo4pN+gZho3q4jlRM8UZTinCLR1S1X7py0o5GLGExqmmw3Xe4zg5jVtHIHKBIjA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCyZTAUpG/3f2a6oxJKaCMcDwXooRZAZO9fi9ikxn6BhwIgX0aGtVXdIQ03gzig2P7mk/vF2QxnuNS/Ny7JLzbsO00="}]},"maintainers":[{"name":"anonymous","email":"sam@snug.ug"}],"directories":{}},"0.1.0-alpha.4":{"name":"gulp-sass-lint","version":"0.1.0-alpha.4","description":"Gulp plugin for Sass Lint","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/sasstools/gulp-sass-lint.git"},"keywords":["gulpplugin","sass","gulp","lint"],"author":{"name":"Sam Richard"},"license":"MIT","bugs":{"url":"https://github.com/sasstools/gulp-sass-lint/issues"},"homepage":"https://github.com/sasstools/gulp-sass-lint#readme","dependencies":{"gulp-util":"^3.0.6","sass-lint":"0.1.0-alpha.4","through2":"^2.0.0"},"devDependencies":{"gulp":"^3.9.0"},"gitHead":"2159dfc88efd366ca00e3e21ed91a3fd4f2004de","_id":"gulp-sass-lint@0.1.0-alpha.4","_shasum":"5ca8c959f3c9cd6b7ebef02536c13b014ff943b9","_from":".","_npmVersion":"2.11.2","_nodeVersion":"0.12.5","_npmUser":{"name":"anonymous","email":"sam@snug.ug"},"dist":{"shasum":"5ca8c959f3c9cd6b7ebef02536c13b014ff943b9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gulp-sass-lint/-/gulp-sass-lint-0.1.0-alpha.4.tgz","integrity":"sha512-zvY57VPNZQY5G7XvnQQR9VNUaujx3d8HDP6dSDIDYJxelPhlYmBZ/O+2Lb6IOpQHXUco1K3UVgQbgTpToAq4yg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBKqMPcwXqKHNIYVlFuL6dCnxvpikZpIHWxvlqYsI1gxAiEAuAThROEqEyUhUj9LR/h55FCbhT0vkUUzWRDqHnHVp2k="}]},"maintainers":[{"name":"anonymous","email":"sam@snug.ug"}],"directories":{}},"0.1.0-alpha.5":{"name":"gulp-sass-lint","version":"0.1.0-alpha.5","description":"Gulp plugin for Sass Lint","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/sasstools/gulp-sass-lint.git"},"keywords":["gulpplugin","sass","gulp","lint"],"author":{"name":"Sam Richard"},"license":"MIT","bugs":{"url":"https://github.com/sasstools/gulp-sass-lint/issues"},"homepage":"https://github.com/sasstools/gulp-sass-lint#readme","dependencies":{"gulp-util":"^3.0.6","sass-lint":"0.1.0-alpha.5","through2":"^2.0.0"},"devDependencies":{"gulp":"^3.9.0"},"gitHead":"ec53cc3b8c97dd40966f3f94cf4a35ba159898fe","_id":"gulp-sass-lint@0.1.0-alpha.5","_shasum":"96241f3377bcf1c4c49c5bfe4e2cd8d209ba29eb","_from":".","_npmVersion":"2.11.2","_nodeVersion":"0.12.5","_npmUser":{"name":"anonymous","email":"sam@snug.ug"},"dist":{"shasum":"96241f3377bcf1c4c49c5bfe4e2cd8d209ba29eb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gulp-sass-lint/-/gulp-sass-lint-0.1.0-alpha.5.tgz","integrity":"sha512-AY4pZ/FLCs+Q5qiQGp3Os0CVGBrglGUoAR/V3R3cpVz5E5SmK+0x1uLdfPgw/FD/9qAt4tkysOIJxd7ouLbKTA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIA8rUrpM4Yb8+925HWoAYrSRW3g5DjOQRPh+fKRhl4hzAiEAtRnnLAMSp6vqFyFugZldSXvBa44GDnDbRQqIwAT1nww="}]},"maintainers":[{"name":"anonymous","email":"sam@snug.ug"}],"directories":{}},"0.1.0-beta.1":{"name":"gulp-sass-lint","version":"0.1.0-beta.1","description":"Gulp plugin for Sass Lint","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/sasstools/gulp-sass-lint.git"},"keywords":["gulpplugin","sass","gulp","lint"],"author":{"name":"Sam Richard"},"license":"MIT","bugs":{"url":"https://github.com/sasstools/gulp-sass-lint/issues"},"homepage":"https://github.com/sasstools/gulp-sass-lint#readme","dependencies":{"gulp-util":"^3.0.6","sass-lint":"0.1.0-beta.1","through2":"^2.0.0"},"devDependencies":{"gulp":"^3.9.0"},"gitHead":"41357fe6ae234cf409a3e7f99a3201c8e073ce79","_id":"gulp-sass-lint@0.1.0-beta.1","_shasum":"04bcbeaf11799e6a6538ea42467127745fa7aba8","_from":".","_npmVersion":"2.11.2","_nodeVersion":"0.12.5","_npmUser":{"name":"anonymous","email":"sam@snug.ug"},"dist":{"shasum":"04bcbeaf11799e6a6538ea42467127745fa7aba8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gulp-sass-lint/-/gulp-sass-lint-0.1.0-beta.1.tgz","integrity":"sha512-lPYTZA5IKAyCxth1d3Y0WSn8DrZrJcFt9oYNUn2GqrhF9ZT4NCK4UCfHRNcKA/pwkcVi6OrWNn8FEKP0AsUj5A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBnlQrWXiWXuFM/6oL8qtz4dwzQwbSEqFVZUwqbELPc2AiEA/bLhUd+KQUCZgsvf0Y2CKbQsVQ4xNEnVaqngR24FB+w="}]},"maintainers":[{"name":"anonymous","email":"sam@snug.ug"}],"directories":{}},"0.1.0-beta.2":{"name":"gulp-sass-lint","version":"0.1.0-beta.2","description":"Gulp plugin for Sass Lint","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/sasstools/gulp-sass-lint.git"},"keywords":["gulpplugin","sass","gulp","lint"],"author":{"name":"Sam Richard"},"license":"MIT","bugs":{"url":"https://github.com/sasstools/gulp-sass-lint/issues"},"homepage":"https://github.com/sasstools/gulp-sass-lint#readme","dependencies":{"gulp-util":"^3.0.6","sass-lint":"0.1.0-beta.2","through2":"^2.0.0"},"devDependencies":{"gulp":"^3.9.0"},"gitHead":"7c1f2d06f7a1a93f01079d3164d372916d942282","_id":"gulp-sass-lint@0.1.0-beta.2","_shasum":"854102e36ecfc2ad64010eb20725f6efe9d08b40","_from":".","_npmVersion":"2.11.2","_nodeVersion":"0.12.5","_npmUser":{"name":"anonymous","email":"sam@snug.ug"},"dist":{"shasum":"854102e36ecfc2ad64010eb20725f6efe9d08b40","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gulp-sass-lint/-/gulp-sass-lint-0.1.0-beta.2.tgz","integrity":"sha512-O/TL7j/igY8FCxL3ZK3ho+Dqstz+u8D1aElDzcnH4DteNoNt8xSOEqvu9FIcS5F+iY6W0yzl/aVLvZA7qiyuew==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCdSMYJmurUyvtzsyQzxkhQrb3mOvvOApf5vmRA1chwHwIhAKa2384cBrKo1tFE1VAC/c0+Pl/cnmnj0V1mHYawb+XH"}]},"maintainers":[{"name":"anonymous","email":"sam@snug.ug"}],"directories":{}},"1.0.0":{"name":"gulp-sass-lint","version":"1.0.0","description":"Gulp plugin for Sass Lint","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/sasstools/gulp-sass-lint.git"},"keywords":["gulpplugin","sass","gulp","lint"],"author":{"name":"Sam Richard"},"license":"MIT","bugs":{"url":"https://github.com/sasstools/gulp-sass-lint/issues"},"homepage":"https://github.com/sasstools/gulp-sass-lint#readme","dependencies":{"gulp-util":"^3.0.6","sass-lint":"0.1.0-beta.2","through2":"^2.0.0"},"devDependencies":{"gulp":"^3.9.0"},"gitHead":"ba99e8f1c46b1bcfd8a09eee583f9136ed4705a6","_id":"gulp-sass-lint@1.0.0","_shasum":"479267588118813016aa17302d06c6d3e2fb9155","_from":".","_npmVersion":"2.11.2","_nodeVersion":"0.12.5","_npmUser":{"name":"anonymous","email":"sam@snug.ug"},"dist":{"shasum":"479267588118813016aa17302d06c6d3e2fb9155","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gulp-sass-lint/-/gulp-sass-lint-1.0.0.tgz","integrity":"sha512-gaFCUtZIMNyHCXvcRRgz3zgc0LSZ5qhWt1iH+0nOXI9OTsMN/GbT0zhzZaxaMSnavoyLJPLWzI+mOtPeaqm1JA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDdPd9qayEPsRzvsd3xpIfF2zRqmgOQmZ15QG2rgzokqAIgDde5Do/TWK3MSjjUuJVriSC/IwhSWZrHtWoYGsyIxDo="}]},"maintainers":[{"name":"anonymous","email":"sam@snug.ug"}],"directories":{}},"1.0.1":{"name":"gulp-sass-lint","version":"1.0.1","description":"Gulp plugin for Sass Lint","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/sasstools/gulp-sass-lint.git"},"keywords":["gulpplugin","sass","gulp","lint"],"author":{"name":"Sam Richard"},"license":"MIT","bugs":{"url":"https://github.com/sasstools/gulp-sass-lint/issues"},"homepage":"https://github.com/sasstools/gulp-sass-lint#readme","dependencies":{"gulp-util":"^3.0.6","sass-lint":"^1.0.0","through2":"^2.0.0"},"devDependencies":{"gulp":"^3.9.0"},"gitHead":"146d6a4be80ad4885b57095191e7ddca6e070055","_id":"gulp-sass-lint@1.0.1","_shasum":"4429776dab91d1630357d5988fe912f607467d65","_from":".","_npmVersion":"2.11.2","_nodeVersion":"0.12.5","_npmUser":{"name":"anonymous","email":"sam@snug.ug"},"dist":{"shasum":"4429776dab91d1630357d5988fe912f607467d65","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gulp-sass-lint/-/gulp-sass-lint-1.0.1.tgz","integrity":"sha512-3kmnhih0xqzBplDrHYk5ZKAlO8Yu2SjDgJ31e0jy/LLza+EGa/0J1W3WL1c7xFjICtmdHz65O6mGKJW5zfO9sg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCc/94REtrS9SP0cALRfgZogJWCA3JfEuKPF5yJ3wP1RwIgIQuSOnPkDtePpSMrPZO18bXVqcUue4He2LEsJvhZUp8="}]},"maintainers":[{"name":"anonymous","email":"sam@snug.ug"}],"directories":{}},"1.1.0":{"name":"gulp-sass-lint","version":"1.1.0","description":"Gulp plugin for Sass Lint","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/sasstools/gulp-sass-lint.git"},"keywords":["gulpplugin","sass","gulp","lint"],"author":{"name":"Sam Richard"},"license":"MIT","bugs":{"url":"https://github.com/sasstools/gulp-sass-lint/issues"},"homepage":"https://github.com/sasstools/gulp-sass-lint#readme","dependencies":{"gulp-util":"^3.0.6","sass-lint":"^1.3.2","through2":"^2.0.0"},"devDependencies":{"gulp":"^3.9.0"},"gitHead":"96d092808f2268607c5368c5fb6a6153780a663c","_id":"gulp-sass-lint@1.1.0","_shasum":"da1a55e42bc1b8a3bd2cb8a13c6dd3f6c97da87f","_from":".","_npmVersion":"2.14.3","_nodeVersion":"4.1.0","_npmUser":{"name":"anonymous","email":"sam@snug.ug"},"dist":{"shasum":"da1a55e42bc1b8a3bd2cb8a13c6dd3f6c97da87f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gulp-sass-lint/-/gulp-sass-lint-1.1.0.tgz","integrity":"sha512-5Mh0XCWXUCf6IGoshP6DDt33aT9izv3fmo8UzGBShbu2j7uj0J7T0VxSzJEdiJ1zmLaUNnaPCKKTeKuHNJsuYw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCeZKmqj7tm8+Jf6W0ckZ5qDxrfs4a23o/hUzpofHXvuQIgVrCzqtdymSSG3mkwjVDm51flRjpsWn8UXzXeTiANz/U="}]},"maintainers":[{"name":"anonymous","email":"sam@snug.ug"}],"directories":{}},"1.1.1":{"name":"gulp-sass-lint","version":"1.1.1","description":"Gulp plugin for Sass Lint","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/sasstools/gulp-sass-lint.git"},"keywords":["gulpplugin","sass","gulp","lint"],"author":{"name":"Sam Richard"},"license":"MIT","bugs":{"url":"https://github.com/sasstools/gulp-sass-lint/issues"},"homepage":"https://github.com/sasstools/gulp-sass-lint#readme","dependencies":{"gulp-util":"^3.0.6","sass-lint":"^1.3.2","through2":"^2.0.0"},"devDependencies":{"gulp":"^3.9.0"},"gitHead":"ae609dc61bd9ae05a80a97c5ef20a497aa414d44","_id":"gulp-sass-lint@1.1.1","_shasum":"c1aefa2419232676db4ff674e8c0ace61afdd899","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.4","_npmUser":{"name":"anonymous","email":"sam@snug.ug"},"dist":{"shasum":"c1aefa2419232676db4ff674e8c0ace61afdd899","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gulp-sass-lint/-/gulp-sass-lint-1.1.1.tgz","integrity":"sha512-idVDa3+F3K5k69siiqH7uYv2aYsUsmyNJkMxyd3fDvthVFd9fbmbskzuuAufYp5jKTViOmw+s2KK6tYElpvggw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDL8C7AHAoW9Tz+egoMvnSu5C2EfALpv5muNDJWoMPSxQIgS4TrwKIzWjIKmCgmW99N/HXNA7aLVKzL7AoDVUa6VJM="}]},"maintainers":[{"name":"anonymous","email":"sam@snug.ug"}],"directories":{}},"1.2.0":{"name":"gulp-sass-lint","version":"1.2.0","description":"Gulp plugin for Sass Lint","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/sasstools/gulp-sass-lint.git"},"keywords":["gulpplugin","sass","gulp","lint"],"author":{"name":"Sam Richard"},"license":"MIT","bugs":{"url":"https://github.com/sasstools/gulp-sass-lint/issues"},"homepage":"https://github.com/sasstools/gulp-sass-lint#readme","dependencies":{"gulp-util":"^3.0.6","sass-lint":"^1.8.0","through2":"^2.0.0"},"devDependencies":{"gulp":"^3.9.0"},"gitHead":"e898fc9fbec45a67fd95f6c79850f6f8b2b67023","_id":"gulp-sass-lint@1.2.0","_shasum":"3237123f79aaffaa613c759fbd0bdf3f75b6be3c","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.11.1","_npmUser":{"name":"anonymous","email":"sam@snug.ug"},"dist":{"shasum":"3237123f79aaffaa613c759fbd0bdf3f75b6be3c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gulp-sass-lint/-/gulp-sass-lint-1.2.0.tgz","integrity":"sha512-/pRCF57pzj5SB3BpZ5pQe/SR9pNq5o9iJrdghh50mLRUW3LKb3d2wZsU97bdrWA/X4ZX4f966sbJ4Ya0l1jcKg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDGgG3JgA+PsBHEzTHznvhQgUmh4xKI/ZaNuLkWrh2nbQIgEk+3Qv6LWVRvNGJ4F/z1aJMh1xxDRwrus/XBB6VZUlw="}]},"maintainers":[{"name":"anonymous","email":"sam@snug.ug"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/gulp-sass-lint-1.2.0.tgz_1466174244899_0.15534060541540384"},"directories":{}},"1.3.0":{"name":"gulp-sass-lint","version":"1.3.0","description":"Gulp plugin for Sass Lint","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/sasstools/gulp-sass-lint.git"},"keywords":["gulpplugin","sass","gulp","lint"],"author":{"name":"Sam Richard"},"license":"MIT","bugs":{"url":"https://github.com/sasstools/gulp-sass-lint/issues"},"homepage":"https://github.com/sasstools/gulp-sass-lint#readme","dependencies":{"gulp-util":"^3.0.6","sass-lint":"^1.10.0","through2":"^2.0.0"},"devDependencies":{"gulp":"^3.9.0"},"gitHead":"5eee8e97a12a7440d975b9b041e8508e814498bf","_id":"gulp-sass-lint@1.3.0","_shasum":"8c5a43a05b74e59980ac2c1d0c1f67149f56aa02","_from":".","_npmVersion":"3.10.6","_nodeVersion":"6.4.0","_npmUser":{"name":"anonymous","email":"danjpurdy@gmail.com"},"dist":{"shasum":"8c5a43a05b74e59980ac2c1d0c1f67149f56aa02","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gulp-sass-lint/-/gulp-sass-lint-1.3.0.tgz","integrity":"sha512-+W9h7ZSEUbzR+JR4idfjkzWmHhzP3ukhz3Ks0LHLrNs5hmhkykr1Uo/Dhigb0UIvZGZQqL3Q8nKiAOenA11cdQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC5POK+VMb+NMUDWf9FES/F11mL2liS4udb2BxrJpfBQAIgFLkLeKOXtbNd/AK2LPTUtrowJ6CsNDEh+cw2xsZrRpA="}]},"maintainers":[{"name":"anonymous","email":"danjpurdy@gmail.com"},{"name":"anonymous","email":"sam@snug.ug"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/gulp-sass-lint-1.3.0.tgz_1478520840934_0.8425110070966184"},"directories":{}},"1.3.1":{"name":"gulp-sass-lint","version":"1.3.1","description":"Gulp plugin for Sass Lint","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/sasstools/gulp-sass-lint.git"},"keywords":["gulpplugin","sass","gulp","lint"],"author":{"name":"Sam Richard"},"license":"MIT","bugs":{"url":"https://github.com/sasstools/gulp-sass-lint/issues"},"homepage":"https://github.com/sasstools/gulp-sass-lint#readme","dependencies":{"gulp-util":"^3.0.6","sass-lint":"^1.10.1","through2":"^2.0.0"},"devDependencies":{"gulp":"^3.9.0"},"gitHead":"3865cb8d883e6c6968f9f37bc783b2d4c6486b83","_id":"gulp-sass-lint@1.3.1","_shasum":"9151d2e7546131d3e4314112eaa8107591ccd48a","_from":".","_npmVersion":"3.10.6","_nodeVersion":"6.4.0","_npmUser":{"name":"anonymous","email":"danjpurdy@gmail.com"},"dist":{"shasum":"9151d2e7546131d3e4314112eaa8107591ccd48a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gulp-sass-lint/-/gulp-sass-lint-1.3.1.tgz","integrity":"sha512-GGZL9BeWM5e0hSCFhIJX+IKinwq5KfhT9o7WYUO9MWqbWuSEps+FBIH8TclEOBX87tkXfJypVo2+VpMYLZSsyA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIA80QG9K9wvCWrNa/5svnOdtDzr4+jGyTMCyqPAgKHJ8AiAHA5kxM2/4XNnxINIsMXtUHZKu1rlp7JAvDfIGONCGsA=="}]},"maintainers":[{"name":"anonymous","email":"danjpurdy@gmail.com"},{"name":"anonymous","email":"sam@snug.ug"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/gulp-sass-lint-1.3.1.tgz_1478533833150_0.5430993139743805"},"directories":{}},"1.3.2":{"name":"gulp-sass-lint","version":"1.3.2","description":"Gulp plugin for Sass Lint","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/sasstools/gulp-sass-lint.git"},"keywords":["gulpplugin","sass","gulp","lint"],"author":{"name":"Sam Richard"},"license":"MIT","bugs":{"url":"https://github.com/sasstools/gulp-sass-lint/issues"},"homepage":"https://github.com/sasstools/gulp-sass-lint#readme","dependencies":{"gulp-util":"^3.0.6","sass-lint":"^1.10.2","through2":"^2.0.0"},"devDependencies":{"gulp":"^3.9.0"},"gitHead":"18004a712957dde7d39104663deff5f28560f5c0","_id":"gulp-sass-lint@1.3.2","_shasum":"642094c5fe9b9196872f33a0d1f75ccf51cb8361","_from":".","_npmVersion":"3.10.6","_nodeVersion":"6.4.0","_npmUser":{"name":"anonymous","email":"danjpurdy@gmail.com"},"dist":{"shasum":"642094c5fe9b9196872f33a0d1f75ccf51cb8361","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gulp-sass-lint/-/gulp-sass-lint-1.3.2.tgz","integrity":"sha512-50YK2AqU1ZqVA8XEga+Rc20JWco9Z0LmkKXazb/uKbgwrFSx6m28EaMfHlk3v5PpZgp013AOPF2nm9Ev5UeLXg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD+X4l9oo3Y4b1jDG/A3LMZNj7T2TocPPvtVKyz/HGqQgIgUpPYKHCpuykVhMjlr3wrLScBdZo4J6i/uh3pbxqNE4w="}]},"maintainers":[{"name":"anonymous","email":"danjpurdy@gmail.com"},{"name":"anonymous","email":"sam@snug.ug"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/gulp-sass-lint-1.3.2.tgz_1478686056351_0.9149334244430065"},"directories":{}},"1.3.3":{"name":"gulp-sass-lint","version":"1.3.3","description":"Gulp plugin for Sass Lint","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/sasstools/gulp-sass-lint.git"},"keywords":["gulpplugin","sass","gulp","lint"],"author":{"name":"Sam Richard"},"license":"MIT","bugs":{"url":"https://github.com/sasstools/gulp-sass-lint/issues"},"homepage":"https://github.com/sasstools/gulp-sass-lint#readme","dependencies":{"gulp-util":"^3.0.6","sass-lint":"^1.11.0","through2":"^2.0.2"},"devDependencies":{"gulp":"^3.9.0"},"gitHead":"85b66057ff4a8c45b9b2c9c6c4f5d2342319d3ce","_id":"gulp-sass-lint@1.3.3","_shasum":"f879d423e517a2872a8902466c0dec8146dc7874","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"anonymous","email":"danjpurdy@gmail.com"},"dist":{"shasum":"f879d423e517a2872a8902466c0dec8146dc7874","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gulp-sass-lint/-/gulp-sass-lint-1.3.3.tgz","integrity":"sha512-qnrnSRRhX8Jm6SUTrQzHC6etakQtD4wFkwT9VCbqcEQoB2TofyUxyrZhuNY6U8RA38LxutAzrDre2Tsz32BbBA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEuuSNOextRWyL3+Q2G21jBsATzJ2zVxdQ0/f3gvHBlHAiADh+A4MdV22B9ulYVzQoGwqtQSDi8SONlGPh57+r3hMw=="}]},"maintainers":[{"name":"anonymous","email":"danjpurdy@gmail.com"},{"name":"anonymous","email":"sam@snug.ug"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/gulp-sass-lint-1.3.3.tgz_1503878096416_0.43358741281554103"},"directories":{}},"1.3.4":{"name":"gulp-sass-lint","version":"1.3.4","description":"Gulp plugin for Sass Lint","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/sasstools/gulp-sass-lint.git"},"keywords":["gulpplugin","sass","gulp","lint"],"author":{"name":"Sam Richard"},"license":"MIT","bugs":{"url":"https://github.com/sasstools/gulp-sass-lint/issues"},"homepage":"https://github.com/sasstools/gulp-sass-lint#readme","dependencies":{"gulp-util":"^3.0.6","sass-lint":"^1.12.0","through2":"^2.0.2"},"devDependencies":{"gulp":"^3.9.0"},"gitHead":"ffc78ce02c12f6d89f7d0403dfaebe621f99afa8","_id":"gulp-sass-lint@1.3.4","_npmVersion":"5.3.0","_nodeVersion":"8.5.0","_npmUser":{"name":"anonymous","email":"danjpurdy@gmail.com"},"dist":{"integrity":"sha512-HjRwdVueJOQKV0+wVT3Ld5HFRk9fELXIHllQPS4cU9C2SC9RKIfExT7/RLDegZ2cQXeFRkVii4GFw4WnzV+epQ==","shasum":"a9950c2dd050fd00fbf2ebc063016434a22100e2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gulp-sass-lint/-/gulp-sass-lint-1.3.4.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDoo/1y0V98U8dh+4g55mYh040/4LwAfMuzsqHeW4cGOQIgQItenftyPGHVl6OmJ/VlzZpG+aOHXlBdP/RdVjo4AQE="}]},"maintainers":[{"name":"anonymous","email":"danjpurdy@gmail.com"},{"name":"anonymous","email":"sam@snug.ug"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/gulp-sass-lint-1.3.4.tgz_1506992835768_0.6866736945230514"},"directories":{}},"1.4.0":{"name":"gulp-sass-lint","version":"1.4.0","description":"Gulp plugin for Sass Lint","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/sasstools/gulp-sass-lint.git"},"keywords":["gulpplugin","sass","gulp","lint"],"author":{"name":"Sam Richard"},"license":"MIT","bugs":{"url":"https://github.com/sasstools/gulp-sass-lint/issues"},"homepage":"https://github.com/sasstools/gulp-sass-lint#readme","dependencies":{"plugin-error":"^0.1.2","sass-lint":"^1.12.0","through2":"^2.0.2"},"devDependencies":{"gulp":"^3.9.0"},"gitHead":"4659cabaf539525428c2ae2050626e7c4ff943fc","_id":"gulp-sass-lint@1.4.0","_npmVersion":"5.10.0","_nodeVersion":"8.7.0","_npmUser":{"name":"anonymous","email":"xzyfer@gmail.com"},"dist":{"integrity":"sha512-XerYvHx7rznInkedMw5Ayif+p8EhysOVHUBvlgUa0FSl88H2cjNjaRZ3NGn5Efmp+2HxpXp4NHqMIbOSdwef3A==","shasum":"6f7096c5abcbc0ce99ddf060c9e1a99067a47ebe","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gulp-sass-lint/-/gulp-sass-lint-1.4.0.tgz","fileCount":9,"unpackedSize":12790,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbBDO+CRA9TVsSAnZWagAAm4wP/3TDmEuKzptYhUITgtVD\noTw/QEJ9jf0A6BClXhMR4mNURpb5Jh2NddVoMe2EF09HnXbPdhKOdhbtBoAv\n4cr6KTGkX4SyDA/7sKqAAJe7iNTnoleMECUH+v8A8RI+fPJZtYvOmvQWcpfr\neEM1b0n8W0o2N132LG4j0OfA5nCBRCHdm90G0jPwE7++sK4q+43L15ZdO7sR\nQ6Gtv0iaxnXqgRivWcOWQs4ZqdFisQnOQVR0R4n3Hww1wx4Xrm+4b48ZgM9u\nW+RRaulfkcwDxLud62kFCiydDhJQSqyzCcg6RhFZJ3itjn6fz7qpBKY7DjXn\n7m50QLEFDfhqgrLXmxZDrAWOmK7LCtFPGL1iuWT2ab0cPC9sY9vvh+k0EL9q\nmySKo5JVDQz52ELlKSY+AXhdCb+darYxBFGd1KTPk/kAXpJP39j9E9Xg2/mA\nYVZs24XKwSa0aPzvw8k1oMXcJb+V9ixpZtyhFQrQG6sJ83JjjpF9t3vhKiZM\n9VQPDWofXTdcHVlLDniTYpRUVmxSVex9NRO7tcadRbd1K6WbHgqyYuAW3yqS\nfzTfWyYFC0pFQjwvhJIDnU6/1pusUO2oEyar4bbDhG8TIiqauvKfX+RqZVqB\nDsIwsiIhQP9SyQvlebf0jeG9bfaXBjFjwmuJn6poZzwu3EY1xMSWSOH8cMp0\nqewC\r\n=7fRY\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDwmHWYroeCQGz0jdsd6Kq4bPlxZI72cJgozbpw5gg1uAiEA7bpcqJM+KJeaYQ7vJGDRhBULvmE7fW/RL1s2aV2+EdY="}]},"maintainers":[{"name":"anonymous","email":"danjpurdy@gmail.com"},{"name":"anonymous","email":"sam@snug.ug"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/gulp-sass-lint_1.4.0_1527002045966_0.18809622645322777"},"_hasShrinkwrap":false}},"name":"gulp-sass-lint","time":{"modified":"2022-06-18T17:55:42.694Z","created":"2015-08-18T00:53:42.321Z","0.1.0-alpha.2":"2015-08-18T00:53:42.321Z","0.1.0-alpha.3":"2015-08-19T17:58:00.425Z","0.1.0-alpha.4":"2015-08-20T19:30:07.069Z","0.1.0-alpha.5":"2015-08-24T16:06:38.643Z","0.1.0-beta.1":"2015-08-26T23:23:03.149Z","0.1.0-beta.2":"2015-08-28T12:10:52.913Z","1.0.0":"2015-08-29T18:10:48.837Z","1.0.1":"2015-08-30T15:47:11.678Z","1.1.0":"2015-11-10T22:43:20.391Z","1.1.1":"2016-01-07T18:08:35.735Z","1.2.0":"2016-06-17T14:37:27.529Z","1.3.0":"2016-11-07T12:14:03.135Z","1.3.1":"2016-11-07T15:50:35.063Z","1.3.2":"2016-11-09T10:07:38.047Z","1.3.3":"2017-08-27T23:54:57.464Z","1.3.4":"2017-10-03T01:07:17.035Z","1.4.0":"2018-05-22T15:14:06.025Z"},"readmeFilename":"README.md","homepage":"https://github.com/sasstools/gulp-sass-lint#readme"}