{"_id":"gulp-lintspaces","_rev":"30-4068fb0910324c402b9dff268d3a6685","name":"gulp-lintspaces","time":{"modified":"2022-06-18T17:27:37.016Z","created":"2014-04-04T13:19:58.639Z","0.1.0":"2014-04-04T13:19:58.639Z","0.2.0":"2014-04-14T09:46:00.384Z","0.2.1":"2014-05-22T12:12:52.821Z","0.2.2":"2014-09-18T13:15:15.623Z","0.2.3":"2015-01-29T18:55:08.160Z","0.3.0":"2015-05-19T17:52:51.776Z","0.3.1":"2015-09-22T08:21:40.523Z","0.3.2":"2015-11-12T14:57:46.256Z","0.3.3":"2015-11-16T11:13:20.845Z","0.2.5":"2015-11-17T12:19:48.349Z","0.3.4":"2015-11-20T09:39:59.800Z","0.4.0":"2016-02-01T16:43:07.221Z","0.4.1":"2016-02-02T10:38:14.119Z","0.5.0":"2016-10-11T10:55:07.621Z","1.0.0":"2018-04-11T17:44:56.539Z","1.0.1":"2019-01-16T17:17:15.099Z"},"maintainers":[{"name":"albertoelias","email":"me@alberto-elias.com"}],"dist-tags":{"latest":"1.0.1"},"description":"gulp plugin for lintspaces","readme":"gulp-lintspaces\n===============\n\n# **This project is not actively maintained**\n\nA thin wrapper of [lintspaces](https://github.com/schorfES/node-lintspaces)\n\nIf you're looking for a [gruntjs](http://gruntjs.com/) task to validate your\nfiles, take a look at this one:\n\n* [grunt-lintspaces](https://github.com/schorfES/grunt-lintspaces)\n\n## Installation\n\nThis package is available on [npm](https://www.npmjs.org/package/gulp-lintspaces)\nas: `gulp-lintspaces`\n\n``` sh\n\tnpm install gulp-lintspaces\n```\n\n## Usage\n\n```javascript\nvar gulp = require(\"gulp\");\nvar lintspaces = require(\"gulp-lintspaces\");\n\ngulp.task(\"YOURTASK\", function() {\n    return gulp.src(\"**/*.js\")\n        .pipe(lintspaces(/* options */))\n        .pipe(lintspaces.reporter());\n});\n```\n\n## Options\n\n### newline at end of file option\n\nTests for newlines at the end of all files. Default value is `false`.\n\n```javascript\n\tnewline: true\n```\n\n### maximum newlines option\n\nTest for the maximum amount of newlines between code blocks. Default value is\n`false`. To enable this validation a number larger than `0` is expected.\n\n```javascript\n\tnewlineMaximum: 2\n```\n\n### trailingspaces option\n\nTests for useless whitespaces (trailing whitespaces) at each lineending of all\nfiles. Default value is `false`.\n\n```javascript\n\ttrailingspaces: true\n```\n\n### indentation options\n\nTests for correct indentation using tabs or spaces. Default value is `false`.\nTo enable indentation check use the value `'tabs'` or `'spaces'`.\n\n```javascript\n\tindentation: 'tabs'\n```\n\nIf the indentation option is set to `'spaces'`, there is also the possibility\nto set the amount of spaces per indentation using the `spaces` option. Default value is `4`.\n\n```javascript\n\tindentation: 'spaces',\n\tspaces: 2\n```\n\n### ignores option\n\nUse the `ignores` option when special lines such as comments should be ignored.\nProvide an array of regular expressions to the `ignores` property.\n\n```javascript\n\tignores: [\n\t\t/\\/\\*[\\s\\S]*?\\*\\//g,\n\t\t/foo bar/g\n\t]\n```\n\nThere are some _**build in**_ ignores for comments which you can apply by using\nthese strings:\n\n* 'js-comments'\n* 'c-comments'\n* 'java-comments'\n* 'as-comments'\n* 'xml-comments'\n* 'html-comments'\n* 'python-comments'\n* 'ruby-comments'\n* 'applescript-comments'\n\n_(build in strings and userdefined regular expressions are mixable in the\n`ignores` array)_\n\n```javascript\n\tignores: [\n\t\t'js-comments',\n\t\t/foo bar/g\n\t]\n```\n\n**Feel free to contribute some new regular expressions as build in!**\n\n### .editorconfig option\n\nIt's possible to overwrite the default and given options by setting up a path\nto an external editorconfig file by unsing the `editorconfig`option. For a basic\nconfiguration of a _.editorconfig_ file check out the\n[EditorConfig Documentation](http://editorconfig.org/).\n\n```javascript\n\teditorconfig: '.editorconfig'\n```\n\nThe following .editorconfig values are supported:\n\n* `insert_final_newline` will check if a newline is set\n* `indent_style` will check the indentation\n* `indent_size` will check the amount of spaces\n* `trim_trailing_whitespace` will check for useless whitespaces\n\n## Contribution\n\nFeel free to contribute. Please run all the tests and validation tasks befor\nyou offer a pull request.\n\n### Tests & validation\n\nRun ```make test``` to run the tests and validation tasks.\n\n## License\n\nThis is a fork of the original `gulp-lintspaces` by [@ck86](https://github.com/ck86) which was deleted from Github and npm.\n\n[LICENSE (MIT)](https://github.com/AlbertoElias/gulp-lintspaces/blob/master/LICENSE)\n","versions":{"0.3.2":{"name":"gulp-lintspaces","version":"0.3.2","description":"gulp plugin for lintspaces","main":"index.js","repository":{"type":"git","url":"git+https://github.com/ck86/gulp-lintspaces.git"},"scripts":{"test":"make test"},"keywords":["gulpplugin","validation","lint","spaces","trailingspaces","indent","indentation","newlines","eof","eol"],"author":{"name":"Christopher Knötschke","email":"cknoetschke@gmail.com"},"license":"MIT","dependencies":{"gulp-util":"^2.2.14","event-stream":"^3.1.1","lintspaces":"^0.3.2"},"devDependencies":{"should":"^3.2.0","map-stream":"^0.1.0","mocha":"^1.18.2","gulp-mocha":"^0.4.1","gulp-jscs":"^0.4.0","gulp-jshint":"^1.5.3","gulp":"^3.6.0","gulp-clean":"^0.2.4","gulp-concat":"^2.2.0"},"bugs":{"url":"https://github.com/ck86/gulp-lintspaces/issues"},"maintainers":[{"name":"albertoelias","email":"me@alberto-elias.com"}],"gitHead":"ecc96b495727db83f7165f6bca0e48a6915da01c","homepage":"https://github.com/ck86/gulp-lintspaces","_id":"gulp-lintspaces@0.3.2","_shasum":"8939271dc4c83e8a4026b1380bca658cf508aba3","_from":".","_npmVersion":"2.14.2","_nodeVersion":"4.0.0","_npmUser":{"name":"albertoelias","email":"me@alberto-elias.com"},"dist":{"shasum":"8939271dc4c83e8a4026b1380bca658cf508aba3","tarball":"https://registry.npmjs.org/gulp-lintspaces/-/gulp-lintspaces-0.3.2.tgz","integrity":"sha512-Je7EKHuKkmHCQhQmprUgN19gPJuWTtuEFTyvMcelKIwg34CcgRkrAlRuGTVrbcuV0moqI+ATeNwlmmmwnQ+raA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCfWSLGzDp9ebKrO9rgPSwNURLQXhFbSTrjVapdqLKeAAIhAN3iq6KVcumXnSkYkfW9mzPbN7UjvRx0V/kozhfcjFBZ"}]},"directories":{}},"0.3.3":{"name":"gulp-lintspaces","version":"0.3.3","description":"gulp plugin for lintspaces","main":"index.js","repository":{"type":"git","url":"git+https://github.com/AlbertoElias/gulp-lintspaces.git"},"scripts":{"test":"make test"},"keywords":["gulpplugin","validation","lint","spaces","trailingspaces","indent","indentation","newlines","eof","eol"],"author":{"name":"Christopher Knötschke","email":"cknoetschke@gmail.com"},"license":"MIT","dependencies":{"gulp-util":"^2.2.14","event-stream":"^3.1.1","lintspaces":"^0.3.2"},"devDependencies":{"should":"^3.2.0","map-stream":"^0.1.0","mocha":"^1.18.2","gulp-mocha":"^0.4.1","gulp-jscs":"^0.4.0","gulp-jshint":"^1.5.3","gulp":"^3.6.0"},"bugs":{"url":"https://github.com/AlbertoElias/gulp-lintspaces/issues"},"maintainers":[{"name":"albertoelias","email":"me@alberto-elias.com"}],"gitHead":"bb4d6fb6314c3bf45df9df9c2b1c56dbd89a00ec","homepage":"https://github.com/AlbertoElias/gulp-lintspaces","_id":"gulp-lintspaces@0.3.3","_shasum":"88b5e3501894cb7a960ed5dd3098f2005424197b","_from":".","_npmVersion":"2.14.2","_nodeVersion":"4.0.0","_npmUser":{"name":"albertoelias","email":"me@alberto-elias.com"},"dist":{"shasum":"88b5e3501894cb7a960ed5dd3098f2005424197b","tarball":"https://registry.npmjs.org/gulp-lintspaces/-/gulp-lintspaces-0.3.3.tgz","integrity":"sha512-CLTb7ANx/z/5VT/t+Tzi4qc67UPeN2VOZTByeh120Vj6txfHvNLzSeX0q0P5MoGWMsO/Yq+7USXpt/cBovFjjA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDCbOtJTiH2IFnjAz7hB1KrKccWlOaLEb2i5c1Fz+1V+wIgFPnIkpbO1bgYx9aTKvaiX9+13dimsd4s8uDHbHR+Ie0="}]},"directories":{}},"0.2.5":{"name":"gulp-lintspaces","version":"0.2.5","description":"gulp plugin for lintspaces","main":"index.js","repository":{"type":"git","url":"git+https://github.com/AlbertoElias/gulp-lintspaces.git"},"scripts":{"test":"make test"},"keywords":["gulpplugin","validation","lint","spaces","trailingspaces","indent","indentation","newlines","eof","eol"],"author":{"name":"Christopher Knötschke","email":"cknoetschke@gmail.com"},"license":"MIT","dependencies":{"gulp-util":"^2.2.14","event-stream":"^3.1.1","lintspaces":"^0.3.2"},"devDependencies":{"should":"^3.2.0","map-stream":"^0.1.0","mocha":"^1.18.2","gulp-mocha":"^0.4.1","gulp-jscs":"^0.4.0","gulp-jshint":"^1.5.3","gulp":"^3.6.0"},"bugs":{"url":"https://github.com/AlbertoElias/gulp-lintspaces/issues"},"maintainers":[{"name":"albertoelias","email":"me@alberto-elias.com"}],"gitHead":"6513e1d5e280729c44db5266ab4a50f67d550fbf","homepage":"https://github.com/AlbertoElias/gulp-lintspaces","_id":"gulp-lintspaces@0.2.5","_shasum":"2aa495006b1272ab05e63e613018006b2f8437ce","_from":".","_npmVersion":"2.14.2","_nodeVersion":"4.0.0","_npmUser":{"name":"albertoelias","email":"me@alberto-elias.com"},"dist":{"shasum":"2aa495006b1272ab05e63e613018006b2f8437ce","tarball":"https://registry.npmjs.org/gulp-lintspaces/-/gulp-lintspaces-0.2.5.tgz","integrity":"sha512-5Sa2QjtNzhloCtFZXOz8nCzoYtLZmUhczhVCXVs7Cm9DZKY4CroG+lOiddQznITWYTd4g6Wuc1uyNrL2Fx2tfw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCt9stY8pjjtjyW6ihuZA1FGm2qsEnfB6roNcyNusmbswIgdGayD84ngZFQGKuvMA0x5ZcRC1gJi1O16gsF8c+XEt4="}]},"directories":{}},"0.3.4":{"name":"gulp-lintspaces","version":"0.3.4","description":"gulp plugin for lintspaces","main":"index.js","repository":{"type":"git","url":"git+https://github.com/AlbertoElias/gulp-lintspaces.git"},"scripts":{"test":"make test"},"keywords":["gulpplugin","validation","lint","spaces","trailingspaces","indent","indentation","newlines","eof","eol"],"author":{"name":"Christopher Knötschke","email":"cknoetschke@gmail.com"},"license":"MIT","dependencies":{"gulp-util":"^2.2.14","event-stream":"^3.1.1","lintspaces":"^0.3.2"},"devDependencies":{"should":"^3.2.0","map-stream":"^0.1.0","mocha":"^1.18.2","gulp-mocha":"^0.4.1","gulp-jscs":"^0.4.0","gulp-jshint":"^1.5.3","gulp":"^3.6.0"},"bugs":{"url":"https://github.com/AlbertoElias/gulp-lintspaces/issues"},"maintainers":[{"name":"albertoelias","email":"me@alberto-elias.com"}],"gitHead":"e1675046e6dc5616e950b67d998fc6b10225cc08","homepage":"https://github.com/AlbertoElias/gulp-lintspaces","_id":"gulp-lintspaces@0.3.4","_shasum":"b2e91ba3e5fed5251ee0e286ab085db939739749","_from":".","_npmVersion":"2.14.2","_nodeVersion":"4.0.0","_npmUser":{"name":"albertoelias","email":"me@alberto-elias.com"},"dist":{"shasum":"b2e91ba3e5fed5251ee0e286ab085db939739749","tarball":"https://registry.npmjs.org/gulp-lintspaces/-/gulp-lintspaces-0.3.4.tgz","integrity":"sha512-oo1JVABGOahDChc2J0o5qkrQAEdLZdOAuJeaIqKpNkae8pws26oSjT+RCftC259PQcv2tjcqq/h17eM7aGfgiw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGEftYJqmvuLlGx2nqGT12okLd1HxIVF19s29Qo4X9FDAiAPW26W3kmL4AdzsZW11kmQw/0JZZPJWiFT9MqkM1WVnQ=="}]},"directories":{}},"0.4.0":{"name":"gulp-lintspaces","version":"0.4.0","description":"gulp plugin for lintspaces","main":"index.js","repository":{"type":"git","url":"git+https://github.com/AlbertoElias/gulp-lintspaces.git"},"scripts":{"test":"make test"},"keywords":["gulpplugin","validation","lint","spaces","trailingspaces","indent","indentation","newlines","eof","eol"],"author":{"name":"Christopher Knötschke","email":"cknoetschke@gmail.com"},"license":"MIT","dependencies":{"app-root-path":"^1.0.0","colors":"^1.0.3","event-stream":"^3.1.1","gulp-util":"^2.2.14","lintspaces":"^0.3.2","log-symbols":"^1.0.2","path":"^0.11.14"},"devDependencies":{"should":"^3.2.0","map-stream":"^0.1.0","mocha":"^1.18.2","gulp-mocha":"^0.4.1","gulp-jscs":"^0.4.0","gulp-jshint":"^1.5.3","gulp":"^3.6.0"},"bugs":{"url":"https://github.com/AlbertoElias/gulp-lintspaces/issues"},"maintainers":[{"name":"albertoelias","email":"me@alberto-elias.com"}],"gitHead":"4242a40baeb91af947cd418eae6774d3028c26b8","homepage":"https://github.com/AlbertoElias/gulp-lintspaces#readme","_id":"gulp-lintspaces@0.4.0","_shasum":"7617a36ad7a0b6a46e1534a2941628c6eda2989d","_from":".","_npmVersion":"2.14.14","_nodeVersion":"5.1.1","_npmUser":{"name":"albertoelias","email":"me@alberto-elias.com"},"dist":{"shasum":"7617a36ad7a0b6a46e1534a2941628c6eda2989d","tarball":"https://registry.npmjs.org/gulp-lintspaces/-/gulp-lintspaces-0.4.0.tgz","integrity":"sha512-g94FCtM15eXzJTLSlJfjB4DI97n86fAnegohcIJfYvuOuboIiB/Dd4CVhOEyv8odJ5fi3+KD78RW9Pgz47TkNw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDV65mhswzpgtrRnVAiDMwsqOfTh83fcjeEVAMIrcL3TAIgLsyQOL9vqC196MEm4OSLO0HQE3bPwSHun/8X8V3JYyw="}]},"directories":{}},"0.4.1":{"name":"gulp-lintspaces","version":"0.4.1","description":"gulp plugin for lintspaces","main":"index.js","repository":{"type":"git","url":"git+https://github.com/AlbertoElias/gulp-lintspaces.git"},"scripts":{"test":"make test"},"keywords":["gulpplugin","validation","lint","spaces","trailingspaces","indent","indentation","newlines","eof","eol"],"author":{"name":"Christopher Knötschke","email":"cknoetschke@gmail.com"},"license":"MIT","dependencies":{"app-root-path":"^1.0.0","colors":"^1.0.3","event-stream":"^3.1.1","gulp-util":"^2.2.14","lintspaces":"^0.3.2","log-symbols":"^1.0.2","path":"^0.11.14"},"devDependencies":{"should":"^3.2.0","map-stream":"^0.1.0","mocha":"^1.18.2","gulp-mocha":"^0.4.1","gulp-jscs":"^0.4.0","gulp-jshint":"^1.5.3","gulp":"^3.6.0"},"bugs":{"url":"https://github.com/AlbertoElias/gulp-lintspaces/issues"},"maintainers":[{"name":"albertoelias","email":"me@alberto-elias.com"}],"gitHead":"9b1bf75cf784f0a8fc5e9cb9316144c0dd71ec70","homepage":"https://github.com/AlbertoElias/gulp-lintspaces#readme","_id":"gulp-lintspaces@0.4.1","_shasum":"30ec7b14bf09964b22e06636dea9aa6817b54dc9","_from":".","_npmVersion":"2.14.14","_nodeVersion":"5.1.1","_npmUser":{"name":"albertoelias","email":"me@alberto-elias.com"},"dist":{"shasum":"30ec7b14bf09964b22e06636dea9aa6817b54dc9","tarball":"https://registry.npmjs.org/gulp-lintspaces/-/gulp-lintspaces-0.4.1.tgz","integrity":"sha512-jQiyC6fHr2Wfw/XyhwGW6Kq44EzTZhwfgI2+9CbmXNexUatbwKSqZUNLtuMdd03N2bQgEPq6danIpifH4qCX5w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICYg1eBlENPHHC6l03TbkHB+/7UL08AvSataGJwpNddqAiBzUtA2W90i+qMS1thKdthFaTkS4135rvnTk6TAGwPbSw=="}]},"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/gulp-lintspaces-0.4.1.tgz_1454409491590_0.7943520597182214"},"directories":{}},"0.5.0":{"name":"gulp-lintspaces","version":"0.5.0","description":"gulp plugin for lintspaces","main":"index.js","repository":{"type":"git","url":"git+https://github.com/AlbertoElias/gulp-lintspaces.git"},"scripts":{"test":"make test"},"keywords":["gulpplugin","validation","lint","spaces","trailingspaces","indent","indentation","newlines","eof","eol"],"author":{"name":"Christopher Knötschke","email":"cknoetschke@gmail.com"},"license":"MIT","dependencies":{"app-root-path":"^1.0.0","colors":"^1.0.3","event-stream":"^3.1.1","gulp-util":"^2.2.14","lintspaces":"^0.5.0","log-symbols":"^1.0.2","path":"^0.11.14"},"devDependencies":{"should":"^3.2.0","map-stream":"^0.1.0","mocha":"^1.18.2","gulp-mocha":"^0.4.1","gulp-jscs":"^0.4.0","gulp-jshint":"^1.5.3","gulp":"^3.6.0"},"bugs":{"url":"https://github.com/AlbertoElias/gulp-lintspaces/issues"},"maintainers":[{"name":"albertoelias","email":"me@alberto-elias.com"}],"gitHead":"9f288db674df7a0fe31e7c3e6b2593fb8c5d3165","homepage":"https://github.com/AlbertoElias/gulp-lintspaces#readme","_id":"gulp-lintspaces@0.5.0","_shasum":"9805dd78fb615a61c33b11ad376718a944763c39","_from":".","_npmVersion":"3.8.3","_nodeVersion":"5.10.0","_npmUser":{"name":"albertoelias","email":"me@alberto-elias.com"},"dist":{"shasum":"9805dd78fb615a61c33b11ad376718a944763c39","tarball":"https://registry.npmjs.org/gulp-lintspaces/-/gulp-lintspaces-0.5.0.tgz","integrity":"sha512-8JMa/8O4fGcycUk0ifMEIIIiWvvKz+h0ypaR2meXSRig1c/SKiltxpSH9XmwJ193mvoIVyCbKYhn3uWoNY6s+w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIG60e5clfVFyvcMqDvFHJh3GXIY3zKNWwrkoRYtte9mFAiBu6HMAm/boBqnXjfoQ+Jwi+JDJpgDRpaQIoVaRb7aSHw=="}]},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/gulp-lintspaces-0.5.0.tgz_1476183306974_0.3700005414430052"},"directories":{}},"1.0.0":{"name":"gulp-lintspaces","version":"1.0.0","description":"gulp plugin for lintspaces","main":"index.js","repository":{"type":"git","url":"git+https://github.com/AlbertoElias/gulp-lintspaces.git"},"scripts":{"test":"make test"},"keywords":["gulpplugin","validation","lint","spaces","trailingspaces","indent","indentation","newlines","eof","eol"],"author":{"name":"Christopher Knötschke","email":"cknoetschke@gmail.com"},"license":"MIT","dependencies":{"app-root-path":"^1.0.0","colors":"^1.0.3","event-stream":"^3.1.1","ansi-colors":"^1.1.0","plugin-error":"^1.0.1","lintspaces":"^0.5.0","log-symbols":"^1.0.2","path":"^0.11.14"},"devDependencies":{"should":"^3.2.0","map-stream":"^0.1.0","mocha":"^1.18.2","gulp-mocha":"^0.4.1","gulp-jscs":"^0.4.0","gulp-jshint":"^1.5.3","gulp":"^3.6.0"},"bugs":{"url":"https://github.com/AlbertoElias/gulp-lintspaces/issues"},"maintainers":[{"name":"albertoelias","email":"me@alberto-elias.com"}],"gitHead":"b7035816d95af15c57e48929736521d020664e18","homepage":"https://github.com/AlbertoElias/gulp-lintspaces#readme","_id":"gulp-lintspaces@1.0.0","_npmVersion":"5.8.0","_nodeVersion":"9.10.1","_npmUser":{"name":"albertoelias","email":"hi@albertoelias.me"},"dist":{"integrity":"sha512-Lt/weXK2PnyqN0C3ncGltJviKgYSlCfzOZI03tdTfQvHFvNd8EM556mdrj5lCdUtuRhRFN79WNFr9lEvRcm+ww==","shasum":"d6208e5589cecfa39c3116c3ca96e5e1c4876925","tarball":"https://registry.npmjs.org/gulp-lintspaces/-/gulp-lintspaces-1.0.0.tgz","fileCount":14,"unpackedSize":16909,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCHQ+IIu6S7FRfFp2sEu5IMAwRuZcKuSYqYmzRCBB3JywIhAMC61ZGWDOZMHEeNse5PWresNrnbDcZU9mqiuuturmBW"}]},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/gulp-lintspaces_1.0.0_1523468696490_0.42917465653340026"},"_hasShrinkwrap":false},"1.0.1":{"name":"gulp-lintspaces","version":"1.0.1","description":"gulp plugin for lintspaces","main":"index.js","repository":{"type":"git","url":"git+https://github.com/AlbertoElias/gulp-lintspaces.git"},"scripts":{"test":"make test"},"keywords":["gulpplugin","validation","lint","spaces","trailingspaces","indent","indentation","newlines","eof","eol"],"author":{"name":"Christopher Knötschke","email":"cknoetschke@gmail.com"},"license":"MIT","dependencies":{"app-root-path":"^1.0.0","colors":"^1.0.3","event-stream":"^3.3.4","ansi-colors":"^1.1.0","plugin-error":"^1.0.1","lintspaces":"^0.5.0","log-symbols":"^1.0.2","path":"^0.11.14"},"devDependencies":{"should":"^3.2.0","map-stream":"^0.1.0","mocha":"^1.18.2","gulp-mocha":"^0.4.1","gulp-jscs":"^0.4.0","gulp-jshint":"^1.5.3","gulp":"^3.6.0"},"bugs":{"url":"https://github.com/AlbertoElias/gulp-lintspaces/issues"},"maintainers":[{"name":"albertoelias","email":"me@alberto-elias.com"}],"gitHead":"db966c67b0c00c21978907081cb753b6f248b555","homepage":"https://github.com/AlbertoElias/gulp-lintspaces#readme","_id":"gulp-lintspaces@1.0.1","_npmVersion":"6.5.0","_nodeVersion":"9.10.1","_npmUser":{"name":"albertoelias","email":"hi@albertoelias.me"},"dist":{"integrity":"sha512-dqw4EreeKNt8wmErJGeRamlJmuwBm1idUej0KoXQWr45JPKw/qgKqN2EM8n0dO8WAV3l9XYpTk+BO1A8K1JTIg==","shasum":"5123c113ede99a56350338013dcb152dc41304b7","tarball":"https://registry.npmjs.org/gulp-lintspaces/-/gulp-lintspaces-1.0.1.tgz","fileCount":14,"unpackedSize":16911,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcP2cbCRA9TVsSAnZWagAAYpIP/02kuGErtV4Pc4FPqsGG\nTAa+IKoA1SiyI3KjlwsB0y+iTgOpRSy3ta+8Q1sVy3l2xRhvTnju4neJ01ko\nCvDZ0FanIKuGmfbVsp+zbt0KPtnd8nBu10QgbBheN6C8pNegeFQeJ2we/MkD\nuJoDOKv2yNZWCAvAYDO/FLE+hy/ppTuTf1zkZSqh+Fa2lW/u3tPOgaC2McbA\nfYxqm5IvPwU/F3I4xZ6QxX6/cEae0W4WyriTBJ+QpaHNxGewYjuCxrMAglJV\nUmkstxPWGhq8CsTgFyEg2tFuxSJVbxm9P6nSPwjrzZiEC/RlhLQ/Ae0NlbsA\nHllsquen4lN7K7uYwKN8Mx7BATZrrc6i53kT61i8Kigv78YfSwIsVz92mT1A\nfiFmaMEQVXu+hMmBVZeq14r2/FrxVWuhtpDjgVsmPs8r5BOPFyp9WqV60Yuo\n9JubEQePfLX6wmmjxeXUjWhAN0x444udL1zaJAgEWpyZjZauvPUqUxnojMJM\nJ3g25VkefBMG/pMDR/K8bXrbUVmcn/hZkRvSzlAqqvFWRWcw7Kn40fzVze9t\nKevDhLHuAYVOztoqvP6foNUhwpsM3kBR3N9IvJbo1xkHSpCrmYrNrxCSd8q9\nY9lTCh33hs9fgj7iS/uUmHa04PVkaaYRyF2JoJpzi1x++aAN0bynbk0KDB9l\n/KBY\r\n=hH8r\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIB+vdn/p9kVlteCK8ThTMqqPfyNDjZlSJ97vQFpg//F9AiAyqPxQdJdVI7SwlVX1JQmcPrB6F0EAHuJ8qe1kNI+itw=="}]},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/gulp-lintspaces_1.0.1_1547659034999_0.8684701253763067"},"_hasShrinkwrap":false}},"homepage":"https://github.com/AlbertoElias/gulp-lintspaces#readme","keywords":["gulpplugin","validation","lint","spaces","trailingspaces","indent","indentation","newlines","eof","eol"],"repository":{"type":"git","url":"git+https://github.com/AlbertoElias/gulp-lintspaces.git"},"author":{"name":"Christopher Knötschke","email":"cknoetschke@gmail.com"},"bugs":{"url":"https://github.com/AlbertoElias/gulp-lintspaces/issues"},"license":"MIT","readmeFilename":"README.md","users":{"arttse":true,"darahak":true}}