{"maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"keywords":["eslint","eslintplugin","angularjs"],"dist-tags":{"latest":"5.0.0"},"description":"ESLint rules for AngularJS projects","readme":"# eslint plugin angular [![Npm version](https://img.shields.io/npm/v/eslint-plugin-angular.svg)](https://www.npmjs.com/package/eslint-plugin-angular) [![Npm downloads per month](https://img.shields.io/npm/dm/eslint-plugin-angular.svg)](https://www.npmjs.com/package/eslint-plugin-angular)\n\n> ESLint rules for your angular project with checks for best-practices, conventions or potential errors.\n\n[![.github/workflows/main.yml](https://github.com/EmmanuelDemey/eslint-plugin-angular/actions/workflows/main.yml/badge.svg)](https://github.com/EmmanuelDemey/eslint-plugin-angular/actions/workflows/main.yml)\n[![Greenkeeper badge](https://badges.greenkeeper.io/Gillespie59/eslint-plugin-angular.svg)](https://greenkeeper.io/)\n[![Join the chat at https://gitter.im/Gillespie59/eslint-plugin-angular](https://img.shields.io/gitter/room/nwjs/nw.js.svg)](https://gitter.im/Gillespie59/eslint-plugin-angular?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\n\n## Summary\n\nThis repository will give access to new rules for the ESLint tool. You should use it only if you are developing an AngularJS application.\n\nSince the 0.0.4 release, some rules defined in [John Papa's Guideline](https://github.com/johnpapa/angular-styleguide/blob/master/a1) have been implemented. In the description below, you will have a link to the corresponding part of the guideline, in order to have more information.\n\n\n\n## Contents\n\n- [Usage with shareable config](#usage-with-shareable-config)\n- [Usage without shareable config](#usage-without-shareable-config)\n- [Rules](#rules)\n- [Need your help](#need-your-help)\n- [How to create a new rule](#how-to-create-a-new-rule)\n- [Default ESLint configuration file](#default-eslint-configuration-file)\n- [Who uses it?](#who-uses-it)\n- [Team](#team)\n\n\n\n## Usage with [shareable](http://eslint.org/docs/developer-guide/shareable-configs.html) config\n\n1. Install `eslint` as a dev-dependency:\n\n    ```shell\n    npm install --save-dev eslint\n    ```\n\n2. Install `eslint-plugin-angular` as a dev-dependency:\n\n    ```shell\n    npm install --save-dev eslint-plugin-angular\n    ```\n\n3. Use the shareable config by adding it to your `eslintrc.config.mjs`:\n\n    ```javascript\n    import angular from \"eslint-plugin-angular\";\n\n    export default defineConfig([{\n      plugins: {\n        angular\n      },\n      rules: {\n        ...angular.configs.johnpapa.rules\n      }\n    }]);\n    ```\n\n\n\n## Usage without shareable config\n\n1. Install `eslint` as a dev-dependency:\n\n    ```shell\n    npm install --save-dev eslint\n    ```\n\n2. Install `eslint-plugin-angular` as a dev-dependency:\n\n    ```shell\n    npm install --save-dev eslint-plugin-angular\n    ```\n\n3. Enable the plugin by adding it to your `eslint.config.mjs`:\n\n    ```javascript\n    import angular from \"eslint-plugin-angular\";\n\n    export default defineConfig([{\n      plugins: {\n        angular\n      }\n    }]);\n    ```\n4. You can also configure these rules in your `eslint.config.mjs`. All rules defined in this plugin have to be prefixed by 'angular/'\n\n    ```javascript\n    import angular from \"eslint-plugin-angular\";\n\n    export default defineConfig([{\n      plugins: {\n        angular\n      },\n      rules: {\n        \"angular/controller-name\": \"error\"\n      }\n    }]);\n    ```\n\n----\n\n\n## Rules\n\nRules in eslint-plugin-angular are divided into several categories to help you better understand their value.\n\n\n### Possible Errors\n\nThe following rules detect patterns that can lead to errors.\n\n * [avoid-scope-typos](docs/rules/avoid-scope-typos.md) - Avoid mistakes when naming methods defined on the scope object\n * [module-getter](docs/rules/module-getter.md) - disallow to reference modules with variables and require to use the getter syntax instead `angular.module('myModule')` ([y022](https://github.com/johnpapa/angular-styleguide/blob/master/a1/README.md#style-y022))\n * [module-setter](docs/rules/module-setter.md) - disallow to assign modules to variables (linked to [module-getter](docs/module-getter.md) ([y021](https://github.com/johnpapa/angular-styleguide/blob/master/a1/README.md#style-y021))\n * [no-private-call](docs/rules/no-private-call.md) - disallow use of internal angular properties prefixed with $$\n\n### Best Practices\n\nThese are rules designed to prevent you from making mistakes. They either prescribe a better way of doing something or help you avoid footguns..\n\n * [component-limit](docs/rules/component-limit.md) - limit the number of angular components per file ([y001](https://github.com/johnpapa/angular-styleguide/blob/master/a1/README.md#style-y001))\n * [controller-as-route](docs/rules/controller-as-route.md) - require the use of controllerAs in routes or states ([y031](https://github.com/johnpapa/angular-styleguide/blob/master/a1/README.md#style-y031))\n * [controller-as-vm](docs/rules/controller-as-vm.md) - require and specify a capture variable for `this` in controllers ([y032](https://github.com/johnpapa/angular-styleguide/blob/master/a1/README.md#style-y032))\n * [controller-as](docs/rules/controller-as.md) - disallow assignments to `$scope` in controllers ([y031](https://github.com/johnpapa/angular-styleguide/blob/master/a1/README.md#style-y031))\n * [deferred](docs/rules/deferred.md) - use `$q(function(resolve, reject){})` instead of `$q.deferred`\n * [di-unused](docs/rules/di-unused.md) - disallow unused DI parameters\n * [directive-restrict](docs/rules/directive-restrict.md) - disallow any other directive restrict than 'A' or 'E' ([y074](https://github.com/johnpapa/angular-styleguide/blob/master/a1/README.md#style-y074))\n * [empty-controller](docs/rules/empty-controller.md) - disallow empty controllers\n * [no-controller](docs/rules/no-controller.md) - disallow use of controllers (according to the component first pattern)\n * [no-inline-template](docs/rules/no-inline-template.md) - disallow the use of inline templates\n * [no-run-logic](docs/rules/no-run-logic.md) - keep run functions clean and simple ([y171](https://github.com/johnpapa/angular-styleguide/blob/master/a1/README.md#style-y171))\n * [no-services](docs/rules/no-services.md) - disallow DI of specified services for other angular components (`$http` for controllers, filters and directives)\n * [on-watch](docs/rules/on-watch.md) - require `$on` and `$watch` deregistration callbacks to be saved in a variable\n * [prefer-component](docs/rules/prefer-component.md) - \n\n### Deprecated Angular Features\n\nThese rules prevent you from using deprecated angular features.\n\n * [no-cookiestore](docs/rules/no-cookiestore.md) - use `$cookies` instead of `$cookieStore`\n * [no-directive-replace](docs/rules/no-directive-replace.md) - disallow the deprecated directive replace property\n * [no-http-callback](docs/rules/no-http-callback.md) - disallow the `$http` methods `success()` and `error()`\n\n### Naming\n\nThese rules help you to specify several naming conventions.\n\n * [component-name](docs/rules/component-name.md) - require and specify a prefix for all component names\n * [constant-name](docs/rules/constant-name.md) - require and specify a prefix for all constant names ([y125](https://github.com/johnpapa/angular-styleguide/blob/master/a1/README.md#style-y125))\n * [controller-name](docs/rules/controller-name.md) - require and specify a prefix for all controller names ([y123](https://github.com/johnpapa/angular-styleguide/blob/master/a1/README.md#style-y123), [y124](https://github.com/johnpapa/angular-styleguide/blob/master/a1/README.md#style-y124))\n * [directive-name](docs/rules/directive-name.md) - require and specify a prefix for all directive names ([y073](https://github.com/johnpapa/angular-styleguide/blob/master/a1/README.md#style-y073), [y126](https://github.com/johnpapa/angular-styleguide/blob/master/a1/README.md#style-y126))\n * [factory-name](docs/rules/factory-name.md) - require and specify a prefix for all factory names ([y125](https://github.com/johnpapa/angular-styleguide/blob/master/a1/README.md#style-y125))\n * [file-name](docs/rules/file-name.md) - require and specify a consistent component name pattern ([y120](https://github.com/johnpapa/angular-styleguide/blob/master/a1/README.md#style-y120), [y121](https://github.com/johnpapa/angular-styleguide/blob/master/a1/README.md#style-y121))\n * [filter-name](docs/rules/filter-name.md) - require and specify a prefix for all filter names\n * [module-name](docs/rules/module-name.md) - require and specify a prefix for all module names ([y127](https://github.com/johnpapa/angular-styleguide/blob/master/a1/README.md#style-y127))\n * [provider-name](docs/rules/provider-name.md) - require and specify a prefix for all provider names ([y125](https://github.com/johnpapa/angular-styleguide/blob/master/a1/README.md#style-y125))\n * [service-name](docs/rules/service-name.md) - require and specify a prefix for all service names ([y125](https://github.com/johnpapa/angular-styleguide/blob/master/a1/README.md#style-y125))\n * [value-name](docs/rules/value-name.md) - require and specify a prefix for all value names ([y125](https://github.com/johnpapa/angular-styleguide/blob/master/a1/README.md#style-y125))\n\n### Conventions\n\nAngular often provide multi ways to to something. These rules help you to define convention for your project.\n\n * [di-order](docs/rules/di-order.md) - require DI parameters to be sorted alphabetically\n * [di](docs/rules/di.md) - require a consistent DI syntax\n * [dumb-inject](docs/rules/dumb-inject.md) - unittest `inject` functions should only consist of assignments from injected values to describe block variables\n * [function-type](docs/rules/function-type.md) - require and specify a consistent function style for components ('named' or 'anonymous') ([y024](https://github.com/johnpapa/angular-styleguide/blob/master/a1/README.md#style-y024))\n * [module-dependency-order](docs/rules/module-dependency-order.md) - require a consistent order of module dependencies\n * [no-service-method](docs/rules/no-service-method.md) - use `factory()` instead of `service()` ([y040](https://github.com/johnpapa/angular-styleguide/blob/master/a1/README.md#style-y040))\n * [one-dependency-per-line](docs/rules/one-dependency-per-line.md) - require all DI parameters to be located in their own line\n * [rest-service](docs/rules/rest-service.md) - disallow different rest service and specify one of '$http', '$resource', 'Restangular'\n * [watchers-execution](docs/rules/watchers-execution.md) - require and specify consistent use `$scope.digest()` or `$scope.apply()`\n\n### Angular Wrappers\n\nThese rules help you to enforce the usage of angular wrappers.\n\n * [angularelement](docs/rules/angularelement.md) - use `angular.element` instead of `$` or `jQuery`\n * [definedundefined](docs/rules/definedundefined.md) - use `angular.isDefined` and `angular.isUndefined` instead of other undefined checks\n * [document-service](docs/rules/document-service.md) - use `$document` instead of `document` ([y180](https://github.com/johnpapa/angular-styleguide/blob/master/a1/README.md#style-y180))\n * [foreach](docs/rules/foreach.md) - use `angular.forEach` instead of native `Array.prototype.forEach`\n * [interval-service](docs/rules/interval-service.md) - use `$interval` instead of `setInterval` ([y181](https://github.com/johnpapa/angular-styleguide/blob/master/a1/README.md#style-y181))\n * [json-functions](docs/rules/json-functions.md) - use `angular.fromJson` and 'angular.toJson' instead of `JSON.parse` and `JSON.stringify`\n * [log](docs/rules/log.md) - use the `$log` service instead of the `console` methods\n * [no-angular-mock](docs/rules/no-angular-mock.md) - require to use `angular.mock` methods directly\n * [no-jquery-angularelement](docs/rules/no-jquery-angularelement.md) - disallow to wrap `angular.element` objects with `jQuery` or `$`\n * [timeout-service](docs/rules/timeout-service.md) - use `$timeout` instead of `setTimeout` ([y181](https://github.com/johnpapa/angular-styleguide/blob/master/a1/README.md#style-y181))\n * [typecheck-array](docs/rules/typecheck-array.md) - use `angular.isArray` instead of `typeof` comparisons\n * [typecheck-date](docs/rules/typecheck-date.md) - use `angular.isDate` instead of `typeof` comparisons\n * [typecheck-function](docs/rules/typecheck-function.md) - use `angular.isFunction` instead of `typeof` comparisons\n * [typecheck-number](docs/rules/typecheck-number.md) - use `angular.isNumber` instead of `typeof` comparisons\n * [typecheck-object](docs/rules/typecheck-object.md) - use `angular.isObject` instead of `typeof` comparisons\n * [typecheck-string](docs/rules/typecheck-string.md) - use `angular.isString` instead of `typeof` comparisons\n * [window-service](docs/rules/window-service.md) - use `$window` instead of `window` ([y180](https://github.com/johnpapa/angular-styleguide/blob/master/a1/README.md#style-y180))\n\n### Misspelling\n\nThese rules help you avoiding misspellings.\n\n * [on-destroy](docs/rules/on-destroy.md) - Check for common misspelling $on('destroy', ...).\n\n\n----\n\n\n## Need your help\n\nIt is an opensource project. Any help will be very useful. You can :\n- Create issue\n- Send Pull Request\n- Write Documentation\n- Add new Features\n- Add new Rules\n- Improve the quality\n- Reply to issues\n\nAll development happens on the `development` branch. This means all pull requests should be made to the `development` branch.\n\nIf it is time to release, @Gillespie59 will bump the version in `package.json`, create a Git tag and merge the `development` branch into `master`. @Gillespie59 will then publish the new release to the npm registry.\n\n\n\n## How to create a new rule\n\nWe appreciate contributions and the following notes will help you before you open a Pull Request.\n\n### Check the issues\n\nHave a look at the existing issues. There may exist similar issues with useful information.\n\n### Read the documentation\n\nThere are some useful references for creating new rules. Specificly useful are:\n\n* [The Context Object](http://eslint.org/docs/developer-guide/working-with-rules#the-context-object) - This is the most basic understanding needed for adding or modifying a rule.\n* [Options Schemas](http://eslint.org/docs/developer-guide/working-with-rules#options-schemas) - This is the preferred way for validating configuration options.\n* [Scope](http://estools.github.io/escope/Scope.html) - This is the scope object returned by `context.getScope()`.\n\n### Files you have to create\n\n* `rules/<your-rule>.js`\n    * JavaScript file with the new rule\n    * The filename `<your-rule>` is exactly the usage name in eslint configs `angular/<your-rule>`\n    * Have a look at the `angularRule` wrapper and the `utils` (both in `rules/utils/`) - they probably make things easier for you\n    * Add a documentation comment to generate a markdown documentation with the `gulp docs` task\n* `test/<your-rule>.js`\n    * Write some tests and execute them with `gulp test`\n    * Have a look at the coverage reports `coverage/lcov-report/index.html`\n* `examples/<your-rule>.js`\n    * Add some examples for the documentation\n    * Run the `gulp docs` task to test the examples and update the markdown documentation\n* `docs/<your-rule>.md`\n    * Generated by the `gulp docs` task\n\n### Files you have to touch\n\n* `index.js`\n   * Add your rule `rulesConfiguration.addRule('<your-rule>', [0, {someConfig: 'someValue'}])`\n\n### Before you open your PR\n\n* Check that the `gulp` task is working\n* Commit generated changes in `README.md` and `docs/<your-rule>.md`\n* Open your PR to the `development` branch NOT `master`\n\n### Rules specific for Angular 1 or 2\n\nWe can use a property, defined in the ESLint configuration file, in order to know which version is used : Angular 1 or Angular 2. based on this property, you can create rules for each version.\n\n```javascript\nimport angular from \"eslint-plugin-angular\";\n\nexport default defineConfig([\n  {\n    files: [\"**/*.js\"],\n    plugins: {\n      angular\n    },\n    languageOptions: {\n      globals: {\n        angular: true\n      }\n    },\n    settings: {\n      angular: 2\n    },\n    rules: {\n      \"angular/controller-name\": [\"error\", \"/[A-Z].*Controller$/\"]\n    }\n  }\n]);\n```\n\nAnd in your rule, you can access to this property thanks to the `context` object :\n\n```javascript\n//If Angular 2 is used, we disabled the rule\nif(context.settings.angular === 2){\n    return {};\n}\n\nreturn {\n\n    'CallExpression': function(node) {\n    }\n};\n```\n\n\n\n## Default ESLint configuration file\n\nHere is the basic configuration for the rules defined in the ESLint plugin, in order to be compatible with the guideline provided by @johnpapa :\n\n```javascript\nrules: {\n  \"no-use-before-define\": \"off\"\n}\n```\n\n\n\n## Who uses it?\n\n- [argo](https://github.com/albertosantini/argo)\n- [generator-gillespie59-angular](https://github.com/Gillespie59/generator-gillespie59-angular/)\n- [generator-ng-poly](https://github.com/dustinspecker/generator-ng-poly)\n- [JHipster](http://jhipster.github.io/)\n- [generator-gulp-angular](https://github.com/Swiip/generator-gulp-angular)\n\n\n## Team\n\n[![Emmanuel Demey](https://avatars.githubusercontent.com/u/555768?s=117)](http://gillespie59.github.io/) | [![Tilman Potthof](https://avatars.githubusercontent.com/u/157532?s=117)](https://github.com/tilmanpotthof) | [![Remco Haszing](https://avatars.githubusercontent.com/u/779047?s=117)](https://github.com/remcohaszing) |\n:---:|:---:|:---:|\n[Emmanuel Demey](http://gillespie59.github.io/) | [Tilman Potthof](https://github.com/tilmanpotthof) | [Remco Haszing](https://github.com/remcohaszing) |\n","repository":{"type":"git","url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git"},"users":{"jits":true,"lptn":true,"n370":true,"novo":true,"knoja4":true,"sajithm":true,"smtudor":true,"dbuggerx":true,"dgautsch":true,"elussich":true,"kevbaker":true,"rochejul":true,"xueboren":true,"jerkovicl":true,"meetbryce":true,"hztgcl1986":true,"ben-barbier":true,"coolhanddev":true,"evanj0hnson":true,"remcohaszing":true,"usman.h.raja":true,"deyvisonsouto":true,"emmanueldemey":true,"recuencojones":true},"bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"license":"MIT","versions":{"0.0.2":{"name":"eslint-plugin-angular","version":"0.0.2","keywords":["eslint","eslintplugin","angular","angularjs"],"author":{"name":"Emmanuel DEMEY"},"license":"MIT","_id":"eslint-plugin-angular@0.0.2","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"e03a62e7239b5bbcaa84cd0d0f642631775d88e7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-0.0.2.tgz","integrity":"sha512-hQ7NSShm7a5sf9Rf3GQh8V9JgTUL9GtmBCyqnrZg3udyAJwrjmu0hjcQs7AlKf+kfGVPvoAtwaZMKuH+HalKMw==","signatures":[{"sig":"MEYCIQDOCNlaSFYZX9i9JMNFIUTLTTGXJRdMbaRSwQ2Tbz6JagIhAMqg10h4zLzsNVJJSvKa55ut2xZJWxy5sqY8ZmBqeHvD","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"e03a62e7239b5bbcaa84cd0d0f642631775d88e7","gitHead":"7bcf1db3790f05bcf590eac8403ed32f3e07e1c8","scripts":{},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"1.4.28","description":"ESLint rules for AngularJS projects","directories":{},"devDependencies":{"chai":"^1.10.0","gulp":"^3.8.10","mocha":"https://registry.npmjs.org/mocha/-/mocha-1.21.5.tgz","eslint":"^0.8.2","shelljs":"^0.3.0","istanbul":"^0.3.5","gulp-mocha":"^2.0.0","gulp-eslint":"^0.1.8","eslint-tester":"^0.3.0","gulp-istanbul":"^0.5.0","shelljs-nodecli":"^0.1.1"},"peerDependencies":{"eslint":">=0.8.0"}},"0.0.3":{"name":"eslint-plugin-angular","version":"0.0.3","keywords":["eslint","eslintplugin","angular","angularjs"],"author":{"name":"Emmanuel DEMEY"},"license":"MIT","_id":"eslint-plugin-angular@0.0.3","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"c362d3d05a28fe97f43618df18cf2f5b5f239fcb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-0.0.3.tgz","integrity":"sha512-ADAob9fskSA0d4mYidywoyiryiGCjBWi9Wi/cnyZr8OJfhT3+W+4VxkXSkTMBNHuygTuje+4Zl2YGX90U3SR3g==","signatures":[{"sig":"MEUCIQC/RNqPIBWiR7Q6Y86+vfWOoAwdAGsQxpvcK9rFoOZnXQIgQ2v+DDmwmtJf9MU3AJn4kPuWRq1QownNuu6szmWgIUU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"c362d3d05a28fe97f43618df18cf2f5b5f239fcb","gitHead":"d4c775a8975fbfd69bb8abe1892c571d8b18a897","scripts":{},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"1.4.28","description":"ESLint rules for AngularJS projects","directories":{},"devDependencies":{"chai":"^1.10.0","gulp":"^3.8.10","mocha":"https://registry.npmjs.org/mocha/-/mocha-1.21.5.tgz","eslint":"^0.8.2","shelljs":"^0.3.0","istanbul":"^0.3.5","gulp-mocha":"^2.0.0","gulp-eslint":"^0.1.8","eslint-tester":"^0.3.0","gulp-istanbul":"^0.5.0","shelljs-nodecli":"^0.1.1"},"peerDependencies":{"eslint":">=0.8.0"}},"0.0.4":{"name":"eslint-plugin-angular","version":"0.0.4","keywords":["eslint","eslintplugin","angular","angularjs"],"author":{"name":"Emmanuel DEMEY"},"license":"MIT","_id":"eslint-plugin-angular@0.0.4","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"8d25bc128e6ed211bd00fa009bcf2402df7a8dfc","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-0.0.4.tgz","integrity":"sha512-GIEkmk5euHZzKJ2+V5BXm8JuPp0TBaWyzO1rrLUzaPiwx2MS7Oyahrf6dAApkZRQIZidm9NALMGCwUbg5vIkgw==","signatures":[{"sig":"MEUCIQCBUnd8D7gT1vF+KbZnlFzHf+gSQjdkSBI0wJTI/V6FRAIgN1wgpXYZaZMAO/Jrf6U4uaRcU5tbqk557a+Fe8TgLj4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"8d25bc128e6ed211bd00fa009bcf2402df7a8dfc","gitHead":"3326fac9c0fa34be2fcc8d304cf3fc4da16bb477","scripts":{},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"2.5.1","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"0.12.0","devDependencies":{"chai":"^1.10.0","gulp":"^3.8.10","mocha":"2.1.0","eslint":"^0.13.0","shelljs":"^0.3.0","istanbul":"^0.3.5","coveralls":"^2.11.2","gulp-mocha":"^2.0.0","gulp-eslint":"^0.3.0","eslint-tester":"^0.5.0","gulp-istanbul":"0.6.0","shelljs-nodecli":"^0.1.1"},"peerDependencies":{"eslint":">=0.8.0"}},"0.0.5":{"name":"eslint-plugin-angular","version":"0.0.5","keywords":["eslint","eslintplugin","angular","angularjs"],"author":{"name":"Emmanuel DEMEY"},"license":"MIT","_id":"eslint-plugin-angular@0.0.5","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"26731531da504f93319b7637c69d785ac7ca365a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-0.0.5.tgz","integrity":"sha512-kW5VUEkrvbA/lx6ODioQPXQSyrZt98aDtxtk0KjoqTbUqZegyQwgP2mvJlGMF5nQWTTkvNmXq2NVDAKah0P+yQ==","signatures":[{"sig":"MEYCIQCMV2MvwSb8IBZ+JvsUXq58LK8HD2R0OU5450pEKap/dAIhANiiPMTgk8dA3JOWIlEHCQTH+/AxEHU6szq9VmhOdP5q","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"26731531da504f93319b7637c69d785ac7ca365a","gitHead":"eaa38a88cf5f2661ce64f102f5cffcd3ac5e2449","scripts":{},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"2.5.1","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"0.12.0","devDependencies":{"chai":"^1.10.0","gulp":"^3.8.10","mocha":"2.1.0","eslint":"^0.13.0","shelljs":"^0.3.0","istanbul":"^0.3.5","coveralls":"^2.11.2","gulp-mocha":"^2.0.0","gulp-eslint":"^0.3.0","eslint-tester":"^0.5.0","gulp-istanbul":"0.6.0","shelljs-nodecli":"^0.1.1"},"peerDependencies":{"eslint":">=0.8.0"}},"0.0.6":{"name":"eslint-plugin-angular","version":"0.0.6","keywords":["eslint","eslintplugin","angular","angularjs"],"author":{"name":"Emmanuel DEMEY"},"license":"MIT","_id":"eslint-plugin-angular@0.0.6","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"a46d38c2b7fd24dd64d6491cd6ab21f5df32c04b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-0.0.6.tgz","integrity":"sha512-xvfLksRBpom9pdkLgdUO7wpNGNH7Git/lOrK/gwhzuhpVqaps+hdZ2IeCgBXekUziLPS/b9WQaNRk4XATfuWcg==","signatures":[{"sig":"MEUCIQCPOGx+0ugcPdSfGZaweXVdmivkM+i7+MAr5h/Sqe9W3gIgMqZSRiBFHhZtsEn8RpTVIbxYq+SuOIE/iKzUTG9sqSo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"a46d38c2b7fd24dd64d6491cd6ab21f5df32c04b","gitHead":"e04fc1e12f84a2af795f5b46d70bc93c83f9af60","scripts":{},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"2.5.1","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"0.12.0","devDependencies":{"chai":"^1.10.0","gulp":"^3.8.10","mocha":"2.1.0","eslint":"^0.13.0","shelljs":"^0.3.0","istanbul":"^0.3.5","coveralls":"^2.11.2","gulp-mocha":"^2.0.0","gulp-eslint":"^0.3.0","eslint-tester":"^0.5.0","gulp-istanbul":"0.6.0","shelljs-nodecli":"^0.1.1"},"peerDependencies":{"eslint":">=0.8.0"}},"0.0.7":{"name":"eslint-plugin-angular","version":"0.0.7","keywords":["eslint","eslintplugin","angular","angularjs"],"author":{"name":"Emmanuel DEMEY"},"license":"MIT","_id":"eslint-plugin-angular@0.0.7","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"373453def82f3a742768cf0ca0df17d8dc95a959","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-0.0.7.tgz","integrity":"sha512-m6PWGkCvxNoMrtqsQw4/16lfZXJ8gNi5w4tI2UVrLBx9ikRgPLm3GkIeAkYamZ4YXbum1y2Yf98T0uFSr8ugJQ==","signatures":[{"sig":"MEYCIQDzog0lMZh6aF9l6qhP8hjWm2Jg4K+N5HuUkDJHr4I48AIhANwRBhe3Lim2Newxa+FpzFziFt6EAIwxY4J2vs2jrls1","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"373453def82f3a742768cf0ca0df17d8dc95a959","gitHead":"7fd0bd25be95c24074fbf1296d715d0ddce83003","scripts":{},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"2.5.1","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"0.12.1","devDependencies":{"chai":"^1.10.0","gulp":"^3.8.10","mocha":"2.1.0","eslint":"^0.13.0","shelljs":"^0.3.0","istanbul":"^0.3.5","coveralls":"^2.11.2","gulp-mocha":"^2.0.0","gulp-eslint":"^0.3.0","eslint-tester":"^0.5.0","gulp-istanbul":"0.6.0","shelljs-nodecli":"^0.1.1"},"peerDependencies":{"eslint":">=0.8.0"}},"0.0.8":{"name":"eslint-plugin-angular","version":"0.0.8","keywords":["eslint","eslintplugin","angular","angularjs"],"author":{"name":"Emmanuel DEMEY"},"license":"MIT","_id":"eslint-plugin-angular@0.0.8","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"b16baf23eff08c38a8c92f5857860116276da73f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-0.0.8.tgz","integrity":"sha512-uGEJuq7DkZsQFeIuDcljMKfo+Ss9shmqgEeHR8VQwNFe+e8VahNCTXjnSMM0hLiUS+nfZ+RdXE4W9Qjl09wAKA==","signatures":[{"sig":"MEYCIQDVX71JQywk3Sx5VK9lW2qZVjmD+uwtO27UPD8Jjp2SNQIhAK/RCslNJpYqf3AUwm748ICaHvElUS3Oi1KlW0Ge5ekw","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"b16baf23eff08c38a8c92f5857860116276da73f","gitHead":"b60144fd4f499d203f0344ac849378f7e99c4342","scripts":{},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"2.9.0","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"2.0.2","devDependencies":{"chai":"^1.10.0","gulp":"^3.8.10","mocha":"2.1.0","eslint":"^0.13.0","shelljs":"^0.3.0","istanbul":"^0.3.5","coveralls":"^2.11.2","gulp-mocha":"^2.0.0","gulp-eslint":"^0.3.0","eslint-tester":"^0.5.0","gulp-istanbul":"0.6.0","shelljs-nodecli":"^0.1.1"},"peerDependencies":{"eslint":">=0.8.0"}},"0.0.9":{"name":"eslint-plugin-angular","version":"0.0.9","keywords":["eslint","eslintplugin","angular","angularjs"],"author":{"name":"Emmanuel DEMEY"},"license":"MIT","_id":"eslint-plugin-angular@0.0.9","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"bb5d170e340bb2b9567144b43992193de50eba90","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-0.0.9.tgz","integrity":"sha512-EX0S7q2o9ssXmfsizlcYUrrJemD8yNk1NqNNOFiMi8t2AyqwXFUYOiNlibowsTTlEt/oG5s++JCIWq+phzhZ8g==","signatures":[{"sig":"MEUCIBnlNlUUky7FfltXdmeHaNdJD2Ow7yj5H5OI0ZPFj3BgAiEAluwkhkNzvyHehWbDDBSqE+wI+nyOkx5aNw2SoP8A44A=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"bb5d170e340bb2b9567144b43992193de50eba90","gitHead":"defbe48fb0cfbc8edebf372653d0fa9f24b09d88","scripts":{},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"2.10.1","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"0.12.4","devDependencies":{"chai":"^1.10.0","gulp":"^3.8.10","mocha":"2.1.0","eslint":"^0.13.0","shelljs":"^0.3.0","istanbul":"^0.3.5","coveralls":"^2.11.2","gulp-mocha":"^2.0.0","gulp-eslint":"^0.3.0","eslint-tester":"^0.5.0","gulp-istanbul":"0.6.0","shelljs-nodecli":"^0.1.1"},"peerDependencies":{"eslint":">=0.8.0"}},"0.0.10":{"name":"eslint-plugin-angular","version":"0.0.10","keywords":["eslint","eslintplugin","angular","angularjs"],"author":{"name":"Emmanuel DEMEY"},"license":"MIT","_id":"eslint-plugin-angular@0.0.10","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"19064f04a69c086c3a5256e8a85e56fb61854a78","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-0.0.10.tgz","integrity":"sha512-UXBab3TeuapnUDSv5/U2duID0QgXtQDYuVTjvM7zwgi/aTZ70J0gId4rVr39rWarpdI2iwIAVWFmoldwHTb1Zg==","signatures":[{"sig":"MEUCIDG405JkLYB+6U82ECHbIhX3w+K5+rOaJCrK+nCWvwaiAiEAobvcC7QSym/WpiXVQU6yzghOyyKadv72YEZ1NMPBRvg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"19064f04a69c086c3a5256e8a85e56fb61854a78","gitHead":"1b1a603341c3dfe2fc6db372abc53541810658a4","scripts":{},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"2.10.1","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"0.12.4","devDependencies":{"chai":"^1.10.0","gulp":"^3.8.10","mocha":"2.1.0","eslint":"^0.13.0","shelljs":"^0.3.0","istanbul":"^0.3.5","coveralls":"^2.11.2","gulp-mocha":"^2.0.0","gulp-eslint":"^0.3.0","eslint-tester":"^0.5.0","gulp-istanbul":"0.6.0","shelljs-nodecli":"^0.1.1"},"peerDependencies":{"eslint":">=0.8.0"}},"0.0.11":{"name":"eslint-plugin-angular","version":"0.0.11","keywords":["eslint","eslintplugin","angular","angularjs"],"author":{"name":"Emmanuel DEMEY"},"license":"MIT","_id":"eslint-plugin-angular@0.0.11","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"d19d6cc909a8a206417dcffed255a49df470fb46","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-0.0.11.tgz","integrity":"sha512-d3oExRDTE/UXRK3eRQtQEmBFI4bExGSBPYZGKUv1UK9p5ursqQYA1AarOSmna4s8I8+RxJxfNvEqviDL479Ppw==","signatures":[{"sig":"MEUCIDghKRY2NZD1doTHYWqquiBqW/HXn6hjCHFfWMt/IlA/AiEAtz6dq7WAhbYrTX+aq2xaaTZXgS57kUt4g1zv7Dv6+BY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"d19d6cc909a8a206417dcffed255a49df470fb46","gitHead":"d9ba30df3befca38783dc27ec39d7dcc16551186","scripts":{},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"2.10.1","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"0.12.4","devDependencies":{"chai":"^1.10.0","gulp":"^3.8.10","mocha":"2.1.0","eslint":"^0.13.0","shelljs":"^0.3.0","istanbul":"^0.3.5","coveralls":"^2.11.2","gulp-mocha":"^2.0.0","gulp-eslint":"^0.3.0","eslint-tester":"^0.5.0","gulp-istanbul":"0.6.0","shelljs-nodecli":"^0.1.1"},"peerDependencies":{"eslint":">=0.8.0"}},"0.0.12":{"name":"eslint-plugin-angular","version":"0.0.12","keywords":["eslint","eslintplugin","angular","angularjs"],"author":{"name":"Emmanuel DEMEY"},"license":"MIT","_id":"eslint-plugin-angular@0.0.12","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"f62ecc0b78506b68ecfa33a5dd603185f3fedc12","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-0.0.12.tgz","integrity":"sha512-QK2IXgFIJd7L9WPpHytWHsQWJ8ll+UlrhAznk4pp/91L+jfJomqNuxvK4spDotMeCVTsSY64YLJXe+Xew5vkHQ==","signatures":[{"sig":"MEUCIH9N5a6XcGB8F44lWbQ0IBUa+xcS1AKncdXkbWXxZeZTAiEApI3o2rGfmjtdg0UrErDDb/nGPXGvcW2y4g9Ou1pNtrg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"f62ecc0b78506b68ecfa33a5dd603185f3fedc12","gitHead":"7cc1102decbc93d0bea3bc0fce944d099993f85e","scripts":{},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"2.10.1","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"0.12.4","devDependencies":{"chai":"^1.10.0","gulp":"^3.8.10","mocha":"2.1.0","eslint":"^0.13.0","shelljs":"^0.3.0","istanbul":"^0.3.5","coveralls":"^2.11.2","gulp-mocha":"^2.0.0","gulp-eslint":"^0.3.0","eslint-tester":"^0.5.0","gulp-istanbul":"0.6.0","shelljs-nodecli":"^0.1.1"},"peerDependencies":{"eslint":">=0.8.0"}},"0.0.13":{"name":"eslint-plugin-angular","version":"0.0.13","keywords":["eslint","eslintplugin","angular","angularjs"],"author":{"name":"Emmanuel DEMEY"},"license":"MIT","_id":"eslint-plugin-angular@0.0.13","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"81db75f326b7cda51bab9c5ca6aec3d08babf504","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-0.0.13.tgz","integrity":"sha512-34UYjALkaXC8TRhYpuiqiEz1W2N2O7gKH8caPrwZvs4ZfS98VaXotsHx/eY2OY2jSjt/4LM13qQpQdJjb4kIcw==","signatures":[{"sig":"MEUCIQC3Wiy621NRfwFeY+d1VckY0kKLPPD8vUSFkp5I751DRgIgbS2G1lE/Ld4YnfJMXD/3L1UQsaAArmQ8Jw2OB6oHjlo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"81db75f326b7cda51bab9c5ca6aec3d08babf504","gitHead":"e18107e4414da5dcc6a8ba8c10137fafcc8fef51","scripts":{},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"2.10.1","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"0.12.4","devDependencies":{"chai":"^1.10.0","gulp":"^3.8.10","mocha":"2.1.0","eslint":"^0.13.0","shelljs":"^0.3.0","istanbul":"^0.3.5","coveralls":"^2.11.2","gulp-mocha":"^2.0.0","gulp-eslint":"^0.3.0","eslint-tester":"^0.5.0","gulp-istanbul":"0.6.0","shelljs-nodecli":"^0.1.1"},"peerDependencies":{"eslint":">=0.8.0"}},"0.0.14":{"name":"eslint-plugin-angular","version":"0.0.14","keywords":["eslint","eslintplugin","angular","angularjs"],"author":{"name":"Emmanuel DEMEY"},"license":"MIT","_id":"eslint-plugin-angular@0.0.14","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"71bfa46ac765c09b819f7a5ffca90887169d71cb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-0.0.14.tgz","integrity":"sha512-bSWFR8TdPbI3aAPVchUjc6DC6Ci7EaEOhjmZqNRI64fp+u8wKnhUFwZ84hU98ZYjSBx6p/U2im/VEy6f+LbRvA==","signatures":[{"sig":"MEYCIQCDfVWpi6R9j/Nu62VGqJbQWgVKwDzu9IQ2OAWb0YScqAIhANHtGJ1AJxL9lsf2r3ZKoAYXLTvRYTqzSWuyObKmcJ5u","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"71bfa46ac765c09b819f7a5ffca90887169d71cb","gitHead":"d6c4262e7471eaaa9c7cfaaf588b5fd530f18eaf","scripts":{},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"2.10.1","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"0.12.4","devDependencies":{"chai":"^1.10.0","gulp":"^3.8.10","mocha":"2.1.0","eslint":"^0.13.0","shelljs":"^0.3.0","istanbul":"^0.3.5","coveralls":"^2.11.2","gulp-mocha":"^2.0.0","gulp-eslint":"^0.3.0","eslint-tester":"^0.5.0","gulp-istanbul":"0.6.0","shelljs-nodecli":"^0.1.1"},"peerDependencies":{"eslint":">=0.8.0"}},"0.0.15":{"name":"eslint-plugin-angular","version":"0.0.15","keywords":["eslint","eslintplugin","angular","angularjs"],"author":{"name":"Emmanuel DEMEY"},"license":"MIT","_id":"eslint-plugin-angular@0.0.15","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"1c6359a0995b5926a95ba4f5a835e4c6899abbf1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-0.0.15.tgz","integrity":"sha512-EO/VajZfpnU4NDuGSwGI7kct55su0W8hTV1xvcY/0YeejisThWDbtzuX1ZA17D38cij6LvJRVFAuaqUixXxfSg==","signatures":[{"sig":"MEYCIQCVKBJ/04ikxb3oiGvtBRTVuiD079VjKUdBGXZXBrpYawIhAI0p/8Ivi2QXC5txll+dmthO2GR2fAEDu28rG1EsQW7B","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"1c6359a0995b5926a95ba4f5a835e4c6899abbf1","gitHead":"2e36903fc2718b81d8e189c973728c02ebaf6da0","scripts":{},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"2.10.1","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"0.12.4","devDependencies":{"chai":"^1.10.0","gulp":"^3.8.10","mocha":"2.1.0","eslint":"^0.13.0","shelljs":"^0.3.0","istanbul":"^0.3.5","coveralls":"^2.11.2","gulp-mocha":"^2.0.0","gulp-eslint":"^0.3.0","eslint-tester":"^0.5.0","gulp-istanbul":"0.6.0","shelljs-nodecli":"^0.1.1"},"peerDependencies":{"eslint":">=0.8.0"}},"0.1.0":{"name":"eslint-plugin-angular","version":"0.1.0","keywords":["eslint","eslintplugin","angular","angularjs"],"author":{"name":"Emmanuel DEMEY"},"license":"MIT","_id":"eslint-plugin-angular@0.1.0","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"63a97051f3cf574878d7174bda0bbd886b5a56d5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-0.1.0.tgz","integrity":"sha512-PayvSTI++xShmp2O9OBnQbxh0PRXqsORN4XBD1ixF+BfMNju5rmOS9vS0TWrWygAn8BCpd6yuyf6dx3yqMCR3A==","signatures":[{"sig":"MEQCIHM3XzrFoLvGM54azs1No/efxmjdfgybWsPMOGFXzjgGAiAaadySEE8Iv/9kspP5Lwk1L5Gw7Ek1yk3psKWSkMOILA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"63a97051f3cf574878d7174bda0bbd886b5a56d5","gitHead":"8ee78027f67aa59c110b3a1756859c77263b0690","scripts":{},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"2.10.1","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"0.12.4","devDependencies":{"chai":"^1.10.0","gulp":"^3.8.10","mocha":"2.1.0","eslint":"^0.13.0","shelljs":"^0.3.0","istanbul":"^0.3.5","coveralls":"^2.11.2","gulp-mocha":"^2.0.0","gulp-eslint":"^0.3.0","eslint-tester":"^0.5.0","gulp-istanbul":"0.6.0","shelljs-nodecli":"^0.1.1"},"peerDependencies":{"eslint":">=0.8.0"}},"0.1.1":{"name":"eslint-plugin-angular","version":"0.1.1","keywords":["eslint","eslintplugin","angular","angularjs"],"author":{"name":"Emmanuel DEMEY"},"license":"MIT","_id":"eslint-plugin-angular@0.1.1","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"3e8149c5f08242f73b00d488bb8164d1622eb4fa","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-0.1.1.tgz","integrity":"sha512-02gOWq3zscYwYa8ddfnPZ92TAsX5RYPEcF40N1UzOmbdRYUXSVqMU1OBCpGQzM8kksbYPDQpThukuy3InTZFNA==","signatures":[{"sig":"MEYCIQDao4egL+C5Y55WdpcskXgK6ZMumSJreMJjYgqOf/vBFQIhANG+464vS4uhxvDNpNZ+9tjSSfN5zNnz11YP/j93m0so","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"3e8149c5f08242f73b00d488bb8164d1622eb4fa","gitHead":"4bea47a3db6b39e59c16b39bbde40b632b6da89a","scripts":{},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"2.10.1","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"0.12.4","devDependencies":{"chai":"^1.10.0","gulp":"^3.8.10","mocha":"2.1.0","eslint":"^0.13.0","shelljs":"^0.3.0","istanbul":"^0.3.5","coveralls":"^2.11.2","gulp-mocha":"^2.0.0","gulp-eslint":"^0.3.0","eslint-tester":"^0.5.0","gulp-istanbul":"0.6.0","shelljs-nodecli":"^0.1.1"},"peerDependencies":{"eslint":">=0.8.0"}},"0.1.2":{"name":"eslint-plugin-angular","version":"0.1.2","keywords":["eslint","eslintplugin","angular","angularjs"],"author":{"name":"Emmanuel DEMEY"},"license":"MIT","_id":"eslint-plugin-angular@0.1.2","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"5b9774ffbd4cdc401efbde78bc72f1a00128180e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-0.1.2.tgz","integrity":"sha512-OzephDKnQtUF3pb08BCiZdEFeZv+daw/Hzxfv8MY+3rzK5G2L2rK4lH8pchyMsyTo/h24bWYQYbR4OVp+lVMSg==","signatures":[{"sig":"MEYCIQDh0k4m785vYnsg+znI7mLu6AgyNLFOvZRKBytKvO9arwIhAPdYOoJ4ZFhVXgoPoDpzdcf4d4IhIqoyEVUSORwzuHVl","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"5b9774ffbd4cdc401efbde78bc72f1a00128180e","gitHead":"834019e8f516af35b652b049df5ff3c395311f54","scripts":{},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"2.10.1","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"0.12.4","devDependencies":{"chai":"^1.10.0","gulp":"^3.8.10","mocha":"2.1.0","eslint":"^0.13.0","shelljs":"^0.3.0","istanbul":"^0.3.5","coveralls":"^2.11.2","gulp-mocha":"^2.0.0","gulp-eslint":"^0.3.0","eslint-tester":"^0.5.0","gulp-istanbul":"0.6.0","shelljs-nodecli":"^0.1.1"},"peerDependencies":{"eslint":">=0.8.0"}},"0.2.0":{"name":"eslint-plugin-angular","version":"0.2.0","keywords":["eslint","eslintplugin","angular","angularjs"],"author":{"name":"Emmanuel DEMEY"},"license":"MIT","_id":"eslint-plugin-angular@0.2.0","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"0f257a05cc018bdc1605c1df5cb3ec9cefcb768f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-0.2.0.tgz","integrity":"sha512-CdaXaHJsnJWCJ5dC+aqgdP9JIojFyABn/VdrpUhBhyPxZ1ofwFeh7QveR2IvgfNs96h/j4CH/7QQre1yDUDqaw==","signatures":[{"sig":"MEYCIQCV70ym1cYPClSZH76tZ3uz+0oyiuVVAWEP+bDq3JPsIgIhAMlOcWR5HjZbmacRVZbmefi5zwT1lVwyCNIzS55qQ2vG","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"0f257a05cc018bdc1605c1df5cb3ec9cefcb768f","gitHead":"d751e5538d39a60677e5ed2a4c540487789064bb","scripts":{},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"2.10.1","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"0.12.4","devDependencies":{"chai":"^1.10.0","gulp":"^3.8.10","mocha":"2.1.0","eslint":"^0.13.0","shelljs":"^0.3.0","istanbul":"^0.3.5","coveralls":"^2.11.2","gulp-mocha":"^2.0.0","gulp-eslint":"^0.3.0","eslint-tester":"^0.5.0","gulp-istanbul":"0.6.0","shelljs-nodecli":"^0.1.1"},"peerDependencies":{"eslint":">=0.8.0"}},"0.2.1":{"name":"eslint-plugin-angular","version":"0.2.1","keywords":["eslint","eslintplugin","angular","angularjs"],"author":{"name":"Emmanuel DEMEY"},"license":"MIT","_id":"eslint-plugin-angular@0.2.1","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"0c602312ee6ddcb5ad66f7dd6d154cc2b5913232","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-0.2.1.tgz","integrity":"sha512-ho2GvpwOyPzkCOqD3Oq3t8tbbgB/6rQ0Ll2dlLK+b1IhfdXQFvZVQPBbreIAsPB4aWKjPGv/KhBUFMjebHQqNg==","signatures":[{"sig":"MEUCIQDQ/RGEipd7Exfw/7TjAgFkajmBOwO+YlnskvZ/b3vYpgIgO29y/7pvhnlEkfpCE3AUwelSq8voyx6SBKhU3UDM1/M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"0c602312ee6ddcb5ad66f7dd6d154cc2b5913232","gitHead":"1e418a55bf15621b895a5824e9da226b8f468f40","scripts":{},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"2.10.1","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"0.12.4","devDependencies":{"chai":"^1.10.0","gulp":"^3.8.10","mocha":"2.1.0","eslint":"^0.13.0","shelljs":"^0.3.0","istanbul":"^0.3.5","coveralls":"^2.11.2","gulp-mocha":"^2.0.0","gulp-eslint":"^0.3.0","eslint-tester":"^0.5.0","gulp-istanbul":"0.6.0","shelljs-nodecli":"^0.1.1"},"peerDependencies":{"eslint":">=0.8.0"}},"0.2.2":{"name":"eslint-plugin-angular","version":"0.2.2","keywords":["eslint","eslintplugin","angular","angularjs"],"author":{"name":"Emmanuel DEMEY"},"license":"MIT","_id":"eslint-plugin-angular@0.2.2","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"d332f2edf07a9427fef306c572329b0a8659786f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-0.2.2.tgz","integrity":"sha512-4uOePY/2yF7pgNlW1ZmrKHGBNx65A2nIMBSJmbZ0S7vrWsU2cnpVMwr6Gv3ZoWQbwxFopbBHFFuBqLhbwbmFJg==","signatures":[{"sig":"MEUCIAuPp1lNqJNg6p9BlmylKNn+crEhRSKJPdQ0XvStRQgoAiEAzqq8fUDMKogYZa3d0mVjkmoj/yEviGG+QelCu8cs3a8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"d332f2edf07a9427fef306c572329b0a8659786f","gitHead":"8a6a8f58048a88fee525981da5ce4f92470a1463","scripts":{},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"2.10.1","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"0.12.4","devDependencies":{"chai":"^1.10.0","gulp":"^3.8.10","mocha":"2.1.0","eslint":"^0.13.0","shelljs":"^0.3.0","istanbul":"^0.3.5","coveralls":"^2.11.2","gulp-mocha":"^2.0.0","gulp-eslint":"^0.3.0","eslint-tester":"^0.5.0","gulp-istanbul":"0.6.0","shelljs-nodecli":"^0.1.1"},"peerDependencies":{"eslint":">=0.8.0"}},"0.2.3":{"name":"eslint-plugin-angular","version":"0.2.3","keywords":["eslint","eslintplugin","angular","angularjs"],"author":{"name":"Emmanuel DEMEY"},"license":"MIT","_id":"eslint-plugin-angular@0.2.3","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"3096a16030ce3910b1fc46a4d63f9759a484bd25","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-0.2.3.tgz","integrity":"sha512-E3w8O4iLWU4DANao2oWXaCpvqSJ7hhQ9cLTm7j0RWiUk53KVeopsPfMMmRlV3OgMOA4pORhEuMb7AwSdDO2fWw==","signatures":[{"sig":"MEUCIQDD5KEghIaPhpF3syy1ZAFzGziVcmIPWagSbztuPky3VQIgONNzmh7CtD1w/3Ep1tprA/s4kOtI8JITl1roJDwcLfs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"3096a16030ce3910b1fc46a4d63f9759a484bd25","gitHead":"b8a7c1ee89eee21522c4888e42382bb87f4dc28a","scripts":{},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"2.10.1","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"0.12.4","devDependencies":{"chai":"^1.10.0","gulp":"^3.8.10","mocha":"2.1.0","eslint":"^0.13.0","shelljs":"^0.3.0","istanbul":"^0.3.5","coveralls":"^2.11.2","gulp-mocha":"^2.0.0","gulp-eslint":"^0.3.0","eslint-tester":"^0.5.0","gulp-istanbul":"0.6.0","shelljs-nodecli":"^0.1.1"},"peerDependencies":{"eslint":">=0.8.0"}},"0.3.0":{"name":"eslint-plugin-angular","version":"0.3.0","keywords":["eslint","eslintplugin","angular","angularjs"],"author":{"name":"Emmanuel DEMEY"},"license":"MIT","_id":"eslint-plugin-angular@0.3.0","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"bd61a6a485f792e681db4f869fa7f332faefa7d9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-0.3.0.tgz","integrity":"sha512-ps93dFAY+Ux/wfVV0PkjgJTlxR6oX1ptmOGeCkBRtbrNim6Xdyig/0XBdDY4jBk4A+Z4fkRBTPRZqmJuzQkqmQ==","signatures":[{"sig":"MEUCIQCVl5tFRDm6XmK4z9Yg+cItd1+oUmaRjug4RLWCMRfEOQIgGU5AhU2CJnaCpDRtgflvEH2XfsTXsnzjPVUA/LXRfmM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"bd61a6a485f792e681db4f869fa7f332faefa7d9","gitHead":"08af71741b4719f6b6b8b37b42f50ab0a464a5bb","scripts":{},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"2.10.1","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"0.12.4","devDependencies":{"chai":"3.2.0","gulp":"3.9.0","mocha":"2.2.5","eslint":"1.0.0","shelljs":"0.5.1","istanbul":"0.3.17","coveralls":"2.11.3","gulp-mocha":"2.1.3","gulp-eslint":"1.0.0","eslint-tester":"0.8.2","gulp-istanbul":"0.10.0","shelljs-nodecli":"0.1.1"},"peerDependencies":{"eslint":">=0.8.0"}},"0.3.1":{"name":"eslint-plugin-angular","version":"0.3.1","keywords":["eslint","eslintplugin","angular","angularjs"],"author":{"name":"Emmanuel DEMEY"},"license":"MIT","_id":"eslint-plugin-angular@0.3.1","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"6d4b9fc8806104256af4ff083d0d04ae2da76c56","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-0.3.1.tgz","integrity":"sha512-km8KUVKgQkpJxzLd7RzrVA/0SSv0cotgWtzgPOvRKKRcJ2kKfwzlDEfzamgZCAeQluSuW+nFmcBkdU/n596bZQ==","signatures":[{"sig":"MEUCIQC0roa4fLNTKR5+NMerfA7xRwTAfmAEr+5R6wjtM1RNeQIgQWezWgaDAqXgv2cWQxuxBjRVIMUqvjd/pOkIFCCqE4k=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"6d4b9fc8806104256af4ff083d0d04ae2da76c56","gitHead":"189e570afe130f3935816f85310d9656ed798647","scripts":{},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"2.10.1","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"0.12.4","devDependencies":{"chai":"^1.10.0","gulp":"^3.8.10","mocha":"2.1.0","eslint":"^0.13.0","shelljs":"^0.3.0","istanbul":"^0.3.5","coveralls":"^2.11.2","gulp-mocha":"^2.0.0","gulp-eslint":"^0.3.0","eslint-tester":"^0.5.0","gulp-istanbul":"0.6.0","shelljs-nodecli":"^0.1.1"},"peerDependencies":{"eslint":">=0.8.0"}},"0.4.0":{"name":"eslint-plugin-angular","version":"0.4.0","keywords":["eslint","eslintplugin","angular","angularjs"],"author":{"name":"Emmanuel DEMEY"},"license":"MIT","_id":"eslint-plugin-angular@0.4.0","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"90b7d37b7180d8d308bffd739f3b34f54f6b20d7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-0.4.0.tgz","integrity":"sha512-wAc6smeBPzdQnTl48yU6CEQzjqqOUpFpTAWfiEskhLKfBxeDL0kwW2neEkQxSI3g1RMvhZHxgM0jg7JgiiyNdw==","signatures":[{"sig":"MEYCIQDd8Yg4Amgt4KIglf/tAMox3KDTpJINBAtfQN0lB9aDxAIhALdyBo254sHV0JUcjypDZTd7/tvIz+AVu9xcXZ6Oj1Cs","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"90b7d37b7180d8d308bffd739f3b34f54f6b20d7","gitHead":"7f0993fc0b75500be75b09104d25045f0729a422","scripts":{},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"2.10.1","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"0.12.4","devDependencies":{"chai":"^1.10.0","gulp":"^3.8.10","mocha":"2.1.0","eslint":"^0.13.0","shelljs":"^0.3.0","istanbul":"^0.3.5","coveralls":"^2.11.2","gulp-mocha":"^2.0.0","gulp-eslint":"^0.3.0","eslint-tester":"^0.5.0","gulp-istanbul":"0.6.0","shelljs-nodecli":"^0.1.1"},"peerDependencies":{"eslint":">=0.8.0"}},"0.5.0":{"name":"eslint-plugin-angular","version":"0.5.0","keywords":["eslint","eslintplugin","angular","angularjs"],"author":{"name":"Emmanuel DEMEY"},"license":"MIT","_id":"eslint-plugin-angular@0.5.0","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"f5edd31f9ba769655fa3f9db80ef1fb9e0c22d66","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-0.5.0.tgz","integrity":"sha512-SWhrmIoZdBSujMOcXf/aFzKlrMqIktXTQxr7ItSbWf/LMBBWzG6ZLK0MVP6eevn7x2fLtsqAeNSPOaYRIDuP8Q==","signatures":[{"sig":"MEUCIG7VSDJOVWksguDK9sAHziBYHjQ+yCMDlFlb6LjTLLloAiEA4CKCaMkjhj2ealsYbwNfJn0pnNj2ypdhq6vjYoiVEG0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"f5edd31f9ba769655fa3f9db80ef1fb9e0c22d66","gitHead":"7497653a39301f342f7a6ed69bcdf08da6c5eb14","scripts":{},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"2.10.1","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"0.12.4","devDependencies":{"chai":"^3.2.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.1.0","shelljs":"^0.5.3","istanbul":"^0.3.17","coveralls":"^2.11.4","gulp-mocha":"^2.1.3","gulp-eslint":"^1.0.0","gulp-istanbul":"^0.10.0","shelljs-nodecli":"^0.1.1"}},"0.6.0":{"name":"eslint-plugin-angular","version":"0.6.0","keywords":["eslint","eslintplugin","angular","angularjs"],"author":{"name":"Emmanuel DEMEY"},"license":"MIT","_id":"eslint-plugin-angular@0.6.0","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"58d08dbb1022370fab814ca4dccba64d3eb7c469","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-0.6.0.tgz","integrity":"sha512-DEgS8QXkWjOznKQIg03cq0eJ9Xe4Us8YBVjFkL9qqWI+VM7C/yvJOP0xAQ2jW4V0dv9Lddwz8mkjtaEFkw9qWg==","signatures":[{"sig":"MEQCIFp+F/yaoi8IV+RercGK5GsfoLAPBuDSFnSRU+JqSZlbAiAtnnz7aYnvQQtjfcWunwre3+o64hjNx8+SI+46zqE38g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"58d08dbb1022370fab814ca4dccba64d3eb7c469","gitHead":"5e6ee82a8cd32e81afe1c98c9c8ec3010f944eeb","scripts":{},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"2.10.1","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"0.12.4","devDependencies":{"chai":"^3.2.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.1.0","shelljs":"^0.5.3","istanbul":"^0.3.17","coveralls":"^2.11.4","gulp-mocha":"^2.1.3","gulp-eslint":"^1.0.0","gulp-istanbul":"^0.10.0","shelljs-nodecli":"^0.1.1"}},"0.6.1":{"name":"eslint-plugin-angular","version":"0.6.1","keywords":["eslint","eslintplugin","angular","angularjs"],"author":{"name":"Emmanuel DEMEY"},"license":"MIT","_id":"eslint-plugin-angular@0.6.1","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"1f82a7aec3b56ecd533e32aedd6c16ebc82dead8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-0.6.1.tgz","integrity":"sha512-YXmyNaKWJuQhz6de0nRup15xIJ9MqdQKGXUxJTsx1WdO0ihc6hgfNlTRGd2yo64wspbZmJ0ToZ5p4cteL7taoQ==","signatures":[{"sig":"MEQCIDHEeoCjpho0PfWenHflaS/gPwjrCg4lMGguu57lsegJAiBZ7oK/SVjZHDmgkSuROe/k8nQiCEm9UqAgszlbdXBe3g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"1f82a7aec3b56ecd533e32aedd6c16ebc82dead8","gitHead":"1baed69e479a9b020600fde342c0aaabce3198dc","scripts":{},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"2.10.1","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"0.12.4","devDependencies":{"chai":"^3.2.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.1.0","shelljs":"^0.5.3","istanbul":"^0.3.17","coveralls":"^2.11.4","gulp-mocha":"^2.1.3","gulp-eslint":"^1.0.0","gulp-istanbul":"^0.10.0","shelljs-nodecli":"^0.1.1"}},"0.7.0":{"name":"eslint-plugin-angular","version":"0.7.0","keywords":["eslint","eslintplugin","angular","angularjs"],"author":{"name":"Emmanuel DEMEY"},"license":"MIT","_id":"eslint-plugin-angular@0.7.0","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"fd1cf14188203cc3a2a1fcaf5da7fc868a90722e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-0.7.0.tgz","integrity":"sha512-svAICWTLK80mbQDHKZWwcgy4werby3xCeZosJpNtERim+mVXKxWjquse6rniQNTXsDQw+wiNBGIVWErkT9/Iqw==","signatures":[{"sig":"MEUCIQD0T1xlr6/mu0GjzHbMTfqBIq8Q/+T1YiSXw3Bfm0SczQIgBcR4v5DhC7uE92Kr+v5QNtlEYL267HxgLmcxnh9Riew=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"fd1cf14188203cc3a2a1fcaf5da7fc868a90722e","gitHead":"17df044d84f764450a1eb28145c9acf56cedf8dc","scripts":{},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"2.10.1","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"0.12.4","devDependencies":{"chai":"^3.2.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.1.0","shelljs":"^0.5.3","istanbul":"^0.3.17","coveralls":"^2.11.4","gulp-mocha":"^2.1.3","gulp-eslint":"^1.0.0","gulp-istanbul":"^0.10.0","shelljs-nodecli":"^0.1.1"}},"0.8.0":{"name":"eslint-plugin-angular","version":"0.8.0","keywords":["eslint","eslintplugin","angular","angularjs"],"author":{"name":"Emmanuel DEMEY"},"license":"MIT","_id":"eslint-plugin-angular@0.8.0","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"3f6b0cbab16da62b258c72e04f7f44ec570b90ce","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-0.8.0.tgz","integrity":"sha512-TYgDc85eczIRVezXzX5jXGvgZIm1VTu7CiJu4VL3h01B5/fo4g61JL5ktFSRLsi02THcmKJJ/1tak7p2QRdppQ==","signatures":[{"sig":"MEQCIBfN88GPOEh1/bx7OAepQhz+3LQCxWZ24S2jsNWexQ0YAiAxXKxprruhon/9xVMjdMTlasQDR+Gw7WCnTu3caddUmQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"3f6b0cbab16da62b258c72e04f7f44ec570b90ce","gitHead":"80ed1a05c956983c19b0fdedf46a011212e577e7","scripts":{},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"2.10.1","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"0.12.4","devDependencies":{"chai":"^3.2.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.1.0","shelljs":"^0.5.3","istanbul":"^0.3.17","coveralls":"^2.11.4","gulp-mocha":"^2.1.3","gulp-eslint":"^1.0.0","gulp-istanbul":"^0.10.0","shelljs-nodecli":"^0.1.1"}},"0.8.1":{"name":"eslint-plugin-angular","version":"0.8.1","keywords":["eslint","eslintplugin","angular","angularjs"],"author":{"name":"Emmanuel DEMEY"},"license":"MIT","_id":"eslint-plugin-angular@0.8.1","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"0cfdec9940b671b35b82dd10a0b8b03f0833b8e6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-0.8.1.tgz","integrity":"sha512-6OHqmlAkAu2k52lgXGta2TLYCaG4l47aQEm95Otjjg0u9Xt3rlTjaFv1dqsXMQJhsVPpkZkhFvh7vm7g9ItY5A==","signatures":[{"sig":"MEUCIEW7cg8qn/yLuNHmnqYboiWsnVi+kKqFv5KLjH+Y9nA5AiEAwVshU6EQffYt7vvuM48hyWlVniqMe/ysl2RQgkM/TpY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"0cfdec9940b671b35b82dd10a0b8b03f0833b8e6","gitHead":"fc3cc9c94679207ce1e7742c25dc1cb96d3a64b4","scripts":{},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"2.10.1","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"0.12.4","devDependencies":{"chai":"^3.2.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.1.0","shelljs":"^0.5.3","istanbul":"^0.3.17","coveralls":"^2.11.4","gulp-mocha":"^2.1.3","gulp-eslint":"^1.0.0","gulp-istanbul":"^0.10.0","shelljs-nodecli":"^0.1.1"}},"0.9.0":{"name":"eslint-plugin-angular","version":"0.9.0","keywords":["eslint","eslintplugin","angular","angularjs"],"author":{"name":"Emmanuel DEMEY"},"license":"MIT","_id":"eslint-plugin-angular@0.9.0","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"02b471bdcccfbf821917f3f051ff3b1816259739","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-0.9.0.tgz","integrity":"sha512-HeCKrYY5p4E0cQbpFtbOeoV0KHzeP2A6wr//lTGTDtR89Smn791GzBCmNjAyFzlphY9toJrTs8NvTTaBGeIagw==","signatures":[{"sig":"MEQCIEsjYYvY8sGo7frr3tPFd5k/+K4Pji8Pvbnijz84W6TjAiBs2cZmbuOpB5Xnl2GufkM5vmFSwNfNzU656Ket7idI9g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"02b471bdcccfbf821917f3f051ff3b1816259739","gitHead":"d574fe8477e86fff0bcc638a265f82cbe6adceca","scripts":{},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"2.10.1","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"0.12.4","devDependencies":{"chai":"^3.2.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.1.0","shelljs":"^0.5.3","istanbul":"^0.3.17","coveralls":"^2.11.4","gulp-mocha":"^2.1.3","gulp-eslint":"^1.0.0","gulp-istanbul":"^0.10.0","shelljs-nodecli":"^0.1.1"}},"0.10.0":{"name":"eslint-plugin-angular","version":"0.10.0","keywords":["eslint","eslintplugin","angular","angularjs"],"author":{"name":"Emmanuel DEMEY"},"license":"MIT","_id":"eslint-plugin-angular@0.10.0","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"ed574260f5a87e9231854e0245db8421c18b87d3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-0.10.0.tgz","integrity":"sha512-g6C5iwNR7uAOh2OZh8DDmbxGQyf6Q38UH7QqlBrK1IkX7PESgjp9hhWg+FFORv97JlasqRzLGjYlg73UqZQFzw==","signatures":[{"sig":"MEYCIQCSdkNJOsFmxzh2MKR3K60twSwZJu8bQ1dVmexURrTnYAIhAJ1fbPrF+hQFEc2D6CBIIIw/+UstUnHdTCrZVbUoYrqa","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"ed574260f5a87e9231854e0245db8421c18b87d3","gitHead":"b2378c9a0680f3ebcb8db7f536ff2a5a7e5fe596","scripts":{},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"2.10.1","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"0.12.4","devDependencies":{"chai":"^3.2.0","gulp":"^3.9.0","mocha":"^2.2.5","eslint":"^1.1.0","shelljs":"^0.5.3","istanbul":"^0.3.17","coveralls":"^2.11.4","gulp-mocha":"^2.1.3","gulp-eslint":"^1.0.0","gulp-istanbul":"^0.10.0","shelljs-nodecli":"^0.1.1"}},"0.10.1":{"name":"eslint-plugin-angular","version":"0.10.1","keywords":["eslint","eslintplugin","angular","angularjs"],"author":{"name":"Emmanuel DEMEY"},"license":"MIT","_id":"eslint-plugin-angular@0.10.1","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"d4b4afb163b2f2e1a70a721072e35c3bec7cfbd9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-0.10.1.tgz","integrity":"sha512-4Zj15sKX2Vc6/BCzg2ECxZxshIdrpNHmW6QjHfZcMEL+sERLjTfF85cvaNxM8m2xgW4WSHZKXUvCK9nOlMZ51w==","signatures":[{"sig":"MEYCIQCRFl0VYvidImDo26H8Sgro9h7GiBKFLVY/a552mWxa6wIhAMHQ90FI1r+kdQ6Zz5vYQ93B8Gm4N+XUrbbVLk5NZ5bs","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"d4b4afb163b2f2e1a70a721072e35c3bec7cfbd9","gitHead":"e244a6632a24a85049bbd7b4d36fff4361552853","scripts":{},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"2.10.1","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"0.12.4","devDependencies":{"chai":"^3.2.0","gulp":"^3.9.0","mocha":"^2.3.0","eslint":"^1.3.1","shelljs":"^0.5.3","istanbul":"^0.3.19","coveralls":"^2.11.4","gulp-mocha":"^2.1.3","gulp-eslint":"^1.0.0","gulp-istanbul":"^0.10.0","shelljs-nodecli":"^0.1.1"}},"0.10.2":{"name":"eslint-plugin-angular","version":"0.10.2","keywords":["eslint","eslintplugin","angular","angularjs"],"author":{"name":"Emmanuel DEMEY"},"license":"MIT","_id":"eslint-plugin-angular@0.10.2","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"09c8ccb48d425047afbe6a71e8ca90fd4b12aac4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-0.10.2.tgz","integrity":"sha512-/55/XbkLHze0RwBabc7hzaVF9M4H+I9/n6S6a4HNboyyUD8pQ8R3pl0bd0aIIzNhUNyOFoNIlp5ivUDFH6jg3w==","signatures":[{"sig":"MEYCIQDKWuQqaoeWDutI0chH0qC4Kbeepx/U39EYp8vYX0TWKAIhAPPMoFerrJnpmPDlz3TZFX4I3NkKUfGACIXCCYDQZrtC","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"09c8ccb48d425047afbe6a71e8ca90fd4b12aac4","gitHead":"64c8ab94d2e38293b9fc6eea1e8af3951043783a","scripts":{},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"2.10.1","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"0.12.4","devDependencies":{"chai":"^3.2.0","gulp":"^3.9.0","mocha":"^2.3.0","eslint":"^1.3.1","shelljs":"^0.5.3","istanbul":"^0.3.19","coveralls":"^2.11.4","gulp-mocha":"^2.1.3","gulp-eslint":"^1.0.0","gulp-istanbul":"^0.10.0","shelljs-nodecli":"^0.1.1"}},"0.11.0":{"name":"eslint-plugin-angular","version":"0.11.0","keywords":["eslint","eslintplugin","angular","angularjs"],"author":{"name":"Emmanuel DEMEY"},"license":"MIT","_id":"eslint-plugin-angular@0.11.0","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"48310ee5cfe2de13ee036e37fdfff7d5896c4b91","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-0.11.0.tgz","integrity":"sha512-DNo/E73/r2RA2UnScQYgMM5DJpLfiEjS8dkbfFvuIneLQpqL/vw4kpoaMr7mCiejAyCG/9sz7eM2/ySxVYvb6Q==","signatures":[{"sig":"MEYCIQCCKTnJzSW9iAp/07qRZxf12i7iMMcTtOgqFqQYmorLHgIhAN2vHrEn2W8rWlSkj8PH2/mRhs/jXRzMpCyr+G3TlJ/4","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"48310ee5cfe2de13ee036e37fdfff7d5896c4b91","gitHead":"6b00af6ec07f254dfc39a4f42ad8c4b212cbe323","scripts":{},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"2.10.1","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"0.12.4","devDependencies":{"chai":"^3.2.0","gulp":"^3.9.0","mocha":"^2.3.0","eslint":"^1.3.1","shelljs":"^0.5.3","istanbul":"^0.3.19","coveralls":"^2.11.4","gulp-mocha":"^2.1.3","gulp-eslint":"^1.0.0","gulp-istanbul":"^0.10.0","shelljs-nodecli":"^0.1.1"}},"0.12.0":{"name":"eslint-plugin-angular","version":"0.12.0","keywords":["eslint","eslintplugin","angular","angularjs"],"author":{"name":"Emmanuel DEMEY"},"license":"MIT","_id":"eslint-plugin-angular@0.12.0","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"2d62e80a80d921fff037357cae6cb0e9d0e043de","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-0.12.0.tgz","integrity":"sha512-Bh4/YgRuHsNYErNyCxMbbcm8duSgeLJIMea5hNab9ydtTSkA7sHWD608D28JAwKr12lTiCiVQiw8MOV2PNmUVA==","signatures":[{"sig":"MEUCIFoeqePYT6jvBNz2nGWVHFy6GiQRAt/Vfl8l2ZYucmSTAiEAyaMHtqZq/WC/cdRMdOdmyfv/fSABrCukG+oU0N3weoc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"2d62e80a80d921fff037357cae6cb0e9d0e043de","gitHead":"044621cd4f1a93f4f4087b2472efca034e431012","scripts":{},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"2.10.1","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"0.12.4","devDependencies":{"chai":"^3.2.0","gulp":"^3.9.0","mocha":"^2.3.0","eslint":"^1.3.1","shelljs":"^0.5.3","istanbul":"^0.3.19","coveralls":"^2.11.4","gulp-mocha":"^2.1.3","gulp-eslint":"^1.0.0","gulp-istanbul":"^0.10.0","shelljs-nodecli":"^0.1.1"}},"0.13.0":{"name":"eslint-plugin-angular","version":"0.13.0","keywords":["eslint","eslintplugin","angular","angularjs"],"author":{"name":"Emmanuel DEMEY"},"license":"MIT","_id":"eslint-plugin-angular@0.13.0","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"af3a13f938db689b3cf3943ef2ae7b96184fd373","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-0.13.0.tgz","integrity":"sha512-pZYHFT5Go3L0zkELFjxWDESsQRGUo7fzPJvDYb0HLh9xgwsHpa88IA9H8LCbEJbDcIIKClacFApAUAs+AOqaTQ==","signatures":[{"sig":"MEUCIDuqbF/+VRkoDZI61klLcELIi37PD6ldg/gHHUmmcR/qAiEAsebvr763p7+h0NBye+DXglytA+BBAHtysKnQoF0yL0Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"af3a13f938db689b3cf3943ef2ae7b96184fd373","gitHead":"97b0a5888a9bfb65bf53c04478d8e157651bd267","scripts":{"test":"gulp"},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"2.11.3","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"0.12.7","devDependencies":{"chai":"^3.3.0","gulp":"^3.9.0","mocha":"^2.3.0","eslint":"^1.3.1","espree":"^2.2.5","shelljs":"^0.5.3","istanbul":"^0.3.19","coveralls":"^2.11.4","gulp-mocha":"^2.1.3","gulp-eslint":"^1.0.0","gulp-istanbul":"^0.10.0","shelljs-nodecli":"^0.1.1"}},"0.14.0":{"name":"eslint-plugin-angular","version":"0.14.0","keywords":["eslint","eslintplugin","angular","angularjs"],"author":{"name":"Emmanuel DEMEY"},"license":"MIT","_id":"eslint-plugin-angular@0.14.0","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"6a6c01f3c5fbfc1b405ddc030bdfda861d75eb35","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-0.14.0.tgz","integrity":"sha512-gOGyfUO4cuURdCKKmg83AXfCSlT74ibnbqlTt9aiYqFQAN5VSKZQmCVT1ZRxvvg+e5OQ6ob5A+NJmikCGqT5PQ==","signatures":[{"sig":"MEUCIQCIZzeQwvx89W/Dwm+qHNv+BaG2nmK3jyKHYUJsH5E73QIgMsEVhGYNcagIYbT8K5O0Oj7GYxnJRJhAtg+cDP6FvJM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"6a6c01f3c5fbfc1b405ddc030bdfda861d75eb35","gitHead":"bc06a105ea9ebdab3da6a2e60d597702cf2fa8ae","scripts":{"test":"gulp"},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"2.11.3","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"0.12.7","dependencies":{"lodash":"^3.10.1"},"devDependencies":{"chai":"^3.4.0","gulp":"^3.9.0","mocha":"^2.3.3","eslint":"^1.8.0","espree":"^2.2.5","shelljs":"^0.5.3","istanbul":"^0.4.0","coveralls":"^2.11.4","chai-spies":"^0.7.1","gulp-mocha":"^2.1.3","gulp-eslint":"^1.0.0","gulp-istanbul":"^0.10.2","parse-comments":"^0.4.3","shelljs-nodecli":"^0.1.1"}},"0.15.0":{"name":"eslint-plugin-angular","version":"0.15.0","keywords":["eslint","eslintplugin","angular","angularjs"],"license":"MIT","_id":"eslint-plugin-angular@0.15.0","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"contributors":[{"url":"http://gillespie59.github.io/","name":"Emmanuel Demey"},{"url":"https://github.com/tilmanpotthof","name":"Tilman Potthof"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"c265bfdf9780e8aba04d72d03c14919ada22b0b2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-0.15.0.tgz","integrity":"sha512-Jh+bhLb4CoYteRdvdDAFGa0tFJljUWuGDxDH7FK9PmTzSg6hCUf9R5zvaTx+scKKehwe072Y0zttAoEZtlJXhg==","signatures":[{"sig":"MEYCIQCyeWQnYnnrmTF0nbqk5QDFNmEv4PL0fBN15NfExNKU2gIhAKxqMR5aOP74OhhhREpiPH90FIffA/ClJaL1JSyHODVK","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"c265bfdf9780e8aba04d72d03c14919ada22b0b2","gitHead":"23f530374afa15410568c8a51cd5db24f0828d95","scripts":{"test":"gulp"},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"2.11.3","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"0.12.7","dependencies":{"lodash":"^3.10.1"},"devDependencies":{"chai":"^3.4.0","gulp":"^3.9.0","mocha":"^2.3.3","eslint":"^1.8.0","espree":"^2.2.5","shelljs":"^0.5.3","istanbul":"^0.4.0","coveralls":"^2.11.4","chai-spies":"^0.7.1","gulp-mocha":"^2.1.3","gulp-eslint":"^1.0.0","gulp-istanbul":"^0.10.2","parse-comments":"^0.4.3","shelljs-nodecli":"^0.1.1"}},"1.0.0":{"name":"eslint-plugin-angular","version":"1.0.0","keywords":["eslint","eslintplugin","angular","angularjs"],"license":"MIT","_id":"eslint-plugin-angular@1.0.0","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"contributors":[{"url":"http://gillespie59.github.io/","name":"Emmanuel Demey"},{"url":"https://github.com/tilmanpotthof","name":"Tilman Potthof"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"43cc6ea0ed8f9ca229f0c83f2ee5edce1fe0cfa5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-1.0.0.tgz","integrity":"sha512-/bo/ZW7/0J+freooqRX34wGq01g3yfzCS6XKGhcolxBK7zXUoor2GZ1jFKydLWBfz8MkoylgVJHkIMJnWfzdqA==","signatures":[{"sig":"MEUCIQCTHH9MZyzUUYPfyU6NzjkvqVhwVwe3/We37JPCgLjFSgIgA0hAattOFD/9U4IrKnCEq2UPuCsBcE2IjKM0hNSiw0U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"43cc6ea0ed8f9ca229f0c83f2ee5edce1fe0cfa5","gitHead":"741a55f31446bb1dc0bcdda1b18d71fa4ed768c1","scripts":{"test":"gulp"},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"2.11.3","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"0.12.7","dependencies":{"lodash":"^4.3.0"},"devDependencies":{"chai":"^3.5.0","gulp":"^3.9.1","mocha":"^2.4.5","eslint":"^2.0.0","espree":"^3.0.1","shelljs":"^0.6.0","istanbul":"^0.4.2","coveralls":"^2.11.6","chai-spies":"^0.7.1","gulp-mocha":"^2.2.0","gulp-eslint":"^2.0.0","gulp-istanbul":"^0.10.3","parse-comments":"^0.4.3","shelljs-nodecli":"^0.1.1"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-angular-1.0.0.tgz_1456345637120_0.2397685763426125","host":"packages-5-east.internal.npmjs.com"}},"1.0.1":{"name":"eslint-plugin-angular","version":"1.0.1","keywords":["eslint","eslintplugin","angular","angularjs"],"license":"MIT","_id":"eslint-plugin-angular@1.0.1","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"contributors":[{"url":"http://gillespie59.github.io/","name":"Emmanuel Demey"},{"url":"https://github.com/tilmanpotthof","name":"Tilman Potthof"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"bd2bacf5c8f68896cb7b84617b413e7114bc7fed","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-1.0.1.tgz","integrity":"sha512-lQKrfNCDyxCFjQ+hPfisWmZOv8mTIo6SHHwMrGXIMhKAcYRsACGfVzpyd/fcjyDmGBp0ESymUrBDdpw81sSNaw==","signatures":[{"sig":"MEYCIQD+9JC8AAVrOsWwwNQl23ZmF7y64zvHMkYaP6Mz1ieE8gIhAK83aT+PbpDfjWSykXwZwQyom7jdKogxaNzfeR2UDUKI","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"bd2bacf5c8f68896cb7b84617b413e7114bc7fed","gitHead":"d37e718ac70277d5eccdf4c9f80d8dd2c8571244","scripts":{},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"2.11.3","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"0.12.7","dependencies":{"lodash":"^4.3.0"},"devDependencies":{"chai":"^3.5.0","gulp":"^3.9.1","mocha":"^2.4.5","eslint":"^2.0.0","espree":"^3.0.1","shelljs":"^0.6.0","istanbul":"^0.4.2","coveralls":"^2.11.6","chai-spies":"^0.7.1","gulp-mocha":"^2.2.0","gulp-eslint":"^2.0.0","gulp-istanbul":"^0.10.3","parse-comments":"^0.4.3","shelljs-nodecli":"^0.1.1"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-angular-1.0.1.tgz_1461927962440_0.8502051488030702","host":"packages-16-east.internal.npmjs.com"}},"1.1.0":{"name":"eslint-plugin-angular","version":"1.1.0","keywords":["eslint","eslintplugin","angular","angularjs"],"license":"MIT","_id":"eslint-plugin-angular@1.1.0","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"contributors":[{"url":"http://gillespie59.github.io/","name":"Emmanuel Demey"},{"url":"https://github.com/tilmanpotthof","name":"Tilman Potthof"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"d9306ce10dfa887c88cbc9a90003ecd47501cbfa","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-1.1.0.tgz","integrity":"sha512-vyuss0JKGcJiccjglEDR+FmIGlCROYNyLTQHF4duQc18oSasGHAiOP9PreUVDDomcBPgpG49SzujlRvuqM4IBg==","signatures":[{"sig":"MEQCID8X/rriLq2xWTIeafXj8WZWWVZB+Yr/HHppjtiLENWDAiAeAvCB9T6KlfUH41ZnTGKDDajx5zj/2NMwhDfEQ8evew==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"d9306ce10dfa887c88cbc9a90003ecd47501cbfa","gitHead":"cba4fa30f3a33e347b520cd43285ea273bba360b","scripts":{},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"3.8.6","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"6.0.0","dependencies":{"lodash":"^4.3.0"},"devDependencies":{"chai":"^3.5.0","gulp":"^3.9.1","mocha":"^2.4.5","eslint":"^2.0.0","espree":"^3.0.1","shelljs":"^0.6.0","istanbul":"^0.4.2","coveralls":"^2.11.6","chai-spies":"^0.7.1","gulp-mocha":"^2.2.0","gulp-eslint":"^2.0.0","gulp-istanbul":"^0.10.3","parse-comments":"^0.4.3","shelljs-nodecli":"^0.1.1"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-angular-1.1.0.tgz_1465826656427_0.002678330522030592","host":"packages-12-west.internal.npmjs.com"}},"1.1.1":{"name":"eslint-plugin-angular","version":"1.1.1","keywords":["eslint","eslintplugin","angular","angularjs"],"license":"MIT","_id":"eslint-plugin-angular@1.1.1","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"contributors":[{"url":"http://gillespie59.github.io/","name":"Emmanuel Demey"},{"url":"https://github.com/tilmanpotthof","name":"Tilman Potthof"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"255d3ba8715b747f8eadde9b4be9846bdda91b88","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-1.1.1.tgz","integrity":"sha512-6W3IAIGzA7H1r3dY9DnGP6ZlN/6NSp9KgUe6BtW3Kh4BUbpBXRNdgcGdekmiK0h2SgS/iTab3QhkRUF2cDIwrA==","signatures":[{"sig":"MEYCIQCciwqyaufVxy9I6cesLUE3thillmwZusQrFzCt8n4J7QIhAMiHWhzzm/PmK/LBVS5nFQ9lgDPH/AZauPaIST74vYa3","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"255d3ba8715b747f8eadde9b4be9846bdda91b88","gitHead":"ebbaa10d60e6e8ad5f818e02246f38c2a2e6d183","scripts":{},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"3.3.6","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"5.0.0","dependencies":{"lodash":"^4.3.0"},"devDependencies":{"chai":"^3.5.0","gulp":"^3.9.1","mocha":"^2.4.5","eslint":"^2.0.0","espree":"^3.0.1","shelljs":"^0.6.0","istanbul":"^0.4.2","coveralls":"^2.11.6","chai-spies":"^0.7.1","gulp-mocha":"^2.2.0","gulp-eslint":"^2.0.0","gulp-istanbul":"^0.10.3","parse-comments":"^0.4.3","shelljs-nodecli":"^0.1.1"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-angular-1.1.1.tgz_1465827888782_0.28437904198653996","host":"packages-16-east.internal.npmjs.com"}},"1.2.0-2.0":{"name":"eslint-plugin-angular","version":"1.2.0-2.0","keywords":["eslint","eslintplugin","angular","angularjs"],"license":"MIT","_id":"eslint-plugin-angular@1.2.0-2.0","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"contributors":[{"url":"http://gillespie59.github.io/","name":"Emmanuel Demey"},{"url":"https://github.com/tilmanpotthof","name":"Tilman Potthof"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"c0ddad465cd92e901e4d5d2a18bfe2a44b45a795","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-1.2.0-2.0.tgz","integrity":"sha512-uO/sHLMLKJmLyswxnH4iJRQckjmw1YUTlFzEBYEeyKeR7PoLxQg6yOa2esmFLE+LsQOqminOPriNL1PSrfweFQ==","signatures":[{"sig":"MEUCIBCur3Rh3GxZoeydhZIta2wICzjnyTbRdEPdRBv+rZUyAiEAunO0SraumQOBI+OsjYYLi7/4oenAtNlZqzJ19i8QeI4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"c0ddad465cd92e901e4d5d2a18bfe2a44b45a795","gitHead":"9abe6f08a4f8bec5116b16050585094189c229a8","scripts":{},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"3.8.6","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"6.0.0","dependencies":{},"devDependencies":{"chai":"^3.5.0","gulp":"^3.9.1","mocha":"^2.4.5","eslint":"^2.0.0","espree":"^3.0.1","lodash":"^4.13.1","shelljs":"^0.6.0","istanbul":"^0.4.2","coveralls":"^2.11.6","chai-spies":"^0.7.1","gulp-mocha":"^2.2.0","gulp-eslint":"^2.0.0","gulp-istanbul":"^0.10.3","parse-comments":"^0.4.3","shelljs-nodecli":"^0.1.1"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-angular-1.2.0-2.0.tgz_1466796253899_0.41340982844121754","host":"packages-12-west.internal.npmjs.com"}},"1.2.1":{"name":"eslint-plugin-angular","version":"1.2.1","keywords":["eslint","eslintplugin","angular","angularjs"],"license":"MIT","_id":"eslint-plugin-angular@1.2.1","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"contributors":[{"url":"http://gillespie59.github.io/","name":"Emmanuel Demey"},{"url":"https://github.com/tilmanpotthof","name":"Tilman Potthof"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"57a9c1b270b15c64c06f997fc852fd3ed00122b6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-1.2.1.tgz","integrity":"sha512-NKF1xm6k3DJIYMYCP1IZWjgSW9+P2nQJbBuzaX1lvQIS1ZNvloVOdGuIVO8uxZdf6Na0zZMBo55MAMR7DKhm1g==","signatures":[{"sig":"MEUCIQC8Ly2r80vbxaMihL1rQ6y1V07s1gG25IbtCjz7i0LVngIgTKBiqx7G2/FqpOEl8xsqcx+73e+qbbRj0LC5wWCn5HI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"57a9c1b270b15c64c06f997fc852fd3ed00122b6","gitHead":"15f3a0adfccd0dede38bb84b9a0fe29e1d5a04d2","scripts":{},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"3.8.6","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"6.0.0","dependencies":{},"devDependencies":{"chai":"^3.5.0","gulp":"^3.9.1","mocha":"^2.4.5","eslint":"^2.0.0","espree":"^3.0.1","lodash":"^4.13.1","shelljs":"^0.6.0","istanbul":"^0.4.2","coveralls":"^2.11.6","chai-spies":"^0.7.1","gulp-mocha":"^2.2.0","gulp-eslint":"^2.0.0","gulp-istanbul":"^0.10.3","parse-comments":"^0.4.3","shelljs-nodecli":"^0.1.1"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-angular-1.2.1.tgz_1466796354681_0.9671788024716079","host":"packages-16-east.internal.npmjs.com"}},"1.2.2":{"name":"eslint-plugin-angular","version":"1.2.2","keywords":["eslint","eslintplugin","angular","angularjs"],"license":"MIT","_id":"eslint-plugin-angular@1.2.2","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"contributors":[{"url":"http://gillespie59.github.io/","name":"Emmanuel Demey"},{"url":"https://github.com/tilmanpotthof","name":"Tilman Potthof"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"92d9d605130e83578c8f2dffbcff39d15989df45","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-1.2.2.tgz","integrity":"sha512-2t9yrma1uqoxfjPJRgfT/6DIEf5+wCHcPTqEXjuRNNam2fxmTWvMEuV2tvZacppUjSeq9ygTpt555L9bY4GYSw==","signatures":[{"sig":"MEYCIQCvqgrX+zusyAeAg+suuOtau2IkL7fby3GrQOfxmL7m1QIhAOaeRtBT5JZTMurVhqcRg1WmfYTWyRHgTq4EIHZJF9YD","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"92d9d605130e83578c8f2dffbcff39d15989df45","gitHead":"2326c7fb1cf649b12a76f9c12cccde835197be05","scripts":{},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"3.8.6","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"6.0.0","dependencies":{},"devDependencies":{"chai":"^3.5.0","gulp":"^3.9.1","mocha":"^2.4.5","eslint":"^2.0.0","espree":"^3.0.1","lodash":"^4.13.1","shelljs":"^0.6.0","istanbul":"^0.4.2","coveralls":"^2.11.6","chai-spies":"^0.7.1","gulp-mocha":"^2.2.0","gulp-eslint":"^2.0.0","gulp-istanbul":"^0.10.3","parse-comments":"^0.4.3","shelljs-nodecli":"^0.1.1"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-angular-1.2.2.tgz_1466796712197_0.2134034475311637","host":"packages-16-east.internal.npmjs.com"}},"1.3.0":{"name":"eslint-plugin-angular","version":"1.3.0","keywords":["eslint","eslintplugin","angular","angularjs"],"license":"MIT","_id":"eslint-plugin-angular@1.3.0","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"contributors":[{"url":"http://gillespie59.github.io/","name":"Emmanuel Demey"},{"url":"https://github.com/tilmanpotthof","name":"Tilman Potthof"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"708ecb593b19f090a847d3de7a90d622475bf7fb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-1.3.0.tgz","integrity":"sha512-VD7AgJEO3g9fMNdQNrMJdcO2DzQAr2A48COZgD59vE21ZLisJ+bs3m8OiVXvxxI42/dvnGS9kbeQPmUqRcS2zQ==","signatures":[{"sig":"MEQCIH5YZyYECN7LFXOmt+BzIHFwmNdMMaQT3ZcDk1e1XBSIAiA97tt5dvBwRTmhHZ7m0Fp6DQu2iYVz0QV8HHf5Xu9dkw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"708ecb593b19f090a847d3de7a90d622475bf7fb","gitHead":"8b65dc1076feb3dfa694cbe2ca24b40b86707bbb","scripts":{},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"3.3.6","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"5.0.0","dependencies":{},"devDependencies":{"chai":"^3.5.0","gulp":"^3.9.1","mocha":"^2.4.5","eslint":"^2.0.0","espree":"^3.0.1","lodash":"^4.13.1","shelljs":"^0.6.0","istanbul":"^0.4.2","coveralls":"^2.11.6","chai-spies":"^0.7.1","gulp-mocha":"^2.2.0","gulp-eslint":"^2.0.0","gulp-istanbul":"^0.10.3","parse-comments":"^0.4.3","shelljs-nodecli":"^0.1.1"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-angular-1.3.0.tgz_1467044792691_0.3502849000506103","host":"packages-16-east.internal.npmjs.com"}},"1.3.1":{"name":"eslint-plugin-angular","version":"1.3.1","keywords":["eslint","eslintplugin","angular","angularjs"],"license":"MIT","_id":"eslint-plugin-angular@1.3.1","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"contributors":[{"url":"http://gillespie59.github.io/","name":"Emmanuel Demey"},{"url":"https://github.com/tilmanpotthof","name":"Tilman Potthof"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"2b0dbc0738e3e2ac16f1cc525b3e2410c31984e0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-1.3.1.tgz","integrity":"sha512-4KdrCG5+SybCG13RBeTGCNP2bYNQlBtk3p9a8G6woonuoNAiU6MNKAkkAUW1gyEbszbqVy08UOJPv+cNOxg1Aw==","signatures":[{"sig":"MEYCIQDD3z2G2xgGdvMadhkavW/qwaElIVa9MnoWT1IZ/DyfDwIhANeN3NkjCjMJ/dTCw/9P7uyL4alEPzvvuuPWex2pwhTb","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"2b0dbc0738e3e2ac16f1cc525b3e2410c31984e0","gitHead":"509eb0c7fc27682fe9ba7373b21a5a343955221e","scripts":{},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"3.8.6","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"6.0.0","dependencies":{},"devDependencies":{"chai":"^3.5.0","gulp":"^3.9.1","mocha":"^2.4.5","eslint":"^3.0.0","espree":"^3.0.1","lodash":"^4.13.1","shelljs":"^0.6.0","istanbul":"^0.4.2","coveralls":"^2.11.6","chai-spies":"^0.7.1","gulp-mocha":"^2.2.0","gulp-eslint":"^2.0.0","gulp-istanbul":"^0.10.3","parse-comments":"^0.4.3","shelljs-nodecli":"^0.1.1"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-angular-1.3.1.tgz_1469371376386_0.6339459612499923","host":"packages-16-east.internal.npmjs.com"}},"1.4.0":{"name":"eslint-plugin-angular","version":"1.4.0","keywords":["eslint","eslintplugin","angular","angularjs"],"license":"MIT","_id":"eslint-plugin-angular@1.4.0","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"contributors":[{"url":"http://gillespie59.github.io/","name":"Emmanuel Demey"},{"url":"https://github.com/tilmanpotthof","name":"Tilman Potthof"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"53917b7d979dbaa620140f9711e179d4916b5747","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-1.4.0.tgz","integrity":"sha512-qfiPd7sorA4brGaZNwnq4fjEUPhYfnwVpagmxJki2hAqboB/SCM9OMP8X8/ch7m6VUAlaYAz3D5+CKXP5EL2Tw==","signatures":[{"sig":"MEUCIQDQKTW8JaSA1zn3C7G1RGixGJepAMH87VSEyZ8jVJVhSwIgZQOJpgQty+lTR2sc6H8BkE8GVUEqW08ERJ+Cbp6NqRg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"53917b7d979dbaa620140f9711e179d4916b5747","gitHead":"c9ff6cfffffb92237959164115f61b8ab7dd109c","scripts":{},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"3.9.5","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"6.2.2","dependencies":{},"devDependencies":{"chai":"^3.5.0","gulp":"^3.9.1","mocha":"^2.4.5","eslint":"^3.0.0","espree":"^3.0.1","lodash":"^4.13.1","shelljs":"^0.7.1","istanbul":"^0.4.2","coveralls":"^2.11.6","chai-spies":"^0.7.1","gulp-mocha":"^2.2.0","gulp-eslint":"^3.0.1","gulp-istanbul":"^1.0.0","parse-comments":"^0.4.3","shelljs-nodecli":"^0.1.1"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-angular-1.4.0.tgz_1473887892834_0.520812724949792","host":"packages-16-east.internal.npmjs.com"}},"1.4.1":{"name":"eslint-plugin-angular","version":"1.4.1","keywords":["eslint","eslintplugin","angular","angularjs"],"license":"MIT","_id":"eslint-plugin-angular@1.4.1","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"contributors":[{"url":"http://gillespie59.github.io/","name":"Emmanuel Demey"},{"url":"https://github.com/tilmanpotthof","name":"Tilman Potthof"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"7a4279e722d45e0e419bd3629373ef5d066aa0e3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-1.4.1.tgz","integrity":"sha512-F7LGRn5DnfUfwzCeFO5MDj3bOMTCnukSkkuWejSkYsvsLG3k8CawhL8ExjeiVejbgXLg7s9TLETAKllijECGgQ==","signatures":[{"sig":"MEYCIQCMkmCMdopc7oj80nfplBAe4iCuZQ4+5AloJ+mMCDvv2gIhAPcUAMuK86AQhL+LNqD3B5epKvB6HSV08ChrXNYPTRMP","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"7a4279e722d45e0e419bd3629373ef5d066aa0e3","gitHead":"369088da1e291e5993f57f9fd9fef7e8bb9e0799","scripts":{},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"3.9.5","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"6.2.2","dependencies":{},"devDependencies":{"chai":"^3.5.0","gulp":"^3.9.1","mocha":"^2.4.5","eslint":"^3.0.0","espree":"^3.0.1","lodash":"^4.13.1","shelljs":"^0.7.1","istanbul":"^0.4.2","coveralls":"^2.11.6","chai-spies":"^0.7.1","gulp-mocha":"^2.2.0","gulp-eslint":"^3.0.1","gulp-istanbul":"^1.0.0","parse-comments":"^0.4.3","shelljs-nodecli":"^0.1.1"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-angular-1.4.1.tgz_1474294312655_0.8185531503986567","host":"packages-12-west.internal.npmjs.com"}},"1.5.0":{"name":"eslint-plugin-angular","version":"1.5.0","keywords":["eslint","eslintplugin","angular","angularjs"],"license":"MIT","_id":"eslint-plugin-angular@1.5.0","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"contributors":[{"url":"http://gillespie59.github.io/","name":"Emmanuel Demey"},{"url":"https://github.com/tilmanpotthof","name":"Tilman Potthof"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"dabb4ed25ba42f59086203cc56564bfd053c4eb0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-1.5.0.tgz","integrity":"sha512-0HW+gtVxWHWIWEPokx7jZ+IMQV5OjUB6qCTso4P/Hjtr9aVV2XWf8FLS/GdO7XXE1rUTFZ8I3SvsUqJLBCMz/A==","signatures":[{"sig":"MEQCIGe22tH91qJe229QTKz+K2mrmw8jvrggccLY+COvMj4HAiB6WVWGbhfrgbA6Ks29Gil7TIsMYzNoH3mVuD0l5EjQPw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"dabb4ed25ba42f59086203cc56564bfd053c4eb0","gitHead":"b919034fe28f6d040a068fbdbe5b550107c5d292","scripts":{"test":"gulp"},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"3.10.8","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"7.0.0","dependencies":{},"devDependencies":{"chai":"^3.5.0","gulp":"^3.9.1","mocha":"^2.4.5","eslint":"^3.0.0","espree":"^3.0.1","lodash":"^4.13.1","shelljs":"^0.7.1","istanbul":"^0.4.2","coveralls":"^2.11.6","chai-spies":"^0.7.1","gulp-mocha":"^2.2.0","gulp-eslint":"^3.0.1","gulp-istanbul":"^1.0.0","parse-comments":"^0.4.3","shelljs-nodecli":"^0.1.1"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-angular-1.5.0.tgz_1481473123936_0.8920475873164833","host":"packages-18-east.internal.npmjs.com"}},"1.5.1":{"name":"eslint-plugin-angular","version":"1.5.1","keywords":["eslint","eslintplugin","angular","angularjs"],"license":"MIT","_id":"eslint-plugin-angular@1.5.1","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"contributors":[{"url":"http://gillespie59.github.io/","name":"Emmanuel Demey"},{"url":"https://github.com/tilmanpotthof","name":"Tilman Potthof"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"0119bca387673efe0933ef3ce36291a21e41de24","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-1.5.1.tgz","integrity":"sha512-QOHDyMJhvqSixQxBWFZNapHnu+zbkExb74uVBfB6K3kBf034dRTO/ItgNySfkMdkHL6YOSTu6wecdSpBmTfnjw==","signatures":[{"sig":"MEUCIQDECBhW/HJSIlY/6ys9KxvleJGLAAfup7ZbR7LtNHZVAQIgQh459C70DdRvwTDg1fvt8tKfE5LKTw3seNR287seCzw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"0119bca387673efe0933ef3ce36291a21e41de24","gitHead":"83cb851ad21193685f278dc2f3319e9b19bbfc74","scripts":{"test":"gulp"},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"3.10.8","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"7.0.0","dependencies":{},"devDependencies":{"chai":"^3.5.0","gulp":"^3.9.1","mocha":"^2.4.5","eslint":"^3.0.0","espree":"^3.0.1","lodash":"^4.13.1","shelljs":"^0.7.1","istanbul":"^0.4.2","coveralls":"^2.11.6","chai-spies":"^0.7.1","gulp-mocha":"^2.2.0","gulp-eslint":"^3.0.1","gulp-istanbul":"^1.0.0","parse-comments":"^0.4.3","shelljs-nodecli":"^0.1.1"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-angular-1.5.1.tgz_1482578401054_0.1217016689479351","host":"packages-18-east.internal.npmjs.com"}},"1.6.1":{"name":"eslint-plugin-angular","version":"1.6.1","keywords":["eslint","eslintplugin","angular","angularjs"],"license":"MIT","_id":"eslint-plugin-angular@1.6.1","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"contributors":[{"url":"http://gillespie59.github.io/","name":"Emmanuel Demey"},{"url":"https://github.com/tilmanpotthof","name":"Tilman Potthof"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"5d108533da6497d7899ae9be626aabbb4e4879b2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-1.6.1.tgz","integrity":"sha512-fhc7hG49zl+Q6VFNeNoxSXg8hyAWMr7XQc3gmfBmi/wSu+6XYEJR2QD4eW+r+l9bdsm+8GrLH1b8on4mkr9EoQ==","signatures":[{"sig":"MEYCIQDq40zKYF5Puema+RvWbQiCoZmjz32q3AeV6vso6It7xAIhAPQ1U53aK7a98OHxDvwzMo2+HbBsiUFpMBjvJQif3eZK","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"5d108533da6497d7899ae9be626aabbb4e4879b2","gitHead":"a6fa1a66b1a958a42d167c886372355b40648d1d","scripts":{"test":"gulp"},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"3.10.8","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"7.0.0","dependencies":{},"devDependencies":{"chai":"^3.5.0","gulp":"^3.9.1","mocha":"^2.4.5","eslint":"^3.0.0","espree":"^3.0.1","lodash":"^4.13.1","shelljs":"^0.7.1","istanbul":"^0.4.2","coveralls":"^2.11.6","chai-spies":"^0.7.1","gulp-mocha":"^2.2.0","gulp-eslint":"^3.0.1","gulp-istanbul":"^1.0.0","parse-comments":"^0.4.3","shelljs-nodecli":"^0.1.1"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-angular-1.6.1.tgz_1482769530070_0.717371464241296","host":"packages-18-east.internal.npmjs.com"}},"1.6.2":{"name":"eslint-plugin-angular","version":"1.6.2","keywords":["eslint","eslintplugin","angular","angularjs"],"license":"MIT","_id":"eslint-plugin-angular@1.6.2","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"contributors":[{"url":"http://gillespie59.github.io/","name":"Emmanuel Demey"},{"url":"https://github.com/tilmanpotthof","name":"Tilman Potthof"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"c22fe4339e4a847391d9ffafd03c46ffaf352b3a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-1.6.2.tgz","integrity":"sha512-mhB0bncn0fGLrChNG0y6D1l3T1z2yi2Uq0hxkw8MnGbOuhpXqJa6sOdKaz8ROshZFiJDr+/TRXjD/LuzG5jySg==","signatures":[{"sig":"MEQCIDf6B37C7sZp0g6LNIPZ6kPWHR1fjXEtfMmZI9WhR5iWAiBE7GQM/xrS1/U9WKsnG8or6liVGAsUIk9DIE6cHrVpww==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"c22fe4339e4a847391d9ffafd03c46ffaf352b3a","gitHead":"dd988bd9cf3768b32ff32bf01ae76c20b6ed149f","scripts":{"test":"gulp"},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"4.0.5","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"7.4.0","dependencies":{},"devDependencies":{"chai":"^3.5.0","gulp":"^3.9.1","mocha":"^3.2.0","eslint":"^3.0.0","espree":"^3.0.1","lodash":"^4.13.1","shelljs":"^0.7.1","istanbul":"^0.4.2","coveralls":"^2.11.6","chai-spies":"^0.7.1","gulp-mocha":"^3.0.1","gulp-eslint":"^3.0.1","gulp-istanbul":"^1.0.0","parse-comments":"^0.4.3","shelljs-nodecli":"^0.1.1"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-angular-1.6.2.tgz_1488739824668_0.2539074330125004","host":"packages-12-west.internal.npmjs.com"}},"1.6.3":{"name":"eslint-plugin-angular","version":"1.6.3","keywords":["eslint","eslintplugin","angular","angularjs"],"license":"MIT","_id":"eslint-plugin-angular@1.6.3","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"contributors":[{"url":"http://gillespie59.github.io/","name":"Emmanuel Demey"},{"url":"https://github.com/tilmanpotthof","name":"Tilman Potthof"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"889e3200750e6b88332f6c8f893745ecc4f80d58","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-1.6.3.tgz","integrity":"sha512-tUEZCLBFwgLaIXj3StCba+lPdhOss8nSUseA6hZyAYUHcDrrbMAtbvYT1myG+ZF+nsv4JC1Bw+fl3e0nRyfccw==","signatures":[{"sig":"MEUCIQCwgF3sGDGBPKY53Tzkd2vLyzZXht8JHkRZ4SvrQtdqagIgNGTUjobXTXSvDQOog1yyiFMot4gf6cFx5tg30WRZqc4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"889e3200750e6b88332f6c8f893745ecc4f80d58","gitHead":"59ecabb52b9a08aed11795d4ae9de3400fe2a4d5","scripts":{"test":"gulp"},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"4.0.5","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"7.4.0","dependencies":{},"devDependencies":{"chai":"^3.5.0","gulp":"^3.9.1","mocha":"^3.2.0","eslint":"^3.18.0","espree":"^3.0.1","lodash":"^4.13.1","shelljs":"^0.7.1","istanbul":"^0.4.2","coveralls":"^2.11.6","chai-spies":"^0.7.1","gulp-mocha":"^3.0.1","gulp-eslint":"^3.0.1","gulp-istanbul":"^1.0.0","parse-comments":"^0.4.3","shelljs-nodecli":"^0.1.1"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-angular-1.6.3.tgz_1489850112915_0.9745074384845793","host":"packages-18-east.internal.npmjs.com"}},"1.6.4":{"name":"eslint-plugin-angular","version":"1.6.4","keywords":["eslint","eslintplugin","angular","angularjs"],"license":"MIT","_id":"eslint-plugin-angular@1.6.4","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"contributors":[{"url":"http://gillespie59.github.io/","name":"Emmanuel Demey"},{"url":"https://github.com/tilmanpotthof","name":"Tilman Potthof"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"f495b351e2a49907a020f1c4fbdfbf81011a32a2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-1.6.4.tgz","integrity":"sha512-TBUykOxISfFQFBFriwSLQhwR+2eg5qQOtDYt9NDRHU1huK1IhdvlXg6OH2netAdxQM329EwIF2lo3h7Yz4PK5g==","signatures":[{"sig":"MEYCIQCJlopiOrmMl9AAcVs4heUF/ay4/y/vLdGR/vm/Nus+1AIhAJBOmzEIOmyFh6zESAbpHbymjJc+7Wb0wqGlwDQU2Rh7","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"f495b351e2a49907a020f1c4fbdfbf81011a32a2","gitHead":"190022e707929ad60c4aaee83370bb2e301d7058","scripts":{"test":"gulp"},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"4.0.5","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"7.4.0","dependencies":{},"devDependencies":{"chai":"^3.5.0","gulp":"^3.9.1","mocha":"^3.2.0","eslint":"^3.18.0","espree":"^3.0.1","lodash":"^4.13.1","shelljs":"^0.7.1","istanbul":"^0.4.2","coveralls":"^2.11.6","chai-spies":"^0.7.1","gulp-mocha":"^3.0.1","gulp-eslint":"^3.0.1","gulp-istanbul":"^1.0.0","parse-comments":"^0.4.3","shelljs-nodecli":"^0.1.1"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-angular-1.6.4.tgz_1489911903569_0.1632277264725417","host":"packages-18-east.internal.npmjs.com"}},"2.0.0":{"name":"eslint-plugin-angular","version":"2.0.0","keywords":["eslint","eslintplugin","angular","angularjs"],"license":"MIT","_id":"eslint-plugin-angular@2.0.0","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"contributors":[{"url":"http://gillespie59.github.io/","name":"Emmanuel Demey"},{"url":"https://github.com/tilmanpotthof","name":"Tilman Potthof"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"6a0bdeb2910e27ee89a0b4d9b8250a7989234f88","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-2.0.0.tgz","integrity":"sha512-rbl964wVrgcDORpQx9a8Q9g4vivQvh2lKTa1RtmJOSu4xEKWxwfyr7L/ciTeS9V8+JgpD/XsChpOSdmPNeT7YQ==","signatures":[{"sig":"MEUCIQDkc4+MJKpyDfKQVse4zMGX2Ajynvf75lAjh2oyMSLD4gIgSNl5e7BLjpSADIZ4Q+18SKY7V77D5MiViW7046OVTSo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"6a0bdeb2910e27ee89a0b4d9b8250a7989234f88","gitHead":"f3080fd0aaffbc0a2972aa163049e250625e5de9","scripts":{"test":"gulp"},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"4.0.5","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"7.4.0","dependencies":{},"devDependencies":{"chai":"^3.5.0","gulp":"^3.9.1","mocha":"^3.2.0","eslint":"^3.18.0","espree":"^3.0.1","lodash":"^4.13.1","shelljs":"^0.7.1","istanbul":"^0.4.2","coveralls":"^2.11.6","chai-spies":"^0.7.1","gulp-mocha":"^3.0.1","gulp-eslint":"^3.0.1","gulp-istanbul":"^1.0.0","parse-comments":"^0.4.3","shelljs-nodecli":"^0.1.1"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-angular-2.0.0.tgz_1489940964250_0.49222641508094966","host":"packages-12-west.internal.npmjs.com"}},"2.1.0":{"name":"eslint-plugin-angular","version":"2.1.0","keywords":["eslint","eslintplugin","angular","angularjs"],"license":"MIT","_id":"eslint-plugin-angular@2.1.0","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"contributors":[{"url":"http://gillespie59.github.io/","name":"Emmanuel Demey"},{"url":"https://github.com/tilmanpotthof","name":"Tilman Potthof"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"546acfc894d3fbc1ec0639f1d4fba0bde6173ae9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-2.1.0.tgz","integrity":"sha512-YwIIrrd2e+VLPnCbxgNV73WPE1+CStUm4FyiOQ9G8VbIQVBl4FcZB6xU8fsIxqJDWei0zqnCYhckc0HfEP3H1Q==","signatures":[{"sig":"MEUCIQDuivF8B7gzSKQmCufsBXuJ5IoUQpYFMm2Vv/m4DHosmQIgPPJa8XoUEF8PP6zk9qr6QjRTR+IzosxYDHi5AqfdPRo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"546acfc894d3fbc1ec0639f1d4fba0bde6173ae9","gitHead":"d1fdeb8486a6f6e44c4ec76703b59ace476696c6","scripts":{"test":"gulp"},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"4.0.5","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"7.4.0","dependencies":{},"devDependencies":{"chai":"^3.5.0","gulp":"^3.9.1","mocha":"^3.2.0","eslint":"^3.18.0","espree":"^3.0.1","lodash":"^4.13.1","shelljs":"^0.7.1","istanbul":"^0.4.2","coveralls":"^2.11.6","chai-spies":"^0.7.1","gulp-mocha":"^3.0.1","gulp-eslint":"^3.0.1","gulp-istanbul":"^1.0.0","parse-comments":"^0.4.3","shelljs-nodecli":"^0.1.1"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-angular-2.1.0.tgz_1490210819500_0.23741566739045084","host":"packages-18-east.internal.npmjs.com"}},"2.2.0":{"name":"eslint-plugin-angular","version":"2.2.0","keywords":["eslint","eslintplugin","angular","angularjs"],"license":"MIT","_id":"eslint-plugin-angular@2.2.0","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"contributors":[{"url":"http://gillespie59.github.io/","name":"Emmanuel Demey"},{"url":"https://github.com/tilmanpotthof","name":"Tilman Potthof"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"d074fcd1438ce5df920a39ba4b52247ef46ed45b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-2.2.0.tgz","integrity":"sha512-8DzGx5nGCn3kBb8PEFNSP6s67fFsHh7DA0r1ee8Pi0lQIPMcJo0Lkg6hsmk1cpTXaSMnGLxem2IpWPoqmGOCEw==","signatures":[{"sig":"MEUCIEgEFRMOwWIA/cLCUhUbG675Y1VDnFWb/W/T/RTnenYPAiEAniDHeZ5AQbvd5XKXf3RTBOt36pBuuNO9RznwP4YU56E=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"d074fcd1438ce5df920a39ba4b52247ef46ed45b","gitHead":"1995dc8269fa5bb13f864f9c574cdb21c0d0e4bb","scripts":{"test":"gulp"},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"4.0.5","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"7.4.0","dependencies":{},"devDependencies":{"chai":"^3.5.0","gulp":"^3.9.1","mocha":"^3.2.0","eslint":"^3.18.0","espree":"^3.0.1","lodash":"^4.13.1","shelljs":"^0.7.1","istanbul":"^0.4.2","coveralls":"^2.11.6","chai-spies":"^0.7.1","gulp-mocha":"^3.0.1","gulp-eslint":"^3.0.1","gulp-istanbul":"^1.0.0","parse-comments":"^0.4.3","shelljs-nodecli":"^0.1.1"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-angular-2.2.0.tgz_1490213159726_0.8521970538422465","host":"packages-18-east.internal.npmjs.com"}},"2.2.1":{"name":"eslint-plugin-angular","version":"2.2.1","keywords":["eslint","eslintplugin","angular","angularjs"],"license":"MIT","_id":"eslint-plugin-angular@2.2.1","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"contributors":[{"url":"http://gillespie59.github.io/","name":"Emmanuel Demey"},{"url":"https://github.com/tilmanpotthof","name":"Tilman Potthof"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"2fe426808d675114c5d78c8b25642499053cae92","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-2.2.1.tgz","integrity":"sha512-NIUUZza6l2VBZGzbiwE0nFZIXgZZrJ73wk3VuayhbpOdD5ZhkaEs7gfGf5U880DUXFZgEVXMtUrfYjhqBWgWtA==","signatures":[{"sig":"MEUCICeOTk4UQrbNk3B3D5VSsHC8fXmmW3M+GVQM3DhIygH0AiEAq5eDjvKZkdzqta2sS9EJ474tG94itgUbbVmPGcib2KY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"2fe426808d675114c5d78c8b25642499053cae92","gitHead":"99a907f27f7e13d41cd033b418d1cd172a2822e7","scripts":{"test":"gulp"},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"4.0.5","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"7.4.0","dependencies":{},"devDependencies":{"chai":"^3.5.0","gulp":"^3.9.1","mocha":"^3.2.0","eslint":"^3.18.0","espree":"^3.0.1","lodash":"^4.13.1","shelljs":"^0.7.1","istanbul":"^0.4.2","coveralls":"^2.11.6","chai-spies":"^0.7.1","gulp-mocha":"^3.0.1","gulp-eslint":"^3.0.1","gulp-istanbul":"^1.0.0","parse-comments":"^0.4.3","shelljs-nodecli":"^0.1.1"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-angular-2.2.1.tgz_1490884453408_0.7444011126644909","host":"packages-12-west.internal.npmjs.com"}},"2.3.0":{"name":"eslint-plugin-angular","version":"2.3.0","keywords":["eslint","eslintplugin","angular","angularjs"],"license":"MIT","_id":"eslint-plugin-angular@2.3.0","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"contributors":[{"url":"http://gillespie59.github.io/","name":"Emmanuel Demey"},{"url":"https://github.com/tilmanpotthof","name":"Tilman Potthof"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"914191fd94345d3ae80bfbc7c0e3dd5de67aa223","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-2.3.0.tgz","integrity":"sha512-l37joiTfHPTzYN1kRbK7sIIsGIL4anqy3o24viBx+VSNOj9i64+S1hnUnZtrCwreaqN3C7JAuOhO3iYwBLT9Nw==","signatures":[{"sig":"MEUCIQDqcsU+ltWWA4so/C1o+iwIuO+BBb7ZdQjZgwGtPOpPEQIgIsDjYygXjADkIUqb8iN85B5qJ5mZgwc8klgzoZm/Bxk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"914191fd94345d3ae80bfbc7c0e3dd5de67aa223","gitHead":"6b9acd181bd58a3ffbed0b140c12ab78031255ec","scripts":{"test":"gulp"},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"4.0.5","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"7.4.0","dependencies":{},"devDependencies":{"chai":"^3.5.0","gulp":"^3.9.1","mocha":"^3.2.0","eslint":"^3.18.0","espree":"^3.0.1","lodash":"^4.13.1","shelljs":"^0.7.1","istanbul":"^0.4.2","coveralls":"^2.11.6","chai-spies":"^0.7.1","gulp-mocha":"^3.0.1","gulp-eslint":"^3.0.1","gulp-istanbul":"^1.0.0","parse-comments":"^0.4.3","shelljs-nodecli":"^0.1.1"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-angular-2.3.0.tgz_1491839090370_0.6733811004087329","host":"packages-12-west.internal.npmjs.com"}},"2.4.0":{"name":"eslint-plugin-angular","version":"2.4.0","keywords":["eslint","eslintplugin","angular","angularjs"],"license":"MIT","_id":"eslint-plugin-angular@2.4.0","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"contributors":[{"url":"http://gillespie59.github.io/","name":"Emmanuel Demey"},{"url":"https://github.com/tilmanpotthof","name":"Tilman Potthof"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"304bd9f7a710b815797fc7d320e805f1a7a19fa0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-2.4.0.tgz","integrity":"sha512-munms2GflSSvDiGkX9U/fiOlfcgjTIuf1Mx48F4xzueEL1nwGaRdp5K8FIXo+ixqxbND44J6p7Tw/r8xE7s8cQ==","signatures":[{"sig":"MEUCICrMPSkhMRfQ1u93n0OWREkrNva8sSuodCq9fLM6SUkEAiEA1DAYNSmD5MTnnsPbrEClTX32QKDX9MJ/JrGzQ3sRyp0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"304bd9f7a710b815797fc7d320e805f1a7a19fa0","gitHead":"cdc5bb96ad93e0423255412865ac10c86110240d","scripts":{"test":"gulp"},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"4.0.5","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"7.4.0","dependencies":{},"devDependencies":{"chai":"^3.5.0","gulp":"^3.9.1","mocha":"^3.2.0","eslint":"^3.18.0","espree":"^3.0.1","lodash":"^4.13.1","shelljs":"^0.7.1","istanbul":"^0.4.2","coveralls":"^2.11.6","chai-spies":"^0.7.1","gulp-mocha":"^3.0.1","gulp-eslint":"^3.0.1","gulp-istanbul":"^1.0.0","parse-comments":"^0.4.3","shelljs-nodecli":"^0.1.1"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-angular-2.4.0.tgz_1493114198974_0.7453494609799236","host":"packages-12-west.internal.npmjs.com"}},"2.4.1":{"name":"eslint-plugin-angular","version":"2.4.1","keywords":["eslint","eslintplugin","angular","angularjs"],"license":"MIT","_id":"eslint-plugin-angular@2.4.1","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"contributors":[{"url":"http://gillespie59.github.io/","name":"Emmanuel Demey"},{"url":"https://github.com/tilmanpotthof","name":"Tilman Potthof"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"676119efee26a10acab99d2fd9612aca5c617bc9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-2.4.1.tgz","integrity":"sha512-sl0k9Hrvp0y1gF7TaoCt0qjoeXKVLekum2S6MQxAtx/GsAZMeiRMAx3ddMFkVordnALQh6o8WMB8qZ3BNeOd4g==","signatures":[{"sig":"MEUCIDZfoY+x5gF0AdIDdmd42k9wcWQKf6mAsnCBY+XBHaZwAiEArSh/L/R0AM6mdFI2id0K2jBLs2j2Y5aIpnWWz0vVFWU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"676119efee26a10acab99d2fd9612aca5c617bc9","gitHead":"dbf542b84ead48705c65b22ce64278874822df06","scripts":{"test":"gulp"},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"4.0.5","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"7.4.0","dependencies":{},"devDependencies":{"chai":"^3.5.0","gulp":"^3.9.1","mocha":"^3.2.0","eslint":"^3.18.0","espree":"^3.0.1","lodash":"^4.13.1","shelljs":"^0.7.1","istanbul":"^0.4.2","coveralls":"^2.11.6","chai-spies":"^0.7.1","gulp-mocha":"^3.0.1","gulp-eslint":"^3.0.1","gulp-istanbul":"^1.0.0","parse-comments":"^0.4.3","shelljs-nodecli":"^0.1.1"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-angular-2.4.1.tgz_1495845098211_0.08292992343194783","host":"s3://npm-registry-packages"}},"2.4.2":{"name":"eslint-plugin-angular","version":"2.4.2","keywords":["eslint","eslintplugin","angular","angularjs"],"license":"MIT","_id":"eslint-plugin-angular@2.4.2","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"contributors":[{"url":"http://gillespie59.github.io/","name":"Emmanuel Demey"},{"url":"https://github.com/tilmanpotthof","name":"Tilman Potthof"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"42bc2d020edc83884f1cd82986019e056d166645","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-2.4.2.tgz","integrity":"sha512-a1PH4SudVRbtSYdgJJgEbO6naADpzS2tgb4tYpYHm3KXrnDyUzOgAvh8tFwWyPsiIsX1rsmcyB2ynRmcXV2PQA==","signatures":[{"sig":"MEUCIQDtdGuFdMSo5mQqtAtS60Y0fX4CKj5Up1uHMlFO+1tmKwIgOjuXPSQXAvX1ns4DDpHdqEBZdmRGYjKaKKFMXIcp4fc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"42bc2d020edc83884f1cd82986019e056d166645","gitHead":"d47073acd2de5979aafda91e0a4c2677324ca634","scripts":{"test":"gulp"},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"4.0.5","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"7.4.0","dependencies":{},"devDependencies":{"chai":"^3.5.0","gulp":"^3.9.1","mocha":"^3.2.0","eslint":"^3.18.0","espree":"^3.0.1","lodash":"^4.13.1","shelljs":"^0.7.1","istanbul":"^0.4.2","coveralls":"^2.11.6","chai-spies":"^0.7.1","gulp-mocha":"^3.0.1","gulp-eslint":"^3.0.1","gulp-istanbul":"^1.0.0","parse-comments":"^0.4.3","shelljs-nodecli":"^0.1.1"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-angular-2.4.2.tgz_1496514716147_0.8639546409249306","host":"s3://npm-registry-packages"}},"2.5.0":{"name":"eslint-plugin-angular","version":"2.5.0","keywords":["eslint","eslintplugin","angular","angularjs"],"license":"MIT","_id":"eslint-plugin-angular@2.5.0","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"contributors":[{"url":"http://gillespie59.github.io/","name":"Emmanuel Demey"},{"url":"https://github.com/tilmanpotthof","name":"Tilman Potthof"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"bac77e7d05c50e8356d6f7d8f6ed2fe1b4fe536d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-2.5.0.tgz","integrity":"sha512-I3vuBJdUadUhouQ4qymITZOL6NoBh5dseD7dub8CbmMgs/Y4bt6y1fFTtBnMe37OefOqwWV+/tWYKNwI63UNPQ==","signatures":[{"sig":"MEUCIDiIFW3H4rHXXlJ1Z0ZLA+IdBdMgLDWzyD+Dn6iJ2geNAiEA41xnVvEO4mpGfd5WgMotTmOTvv1ESW2gwXjTOruio3E=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"bac77e7d05c50e8356d6f7d8f6ed2fe1b4fe536d","gitHead":"2009670a17c7f5ef1cdc48e72b326c37613bf029","scripts":{"test":"gulp"},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"4.0.5","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"7.4.0","dependencies":{},"devDependencies":{"chai":"^3.5.0","gulp":"^3.9.1","mocha":"^3.2.0","eslint":"^3.18.0","espree":"^3.0.1","lodash":"^4.13.1","shelljs":"^0.7.1","istanbul":"^0.4.2","coveralls":"^2.11.6","chai-spies":"^0.7.1","gulp-mocha":"^3.0.1","gulp-eslint":"^3.0.1","gulp-istanbul":"^1.0.0","parse-comments":"^0.4.3","shelljs-nodecli":"^0.1.1"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-angular-2.5.0.tgz_1497599130519_0.5470777179580182","host":"s3://npm-registry-packages"}},"3.0.0":{"name":"eslint-plugin-angular","version":"3.0.0","keywords":["eslint","eslintplugin","angular","angularjs"],"license":"MIT","_id":"eslint-plugin-angular@3.0.0","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"contributors":[{"url":"http://gillespie59.github.io/","name":"Emmanuel Demey"},{"url":"https://github.com/tilmanpotthof","name":"Tilman Potthof"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"495dba339c9af7fe2a595547746bddd6dc3ed7d3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-3.0.0.tgz","integrity":"sha512-Q8x8FvKccC7D4AgJRXbKgsdI/aG9kXOqdRxf6257DmQFtdvERMRlJpU0KRTAg1gDJC0aKIX/QzvddptkR5n8bw==","signatures":[{"sig":"MEYCIQCyuRnJ/e2l+jJ/HHvT0VkOkiOONe2aGRTXtl2oFjdczgIhAMQ3WP3T0DEzBbDXnYISCldSz/FY4LwMZO1Cvpr4y2r8","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","gitHead":"d0c036b5ace94416b0fff847106cf64b64809d95","scripts":{"test":"gulp"},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"5.0.0","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"8.0.0","dependencies":{},"devDependencies":{"chai":"4.0.2","gulp":"3.9.1","mocha":"3.4.2","eslint":"4.1.1","espree":"3.4.3","shelljs":"0.7.8","istanbul":"0.4.5","coveralls":"2.13.1","chai-spies":"0.7.1","gulp-mocha":"4.3.1","gulp-eslint":"4.0.0","gulp-istanbul":"1.1.2","parse-comments":"0.4.3","shelljs-nodecli":"0.1.1"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-angular-3.0.0.tgz_1498568133463_0.7419342547655106","host":"s3://npm-registry-packages"}},"3.0.2":{"name":"eslint-plugin-angular","version":"3.0.2","keywords":["eslint","eslintplugin","angular","angularjs"],"license":"MIT","_id":"eslint-plugin-angular@3.0.2","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"contributors":[{"url":"http://gillespie59.github.io/","name":"Emmanuel Demey"},{"url":"https://github.com/tilmanpotthof","name":"Tilman Potthof"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"0fed28ad2074bb44f3f1de6d396f8ef68f4712de","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-3.0.2.tgz","integrity":"sha512-OLd3zOmLFj9E9V1YdN3Fr/mTfKlzPsxvxTlNwr1iJIg9igxO6Il3R+z2TDDyoKN/7YPsS8B/xxikrG4U9QBauA==","signatures":[{"sig":"MEUCIE0PlG2eSp5+a4kLsxowLaQPxEuNC2wQs99bIRR3YShAAiEA3UqJE6GVAUiEPexh/1qMSGZkr3tnbdIjrTnVHx2RHmM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"0fed28ad2074bb44f3f1de6d396f8ef68f4712de","gitHead":"1da9041f168bffdfe0d2bb590ba7172049aa2d2c","scripts":{"test":"gulp"},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"3.10.10","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"6.11.0","dependencies":{},"devDependencies":{"chai":"4.0.2","gulp":"3.9.1","mocha":"3.4.2","eslint":"4.1.1","espree":"3.4.3","shelljs":"0.7.8","istanbul":"0.4.5","coveralls":"2.13.1","chai-spies":"0.7.1","gulp-mocha":"4.3.1","gulp-eslint":"4.0.0","gulp-istanbul":"1.1.2","parse-comments":"0.4.3","shelljs-nodecli":"0.1.1"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-angular-3.0.2.tgz_1502895819660_0.37000359152443707","host":"s3://npm-registry-packages"}},"3.1.0":{"name":"eslint-plugin-angular","version":"3.1.0","keywords":["eslint","eslintplugin","angular","angularjs"],"license":"MIT","_id":"eslint-plugin-angular@3.1.0","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"contributors":[{"url":"http://gillespie59.github.io/","name":"Emmanuel Demey"},{"url":"https://github.com/tilmanpotthof","name":"Tilman Potthof"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"263f0d4537303b442a868dcd470527591e8c3526","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-3.1.0.tgz","integrity":"sha512-ANUcazNeV06em1KFtpPKJkaD2SgCmH5d/c3s3p+JF3AsBMI7H3KEnixEW2tpO5L1A/nJAQkp9zjHNHLGsCrdJw==","signatures":[{"sig":"MEQCIHE68TjfhnfFkiklv4unLblNLjfvK0UENLjaE3S2Oge0AiBObRcLsGVcLgjGny9zllOIVHGbA3ZCJYYzc6cYHUGUrw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"263f0d4537303b442a868dcd470527591e8c3526","gitHead":"7739546c3d9b49e4a30d0bbf1477e9dd198bee7f","scripts":{"test":"gulp"},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"3.10.10","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"6.11.0","dependencies":{},"devDependencies":{"chai":"4.0.2","gulp":"3.9.1","mocha":"3.4.2","eslint":"4.1.1","espree":"3.4.3","shelljs":"0.7.8","istanbul":"0.4.5","coveralls":"2.13.1","chai-spies":"0.7.1","gulp-mocha":"4.3.1","gulp-eslint":"4.0.0","gulp-istanbul":"1.1.2","parse-comments":"0.4.3","shelljs-nodecli":"0.1.1"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-angular-3.1.0.tgz_1503329244911_0.24801390198990703","host":"s3://npm-registry-packages"}},"3.1.1":{"name":"eslint-plugin-angular","version":"3.1.1","keywords":["eslint","eslintplugin","angular","angularjs"],"license":"MIT","_id":"eslint-plugin-angular@3.1.1","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"contributors":[{"url":"http://gillespie59.github.io/","name":"Emmanuel Demey"},{"url":"https://github.com/tilmanpotthof","name":"Tilman Potthof"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"b4ea24daa83c375820b59684b5f1adb474b5d946","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-3.1.1.tgz","integrity":"sha512-XkgHJKVKeC8+1KGi3rPHRGa4MZCBuwZHH18na9MtEcSBWyY2uBUFEegKA6VtwLGAQ1SVScxZ0J6KNYmREFCYXw==","signatures":[{"sig":"MEUCIQCWqec+JAYabwvOmnMOM4tCoe41u5SltCOfsy2pW0ZXEQIgLXgquln3rm3isVrVw0UHO1uo61yzWQnLVMZSMQGg8pU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"b4ea24daa83c375820b59684b5f1adb474b5d946","gitHead":"a093afe870f686188baee650af97b5e653c98ce3","scripts":{"test":"gulp"},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"3.10.10","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"6.11.0","dependencies":{},"devDependencies":{"chai":"4.0.2","gulp":"3.9.1","mocha":"3.4.2","eslint":"4.1.1","espree":"3.4.3","shelljs":"0.7.8","istanbul":"0.4.5","coveralls":"2.13.1","chai-spies":"0.7.1","gulp-mocha":"4.3.1","gulp-eslint":"4.0.0","gulp-istanbul":"1.1.2","parse-comments":"0.4.3","shelljs-nodecli":"0.1.1"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-angular-3.1.1.tgz_1504077212869_0.44265197264030576","host":"s3://npm-registry-packages"}},"3.2.0":{"name":"eslint-plugin-angular","version":"3.2.0","keywords":["eslint","eslintplugin","angular","angularjs"],"license":"MIT","_id":"eslint-plugin-angular@3.2.0","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"contributors":[{"url":"http://gillespie59.github.io/","name":"Emmanuel Demey"},{"url":"https://github.com/tilmanpotthof","name":"Tilman Potthof"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"5281b31c77e942727c2494cc92bfd564c7be4bbf","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-3.2.0.tgz","integrity":"sha512-n7sJPNb5x58haQwQ66UAe8NzPIM6+EXdU+4DaCxmLUm2Ftmfany2z6fqnqaymdkncnWvmJhid6+W4llz49lKvQ==","signatures":[{"sig":"MEYCIQDPZRt4xGZaFYcVuojGtjxWYKdjdoEZlKOJ+2iJD3LslgIhAKOh7GNPHf7hjyYWCL6hpYsv9TsNCXF51bjGQqpYqBuG","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","gitHead":"cd58df172c1561994ce980bc9d9042f7a4b11c15","scripts":{"test":"gulp"},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"5.3.0","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"8.5.0","dependencies":{},"devDependencies":{"chai":"4.1.2","gulp":"4.0.0","mocha":"5.0.0","eslint":"4.16.0","espree":"3.5.2","shelljs":"0.8.1","istanbul":"0.4.5","coveralls":"3.0.0","chai-spies":"1.0.0","gulp-mocha":"5.0.0","gulp-eslint":"4.0.1","gulp-istanbul":"1.1.3","parse-comments":"0.4.3","shelljs-nodecli":"0.1.1"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-angular-3.2.0.tgz_1516618646398_0.03734171390533447","host":"s3://npm-registry-packages"}},"3.3.0":{"name":"eslint-plugin-angular","version":"3.3.0","keywords":["eslint","eslintplugin","angular","angularjs"],"license":"MIT","_id":"eslint-plugin-angular@3.3.0","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"contributors":[{"url":"http://gillespie59.github.io/","name":"Emmanuel Demey"},{"url":"https://github.com/tilmanpotthof","name":"Tilman Potthof"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"ba841ec018c8bc2d70f901ac41a6e7be5f79882b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-3.3.0.tgz","fileCount":76,"integrity":"sha512-43HsDbJS0hx9xPU4Ox/pkz90ie4DuRao9ovcz4vteO6OOxVdH5lsOlGTmlJbrEiVyphF1sUwRDPuglu21Gg/GQ==","signatures":[{"sig":"MEYCIQDwUjh+cNqVhTBFzU/zwNOYlTc3kmSn2U7EbaKxqTsylwIhAN4VDTEynWjqwecsDRK3UQE7efpuK9d8rmedGlzAs41c","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":294272},"main":"index.js","gitHead":"9d64ca19128ecba3c3025efd89c60a0568ec5d86","scripts":{"test":"gulp"},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"5.6.0","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"9.6.1","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"chai":"4.1.2","gulp":"4.0.0","mocha":"5.0.1","eslint":"4.17.0","espree":"3.5.3","shelljs":"0.8.1","istanbul":"0.4.5","coveralls":"3.0.0","chai-spies":"1.0.0","gulp-mocha":"5.0.0","gulp-eslint":"4.0.2","gulp-istanbul":"1.1.3","parse-comments":"0.4.3","shelljs-nodecli":"0.1.1"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-angular_3.3.0_1519909189827_0.8051912064877911","host":"s3://npm-registry-packages"}},"4.0.0":{"name":"eslint-plugin-angular","version":"4.0.0","keywords":["eslint","eslintplugin","angular","angularjs"],"license":"MIT","_id":"eslint-plugin-angular@4.0.0","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"contributors":[{"url":"http://gillespie59.github.io/","name":"Emmanuel Demey"},{"url":"https://github.com/tilmanpotthof","name":"Tilman Potthof"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"35b754e4a7600888cd676906799e549f231eb23f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-4.0.0.tgz","fileCount":76,"integrity":"sha512-+CIfHoyoxIj+wxqtxoOU2SsdFf8VtSX69/sgaMGkKQhLdDYMljnwBBB4nAxElotm2+/yA+xAV3o99v6vxfsR5g==","signatures":[{"sig":"MEYCIQDVaNqhbefDglB0mRsGDYPeTPavQJy54/0sZIwp1hC1lgIhAJoTt2VybBT0OA5Qi1cv/dNJ4EoRTOskAcwaf/ANz1s1","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":295310,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb0balCRA9TVsSAnZWagAAVrUQAKJw2gjXKD7WWwpaXaKO\nRb4PtrVwROuRfrVn0simgMZzgm4rbzaVDhr1hLf8QLFuOBm/rqGujTQ1gCtV\n2YSMEGz9zUQnmAt3S+2j8Kzpcl3UdlkMCt98AWnCgtSvbJMSH2ZRVeAm5RCl\nl43ffis9qmVXee7x0gt/UzIUP3oJQSTradp2wkZrGE4nUidhCMCAkLpCym0l\ncgmJDoVfOO8UsIqsmWHgHjOqMEkjE0gecmB4bPpgVRigUCcTPrr4WVtIaCCM\nDgAE5OHKQ4q+Kr/zd69tHOTa/tl8gADwm7VAUixWTEId02ekql/AZEtrC+fB\niiYAoX81PqVSGHTyPt65J7OOoA3GCW0eqatf3VjWNk+hdRvEjLBz5Bp7FyNq\nJ0/WTc08tga4cNEY7WNbKBuY0M1MLbN6od+dikHaM3BFRoRpVUabj4dcWb3M\naxSQA/gBWLzusEyN51riK3QopKXbGXiachoYPpR9U76JEqQHm2b5lUn6LrGE\nTsaqj/EtOm/oK321oq/YpdkIc1Bnte6fxtDk5DnVO0GHK9KUaBsIjvVhzqZ1\nsHhrCf7JmfdP1tDvIZg1YsPFxQRSWaHq3uGrj4RtZs5Zf31yomWOhbsMBGUf\nlafE3Rqz8F0BXjg5oVis1Krgouztr2g0w+hTUkcM4OMohc4a2R0NDmaN+n64\nk/W8\r\n=OTE6\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"3d641b0a2e73690492ca498f90f50599e955dd00","scripts":{"test":"gulp"},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"5.5.1","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"9.0.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"chai":"4.2.0","gulp":"4.0.0","mocha":"5.2.0","eslint":"5.7.0","espree":"4.1.0","shelljs":"0.8.2","istanbul":"0.4.5","coveralls":"3.0.2","chai-spies":"1.0.0","gulp-mocha":"6.0.0","gulp-eslint":"5.0.0","gulp-istanbul":"1.1.3","parse-comments":"0.4.3","shelljs-nodecli":"0.1.1"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-angular_4.0.0_1540470436142_0.9847534054725913","host":"s3://npm-registry-packages"}},"4.0.1":{"name":"eslint-plugin-angular","version":"4.0.1","keywords":["eslint","eslintplugin","angularjs"],"license":"MIT","_id":"eslint-plugin-angular@4.0.1","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"contributors":[{"url":"http://gillespie59.github.io/","name":"Emmanuel Demey"},{"url":"https://github.com/tilmanpotthof","name":"Tilman Potthof"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"f6c01d2a1e549d603e29eceb8615b5a989863a5e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-4.0.1.tgz","fileCount":76,"integrity":"sha512-OaW5G461C2lIkOG+/bhnBoXB9UQm/r0Dj2Qf9uiIN0/ncvf2Llp30L0q1tqWkN8/CxyBwQKh1v0hpCLLDjaIKQ==","signatures":[{"sig":"MEYCIQDzM/v04jwSM+u6LpmwfviS3gif2QAxHz4Uqmu2V6560gIhAKh4wbex6JaaJb2/nn+RfHNaeiM8tR5nUHhqTgZDRbIy","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":295292,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc0w4mCRA9TVsSAnZWagAA9dEP/RcHhm1E6IzfCr0AcpOX\n/cVEwevNqvVkiCS1qYGj/+V1j2tUfZ0xBA72r2SEnLvWc9hNYVfCwMx8oGoh\nP4jhodBepSWMPCgShPcRoIsTSFEU8TLNtIYeIHg81PHP09euu5/XhpWi/1Ei\nRQPxnQpzkltfG5mGF55mp46giqazxX8jrZv94XVfZaUEwq7r26+VebdfF+o6\nSmoj0ZyJK5wnjHYa88eGLMYrnJOUn6fRPrR3rzVrh/cpgTvA9qD5ZDntL0JH\nnpOMegmH2bj9oiFlaOdJlSzI/nqAdtN6rHxnUpVun767TPLmaMLLfXiuvi5z\n9m5AqMoznyyQPWLnPKG9YyCPHYNTnB4BSxDfmvnnStoBbjCCEBlQPDD35Q1Y\nEHaa6A4oO1YjVwfzfJkZu+hMHmIFGQ9pDyDopcLp8wi0Nb6hmD84O1j/wNUv\nmVRUCe1zJbXB/8Y+DwL1SAxUPzeSie0P8qgM5Xmizf7hMcMBhTCxnp5ECj75\nsyg16jiimkXlEpa5MHQFNR8lT66RDzByy+n92uu9deL8utU+ED1uDA0Crmq7\nWM7mXl/+71kW/Z2galm/kowtsGjKbduRiBwP1AM4Okd9t+NKY94GWTon0gr+\nEzoRdr0MSgYxkiKYKlnvbuPyLr8/U75uFbJor4l0Kz6Uouqxgy2frkkMq2vI\nlV1T\r\n=Wabh\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"67f6dab6f46e0fda1560318e79f9c9638e16736e","scripts":{"test":"gulp"},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"5.6.0","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"9.11.2","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"chai":"4.2.0","gulp":"4.0.2","mocha":"6.1.4","eslint":"5.16.0","espree":"5.0.1","shelljs":"0.8.3","istanbul":"0.4.5","coveralls":"3.0.3","chai-spies":"1.0.0","gulp-mocha":"6.0.0","gulp-eslint":"5.0.0","gulp-istanbul":"1.1.3","parse-comments":"0.4.3","shelljs-nodecli":"0.1.1"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-angular_4.0.1_1557335589730_0.3165771379676716","host":"s3://npm-registry-packages"}},"4.1.0":{"name":"eslint-plugin-angular","version":"4.1.0","keywords":["eslint","eslintplugin","angularjs"],"license":"MIT","_id":"eslint-plugin-angular@4.1.0","maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"contributors":[{"url":"http://gillespie59.github.io/","name":"Emmanuel Demey"},{"url":"https://github.com/tilmanpotthof","name":"Tilman Potthof"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"}],"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"dist":{"shasum":"53d03d829edff50d517e81f862782e3efa591953","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-4.1.0.tgz","fileCount":81,"integrity":"sha512-dacledMPxVOZA3T0xcYFuvrMCy5dHxg0ZTMWUaHqSBQef3/XLyXJ9s1LNj0NikJ/dYx6OhqlnnNpKmrJhEUB+Q==","signatures":[{"sig":"MEUCICxh0B+WGx2yPBHNmrkMkjzPubUg4gEDmRxHrHa4rsw/AiEA11URzHyH8VZHISN1gzHZRr+zATM1Nk8nOZn7p683K/Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":217388,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh2qJECRA9TVsSAnZWagAAUeIQAJe3RHON1Cje7dSHMJJB\nx1tbU7AbKUDzgGTlo9spOsI1UfgUWrBQ8ikJOSCaByGGW3wk1quu5l9leVp3\nWGsxWW7BGFJoYVVfbYnLS5hogdYlZwn+YszbrAHDVzJ17MoGPz803uIw5SuT\ndx7/+ddJkvvYB2GOGmtl/WhZ2tytBxOnt0YFfnyqdUDcy7SZulwqjP1pcTvN\nP9YXri9msnMuPjaU8MiY+Ycb8rQyX+X6CHy6ivWQMTwOPTKnkv8nbvFvyMhG\nxucbMloRwJ8YLvZZ4fN2IRfMrkwARHxiCatXXl+J83c408++e9ivIspRab86\nHgI7GvK6W/rrkPMsp6iugimMehIjS6Co7zxpJhuOmJMOIc9/Cidras3SG1wJ\n5V7v/23lK9B8fd24CH3n4M3rCL5NU8Ivs+ZIfvGAB7FWYsKAtYJ9hxkazoGR\nPqWYkooYjtbACEcZ6WcedQZZNFCYrvj2WCZYLIaaQVH+GvvO+okU6TE8KHDV\nqjf3ZHxcExu9x33j7q31GdribhOMXEQxHQZ8r48Lf+KZzIUKQpnWrLsd8+g8\n5RrPogI+U8fExlHdBWfesIgOUWCRctLCWnbLGoxP8afMXDwY7Nq6AD629Mgp\nJXI5LV10I5iSY6Y/ysJi3zM19KmKEMWepiF0X0HL43dShIsH1KbRqRgFzL4/\nz1HJ\r\n=I0/U\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"552dc4a677c1677b040140ded48234931778c78c","scripts":{"test":"gulp"},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"repository":{"url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git","type":"git"},"_npmVersion":"6.14.12","description":"ESLint rules for AngularJS projects","directories":{},"_nodeVersion":"14.16.1","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"chai":"4.2.0","gulp":"4.0.2","mocha":"6.1.4","eslint":"5.16.0","espree":"5.0.1","shelljs":"0.8.3","istanbul":"0.4.5","coveralls":"3.0.3","chai-spies":"1.0.0","gulp-mocha":"6.0.0","gulp-eslint":"5.0.0","gulp-istanbul":"1.1.3","parse-comments":"0.4.3","shelljs-nodecli":"0.1.1"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-angular_4.1.0_1632403883080_0.2642357177608894","host":"s3://npm-registry-packages"}},"5.0.0":{"name":"eslint-plugin-angular","version":"5.0.0","description":"ESLint rules for AngularJS projects","main":"index.js","scripts":{"test":"gulp"},"repository":{"type":"git","url":"git+https://github.com/Gillespie59/eslint-plugin-angularjs.git"},"contributors":[{"name":"Emmanuel Demey","url":"http://gillespie59.github.io/"},{"name":"Tilman Potthof","url":"https://github.com/tilmanpotthof"},{"name":"Remco Haszing","url":"https://github.com/remcohaszing"}],"license":"MIT","bugs":{"url":"https://github.com/Gillespie59/eslint-plugin-angularjs/issues"},"homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs","devDependencies":{"chai":"5.2.1","chai-spies":"1.1.0","eslint":"^9.32.0","espree":"10.4.0","gulp":"5.0.1","lodash":"4.17.21","mocha":"11.7.1","nyc":"17.1.0","parse-comments":"0.4.3"},"peerDependencies":{"eslint":"^9.32.0"},"keywords":["eslint","eslintplugin","angularjs"],"_id":"eslint-plugin-angular@5.0.0","gitHead":"605bd263f806584a5cd48d7974a0d5a4de13a0ef","_nodeVersion":"22.12.0","_npmVersion":"10.9.0","dist":{"integrity":"sha512-KthKp8bmAhyxKbkN3zDsST59jzbd3XMOYEtb4yIZ47eSIm1E2EzzAUHi/CvBk+2V4QgGDIL2oQUbTqx8CsRlOw==","shasum":"b788937f674d3975430283de37a3c019b95016aa","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-angular/-/eslint-plugin-angular-5.0.0.tgz","fileCount":78,"unpackedSize":569489,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIBgBDVvaUQY9mq6Ceu6p6+67V8xpGfhCsfJdFKj8nkACAiEA9RAnhBapgNsbBrXTE5RdmEYQKkd7XnB2niH+Dd50AIY="}]},"_npmUser":{"name":"anonymous","email":"demey.emmanuel@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"demey.emmanuel@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/eslint-plugin-angular_5.0.0_1755778302158_0.8761803227836074"},"_hasShrinkwrap":false}},"name":"eslint-plugin-angular","time":{"created":"2015-01-26T19:02:03.420Z","modified":"2025-08-21T12:11:42.540Z","0.0.1":"2015-01-26T19:02:03.420Z","0.0.2":"2015-01-26T19:16:13.902Z","0.0.3":"2015-01-26T19:18:27.996Z","0.0.4":"2015-03-04T09:33:58.663Z","0.0.5":"2015-03-05T15:24:46.502Z","0.0.6":"2015-03-06T10:32:12.885Z","0.0.7":"2015-03-30T19:27:45.576Z","0.0.8":"2015-06-05T20:01:02.005Z","0.0.9":"2015-06-15T17:55:05.226Z","0.0.10":"2015-06-15T19:09:57.962Z","0.0.11":"2015-06-19T07:27:24.818Z","0.0.12":"2015-06-23T21:05:42.392Z","0.0.13":"2015-06-23T21:15:54.919Z","0.0.14":"2015-06-27T12:10:58.414Z","0.0.15":"2015-06-27T12:17:51.489Z","0.1.0":"2015-07-23T15:07:26.271Z","0.1.1":"2015-07-23T15:08:42.475Z","0.1.2":"2015-07-25T13:52:59.815Z","0.2.0":"2015-07-26T20:49:21.830Z","0.2.1":"2015-08-02T16:13:21.731Z","0.2.2":"2015-08-02T16:20:49.299Z","0.2.3":"2015-08-06T19:07:40.500Z","0.3.0":"2015-08-06T20:01:35.838Z","0.3.1":"2015-08-06T20:11:35.365Z","0.4.0":"2015-08-09T11:59:57.679Z","0.5.0":"2015-08-18T18:17:00.370Z","0.6.0":"2015-08-22T09:20:15.531Z","0.6.1":"2015-08-23T09:26:10.180Z","0.7.0":"2015-08-23T16:34:37.398Z","0.8.0":"2015-08-25T19:48:35.647Z","0.8.1":"2015-08-26T12:44:41.057Z","0.9.0":"2015-08-26T13:06:34.762Z","0.10.0":"2015-08-30T08:57:16.836Z","0.10.1":"2015-09-02T13:20:15.203Z","0.10.2":"2015-09-02T13:22:55.659Z","0.11.0":"2015-09-02T20:00:37.130Z","0.12.0":"2015-09-15T12:39:58.035Z","0.13.0":"2015-10-25T20:54:54.022Z","0.14.0":"2015-11-23T19:15:46.267Z","0.15.0":"2015-12-09T15:10:31.785Z","1.0.0":"2016-02-24T20:27:18.279Z","1.0.1":"2016-04-29T11:06:03.424Z","1.1.0":"2016-06-13T14:04:18.842Z","1.1.1":"2016-06-13T14:24:51.651Z","1.2.0-2.0":"2016-06-24T19:24:16.680Z","1.2.1":"2016-06-24T19:25:57.238Z","1.2.2":"2016-06-24T19:31:54.488Z","1.3.0":"2016-06-27T16:26:33.710Z","1.3.1":"2016-07-24T14:42:58.465Z","1.4.0":"2016-09-14T21:18:13.928Z","1.4.1":"2016-09-19T14:11:54.622Z","1.5.0":"2016-12-11T16:18:44.826Z","1.5.1":"2016-12-24T11:20:01.729Z","1.6.0":"2016-12-26T16:22:04.471Z","1.6.1":"2016-12-26T16:25:30.724Z","1.6.2":"2017-03-05T18:50:26.952Z","1.6.3":"2017-03-18T15:15:13.637Z","1.6.4":"2017-03-19T08:25:04.293Z","2.0.0":"2017-03-19T16:29:26.399Z","2.1.0":"2017-03-22T19:27:00.216Z","2.2.0":"2017-03-22T20:06:00.382Z","2.2.1":"2017-03-30T14:34:15.538Z","2.3.0":"2017-04-10T15:44:52.484Z","2.4.0":"2017-04-25T09:56:41.080Z","2.4.1":"2017-05-27T00:31:38.369Z","2.4.2":"2017-06-03T18:31:57.466Z","2.5.0":"2017-06-16T07:45:31.810Z","3.0.0":"2017-06-27T12:55:34.622Z","3.0.2":"2017-08-16T15:03:40.804Z","3.1.0":"2017-08-21T15:27:26.030Z","3.1.1":"2017-08-30T07:13:34.144Z","3.2.0":"2018-01-22T10:57:27.868Z","3.3.0":"2018-03-01T12:59:49.904Z","4.0.0":"2018-10-25T12:27:16.396Z","4.0.1":"2019-05-08T17:13:09.880Z","4.1.0":"2021-09-23T13:31:23.280Z","5.0.0":"2025-08-21T12:11:42.367Z"},"contributors":[{"name":"Emmanuel Demey","url":"http://gillespie59.github.io/"},{"name":"Tilman Potthof","url":"https://github.com/tilmanpotthof"},{"name":"Remco Haszing","url":"https://github.com/remcohaszing"}],"readmeFilename":"README.md","homepage":"https://github.com/Gillespie59/eslint-plugin-angularjs"}