{"maintainers":[{"name":"anonymous","email":"chevrier.bertrand@gmail.com"}],"keywords":["gruntplugin","grunt","documentation","doc","jsdoc","jsdoc3"],"dist-tags":{"latest":"2.4.1"},"author":{"name":"Bertrand Chevrier","email":"chevrier.bertrand@gmail.com","url":"http://krampstudio.com"},"description":"Integrates jsdoc3 generation into your Grunt build","readme":"# grunt-jsdoc [![Build Status](https://travis-ci.org/krampstudio/grunt-jsdoc.png)](https://travis-ci.org/krampstudio/grunt-jsdoc) [![NPM version](https://badge.fury.io/js/grunt-jsdoc.png)](http://badge.fury.io/js/grunt-jsdoc) [![Built with Grunt](https://cdn.gruntjs.com/builtwith.svg)](https://gruntjs.com/)\n\n[![Npm Downloads](https://nodei.co/npm/grunt-jsdoc.png?downloads=true&stars=true)](https://nodei.co/npm/grunt-jsdoc.png?downloads=true&stars=true)\n\nThis plugin enables you to integrate the generation of comments based documentation into your Grunt build.\n\n\n\n## Generate your documentation\n\n### Install\n\nThis plugin requires Grunt `>=0.4.0`\n\nIf you haven't used [Grunt](http://gruntjs.com/) before, be sure to check out the [Getting Started](http://gruntjs.com/getting-started) guide, as it explains how to create a [Gruntfile](http://gruntjs.com/sample-gruntfile) as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:\n\n```shell\nnpm install grunt-jsdoc --save-dev\n```\n\nOnce the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:\n\n```js\ngrunt.loadNpmTasks('grunt-jsdoc');\n```\n\n### Configuration\n\nFirst, add the `jsdoc` entry to the options of the `initConfig` method of your Gruntfile.js :\n\n```javascript\ngrunt.initConfig({\n    jsdoc : {\n        dist : {\n            src: ['src/*.js', 'test/*.js'],\n            options: {\n                destination: 'doc'\n            }\n        }\n    }\n});\n```\n\nThe supported options are\n\n * `src` : an array of pattern that matches the files to extract the documentation from. You can also [include a README](http://usejsdoc.org/about-including-readme.html).\n * `dest` : (alias to `options.destination`) set up the destination folder, the grunt way\n * `jsdoc`: (optional) the path to the jsdoc bin (needed only for some border line cases)\n * `options` : options used by jsdoc\n   * `destination`: the folder where the doc is generated\n   * ... All jsdoc options are available (see [usejsdocCli](http://usejsdoc.org/about-commandline.html) documentation).\n   * `ignoreWarnings` : (optional) do not show jsdoc warnings\n\n### Code Documentation\n\nThis plugin is a wrapper around [jsdoc3](https://github.com/jsdoc3/jsdoc). Please refer to the [documentation](http://usejsdoc.org) for the documentation details.\n\n### Templates\n\nThe plugin includes only the jsdoc3 template but you can configure any other jsdoc3 template. For example you can use [ink-docstrap](https://www.npmjs.com/package/ink-docstrap).\n\n```\nnpm install --save-dev ink-docstrap\n```\n\nAnd in your `Gruntfile.js` :\n\n```javascript\njsdoc : {\n    dist : {\n        src: ['src/**/*.js', 'README.md'],\n        options: {\n            destination : 'doc',\n               template : \"node_modules/ink-docstrap/template\",\n              configure : \"node_modules/ink-docstrap/template/jsdoc.conf.json\"\n        }\n    }\n}\n```\n\n## Generation\n\nTo generate the documentation, you need to call the `jsdoc` task :\n\n```bash\n$> grunt jsdoc\n```\n\nor integrate it to your build sequence :\n\n```javascript\ngrunt.registerTask('default', ['lint', 'test', 'jsdoc']);\n```\n\n## Compatibility\n\n### :warning: Migrate from `0.x.x` to `1.x.x` branch :\n\nI have removed the direct dependency to [ink-docstrap](https://www.npmjs.com/package/ink-docstrap). If you still want it, grab the dependency by yourself (`npm install --save-dev ink-docstrap`)\n\n### :warning: Migrate from `1.x.x` to `2.x.x` branch :\n\nThe `private` option follows now the default jsdoc behavior : `false` by default.\n\n## Contributions\n\nEvery contribution is more than welcomed. You can:\n - [report issues](https://github.com/krampstudio/grunt-jsdoc/issues)\n - Fix, improve the configuration, add new features. The best is to fork and submit a pull request\n - Test and adapt to other OS\n - Fix my English mistakes\n - Update the documentation\n - Create a better logo\n - [Offer me a coffee](https://gratipay.com/~krampstudio/) (I'm maintaining this plugin on my free time)\n\n### Upstream issues\n\n*For documentation related issues, please use the [jsdoc issue tracker](https://github.com/jsdoc3/jsdoc/issues)*\n\nTo be sure the issue comes from the Grunt plugin, you can check by comparing the results with a jsdoc command. Run the task with the `--debug` flag to retrieve the jsdoc command to run.\n\n## Release History\n * _2.4.0_ jsdoc 3.6.0 (security update) and upgrade node support\n    * _2.4.1_ security update\n * _2.3.0_ jsdoc 3.5.5 and up to date dependencies\n    * _2.3.1_ fix version of transitive dependency `marked` to prevent [regex dos](https://www.npmjs.com/advisories/812)\n * _2.2.0_ jsdoc 3.5.0\n    * _2.2.1_ fix version of transitive dependency `marked` to prevent xss\n * _2.1.0_ use `cross-spawn` instead of `cross-spawn-async`, add `generating` and `generated` grunt events\n * _2.0.0_ `private` behavior, `cross-spawn-async` instead of manual windows management\n * _1.1.0_ update to jsdoc 3.4.0 and make dest optional if a config file is set.\n * _1.0.0_ remove direct dependency to docstrap\n * _0.6.0_ jsdoc 3.0.0\n    * _0.6.4_ first stable using jsdoc 3.3.0\n    * _0.6.5_ code refactoring, docstrap 0.5.3, PR [#120](https://github.com/krampstudio/grunt-jsdoc/pull/120), better path management\n    * _0.6.6_ fix failing test\n    * _0.6.7_ Fix bug [#136](https://github.com/krampstudio/grunt-jsdoc/issues/136) and add more tests\n    * _0.6.8_ Fix bug [#140](https://github.com/krampstudio/grunt-jsdoc/issues/140), [#143](https://github.com/krampstudio/grunt-jsdoc/issues/143),\n    * _0.6.9_ Fix bug [#144](https://github.com/krampstudio/grunt-jsdoc/issues/144)\n    * _0.6.10_ Revert wrong moving away docstrap dep\n* _0.5.0_ Move to NPM dependencies instead of git, jsdoc 3.2.2 (Fix [#65](https://github.com/krampstudio/grunt-jsdoc/issues/65))\n   * _0.5.1_ Update repo name to prevent confusion with previous version\n   * _0.5.2_ Upgrade to Grunt 0.4.3 (PR [#74](https://github.com/krampstudio/grunt-jsdoc/pull/74))\n   * _0.5.3_ Fix peer deps issue\n   * _0.5.4_ Fix peer deps issue\n   * _0.5.5_ Update docstrap version\n   * _0.5.6_ Fix dependencies version and bug [#87](https://github.com/krampstudio/grunt-jsdoc/issues/87)\n   * _0.5.7_ Update readme, docstrap version\n   * _0.5.8_ Fix bug [#116](https://github.com/krampstudio/grunt-jsdoc/issues/116)\n * _0.4.0_ Update to jsdoc 3.2.0 stable, Fix [#37](https://github.com/krampstudio/grunt-jsdoc/issues/37), add integration tests\n   * _0.4.1_ Fix [#53](https://github.com/krampstudio/grunt-jsdoc/issues/53) and [#54](https://github.com/krampstudio/grunt-jsdoc/issues/54)\n   * _0.4.2_ Fix [#57](https://github.com/krampstudio/grunt-jsdoc/issues/57)\n   * _0.4.3_ Grunt 0.4.2 compliance, upgrade to jsdoc 3.2.2 and undeprecate the `dest` option ([#60](https://github.com/krampstudio/grunt-jsdoc/issues/60), [#63](https://github.com/krampstudio/grunt-jsdoc/issues/63) and [#66](https://github.com/krampstudio/grunt-jsdoc/issues/66))\n * _0.3.0_ Partial rewrite, Fix [#29](https://github.com/krampstudio/grunt-jsdoc/pull/30) and minor typos fixs\n   * _0.3.1_ Fix [#29](https://github.com/krampstudio/grunt-jsdoc/issues/29)\n   * _0.3.2_ Fix [#32](https://github.com/krampstudio/grunt-jsdoc/issues/32)\n   * _0.3.3_ Fix [#34](https://github.com/krampstudio/grunt-jsdoc/issues/34) and [#36](https://github.com/krampstudio/grunt-jsdoc/issues/34)\n * _0.2.0_ Migrate to grunt 0.4\n   * _0.2.1_ Fix [#10](https://github.com/krampstudio/grunt-jsdoc/issues/10)\n   * _0.2.2_ Fix [#11](https://github.com/krampstudio/grunt-jsdoc/issues/11)\n   * _0.2.3_ Fix [#14](https://github.com/krampstudio/grunt-jsdoc/pull/14) and [#15](https://github.com/krampstudio/grunt-jsdoc/issues/15)\n   * _0.2.4_ Fix Jsdoc 3 dependency to 3.1.1 tag, enables jsdoc options [#19](https://github.com/krampstudio/grunt-jsdoc/issues/19), enable to add jsdoc path [#13](https://github.com/krampstudio/grunt-jsdoc/issues/13) and add peerDependencies\n * _0.1.0_ First release, includes basic support of [jsdoc3]\n   * _0.1.1_ Fix [#2](https://github.com/krampstudio/grunt-jsdoc/issues/2)\n   * _0.1.2_ Fix [#4](https://github.com/krampstudio/grunt-jsdoc/issues/4)\n   * _0.1.3_ Fix [#7](https://github.com/krampstudio/grunt-jsdoc/pull/7), Add [feature #8](https://github.com/krampstudio/grunt-jsdoc/pull/8)\n   * _0.1.4_ Use `child_process.spawn` instead of `exec` to run the command\n\n\n## License\n\nCopyright (c) 2012 Bertrand Chevrier\nLicensed under the MIT license.\n\n","repository":{"type":"git","url":"git://github.com/krampstudio/grunt-jsdoc.git"},"users":{"ttsvetko":true,"krampstudio":true,"ronchung":true,"whg_ami_cat":true,"csbun":true,"veloz":true,"nbarr":true,"gauss02":true,"ttsuchiya":true,"pra85":true,"furzeface":true,"banguit":true,"kerry95":true,"benboarder":true,"columbennett":true,"techjeffharris":true,"itonyyo":true,"gejiawen":true,"jasondu":true,"rethinkflash":true,"kericw":true,"fabian.schmid":true,"readmangj":true,"arnoldstoba":true,"vchouhan":true,"ristostevcev":true,"prabhuvikas":true,"mskjp":true,"rubiadias":true,"maycon_ribeiro":true,"ecelis":true},"bugs":{"url":"https://github.com/krampstudio/grunt-jsdoc/issues"},"license":"MIT","versions":{"0.2.3":{"name":"grunt-jsdoc","description":"Integrates jsdoc3 generation into your Grunt build","version":"0.2.3","homepage":"https://github.com/krampstudio/grunt-jsdoc-plugin","author":{"name":"Bertrand Chevrier","email":"chevrier.bertrand@gmail.com","url":"http://krampstudio.com"},"repository":{"type":"git","url":"git://github.com/krampstudio/grunt-jsdoc-plugin.git"},"bugs":{"url":"https://github.com/krampstudio/grunt-jsdoc-plugin/issues"},"licenses":[{"type":"MIT","url":"https://github.com/krampstudio/grunt-jsdoc-plugin/blob/master/LICENSE-MIT"}],"main":"Gruntfile.js","bin":{"grunt-jsdoc":"bin/grunt-jsdoc"},"engines":{"node":">= 0.8.0"},"scripts":{"test":"grunt nodeunit"},"devDependencies":{"grunt":"~0.4.x","grunt-contrib-nodeunit":"~0.1.2","grunt-contrib-jshint":"~0.1.1"},"dependencies":{"jsdoc3":"git+https://github.com/jsdoc3/jsdoc.git"},"keywords":["gruntplugin","grunt","jsdoc","jsdoc3"],"_id":"grunt-jsdoc@0.2.3","dist":{"shasum":"087f6eb7610a74fc56d42d5c902a434f28333dd2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/grunt-jsdoc/-/grunt-jsdoc-0.2.3.tgz","integrity":"sha512-kszTpbg8RpSN/qnX61XVQWBgMOqfipgyNPVR3LVidw+o51+rc8zquRaaVwzlVjsZXu0qKJZ42WO7a65JaqNNVA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHnt4Qzay+xtLr26E36C0o/IZBE4Rn3zRjFISkl3qvXJAiASiy8uvbHnCM1e5JIp7iGv4KT2wHE2crQIBuwFs+P+Iw=="}]},"_npmVersion":"1.1.66","_npmUser":{"name":"anonymous","email":"chevrier.bertrand@gmail.com"},"maintainers":[{"name":"anonymous","email":"chevrier.bertrand@gmail.com"}],"directories":{}},"0.2.4":{"name":"grunt-jsdoc","description":"Integrates jsdoc3 generation into your Grunt build","version":"0.2.4","homepage":"https://github.com/krampstudio/grunt-jsdoc-plugin","author":{"name":"Bertrand Chevrier","email":"chevrier.bertrand@gmail.com","url":"http://krampstudio.com"},"repository":{"type":"git","url":"git://github.com/krampstudio/grunt-jsdoc-plugin.git"},"bugs":{"url":"https://github.com/krampstudio/grunt-jsdoc-plugin/issues"},"licenses":[{"type":"MIT","url":"https://github.com/krampstudio/grunt-jsdoc-plugin/blob/master/LICENSE-MIT"}],"main":"Gruntfile.js","bin":{"grunt-jsdoc":"bin/grunt-jsdoc"},"engines":{"node":">= 0.8.0"},"scripts":{"test":"grunt nodeunit"},"devDependencies":{"grunt":"~0.4.x","grunt-contrib-nodeunit":"~0.1.2","grunt-contrib-jshint":"~0.1.1"},"dependencies":{"jsdoc3":"git+https://github.com/jsdoc3/jsdoc.git#v3.1.1"},"peerDependencies":{"grunt":"0.4.x"},"keywords":["gruntplugin","grunt","jsdoc","jsdoc3"],"_id":"grunt-jsdoc@0.2.4","dist":{"shasum":"e8fec999cbaf6076f32766c28cef70923f5df5fb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/grunt-jsdoc/-/grunt-jsdoc-0.2.4.tgz","integrity":"sha512-ZX/SJhsy1HHVWlaU+WB4QROHcuGiB+Idyib2g3pzDAHGM76VaMdsf7lEs++v4Nd3jUoxeClxxW2Y13QNCcrvEw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD+ryOuNtysmH27rP13Kl+zBuc+HUCNBkOxa+6ebHEE2QIhAPJjDo1iAuLahiVyXoWsUl9X8WFqgkGDOlTQ5iBaBrPB"}]},"_npmVersion":"1.1.66","_npmUser":{"name":"anonymous","email":"chevrier.bertrand@gmail.com"},"maintainers":[{"name":"anonymous","email":"chevrier.bertrand@gmail.com"}],"directories":{}},"0.3.0":{"name":"grunt-jsdoc","description":"Integrates jsdoc3 generation into your Grunt build","version":"0.3.0","homepage":"https://github.com/krampstudio/grunt-jsdoc-plugin","author":{"name":"Bertrand Chevrier","email":"chevrier.bertrand@gmail.com","url":"http://krampstudio.com"},"repository":{"type":"git","url":"git://github.com/krampstudio/grunt-jsdoc-plugin.git"},"bugs":{"url":"https://github.com/krampstudio/grunt-jsdoc-plugin/issues"},"licenses":[{"type":"MIT","url":"https://github.com/krampstudio/grunt-jsdoc-plugin/blob/master/LICENSE-MIT"}],"main":"Gruntfile.js","bin":{"grunt-jsdoc":"bin/grunt-jsdoc"},"engines":{"node":">= 0.8.0"},"scripts":{"test":"grunt nodeunit"},"devDependencies":{"grunt":"~0.4.x","grunt-contrib-nodeunit":"~0.1.2","grunt-contrib-jshint":"~0.1.1"},"dependencies":{"jsdoc3":"git+https://github.com/jsdoc3/jsdoc.git#cfff8dd035ad376892139192c03718ce2dcc20f0"},"peerDependencies":{"grunt":"0.4.x"},"keywords":["gruntplugin","grunt","jsdoc","jsdoc3"],"_id":"grunt-jsdoc@0.3.0","dist":{"shasum":"e321e7f87f44ddcb4ed1e6cd7a7d190b8a4809b1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/grunt-jsdoc/-/grunt-jsdoc-0.3.0.tgz","integrity":"sha512-8GYzzvfvHBqoZtcwG/OfOgm9bcLEy5JeZcPy5a8vIxVlpvuZxgbqlRHiBdDdcbdj52aUcbSUepQrVOIAL83yMQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCQemwRAgN9Wb6NDp93lYI865eH35f6267IFO38rodu8AIgHlKyXQlih2HTm7X5AYDZqeYmjkudBxoTT0YI8/glenE="}]},"_npmVersion":"1.1.66","_npmUser":{"name":"anonymous","email":"chevrier.bertrand@gmail.com"},"maintainers":[{"name":"anonymous","email":"chevrier.bertrand@gmail.com"}],"directories":{}},"0.3.1":{"name":"grunt-jsdoc","description":"Integrates jsdoc3 generation into your Grunt build","version":"0.3.1","homepage":"https://github.com/krampstudio/grunt-jsdoc-plugin","author":{"name":"Bertrand Chevrier","email":"chevrier.bertrand@gmail.com","url":"http://krampstudio.com"},"repository":{"type":"git","url":"git://github.com/krampstudio/grunt-jsdoc-plugin.git"},"bugs":{"url":"https://github.com/krampstudio/grunt-jsdoc-plugin/issues"},"licenses":[{"type":"MIT","url":"https://github.com/krampstudio/grunt-jsdoc-plugin/blob/master/LICENSE-MIT"}],"main":"Gruntfile.js","bin":{"grunt-jsdoc":"bin/grunt-jsdoc"},"engines":{"node":">= 0.8.0"},"scripts":{"test":"grunt nodeunit"},"devDependencies":{"grunt":"~0.4.x","grunt-contrib-nodeunit":"~0.1.2","grunt-contrib-jshint":"~0.1.1"},"dependencies":{"jsdoc3":"git+https://github.com/jsdoc3/jsdoc.git#cfff8dd035ad376892139192c03718ce2dcc20f0"},"peerDependencies":{"grunt":"0.4.x"},"keywords":["gruntplugin","grunt","jsdoc","jsdoc3"],"_id":"grunt-jsdoc@0.3.1","dist":{"shasum":"8bec78174f1695579387ca7a741e73cb6bbd59cf","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/grunt-jsdoc/-/grunt-jsdoc-0.3.1.tgz","integrity":"sha512-/GcQEkFPTCpRE2rVQGbL+Z+h/GN4OAhHBQe4RURQ9ejLLW+24DGXITIna5ZlN+KgqPeQblRTOKXFUScX3U8Y/g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHvlYU90TAmH5aqaTwZ6uxYR6t3694UTfoM7z1qAzaYyAiAxeCrAthdQqZ+jakvZmPp+a1qUwI3k1AwxL428U1BBDw=="}]},"_npmVersion":"1.1.69","_npmUser":{"name":"anonymous","email":"chevrier.bertrand@gmail.com"},"maintainers":[{"name":"anonymous","email":"chevrier.bertrand@gmail.com"}],"directories":{}},"0.3.2":{"name":"grunt-jsdoc","description":"Integrates jsdoc3 generation into your Grunt build","version":"0.3.2","homepage":"https://github.com/krampstudio/grunt-jsdoc-plugin","author":{"name":"Bertrand Chevrier","email":"chevrier.bertrand@gmail.com","url":"http://krampstudio.com"},"repository":{"type":"git","url":"git://github.com/krampstudio/grunt-jsdoc-plugin.git"},"bugs":{"url":"https://github.com/krampstudio/grunt-jsdoc-plugin/issues"},"licenses":[{"type":"MIT","url":"https://github.com/krampstudio/grunt-jsdoc-plugin/blob/master/LICENSE-MIT"}],"main":"Gruntfile.js","bin":{"grunt-jsdoc":"bin/grunt-jsdoc"},"engines":{"node":">= 0.8.0"},"scripts":{"test":"grunt nodeunit"},"devDependencies":{"grunt":"~0.4.x","grunt-contrib-nodeunit":"~0.1.2","grunt-contrib-jshint":"~0.1.1"},"dependencies":{"jsdoc3":"git+https://github.com/jsdoc3/jsdoc.git#cfff8dd035ad376892139192c03718ce2dcc20f0"},"peerDependencies":{"grunt":"0.4.x"},"keywords":["gruntplugin","grunt","jsdoc","jsdoc3"],"_id":"grunt-jsdoc@0.3.2","dist":{"shasum":"56afe1bc2480cb41a9e78775630e3a1eb02454d5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/grunt-jsdoc/-/grunt-jsdoc-0.3.2.tgz","integrity":"sha512-lOQHyzJ3PAsjMQ1MfmU9rDhS2tnhwNG4HAGSq+wSabp6BQRdMbfTevjGn7o8XCC2QfXlVpVca8NRJrg8n4KZqg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICDoq+xBqlLMQmpgMilR/1bq11nG/wYd2SuwZFjYTd7LAiAEylTen+uaHkl/7lTSvdLYL/7JdmwZT9nSmBzZg79JDQ=="}]},"_npmVersion":"1.1.69","_npmUser":{"name":"anonymous","email":"chevrier.bertrand@gmail.com"},"maintainers":[{"name":"anonymous","email":"chevrier.bertrand@gmail.com"}],"directories":{}},"0.3.3":{"name":"grunt-jsdoc","description":"Integrates jsdoc3 generation into your Grunt build","version":"0.3.3","homepage":"https://github.com/krampstudio/grunt-jsdoc-plugin","author":{"name":"Bertrand Chevrier","email":"chevrier.bertrand@gmail.com","url":"http://krampstudio.com"},"repository":{"type":"git","url":"git://github.com/krampstudio/grunt-jsdoc-plugin.git"},"bugs":{"url":"https://github.com/krampstudio/grunt-jsdoc-plugin/issues"},"licenses":[{"type":"MIT","url":"https://github.com/krampstudio/grunt-jsdoc-plugin/blob/master/LICENSE-MIT"}],"main":"Gruntfile.js","bin":{"grunt-jsdoc":"bin/grunt-jsdoc"},"engines":{"node":">= 0.8.0"},"scripts":{"test":"grunt nodeunit"},"devDependencies":{"grunt":"~0.4.x","grunt-contrib-nodeunit":"~0.1.2","grunt-contrib-jshint":"~0.1.1"},"dependencies":{"jsdoc3":"git+https://github.com/jsdoc3/jsdoc.git#cfff8dd035ad376892139192c03718ce2dcc20f0"},"peerDependencies":{"grunt":"0.4.x"},"keywords":["gruntplugin","grunt","documentation","jsdoc","jsdoc3"],"_id":"grunt-jsdoc@0.3.3","dist":{"shasum":"f211ed59622d611f1d19d767cc3976e25761abcc","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/grunt-jsdoc/-/grunt-jsdoc-0.3.3.tgz","integrity":"sha512-VfcHL5lvvBKKnXTdvfuNX1CgGCakRJDj+othU1UF4AmnVgFuDnspBZ9X1OEJkrJ9CqJuGb4r8LeSufd2/08xBQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEyXu4yhCC9Yzq9rAOv9DTRg7yFgBv0r6pjQkkcXPuNQAiBEf68NNniu/sL56uioXdfSAT4acFTn5AxLR32imXwO6A=="}]},"_npmVersion":"1.1.66","_npmUser":{"name":"anonymous","email":"chevrier.bertrand@gmail.com"},"maintainers":[{"name":"anonymous","email":"chevrier.bertrand@gmail.com"}],"directories":{}},"0.4.0":{"name":"grunt-jsdoc","description":"Integrates jsdoc3 generation into your Grunt build","version":"0.4.0","homepage":"https://github.com/krampstudio/grunt-jsdoc-plugin","author":{"name":"Bertrand Chevrier","email":"chevrier.bertrand@gmail.com","url":"http://krampstudio.com"},"contributors":[{"name":"Mikhail Diatchenko","email":"mikhail.diatchenko@gmail.com","url":"http://www.webgear.co.nz"}],"repository":{"type":"git","url":"git://github.com/krampstudio/grunt-jsdoc-plugin.git"},"bugs":{"url":"https://github.com/krampstudio/grunt-jsdoc-plugin/issues"},"licenses":[{"type":"MIT","url":"https://github.com/krampstudio/grunt-jsdoc-plugin/blob/master/LICENSE-MIT"}],"main":"Gruntfile.js","bin":{"grunt-jsdoc":"bin/grunt-jsdoc"},"engines":{"node":">= 0.8.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"~0.4.x","grunt-contrib-clean":"latest","grunt-contrib-nodeunit":"latest","grunt-contrib-jshint":"latest"},"dependencies":{"jsdoc3":"git+https://github.com/jsdoc3/jsdoc.git#v3.2.0","docstrap":"git+https://github.com/terryweiss/docstrap"},"peerDependencies":{"grunt":"0.4.x"},"keywords":["gruntplugin","grunt","documentation","jsdoc","jsdoc3"],"_id":"grunt-jsdoc@0.4.0","dist":{"shasum":"3f7484029a6772195df7f0bdc5413cd71059b36d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/grunt-jsdoc/-/grunt-jsdoc-0.4.0.tgz","integrity":"sha512-V20z4eKl1pHNrgag6sxC2YgbWk8vdE8nfBvvfPgp+BBKWjwBzyI82dNJgYyxW03Fjf7jq1tqRW9I8tJjDKOflA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDb5KSWXCc82fhEearO2fawzUUZyKAxZCAOS76UerGy1gIhAIXG58eYP6hFDCVx1nliFrPof2d322AUMnOqcMbLvYzl"}]},"_npmVersion":"1.1.62","_npmUser":{"name":"anonymous","email":"chevrier.bertrand@gmail.com"},"maintainers":[{"name":"anonymous","email":"chevrier.bertrand@gmail.com"}],"directories":{}},"0.4.1":{"name":"grunt-jsdoc","description":"Integrates jsdoc3 generation into your Grunt build","version":"0.4.1","homepage":"https://github.com/krampstudio/grunt-jsdoc-plugin","author":{"name":"Bertrand Chevrier","email":"chevrier.bertrand@gmail.com","url":"http://krampstudio.com"},"contributors":[{"name":"Mikhail Diatchenko","email":"mikhail.diatchenko@gmail.com","url":"http://www.webgear.co.nz"}],"repository":{"type":"git","url":"git://github.com/krampstudio/grunt-jsdoc-plugin.git"},"bugs":{"url":"https://github.com/krampstudio/grunt-jsdoc-plugin/issues"},"licenses":[{"type":"MIT","url":"https://github.com/krampstudio/grunt-jsdoc-plugin/blob/master/LICENSE-MIT"}],"main":"Gruntfile.js","bin":{"grunt-jsdoc":"bin/grunt-jsdoc"},"engines":{"node":">= 0.8.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"~0.4.x","grunt-contrib-clean":"latest","grunt-contrib-nodeunit":"latest","grunt-contrib-jshint":"latest"},"dependencies":{"jsdoc":"git+https://github.com/jsdoc3/jsdoc.git#v3.2.0","ink-docstrap":"git+https://github.com/terryweiss/docstrap"},"peerDependencies":{"grunt":"0.4.x"},"keywords":["gruntplugin","grunt","documentation","jsdoc","jsdoc3"],"_id":"grunt-jsdoc@0.4.1","dist":{"shasum":"dbb68808c8c70521b5fa6ee7bd727aac981c1d79","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/grunt-jsdoc/-/grunt-jsdoc-0.4.1.tgz","integrity":"sha512-LNEvNqR2d3ovfXnlTTgq5NcT9D5A4CvIR7XMK03qjnKyhpDnotXyHDC9oy/pT6721mHfKEqk1qT1WJ26mGycyQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAFEIUXM0pOTWQhldF8QNC/dVXRundgqL3fpz/FPnTNmAiEA1Ize2JiG/JU6bYcCQ8Y7/BjS1EvyzLGE5J4LTQ790qs="}]},"_from":".","_npmVersion":"1.3.8","_npmUser":{"name":"anonymous","email":"chevrier.bertrand@gmail.com"},"maintainers":[{"name":"anonymous","email":"chevrier.bertrand@gmail.com"}],"directories":{}},"0.4.2":{"name":"grunt-jsdoc","description":"Integrates jsdoc3 generation into your Grunt build","version":"0.4.2","homepage":"https://github.com/krampstudio/grunt-jsdoc-plugin","author":{"name":"Bertrand Chevrier","email":"chevrier.bertrand@gmail.com","url":"http://krampstudio.com"},"contributors":[{"name":"Mikhail Diatchenko","email":"mikhail.diatchenko@gmail.com","url":"http://www.webgear.co.nz"}],"repository":{"type":"git","url":"git://github.com/krampstudio/grunt-jsdoc-plugin.git"},"bugs":{"url":"https://github.com/krampstudio/grunt-jsdoc-plugin/issues"},"licenses":[{"type":"MIT","url":"https://github.com/krampstudio/grunt-jsdoc-plugin/blob/master/LICENSE-MIT"}],"main":"Gruntfile.js","bin":{"grunt-jsdoc":"bin/grunt-jsdoc"},"engines":{"node":">= 0.8.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"~0.4.x","grunt-contrib-clean":"latest","grunt-contrib-nodeunit":"latest","grunt-contrib-jshint":"latest"},"dependencies":{"jsdoc":"git+https://github.com/jsdoc3/jsdoc.git#v3.2.0","ink-docstrap":"git+https://github.com/terryweiss/docstrap"},"peerDependencies":{"grunt":"0.4.x"},"keywords":["gruntplugin","grunt","documentation","jsdoc","jsdoc3"],"_id":"grunt-jsdoc@0.4.2","dist":{"shasum":"854120372c23fb15f17f956360b8745a48d47d73","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/grunt-jsdoc/-/grunt-jsdoc-0.4.2.tgz","integrity":"sha512-4TQPnoSVTzP2iK1YKX+5p1ZitjckxAJswApZdKfB57qJZ95YqpRxpBeoKotNt40JOAwcvxKE2R5S5Uu2yrRu5g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHBMfA/K83KUNIV2O7FzPXbAlOVK2eOavIK9AfWvDSxBAiBktbcelvLVecAzmPp4hW3Wrde2a0/2f2OsosO/76hxRg=="}]},"_from":".","_npmVersion":"1.3.14","_npmUser":{"name":"anonymous","email":"chevrier.bertrand@gmail.com"},"maintainers":[{"name":"anonymous","email":"chevrier.bertrand@gmail.com"}],"directories":{}},"0.4.3":{"name":"grunt-jsdoc","description":"Integrates jsdoc3 generation into your Grunt build","version":"0.4.3","homepage":"https://github.com/krampstudio/grunt-jsdoc-plugin","author":{"name":"Bertrand Chevrier","email":"chevrier.bertrand@gmail.com","url":"http://krampstudio.com"},"contributors":[{"name":"Mikhail Diatchenko","email":"mikhail.diatchenko@gmail.com","url":"http://www.webgear.co.nz"}],"repository":{"type":"git","url":"git://github.com/krampstudio/grunt-jsdoc-plugin.git"},"bugs":{"url":"https://github.com/krampstudio/grunt-jsdoc-plugin/issues"},"licenses":[{"type":"MIT","url":"https://github.com/krampstudio/grunt-jsdoc-plugin/blob/master/LICENSE-MIT"}],"main":"Gruntfile.js","bin":{"grunt-jsdoc":"bin/grunt-jsdoc"},"engines":{"node":">= 0.8.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"~0.4.2","grunt-contrib-clean":"latest","grunt-contrib-nodeunit":"latest","grunt-contrib-jshint":"latest"},"dependencies":{"jsdoc":"git+https://github.com/jsdoc3/jsdoc.git#v3.2.2","ink-docstrap":"git+https://github.com/terryweiss/docstrap","lodash":"~2.4.1"},"peerDependencies":{"grunt":"~0.4.2"},"keywords":["gruntplugin","grunt","documentation","doc","jsdoc","jsdoc3"],"_id":"grunt-jsdoc@0.4.3","dist":{"shasum":"7b8bebbebeaddb88f235b7744bc71d5e321f81a5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/grunt-jsdoc/-/grunt-jsdoc-0.4.3.tgz","integrity":"sha512-oNkxkIj4L4wGqNLsRTm1tmYwAgQxq24vIroLyyEY++x/PVuKIIPZaII5iSr/nnN/Ay4NApzlEtviuXKy675HyQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAdLutuxjskUil+Pnyt6WuIQ80/aEyNoYmJX30FXwzt6AiBncvql7e0BJkfzj9XrwEkAd/XJXsPaO6HLJs/iG97nwA=="}]},"_from":".","_npmVersion":"1.3.21","_npmUser":{"name":"anonymous","email":"chevrier.bertrand@gmail.com"},"maintainers":[{"name":"anonymous","email":"chevrier.bertrand@gmail.com"}],"directories":{}},"0.5.0":{"name":"grunt-jsdoc","description":"Integrates jsdoc3 generation into your Grunt build","version":"0.5.0","homepage":"https://github.com/krampstudio/grunt-jsdoc-plugin","author":{"name":"Bertrand Chevrier","email":"chevrier.bertrand@gmail.com","url":"http://krampstudio.com"},"contributors":[{"name":"Mikhail Diatchenko","email":"mikhail.diatchenko@gmail.com","url":"http://www.webgear.co.nz"}],"repository":{"type":"git","url":"git://github.com/krampstudio/grunt-jsdoc-plugin.git"},"bugs":{"url":"https://github.com/krampstudio/grunt-jsdoc-plugin/issues"},"licenses":[{"type":"MIT","url":"https://github.com/krampstudio/grunt-jsdoc-plugin/blob/master/LICENSE-MIT"}],"main":"Gruntfile.js","bin":{"grunt-jsdoc":"bin/grunt-jsdoc"},"engines":{"node":">= 0.8.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"~0.4.2","grunt-contrib-clean":"latest","grunt-contrib-nodeunit":"latest","grunt-contrib-jshint":"latest"},"dependencies":{"lodash":"~2.4.1","jsdoc":"~3.2.2","ink-docstrap":"~0.2.0-0"},"peerDependencies":{"grunt":"~0.4.0"},"keywords":["gruntplugin","grunt","documentation","doc","jsdoc","jsdoc3"],"_id":"grunt-jsdoc@0.5.0","dist":{"shasum":"7278a04cbb51a8caf316005995ecd7b38e5ddb35","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/grunt-jsdoc/-/grunt-jsdoc-0.5.0.tgz","integrity":"sha512-QKxQ4jBscJ/obHOtYhIvgXG8YIa5IYbhFFXGFR+LjwE0HohEb74HPUbiSZKQjOA/NbA90yOioJFQG2g/EEAmiQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC5VO8W+ZbUMY4zgXokBC07Rt6DWgPV6PnGiJmnT4irawIgVcGq6a4M4k+Sm5nQKEN9zDmw5YuzZIu4jLUe3h6lxi8="}]},"_from":".","_npmVersion":"1.3.21","_npmUser":{"name":"anonymous","email":"chevrier.bertrand@gmail.com"},"maintainers":[{"name":"anonymous","email":"chevrier.bertrand@gmail.com"}],"directories":{}},"0.5.1":{"name":"grunt-jsdoc","description":"Integrates jsdoc3 generation into your Grunt build","version":"0.5.1","homepage":"https://github.com/krampstudio/grunt-jsdoc","author":{"name":"Bertrand Chevrier","email":"chevrier.bertrand@gmail.com","url":"http://krampstudio.com"},"contributors":[{"name":"Mikhail Diatchenko","email":"mikhail.diatchenko@gmail.com","url":"http://www.webgear.co.nz"}],"repository":{"type":"git","url":"git://github.com/krampstudio/grunt-jsdoc.git"},"bugs":{"url":"https://github.com/krampstudio/grunt-jsdoc/issues"},"licenses":[{"type":"MIT","url":"https://github.com/krampstudio/grunt-jsdoc/blob/master/LICENSE-MIT"}],"main":"Gruntfile.js","bin":{"grunt-jsdoc":"bin/grunt-jsdoc"},"engines":{"node":">= 0.8.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"~0.4.2","grunt-contrib-clean":"latest","grunt-contrib-nodeunit":"latest","grunt-contrib-jshint":"latest"},"dependencies":{"lodash":"~2.4.1","jsdoc":"~3.2.2","ink-docstrap":"~0.2.0-0"},"peerDependencies":{"grunt":"~0.4.0"},"keywords":["gruntplugin","grunt","documentation","doc","jsdoc","jsdoc3"],"_id":"grunt-jsdoc@0.5.1","dist":{"shasum":"c9e0e3896864389931200a781a5f910409bf3889","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/grunt-jsdoc/-/grunt-jsdoc-0.5.1.tgz","integrity":"sha512-eV9ApoNnOowKn7rvexMovPqUvNt6p0tnaXAvawc9NRiGkeMcLkdfLvoxLA+VaQ6mKgY4VYNPYZKCzm6pluy9hA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAUFB/6k0L8/xEgLxmZs5o3YWz3JrcNwqxh0g0u+yQOvAiEA65LPW3O5W6uYKddU8K8H83iQXpBmttkUdEJgc+uNoqI="}]},"_from":".","_npmVersion":"1.3.21","_npmUser":{"name":"anonymous","email":"chevrier.bertrand@gmail.com"},"maintainers":[{"name":"anonymous","email":"chevrier.bertrand@gmail.com"}],"directories":{}},"0.5.2":{"name":"grunt-jsdoc","description":"Integrates jsdoc3 generation into your Grunt build","version":"0.5.2","homepage":"https://github.com/krampstudio/grunt-jsdoc","author":{"name":"Bertrand Chevrier","email":"chevrier.bertrand@gmail.com","url":"http://krampstudio.com"},"contributors":[{"name":"Mikhail Diatchenko","email":"mikhail.diatchenko@gmail.com","url":"http://www.webgear.co.nz"}],"repository":{"type":"git","url":"git://github.com/krampstudio/grunt-jsdoc.git"},"bugs":{"url":"https://github.com/krampstudio/grunt-jsdoc/issues"},"licenses":[{"type":"MIT","url":"https://github.com/krampstudio/grunt-jsdoc/blob/master/LICENSE-MIT"}],"main":"Gruntfile.js","bin":{"grunt-jsdoc":"bin/grunt-jsdoc"},"engines":{"node":">= 0.8.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"~0.4.3","grunt-contrib-clean":"latest","grunt-contrib-nodeunit":"latest","grunt-contrib-jshint":"latest"},"dependencies":{"jsdoc":"~3.2.2","ink-docstrap":"~0.3.0-0"},"peerDependencies":{"grunt":"~0.4.3"},"keywords":["gruntplugin","grunt","documentation","doc","jsdoc","jsdoc3"],"_id":"grunt-jsdoc@0.5.2","dist":{"shasum":"9b8efa2981b567c2fee98efcf68f90f2fd1b6b90","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/grunt-jsdoc/-/grunt-jsdoc-0.5.2.tgz","integrity":"sha512-+CoVHdu9OPlFFhXooMfOUOFPIoroKgGkzS/qagLPQFNxwIhu51feYq0tGMenFul4lnaYpIozDJxg9VG6swaz/A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDkFHyl4UhnIxN1fYnruIi1/1sAgl2QiHA/ESm30p//hAiEAinCWnrkaBj2iLNNfN9Ybjj0U9tso/uFK+zjgxIWuTYM="}]},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"anonymous","email":"chevrier.bertrand@gmail.com"},"maintainers":[{"name":"anonymous","email":"chevrier.bertrand@gmail.com"}],"deprecated":"wrong peer dependency","directories":{}},"0.5.3":{"name":"grunt-jsdoc","description":"Integrates jsdoc3 generation into your Grunt build","version":"0.5.3","homepage":"https://github.com/krampstudio/grunt-jsdoc","author":{"name":"Bertrand Chevrier","email":"chevrier.bertrand@gmail.com","url":"http://krampstudio.com"},"contributors":[{"name":"Mikhail Diatchenko","email":"mikhail.diatchenko@gmail.com","url":"http://www.webgear.co.nz"}],"repository":{"type":"git","url":"git://github.com/krampstudio/grunt-jsdoc.git"},"bugs":{"url":"https://github.com/krampstudio/grunt-jsdoc/issues"},"licenses":[{"type":"MIT","url":"https://github.com/krampstudio/grunt-jsdoc/blob/master/LICENSE-MIT"}],"main":"Gruntfile.js","bin":{"grunt-jsdoc":"bin/grunt-jsdoc"},"engines":{"node":">= 0.8.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"~0.4.0","grunt-contrib-clean":"latest","grunt-contrib-nodeunit":"latest","grunt-contrib-jshint":"latest"},"dependencies":{"jsdoc":"~3.2.2","ink-docstrap":"~0.3.0-0"},"peerDependencies":{"grunt":"~0.4.3"},"keywords":["gruntplugin","grunt","documentation","doc","jsdoc","jsdoc3"],"_id":"grunt-jsdoc@0.5.3","dist":{"shasum":"cce28acb984f871cbb4b9a0cf62c54bcde752034","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/grunt-jsdoc/-/grunt-jsdoc-0.5.3.tgz","integrity":"sha512-qkoos0fERHPqVxIAcn5MDVgmsGe81/aaRwre1MCJpCMwO6yzjYb/PUdEqL6ba8wu16H9M8eQp7swp1pJUwwocg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDNJP/+j/IjT7CRgyT9iAfyj0P9w1+80+FerbHtKkvguwIhAMjkl+pM/UuKIcFuojh7gUc8KPUNEEGVWgiR43RuNG9+"}]},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"anonymous","email":"chevrier.bertrand@gmail.com"},"maintainers":[{"name":"anonymous","email":"chevrier.bertrand@gmail.com"}],"deprecated":"wrong peer dependency","directories":{}},"0.5.4":{"name":"grunt-jsdoc","description":"Integrates jsdoc3 generation into your Grunt build","version":"0.5.4","homepage":"https://github.com/krampstudio/grunt-jsdoc","author":{"name":"Bertrand Chevrier","email":"chevrier.bertrand@gmail.com","url":"http://krampstudio.com"},"contributors":[{"name":"Mikhail Diatchenko","email":"mikhail.diatchenko@gmail.com","url":"http://www.webgear.co.nz"}],"repository":{"type":"git","url":"git://github.com/krampstudio/grunt-jsdoc.git"},"bugs":{"url":"https://github.com/krampstudio/grunt-jsdoc/issues"},"licenses":[{"type":"MIT","url":"https://github.com/krampstudio/grunt-jsdoc/blob/master/LICENSE-MIT"}],"main":"Gruntfile.js","bin":{"grunt-jsdoc":"bin/grunt-jsdoc"},"engines":{"node":">= 0.8.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"~0.4.3","grunt-contrib-clean":"latest","grunt-contrib-nodeunit":"latest","grunt-contrib-jshint":"latest"},"dependencies":{"jsdoc":"~3.2.2","ink-docstrap":"~0.3.0-0"},"peerDependencies":{"grunt":"~0.4.0"},"keywords":["gruntplugin","grunt","documentation","doc","jsdoc","jsdoc3"],"_id":"grunt-jsdoc@0.5.4","dist":{"shasum":"fa055dc4f065ed9a9020b86fe9028d9de7b62fb0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/grunt-jsdoc/-/grunt-jsdoc-0.5.4.tgz","integrity":"sha512-2f2moNokbtmDN2ZBMDi6/STNxzZqTKSNJ3x7RSdM4O+sgEhcVkSrRblpwuV1K/6ri8+l1mU7fVurUkVs9mWeEA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGjUDiQzE0aoUkE6sXskHkdkduNC0trLbRpA8VY5U8c4AiBTxbd7vdL5QXwwvSdQfpLnr2BML257pWKgPlrXLb9Idg=="}]},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"anonymous","email":"chevrier.bertrand@gmail.com"},"maintainers":[{"name":"anonymous","email":"chevrier.bertrand@gmail.com"}],"directories":{}},"0.5.5":{"name":"grunt-jsdoc","description":"Integrates jsdoc3 generation into your Grunt build","version":"0.5.5","homepage":"https://github.com/krampstudio/grunt-jsdoc","author":{"name":"Bertrand Chevrier","email":"chevrier.bertrand@gmail.com","url":"http://krampstudio.com"},"contributors":[{"name":"Mikhail Diatchenko","email":"mikhail.diatchenko@gmail.com","url":"http://www.webgear.co.nz"}],"repository":{"type":"git","url":"git://github.com/krampstudio/grunt-jsdoc.git"},"bugs":{"url":"https://github.com/krampstudio/grunt-jsdoc/issues"},"licenses":[{"type":"MIT","url":"https://github.com/krampstudio/grunt-jsdoc/blob/master/LICENSE-MIT"}],"main":"Gruntfile.js","bin":{"grunt-jsdoc":"bin/grunt-jsdoc"},"engines":{"node":">= 0.8.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"~0.4.3","grunt-contrib-clean":"latest","grunt-contrib-nodeunit":"latest","grunt-contrib-jshint":"latest"},"dependencies":{"jsdoc":"~3.2.2","ink-docstrap":"~0.4.5"},"peerDependencies":{"grunt":"~0.4.0"},"keywords":["gruntplugin","grunt","documentation","doc","jsdoc","jsdoc3"],"_id":"grunt-jsdoc@0.5.5","_shasum":"a1201a7dc7a0b7ad893a6ff19cb3be7eb3f743e5","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"anonymous","email":"chevrier.bertrand@gmail.com"},"maintainers":[{"name":"anonymous","email":"chevrier.bertrand@gmail.com"}],"dist":{"shasum":"a1201a7dc7a0b7ad893a6ff19cb3be7eb3f743e5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/grunt-jsdoc/-/grunt-jsdoc-0.5.5.tgz","integrity":"sha512-KQWZBULJ9DjeLwO+gL3KdRLxPzsDaiRgqszpPeZPK5cePi8euMUbWu3TGFjF/DIUJBgvYx5cfkDyLQTBTzLvsQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHmKlW9wSgvKbjcOw/FiKQVvhLSHnVrjGFMz2AE3rpNvAiEA8Atbszys+q5497JePaikSlC0YiK6fLseSBPJb+z1b0M="}]},"directories":{}},"0.5.6":{"name":"grunt-jsdoc","description":"Integrates jsdoc3 generation into your Grunt build","version":"0.5.6","homepage":"https://github.com/krampstudio/grunt-jsdoc","author":{"name":"Bertrand Chevrier","email":"chevrier.bertrand@gmail.com","url":"http://krampstudio.com"},"contributors":[{"name":"Mikhail Diatchenko","email":"mikhail.diatchenko@gmail.com","url":"http://www.webgear.co.nz"}],"repository":{"type":"git","url":"git://github.com/krampstudio/grunt-jsdoc.git"},"bugs":{"url":"https://github.com/krampstudio/grunt-jsdoc/issues"},"licenses":[{"type":"MIT","url":"https://github.com/krampstudio/grunt-jsdoc/blob/master/LICENSE-MIT"}],"main":"Gruntfile.js","bin":{"grunt-jsdoc":"bin/grunt-jsdoc"},"engines":{"node":">= 0.8.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"~0.4.3","grunt-contrib-clean":"~0.5.0","grunt-contrib-jshint":"~0.10.0","grunt-contrib-nodeunit":"~0.4.0"},"dependencies":{"jsdoc":"~3.2.2","ink-docstrap":"~0.4.5"},"peerDependencies":{"grunt":"~0.4.0"},"keywords":["gruntplugin","grunt","documentation","doc","jsdoc","jsdoc3"],"_id":"grunt-jsdoc@0.5.6","_shasum":"cada7a122e1ebcadcc0b498e2503bcae03d0cfd1","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"anonymous","email":"chevrier.bertrand@gmail.com"},"maintainers":[{"name":"anonymous","email":"chevrier.bertrand@gmail.com"}],"dist":{"shasum":"cada7a122e1ebcadcc0b498e2503bcae03d0cfd1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/grunt-jsdoc/-/grunt-jsdoc-0.5.6.tgz","integrity":"sha512-AqoT1rVTwfGkhAfaB1meFgAKtAiFIJN1OedQS2wbo7JwKMMbrdNaGCB1w3cZEIxDa9aHeVmBt6S9xaCUOQWIlg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDrHdojdkjVnBFdPHWAOICLJvwvcLoDGJiAAzKA4rNQIAIhAOfry7/J77h9f2Grq6QWwv3LvtLT28RpWA0/p/fqS6er"}]},"directories":{}},"0.6.0":{"name":"grunt-jsdoc","description":"Integrates jsdoc3 generation into your Grunt build","version":"0.6.0","homepage":"https://github.com/krampstudio/grunt-jsdoc","author":{"name":"Bertrand Chevrier","email":"chevrier.bertrand@gmail.com","url":"http://krampstudio.com"},"contributors":[{"name":"Mikhail Diatchenko","email":"mikhail.diatchenko@gmail.com","url":"http://www.webgear.co.nz"}],"repository":{"type":"git","url":"git://github.com/krampstudio/grunt-jsdoc.git"},"bugs":{"url":"https://github.com/krampstudio/grunt-jsdoc/issues"},"licenses":[{"type":"MIT","url":"https://github.com/krampstudio/grunt-jsdoc/blob/master/LICENSE-MIT"}],"main":"Gruntfile.js","bin":{"grunt-jsdoc":"bin/grunt-jsdoc"},"engines":{"node":">= 0.8.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"~0.4.3","grunt-contrib-clean":"~0.5.0","grunt-contrib-jshint":"~0.10.0","grunt-contrib-nodeunit":"~0.4.0"},"dependencies":{"jsdoc":"~3.3.0","ink-docstrap":"~0.4.12"},"peerDependencies":{"grunt":"~0.4.0"},"keywords":["gruntplugin","grunt","documentation","doc","jsdoc","jsdoc3"],"gitHead":"e4319148c74750503932dedd3e14d72730a8a888","_id":"grunt-jsdoc@0.6.0","_shasum":"b825a1c49ac2cb494e6c97feb59fdb222345fb06","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"anonymous","email":"chevrier.bertrand@gmail.com"},"maintainers":[{"name":"anonymous","email":"chevrier.bertrand@gmail.com"}],"dist":{"shasum":"b825a1c49ac2cb494e6c97feb59fdb222345fb06","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/grunt-jsdoc/-/grunt-jsdoc-0.6.0.tgz","integrity":"sha512-TSfBoEZm8Yki0NPYg0kOmAwM9dBX3ReeU68AEZvANYBjkJKqRaEMduiOWeY+7mZW/cdoQsE0/Cb5UAUkfy68qA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCylh0NoPopvbeKMrjmA0OhY2zo4F3Fzi5B75o9g0lgTQIgZVfA6+SBxovhFRfP4vkGvgF/KwH6IJ09OX5vVrffO4o="}]},"directories":{}},"0.5.7":{"name":"grunt-jsdoc","description":"Integrates jsdoc3 generation into your Grunt build","version":"0.5.7","homepage":"https://github.com/krampstudio/grunt-jsdoc","author":{"name":"Bertrand Chevrier","email":"chevrier.bertrand@gmail.com","url":"http://krampstudio.com"},"contributors":[{"name":"Mikhail Diatchenko","email":"mikhail.diatchenko@gmail.com","url":"http://www.webgear.co.nz"}],"repository":{"type":"git","url":"git://github.com/krampstudio/grunt-jsdoc.git"},"bugs":{"url":"https://github.com/krampstudio/grunt-jsdoc/issues"},"licenses":[{"type":"MIT","url":"https://github.com/krampstudio/grunt-jsdoc/blob/master/LICENSE-MIT"}],"main":"Gruntfile.js","bin":{"grunt-jsdoc":"bin/grunt-jsdoc"},"engines":{"node":">= 0.8.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"~0.4.3","grunt-contrib-clean":"~0.5.0","grunt-contrib-jshint":"~0.10.0","grunt-contrib-nodeunit":"~0.4.0"},"dependencies":{"jsdoc":"~3.2.2","ink-docstrap":"~0.4.12"},"peerDependencies":{"grunt":"~0.4.0"},"keywords":["gruntplugin","grunt","documentation","doc","jsdoc","jsdoc3"],"gitHead":"5ade6359ace3fabcddf95356aaf087203a1698d6","_id":"grunt-jsdoc@0.5.7","_shasum":"33140dc10f18a0a1eac7f8363b550d50a0e7affc","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"anonymous","email":"chevrier.bertrand@gmail.com"},"maintainers":[{"name":"anonymous","email":"chevrier.bertrand@gmail.com"}],"dist":{"shasum":"33140dc10f18a0a1eac7f8363b550d50a0e7affc","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/grunt-jsdoc/-/grunt-jsdoc-0.5.7.tgz","integrity":"sha512-i0GdyMBW5SF6JgqV/mMwpEWQBYfQeqgkVfJq5d0SX/k/b5EORqfhxYXj4yEC6WGUCGOuoz1YwVQenwx60nkFiA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDguBzKpzfEFvQHrM9Vl1RcaAi4UareSMuij8ldXz+g4AiAeEHBkCLFgyXBg2bbp+7pmwnKwq7pnDj6Mb/a7SdEzKA=="}]},"directories":{}},"0.6.1":{"name":"grunt-jsdoc","description":"Integrates jsdoc3 generation into your Grunt build","version":"0.6.1","homepage":"https://github.com/krampstudio/grunt-jsdoc","author":{"name":"Bertrand Chevrier","email":"chevrier.bertrand@gmail.com","url":"http://krampstudio.com"},"contributors":[{"name":"Mikhail Diatchenko","email":"mikhail.diatchenko@gmail.com","url":"http://www.webgear.co.nz"}],"repository":{"type":"git","url":"git://github.com/krampstudio/grunt-jsdoc.git"},"bugs":{"url":"https://github.com/krampstudio/grunt-jsdoc/issues"},"licenses":[{"type":"MIT","url":"https://github.com/krampstudio/grunt-jsdoc/blob/master/LICENSE-MIT"}],"main":"Gruntfile.js","bin":{"grunt-jsdoc":"bin/grunt-jsdoc"},"engines":{"node":">= 0.8.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"~0.4.3","grunt-contrib-clean":"~0.5.0","grunt-contrib-jshint":"~0.10.0","grunt-contrib-nodeunit":"~0.4.0"},"dependencies":{"jsdoc":"~3.3.0-alpha9","ink-docstrap":"~0.4.12"},"peerDependencies":{"grunt":"~0.4.0"},"keywords":["gruntplugin","grunt","documentation","doc","jsdoc","jsdoc3"],"gitHead":"fda5174fad8f1972a818e9f1fadedcad0af2703a","_id":"grunt-jsdoc@0.6.1","_shasum":"fe30b0c96813bcffb3d5a4e36f849a0c91bcb009","_from":".","_npmVersion":"2.1.2","_nodeVersion":"0.10.32","_npmUser":{"name":"anonymous","email":"chevrier.bertrand@gmail.com"},"maintainers":[{"name":"anonymous","email":"chevrier.bertrand@gmail.com"}],"dist":{"shasum":"fe30b0c96813bcffb3d5a4e36f849a0c91bcb009","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/grunt-jsdoc/-/grunt-jsdoc-0.6.1.tgz","integrity":"sha512-dlLBwzjBqZ1UqLNtc99AS6kbjg39lQW9l4nbs13Qkowgr+1jCIvGr6WHlYtex10Vj1iW7DTiIB3WqxgLmOTudA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGwr+LC240JNqaGaDhetaLP/M6l3bamuH1tD6PPS8kxcAiEAjdwmbZDqYcn4ktqHp0a9UjPhpms64Uq7BCiRAiB/Llw="}]},"directories":{}},"0.6.2":{"name":"grunt-jsdoc","description":"Integrates jsdoc3 generation into your Grunt build","version":"0.6.2","homepage":"https://github.com/krampstudio/grunt-jsdoc","author":{"name":"Bertrand Chevrier","email":"chevrier.bertrand@gmail.com","url":"http://krampstudio.com"},"contributors":[{"name":"Mikhail Diatchenko","email":"mikhail.diatchenko@gmail.com","url":"http://www.webgear.co.nz"}],"repository":{"type":"git","url":"git://github.com/krampstudio/grunt-jsdoc.git"},"bugs":{"url":"https://github.com/krampstudio/grunt-jsdoc/issues"},"licenses":[{"type":"MIT","url":"https://github.com/krampstudio/grunt-jsdoc/blob/master/LICENSE-MIT"}],"main":"Gruntfile.js","bin":{"grunt-jsdoc":"bin/grunt-jsdoc"},"engines":{"node":">= 0.8.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"~0.4.3","grunt-contrib-clean":"~0.5.0","grunt-contrib-jshint":"~0.10.0","grunt-contrib-nodeunit":"~0.4.0"},"dependencies":{"jsdoc":"~3.3.0-alpha13","ink-docstrap":"~0.4.12"},"peerDependencies":{"grunt":"~0.4.0"},"keywords":["gruntplugin","grunt","documentation","doc","jsdoc","jsdoc3"],"gitHead":"424fa76f77b60fde8e5511493a23ac8999565daf","_id":"grunt-jsdoc@0.6.2","_shasum":"edf557993d7e4ea5b5d21d34f658c4b34329b3ac","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"anonymous","email":"chevrier.bertrand@gmail.com"},"maintainers":[{"name":"anonymous","email":"chevrier.bertrand@gmail.com"}],"dist":{"shasum":"edf557993d7e4ea5b5d21d34f658c4b34329b3ac","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/grunt-jsdoc/-/grunt-jsdoc-0.6.2.tgz","integrity":"sha512-5qhyOyRfxg0it3HtKThRj3hJEpUdimpTHBVfqaYXkTO46AFed8oRBORL8rC+5c4MVKevY0HfYingfQw0gR3gMg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAa37Ih/EZjutfEqmSM0GcVeLCqMYtSWYMbNyeIm4bwXAiEAgJBUxrGU2ZjbO6VWkwIixfxu8tyaIAFOKKKiKWZ3cvg="}]},"directories":{}},"0.5.8":{"name":"grunt-jsdoc","description":"Integrates jsdoc3 generation into your Grunt build","version":"0.5.8","homepage":"https://github.com/krampstudio/grunt-jsdoc","author":{"name":"Bertrand Chevrier","email":"chevrier.bertrand@gmail.com","url":"http://krampstudio.com"},"contributors":[{"name":"Mikhail Diatchenko","email":"mikhail.diatchenko@gmail.com","url":"http://www.webgear.co.nz"}],"repository":{"type":"git","url":"git://github.com/krampstudio/grunt-jsdoc.git"},"bugs":{"url":"https://github.com/krampstudio/grunt-jsdoc/issues"},"licenses":[{"type":"MIT","url":"https://github.com/krampstudio/grunt-jsdoc/blob/master/LICENSE-MIT"}],"main":"Gruntfile.js","bin":{"grunt-jsdoc":"bin/grunt-jsdoc"},"engines":{"node":">= 0.8.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"~0.4.3","grunt-contrib-clean":"~0.5.0","grunt-contrib-jshint":"~0.10.0","grunt-contrib-nodeunit":"~0.4.0"},"dependencies":{"jsdoc":"~3.2.2","ink-docstrap":"0.4.12"},"peerDependencies":{"grunt":"~0.4.0"},"keywords":["gruntplugin","grunt","documentation","doc","jsdoc","jsdoc3"],"gitHead":"317f5a045a7786ccf0afb773d00daae5d5b2c5ea","_id":"grunt-jsdoc@0.5.8","_shasum":"eb090fc836b2469e0aa980aeefedefe8a26593b5","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"anonymous","email":"chevrier.bertrand@gmail.com"},"maintainers":[{"name":"anonymous","email":"chevrier.bertrand@gmail.com"}],"dist":{"shasum":"eb090fc836b2469e0aa980aeefedefe8a26593b5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/grunt-jsdoc/-/grunt-jsdoc-0.5.8.tgz","integrity":"sha512-nQeUsIKf+AxakZz+kxMWbA4AzaUwFMrWAMy3AmQmSh/eZvt0rkHh5izCD4MyUWvmylGmK0UdMUHG3X5tUfGx0Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIByoAbyKNuERyUKhCedwWG275uToiCZGoOT3OgK2Ory1AiBYkL/sWnmy67CzZP8NEWYB6UQ2EVk/QOw1z3tJr7LS7A=="}]},"directories":{}},"0.6.3":{"name":"grunt-jsdoc","description":"Integrates jsdoc3 generation into your Grunt build","version":"0.6.3","homepage":"https://github.com/krampstudio/grunt-jsdoc","author":{"name":"Bertrand Chevrier","email":"chevrier.bertrand@gmail.com","url":"http://krampstudio.com"},"contributors":[{"name":"Mikhail Diatchenko","email":"mikhail.diatchenko@gmail.com","url":"http://www.webgear.co.nz"}],"repository":{"type":"git","url":"git://github.com/krampstudio/grunt-jsdoc.git"},"bugs":{"url":"https://github.com/krampstudio/grunt-jsdoc/issues"},"licenses":[{"type":"MIT","url":"https://github.com/krampstudio/grunt-jsdoc/blob/master/LICENSE-MIT"}],"main":"Gruntfile.js","bin":{"grunt-jsdoc":"bin/grunt-jsdoc"},"engines":{"node":">= 0.8.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"~0.4.3","grunt-contrib-clean":"~0.5.0","grunt-contrib-jshint":"~0.10.0","grunt-contrib-nodeunit":"~0.4.0"},"dependencies":{"jsdoc":"~3.3.0-alpha13","ink-docstrap":"~0.4.12"},"peerDependencies":{"grunt":"~0.4.0"},"keywords":["gruntplugin","grunt","documentation","doc","jsdoc","jsdoc3"],"gitHead":"49b6e84785bd63af2daf52a82a73f7c3baa02def","_id":"grunt-jsdoc@0.6.3","_shasum":"08c3a54d448de4193941c60e2c953b964482717b","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"anonymous","email":"chevrier.bertrand@gmail.com"},"maintainers":[{"name":"anonymous","email":"chevrier.bertrand@gmail.com"}],"dist":{"shasum":"08c3a54d448de4193941c60e2c953b964482717b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/grunt-jsdoc/-/grunt-jsdoc-0.6.3.tgz","integrity":"sha512-NdZmuh5CjZjOLt1yT+yYZSn2Kp0RcO6OT0+xM7wgvGOXSnYacUETRjeB/PyrBy3EInrR6SNfeOqNuvOdcDOrNw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDblxcsqPpnoU+TW/mFuedwysBNgEo8rBa+B+lrn19A7QIgSsaLsBSI2NU4fzYK/1++ELUJbEb1exnzSaumzjrev1w="}]},"directories":{}},"0.6.4":{"name":"grunt-jsdoc","description":"Integrates jsdoc3 generation into your Grunt build","version":"0.6.4","homepage":"https://github.com/krampstudio/grunt-jsdoc","author":{"name":"Bertrand Chevrier","email":"chevrier.bertrand@gmail.com","url":"http://krampstudio.com"},"contributors":[{"name":"Mikhail Diatchenko","email":"mikhail.diatchenko@gmail.com","url":"http://www.webgear.co.nz"}],"repository":{"type":"git","url":"git://github.com/krampstudio/grunt-jsdoc.git"},"bugs":{"url":"https://github.com/krampstudio/grunt-jsdoc/issues"},"license":"MIT","main":"Gruntfile.js","bin":{"grunt-jsdoc":"bin/grunt-jsdoc"},"engines":{"node":">= 0.8.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"^0.4.3","grunt-contrib-clean":"~0.5.0","grunt-contrib-jshint":"~0.10.0","grunt-contrib-nodeunit":"~0.4.0"},"dependencies":{"jsdoc":"^3.3.0","ink-docstrap":"0.4.12"},"peerDependencies":{"grunt":"^0.4.0"},"keywords":["gruntplugin","grunt","documentation","doc","jsdoc","jsdoc3"],"gitHead":"aadee76aa23b21ddf774022d718c91b63243c405","_id":"grunt-jsdoc@0.6.4","_shasum":"b5265dd79e923c73b33dad960bb78635f6453d0e","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.10.37","_npmUser":{"name":"anonymous","email":"chevrier.bertrand@gmail.com"},"maintainers":[{"name":"anonymous","email":"chevrier.bertrand@gmail.com"}],"dist":{"shasum":"b5265dd79e923c73b33dad960bb78635f6453d0e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/grunt-jsdoc/-/grunt-jsdoc-0.6.4.tgz","integrity":"sha512-mDDqSxw7dZEfyGa4xKAVipOBltEXfg/XrK4mdOeCeSo41rBEDsXwUfS9SIqxvYdWsszT4HOauTv8P+6Vewp2WA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCec5udB/rQH2SuFYresEOwrH/eV5NlPEFgMsIyJB1yyAIgcgXJwt+hTWv6aO+2BZpIzBLdf4aa5YTvPi31zbiD6Yg="}]},"directories":{}},"0.6.5":{"name":"grunt-jsdoc","description":"Integrates jsdoc3 generation into your Grunt build","version":"0.6.5","homepage":"https://github.com/krampstudio/grunt-jsdoc","author":{"name":"Bertrand Chevrier","email":"chevrier.bertrand@gmail.com","url":"http://krampstudio.com"},"contributors":[{"name":"Mikhail Diatchenko","email":"mikhail.diatchenko@gmail.com","url":"http://www.webgear.co.nz"}],"repository":{"type":"git","url":"git://github.com/krampstudio/grunt-jsdoc.git"},"bugs":{"url":"https://github.com/krampstudio/grunt-jsdoc/issues"},"license":"MIT","main":"Gruntfile.js","bin":{"grunt-jsdoc":"bin/grunt-jsdoc"},"engines":{"node":">= 0.8.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"^0.4.3","grunt-contrib-clean":"~0.5.0","grunt-contrib-jshint":"~0.10.0","grunt-contrib-nodeunit":"~0.4.0","load-grunt-tasks":"^3.2.0"},"dependencies":{"jsdoc":"^3.3.0","ink-docstrap":"^0.5.2"},"peerDependencies":{"grunt":"^0.4.0"},"keywords":["gruntplugin","grunt","documentation","doc","jsdoc","jsdoc3"],"gitHead":"9fbd0bb7f90fc1b374d6081ad29b58dd54adfc45","_id":"grunt-jsdoc@0.6.5","_shasum":"8fcb5b4638a71f2ce141938203c782cd02def13a","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"anonymous","email":"chevrier.bertrand@gmail.com"},"maintainers":[{"name":"anonymous","email":"chevrier.bertrand@gmail.com"}],"dist":{"shasum":"8fcb5b4638a71f2ce141938203c782cd02def13a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/grunt-jsdoc/-/grunt-jsdoc-0.6.5.tgz","integrity":"sha512-Zmm1f+x+tkzXEMMU3gUltt0mMyun9iR4SP1w24WPw7k7oLrTFZFc7o9P111Z1/NyaXbMgFhkaT3xV0yzw6nqZA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIA4oXiBfXVWUd5cdjjFMuhcQSX0vjHjcQmnUjFapIjYmAiBsLz23py2Ji7XrId9DG3CTCYy0eFovtTMXYwffa2E1fw=="}]},"directories":{}},"0.6.6":{"name":"grunt-jsdoc","description":"Integrates jsdoc3 generation into your Grunt build","version":"0.6.6","homepage":"https://github.com/krampstudio/grunt-jsdoc","author":{"name":"Bertrand Chevrier","email":"chevrier.bertrand@gmail.com","url":"http://krampstudio.com"},"contributors":[{"name":"Mikhail Diatchenko","email":"mikhail.diatchenko@gmail.com","url":"http://www.webgear.co.nz"}],"repository":{"type":"git","url":"git://github.com/krampstudio/grunt-jsdoc.git"},"bugs":{"url":"https://github.com/krampstudio/grunt-jsdoc/issues"},"license":"MIT","main":"Gruntfile.js","bin":{"grunt-jsdoc":"bin/grunt-jsdoc"},"engines":{"node":">= 0.8.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"^0.4.3","grunt-contrib-clean":"~0.5.0","grunt-contrib-jshint":"~0.10.0","grunt-contrib-nodeunit":"~0.4.0","load-grunt-tasks":"^3.2.0"},"dependencies":{"jsdoc":"^3.3.0","ink-docstrap":"^0.5.2"},"peerDependencies":{"grunt":"^0.4.0"},"keywords":["gruntplugin","grunt","documentation","doc","jsdoc","jsdoc3"],"gitHead":"20470cb1ad2a76f3371dae80cc35d91b3b180fd9","_id":"grunt-jsdoc@0.6.6","_shasum":"d9e5abe21490c8a68a55024b353e4907a872a5d4","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"anonymous","email":"chevrier.bertrand@gmail.com"},"maintainers":[{"name":"anonymous","email":"chevrier.bertrand@gmail.com"}],"dist":{"shasum":"d9e5abe21490c8a68a55024b353e4907a872a5d4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/grunt-jsdoc/-/grunt-jsdoc-0.6.6.tgz","integrity":"sha512-kYkJOg/fEt2ejxouwDCS7vv0JkP2XmHEI9B5zR5bAh/8lets3b7IIAKzyrFEmxSNVbutFnU6xk8Tt8QwTQ6dXw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHeUiHegO90soVVOE7w/aiNNqH8g32cRuGzWLQ3aeAcuAiEA/5QtcfrY0w81K/rCriktqqIukEXvKPcFQiiscyXqnb4="}]},"directories":{}},"0.6.7":{"name":"grunt-jsdoc","description":"Integrates jsdoc3 generation into your Grunt build","version":"0.6.7","homepage":"https://github.com/krampstudio/grunt-jsdoc","author":{"name":"Bertrand Chevrier","email":"chevrier.bertrand@gmail.com","url":"http://krampstudio.com"},"contributors":[{"name":"Mikhail Diatchenko","email":"mikhail.diatchenko@gmail.com","url":"http://www.webgear.co.nz"}],"repository":{"type":"git","url":"git://github.com/krampstudio/grunt-jsdoc.git"},"bugs":{"url":"https://github.com/krampstudio/grunt-jsdoc/issues"},"license":"MIT","main":"Gruntfile.js","bin":{"grunt-jsdoc":"bin/grunt-jsdoc"},"engines":{"node":">= 0.8.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"^0.4.3","grunt-contrib-clean":"~0.5.0","grunt-contrib-jshint":"~0.10.0","grunt-contrib-nodeunit":"~0.4.0","load-grunt-tasks":"^3.2.0"},"dependencies":{"jsdoc":"^3.3.0","ink-docstrap":"^0.5.2"},"peerDependencies":{"grunt":"^0.4.0"},"keywords":["gruntplugin","grunt","documentation","doc","jsdoc","jsdoc3"],"gitHead":"c3e4515292c80827a28d6a3088708b0439597840","_id":"grunt-jsdoc@0.6.7","_shasum":"f59da2e44a950843a0acb95068b1d066e04cf648","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.10.38","_npmUser":{"name":"anonymous","email":"chevrier.bertrand@gmail.com"},"maintainers":[{"name":"anonymous","email":"chevrier.bertrand@gmail.com"}],"dist":{"shasum":"f59da2e44a950843a0acb95068b1d066e04cf648","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/grunt-jsdoc/-/grunt-jsdoc-0.6.7.tgz","integrity":"sha512-nEcOpgbc1Wm85DPm5QP3/YTPhNqJXzB4QIp5Abe+KyHCN45heHHYRvKjFXEPUzAY6jhekqyGJDsYfYNv1TuVEA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCBrXcPqASx5hOgX8yDxLC2tDr5uDQuUHGADmcjBCGGOAIgCO3HzN4rB0EuQOWJAYKx3DApVsCBo6srES6AnHS0N68="}]},"directories":{}},"0.6.8":{"name":"grunt-jsdoc","description":"Integrates jsdoc3 generation into your Grunt build","version":"0.6.8","homepage":"https://github.com/krampstudio/grunt-jsdoc","author":{"name":"Bertrand Chevrier","email":"chevrier.bertrand@gmail.com","url":"http://krampstudio.com"},"contributors":[{"name":"Mikhail Diatchenko","email":"mikhail.diatchenko@gmail.com","url":"http://www.webgear.co.nz"}],"repository":{"type":"git","url":"git://github.com/krampstudio/grunt-jsdoc.git"},"bugs":{"url":"https://github.com/krampstudio/grunt-jsdoc/issues"},"license":"MIT","main":"Gruntfile.js","bin":{"grunt-jsdoc":"bin/grunt-jsdoc"},"engines":{"node":">= 0.8.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"^0.4.3","grunt-contrib-clean":"~0.5.0","grunt-contrib-jshint":"~0.10.0","grunt-contrib-nodeunit":"~0.4.0","load-grunt-tasks":"^3.2.0"},"dependencies":{"jsdoc":"^3.3.0","ink-docstrap":"^0.5.2"},"peerDependencies":{"grunt":"^0.4.0"},"keywords":["gruntplugin","grunt","documentation","doc","jsdoc","jsdoc3"],"gitHead":"2a0554369b3f569231f3c7d8b65f58c674dc2f1a","_id":"grunt-jsdoc@0.6.8","_shasum":"7f2d9b6a05b780c859f56119d148e9b4a6192bb1","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"anonymous","email":"chevrier.bertrand@gmail.com"},"maintainers":[{"name":"anonymous","email":"chevrier.bertrand@gmail.com"}],"dist":{"shasum":"7f2d9b6a05b780c859f56119d148e9b4a6192bb1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/grunt-jsdoc/-/grunt-jsdoc-0.6.8.tgz","integrity":"sha512-Sxgn1A6jW0F7lluc/wEqY005ap3xHHmkIhxPzu1IaBXlnN4IKyP5rmIHV13qpiDGxf06qX+txlm302W/Er+BJQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIE4zbdyhjYGpeAhFwMiambWLPDLhqIpcTvNX0fAABl6LAiEA76JVU/3LC3OsiEY7JUEo3mHQLHq38PSEIQRIVO2YPJg="}]},"directories":{}},"0.6.9":{"name":"grunt-jsdoc","description":"Integrates jsdoc3 generation into your Grunt build","version":"0.6.9","homepage":"https://github.com/krampstudio/grunt-jsdoc","author":{"name":"Bertrand Chevrier","email":"chevrier.bertrand@gmail.com","url":"http://krampstudio.com"},"contributors":[{"name":"Mikhail Diatchenko","email":"mikhail.diatchenko@gmail.com","url":"http://www.webgear.co.nz"}],"repository":{"type":"git","url":"git://github.com/krampstudio/grunt-jsdoc.git"},"bugs":{"url":"https://github.com/krampstudio/grunt-jsdoc/issues"},"license":"MIT","main":"Gruntfile.js","bin":{"grunt-jsdoc":"bin/grunt-jsdoc"},"engines":{"node":">= 0.8.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"^0.4.3","ink-docstrap":"^0.5.2","grunt-contrib-clean":"~0.5.0","grunt-contrib-jshint":"~0.10.0","grunt-contrib-nodeunit":"~0.4.0","load-grunt-tasks":"^3.2.0"},"dependencies":{"jsdoc":"^3.3.2"},"peerDependencies":{"grunt":"^0.4.0"},"keywords":["gruntplugin","grunt","documentation","doc","jsdoc","jsdoc3"],"gitHead":"b3aac642324939c4bd57a78b52929c4a6ef81fab","_id":"grunt-jsdoc@0.6.9","_shasum":"0e5a0ac0e29732dc70000c2c8a6cfe4d2cb50a6a","_from":".","_npmVersion":"2.14.0","_nodeVersion":"0.12.7","_npmUser":{"name":"anonymous","email":"chevrier.bertrand@gmail.com"},"maintainers":[{"name":"anonymous","email":"chevrier.bertrand@gmail.com"}],"dist":{"shasum":"0e5a0ac0e29732dc70000c2c8a6cfe4d2cb50a6a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/grunt-jsdoc/-/grunt-jsdoc-0.6.9.tgz","integrity":"sha512-JTpidO0Ns2fdUhwpLAOc/qCHvmFjcCtGY6NqezunMkEKrx0NRcWtemx5EELnqKu2OHD6SNGnHxgZ9a4LpLSZAw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC9wRor9ICK5YgvtUFjuG9yNPSJhelBGqSFmg1Cw+upWQIgSsOusLaW8yYPIBXROQfQIxSm2Nl7R5MZuDqxJTY3KG0="}]},"deprecated":"wrong docstrap dependency","directories":{}},"0.6.10":{"name":"grunt-jsdoc","description":"Integrates jsdoc3 generation into your Grunt build","version":"0.6.10","homepage":"https://github.com/krampstudio/grunt-jsdoc","author":{"name":"Bertrand Chevrier","email":"chevrier.bertrand@gmail.com","url":"http://krampstudio.com"},"contributors":[{"name":"Mikhail Diatchenko","email":"mikhail.diatchenko@gmail.com","url":"http://www.webgear.co.nz"}],"repository":{"type":"git","url":"git://github.com/krampstudio/grunt-jsdoc.git"},"bugs":{"url":"https://github.com/krampstudio/grunt-jsdoc/issues"},"license":"MIT","main":"Gruntfile.js","bin":{"grunt-jsdoc":"bin/grunt-jsdoc"},"engines":{"node":">= 0.8.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"^0.4.3","grunt-contrib-clean":"~0.5.0","grunt-contrib-jshint":"~0.10.0","grunt-contrib-nodeunit":"~0.4.0","load-grunt-tasks":"^3.2.0"},"dependencies":{"jsdoc":"^3.3.2","ink-docstrap":"^0.5.2"},"peerDependencies":{"grunt":"^0.4.0"},"keywords":["gruntplugin","grunt","documentation","doc","jsdoc","jsdoc3"],"gitHead":"0ccd54877df7a722b1d7704abd9753e2668d1914","_id":"grunt-jsdoc@0.6.10","_shasum":"3fe67ea63af94d9c7d85d83af02c83c35f2727dc","_from":".","_npmVersion":"2.14.0","_nodeVersion":"0.12.7","_npmUser":{"name":"anonymous","email":"chevrier.bertrand@gmail.com"},"maintainers":[{"name":"anonymous","email":"chevrier.bertrand@gmail.com"}],"dist":{"shasum":"3fe67ea63af94d9c7d85d83af02c83c35f2727dc","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/grunt-jsdoc/-/grunt-jsdoc-0.6.10.tgz","integrity":"sha512-TEKdbPr7a9pU0LWIRbBiSjUzRHUHl/L1opEe/fM2i1vcj8x7Cpo4BbK68ndNDuc1TYPXACtPK1eQllK+L89sbQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDYbaUkUGTNMVudnlAhwh9OsHF4scIMdipH/lVYAwNQYAiBiZ8zEgjw9dAe0DoYepH4QbXSUnlcjDi07caw2DiXBUw=="}]},"directories":{}},"1.0.0":{"name":"grunt-jsdoc","description":"Integrates jsdoc3 generation into your Grunt build","version":"1.0.0","homepage":"https://github.com/krampstudio/grunt-jsdoc","author":{"name":"Bertrand Chevrier","email":"chevrier.bertrand@gmail.com","url":"http://krampstudio.com"},"contributors":[{"name":"Mikhail Diatchenko","email":"mikhail.diatchenko@gmail.com","url":"http://www.webgear.co.nz"}],"repository":{"type":"git","url":"git://github.com/krampstudio/grunt-jsdoc.git"},"bugs":{"url":"https://github.com/krampstudio/grunt-jsdoc/issues"},"license":"MIT","main":"Gruntfile.js","bin":{"grunt-jsdoc":"bin/grunt-jsdoc"},"engines":{"node":">= 0.10.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"^0.4.5","grunt-contrib-clean":"~0.5.0","grunt-contrib-jshint":"~0.10.0","grunt-contrib-nodeunit":"~0.4.0","load-grunt-tasks":"^3.2.0","ink-docstrap":"^0.5.2"},"dependencies":{"jsdoc":"^3.3.3"},"peerDependencies":{"grunt":"*"},"keywords":["gruntplugin","grunt","documentation","doc","jsdoc","jsdoc3"],"gitHead":"c947daaad093d12a6bfa7bf6aafef89e5f0cab5f","_id":"grunt-jsdoc@1.0.0","_shasum":"86980a9ad88d639520e31febfaf5c37b9f8ce2e8","_from":".","_npmVersion":"3.3.4","_nodeVersion":"4.1.1","_npmUser":{"name":"anonymous","email":"chevrier.bertrand@gmail.com"},"maintainers":[{"name":"anonymous","email":"chevrier.bertrand@gmail.com"}],"dist":{"shasum":"86980a9ad88d639520e31febfaf5c37b9f8ce2e8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/grunt-jsdoc/-/grunt-jsdoc-1.0.0.tgz","integrity":"sha512-KyQXAKctUoKeP1HDJUaVtE6Igenm90pHLIUpuBf6ICWAoshFBfv2KEPgPvnNBKeUW7DuoqtrWQAZx/AJ52oqtA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCdI/lc9ernWWM7jfMWrNllGUPJqqdeemvBvIK1ghFm1wIhALKhh0+4DLw2poJ7NFvrrCrkg21n96nYhEC1iS+Zb20f"}]},"directories":{}},"1.1.0":{"name":"grunt-jsdoc","description":"Integrates jsdoc3 generation into your Grunt build","version":"1.1.0","homepage":"https://github.com/krampstudio/grunt-jsdoc","author":{"name":"Bertrand Chevrier","email":"chevrier.bertrand@gmail.com","url":"http://krampstudio.com"},"contributors":[{"name":"Mikhail Diatchenko","email":"mikhail.diatchenko@gmail.com","url":"http://www.webgear.co.nz"}],"repository":{"type":"git","url":"git://github.com/krampstudio/grunt-jsdoc.git"},"bugs":{"url":"https://github.com/krampstudio/grunt-jsdoc/issues"},"license":"MIT","main":"Gruntfile.js","bin":{"grunt-jsdoc":"bin/grunt-jsdoc"},"engines":{"node":">= 0.10.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"^0.4.5","grunt-contrib-clean":"~0.5.0","grunt-contrib-jshint":"~0.10.0","grunt-contrib-nodeunit":"~0.4.0","load-grunt-tasks":"^3.2.0","ink-docstrap":"^0.5.2"},"dependencies":{"jsdoc":"^3.4.0"},"peerDependencies":{"grunt":"*"},"keywords":["gruntplugin","grunt","documentation","doc","jsdoc","jsdoc3"],"gitHead":"ac94c7a7d4eabbc3de5a58a9676fb1e0a3523230","_id":"grunt-jsdoc@1.1.0","_shasum":"4bcefe60587a646a5b720fe9abf94cc4887fe854","_from":".","_npmVersion":"3.4.1","_nodeVersion":"5.0.0","_npmUser":{"name":"anonymous","email":"chevrier.bertrand@gmail.com"},"maintainers":[{"name":"anonymous","email":"chevrier.bertrand@gmail.com"}],"dist":{"shasum":"4bcefe60587a646a5b720fe9abf94cc4887fe854","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/grunt-jsdoc/-/grunt-jsdoc-1.1.0.tgz","integrity":"sha512-ajDV1aa8XbVdrovdkRx/mLh+VdeGU+lCmi4C3Sc8boMgeF6WG/FAC9zfOz0xLMupkjDfudHrQphCCMUFa492iw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICovX/gxtBlxA104kjN2jC9yurBwaCFbZzQi4cOXev8JAiAwlN6NlKVn5DPslICVyUI3Zcxh1GRRyxHjmBLs+WRr4g=="}]},"directories":{}},"2.0.0":{"name":"grunt-jsdoc","description":"Integrates jsdoc3 generation into your Grunt build","version":"2.0.0","homepage":"https://github.com/krampstudio/grunt-jsdoc","author":{"name":"Bertrand Chevrier","email":"chevrier.bertrand@gmail.com","url":"http://krampstudio.com"},"contributors":[{"name":"Mikhail Diatchenko","email":"mikhail.diatchenko@gmail.com","url":"http://www.webgear.co.nz"}],"repository":{"type":"git","url":"git://github.com/krampstudio/grunt-jsdoc.git"},"bugs":{"url":"https://github.com/krampstudio/grunt-jsdoc/issues"},"license":"MIT","main":"Gruntfile.js","bin":{"grunt-jsdoc":"bin/grunt-jsdoc"},"engines":{"node":">= 0.10.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"^1.0.0","grunt-contrib-clean":"^1.0.0","grunt-contrib-nodeunit":"^1.0.0","grunt-eslint":"^18.1.0","ink-docstrap":"^1.1.4","load-grunt-tasks":"^3.5.0"},"dependencies":{"cross-spawn-async":"^2.2.2","jsdoc":"^3.4.0"},"peerDependencies":{"grunt":">=0.4.5"},"keywords":["gruntplugin","grunt","documentation","doc","jsdoc","jsdoc3"],"gitHead":"c7c80b65b265166cdae41da3c5011aced9811918","_id":"grunt-jsdoc@2.0.0","_shasum":"634c7eefb369f1592abd22601b0cd1c628202591","_from":".","_npmVersion":"3.8.0","_nodeVersion":"5.7.0","_npmUser":{"name":"anonymous","email":"chevrier.bertrand@gmail.com"},"dist":{"shasum":"634c7eefb369f1592abd22601b0cd1c628202591","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/grunt-jsdoc/-/grunt-jsdoc-2.0.0.tgz","integrity":"sha512-NHg/AUrtRRb94AjWU9KDgs7pwySd+6rhaf/KkuEdijxXXIHcOtU74ZrVKdNMN8gtntLFi3wLLt39Vk7kYXrVqQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFDjniEKB0mQ3Bu94oYdCW8MITDDrJiyB6DqPDdqzIrwAiB0gNrArD4zx/v11pygBG3jb29JRNgxPWcPmpL31Lyn/A=="}]},"maintainers":[{"name":"anonymous","email":"chevrier.bertrand@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/grunt-jsdoc-2.0.0.tgz_1461615943332_0.4562398458365351"},"directories":{}},"2.1.0":{"name":"grunt-jsdoc","description":"Integrates jsdoc3 generation into your Grunt build","version":"2.1.0","homepage":"https://github.com/krampstudio/grunt-jsdoc","author":{"name":"Bertrand Chevrier","email":"chevrier.bertrand@gmail.com","url":"http://krampstudio.com"},"contributors":[{"name":"Mikhail Diatchenko","email":"mikhail.diatchenko@gmail.com","url":"http://www.webgear.co.nz"}],"repository":{"type":"git","url":"git://github.com/krampstudio/grunt-jsdoc.git"},"bugs":{"url":"https://github.com/krampstudio/grunt-jsdoc/issues"},"license":"MIT","main":"Gruntfile.js","bin":{"grunt-jsdoc":"bin/grunt-jsdoc"},"engines":{"node":">= 0.10.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"^1.0.0","grunt-contrib-clean":"^1.0.0","grunt-contrib-nodeunit":"^1.0.0","grunt-eslint":"^18.1.0","ink-docstrap":"^1.1.4","load-grunt-tasks":"^3.5.0"},"dependencies":{"cross-spawn":"^3.0.1","jsdoc":"^3.4.0"},"peerDependencies":{"grunt":">=0.4.5"},"keywords":["gruntplugin","grunt","documentation","doc","jsdoc","jsdoc3"],"gitHead":"f6f08c8d1beb4f74ddee6b891db3d4502c0bd1e4","_id":"grunt-jsdoc@2.1.0","_shasum":"8c2ae5080ca09d18d7adef8797678d46421a3e3a","_from":".","_npmVersion":"3.8.3","_nodeVersion":"5.10.1","_npmUser":{"name":"anonymous","email":"chevrier.bertrand@gmail.com"},"maintainers":[{"name":"anonymous","email":"chevrier.bertrand@gmail.com"}],"dist":{"shasum":"8c2ae5080ca09d18d7adef8797678d46421a3e3a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/grunt-jsdoc/-/grunt-jsdoc-2.1.0.tgz","integrity":"sha512-cpHLjs/cLrBSkdfwqkogxksA4e28bjrHzD6+uFwhYw/lt/OyXrfb4ro9QTCMO/b2c0bK7R6dVv0jFA0unRzUrA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFPTkP9H2FaawsqUnjxjXKeR5uS4XXDgGqKqHK9O0T9EAiEAucwXPBqKbPVjduuTBrY8s7Moy5hJFQAx1ejM5XcxRaI="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/grunt-jsdoc-2.1.0.tgz_1464349766231_0.2898432465735823"},"directories":{}},"2.1.1":{"name":"grunt-jsdoc","description":"Integrates jsdoc3 generation into your Grunt build","version":"2.1.1","homepage":"https://github.com/krampstudio/grunt-jsdoc","author":{"name":"Bertrand Chevrier","email":"chevrier.bertrand@gmail.com","url":"http://krampstudio.com"},"contributors":[{"name":"Mikhail Diatchenko","email":"mikhail.diatchenko@gmail.com","url":"http://www.webgear.co.nz"}],"repository":{"type":"git","url":"git://github.com/krampstudio/grunt-jsdoc.git"},"bugs":{"url":"https://github.com/krampstudio/grunt-jsdoc/issues"},"license":"MIT","main":"Gruntfile.js","bin":{"grunt-jsdoc":"bin/grunt-jsdoc"},"engines":{"node":">= 0.10.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"^1.0.0","grunt-contrib-clean":"^1.0.0","grunt-contrib-nodeunit":"^1.0.0","grunt-eslint":"^18.1.0","ink-docstrap":"^1.1.4","load-grunt-tasks":"^3.5.0"},"dependencies":{"cross-spawn":"^3.0.1","jsdoc":"~3.4.0"},"peerDependencies":{"grunt":">=0.4.5"},"keywords":["gruntplugin","grunt","documentation","doc","jsdoc","jsdoc3"],"gitHead":"d3c3d271e08e3746e323a21a64a8fb2b68c705d4","_id":"grunt-jsdoc@2.1.1","_npmVersion":"5.4.0","_nodeVersion":"8.1.4","_npmUser":{"name":"anonymous","email":"chevrier.bertrand@gmail.com"},"dist":{"integrity":"sha512-6yKvYSA0H+dWQ8XcANwNKL3Q+ccJyqxmQ1CwZ4imYLCVsdI7EMU54seVlBQ4lF3iu84Mxo9PTBETVC1MKkSUcw==","shasum":"a8d051c2a580938d206a5032a2be97c577112e2d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/grunt-jsdoc/-/grunt-jsdoc-2.1.1.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICBufnnZfTFScjtbhbqxE52Xrz6YbxTt4tFpOIhoCnS3AiEAuN9OkUHSJTA/IQeiF2EveuEHULgybKDJcCKa7KYHmIQ="}]},"maintainers":[{"name":"anonymous","email":"chevrier.bertrand@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/grunt-jsdoc-2.1.1.tgz_1504622686277_0.8065563605632633"},"directories":{}},"2.2.0":{"name":"grunt-jsdoc","description":"Integrates jsdoc3 generation into your Grunt build","version":"2.2.0","homepage":"https://github.com/krampstudio/grunt-jsdoc","author":{"name":"Bertrand Chevrier","email":"chevrier.bertrand@gmail.com","url":"http://krampstudio.com"},"contributors":[{"name":"Mikhail Diatchenko","email":"mikhail.diatchenko@gmail.com","url":"http://www.webgear.co.nz"}],"repository":{"type":"git","url":"git://github.com/krampstudio/grunt-jsdoc.git"},"bugs":{"url":"https://github.com/krampstudio/grunt-jsdoc/issues"},"license":"MIT","main":"Gruntfile.js","bin":{"grunt-jsdoc":"bin/grunt-jsdoc"},"engines":{"node":">= 4.2.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"^1.0.0","grunt-contrib-clean":"^1.0.0","grunt-contrib-nodeunit":"^1.0.0","grunt-eslint":"^18.1.0","ink-docstrap":"^1.1.4","load-grunt-tasks":"^3.5.0"},"dependencies":{"cross-spawn":"^3.0.1","jsdoc":"~3.5.5"},"keywords":["gruntplugin","grunt","documentation","doc","jsdoc","jsdoc3"],"gitHead":"29ccb561db2afe9f5747fefef33aad30771fa248","_id":"grunt-jsdoc@2.2.0","_npmVersion":"5.4.2","_nodeVersion":"8.1.4","_npmUser":{"name":"anonymous","email":"chevrier.bertrand@gmail.com"},"dist":{"integrity":"sha512-3/HzvzcG7gxlm4YefR5ELbsUB/bIFCeX3CbUeAANKGMfNUZ2tDQ+Pp0YRb/VWHjyu+v8wG6n1PD8yIjubjEDeg==","shasum":"e771c4c79c6c549016948b17e741680306f3070c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/grunt-jsdoc/-/grunt-jsdoc-2.2.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDMK8O/5u/87Edb0INWMngNKsyUqjliSMuDsCnPp0ToAAIhAPCC3PZ5tzGkckRxmY252QI+/R9llL+crYBl87xUXzHS"}]},"maintainers":[{"name":"anonymous","email":"chevrier.bertrand@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/grunt-jsdoc-2.2.0.tgz_1506953679641_0.008437351090833545"},"directories":{}},"2.2.1":{"name":"grunt-jsdoc","description":"Integrates jsdoc3 generation into your Grunt build","version":"2.2.1","homepage":"https://github.com/krampstudio/grunt-jsdoc","author":{"name":"Bertrand Chevrier","email":"chevrier.bertrand@gmail.com","url":"http://krampstudio.com"},"contributors":[{"name":"Mikhail Diatchenko","email":"mikhail.diatchenko@gmail.com","url":"http://www.webgear.co.nz"}],"repository":{"type":"git","url":"git://github.com/krampstudio/grunt-jsdoc.git"},"bugs":{"url":"https://github.com/krampstudio/grunt-jsdoc/issues"},"license":"MIT","main":"Gruntfile.js","bin":{"grunt-jsdoc":"bin/grunt-jsdoc"},"engines":{"node":">= 4.2.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"^1.0.0","grunt-contrib-clean":"^1.0.0","grunt-contrib-nodeunit":"^1.0.0","grunt-eslint":"^18.1.0","ink-docstrap":"^1.1.4","load-grunt-tasks":"^3.5.0"},"dependencies":{"cross-spawn":"^3.0.1","jsdoc":"~3.5.5","marked":"^0.3.9"},"keywords":["gruntplugin","grunt","documentation","doc","jsdoc","jsdoc3"],"gitHead":"a684d7ed9d605f86e18f9a02278ef75dd5a79051","_id":"grunt-jsdoc@2.2.1","_npmVersion":"5.6.0","_nodeVersion":"8.1.4","_npmUser":{"name":"anonymous","email":"chevrier.bertrand@gmail.com"},"dist":{"integrity":"sha512-33QZYBYjv2Ph3H2ygqXHn/o0ttfptw1f9QciOTgvzhzUeiPrnvzMNUApTPtw22T6zgReE5FZ1RR58U2wnK/l+w==","shasum":"5fcd7fb2dd056e8c3e317789e501f7399e11a29c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/grunt-jsdoc/-/grunt-jsdoc-2.2.1.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIG8/MiQI1pVRC+x2RZR0LlGicXsJNImPSfGvAkHKAGIEAiAuUbAOpEXGFVtN0wngu8wqrgP9+beGH0q6+FLhRB5jNQ=="}]},"maintainers":[{"name":"anonymous","email":"chevrier.bertrand@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/grunt-jsdoc-2.2.1.tgz_1515165260711_0.12341544544324279"},"directories":{}},"2.3.0":{"name":"grunt-jsdoc","description":"Integrates jsdoc3 generation into your Grunt build","version":"2.3.0","homepage":"https://github.com/krampstudio/grunt-jsdoc","author":{"name":"Bertrand Chevrier","email":"chevrier.bertrand@gmail.com","url":"http://krampstudio.com"},"contributors":[{"name":"Mikhail Diatchenko","email":"mikhail.diatchenko@gmail.com","url":"http://www.webgear.co.nz"}],"repository":{"type":"git","url":"git://github.com/krampstudio/grunt-jsdoc.git"},"bugs":{"url":"https://github.com/krampstudio/grunt-jsdoc/issues"},"license":"MIT","main":"Gruntfile.js","bin":{"grunt-jsdoc":"bin/grunt-jsdoc"},"engines":{"node":">= 4.2.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"^1.0.3","grunt-contrib-clean":"^1.0.0","grunt-contrib-nodeunit":"^2.0.0","grunt-eslint":"^21.0.0","ink-docstrap":"^1.3.2","load-grunt-tasks":"^4.0.0"},"dependencies":{"cross-spawn":"^6.0.5","jsdoc":"~3.5.5","marked":"^0.5.0"},"keywords":["gruntplugin","grunt","documentation","doc","jsdoc","jsdoc3"],"gitHead":"8ba25f9735ffc69939922e7b9ae03a10e76d5def","_id":"grunt-jsdoc@2.3.0","_npmVersion":"6.4.1","_nodeVersion":"8.1.4","_npmUser":{"name":"anonymous","email":"chevrier.bertrand@gmail.com"},"dist":{"integrity":"sha512-gC66TCRXeQMj3HIyqVSBJm8zdUz43e5vaG/PLO/627A1edbJnzxhJV7nF0KqLwMM0RDNu1istC6fvfnYqFKi3w==","shasum":"d1767dad0d9dbfb4f7a93390ce44e5cbd8873587","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/grunt-jsdoc/-/grunt-jsdoc-2.3.0.tgz","fileCount":16,"unpackedSize":26460,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbkitZCRA9TVsSAnZWagAA1skP/A3NyuqaXJZXW2gZE49H\n6w9jMrGE46PMxZSe/GBKc2E/hR08iEAkYqas0L2a6Spdir72TIImMrvIPvWz\nXL11kV7x3wcAcaPlIgVPqADjqtj2yepk7ccOStUGPewQAPU90RWR0xa6p+KT\nyFyiH+nT6XstUAPHlFCgooJlHQXOhvdlIZSAfCyBXqRFrWsKWvXRhvBj6n6k\nJLDSomojcOmrdagE4wZ89M/4ywKfuPVAYtJFD+5UorfaPvm3gv8WPA/Fy4Vj\nnCCk9TgbH1Wpic77bw5ByBd6pmoHXNtchwg9g+53aRq6ErRbEjr6mRXuodN7\ngu9gAUfhQx06T6iZuFBe5aRC7DKUTbWU52i8h0QMDRan6EZxuKYB3RvWBwL1\nKJ/JPLRynyJ24D+dBdxbpayzmVQ6qgrUxk7o2nbbCaw5unxhb5ekgcfEbr7R\nQfqPtcOCvF6nl3cjTkWd0Dgcq6DCQWL37SGaaiKFR99DykzY55aV9siIjz+e\ns0QIMpkF7/BmGOd0VfeXd1Lgqk2ohq8OLuH+ThXTHO9NoG53Tj1fG6Jwwr26\nDHnQuIcKOrAxxyGaKlvey7I8i789Azfoo8eR6KU/ulcc8bMtGqRgBycNLPNW\nIcbsm5kdx3h4QlJ+DYd/DgIu4yIJ53T/C3gnu1UIuLQpMHFRO2qp0Wo1ZdLI\njAgS\r\n=WPzB\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDMGyx3ZBelZ2Aw8q169vlArNmecF98mLCmS0fhK/R8bAIgAaNSIn86LC3WIMSdW3ACVQZvHFO2+JYra5BUwIBKWdQ="}]},"maintainers":[{"name":"anonymous","email":"chevrier.bertrand@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/grunt-jsdoc_2.3.0_1536306009072_0.12147087261821432"},"_hasShrinkwrap":false},"2.3.1":{"name":"grunt-jsdoc","description":"Integrates jsdoc3 generation into your Grunt build","version":"2.3.1","homepage":"https://github.com/krampstudio/grunt-jsdoc","author":{"name":"Bertrand Chevrier","email":"chevrier.bertrand@gmail.com","url":"http://krampstudio.com"},"contributors":[{"name":"Mikhail Diatchenko","email":"mikhail.diatchenko@gmail.com","url":"http://www.webgear.co.nz"}],"repository":{"type":"git","url":"git://github.com/krampstudio/grunt-jsdoc.git"},"bugs":{"url":"https://github.com/krampstudio/grunt-jsdoc/issues"},"license":"MIT","main":"Gruntfile.js","bin":{"grunt-jsdoc":"bin/grunt-jsdoc"},"engines":{"node":">= 4.2.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"^1.0.4","grunt-contrib-clean":"^2.0.0","grunt-contrib-nodeunit":"^2.0.0","grunt-eslint":"^21.0.0","ink-docstrap":"^1.3.2","load-grunt-tasks":"^4.0.0"},"dependencies":{"cross-spawn":"^6.0.5","jsdoc":"~3.5.5","marked":"^0.6.2"},"keywords":["gruntplugin","grunt","documentation","doc","jsdoc","jsdoc3"],"gitHead":"a88190a5c9a4cd1d1c24135c71ea86a270716085","_id":"grunt-jsdoc@2.3.1","_nodeVersion":"8.12.0","_npmVersion":"6.9.0","dist":{"integrity":"sha512-DFJ3zbi0qtVG2FHDIkfkCVEN8vlf7KSQCP/kckM+51+zpbgGlYB2r7v0dCmdWQw0vZG6/Bzfw9zznowPyQQ5gQ==","shasum":"f862f0e17c632c330695d4e7f6e9f9f0eeedf890","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/grunt-jsdoc/-/grunt-jsdoc-2.3.1.tgz","fileCount":16,"unpackedSize":26581,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcsGVmCRA9TVsSAnZWagAAX+sQAJR/dlDWFUGvDGjx/4pl\nrIOzPLSdQSfP1p68hJg81iYZYim4VfpuieZvbjao2vtSJLV2IJcJhXFnlDfR\nm3TmLcKy2RC5snvorngDBF0LuPxnCcOC8CA5da/8FmyYfubHHUxeJz55chd2\nyfE9v4ghXE0g6Ubld/VIUWdSqu+jqSkz7RVX+5Ytl8YjgPlj/U794IuRoYRI\ngkVpOqPsz9MxnzwME0xO8gjgApvPLQygtKcG1WrzNqFcld91uvGdrK9EBi0U\n1sOYuQemhkjf9e2ZF04Zzz5Fs5CFu/LoEBNxe2xSUTmvxhyYzeh6ierukHQ4\n0T4JgqpToC+Zdo7c+kPYWZf3XjDDRSvgVzQeTokhGD3PoA2DWmvWYWPDRRR5\nQjiI5uIkJAqYCYC3osW8DvglBa4Qt4lSHsdIpQgCXJiLtfz3RfKOGTWC2NCH\nBOFzDB0MxolO1YLTDbpTGGrhx0f7OOYFmG5Xnw2KeZmtwZFbnwGJiI7Gki1U\nRcwYJlpGh3oY5fQcH5gibvrpFxdOPf1A2Z5W+1uN40XlCWRzp3BPk0N0T3Rl\nhMFlLP/+w7jHf9sklkQhUn8PijfQIf2PRCCnKQ+crJ0ZOPHoI4Wz6MZkAoG1\n6UkLIV2ZK1/bXqCJZW2QCXNkRwTy4GnwD0fJC11KNe1t4jar53tss5fP2DfG\n74Ge\r\n=O1ME\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD+F7i59url089DNbu80wksIEeksZmOvhUITHcDRqMV5QIgKdq3OmgRxr23CJSPgj0GdRWWGaE7IG0nxf5AbytBGdw="}]},"maintainers":[{"name":"anonymous","email":"chevrier.bertrand@gmail.com"}],"_npmUser":{"name":"anonymous","email":"chevrier.bertrand@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/grunt-jsdoc_2.3.1_1555064166043_0.35525159229816006"},"_hasShrinkwrap":false},"2.4.0":{"name":"grunt-jsdoc","description":"Integrates jsdoc3 generation into your Grunt build","version":"2.4.0","homepage":"https://github.com/krampstudio/grunt-jsdoc","author":{"name":"Bertrand Chevrier","email":"chevrier.bertrand@gmail.com","url":"http://krampstudio.com"},"contributors":[{"name":"Mikhail Diatchenko","email":"mikhail.diatchenko@gmail.com","url":"http://www.webgear.co.nz"}],"repository":{"type":"git","url":"git://github.com/krampstudio/grunt-jsdoc.git"},"bugs":{"url":"https://github.com/krampstudio/grunt-jsdoc/issues"},"license":"MIT","main":"Gruntfile.js","bin":{"grunt-jsdoc":"bin/grunt-jsdoc"},"engines":{"node":">= 8.12.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"^1.0.4","grunt-contrib-clean":"^2.0.0","grunt-contrib-nodeunit":"^2.0.0","grunt-eslint":"^21.0.0","ink-docstrap":"^1.3.2","load-grunt-tasks":"^4.0.0"},"dependencies":{"cross-spawn":"^6.0.5","jsdoc":"~3.6.0"},"keywords":["gruntplugin","grunt","documentation","doc","jsdoc","jsdoc3"],"gitHead":"7b4c6eb9db6ae207b18f1fdf37bc71d8c98c76da","_id":"grunt-jsdoc@2.4.0","_nodeVersion":"8.12.0","_npmVersion":"6.9.0","dist":{"integrity":"sha512-JpZd1W7HbK0sHbpiL9+VyDFwZlkYoDQMaP+v6z1R23W/NYLoqJM76L9eBOr7O6NycqtddRHN5DzlSkW45MJ82w==","shasum":"efbf396cdb6ffbe47702c5ceebd0f16033771b9f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/grunt-jsdoc/-/grunt-jsdoc-2.4.0.tgz","fileCount":16,"unpackedSize":26625,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJczzuFCRA9TVsSAnZWagAA+/AP/0gvX+i9uSnpNyrIrdjb\nrJJpUz3Li3CTRKNrGvCWxRAY0Y4aRmt2VcUiVhtIMzta655Ojwk1g0pL/JQ/\nZx3O7Dj7ODiuGDKzKtnlOMnkhOrGZ88XLe4rcoYdpIlr59ma4TJ+bmB3II5m\n4bBqyWW+arhGhfoh6Ym00iwuJLe3ujTAFAyeKIHIH6Ajw2S2la0tC1xe0Q0m\nqGXpWxWmBzndhTQa5NPRDu4zOsveETPWJWL5C0PU2B5ScPwihGJmqJFVURor\nzH0dF+821fpsBANB4huYGzC94kPRyA6zLZF1bmUVCjwvVUbUzqaeNJMIbvq3\nRb1Te3mb0VrEGCPmMscnE+kS8j5WN8Nu6jxFF6TYzIrCMdt5M+Uc1qAz5byE\nGkwFXRjMk76xst53zyv13/sfZItqzqvqyAExxDBZqZwPpCgOLYU34r55tBto\nufe7yHp+ASNSivO0rgbmseZb/xUAJVptPR+rQeYWupdT+eOVdVf+FkPnGQNn\nWqh8hOUIDxSrAuNbpsUXaWv6sXZYSCJcieHgALjBt9/BQjW0FfKhZndtOkO0\nvOJwPgM5iOigUckTuryFq+tNaguaPw+zYwnSgpDWaLlI5wXl3N6ZdaSI/hr1\nA5bEr2Su5kMbiBlheGkWEtVdBlGA/crmjermbTr9kxoqW2hZ7zXSzD0Bhzpz\nvP9B\r\n=v7wd\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBrYPloPk0zuKfb6AHmfkRx1O9TfThqIlhdfb1a46X35AiAExFKNWZOdVmsp1mLHc3XnPj1yWdnJWy3u7lBASfS9Pg=="}]},"maintainers":[{"name":"anonymous","email":"chevrier.bertrand@gmail.com"}],"_npmUser":{"name":"anonymous","email":"chevrier.bertrand@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/grunt-jsdoc_2.4.0_1557085061146_0.6180449583690399"},"_hasShrinkwrap":false},"2.4.1":{"name":"grunt-jsdoc","description":"Integrates jsdoc3 generation into your Grunt build","version":"2.4.1","homepage":"https://github.com/krampstudio/grunt-jsdoc","author":{"name":"Bertrand Chevrier","email":"chevrier.bertrand@gmail.com","url":"http://krampstudio.com"},"contributors":[{"name":"Mikhail Diatchenko","email":"mikhail.diatchenko@gmail.com","url":"http://www.webgear.co.nz"}],"repository":{"type":"git","url":"git://github.com/krampstudio/grunt-jsdoc.git"},"bugs":{"url":"https://github.com/krampstudio/grunt-jsdoc/issues"},"license":"MIT","main":"Gruntfile.js","bin":{"grunt-jsdoc":"bin/grunt-jsdoc"},"engines":{"node":">= 8.12.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"^1.0.4","grunt-contrib-clean":"^2.0.0","grunt-contrib-nodeunit":"^2.0.0","grunt-eslint":"^22.0.0","ink-docstrap":"^1.3.2","load-grunt-tasks":"^5.1.0"},"dependencies":{"cross-spawn":"^7.0.1","jsdoc":"^3.6.3"},"keywords":["gruntplugin","grunt","documentation","doc","jsdoc","jsdoc3"],"gitHead":"e6fd69c906aa3618c3b49cae43cceb0a7a297cc0","_id":"grunt-jsdoc@2.4.1","_nodeVersion":"10.16.3","_npmVersion":"6.13.6","dist":{"integrity":"sha512-S0zxU0wDewRu7z+vijEItOWe/UttxWVmvz0qz2ZVcAYR2GpXjsiski2CAVN0b18t2qeVLdmxZkJaEWCOsKzcAw==","shasum":"2ba3eb98a058af82d74623ebd0f5bcac38991813","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/grunt-jsdoc/-/grunt-jsdoc-2.4.1.tgz","fileCount":16,"unpackedSize":26655,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeHz87CRA9TVsSAnZWagAAINoP/j0Uhs1N7Urma6Mnbs22\nW/xIwwHomX1Z6kfCvLplEtsPZw1ycxlJUaJzqGjSxmyuQuBX5RLgaqEHshD6\nveXs7mdIeZneU6k7WGzvro+zULWZn1IUgt3H8ZcwFjPp0qZfPFK1tmHDQRrW\nLX1T8HpTFVE3oWLjPWwVv21A28U59ZdQjNjO8WXcg8YJZw9Uw9XPcEjUGaWU\n1iykICi7NeDZaSBi+Sk+bwAo9YRO5/C8Wli9AB4aM+LAMry1pleF92IRir3M\nXcexP9tZ3qQRSiOglGYE80OZ9Z+Pz52zJeYFKNs8Xx46hzlXJCt/dMGK/2Tr\nsoyTqonjlAjCjSsQMmseQ6vAbw3AkmezgXsZ/mY8Drg8GWXzGnuCw6iIn8Qw\nTHuMmE8xJGOJR6rWWl6rEwwpuV+l1CJ0b/umVZKvptFcyBqnAUlZFw1l2ke9\nccjgMqkdDEAlbM0GcORbOYJatRlmWHOaHZJRz3jV0PQCsGjMrcyMr5hFP7rf\nfX7We7Xd8jVEOco5t4ZAulu2pSdLsMPKPkcTPfCAqk0qL58vA2UHVtGUmpxS\n6/G6Jcjy1ezuLIE339MxP4LSHVa6/IrD4OUvRtvcV8sHQE/FMy6dIWJksZtJ\nXfLwPjLsUc/7OC9Lw74i6YrHBA86iqB9aHIg5CCQ783G5InuyZIH1bBs9VfP\n5vo8\r\n=SYqS\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEoRQgq7oA/22XUTYP0GyDg2oEshMG2SZKDl1VkrTt4UAiEAtDVaF41iVBcLgKg+Z+g24/nLxPyw5xT+hQdSBuUxOj0="}]},"maintainers":[{"name":"anonymous","email":"chevrier.bertrand@gmail.com"}],"_npmUser":{"name":"anonymous","email":"chevrier.bertrand@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/grunt-jsdoc_2.4.1_1579106107006_0.7584144436455185"},"_hasShrinkwrap":false}},"name":"grunt-jsdoc","time":{"modified":"2022-06-18T15:19:34.124Z","created":"2013-02-17T13:40:49.161Z","0.2.3":"2013-02-17T13:40:51.531Z","0.2.4":"2013-03-02T14:47:47.644Z","0.2.5":"2013-04-04T19:52:01.697Z","0.3.0":"2013-04-04T19:54:55.280Z","0.3.1":"2013-04-10T07:42:13.929Z","0.3.2":"2013-04-12T11:55:07.034Z","0.3.3":"2013-05-25T14:12:28.742Z","0.4.0":"2013-07-03T12:02:28.997Z","0.4.1":"2013-09-21T13:09:23.396Z","0.4.2":"2013-11-17T14:15:00.119Z","0.4.3":"2014-01-01T15:18:37.413Z","0.5.0":"2014-01-03T11:27:52.148Z","0.5.1":"2014-01-03T22:41:07.647Z","0.5.2":"2014-03-09T15:28:27.258Z","0.5.3":"2014-03-09T17:47:14.103Z","0.5.4":"2014-03-09T17:49:45.644Z","0.5.5":"2014-06-19T09:53:32.233Z","0.5.6":"2014-06-19T10:06:20.232Z","0.6.0":"2014-08-18T20:27:40.025Z","0.5.7":"2014-08-18T20:56:10.278Z","0.6.1":"2014-10-08T19:50:26.234Z","0.6.2":"2015-01-11T09:12:18.013Z","0.5.8":"2015-02-11T12:26:57.494Z","0.6.3":"2015-02-26T13:32:42.910Z","0.6.4":"2015-05-22T11:59:05.287Z","0.6.5":"2015-05-27T11:21:53.342Z","0.6.6":"2015-05-27T11:39:36.531Z","0.6.7":"2015-05-29T20:17:44.453Z","0.6.8":"2015-08-23T11:48:59.537Z","0.6.9":"2015-09-26T21:24:01.626Z","0.6.10":"2015-09-27T08:02:00.856Z","1.0.0":"2015-10-02T09:30:38.624Z","1.1.0":"2015-11-29T14:20:22.300Z","2.0.0":"2016-04-25T20:25:45.553Z","2.1.0":"2016-05-27T11:49:28.509Z","2.1.1":"2017-09-05T14:44:47.402Z","2.2.0":"2017-10-02T14:14:40.624Z","2.2.1":"2018-01-05T15:14:21.735Z","2.3.0":"2018-09-07T07:40:09.184Z","2.3.1":"2019-04-12T10:16:06.308Z","2.4.0":"2019-05-05T19:37:41.406Z","2.4.1":"2020-01-15T16:35:07.157Z"},"contributors":[{"name":"Mikhail Diatchenko","email":"mikhail.diatchenko@gmail.com","url":"http://www.webgear.co.nz"}],"readmeFilename":"README.md","homepage":"https://github.com/krampstudio/grunt-jsdoc"}