{"_id":"eslint-detailed-reporter","_rev":"34-350635c93777d6becf8616f4fec86711","name":"eslint-detailed-reporter","time":{"modified":"2023-04-20T14:29:44.704Z","created":"2016-11-14T04:46:30.821Z","0.5.0":"2016-11-14T04:46:30.821Z","0.5.1":"2016-11-14T04:59:27.030Z","0.5.2":"2016-11-14T05:45:15.547Z","0.5.3":"2016-11-14T06:00:33.632Z","0.5.4":"2016-11-16T05:17:02.742Z","0.5.5":"2016-11-16T06:36:27.334Z","0.5.6":"2016-11-16T07:25:27.170Z","0.5.7":"2016-11-16T07:55:00.492Z","0.5.8":"2016-11-17T14:47:44.780Z","0.5.9":"2016-11-18T08:24:17.762Z","0.6.0":"2016-11-20T03:30:45.018Z","0.6.1":"2016-11-20T04:13:58.742Z","0.6.2":"2016-11-20T04:42:56.871Z","0.6.3":"2016-11-21T15:48:06.133Z","0.6.4":"2016-11-21T16:20:10.706Z","0.6.5":"2016-11-23T05:23:48.657Z","0.6.6":"2016-11-23T05:33:29.100Z","0.6.7":"2016-11-23T05:37:30.476Z","0.6.8":"2016-11-23T06:26:54.161Z","0.6.9":"2016-11-29T05:47:43.027Z","0.6.10":"2016-12-06T20:32:06.719Z","0.7.0":"2017-03-20T23:10:54.371Z","0.7.1":"2017-03-21T15:10:20.282Z","0.7.2":"2017-03-21T18:37:34.877Z","0.7.3":"2018-01-11T19:14:50.931Z","0.7.4":"2019-02-07T19:17:09.557Z","0.8.0":"2019-05-02T17:13:36.862Z","0.9.0":"2022-05-17T16:25:47.005Z"},"maintainers":[{"name":"mportuga","email":"marceloquarion@gmail.com"}],"dist-tags":{"latest":"0.9.0"},"description":"Detailed HTML reporter for ESLINT.","readme":"# eslint-detailed-reporter\n\n[![Build](https://travis-ci.org/mportuga/eslint-detailed-reporter.svg?branch=master)](https://travis-ci.org/mportuga/eslint-detailed-reporter)\n[![npm version](https://img.shields.io/npm/v/eslint-detailed-reporter.svg)](https://www.npmjs.com/package/eslint-detailed-reporter)\n[![Downloads/month](https://img.shields.io/npm/dm/eslint-detailed-reporter.svg)](https://www.npmjs.com/package/eslint-detailed-reporter)\n[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/mportuga/eslint-detailed-reporter/blob/master/LICENSE)\n[![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/eslint-detailed-reporter/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)\n[![GitHub issues](https://img.shields.io/github/issues/mportuga/eslint-detailed-reporter.svg?style=flat)](https://github.com/mportuga/eslint-detailed-reporter/issues)\n[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fmportuga%2Feslint-detailed-reporter.svg?type=shield)](https://app.fossa.io/projects/git%2Bgithub.com%2Fmportuga%2Feslint-detailed-reporter?ref=badge_shield)\n\n> A Detailed HTML reporter for ESLINT based on the code written by Julian Laval for [eslint's default HTML reporter](http://eslint.org/docs/user-guide/formatters/#html) and inspired by Sven Piller's [eslint-formatter-markdown](https://github.com/sven-piller/eslint-formatter-markdown) and [mochajs](https://mochajs.org/)'s HTML coverage report.\n\n## Features\n\n- Total count of problems on linted files(counting both errors and warnings)\n- Tables with top 5 warnings and errors in the linted files.\n- List of top 5 files with the most problems.\n- View of source code with issues for files with issues.\n- Summary of issues per file\n- Links to the rule descriptions for all default eslint rules, as well as angular and lodash rules.\n- Ability to filter file list to just error or warning files.\n- Keyboard accessible.\n- Can return either multiple files or a single file as the result. (This feature is in BETA).\n\n## Example\n\n[Click here](http://htmlpreview.github.io/?https://github.com/mportuga/eslint-detailed-reporter/blob/master/example/example-report.html) to view an example report.\n\n[Click here](http://htmlpreview.github.io/?https://github.com/mportuga/eslint-detailed-reporter/blob/master/example/success-report.html) to view an example success report.\n\n## Installation\n\n```sh\nnpm install eslint-detailed-reporter --save-dev\n```\n\n## Usage\n\n### With [ESLint CLI](http://eslint.org/docs/user-guide/command-line-interface):\n\n```sh\n# Single file\neslint file.js -f node_modules/eslint-detailed-reporter/lib/detailed.js -o report.html\n\n# Recurse current directory\neslint . -f node_modules/eslint-detailed-reporter/lib/detailed.js -o report.html\n\n# Recurse current directory with multiple files as the result\neslint . -f node_modules/eslint-detailed-reporter/lib/detailed-multi.js -o report.html\n```\n\n### With [Grunt ESLint](https://www.npmjs.com/package/grunt-eslint):\n\n```js\nmodule.exports = function(grunt) {\n\t'use strict';\n\n\trequire('load-grunt-tasks')(grunt);\n\n\tgrunt.initConfig({\n\t\teslint: {\n\t\t\toptions: {\n\t\t\t\toutputFile: 'example/example-report.html',\n\t\t\t\tformat: require('eslint-detailed-reporter')\n\t\t\t},\n\t\t\ttarget: ['test/**/*.js']\n\t\t}\n\t});\n\n\tgrunt.registerTask('default', ['eslint']);\n};\n```\n\n* If you want to use the new multi file feature, you must use the full path to the detailed-multi file in the format section and\nadd --outputDirectory=<your directory here> to the command line.\n\n### With [Gulp ESLint](https://github.com/adametry/gulp-eslint):\n\n```js\nvar eslint   = require('gulp-eslint'),\n    reporter = require('eslint-detailed-reporter'),\n    path     = require('path'),\n    fs       = require('fs');\n\ngulp.src(['js/**/*.js'])\n  .pipe(eslint())\n  .pipe(eslint.format(reporter, function(results) {\n      fs.writeFileSync(path.join(__dirname, 'report-results.html'), results);\n    })\n  );\n```\n\n## Dependencies\n\n- [lodash](https://github.com/lodash/lodash): Lodash modular utilities.\n\n## Dev Dependencies\n\n- [eslint](https://github.com/eslint/eslint): An AST-based pattern checker for JavaScript.\n- [eslint-config-angular](https://github.com/dustinspecker/eslint-config-angular): ESLint shareable config for Angular plugin.\n- [eslint-plugin-angular](https://github.com/Gillespie59/eslint-plugin-angular): ESLint rules for your angular project with checks for best-practices, conventions or potential errors.\n- [eslint-plugin-lodash](https://github.com/eslint-plugins/eslint-plugin-lodash): Lodash-specific linting rules for ESLint.\n- [grunt](http://gruntjs.com/): The JavaScript Task Runner.\n- [grunt-cli](https://github.com/gruntjs/grunt-cli): The Grunt command line interface.\n- [grunt-eslint](https://github.com/sindresorhus/grunt-eslint): Validate files with ESLint.\n- [load-grunt-tasks](https://github.com/sindresorhus/load-grunt-tasks): Load multiple grunt tasks using globbing patterns.\n\n## Contributing\n\nFeel free to contribute!\n\nFork this repo and run the following commands to get started:\n\n```sh\nnpm install\nnpm install -g grunt-cli\nnpm test\n```\n\nAfter that, just open a [pull request](https://github.com/mportuga/eslint-detailed-reporter/pulls) and I will review it when I can!\n\nFor more detailed contributing instructions checkout out our [contributing documentation](./.github/CONTRIBUTING.md)!\n\n## Release History\n\nSee [CHANGELOG](./CHANGELOG.md)\n\n## License\n\n[MIT](https://opensource.org/licenses/MIT) © Marcelo S. Portugal\n\n\n[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fmportuga%2Feslint-detailed-reporter.svg?type=large)](https://app.fossa.io/projects/git%2Bgithub.com%2Fmportuga%2Feslint-detailed-reporter?ref=badge_large)","versions":{"0.5.1":{"name":"eslint-detailed-reporter","version":"0.5.1","description":"Detailed HTML reporter for ESLINT.","main":"lib/detailed.js","scripts":{"test":"grunt eslint"},"keywords":["eslint","formatter","reporter","lint","html","validate","detailed","plato"],"author":{"name":"Marcelo S. Portugal","email":"marceloquarion@gmail.com"},"license":"MIT","dependencies":{"lodash":"^4.16.6"},"devDependencies":{"eslint":"^3.9.1","eslint-config-angular":"^0.5.0","eslint-plugin-angular":"^1.4.1","eslint-plugin-lodash":"^2.2.0","grunt":"^1.0.1","grunt-cli":"^1.2.0","grunt-eslint":"^19.0.0","load-grunt-tasks":"^3.5.2"},"gitHead":"a67eb9fae765175a752047118b6e2e4e47136285","_id":"eslint-detailed-reporter@0.5.1","_shasum":"b3f326816abbebf7fe152eb4f9662428ea3adce1","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"mportuga","email":"marceloquarion@gmail.com"},"dist":{"shasum":"b3f326816abbebf7fe152eb4f9662428ea3adce1","tarball":"https://registry.npmjs.org/eslint-detailed-reporter/-/eslint-detailed-reporter-0.5.1.tgz","integrity":"sha512-GtDCf1fkvga3XwBCfSorrpHeONOawVp0CwfbarFCcrFMHn1DS0evAHj9MCdX2W7QH7s4OFO17pM+mtc6oD1u+w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCwxLzO2DL2bpvgKwQeJGxEbLNXBvZrthQheb7eZNJuwwIhAK+LQpsutf611+TEqTxGTtRtqp4+n4P11EK6EGr0yHlP"}]},"maintainers":[{"name":"mportuga","email":"marceloquarion@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/eslint-detailed-reporter-0.5.1.tgz_1479099566497_0.33792635751888156"},"directories":{}},"0.5.2":{"name":"eslint-detailed-reporter","version":"0.5.2","description":"Detailed HTML reporter for ESLINT.","main":"lib/detailed.js","scripts":{"test":"grunt eslint"},"keywords":["eslint","formatter","reporter","lint","html","validate","detailed","plato"],"author":{"name":"Marcelo S. Portugal","email":"marceloquarion@gmail.com"},"license":"MIT","dependencies":{"lodash":"^4.16.6"},"devDependencies":{"eslint":"^3.9.1","eslint-config-angular":"^0.5.0","eslint-plugin-angular":"^1.4.1","eslint-plugin-lodash":"^2.2.0","grunt":"^1.0.1","grunt-cli":"^1.2.0","grunt-eslint":"^19.0.0","load-grunt-tasks":"^3.5.2"},"gitHead":"7b91948148d41cae0c7550575608bff4282edaf0","_id":"eslint-detailed-reporter@0.5.2","_shasum":"06d216db7822dc4188c355d7da98ece023d393c2","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"mportuga","email":"marceloquarion@gmail.com"},"dist":{"shasum":"06d216db7822dc4188c355d7da98ece023d393c2","tarball":"https://registry.npmjs.org/eslint-detailed-reporter/-/eslint-detailed-reporter-0.5.2.tgz","integrity":"sha512-Ol/mfCoDaO29woCXT/VtyelJ9A9OE8Bx2X9myhjWH8BaJ5w6qVjIZ1pkLNxq3z0Na5CM69lHjyyGxP7+utqjiw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDscDgFGyuljimZVZQCEg1/6eFvd4TDu/3eOuSlvmZk1AIgefRjbZvEF1cRG9j/hsxD5vK2qBfDeYbmcVW5mdcS9zU="}]},"maintainers":[{"name":"mportuga","email":"marceloquarion@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/eslint-detailed-reporter-0.5.2.tgz_1479102315019_0.8610109735745937"},"directories":{}},"0.5.3":{"name":"eslint-detailed-reporter","version":"0.5.3","description":"Detailed HTML reporter for ESLINT.","main":"index.js","scripts":{"test":"grunt eslint"},"keywords":["eslint","formatter","reporter","lint","html","validate","detailed","plato"],"author":{"name":"Marcelo S. Portugal","email":"marceloquarion@gmail.com"},"license":"MIT","dependencies":{"lodash":"^4.16.6"},"devDependencies":{"eslint":"^3.9.1","eslint-config-angular":"^0.5.0","eslint-plugin-angular":"^1.4.1","eslint-plugin-lodash":"^2.2.0","grunt":"^1.0.1","grunt-cli":"^1.2.0","grunt-eslint":"^19.0.0","load-grunt-tasks":"^3.5.2"},"gitHead":"8fda47fe7fbd1ef1ec6ed25d476cd6a469af8cd0","_id":"eslint-detailed-reporter@0.5.3","_shasum":"b35bd64ef5c64b36824ec3e54cc632422abb0be2","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"mportuga","email":"marceloquarion@gmail.com"},"dist":{"shasum":"b35bd64ef5c64b36824ec3e54cc632422abb0be2","tarball":"https://registry.npmjs.org/eslint-detailed-reporter/-/eslint-detailed-reporter-0.5.3.tgz","integrity":"sha512-/hJPqFglRyHB2jqNYC5FrFpYgoJFjPJISW/9Ob/zNZzM2x6+Nl1j1APhdKPv+trr5w6rRpCYyV6EKcLUZfLBpQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFO1eHe4HS+KEK03vBxvtal47bqJcgrUvuqIoia2vI6nAiEAwpgmYjBqyHUGwQDn7tE0HWvSnkdSFLyGGLqCRjv0AwA="}]},"maintainers":[{"name":"mportuga","email":"marceloquarion@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/eslint-detailed-reporter-0.5.3.tgz_1479103231819_0.7440943655092269"},"directories":{}},"0.5.4":{"name":"eslint-detailed-reporter","version":"0.5.4","description":"Detailed HTML reporter for ESLINT.","main":"index.js","scripts":{"test":"grunt eslint"},"repository":{"type":"git","url":"git+https://github.com/mportuga/eslint-detailed-reporter.git"},"keywords":["eslint","formatter","reporter","lint","html","validate","detailed","plato"],"author":{"name":"Marcelo S. Portugal","email":"marceloquarion@gmail.com","url":"http://portugaldev.com/"},"license":"MIT","homepage":"https://github.com/mportuga/eslint-detailed-reporter","bugs":{"url":"https://github.com/mportuga/eslint-detailed-reporter/issues"},"dependencies":{"lodash":"^4.16.6"},"devDependencies":{"eslint":"^3.9.1","eslint-config-angular":"^0.5.0","eslint-plugin-angular":"^1.4.1","eslint-plugin-lodash":"^2.2.0","grunt":"^1.0.1","grunt-cli":"^1.2.0","grunt-eslint":"^19.0.0","load-grunt-tasks":"^3.5.2"},"gitHead":"0db13e9de86f489bf9f38ed613d4cba6ef8c51de","_id":"eslint-detailed-reporter@0.5.4","_shasum":"448cab560ea564b635f3ee28654fee9775dc7e96","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"mportuga","email":"marceloquarion@gmail.com"},"dist":{"shasum":"448cab560ea564b635f3ee28654fee9775dc7e96","tarball":"https://registry.npmjs.org/eslint-detailed-reporter/-/eslint-detailed-reporter-0.5.4.tgz","integrity":"sha512-Gkk0vbr64OSeE83icnbT6CS1n3RT74xZL886zLocC+2qH6Tt2fgBdkpBRk82ftC552A9xyJ/tS2MfHOyXcip6A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDO/TuzPEh/AKGtsYzoKzoQiMl+L7hUnAxUWw9j0jSpygIgTdfknU46aHEGcgBlRRwhzhDZXLVWHSsiP4tqJkq9Yok="}]},"maintainers":[{"name":"mportuga","email":"marceloquarion@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/eslint-detailed-reporter-0.5.4.tgz_1479273421033_0.8635041725356132"},"directories":{}},"0.5.5":{"name":"eslint-detailed-reporter","version":"0.5.5","description":"Detailed HTML reporter for ESLINT.","main":"index.js","scripts":{"test":"grunt eslint","postversion":"git push && git push --tags && npm publish ./"},"repository":{"type":"git","url":"git+https://github.com/mportuga/eslint-detailed-reporter.git"},"keywords":["eslint","formatter","reporter","lint","html","validate","detailed","plato"],"author":{"name":"Marcelo S. Portugal","email":"marceloquarion@gmail.com","url":"http://portugaldev.com/"},"license":"MIT","homepage":"https://github.com/mportuga/eslint-detailed-reporter","bugs":{"url":"https://github.com/mportuga/eslint-detailed-reporter/issues"},"dependencies":{"lodash":"^4.16.6"},"devDependencies":{"eslint":"^3.9.1","eslint-config-angular":"^0.5.0","eslint-plugin-angular":"^1.4.1","eslint-plugin-lodash":"^2.2.0","grunt":"^1.0.1","grunt-cli":"^1.2.0","grunt-eslint":"^19.0.0","load-grunt-tasks":"^3.5.2"},"gitHead":"51226339e1842a321fa3dead93b6a8a1392e8a02","_id":"eslint-detailed-reporter@0.5.5","_shasum":"48624f1a2a77c2beabbc5afd31b7b66990fe70ea","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"mportuga","email":"marceloquarion@gmail.com"},"dist":{"shasum":"48624f1a2a77c2beabbc5afd31b7b66990fe70ea","tarball":"https://registry.npmjs.org/eslint-detailed-reporter/-/eslint-detailed-reporter-0.5.5.tgz","integrity":"sha512-iuqg5lm/YweDsXZgbSqTwL+OfiCtfBVeJEOAjSBWRnUMIHXZc3g8XlccQT4v2lM8YnJlg1gHfZ6BM9DZhi9onw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICY9bZB1p+GKFNEC/KM4oR18ep5Xc/wpBAxXdcugxTfVAiAxFA24eVh6Ps+2iSxatJdqiA3sO5ebUuqQzwuc4B6nWg=="}]},"maintainers":[{"name":"mportuga","email":"marceloquarion@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/eslint-detailed-reporter-0.5.5.tgz_1479278186827_0.8348903502337635"},"directories":{}},"0.5.6":{"name":"eslint-detailed-reporter","version":"0.5.6","description":"Detailed HTML reporter for ESLINT.","main":"index.js","scripts":{"test":"grunt eslint","postversion":"git push && git push --tags && npm publish ./"},"repository":{"type":"git","url":"git+https://github.com/mportuga/eslint-detailed-reporter.git"},"keywords":["eslint","formatter","reporter","lint","html","validate","detailed","plato"],"author":{"name":"Marcelo S. Portugal","email":"marceloquarion@gmail.com","url":"http://portugaldev.com/"},"license":"MIT","homepage":"https://github.com/mportuga/eslint-detailed-reporter","bugs":{"url":"https://github.com/mportuga/eslint-detailed-reporter/issues"},"dependencies":{"lodash":"^4.16.6"},"devDependencies":{"eslint":"^3.9.1","eslint-config-angular":"^0.5.0","eslint-plugin-angular":"^1.4.1","eslint-plugin-lodash":"^2.2.0","grunt":"^1.0.1","grunt-cli":"^1.2.0","grunt-eslint":"^19.0.0","load-grunt-tasks":"^3.5.2"},"gitHead":"217b4374d216322337b5fe785940f9bf06c4ac46","_id":"eslint-detailed-reporter@0.5.6","_shasum":"4b59c34ab0bb2de47a5f27abbd7b6aa07f3af447","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"mportuga","email":"marceloquarion@gmail.com"},"dist":{"shasum":"4b59c34ab0bb2de47a5f27abbd7b6aa07f3af447","tarball":"https://registry.npmjs.org/eslint-detailed-reporter/-/eslint-detailed-reporter-0.5.6.tgz","integrity":"sha512-uJ4CaHFkdPP9X3Iwe6IlMgyKuBDIQNee1EclW+hiJKlBSnEjaiHMTaNGiCv542qpRao/IERUt+iwIFsjHz/MOQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDynowv/WrfqNyl46spLN596HwuzkuYkiKYxSeMDTCM3QIhAJTD4BR7Z/yOrlF6/JSgM5yD8//vda/2VPE1zXqYh3lS"}]},"maintainers":[{"name":"mportuga","email":"marceloquarion@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/eslint-detailed-reporter-0.5.6.tgz_1479281126648_0.6574468342587352"},"directories":{}},"0.5.7":{"name":"eslint-detailed-reporter","version":"0.5.7","description":"Detailed HTML reporter for ESLINT.","main":"index.js","scripts":{"test":"grunt eslint","postversion":"git push && git push --tags && npm publish ./"},"repository":{"type":"git","url":"git+https://github.com/mportuga/eslint-detailed-reporter.git"},"keywords":["eslint","formatter","reporter","lint","html","validate","detailed","plato"],"author":{"name":"Marcelo S. Portugal","email":"marceloquarion@gmail.com","url":"http://portugaldev.com/"},"license":"MIT","homepage":"https://github.com/mportuga/eslint-detailed-reporter","bugs":{"url":"https://github.com/mportuga/eslint-detailed-reporter/issues"},"dependencies":{"lodash":"^4.16.6"},"devDependencies":{"eslint":"^3.9.1","eslint-config-angular":"^0.5.0","eslint-plugin-angular":"^1.4.1","eslint-plugin-lodash":"^2.2.0","grunt":"^1.0.1","grunt-cli":"^1.2.0","grunt-eslint":"^19.0.0","load-grunt-tasks":"^3.5.2"},"gitHead":"d837b2405d06d87e657e817a397feafcf28eeb8e","_id":"eslint-detailed-reporter@0.5.7","_shasum":"3e12c39d7a0392a602d26eaea7019f33cefcae40","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"mportuga","email":"marceloquarion@gmail.com"},"dist":{"shasum":"3e12c39d7a0392a602d26eaea7019f33cefcae40","tarball":"https://registry.npmjs.org/eslint-detailed-reporter/-/eslint-detailed-reporter-0.5.7.tgz","integrity":"sha512-lw7I2MjxsKkQhr5hKENI+fgGAiR7rF28a6zXScv3QY5xujBxBTrogEfKTCKI071WC6e8gIO0fEPCp5qxSpCrCw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCID+9ES0daUYqw9cSCkV1jfgMefuoEddj0dZCSqMW+dRqAiEA0jewECNqLrNW8493c4IIOItU81rXMD5/szqy4ixQPSo="}]},"maintainers":[{"name":"mportuga","email":"marceloquarion@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/eslint-detailed-reporter-0.5.7.tgz_1479282899990_0.8310860330238938"},"directories":{}},"0.5.8":{"name":"eslint-detailed-reporter","version":"0.5.8","description":"Detailed HTML reporter for ESLINT.","main":"index.js","scripts":{"test":"npm run command-line && npm run grunt-test","command-line":"eslint test/green_file.js -f lib/detailed.js -o example/success-report.html","grunt-test":"grunt force:eslint","postversion":"git push && git push --tags && npm publish ./"},"repository":{"type":"git","url":"git+https://github.com/mportuga/eslint-detailed-reporter.git"},"keywords":["eslint","formatter","reporter","lint","html","validate","detailed","plato"],"author":{"name":"Marcelo S. Portugal","email":"marceloquarion@gmail.com","url":"http://portugaldev.com/"},"license":"MIT","homepage":"https://github.com/mportuga/eslint-detailed-reporter","bugs":{"url":"https://github.com/mportuga/eslint-detailed-reporter/issues"},"dependencies":{"lodash":"^4.16.6"},"devDependencies":{"eslint":"^3.9.1","eslint-config-angular":"^0.5.0","eslint-plugin-angular":"^1.4.1","eslint-plugin-lodash":"^2.2.0","grunt":"^1.0.1","grunt-cli":"^1.2.0","grunt-eslint":"^19.0.0","grunt-force-task":"^2.0.0","load-grunt-tasks":"^3.5.2"},"gitHead":"a2fdc3f75cdade4389472fcf12639b89a94a99f2","_id":"eslint-detailed-reporter@0.5.8","_shasum":"6ef554b7bf9e715b567f09f8433788555475323c","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"mportuga","email":"marceloquarion@gmail.com"},"dist":{"shasum":"6ef554b7bf9e715b567f09f8433788555475323c","tarball":"https://registry.npmjs.org/eslint-detailed-reporter/-/eslint-detailed-reporter-0.5.8.tgz","integrity":"sha512-2XNgJrMmW2fQOcsS/XMO7ZUt1g2BAPfHq0GY7utI8Mzu/gdc2FuRmccbEkTbQh6zxeS1sJSVY06jnC2E1HqMOw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGdwGWAeDGgFxxAxX72TvfyK1AFixCgQpwPoQp+3V/BRAiA+jv2cuf8NqLqjkndEwIykb3pGIdwvsSt0kpZSq5wZvw=="}]},"maintainers":[{"name":"mportuga","email":"marceloquarion@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/eslint-detailed-reporter-0.5.8.tgz_1479394064227_0.4114946871995926"},"directories":{}},"0.5.9":{"name":"eslint-detailed-reporter","version":"0.5.9","description":"Detailed HTML reporter for ESLINT.","main":"index.js","scripts":{"test":"npm run command-line && npm run grunt-test","command-line":"eslint test/green_file.js -f lib/detailed.js -o example/success-report.html","grunt-test":"grunt force:eslint","postversion":"git push && git push --tags && npm publish ./"},"repository":{"type":"git","url":"git+https://github.com/mportuga/eslint-detailed-reporter.git"},"keywords":["eslint","formatter","reporter","lint","html","validate","detailed","plato"],"author":{"name":"Marcelo S. Portugal","email":"marceloquarion@gmail.com","url":"http://portugaldev.com/"},"license":"MIT","homepage":"https://github.com/mportuga/eslint-detailed-reporter","bugs":{"url":"https://github.com/mportuga/eslint-detailed-reporter/issues"},"dependencies":{"lodash":"^4.16.6"},"devDependencies":{"eslint":"^3.9.1","eslint-config-angular":"^0.5.0","eslint-plugin-angular":"^1.4.1","eslint-plugin-lodash":"^2.2.0","grunt":"^1.0.1","grunt-cli":"^1.2.0","grunt-eslint":"^19.0.0","grunt-force-task":"^2.0.0","load-grunt-tasks":"^3.5.2"},"gitHead":"5a7baeccc3ed60037f5640daeb25bfb96794d993","_id":"eslint-detailed-reporter@0.5.9","_shasum":"0780a824b3784270a8d00450981b1a1ba95029ba","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"mportuga","email":"marceloquarion@gmail.com"},"dist":{"shasum":"0780a824b3784270a8d00450981b1a1ba95029ba","tarball":"https://registry.npmjs.org/eslint-detailed-reporter/-/eslint-detailed-reporter-0.5.9.tgz","integrity":"sha512-vMBLPCCDnnSp3qdEvx16bxLErPqx4dm43q7BwTXZQHjdqrEhI+XhN+HQlQ2u1kyjHyMlOsfwotkGw5XsBm1dhA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIC/It+jcSMf/3gv0X2GeYc6CJcIGy7VHxM14fnQEr5XKAiEA4pfKqdVi8/vVbuDEN8rCdzYSiIyvyt11ucW1zzzNsX0="}]},"maintainers":[{"name":"mportuga","email":"marceloquarion@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/eslint-detailed-reporter-0.5.9.tgz_1479457455693_0.35735260299406946"},"directories":{}},"0.6.0":{"name":"eslint-detailed-reporter","version":"0.6.0","description":"Detailed HTML reporter for ESLINT.","main":"index.js","scripts":{"test":"npm run command-line && npm run grunt-test","command-line":"eslint fixture/green_file.js -f lib/detailed.js -o example/success-report.html","grunt-test":"grunt force:eslint","postversion":"git push && git push --tags && npm publish ./"},"repository":{"type":"git","url":"git+https://github.com/mportuga/eslint-detailed-reporter.git"},"keywords":["eslint","formatter","reporter","lint","html","validate","detailed","plato"],"author":{"name":"Marcelo S. Portugal","email":"marceloquarion@gmail.com","url":"http://portugaldev.com/"},"license":"MIT","homepage":"https://github.com/mportuga/eslint-detailed-reporter","bugs":{"url":"https://github.com/mportuga/eslint-detailed-reporter/issues"},"dependencies":{"lodash":"^4.16.6"},"devDependencies":{"eslint":"^3.9.1","eslint-config-angular":"^0.5.0","eslint-plugin-angular":"^1.4.1","eslint-plugin-lodash":"^2.2.0","grunt":"^1.0.1","grunt-cli":"^1.2.0","grunt-eslint":"^19.0.0","grunt-force-task":"^2.0.0","load-grunt-tasks":"^3.5.2"},"gitHead":"a5b11c4a3d33184eb4cd64aa5dee990dcf2c9a3b","_id":"eslint-detailed-reporter@0.6.0","_shasum":"0a4eb1d2d967202a35cc0f00177b371d5aea76c3","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"mportuga","email":"marceloquarion@gmail.com"},"dist":{"shasum":"0a4eb1d2d967202a35cc0f00177b371d5aea76c3","tarball":"https://registry.npmjs.org/eslint-detailed-reporter/-/eslint-detailed-reporter-0.6.0.tgz","integrity":"sha512-i6r5biNmKR8YIkqbxeBtcswuRIcGAFFOaefiMOWRBeXT4PjGjqo4sxvAArn/nQT2oxNhyvu9jKCcpID38b11Pw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEH+UqfGp0hBik+AAJPu3Ie69XtF7S84L2YXovtVsL/yAiEAo+bAqz+/Vd53qVT1b2htxPXxUU05NTL8fnFcpNCZHfA="}]},"maintainers":[{"name":"mportuga","email":"marceloquarion@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/eslint-detailed-reporter-0.6.0.tgz_1479612644461_0.2157364096492529"},"directories":{}},"0.6.1":{"name":"eslint-detailed-reporter","version":"0.6.1","description":"Detailed HTML reporter for ESLINT.","main":"index.js","scripts":{"test":"npm run command-line && npm run grunt-test","command-line":"eslint fixture/green_file.js -f lib/detailed.js -o example/success-report.html","grunt-test":"grunt force:eslint","postversion":"git push && git push --tags && npm publish ./"},"repository":{"type":"git","url":"git+https://github.com/mportuga/eslint-detailed-reporter.git"},"keywords":["eslint","formatter","reporter","lint","html","validate","detailed","plato"],"author":{"name":"Marcelo S. Portugal","email":"marceloquarion@gmail.com","url":"http://portugaldev.com/"},"license":"MIT","homepage":"https://github.com/mportuga/eslint-detailed-reporter","bugs":{"url":"https://github.com/mportuga/eslint-detailed-reporter/issues"},"dependencies":{"lodash":"^4.16.6"},"devDependencies":{"eslint":"^3.9.1","eslint-config-angular":"^0.5.0","eslint-plugin-angular":"^1.4.1","eslint-plugin-lodash":"^2.2.0","grunt":"^1.0.1","grunt-cli":"^1.2.0","grunt-eslint":"^19.0.0","grunt-force-task":"^2.0.0","load-grunt-tasks":"^3.5.2"},"gitHead":"cf7dd10fd58bb00291513048948bf670e0970dda","_id":"eslint-detailed-reporter@0.6.1","_shasum":"e5bf7486e8f111a67609a5b23d1434c7c8bd9b43","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"mportuga","email":"marceloquarion@gmail.com"},"dist":{"shasum":"e5bf7486e8f111a67609a5b23d1434c7c8bd9b43","tarball":"https://registry.npmjs.org/eslint-detailed-reporter/-/eslint-detailed-reporter-0.6.1.tgz","integrity":"sha512-k0DshPNXiLXosFbReTgOHg+j+TEXZk7+AgxCowJ5Ij6O3mlz/mleszVxIYcdthEyMApMuWNaOzDKzE5lMMtgsQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDo1lwyNxXi9Dm+as9a5IllQmGZCBtvIsl+3twrE6DJdwIgKzzSawm+k9+ob786J/iHWpNJmkr+FJVnwBsOpApqKb0="}]},"maintainers":[{"name":"mportuga","email":"marceloquarion@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/eslint-detailed-reporter-0.6.1.tgz_1479615238190_0.5408451701514423"},"directories":{}},"0.6.2":{"name":"eslint-detailed-reporter","version":"0.6.2","description":"Detailed HTML reporter for ESLINT.","main":"index.js","scripts":{"test":"npm run command-line && npm run grunt-test","command-line":"eslint fixture/green_file.js -f lib/detailed.js -o example/success-report.html","grunt-test":"grunt force:eslint","postversion":"git push && git push --tags && npm publish ./"},"repository":{"type":"git","url":"git+https://github.com/mportuga/eslint-detailed-reporter.git"},"keywords":["eslint","formatter","reporter","lint","html","validate","detailed","plato"],"author":{"name":"Marcelo S. Portugal","email":"marceloquarion@gmail.com","url":"http://portugaldev.com/"},"license":"MIT","homepage":"https://github.com/mportuga/eslint-detailed-reporter","bugs":{"url":"https://github.com/mportuga/eslint-detailed-reporter/issues"},"dependencies":{"lodash":"^4.16.6"},"devDependencies":{"eslint":"^3.9.1","eslint-config-angular":"^0.5.0","eslint-plugin-angular":"^1.4.1","eslint-plugin-lodash":"^2.2.0","grunt":"^1.0.1","grunt-cli":"^1.2.0","grunt-eslint":"^19.0.0","grunt-force-task":"^2.0.0","load-grunt-tasks":"^3.5.2"},"gitHead":"ad8443bdc3f81e87c09f9c948898e81e7969c42f","_id":"eslint-detailed-reporter@0.6.2","_shasum":"cda92f6de586d62db66e63a050ae81d34059bacc","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"mportuga","email":"marceloquarion@gmail.com"},"dist":{"shasum":"cda92f6de586d62db66e63a050ae81d34059bacc","tarball":"https://registry.npmjs.org/eslint-detailed-reporter/-/eslint-detailed-reporter-0.6.2.tgz","integrity":"sha512-H9MhZ0VsC6dulfjv3QRJjXU1CDyxmlac9pQRaFCKyoaU2lvXTFtICGW60yYln7/65dAcBmgVwq7oI/qpzbUTOw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHP6kGzkwE49MPwIrD6TvGl9GSKlO632hb4Ae9b1W2i5AiEA7DQMedCH61q9H+4XNryXrf4paNNsbz1vTM0ez9K/UEQ="}]},"maintainers":[{"name":"mportuga","email":"marceloquarion@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/eslint-detailed-reporter-0.6.2.tgz_1479616975009_0.36787276761606336"},"directories":{}},"0.6.3":{"name":"eslint-detailed-reporter","version":"0.6.3","description":"Detailed HTML reporter for ESLINT.","main":"index.js","scripts":{"test":"npm run command-line && npm run grunt-test","command-line":"eslint fixture/green_file.js -f lib/detailed.js -o example/success-report.html","grunt-test":"grunt force:eslint","postversion":"git push && git push --tags && npm publish ./"},"repository":{"type":"git","url":"git+https://github.com/mportuga/eslint-detailed-reporter.git"},"keywords":["eslint","formatter","reporter","lint","html","validate","detailed","plato"],"author":{"name":"Marcelo S. Portugal","email":"marceloquarion@gmail.com","url":"http://portugaldev.com/"},"license":"MIT","homepage":"https://github.com/mportuga/eslint-detailed-reporter","bugs":{"url":"https://github.com/mportuga/eslint-detailed-reporter/issues"},"dependencies":{"lodash":"^4.16.6"},"devDependencies":{"eslint":"^3.9.1","eslint-config-angular":"^0.5.0","eslint-plugin-angular":"^1.4.1","eslint-plugin-lodash":"^2.2.0","grunt":"^1.0.1","grunt-cli":"^1.2.0","grunt-eslint":"^19.0.0","grunt-force-task":"^2.0.0","load-grunt-tasks":"^3.5.2"},"gitHead":"445b999b7c118e4ea62978110989afdaf787e739","_id":"eslint-detailed-reporter@0.6.3","_shasum":"72859a789934358c583a2bf65e8093988379e027","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"mportuga","email":"marceloquarion@gmail.com"},"dist":{"shasum":"72859a789934358c583a2bf65e8093988379e027","tarball":"https://registry.npmjs.org/eslint-detailed-reporter/-/eslint-detailed-reporter-0.6.3.tgz","integrity":"sha512-0jmq0xeuTgSRPuA2/q1PmF7XRp89VTi21+TXot4ozZGY9tv4YLxs3rm9k8L/fZfkzH6gBQLag4INYNBEhvlujA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIE4SdQEyNDPV5fyipiIkkvQ4+5c2Tt0oo1AMT2Ym44ITAiEAw4ewMfT7l9qoZ8J4kO0ZYZLq+prP8kOZMmB2Dy0Rszg="}]},"maintainers":[{"name":"mportuga","email":"marceloquarion@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/eslint-detailed-reporter-0.6.3.tgz_1479743284352_0.8702663779258728"},"directories":{}},"0.6.4":{"name":"eslint-detailed-reporter","version":"0.6.4","description":"Detailed HTML reporter for ESLINT.","main":"index.js","scripts":{"test":"npm run command-line && npm run grunt-test","command-line":"eslint fixture/green_file.js -f lib/detailed.js -o example/success-report.html","grunt-test":"grunt force:eslint","postversion":"git push && git push --tags && npm publish ./"},"repository":{"type":"git","url":"git+https://github.com/mportuga/eslint-detailed-reporter.git"},"keywords":["eslint","formatter","reporter","lint","html","validate","detailed","plato"],"author":{"name":"Marcelo S. Portugal","email":"marceloquarion@gmail.com","url":"http://portugaldev.com/"},"license":"MIT","homepage":"https://github.com/mportuga/eslint-detailed-reporter","bugs":{"url":"https://github.com/mportuga/eslint-detailed-reporter/issues"},"dependencies":{"lodash":"^4.16.6"},"devDependencies":{"eslint":"^3.9.1","eslint-config-angular":"^0.5.0","eslint-plugin-angular":"^1.4.1","eslint-plugin-lodash":"^2.2.0","grunt":"^1.0.1","grunt-cli":"^1.2.0","grunt-eslint":"^19.0.0","grunt-force-task":"^2.0.0","load-grunt-tasks":"^3.5.2"},"gitHead":"d5c8a12448e0000f3edb5c65d1058d34655ffa85","_id":"eslint-detailed-reporter@0.6.4","_shasum":"56daeedf025c3cd54f4b10d9dcc4512b299b6ccb","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"mportuga","email":"marceloquarion@gmail.com"},"dist":{"shasum":"56daeedf025c3cd54f4b10d9dcc4512b299b6ccb","tarball":"https://registry.npmjs.org/eslint-detailed-reporter/-/eslint-detailed-reporter-0.6.4.tgz","integrity":"sha512-OstY6bZKEiYMlf0obo/x6WV9sw1UVbu2697BMxSdWSg8/bEd70DGaosxzfhlRCWcrGwsM8wEUHnsIZK1dPyKwQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAVSaFOjqBkZC7myygGBIpfBB/vJ4OF04Vjx4CbpLOPhAiBggwmlzmQWAn1IP8rn2+r/xE9MpI5ddt7+vPz5ZzWAyw=="}]},"maintainers":[{"name":"mportuga","email":"marceloquarion@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/eslint-detailed-reporter-0.6.4.tgz_1479745208813_0.8319731843657792"},"directories":{}},"0.6.5":{"name":"eslint-detailed-reporter","version":"0.6.5","description":"Detailed HTML reporter for ESLINT.","main":"index.js","scripts":{"test":"npm run command-line && npm run grunt-test","command-line":"eslint fixture/green_file.js -f lib/detailed.js -o example/success-report.html","grunt-test":"grunt force:eslint","postversion":"git push && git push --tags && npm publish ./"},"repository":{"type":"git","url":"git+https://github.com/mportuga/eslint-detailed-reporter.git"},"keywords":["eslint","formatter","reporter","lint","html","validate","detailed","plato"],"author":{"name":"Marcelo S. Portugal","email":"marceloquarion@gmail.com","url":"http://portugaldev.com/"},"license":"MIT","homepage":"https://github.com/mportuga/eslint-detailed-reporter","bugs":{"url":"https://github.com/mportuga/eslint-detailed-reporter/issues"},"peerDependencies":{"eslint":"3.x"},"dependencies":{"lodash":"^4.16.6"},"devDependencies":{"eslint":"^3.9.1","eslint-config-angular":"^0.5.0","eslint-plugin-angular":"^1.4.1","eslint-plugin-lodash":"^2.2.0","grunt":"^1.0.1","grunt-cli":"^1.2.0","grunt-eslint":"^19.0.0","grunt-force-task":"^2.0.0","load-grunt-tasks":"^3.5.2"},"gitHead":"f32cbd5fe9be0ca6a92c45f4cd20e4650a2770a0","_id":"eslint-detailed-reporter@0.6.5","_shasum":"33352acd9ad9fd2ff7fe74e87e59b31a5c7c95a0","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"mportuga","email":"marceloquarion@gmail.com"},"dist":{"shasum":"33352acd9ad9fd2ff7fe74e87e59b31a5c7c95a0","tarball":"https://registry.npmjs.org/eslint-detailed-reporter/-/eslint-detailed-reporter-0.6.5.tgz","integrity":"sha512-yP6zdKRlxSM9CcV+zryDErowSV0xD+MYLDuu49pj40jgnvDXsD+hFGRCG+5aPa4qI5bXKKCjrMv0jE63qsgcUA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDJH+2WUPUfPRMVxCtk98BDUSakG6i5968HfxSCr8g1rwIgL+7LPtkz8jTWxxwvTpQtM7qI8c//RVa3PavRFcWzILs="}]},"maintainers":[{"name":"mportuga","email":"marceloquarion@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/eslint-detailed-reporter-0.6.5.tgz_1479878626912_0.2407531461212784"},"directories":{}},"0.6.6":{"name":"eslint-detailed-reporter","version":"0.6.6","description":"Detailed HTML reporter for ESLINT.","main":"index.js","scripts":{"test":"npm run command-line && npm run grunt-test","command-line":"eslint fixture/green_file.js -f lib/detailed.js -o example/success-report.html","grunt-test":"grunt force:eslint","preversion":"conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git commit -am \"chore(CHANGELOG): Updating Changelog\"","postversion":"git push && git push --tags && npm publish ./"},"repository":{"type":"git","url":"git+https://github.com/mportuga/eslint-detailed-reporter.git"},"keywords":["eslint","formatter","reporter","lint","html","validate","detailed","plato"],"author":{"name":"Marcelo S. Portugal","email":"marceloquarion@gmail.com","url":"http://portugaldev.com/"},"license":"MIT","homepage":"https://github.com/mportuga/eslint-detailed-reporter","bugs":{"url":"https://github.com/mportuga/eslint-detailed-reporter/issues"},"peerDependencies":{"eslint":"3.x"},"dependencies":{"lodash":"^4.16.6"},"devDependencies":{"eslint":"^3.9.1","eslint-config-angular":"^0.5.0","eslint-plugin-angular":"^1.4.1","eslint-plugin-lodash":"^2.2.0","grunt":"^1.0.1","grunt-cli":"^1.2.0","grunt-eslint":"^19.0.0","grunt-force-task":"^2.0.0","load-grunt-tasks":"^3.5.2"},"gitHead":"55747bfc145479440105558f555fff3e4eca963c","_id":"eslint-detailed-reporter@0.6.6","_shasum":"554707cfa36a6f8e900e5cb9ccbdfeb8e0282352","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"mportuga","email":"marceloquarion@gmail.com"},"dist":{"shasum":"554707cfa36a6f8e900e5cb9ccbdfeb8e0282352","tarball":"https://registry.npmjs.org/eslint-detailed-reporter/-/eslint-detailed-reporter-0.6.6.tgz","integrity":"sha512-xMMbpFKqPhzDutuIEKGjgdViAVfn+Caa7Etebnwu9q/U17lbEIniKLeP8lc8BqKTSGOR8Fj8GRcbVQhbvK44uw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBQvOnuHSfyzovJTdq6PaHr4XqfqvwN2m9APL6FgNtExAiEA5oE778ibDndxsNmq9xRSSKSCIDejuCOOhlwe13uyREo="}]},"maintainers":[{"name":"mportuga","email":"marceloquarion@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/eslint-detailed-reporter-0.6.6.tgz_1479879207121_0.2939922579098493"},"directories":{}},"0.6.7":{"name":"eslint-detailed-reporter","version":"0.6.7","description":"Detailed HTML reporter for ESLINT.","main":"index.js","scripts":{"test":"npm run command-line && npm run grunt-test","changelog":"conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git commit -am \"chore(CHANGELOG): Updating Changelog\"","command-line":"eslint fixture/green_file.js -f lib/detailed.js -o example/success-report.html","grunt-test":"grunt force:eslint","postversion":"npm run changelog && git push && git push --tags && npm publish ./"},"repository":{"type":"git","url":"git+https://github.com/mportuga/eslint-detailed-reporter.git"},"keywords":["eslint","formatter","reporter","lint","html","validate","detailed","plato"],"author":{"name":"Marcelo S. Portugal","email":"marceloquarion@gmail.com","url":"http://portugaldev.com/"},"license":"MIT","homepage":"https://github.com/mportuga/eslint-detailed-reporter","bugs":{"url":"https://github.com/mportuga/eslint-detailed-reporter/issues"},"peerDependencies":{"eslint":"3.x"},"dependencies":{"lodash":"^4.16.6"},"devDependencies":{"eslint":"^3.9.1","eslint-config-angular":"^0.5.0","eslint-plugin-angular":"^1.4.1","eslint-plugin-lodash":"^2.2.0","grunt":"^1.0.1","grunt-cli":"^1.2.0","grunt-eslint":"^19.0.0","grunt-force-task":"^2.0.0","load-grunt-tasks":"^3.5.2"},"gitHead":"ed3d5cd8942dc3103a5f4fe0d94fd9c6dc8b9d88","_id":"eslint-detailed-reporter@0.6.7","_shasum":"78529d7c39dba63b68120bb53bb890730db6fc96","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"mportuga","email":"marceloquarion@gmail.com"},"dist":{"shasum":"78529d7c39dba63b68120bb53bb890730db6fc96","tarball":"https://registry.npmjs.org/eslint-detailed-reporter/-/eslint-detailed-reporter-0.6.7.tgz","integrity":"sha512-8pzGjjH/7Mm7qcyuRhKOo4qwYXeCNWulGaQ9P2K5XURgdoXacELYzoKC70ilf7WujTN25b/oudN2HMRMvX++3g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFcJ9gG/6D1yjVaNldF9U5kIpcvPawHenFpO/B+TuhtcAiEA/GduxMHMpLA+fKUqBQPU3+xl7eDsgWVrFTDZdW5y3BA="}]},"maintainers":[{"name":"mportuga","email":"marceloquarion@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/eslint-detailed-reporter-0.6.7.tgz_1479879448181_0.09000441967509687"},"directories":{}},"0.6.8":{"name":"eslint-detailed-reporter","version":"0.6.8","description":"Detailed HTML reporter for ESLINT.","main":"index.js","scripts":{"test":"npm run command-line && npm run grunt-test","changelog":"conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git commit -am \"chore(CHANGELOG): Updating Changelog\"","command-line":"eslint fixture/green_file.js -f lib/detailed.js -o example/success-report.html","grunt-test":"grunt force:eslint","postversion":"npm run changelog && git push && git push --tags && npm publish ./"},"repository":{"type":"git","url":"git+https://github.com/mportuga/eslint-detailed-reporter.git"},"keywords":["eslint","formatter","reporter","lint","html","validate","detailed","plato"],"author":{"name":"Marcelo S. Portugal","email":"marceloquarion@gmail.com","url":"http://portugaldev.com/"},"license":"MIT","homepage":"https://github.com/mportuga/eslint-detailed-reporter","bugs":{"url":"https://github.com/mportuga/eslint-detailed-reporter/issues"},"peerDependencies":{"eslint":"3.x"},"dependencies":{"lodash":"^4.16.6"},"devDependencies":{"eslint":"^3.9.1","eslint-config-angular":"^0.5.0","eslint-plugin-angular":"^1.4.1","eslint-plugin-lodash":"^2.2.0","grunt":"^1.0.1","grunt-cli":"^1.2.0","grunt-eslint":"^19.0.0","grunt-force-task":"^2.0.0","load-grunt-tasks":"^3.5.2"},"gitHead":"a973d63709856bb0a74bbe234798a545c05e2701","_id":"eslint-detailed-reporter@0.6.8","_shasum":"a83416e23f68bf1e0033cd716f6849937c865319","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"mportuga","email":"marceloquarion@gmail.com"},"dist":{"shasum":"a83416e23f68bf1e0033cd716f6849937c865319","tarball":"https://registry.npmjs.org/eslint-detailed-reporter/-/eslint-detailed-reporter-0.6.8.tgz","integrity":"sha512-FgWqt3m7HB35O/Zn7wz/8ckTRB6OM+QV/FJ+jVwYsCAhIOAX60NQaybNoP64e19tkspcnsQ2hJBeBVbUgcAZog==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIE5PKTm5kDBKNgGVr5wAgQyK9hcCPM9cJWgdLArknEcoAiEA2dP02sp6Ho8hNLZneUD+gqNSzHWvnhFEDPidiiPHyuw="}]},"maintainers":[{"name":"mportuga","email":"marceloquarion@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/eslint-detailed-reporter-0.6.8.tgz_1479882413617_0.04580763098783791"},"directories":{}},"0.6.9":{"name":"eslint-detailed-reporter","version":"0.6.9","description":"Detailed HTML reporter for ESLINT.","main":"index.js","scripts":{"test":"npm run command-line && npm run grunt-test","changelog":"conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git commit -am \"chore(CHANGELOG): Updating Changelog\"","command-line":"eslint fixture/green_file.js -f lib/detailed.js -o example/success-report.html","grunt-test":"grunt force:eslint","postversion":"npm run changelog && git push && git push --tags && npm publish ./"},"repository":{"type":"git","url":"git+https://github.com/mportuga/eslint-detailed-reporter.git"},"keywords":["eslint","formatter","reporter","lint","html","validate","detailed","plato"],"author":{"name":"Marcelo S. Portugal","email":"marceloquarion@gmail.com","url":"http://portugaldev.com/"},"license":"MIT","homepage":"https://github.com/mportuga/eslint-detailed-reporter","bugs":{"url":"https://github.com/mportuga/eslint-detailed-reporter/issues"},"peerDependencies":{"eslint":"3.x"},"dependencies":{"lodash":"^4.16.6"},"devDependencies":{"eslint":"^3.9.1","eslint-config-angular":"^0.5.0","eslint-plugin-angular":"^1.4.1","eslint-plugin-lodash":"^2.2.0","grunt":"^1.0.1","grunt-cli":"^1.2.0","grunt-eslint":"^19.0.0","grunt-force-task":"^2.0.0","load-grunt-tasks":"^3.5.2"},"gitHead":"9664df74a4ef28395885f29e7813048d37e84c6c","_id":"eslint-detailed-reporter@0.6.9","_shasum":"05159105ed13ce60172ebe2b2ab03606b894aa21","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"mportuga","email":"marceloquarion@gmail.com"},"dist":{"shasum":"05159105ed13ce60172ebe2b2ab03606b894aa21","tarball":"https://registry.npmjs.org/eslint-detailed-reporter/-/eslint-detailed-reporter-0.6.9.tgz","integrity":"sha512-DqRSQXbmCpIy//HSODpeo9uX4o+dOtO9aRVqGmkuDgwat5F+wBDUH2MbkRO2jil89qTNjfUNxJ85AbBGZVk1VQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFxG4OLJD4j+DsKUUsYgcJ3dOXVdLhKTlpFfsAlOLvAvAiAw1GpIkYQzbAjS2wmlZHYW5OTjB2lRDs9NQznPVdSbkQ=="}]},"maintainers":[{"name":"mportuga","email":"marceloquarion@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/eslint-detailed-reporter-0.6.9.tgz_1480398462467_0.798190979519859"},"directories":{}},"0.6.10":{"name":"eslint-detailed-reporter","version":"0.6.10","description":"Detailed HTML reporter for ESLINT.","main":"index.js","scripts":{"test":"npm run command-line && npm run grunt-test","changelog":"conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git commit -am \"chore(CHANGELOG): Updating Changelog\"","command-line":"eslint fixture/green_file.js -f lib/detailed.js -o example/success-report.html","grunt-test":"grunt force:eslint","postversion":"npm run changelog && git push && git push --tags && npm publish ./"},"repository":{"type":"git","url":"git+https://github.com/mportuga/eslint-detailed-reporter.git"},"keywords":["eslint","formatter","reporter","lint","html","validate","detailed","plato"],"author":{"name":"Marcelo S. Portugal","email":"marceloquarion@gmail.com","url":"http://portugaldev.com/"},"license":"MIT","homepage":"https://github.com/mportuga/eslint-detailed-reporter","bugs":{"url":"https://github.com/mportuga/eslint-detailed-reporter/issues"},"peerDependencies":{"eslint":"3.x"},"dependencies":{"lodash":"^4.16.6"},"devDependencies":{"eslint":"^3.9.1","eslint-config-angular":"^0.5.0","eslint-plugin-angular":"^1.4.1","eslint-plugin-lodash":"^2.2.0","grunt":"^1.0.1","grunt-cli":"^1.2.0","grunt-eslint":"^19.0.0","grunt-force-task":"^2.0.0","load-grunt-tasks":"^3.5.2"},"gitHead":"92fc441153794db9c59a43c24849c2579b8f2862","_id":"eslint-detailed-reporter@0.6.10","_shasum":"d980d7e26ce975342b2e0817583d0f8c9a2516d0","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"mportuga","email":"marceloquarion@gmail.com"},"dist":{"shasum":"d980d7e26ce975342b2e0817583d0f8c9a2516d0","tarball":"https://registry.npmjs.org/eslint-detailed-reporter/-/eslint-detailed-reporter-0.6.10.tgz","integrity":"sha512-D/mhleHUcDbMBRyMycbp4Klep+/tSgRcGnyXMHdSUxjxr+tL0fiLXnMQNgUmMtQKXIcKFgJ3dI+Ruvl4azC9mg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICO5OkBbdYHp+7/n0AyagYQzInl1HMOkwvpupmZKV4ktAiEA9GGQVePxNiPH2ek9+fx+ZkRlbSahT25RWHJ5hYXLd9I="}]},"maintainers":[{"name":"mportuga","email":"marceloquarion@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/eslint-detailed-reporter-0.6.10.tgz_1481056324662_0.775616935454309"},"directories":{}},"0.7.0":{"name":"eslint-detailed-reporter","version":"0.7.0","description":"Detailed HTML reporter for ESLINT.","main":"index.js","scripts":{"test":"npm run command-line && npm run grunt-test","changelog":"conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git commit -am \"chore(CHANGELOG): Updating Changelog\"","command-line":"eslint fixture/green_file.js -f lib/detailed.js -o example/success-report.html","grunt-test":"grunt force:eslint","postversion":"npm run changelog && git push && git push --tags && npm publish ./"},"repository":{"type":"git","url":"git+https://github.com/mportuga/eslint-detailed-reporter.git"},"keywords":["eslint","formatter","reporter","lint","html","validate","detailed","plato"],"author":{"name":"Marcelo S. Portugal","email":"marceloquarion@gmail.com","url":"http://portugaldev.com/"},"license":"MIT","homepage":"https://github.com/mportuga/eslint-detailed-reporter","bugs":{"url":"https://github.com/mportuga/eslint-detailed-reporter/issues"},"peerDependencies":{"eslint":"3.x"},"dependencies":{"lodash":"^4.16.6"},"devDependencies":{"eslint":"^3.9.1","eslint-config-angular":"^0.5.0","eslint-plugin-angular":"^1.4.1","eslint-plugin-lodash":"^2.2.0","grunt":"^1.0.1","grunt-cli":"^1.2.0","grunt-eslint":"^19.0.0","grunt-force-task":"^2.0.0","load-grunt-tasks":"^3.5.2"},"gitHead":"115f2c50362e64b043cf499e6d2d2823810cf6a6","_id":"eslint-detailed-reporter@0.7.0","_shasum":"ae345fc255ac48e05cf0fef144aa0fe8a800c7c6","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"mportuga","email":"marceloquarion@gmail.com"},"dist":{"shasum":"ae345fc255ac48e05cf0fef144aa0fe8a800c7c6","tarball":"https://registry.npmjs.org/eslint-detailed-reporter/-/eslint-detailed-reporter-0.7.0.tgz","integrity":"sha512-KdBQR5s0raqKuMkkEscLo6/btEqYu2eQBnA4R/3rBy7eR8tciqd9GWOiEajqYMS7T8pbz8EEfmcVnZkM/NEe5A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC9+ZwuJGCABT7ZpoHsPYBKo/gd94pVSTEV8xAteQdzjQIgNhcA4fbNysk8fx8lt9j7ilqkyflpCiDT63wifCzSwZQ="}]},"maintainers":[{"name":"mportuga","email":"marceloquarion@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/eslint-detailed-reporter-0.7.0.tgz_1490051453677_0.9119391292333603"},"directories":{}},"0.7.1":{"name":"eslint-detailed-reporter","version":"0.7.1","description":"Detailed HTML reporter for ESLINT.","main":"index.js","scripts":{"test":"npm run command-line && npm run grunt-test","changelog":"conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git commit -am \"chore(CHANGELOG): Updating Changelog\"","command-line":"eslint fixture/green_file.js -f lib/detailed.js -o example/success-report.html","grunt-test":"grunt force:eslint","postversion":"npm run changelog && git push && git push --tags && npm publish ./"},"repository":{"type":"git","url":"git+https://github.com/mportuga/eslint-detailed-reporter.git"},"keywords":["eslint","formatter","reporter","lint","html","validate","detailed","plato"],"author":{"name":"Marcelo S. Portugal","email":"marceloquarion@gmail.com","url":"http://portugaldev.com/"},"license":"MIT","homepage":"https://github.com/mportuga/eslint-detailed-reporter","bugs":{"url":"https://github.com/mportuga/eslint-detailed-reporter/issues"},"peerDependencies":{"eslint":"3.x"},"dependencies":{"lodash":"^4.16.6"},"devDependencies":{"eslint":"^3.9.1","eslint-config-angular":"^0.5.0","eslint-plugin-angular":"^1.4.1","eslint-plugin-lodash":"^2.2.0","grunt":"^1.0.1","grunt-cli":"^1.2.0","grunt-eslint":"^19.0.0","grunt-force-task":"^2.0.0","load-grunt-tasks":"^3.5.2"},"gitHead":"2db86bf05a078756b54ce1944df301a2fff5da9a","_id":"eslint-detailed-reporter@0.7.1","_shasum":"3cd55fd6e7cb8c736b83659438daf9e39869c6bc","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"mportuga","email":"marceloquarion@gmail.com"},"dist":{"shasum":"3cd55fd6e7cb8c736b83659438daf9e39869c6bc","tarball":"https://registry.npmjs.org/eslint-detailed-reporter/-/eslint-detailed-reporter-0.7.1.tgz","integrity":"sha512-qviu1n9lx2taqal/1/3129bSK9cY0g7B1cXOUg2Tw3rvlS9tMPT8D2mf3JRK67/Z8sRdAOdLjwBi3fk8QHVj+A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBkvs/vsgKSP+Qk26W/G7MVLEse9F+gBmIQWAw7zgMtlAiEAors0RXyzTYzYkUHWCwowKvXh4y1ZAmx0ZhHABj2SIis="}]},"maintainers":[{"name":"mportuga","email":"marceloquarion@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/eslint-detailed-reporter-0.7.1.tgz_1490109019537_0.14952524309046566"},"directories":{}},"0.7.2":{"name":"eslint-detailed-reporter","version":"0.7.2","description":"Detailed HTML reporter for ESLINT.","main":"index.js","scripts":{"test":"npm run command-line && npm run grunt-test","changelog":"conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git commit -am \"chore(CHANGELOG): Updating Changelog\"","command-line":"eslint fixture/green_file.js -f lib/detailed.js -o example/success-report.html","grunt-test":"grunt force:eslint","postversion":"npm run changelog && git push && git push --tags && npm publish ./"},"repository":{"type":"git","url":"git+https://github.com/mportuga/eslint-detailed-reporter.git"},"keywords":["eslint","formatter","reporter","lint","html","validate","detailed","plato"],"author":{"name":"Marcelo S. Portugal","email":"marceloquarion@gmail.com","url":"http://portugaldev.com/"},"license":"MIT","homepage":"https://github.com/mportuga/eslint-detailed-reporter","bugs":{"url":"https://github.com/mportuga/eslint-detailed-reporter/issues"},"peerDependencies":{"eslint":"3.x"},"dependencies":{"lodash":"^4.16.6"},"devDependencies":{"eslint":"^3.9.1","eslint-config-angular":"^0.5.0","eslint-plugin-angular":"^1.4.1","eslint-plugin-lodash":"^2.2.0","grunt":"^1.0.1","grunt-cli":"^1.2.0","grunt-eslint":"^19.0.0","grunt-force-task":"^2.0.0","load-grunt-tasks":"^3.5.2"},"gitHead":"f15043390bfa33ccb6ba74303b2807f8679a15a0","_id":"eslint-detailed-reporter@0.7.2","_shasum":"7dc4ff7a5f2ecb28af8a36be9de83391ef76359a","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"mportuga","email":"marceloquarion@gmail.com"},"dist":{"shasum":"7dc4ff7a5f2ecb28af8a36be9de83391ef76359a","tarball":"https://registry.npmjs.org/eslint-detailed-reporter/-/eslint-detailed-reporter-0.7.2.tgz","integrity":"sha512-G4Uym0/lc+bdGY4GBoTmx5Gc4pjwGCJJxo6qObO1hV3iTQtlHUcrd/+P+p8aR3FVvyVquFEIr6leZH7j/nZDzg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDek4MDvXGEsJzZddqrD9JLgm4gTnE3n27sB1FOCTp7uwIhAKj7kqacXQLPZYDZ3UW8rQiYeh4jCULoDnleUopyAyDX"}]},"maintainers":[{"name":"mportuga","email":"marceloquarion@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/eslint-detailed-reporter-0.7.2.tgz_1490121454102_0.20691524725407362"},"directories":{}},"0.7.3":{"name":"eslint-detailed-reporter","version":"0.7.3","description":"Detailed HTML reporter for ESLINT.","main":"index.js","scripts":{"start":"./node_modules/pm2/bin/pm2 start test/e2e/e2e-server.js","stop":"./node_modules/pm2/bin/pm2 delete all","test":"npm run command-line && npm run grunt-test","changelog":"conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git commit -am \"chore(CHANGELOG): Updating Changelog\"","command-line":"eslint fixture/green_file.js -f lib/detailed.js -o example/success-report.html","grunt-test":"grunt force:eslint","protractor-start":"node_modules/protractor/bin/webdriver-manager start","protractor":"npm start && grunt protractor:local && npm stop","protractor-ci":"npm start && grunt protractor:ci && npm stop","postversion":"npm run changelog && git push && git push --tags && npm publish ./"},"repository":{"type":"git","url":"git+https://github.com/mportuga/eslint-detailed-reporter.git"},"keywords":["eslint","formatter","reporter","lint","html","validate","detailed","plato"],"author":{"name":"Marcelo S. Portugal","email":"marceloquarion@gmail.com","url":"http://portugaldev.com/"},"license":"MIT","homepage":"https://github.com/mportuga/eslint-detailed-reporter","bugs":{"url":"https://github.com/mportuga/eslint-detailed-reporter/issues"},"peerDependencies":{"eslint":"3.0.0 - 4.9999.9999"},"dependencies":{"lodash":"^4.16.6"},"devDependencies":{"eslint":"^4.15.0","eslint-config-angular":"^0.5.0","eslint-plugin-angular":"^1.4.1","eslint-plugin-lodash":"^2.2.0","grunt":"^1.0.1","grunt-cli":"^1.2.0","grunt-eslint":"^19.0.0","grunt-force-task":"^2.0.0","grunt-protractor-runner":"^5.0.0","load-grunt-tasks":"^3.5.2","pm2":"^2.4.2","protractor":"^5.1.1"},"gitHead":"8fd9ea8f41325d77cc64200d118dbfc849415a37","_id":"eslint-detailed-reporter@0.7.3","_shasum":"5c5f7b444b8e2da92c98baed853ce7c5a3272688","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.11.3","_npmUser":{"name":"mportuga","email":"marceloquarion@gmail.com"},"dist":{"shasum":"5c5f7b444b8e2da92c98baed853ce7c5a3272688","tarball":"https://registry.npmjs.org/eslint-detailed-reporter/-/eslint-detailed-reporter-0.7.3.tgz","integrity":"sha512-tZLxY58+u97yPKFjyMuUuJtOZ51AHG7OhLMiFA4mE2yvmzJLNjSsiDWyZ3cplipvVSUveNnDQYLm68ovQwTsaA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIA7bwl0xn9JxriCp83FiBC+PwvXcL8rm4r5bUQHhj8K9AiAuz1DiU6Szdhi1n2qTK+SFmwkUBRSfujsTVZAiIYXeDA=="}]},"maintainers":[{"name":"mportuga","email":"marceloquarion@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/eslint-detailed-reporter-0.7.3.tgz_1515698089898_0.5027815033681691"},"directories":{}},"0.7.4":{"name":"eslint-detailed-reporter","version":"0.7.4","description":"Detailed HTML reporter for ESLINT.","main":"index.js","scripts":{"start":"./node_modules/pm2/bin/pm2 start test/e2e/e2e-server.js","stop":"./node_modules/pm2/bin/pm2 delete all","test":"npm run command-line && npm run grunt-test","changelog":"conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git commit -am \"chore(CHANGELOG): Updating Changelog\"","command-line":"eslint fixture/green_file.js -f lib/detailed.js -o example/success-report.html","grunt-test":"grunt force:eslint","protractor-start":"node_modules/protractor/bin/webdriver-manager start","protractor":"npm start && grunt protractor:local && npm stop","protractor-ci":"npm start && grunt protractor:ci && npm stop","postversion":"npm run changelog && git push && git push --tags && npm publish ./"},"repository":{"type":"git","url":"git+https://github.com/mportuga/eslint-detailed-reporter.git"},"keywords":["eslint","formatter","reporter","lint","html","validate","detailed","plato"],"author":{"name":"Marcelo S. Portugal","email":"marceloquarion@gmail.com","url":"http://portugaldev.com/"},"license":"MIT","homepage":"https://github.com/mportuga/eslint-detailed-reporter","bugs":{"url":"https://github.com/mportuga/eslint-detailed-reporter/issues"},"peerDependencies":{"eslint":"3.0.0 - 4.9999.9999"},"dependencies":{"lodash":"^4.16.6"},"devDependencies":{"eslint":"^4.15.0","eslint-config-angular":"^0.5.0","eslint-plugin-angular":"^1.4.1","eslint-plugin-lodash":"^2.2.0","grunt":"^1.0.1","grunt-cli":"^1.2.0","grunt-eslint":"^19.0.0","grunt-force-task":"^2.0.0","grunt-protractor-runner":"^5.0.0","load-grunt-tasks":"^3.5.2","pm2":"^2.4.2","protractor":"^5.1.1"},"gitHead":"2e46224103cc2bb682bb7a6efcc8e1dfb23e4063","_id":"eslint-detailed-reporter@0.7.4","_npmVersion":"5.7.1","_nodeVersion":"8.11.2","_npmUser":{"name":"mportuga","email":"marceloquarion@gmail.com"},"dist":{"integrity":"sha512-QVv+4A2Kxh/Re9EWxW6qENznqTiLKqcn1rZGxQoF+oZrU++hbr9U/yEkykHkppmoAjnnkq1ILoHigGnP7812mQ==","shasum":"2684a1730d7c0578c532cc6ac4ff6c1b74fe8774","tarball":"https://registry.npmjs.org/eslint-detailed-reporter/-/eslint-detailed-reporter-0.7.4.tgz","fileCount":24,"unpackedSize":47355,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcXIQ2CRA9TVsSAnZWagAAty0P/3b+UvaDRIrxRvTDW0to\n/+0Yf40ExbDtc354qSACqrwEXrJNLMUkeGuECKAE3SJlW6duHYOFXtQorSQn\nieb5rSR3BdeqoAeEh2AXXOWV8XEbqyYba9pvqT0mfeCyhV0ZWlpyzOM7hsNL\nqL3YnhSqlHF6HzoyQ8vHIBiU4Ihr18aGxO6CqirqNFDV5ue1LkwZGny1SO9B\nnGH6fnCW1zbHnsB9xIm4GrnnVtFlQDTHWGRVon0H+L/I4TchGn0hP2znkAj5\ncC+0j2K5c0TseK9N/Cmcp3gGDMjBdXSjgI2FppBHCr69CO6CqrEdJvQ/pL2W\nG1EVtepD7x/1DLuUbmt98dip35PGGGghYFQ94Voo9ShFVzD1Fuo7CRWZDvV3\nCGqlh1wfu995IXq/Ux+iUkWmoO2gV9cL2DZty1XWM13E+SArs1/mZYjjdkan\nqkYx5yQ/+yapUz0Yo1Ir1+gxCqlesxf1mCY5himLGdvH+Qir/H9Hfi/b1dsS\nDGvXcXyl7xmOfCou5oul1Hznx67E+UEaWYp8DQBsPUpQrqptoe9VAdJ4S+jB\nF3LBDDV6KAZ8NTjmL7QTICBWRvDZQtG7TBaVfWjd+azjxU7fBSCdKs1DyNqH\njX3lZxvz4mpK8kELGLpVsIiKXMbl7lmkRYcYaPE8wMZYxMXdU5C+VeGQlf4y\nRVy8\r\n=/0G5\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEyMA04LCf+TtjufviAfQ4YFRewR2l43GdTnZeHlM/qxAiBLlm/wM1dA/wex9cyhail9ZJ7IUhkSiViwc2smyZdfPQ=="}]},"maintainers":[{"name":"mportuga","email":"marceloquarion@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/eslint-detailed-reporter_0.7.4_1549567029436_0.6128995172789884"},"_hasShrinkwrap":false},"0.8.0":{"name":"eslint-detailed-reporter","version":"0.8.0","description":"Detailed HTML reporter for ESLINT.","main":"index.js","scripts":{"start":"pm2 start test/e2e/e2e-server.js","stop":"pm2 delete all","test":"npm run command-line && npm run grunt-test","changelog":"conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git commit -am \"chore(CHANGELOG): Updating Changelog\"","command-line":"eslint fixture/green_file.js -f lib/detailed.js -o example/success-report.html","grunt-test":"grunt force:eslint","protractor-start":"node_modules/protractor/bin/webdriver-manager start","protractor":"npm start && grunt protractor:local && npm stop","protractor-ci":"npm start && grunt protractor:ci && npm stop","postversion":"npm run changelog && git push && git push --tags && npm publish ./"},"repository":{"type":"git","url":"git+https://github.com/mportuga/eslint-detailed-reporter.git"},"keywords":["eslint","formatter","reporter","lint","html","validate","detailed","plato"],"author":{"name":"Marcelo S. Portugal","email":"marceloquarion@gmail.com","url":"http://portugaldev.com/"},"license":"MIT","homepage":"https://github.com/mportuga/eslint-detailed-reporter","bugs":{"url":"https://github.com/mportuga/eslint-detailed-reporter/issues"},"peerDependencies":{"eslint":"3.0.0 - 5.9999.9999"},"dependencies":{"lodash":"^4.17.11"},"devDependencies":{"eslint":"^5.16.0","eslint-plugin-angular":"^4.0.0","eslint-plugin-lodash":"^5.1.0","grunt":"^1.0.4","grunt-cli":"^1.3.2","grunt-eslint":"^21.0.0","grunt-force-task":"^2.0.0","grunt-protractor-runner":"^5.0.0","load-grunt-tasks":"^4.0.0","pm2":"^3.5.0","protractor":"^5.4.2"},"gitHead":"731af360846962e6bf7d9a92a6e8f96ef2710fb0","_id":"eslint-detailed-reporter@0.8.0","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"mportuga","email":"marceloquarion@gmail.com"},"dist":{"integrity":"sha512-u/LAPwSQ8udUiWXJ2aYZfvV4gd7uhS77ZctOv8FZ8SDxzEG5aV18dgOTMilT8uEHBJyv3MpGHoQH7A3tXOfm/Q==","shasum":"bc935f8f82224e5df022c08dd0a4e96e410d1c0a","tarball":"https://registry.npmjs.org/eslint-detailed-reporter/-/eslint-detailed-reporter-0.8.0.tgz","fileCount":24,"unpackedSize":47819,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcyyVBCRA9TVsSAnZWagAAkaQQAI6Yi5MQDTVZep7oICus\npmyo4d8Ls8gn+H+JfQap6AZbFDXGAjE17H5S1q4gPhQI4kYCluMl8psTnR+s\nhGDVKyrFYlGmnml3VF61/d27m4ss0fImFDfWIMY0B3tBYjjL8o/KVx8W5Qr3\nikaSvEocWj0+WHAx/sncXTJt9j2ghDkGuKRuOuma/dVPIIG4PfjYCjg0I6nl\nach+IuGah+4meUP3GxDOxZ3YPYXJxzhDTSUDu4BpQbUTFITcRGebS1WKHO60\nASSoI4iE+y1zS/ncFNYZU80He2aOx7WddZE/LY+CXYO9tx3itlHStNifBTm1\naUZ2hyYN83lk4JSf1cLlEeHvgQbHWrzQ5S8R05iKxyGlD52vhRq3x7Ek14EJ\nLA6Eg2Xf1Z4yJDbhqJcwtLBtYuPisSL8hpAgE3U6jrDBhflDomDGG9c8uoj5\nW00835lxMBkorbzYmnrR9Gz/4eQUEP8pH/TdRqUx0OlmCmSPR3BTsweTlLbd\nDd+21YoXZ9UmaVbYQHJ1AUQKBQGD/QkkvPhvRoilmhH5xwkp9BTNSkoigv+s\nVa2JuXBOQkCkA/3H3Con9NxjiDaJo/Am8QDMTT3LC1WHltC9Oiof1Vb7iDTa\n0fmBlVSMBuW9aQV5zoOSRxSVKOS9H3OxwUkc34p0s/Mz87vXoLgZc0IY1feX\ngB38\r\n=Mz3M\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIELWyP+WdbrkaNsmWw0oo9/TqBbW/bRrph/7g7+fcBlgAiEA1mo2URL5ZSxlbfHOXwblFy3ocAmJ/LmXUkPupIxr78Q="}]},"maintainers":[{"name":"mportuga","email":"marceloquarion@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/eslint-detailed-reporter_0.8.0_1556817216594_0.8611787894812453"},"_hasShrinkwrap":false},"0.9.0":{"name":"eslint-detailed-reporter","version":"0.9.0","description":"Detailed HTML reporter for ESLINT.","main":"index.js","scripts":{"start":"pm2 start test/e2e/e2e-server.js","stop":"pm2 delete all","test":"npm run command-line && npm run grunt-test","changelog":"conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git commit -am \"chore(CHANGELOG): Updating Changelog\"","command-line":"eslint fixture/green_file.js -f lib/detailed.js -o example/success-report.html","grunt-test":"grunt force:eslint","postversion":"npm run changelog && git push && git push --tags && npm publish ./"},"repository":{"type":"git","url":"git+https://github.com/mportuga/eslint-detailed-reporter.git"},"keywords":["eslint","formatter","reporter","lint","html","validate","detailed","plato"],"author":{"name":"Marcelo S. Portugal","email":"marceloquarion@gmail.com"},"license":"MIT","homepage":"https://github.com/mportuga/eslint-detailed-reporter","bugs":{"url":"https://github.com/mportuga/eslint-detailed-reporter/issues"},"peerDependencies":{"eslint":">=3.0.0 <9"},"dependencies":{"lodash":"^4.17.21"},"devDependencies":{"conventional-changelog":"^3.1.25","conventional-changelog-cli":"^2.2.2","eslint":"^8.15.0","eslint-plugin-angular":"^4.1.0","eslint-plugin-lodash":"^7.4.0","grunt":"^1.5.3","grunt-cli":"^1.4.3","grunt-eslint":"^24.0.0","grunt-force-task":"^3.0.0","load-grunt-tasks":"^5.1.0","pm2":"^5.2.0"},"gitHead":"f19967fb85454b3ded7e89cd27b0826a40f45283","_id":"eslint-detailed-reporter@0.9.0","_nodeVersion":"14.17.6","_npmVersion":"6.14.15","dist":{"integrity":"sha512-b0uM1lsN4xG81TfGAXzSvCom1mLNAjmj4YxH9dLb4U+KieDgYlHr0ZcgIB86I2L9sm4fV3QygUN7w4okS2Jong==","shasum":"3dfa4e0c925955458c17f108397578ec5af1e82c","tarball":"https://registry.npmjs.org/eslint-detailed-reporter/-/eslint-detailed-reporter-0.9.0.tgz","fileCount":24,"unpackedSize":50203,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBeZ4QlPEflq3xF+xwDTtHJo2PxiBJTjva3FfAL/qBthAiA45R2EMm6Vf0VAe4UFLA7JjVnbBiwMS654dZOc6jE5bA=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJig8yLACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoHHRAAoq+bjfCf8RvJ4OWbVZCgR+eDMTZS+0guys+lPBFFvqXtXwVx\r\nzgSG93xNaCO+SrcCAD1D74PSYC6Tu2SU3dVx8+znNdIy9r/TndWKKv5d6R7w\r\nNSW2E/0Dc0t+s/A9QR2/A0BeCdR6jxA2VNgAFMN4B2oW/9t1V43uDAha5rg7\r\nEBqWChTuINLiBC+DQaSnYqfwu3S2CuVABJZdhaQWsSMMyM69etljbdknOuqk\r\nKLjnwNk3NSxXooRXghoVtegsP8huDKIgdqQBw5AJ63mjhakxvEbIl2A7GRba\r\n4IkpTmxqhZR1eX6Nl6m06RouGihY8DGEzYdBfcq+dIbNjEYHTU+qU4duJlaj\r\ncuVDWQM1jW0pkfhlxQcE+09CFkBbGmiFV+1kKBit2jX0Ood1WdqquE00Jkwm\r\nA6/8NRtIkupGLP+RGPac5sdADkCwFIaM4tOnZMLBNodm9eOZqPvi4Z8/O2SC\r\n/uCSZJ4cyrKmb+h3DkPX7Df8gOzrf3hHKFMZrw7lWQXh/H8nXGJ3ox/xyq+T\r\nzv9W7IV6clOkT8+aT8/K9svq3pYqW0V6QobFzCUPCbJAGrOr1atAQAQDJi8s\r\nfaVoAmQSfKRiJRlyizzUixX1tOza1/xpJZ7YS0fjkiXgNTi0WteQATXy1yud\r\npEnu+kD7nfX+FR7STueeI4529hJ83qB2zGw=\r\n=b9h6\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"mportuga","email":"marceloquarion@gmail.com"},"directories":{},"maintainers":[{"name":"mportuga","email":"marceloquarion@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/eslint-detailed-reporter_0.9.0_1652804746772_0.03577821873256415"},"_hasShrinkwrap":false}},"keywords":["eslint","formatter","reporter","lint","html","validate","detailed","plato"],"author":{"name":"Marcelo S. Portugal","email":"marceloquarion@gmail.com"},"license":"MIT","readmeFilename":"README.md","homepage":"https://github.com/mportuga/eslint-detailed-reporter","repository":{"type":"git","url":"git+https://github.com/mportuga/eslint-detailed-reporter.git"},"bugs":{"url":"https://github.com/mportuga/eslint-detailed-reporter/issues"},"users":{"mportuga":true,"flumpus-dev":true}}