{"_id":"babel-eslint","maintainers":[{"email":"bng412@gmail.com","name":"existentialism"},{"email":"hi@henryzoo.com","name":"hzoo"},{"email":"loganfsmyth@gmail.com","name":"loganfsmyth"},{"email":"sebmck@gmail.com","name":"sebmck"},{"email":"james@henry.sc","name":"jameshenry"},{"email":"nicolo.ribaudo@gmail.com","name":"nicolo-ribaudo"}],"dist-tags":{"next":"11.0.0-beta.2","latest":"10.1.0"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"description":"Custom parser for ESLint","readme":"# babel-eslint [![npm](https://img.shields.io/npm/v/babel-eslint.svg)](https://www.npmjs.com/package/babel-eslint) [![travis](https://img.shields.io/travis/babel/babel-eslint/master.svg)](https://travis-ci.org/babel/babel-eslint) [![npm-downloads](https://img.shields.io/npm/dm/babel-eslint.svg)](https://www.npmjs.com/package/babel-eslint)\n\n**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic\n[ESLint](https://github.com/eslint/eslint).\n\n### Why Use babel-eslint\n\nYou only need to use babel-eslint if you are using types (Flow) or experimental features not supported in ESLint itself yet. Otherwise try the default parser (you don't have to use it just because you are using Babel).\n\n---\n\n> If there is an issue, first check if it can be reproduced with the regular parser or with the latest versions of `eslint` and `babel-eslint`!\n\nFor questions and support please visit the [`#discussion`](https://babeljs.slack.com/messages/discussion/) babel slack channel (sign up [here](https://github.com/babel/notes/issues/38)) or eslint [gitter](https://gitter.im/eslint/eslint)!\n\n> Note that the `ecmaFeatures` config property may still be required for ESLint to work properly with features not in ECMAScript 5 by default. Examples are `globalReturn` and `modules`).\n\n## Known Issues\n\nFlow:\n> Check out [eslint-plugin-flowtype](https://github.com/gajus/eslint-plugin-flowtype): An `eslint` plugin that makes flow type annotations global variables and marks declarations as used. Solves the problem of false positives with `no-undef` and `no-unused-vars`.\n- `no-undef` for global flow types: `ReactElement`, `ReactClass` [#130](https://github.com/babel/babel-eslint/issues/130#issuecomment-111215076)\n  - Workaround: define types as globals in `.eslintrc` or define types and import them `import type ReactElement from './types'`\n- `no-unused-vars/no-undef` with Flow declarations (`declare module A {}`) [#132](https://github.com/babel/babel-eslint/issues/132#issuecomment-112815926)\n\nModules/strict mode\n- `no-unused-vars: [2, {vars: local}]` [#136](https://github.com/babel/babel-eslint/issues/136)\n\nPlease check out [eslint-plugin-react](https://github.com/yannickcr/eslint-plugin-react) for React/JSX issues\n- `no-unused-vars` with jsx\n\nPlease check out [eslint-plugin-babel](https://github.com/babel/eslint-plugin-babel) for other issues\n\n## How does it work?\n\nESLint allows custom parsers. This is great but some of the syntax nodes that Babel supports\naren't supported by ESLint. When using this plugin, ESLint is monkeypatched and your code is\ntransformed into code that ESLint can understand. All location info such as line numbers,\ncolumns is also retained so you can track down errors with ease.\n\nBasically `babel-eslint` exports an [`index.js`](/index.js) that a linter can use.\nIt just needs to export a `parse` method that takes in a string of code and outputs an AST.\n\n## Usage\n\n### Supported ESLint versions\n\nESLint | babel-eslint\n------------ | -------------\n4.x | >= 6.x\n3.x | >= 6.x\n2.x | >= 6.x\n1.x | >= 5.x\n\n### Install\n\nEnsure that you have substituted the correct version lock for `eslint` and `babel-eslint` into this command:\n\n```sh\n$ npm install eslint@4.x babel-eslint@8 --save-dev\n# or\n$ yarn add eslint@4.x babel-eslint@8 -D\n```\n\n### Setup\n\n**.eslintrc**\n\n```json\n{\n  \"parser\": \"babel-eslint\",\n  \"rules\": {\n    \"strict\": 0\n  }\n}\n```\n\nCheck out the [ESLint docs](http://eslint.org/docs/rules/) for all possible rules.\n\n### Configuration\n\n- `sourceType` can be set to `'module'`(default) or `'script'` if your code isn't using ECMAScript modules.\n- `allowImportExportEverywhere` (default `false`) can be set to `true` to allow import and export declarations to appear anywhere a statement is allowed if your build environment supports that. Otherwise import and export declarations can only appear at a program's top level.\n- `codeFrame` (default `true`) can be set to `false` to disable the code frame in the reporter. This is useful since some eslint formatters don't play well with it.\n\n**.eslintrc**\n\n```json\n{\n  \"parser\": \"babel-eslint\",\n  \"parserOptions\": {\n    \"sourceType\": \"module\",\n    \"allowImportExportEverywhere\": false,\n    \"codeFrame\": true\n  }\n}\n```\n\n### Run\n\n```sh\n$ eslint your-files-here\n```\n","repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"users":{"kctang":true,"jream":true,"koulmomo":true,"sternelee":true,"tonyljl526":true,"lababygirl":true,"micromax720":true,"serge-nikitin":true,"monkeymonk":true,"porreh":true,"dhampik":true,"zhiquan_yu":true,"isenricho":true,"corintho":true,"jimjin":true,"xueboren":true,"sunny_anna":true,"tcrowe":true,"evan2x":true,"alexxnica":true,"ridermansb":true,"knoja4":true,"sandeepgy11":true,"nickeltobias":true,"runningtalus":true,"rochejul":true,"christopher.urquidi":true,"dbuggerx":true,"qddegtya":true,"rossdavis":true,"arcticicestudio":true,"ungurys":true,"pddivine":true,"flumpus-dev":true,"dkannan":true,"langri-sha":true,"soulchainer":true,"nelix":true,"sethbergman":true,"crazyjingling":true,"junjiansyu":true,"princetoad":true,"mrzmmr":true,"fakefarm":true,"leonardorb":true,"daviddraughn":true,"jalcine":true,"preco21":true,"iori20091101":true,"wkaifang":true,"djviolin":true,"joris-van-der-wel":true,"ezeikel":true,"yeming":true,"reberan":true,"rbultitude":true,"flynntsc":true,"hr.":true,"kogakure":true,"wangnan0610":true,"aixieluo":true,"dexteryy":true,"vutran":true,"gurunate":true,"cfleschhut":true,"mtdalpizzol":true,"apehead":true,"alexkval":true,"edwardxyt":true,"draganhr":true,"vinnyfonseca":true,"itonyyo":true,"tianzssj":true,"dyakovk":true,"abuelwafa":true},"bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"license":"MIT","versions":{"1.0.12":{"name":"babel-eslint","version":"1.0.12","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@1.0.12","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"ce2da8a0d87bf7eb3d742e4091df8c519c491aa6","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-1.0.12.tgz","integrity":"sha512-0lFubEylnJeeEoFUN5umuRtyXiVM0dH3ULKmi6dlJaquIRkZz2EyvosPcd+ZpGkgen35SsMw3ZM1SVCxE20+yw==","signatures":[{"sig":"MEUCICqUZrf/U2wx5m8lS4bSF1I41cgVGYaZPfm2DOI8xZOlAiEAvor7SnDHrCnPsjCmT6Hg+YIHfweqSiSCPOdIpaA6nKE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"ce2da8a0d87bf7eb3d742e4091df8c519c491aa6","gitHead":"2a7bfc85e89014b13b1370238010ad7fc034379f","scripts":{},"_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"2.6.0","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"1.4.1","dependencies":{"babel":"^4.6.0","lodash.assign":"^3.0.0"}},"1.0.13":{"name":"babel-eslint","version":"1.0.13","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@1.0.13","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"d23f455f198c3802cbf891448a296456d0c44e89","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-1.0.13.tgz","integrity":"sha512-F9m5ltYwICPX9XyVhYdw8OPRG2ga+J9fqXvh6Dd1apCn62IWFWV7ojSjyTNcSm3c5lBFmBRvZF5PhASknrt3wQ==","signatures":[{"sig":"MEUCIGcWEa3xhVbIlvz36sJk6guZrJ5H1zUWRNT1fY9WwUWZAiEAyZDfGA1u/w86gtK4JDPVEq3nFw8Ghva5bAmS+PyOa5I=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"d23f455f198c3802cbf891448a296456d0c44e89","gitHead":"ae939c7d1b86b553a996abfa81241831b1f9c738","scripts":{},"_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"2.6.0","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"1.4.1","dependencies":{"babel":"^4.6.0","lodash.assign":"^3.0.0"}},"1.0.14":{"name":"babel-eslint","version":"1.0.14","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@1.0.14","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"917c25bf646110cf47d07bd29829d6e33a663240","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-1.0.14.tgz","integrity":"sha512-U0yPMe2M0yeG3fz3TuwmY/RLYf5iVgbMsiNZD07HOHQXCEXEC299D0lPXtdD+AnHkPTY9d8DAzAOeu/3HJZ3rQ==","signatures":[{"sig":"MEQCIAvdBB38GMEIL5JwNpRIek+xEDSrq9lb9ZjsAPnwdJEcAiADHOVLBbKhilV0aQCZt5pjwCAI4Mbx8pxHKmfkiyQeyg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"917c25bf646110cf47d07bd29829d6e33a663240","gitHead":"189c75f262fc610421886b1e80b9bad292a20031","scripts":{"test":"mocha"},"_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"2.6.0","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"1.4.1","dependencies":{"babel":"^4.6.0","lodash.assign":"^3.0.0"},"devDependencies":{"mocha":"^2.1.0","eslint":"^0.15.1","espree":"^1.10.0"}},"5.0.0-beta10":{"name":"babel-eslint","version":"5.0.0-beta10","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@5.0.0-beta10","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"2c0f4af5e556922459e4e06ad9e70ed7e6ac72aa","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-5.0.0-beta10.tgz","integrity":"sha512-BMfoWi5XqxwQIQ3agn8shagO2YCm3irW0ZwZ8wYPfgf2JPaaU1ivE2W2wF7utCdGMq9ZTpuCHxm6G7kYrGNHvA==","signatures":[{"sig":"MEQCICH9DUaqtMOpwjxoo9v2dU0RcXGoqnVemJozIH00VvWsAiAIJxc47MnnXYZgtZCL9KugJx0+9POPz7mGeCA4gUuQ1Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"2c0f4af5e556922459e4e06ad9e70ed7e6ac72aa","gitHead":"413b80e3516cc5d483545ae4846ebae9bcf5084b","scripts":{"lint":"./node_modules/eslint/bin/eslint.js ./test index.js acorn-to-esprima.js","test":"mocha","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","bootstrap":"git submodule update --init && cd eslint && npm install","preversion":"npm test"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"3.6.0","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"5.1.0","dependencies":{"babylon":"^6.0.18","babel-types":"^6.0.19","lodash.pick":"^3.1.0","lodash.assign":"^3.2.0","babel-traverse":"^6.0.20","acorn-to-esprima":"^2.0.4"},"devDependencies":{"mocha":"^2.3.3","eslint":"^1.10.2","espree":"^2.2.5"},"_npmOperationalInternal":{"tmp":"tmp/babel-eslint-5.0.0-beta10.tgz_1454385979629_0.6554192053154111","host":"packages-8-eu.internal.npmjs.com"}},"1.0.10":{"name":"babel-eslint","version":"1.0.10","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@1.0.10","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"d9caac8351388b4e9f3ad6e2374d675cbcd5c736","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-1.0.10.tgz","integrity":"sha512-bx1i5iSv9SDfBq9nFqpCLI1B1NUE76o9EBXgewb854eLlupYAn5OXm4UqWjvFLnjfzn1y1oLFWXLnl8ObDmKvg==","signatures":[{"sig":"MEUCIQCoQwfSrY+upo/c15dx+fshXdwYWH7jCMj4WF6dlxtKLwIgUAZZ2H3taNK6QGNe4tgokjht5rMndhgtESR5uKktSWI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"d9caac8351388b4e9f3ad6e2374d675cbcd5c736","gitHead":"e98ee03758c60d773cbb3a33aff0af64114a270c","scripts":{},"_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"2.6.0","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"1.4.1","dependencies":{"babel":"^4.6.0","lodash":"^3.3.1"}},"1.0.11":{"name":"babel-eslint","version":"1.0.11","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@1.0.11","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"254d8600db81741dfb2ed05e0d8f81a2bd709639","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-1.0.11.tgz","integrity":"sha512-poIJ6PkWvP8SqQk0bxl2SxwhOFduWWanYeMlt/42T7WHXEx/ot2JpJSYPsktZ4FNUmtn09pSTsB1wx5biXaQTQ==","signatures":[{"sig":"MEQCIAW/tp1J/X68fbg2tAobCLvUoLI+tv8OxgRcSs2nAwCKAiBT9c4bhERTmQiZtAx/tktJ9saS8iTdYB4U+YwWBcTeTw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"254d8600db81741dfb2ed05e0d8f81a2bd709639","gitHead":"fa620c4bebcaf1eface8c9baeba3605923f5bd95","scripts":{},"_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"2.6.0","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"1.4.1","dependencies":{"babel":"^4.6.0","lodash.assign":"^3.0.0"}},"4.1.1":{"name":"babel-eslint","version":"4.1.1","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@4.1.1","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"7d016e529b68919d69018f57000751ea55aee36d","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-4.1.1.tgz","integrity":"sha512-tAbpfV46wE55qFtTpVHYy/SX2xpzaj+lg7CUa6f5MrpXPqBrpR4OKqlJCb3P7RPiqevBRLlxw9E13xVzhcFntQ==","signatures":[{"sig":"MEYCIQCcAy8nnxaLbpfc4xh+FSN8e76OzF6bwUM+Mm+BDD6qSQIhAO7hUMBVSDeqFqxyd5I3u7QkvhKsZCnrRDlRyWvBOOpV","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"7d016e529b68919d69018f57000751ea55aee36d","gitHead":"0db61dfa9279669fcc7e689a6d43a78ba91e2647","scripts":{"lint":"./node_modules/eslint/bin/eslint.js ./test index.js acorn-to-esprima.js","test":"mocha","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","bootstrap":"git submodule update --init && cd eslint && npm install"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"2.13.1","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"0.12.7","dependencies":{"babel-core":"^5.8.23","lodash.pick":"^3.1.0","lodash.assign":"^3.0.0","acorn-to-esprima":"^1.0.2"},"devDependencies":{"mocha":"^2.2.5","eslint":"^1.3.1","espree":"^2.2.4"}},"4.1.2":{"name":"babel-eslint","version":"4.1.2","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@4.1.2","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"6c19b1d5e73f4feaeb9ae7c9389edd0423b402a0","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-4.1.2.tgz","integrity":"sha512-LXK3K5g904Qh8cnsn8H2fG9RoPEuBrHR/whErPAeFffmvSKVrMCb9evIvq14riRM1CGIgTyO92PpFKM2m6fkKg==","signatures":[{"sig":"MEQCICtA6mPRnaPzb3QmhDjBlIgxUC+3Hhn+J9+Y9CehjmPyAiBuKdoyxj2qPkG8V90oHbOVyV2mSmIjzU5WL9d72x2BXA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"6c19b1d5e73f4feaeb9ae7c9389edd0423b402a0","gitHead":"64cc7144a0e003b08bda1657757d0c635b9bca68","scripts":{"lint":"./node_modules/eslint/bin/eslint.js ./test index.js acorn-to-esprima.js","test":"mocha","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","bootstrap":"git submodule update --init && cd eslint && npm install"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"2.13.1","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"0.12.7","dependencies":{"babel-core":"^5.8.23","lodash.pick":"^3.1.0","lodash.assign":"^3.0.0","acorn-to-esprima":"^1.0.2"},"devDependencies":{"mocha":"^2.2.5","eslint":"^1.3.1","espree":"^2.2.4"}},"4.1.0":{"name":"babel-eslint","version":"4.1.0","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@4.1.0","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"8ad0058689b78ab5d132cadde8b3aa6de0280f8e","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-4.1.0.tgz","integrity":"sha512-ibk1VqhUK5zssWvDXY/b8sQU/2qX/6G8+mqEoIsh5HjhuwP5hEt6VaF4RTDoy+JNeDAD7q4xCh+2UPZ3/Mx32w==","signatures":[{"sig":"MEUCIEsrnyRfvDWsVfx4tsqLTeEhc1rSFnwGX0j4nzPHYuK0AiEAnLyZEsUXyWTlBjzqFcrht5mmJ9aQZ+QgTDpx3JSOABo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"8ad0058689b78ab5d132cadde8b3aa6de0280f8e","gitHead":"613bd87b7e98cd7645bffa8633195cea04a8c460","scripts":{"lint":"./node_modules/eslint/bin/eslint.js ./test index.js acorn-to-esprima.js","test":"mocha","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","bootstrap":"git submodule update --init && cd eslint && npm install"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"2.13.1","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"0.12.7","dependencies":{"babel-core":"^5.6.9","lodash.pick":"^3.1.0","lodash.assign":"^3.0.0","acorn-to-esprima":"^1.0.1"},"devDependencies":{"mocha":"^2.2.5","eslint":"^1.2.1","espree":"^2.2.4"}},"4.1.5":{"name":"babel-eslint","version":"4.1.5","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@4.1.5","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"4db669a6bdb97a1c22450f11989e0b9f2a45fe66","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-4.1.5.tgz","integrity":"sha512-hEBfbSJrIVVM7WPZ/H8Wu4BLNg9pdpoZ4xxujEY6mIwDjwllvSyMgeUI1ERmayzOjC3krQO7MxzHCB4I9psASQ==","signatures":[{"sig":"MEQCICbajBhUmAJSfJKuwRtWhj2j3MNq3WL+nnGwR0GFArxBAiBvFdbNT7YNG59wWUs8l1M7fOf3JQ0Y/7SJgJhKL3GF0A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"4db669a6bdb97a1c22450f11989e0b9f2a45fe66","gitHead":"fba0a4944ff94820d0abbd3aada424aef5b6ffc9","scripts":{"lint":"./node_modules/eslint/bin/eslint.js ./test index.js acorn-to-esprima.js","test":"mocha","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","bootstrap":"git submodule update --init && cd eslint && npm install"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"2.13.4","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"0.12.7","dependencies":{"babel-core":"^5.8.33","lodash.pick":"^3.1.0","lodash.assign":"^3.2.0","acorn-to-esprima":"^1.0.5"},"devDependencies":{"mocha":"^2.3.3","eslint":"^1.9.0","espree":"^2.2.5"}},"4.1.6":{"name":"babel-eslint","version":"4.1.6","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@4.1.6","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"d1933386476f04095cf58401708cb22b2cb5f254","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-4.1.6.tgz","integrity":"sha512-zgP30EJuherZXITydi+rEQt+/0ASNX3mvb/joGz2GFZYfvFEtDtFFEXs/MGKy3UmDlJQ72tQfnMtECRzBRzeng==","signatures":[{"sig":"MEUCIQDH0k5y255WLo3jGSERRY3u/d3JsKCFPTfKF8IdbIH25QIgXPwgdH4BhmIpSkkYGEvS4ble/nkWWGqoR5HjiZ+vY7A=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"d1933386476f04095cf58401708cb22b2cb5f254","gitHead":"7448831f38e979dcd55e893bea230d26ce046408","scripts":{"lint":"./node_modules/eslint/bin/eslint.js ./test index.js acorn-to-esprima.js","test":"mocha","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","bootstrap":"git submodule update --init && cd eslint && npm install"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"3.3.12","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"4.2.1","dependencies":{"babel-core":"^5.8.33","lodash.pick":"^3.1.0","lodash.assign":"^3.2.0","acorn-to-esprima":"^1.0.5"},"devDependencies":{"mocha":"^2.3.3","eslint":"^1.9.0","espree":"^2.2.5"}},"4.1.3":{"name":"babel-eslint","version":"4.1.3","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@4.1.3","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"021d3e060b77f98e695c33cf5aba3b0ead2bd496","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-4.1.3.tgz","integrity":"sha512-lklAXGjB3ssgUbj0YW0+gWQ7SEQtni3HvLMDeiYo5wh/YgraKNu5VF0zQ9h0Vbc5r+Kh5sJ5zMgU3Q6EstrlxQ==","signatures":[{"sig":"MEQCIBX4HHKH8RC/fRQq2RnFpSk8mONqTttU4FJYFXHadrpbAiB5Ys2EXaINkjOGG8CK5B1MvRHzzeolCcVVNYofnd/yIg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"021d3e060b77f98e695c33cf5aba3b0ead2bd496","gitHead":"d8b3a81ba5b8a37fff28640fa18945e6031e3e41","scripts":{"lint":"./node_modules/eslint/bin/eslint.js ./test index.js acorn-to-esprima.js","test":"mocha","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","bootstrap":"git submodule update --init && cd eslint && npm install"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"2.13.1","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"0.12.7","dependencies":{"babel-core":"^5.8.23","lodash.pick":"^3.1.0","lodash.assign":"^3.0.0","acorn-to-esprima":"^1.0.2"},"devDependencies":{"mocha":"^2.2.5","eslint":"^1.3.1","espree":"^2.2.4"}},"4.1.4":{"name":"babel-eslint","version":"4.1.4","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@4.1.4","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"b75f0b19a70e6741ae2ba383efcaf2f3661e9f33","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-4.1.4.tgz","integrity":"sha512-iIxUn0dyIECsVCfBE1cMbDjeXZPjhiozo2RUvK6GB8ptm5omdf4T3d4WcL4qnkkvB2obLrny6pkKYhyMyd005A==","signatures":[{"sig":"MEYCIQChAUUzG7nKbWbhA9kzgQGbDgLvsaEXOWJND4DKkzQwjwIhAOle5TOvGP9aj9JT2Ljp0LJulxac3bqdeFnJndhCQJri","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"b75f0b19a70e6741ae2ba383efcaf2f3661e9f33","gitHead":"9295bba19fb871c1237c2d87d7519484d62d2715","scripts":{"lint":"./node_modules/eslint/bin/eslint.js ./test index.js acorn-to-esprima.js","test":"mocha","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","bootstrap":"git submodule update --init && cd eslint && npm install"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"2.13.4","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"0.12.7","dependencies":{"babel-core":"^5.8.33","lodash.pick":"^3.1.0","lodash.assign":"^3.2.0","acorn-to-esprima":"^1.0.5"},"devDependencies":{"mocha":"^2.3.3","eslint":"^1.8.0","espree":"^2.2.5"}},"8.0.2":{"name":"babel-eslint","version":"8.0.2","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@8.0.2","maintainers":[{"name":"monastic.panic","email":"monastic.panic@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"danez","email":"daniel@tschinder.de"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"e44fb9a037d749486071d52d65312f5c20aa7530","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-8.0.2.tgz","integrity":"sha512-yyl5U088oE+419+BNLJDKVWkUokuPLQeQt9ZTy9uM9kAzbtQgyYL3JkG425B8jxXA7MwTxnDAtRLMKJNH36qjA==","signatures":[{"sig":"MEYCIQDImxcbdxD98/gbln6ob4qKcZ/0OWukJ9zmsjVm0EvoJgIhAOuoHJzujqCGLUZvEoNvB/2vKtjg3nB1Qt72GvitE3jh","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","files":["index.js","babylon-to-espree"],"engines":{"node":">=4"},"gitHead":"a0fbd503d89fbaddca0aea0bcd277812df17a97d","scripts":{"fix":"eslint index.js babylon-to-espree test --fix","lint":"eslint index.js babylon-to-espree test","test":"npm run lint && npm run test-only","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","precommit":"lint-staged","test-only":"mocha","preversion":"npm test"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"5.5.1","description":"Custom parser for ESLint","directories":{},"lint-staged":{"*.js":["eslint --format=codeframe --fix","git add"]},"_nodeVersion":"8.1.4","dependencies":{"babylon":"^7.0.0-beta.31","@babel/types":"^7.0.0-beta.31","@babel/traverse":"^7.0.0-beta.31","@babel/code-frame":"^7.0.0-beta.31"},"devDependencies":{"husky":"^0.14.0","mocha":"^4.0.0","dedent":"^0.7.0","eslint":"^4.1.0","espree":"^3.4.0","prettier":"^1.4.4","lint-staged":"^4.0.0","babel-eslint":"^8.0.0","eslint-config-babel":"^7.0.1","eslint-plugin-flowtype":"^2.30.3","eslint-plugin-prettier":"^2.1.2"},"_npmOperationalInternal":{"tmp":"tmp/babel-eslint-8.0.2.tgz_1509998440929_0.8777734369505197","host":"s3://npm-registry-packages"}},"8.0.3":{"name":"babel-eslint","version":"8.0.3","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@8.0.3","maintainers":[{"name":"monastic.panic","email":"monastic.panic@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"danez","email":"daniel@tschinder.de"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"f29ecf02336be438195325cd47c468da81ee4e98","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-8.0.3.tgz","integrity":"sha512-7D4iUpylEiKJPGbeSAlNddGcmA41PadgZ6UAb6JVyh003h3d0EbZusYFBR/+nBgqtaVJM2J2zUVa3N0hrpMH6g==","signatures":[{"sig":"MEYCIQCsKk8dfajjWWBm9lt+5cB1D+xinxI0EjqjAG5DhHZplQIhAJzq5S5CbY/tzCPOhd4hcRu2onodlUV/gF4xNTyASLAw","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","files":["index.js","babylon-to-espree"],"engines":{"node":">=4"},"gitHead":"1f220c28cf32f2a2f4b6e5963247b21f4ad5edfb","scripts":{"fix":"eslint index.js babylon-to-espree test --fix","lint":"eslint index.js babylon-to-espree test","test":"npm run lint && npm run test-only","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","precommit":"lint-staged","test-only":"mocha","preversion":"npm test"},"_npmUser":{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"5.3.0","description":"Custom parser for ESLint","directories":{},"lint-staged":{"*.js":["eslint --format=codeframe --fix","git add"]},"_nodeVersion":"6.11.2","dependencies":{"babylon":"7.0.0-beta.31","@babel/types":"7.0.0-beta.31","@babel/traverse":"7.0.0-beta.31","@babel/code-frame":"7.0.0-beta.31"},"devDependencies":{"husky":"^0.14.0","mocha":"^4.0.0","dedent":"^0.7.0","eslint":"^4.1.0","espree":"^3.4.0","prettier":"^1.4.4","lint-staged":"^4.0.0","babel-eslint":"^8.0.0","eslint-config-babel":"^7.0.1","eslint-plugin-flowtype":"^2.30.3","eslint-plugin-prettier":"^2.1.2"},"_npmOperationalInternal":{"tmp":"tmp/babel-eslint-8.0.3.tgz_1512151602622_0.06319061503745615","host":"s3://npm-registry-packages"}},"8.0.0":{"name":"babel-eslint","version":"8.0.0","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@8.0.0","maintainers":[{"name":"monastic.panic","email":"monastic.panic@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"danez","email":"daniel@tschinder.de"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"ce06f385bdfb5b6d7e603f06222f891abd14c240","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-8.0.0.tgz","integrity":"sha512-tN1B3adZ3tw8pr9oGsZ18iKCbdKBSvsn9ab6cGdbED+61LpGLhIVcf76eh59XejbdRLTBe+OYezxmYIaTgPiYA==","signatures":[{"sig":"MEQCIE+R0N6HJ+Q6ezldf7sDa9dAtgjOi7UYqRF6UAEX9xryAiAwVgZOV+H8AYMymE4uQi3yXnefYY1MFcxchFrNv4jZlw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","files":["index.js","babylon-to-espree"],"engines":{"node":">=4"},"gitHead":"905887c4fe4e5f4b56e34acb526e80aad83880cb","scripts":{"fix":"eslint index.js babylon-to-espree test --fix","lint":"eslint index.js babylon-to-espree test","test":"npm run lint && npm run test-only","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","precommit":"lint-staged","test-only":"mocha","preversion":"npm test"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"5.3.0","description":"Custom parser for ESLint","directories":{},"lint-staged":{"*.js":["eslint --format=codeframe --fix","git add"]},"_nodeVersion":"8.1.4","dependencies":{"babylon":"7.0.0-beta.22","babel-types":"7.0.0-beta.0","babel-traverse":"7.0.0-beta.0","babel-code-frame":"7.0.0-beta.0"},"devDependencies":{"husky":"^0.14.0","mocha":"^3.0.0","dedent":"^0.7.0","eslint":"^4.1.0","espree":"^3.4.0","prettier":"^1.4.4","lint-staged":"^4.0.0","babel-eslint":"^8.0.0-alpha.13","eslint-config-babel":"^7.0.1","eslint-plugin-flowtype":"^2.30.3","eslint-plugin-prettier":"^2.1.2"},"_npmOperationalInternal":{"tmp":"tmp/babel-eslint-8.0.0.tgz_1505223932897_0.31041075265966356","host":"s3://npm-registry-packages"}},"8.0.1":{"name":"babel-eslint","version":"8.0.1","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@8.0.1","maintainers":[{"name":"monastic.panic","email":"monastic.panic@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"danez","email":"daniel@tschinder.de"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"5d718be7a328625d006022eb293ed3008cbd6346","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-8.0.1.tgz","integrity":"sha512-h3moF6PCTQE06UjMMG+ydZSBvZ4Q7rqPE/5WAUOvUyHYUTqxm8JVhjZRiG1avI/tGVOK4BnZLDQapyLzh8DeKg==","signatures":[{"sig":"MEUCIQDuYuMNWjXzzb2LjzVH/0NAGMlvp3yxOeih18OX3YiU1wIgGd///ZdiAZN19T5bDTC78f7RXZg7ihm+B5hwnBy1UOo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","files":["index.js","babylon-to-espree"],"engines":{"node":">=4"},"gitHead":"6c7e3d036f1be1403a677c112b23b4b06d03db6e","scripts":{"fix":"eslint index.js babylon-to-espree test --fix","lint":"eslint index.js babylon-to-espree test","test":"npm run lint && npm run test-only","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","precommit":"lint-staged","test-only":"mocha","preversion":"npm test"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"5.4.1","description":"Custom parser for ESLint","directories":{},"lint-staged":{"*.js":["eslint --format=codeframe --fix","git add"]},"_nodeVersion":"8.1.4","dependencies":{"babylon":"7.0.0-beta.22","babel-types":"7.0.0-beta.0","babel-traverse":"7.0.0-beta.0","babel-code-frame":"7.0.0-beta.0"},"devDependencies":{"husky":"^0.14.0","mocha":"^3.0.0","dedent":"^0.7.0","eslint":"^4.1.0","espree":"^3.4.0","prettier":"^1.4.4","lint-staged":"^4.0.0","babel-eslint":"^8.0.0-alpha.13","eslint-config-babel":"^7.0.1","eslint-plugin-flowtype":"^2.30.3","eslint-plugin-prettier":"^2.1.2"},"_npmOperationalInternal":{"tmp":"tmp/babel-eslint-8.0.1.tgz_1506457130415_0.38544971821829677","host":"s3://npm-registry-packages"}},"7.2.0":{"name":"babel-eslint","version":"7.2.0","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@7.2.0","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"8941514b9dead06f0df71b29d5d5b193a92ee0ae","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-7.2.0.tgz","integrity":"sha512-SINzQZLTk1+B/IXBCW8bK7npfTtDsnvN7JS4N/vo1efhYnWLnoASicKMqo0gTtkqyTquzj+jXyyJhO6UIZTt9Q==","signatures":[{"sig":"MEQCIB0LgVQR2NjVT4rpy4tILY6ngIWdqbFXzYJPAhYKOWJvAiAf/1NqZcnWxfn9f5WvUKk93omvTAE1ocq+NGcWzupKww==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js","babylon-to-espree"],"_shasum":"8941514b9dead06f0df71b29d5d5b193a92ee0ae","engines":{"node":">=4"},"gitHead":"4db4db54d18d5d2833ed9a02c5e4cde20474e995","scripts":{"fix":"eslint index.js babylon-to-espree test --fix","lint":"eslint index.js babylon-to-espree test","test":"npm run lint && npm run test-only","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","test-only":"mocha","preversion":"npm test"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"3.10.10","description":"Custom parser for ESLint","directories":{},"_nodeVersion":"6.9.0","dependencies":{"lodash":"^4.17.4","babylon":"^6.16.1","babel-types":"^6.23.0","babel-traverse":"^6.23.1","babel-code-frame":"^6.22.0"},"devDependencies":{"mocha":"^3.0.0","eslint":"^3.18.0","espree":"^3.4.0","babel-eslint":"^7.0.0","eslint-config-babel":"^6.0.0","eslint-plugin-flowtype":"^2.30.3"},"_npmOperationalInternal":{"tmp":"tmp/babel-eslint-7.2.0.tgz_1490046813444_0.6891424732748419","host":"packages-12-west.internal.npmjs.com"}},"7.2.1":{"name":"babel-eslint","version":"7.2.1","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@7.2.1","maintainers":[{"name":"danez","email":"daniel@tschinder.de"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"sebmck","email":"sebmck@gmail.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"079422eb73ba811e3ca0865ce87af29327f8c52f","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-7.2.1.tgz","integrity":"sha512-VHuNHuqn4JX55UHUFBL8EZXAa25dgD7Vv7bKjBPRFEoGtB8k8I5Gp+xJ5TDR/vaIgZEwTt3XlBEWbuCqP3TnQw==","signatures":[{"sig":"MEUCIQC4cm+WRP5DVA/sL8JMRkKCRP4yFlYmWejs2R69kouKFAIgeAo14O1hG0QC69EkXzRteOILDZ3bhZnasZSY6VmTrCA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js","babylon-to-espree"],"_shasum":"079422eb73ba811e3ca0865ce87af29327f8c52f","engines":{"node":">=4"},"gitHead":"3cda62ee066c741b766526155dcdb98db1a2a2d5","scripts":{"fix":"eslint index.js babylon-to-espree test --fix","lint":"eslint index.js babylon-to-espree test","test":"npm run lint && npm run test-only","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","test-only":"mocha","preversion":"npm test"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"3.10.10","description":"Custom parser for ESLint","directories":{},"_nodeVersion":"6.9.0","dependencies":{"babylon":"^6.16.1","babel-types":"^6.23.0","babel-traverse":"^6.23.1","babel-code-frame":"^6.22.0"},"devDependencies":{"mocha":"^3.0.0","eslint":"^3.18.0","espree":"^3.4.0","babel-eslint":"^7.0.0","eslint-config-babel":"^6.0.0","eslint-plugin-flowtype":"^2.30.3"},"_npmOperationalInternal":{"tmp":"tmp/babel-eslint-7.2.1.tgz_1490292384318_0.6182467951439321","host":"packages-18-east.internal.npmjs.com"}},"7.2.2":{"name":"babel-eslint","version":"7.2.2","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@7.2.2","maintainers":[{"name":"danez","email":"daniel@tschinder.de"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"sebmck","email":"sebmck@gmail.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"0da2cbe6554fd0fb069f19674f2db2f9c59270ff","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-7.2.2.tgz","integrity":"sha512-Zws7XoXfrnMK67sH7lncWFIZ2zen4NWT8U9cyqG/VdyhA826QyTO7uVEaGitLnucSlaXdeeTGU4CBynU41OIKA==","signatures":[{"sig":"MEYCIQC8KUBHhwV/YSnxicV9zhzHgauUfNDcpS4KR6bBBEczAgIhAOrbXAYoFzZNNH/JDNaxirpw3GvdnVAyOeocsdAFIVhW","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js","babylon-to-espree"],"_shasum":"0da2cbe6554fd0fb069f19674f2db2f9c59270ff","engines":{"node":">=4"},"gitHead":"f59d2009652e14acf1231a1268a8324cf046514e","scripts":{"fix":"eslint index.js babylon-to-espree test --fix","lint":"eslint index.js babylon-to-espree test","test":"npm run lint && npm run test-only","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","test-only":"mocha","preversion":"npm test"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"3.10.10","description":"Custom parser for ESLint","directories":{},"_nodeVersion":"6.9.0","dependencies":{"babylon":"^6.16.1","babel-types":"^6.23.0","babel-traverse":"^6.23.1","babel-code-frame":"^6.22.0"},"devDependencies":{"mocha":"^3.0.0","dedent":"^0.7.0","eslint":"^3.18.0","espree":"^3.4.0","babel-eslint":"^7.0.0","eslint-config-babel":"^6.0.0","eslint-plugin-flowtype":"^2.30.3"},"_npmOperationalInternal":{"tmp":"tmp/babel-eslint-7.2.2.tgz_1492013238412_0.9115432433318347","host":"packages-12-west.internal.npmjs.com"}},"6.0.4":{"name":"babel-eslint","version":"6.0.4","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@6.0.4","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"cf87dcd516241b2e01d85e80e08e849a232bdef7","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-6.0.4.tgz","integrity":"sha512-xLbes+MBEARJZMMbXdmom3J4z8R1z65dpxuI+jX+3eZlOWyG8V0TPjumgzgl9VPbwhw3ha9OXXH0gT+4Z672lw==","signatures":[{"sig":"MEUCICz6g8UhUf2l4I3edf/Rn35rvDNN1VHQNW9Etm3Dag6dAiEAwqDgIj6+84XWxjWDlwXeLQ8jySEUVcTn4tqrg2gEF5A=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js","babylon-to-espree"],"_shasum":"cf87dcd516241b2e01d85e80e08e849a232bdef7","gitHead":"cff6d35b223ad51dafbaee8908f38b0d1eb3c563","scripts":{"fix":"eslint index.js babylon-to-espree test --fix","lint":"eslint index.js babylon-to-espree test","test":"mocha","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","bootstrap":"git submodule update --init && cd eslint && npm install","preversion":"npm test"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"3.8.6","description":"Custom parser for ESLint","directories":{},"_nodeVersion":"5.1.0","dependencies":{"babylon":"^6.0.18","babel-types":"^6.0.19","lodash.assign":"^4.0.0","lodash.pickby":"^4.0.0","babel-traverse":"^6.0.20"},"devDependencies":{"mocha":"^2.3.3","eslint":"^2.4.0","espree":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/babel-eslint-6.0.4.tgz_1461621346271_0.799388874322176","host":"packages-12-west.internal.npmjs.com"}},"6.0.5":{"name":"babel-eslint","version":"6.0.5","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@6.0.5","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"92fe48e341683f112f20a15219ed97549a5ece9c","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-6.0.5.tgz","integrity":"sha512-MPfk/df4yyDXXANiISiE46Z1iU0ChnA8lS7AlzTQBQNeMfvHw6ld4JK/BkqfzaUuGwcwC9LxdfoMrcIvnROhIQ==","signatures":[{"sig":"MEYCIQCHch8OtxxQ+Z/B2Feaq7dBTmQASIGvlJtBVpngDKOb/wIhAMvPkg9eejN+D60UhhdmKQw8XDbT+jmEiu/zg2aLGHMI","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js","babylon-to-espree"],"_shasum":"92fe48e341683f112f20a15219ed97549a5ece9c","gitHead":"e1d03fa035c7f83735059cebc351bd249bcaee6e","scripts":{"fix":"eslint index.js babylon-to-espree test --fix","lint":"eslint index.js babylon-to-espree test","test":"mocha","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","bootstrap":"git submodule update --init && cd eslint && npm install","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","preversion":"npm test"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"3.8.9","description":"Custom parser for ESLint","directories":{},"_nodeVersion":"6.2.0","dependencies":{"babylon":"^6.0.18","babel-types":"^6.0.19","lodash.assign":"^4.0.0","lodash.pickby":"^4.0.0","babel-traverse":"^6.0.20"},"devDependencies":{"mocha":"^2.3.3","eslint":"^2.4.0","espree":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/babel-eslint-6.0.5.tgz_1466457156366_0.6766940602101386","host":"packages-12-west.internal.npmjs.com"}},"6.0.2":{"name":"babel-eslint","version":"6.0.2","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@6.0.2","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"030650af8ceeb4e9d0ef4dadb8303f622349e97f","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-6.0.2.tgz","integrity":"sha512-hCwk+wKArYb1J64/ETptxhIU/YsXyYXiwo3TPo5vzTZq2kCbVMjb1w40FpKuO1fCpQBDnJjWuk1UQaPGl8rQ3w==","signatures":[{"sig":"MEUCIAHsz8Fc3K7L4qNVvTWZVQ3Ki5FmBWsUYoIBy+3h28V7AiEA++hJnmrbv1NHx0QwoShnOsoBB3i0RFJlEBOoVWZMBcQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js","babylon-to-espree"],"_shasum":"030650af8ceeb4e9d0ef4dadb8303f622349e97f","gitHead":"27debee58f0395516c1f37a9ad5cf23c55cb2c51","scripts":{"fix":"./node_modules/eslint/bin/eslint.js index.js babylon-to-espree test --fix","lint":"./node_modules/eslint/bin/eslint.js index.js babylon-to-espree test","test":"mocha","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","bootstrap":"git submodule update --init && cd eslint && npm install","preversion":"npm test"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"3.8.3","description":"Custom parser for ESLint","directories":{},"_nodeVersion":"5.1.0","dependencies":{"babylon":"^6.0.18","babel-types":"^6.0.19","lodash.pick":"^3.1.0","lodash.assign":"^3.2.0","babel-traverse":"^6.0.20"},"devDependencies":{"mocha":"^2.3.3","eslint":"^2.4.0","espree":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/babel-eslint-6.0.2.tgz_1459466068265_0.9780830829404294","host":"packages-12-west.internal.npmjs.com"}},"6.0.3":{"name":"babel-eslint","version":"6.0.3","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@6.0.3","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"b705eadc25c872e5bf4801b8a4bfdcdd6b01c7ea","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-6.0.3.tgz","integrity":"sha512-p55U9Az8+7GSUPFKKd1VxMNKJjqCZXgDpDAcLtkid9Gt3oHsMh9QtA/CjFCjSCjrhAzoPWzm/Vz+diMydHT0DQ==","signatures":[{"sig":"MEUCIDgNlmIYCnnwqTqZ0lWbddwQcPjtdMk3Z2b7nnuEdUUYAiEA0F8mZbNwXLntPFe0itxwv8Y3QR+YIjZChCyvYizfktA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js","babylon-to-espree"],"_shasum":"b705eadc25c872e5bf4801b8a4bfdcdd6b01c7ea","gitHead":"05377fb748aa1803dcd66f2c47ec681ee66a6b0c","scripts":{"fix":"eslint index.js babylon-to-espree test --fix","lint":"eslint index.js babylon-to-espree test","test":"mocha","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","bootstrap":"git submodule update --init && cd eslint && npm install","preversion":"npm test"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"3.8.6","description":"Custom parser for ESLint","directories":{},"_nodeVersion":"5.1.0","dependencies":{"babylon":"^6.0.18","babel-types":"^6.0.19","lodash.pick":"^3.1.0","lodash.assign":"^3.2.0","babel-traverse":"^6.0.20"},"devDependencies":{"mocha":"^2.3.3","eslint":"^2.4.0","espree":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/babel-eslint-6.0.3.tgz_1461123660350_0.38640773040242493","host":"packages-16-east.internal.npmjs.com"}},"10.1.0":{"name":"babel-eslint","version":"10.1.0","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@10.1.0","maintainers":[{"name":"danez","email":"daniel@tschinder.de"},{"name":"existentialism","email":"bng412@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"jameshenry","email":"npm@jameshenry.email"},{"name":"kaicataldo","email":"kai@kaicataldo.com"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"monastic.panic","email":"monastic.panic@gmail.com"},{"name":"mysticatea","email":"public@mysticatea.dev"},{"name":"nicolo-ribaudo","email":"nicolo.ribaudo@gmail.com"},{"name":"not-an-aardvark","email":"teddy.katz@gmail.com"},{"name":"sebmck","email":"npm@sebastian.barretomckenzie.com"},{"name":"zertosh","email":"zertosh@gmail.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"6968e568a910b78fb3779cdd8b6ac2f479943232","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-10.1.0.tgz","fileCount":16,"integrity":"sha512-ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg==","signatures":[{"sig":"MEQCIBYXIQAopbGpbNRXN8OfftWyQCeuBL3iAlviix3LrJriAiBVB3S6gCNsCAYj5BeWwtczO4FtxNpvpYQF6s5m1zkIIA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":30390,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeVbgkCRA9TVsSAnZWagAApggP/A1cGZW0mHkcn5N6PEMf\nZu0FVDRqTyaiNsLU149m4tVSd+GT3WDyWHs5/4X7Ih9x7tXIPqOV8rG1EcKI\ncSw+lZz6yaKe7a+OuN0SdnxR5LwrnKxGH3KALPpaAGY7UKW6+2lBSo3+10oy\n4lzTwQMTl9U/Wv10ktLLIizRVi19ZACk+HFLRFd5FChcykqJnmKee84GxKwW\nxUSWenNwDbbkGMfOr94Hm9y1ulHDgkx1BTxLbm/3F19JaBrHOJw6ZCVyFwPP\nclTamxSTOp7o3dkWtO5lRnNfBdqylK2yV1ySaNCbzWKjjn0ZBO4imOOMPDws\ntwAZksaoJqc775cZzrJsiRmhuEE6isdrEixM7lFbp965/nl2a1wmd9REDbs7\nTTxQ0l5LWX49y8zhQQnfLYrM6F59T7mdOkOFI4wAiPuDRlK4ihLabTmFpfOi\n3ul0ehkGEtoJTALjEObrTz8dDJhfVEXYFP8yUJoXWng44nt8MwPPG40p5q2c\nuR5S/MA/OPEzJrc+l3IZJqi0wWMBu2twItOJ1HiqIZjTlTF34ViLnLfQf6A3\nE/lNFPLMlvAeVvn7scCJKaSkucKC7P6AgYFjnrFbNdUCewZ619tPrOkwYTKI\nD/rk1wI1QG7bm3NRyviyM3/uNuAWiaTo4S/5mCWmX3TPQsjQgKzoB5eXsu8M\ncrvY\r\n=p34W\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","engines":{"node":">=6"},"gitHead":"4bd049e06e2c7ab31053020fc662f51bf6c179e3","scripts":{"fix":"eslint lib test --fix","lint":"eslint lib test","test":"npm run lint && npm run test-only","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","precommit":"lint-staged","test-only":"mocha && mocha --require test/fixtures/preprocess-to-patch.js","preversion":"npm test"},"_npmUser":{"name":"kaicataldo","email":"kai@kaicataldo.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"6.13.7","description":"Custom parser for ESLint","directories":{},"lint-staged":{"*.js":["eslint --format=codeframe --fix","git add"]},"_nodeVersion":"13.8.0","dependencies":{"resolve":"^1.12.0","@babel/types":"^7.7.0","@babel/parser":"^7.7.0","@babel/traverse":"^7.7.0","@babel/code-frame":"^7.0.0","eslint-visitor-keys":"^1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"husky":"^1.0.0-rc.13","mocha":"^5.0.1","dedent":"^0.7.0","eslint":"^5.6.0","espree":"^3.5.2","prettier":"^1.4.4","lint-staged":"^7.2.2","babel-eslint":"^8.2.6","eslint-config-babel":"^7.0.1","eslint-plugin-import":"^2.14.0","eslint-plugin-flowtype":"^2.30.3","eslint-plugin-prettier":"^2.1.2"},"peerDependencies":{"eslint":">= 4.12.1"},"_npmOperationalInternal":{"tmp":"tmp/babel-eslint_10.1.0_1582676003548_0.6158691559662384","host":"s3://npm-registry-packages"}},"6.0.0":{"name":"babel-eslint","version":"6.0.0","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@6.0.0","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"492b617762f9713e182676c09d957e6a8e89480b","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-6.0.0.tgz","integrity":"sha512-A+Z0rSuAfEcNwnzlqB5yzV/xY0c3CztIDz4Fz+d1b/ezKqtEZL1FN6Q+bhawoC5MnLLS7y1dQRhehnSR42sdYA==","signatures":[{"sig":"MEYCIQCFZvfDMFLcM7AYuAet/RjPrjhkbzP/ziNWYmO2Dm5OGwIhAPhG0na9Z5qkd9mrcFksKuJxnAFD5LqptEIWDb9MsdCX","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js","babylon-to-espree"],"_shasum":"492b617762f9713e182676c09d957e6a8e89480b","gitHead":"000f4b841efd2b586855a08c789bc93043c1317a","scripts":{"fix":"./node_modules/eslint/bin/eslint.js index.js babylon-to-espree test --fix","lint":"./node_modules/eslint/bin/eslint.js index.js babylon-to-espree test","test":"mocha","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","bootstrap":"git submodule update --init && cd eslint && npm install","preversion":"npm test"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"3.6.0","description":"Custom parser for ESLint","directories":{},"_nodeVersion":"5.1.0","dependencies":{"babylon":"^6.0.18","babel-types":"^6.0.19","lodash.pick":"^3.1.0","lodash.assign":"^3.2.0","babel-traverse":"^6.0.20"},"devDependencies":{"mocha":"^2.3.3","eslint":"^2.4.0","espree":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/babel-eslint-6.0.0.tgz_1458964305484_0.6008776088710874","host":"packages-12-west.internal.npmjs.com"}},"6.0.1":{"name":"babel-eslint","version":"6.0.1","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@6.0.1","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"f32fb707f3483938cb02bfa5afa82683ea39b527","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-6.0.1.tgz","integrity":"sha512-3go0Jo+OSByTrnfNuFqIdL278Qq8jus6wmnQ72+m6yjCreoHlXNiXPIFuwozgnBcSvHuA1J35PQwJoge2gi+RQ==","signatures":[{"sig":"MEYCIQD10iu+sGKwhSyhUkOVSD8KBdQzaND2r3ZlKr3ystiYNwIhALcQrRpz2qrpdCeJk2bDqQiQdfWfr20uBkzU+tiNl9Ts","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js","babylon-to-espree"],"_shasum":"f32fb707f3483938cb02bfa5afa82683ea39b527","gitHead":"63635cdfc43afe471297a2a582092b8acf2aa66e","scripts":{"fix":"./node_modules/eslint/bin/eslint.js index.js babylon-to-espree test --fix","lint":"./node_modules/eslint/bin/eslint.js index.js babylon-to-espree test","test":"mocha","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","bootstrap":"git submodule update --init && cd eslint && npm install","preversion":"npm test"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"3.8.3","description":"Custom parser for ESLint","directories":{},"_nodeVersion":"5.1.0","dependencies":{"babylon":"^6.0.18","babel-types":"^6.0.19","lodash.pick":"^3.1.0","lodash.assign":"^3.2.0","babel-traverse":"^6.0.20"},"devDependencies":{"mocha":"^2.3.3","eslint":"^2.4.0","espree":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/babel-eslint-6.0.1.tgz_1459457562015_0.8723097976762801","host":"packages-12-west.internal.npmjs.com"}},"3.1.19":{"name":"babel-eslint","version":"3.1.19","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@3.1.19","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"6cef679085fa59260158c61d317e22a896312cbb","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-3.1.19.tgz","integrity":"sha512-p0MoW0sOqFq5U7DMSb94oSTRLLyA4jNHO1GnB3GkX0SYTeA4iYkSjooIRGe4b2D4rhWYECw+FTWpMUSQr4OXpg==","signatures":[{"sig":"MEQCIFz97z9IQ650V6PIpJg/77gOsfv+F9uCl5HR+xYKufvXAiA9SmFvoGNHPEY7sMulY8UxQAOciS8hhxg70HCcRPMkkQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"6cef679085fa59260158c61d317e22a896312cbb","gitHead":"fd523af9df7c87757d973db4abf7bbdd88c85230","scripts":{"test":"mocha","eslint":"cd eslint && mocha -c tests/lib/rules/**/*.js -r ../eslint-tester.js","bootstrap":"git submodule update --init && cd eslint && npm install"},"_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"3.0.0","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"2.0.0","dependencies":{"babel-core":"^5.6.4","lodash.pick":"^3.1.0","lodash.assign":"^3.0.0"},"devDependencies":{"mocha":"^2.2.5","eslint":"^0.23.0","espree":"^2.0.3"}},"4.0.10":{"name":"babel-eslint","version":"4.0.10","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@4.0.10","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"b441a0ab371b314d9d06ab16a40da7c20950632a","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-4.0.10.tgz","integrity":"sha512-Le6IFhKRKfahFVj8sAluNglfG8UstNnZJGGgeyoNHC2zI2QutnXYMcQjLEhrvs3lrowLjOwbObjSH24vwLa2iA==","signatures":[{"sig":"MEUCIEp+zbPfXVYsTDaOJQ+0l9OZQ4LEX5VItIGl/VazpvzpAiEAyq0Ms3flln9q4i79bZarobbFBtOsB/5dePyq0Wsjm1g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"b441a0ab371b314d9d06ab16a40da7c20950632a","gitHead":"8a40d77f0829015d27984b77e09e97d8a43b51bb","scripts":{"test":"mocha","eslint":"cd eslint && mocha -c tests/lib/rules/**/*.js -r ../eslint-tester.js","bootstrap":"git submodule update --init && cd eslint && npm install"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"2.13.1","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"0.12.7","dependencies":{"babel-core":"^5.6.9","lodash.pick":"^3.1.0","lodash.assign":"^3.0.0"},"devDependencies":{"mocha":"^2.2.5","eslint":"^1.1.0","espree":"^2.0.3"}},"5.0.0-beta1":{"name":"babel-eslint","version":"5.0.0-beta1","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@5.0.0-beta1","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"80f03ff6f09b84e5946852be7f2911446659442e","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-5.0.0-beta1.tgz","integrity":"sha512-Yljj5MUZ7xEOb/oKVMgwYawGGC3YAReOxrGae/NqeoTW7vlgDnWSwXPurUwJZbNZzx/n/2SI9rYuNsOkfRezHg==","signatures":[{"sig":"MEUCIQD0x85VYk+cWPdlMdeo83s3dird3/0K9O0pXoe9xZYpygIgbNGvWVWw/1l5zQHNNrGQIx2vUHHFLFlEycZ8WTiSu8c=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"80f03ff6f09b84e5946852be7f2911446659442e","gitHead":"643cdd570ef57622c884d686c99b857c9f98faab","scripts":{"lint":"./node_modules/eslint/bin/eslint.js ./test index.js acorn-to-esprima.js","test":"mocha","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","bootstrap":"git submodule update --init && cd eslint && npm install","preversion":"npm test"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"3.3.12","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"4.2.1","dependencies":{"babylon":"^6.0.18","babel-types":"^6.0.19","lodash.pick":"^3.1.0","lodash.assign":"^3.2.0","babel-traverse":"^6.0.20","acorn-to-esprima":"github:hzoo/acorn-to-esprima#babel6"},"devDependencies":{"mocha":"^2.3.3","eslint":"^1.9.0","espree":"^2.2.5"}},"5.0.0-beta2":{"name":"babel-eslint","version":"5.0.0-beta2","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@5.0.0-beta2","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"521ba3b7f51824ad0bcfbfe66eca28e1f22cc11c","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-5.0.0-beta2.tgz","integrity":"sha512-zEoe2rcbm/+GUPEB2M/gwjx3sq9KXCg6Z7cXq1SfAwXcE9v2qucISKVboMHIhhJAPKn/5DpQD+m1ST2vxQnWhQ==","signatures":[{"sig":"MEUCIQDRO3acMkWypRLIhFC7XUGLT2ktgVlA/EN32rkO+g5HRQIgZaRM+DQMWmvTr5PhW/arNc5oMIW1klnTs4ItupZ5C3o=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"521ba3b7f51824ad0bcfbfe66eca28e1f22cc11c","gitHead":"1cba0115b9694b69c6e04aa19e72dd3d305bd574","scripts":{"lint":"./node_modules/eslint/bin/eslint.js ./test index.js acorn-to-esprima.js","test":"mocha","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","bootstrap":"git submodule update --init && cd eslint && npm install","preversion":"npm test"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"3.3.12","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"4.2.1","dependencies":{"babylon":"^6.0.18","babel-types":"^6.0.19","lodash.pick":"^3.1.0","lodash.assign":"^3.2.0","babel-traverse":"^6.0.20","acorn-to-esprima":"github:hzoo/acorn-to-esprima#babel6"},"devDependencies":{"mocha":"^2.3.3","eslint":"^1.9.0","espree":"^2.2.5"}},"5.0.0-beta3":{"name":"babel-eslint","version":"5.0.0-beta3","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@5.0.0-beta3","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"f019a5927f73c6c74f9423c0aa6950ef754b0a1a","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-5.0.0-beta3.tgz","integrity":"sha512-wEGpFQThHy1A1BuZ9yv8aP0I6Tgi1HyYnsHv1j6FCMrH+W/y6KsrMfq86LVRH4xlpRzJ8cc65FWBRrN7MmaaNQ==","signatures":[{"sig":"MEQCIHZzGgxyev+jyzkW2ywvw9eqky3KIMhJ2QNSvLc47A0KAiBvHmz7pDAsnxhsuxXRJJeBKf6PzJ2a7fZo8Yo9TTFeLw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"f019a5927f73c6c74f9423c0aa6950ef754b0a1a","gitHead":"078e1dea951e3954f5f1b73f83a31e7b6dbcb23e","scripts":{"lint":"./node_modules/eslint/bin/eslint.js ./test index.js acorn-to-esprima.js","test":"mocha","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","bootstrap":"git submodule update --init && cd eslint && npm install","preversion":"npm test"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"3.3.12","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"4.2.1","dependencies":{"babylon":"^6.0.18","babel-types":"^6.0.19","lodash.pick":"^3.1.0","lodash.assign":"^3.2.0","babel-traverse":"^6.0.20","acorn-to-esprima":"github:hzoo/acorn-to-esprima#babel6"},"devDependencies":{"mocha":"^2.3.3","eslint":"^1.9.0","espree":"^2.2.5"}},"3.1.20":{"name":"babel-eslint","version":"3.1.20","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@3.1.20","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"b197919e8d9a0b5d281c64683c4a8e90abe80264","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-3.1.20.tgz","integrity":"sha512-1uf0QAAq8Xdtk0W++FoS8hRMgE8x3/uYdR/2xR8qfwVXQqFTCGKJGMmcOwOhZrBWmhsq9nk3ZVL9xkzeBP4Epg==","signatures":[{"sig":"MEUCIQC66rqLdRMkdKClKUfTRMMcw34ecv/lqWeapzeDq/yXgAIgebAke7iCFT9H+r2E/5IAY+fmZQBcv6GEWk4v2QBUetQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"b197919e8d9a0b5d281c64683c4a8e90abe80264","gitHead":"fb0402cc11cacec701b94b743b22821c882b2610","scripts":{"test":"mocha","eslint":"cd eslint && mocha -c tests/lib/rules/**/*.js -r ../eslint-tester.js","bootstrap":"git submodule update --init && cd eslint && npm install"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"2.12.0","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"0.10.38","dependencies":{"babel-core":"^5.6.4","lodash.pick":"^3.1.0","lodash.assign":"^3.0.0"},"devDependencies":{"mocha":"^2.2.5","eslint":"^0.23.0","espree":"^2.0.3"}},"5.0.0-beta4":{"name":"babel-eslint","version":"5.0.0-beta4","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@5.0.0-beta4","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"539779e8def97c40ba85d80fa26a0cf0e7bbd5c9","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-5.0.0-beta4.tgz","integrity":"sha512-THwujiJraL+ATzzbRIUxaqa+GEfTFHawtapUs0uMxBhD/P+sz9c3Qb6iybNLCb7FuRIJnEfZkCegKMTfoOaYGw==","signatures":[{"sig":"MEYCIQCvaqtDddKjD4zpLsVL7UIxB3iJXOIJmba6r4WHfTIOVAIhAIfsvGUDjONVwS/UTLlGG0Ejb86zg94Iae7jtZynaYJ1","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"539779e8def97c40ba85d80fa26a0cf0e7bbd5c9","gitHead":"9ba5a3f7ab77c1dc4cd91e0f4d0fbfea97b26983","scripts":{"lint":"./node_modules/eslint/bin/eslint.js ./test index.js acorn-to-esprima.js","test":"mocha","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","bootstrap":"git submodule update --init && cd eslint && npm install","preversion":"npm test"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"3.3.12","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"4.2.1","dependencies":{"babylon":"^6.0.18","babel-types":"^6.0.19","lodash.pick":"^3.1.0","lodash.assign":"^3.2.0","babel-traverse":"^6.0.20","acorn-to-esprima":"^2.0.1"},"devDependencies":{"mocha":"^2.3.3","eslint":"^1.9.0","espree":"^2.2.5"}},"3.1.21":{"name":"babel-eslint","version":"3.1.21","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@3.1.21","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"d38eecba485b5ce40cb5d300e4a4128126fc483f","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-3.1.21.tgz","integrity":"sha512-vAXGyZpmejNPBsMoBClTYTvb2QVllmLXcUQYciIG/qVZFyvxdzeURE/kWvQ+xWIezOFbilGyV2VV9+KMs9olsA==","signatures":[{"sig":"MEUCIQCvpXdVxE92AgGARbF3MGi5ou33rntLtOE8eiWkGy2znwIgB7OS7eGlemxFEqhzTRaJp7wEeo9f/zUYqDkVIh8lMuU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"d38eecba485b5ce40cb5d300e4a4128126fc483f","gitHead":"7d94c7be9441676127cacec5342e9c3bb0c50296","scripts":{"test":"mocha","eslint":"cd eslint && mocha -c tests/lib/rules/**/*.js -r ../eslint-tester.js","bootstrap":"git submodule update --init && cd eslint && npm install"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"2.12.0","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"0.10.38","dependencies":{"babel-core":"^5.6.4","lodash.pick":"^3.1.0","lodash.assign":"^3.0.0"},"devDependencies":{"mocha":"^2.2.5","eslint":"^0.24.0","espree":"^2.0.3"}},"5.0.0-beta5":{"name":"babel-eslint","version":"5.0.0-beta5","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@5.0.0-beta5","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"67482778bd9b683540ff36912dda6525569fd3cf","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-5.0.0-beta5.tgz","integrity":"sha512-0LICqc3OEUw7SW5iD8gVa5K/WilBxklucw5F7EFijt0XBIeQIjkljh/vNnuXWeBlqyPmiqCv2fNHdJDEVLCaVQ==","signatures":[{"sig":"MEYCIQCrinXHLdyB1s1ZnUcWcuwJOTW9Tv7n1N0+H9RMEK1QgwIhAPSYXPI2F+5aA9t93ktfS/PN/t2JJrRm4vJdOADKmu87","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"67482778bd9b683540ff36912dda6525569fd3cf","gitHead":"4b2a9b79b1f6181dc62f03edf174be572dc0c370","scripts":{"lint":"./node_modules/eslint/bin/eslint.js ./test index.js acorn-to-esprima.js","test":"mocha","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","bootstrap":"git submodule update --init && cd eslint && npm install","preversion":"npm test"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"3.3.12","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"5.1.0","dependencies":{"babylon":"^6.0.18","babel-types":"^6.0.19","lodash.pick":"^3.1.0","lodash.assign":"^3.2.0","babel-traverse":"^6.0.20","acorn-to-esprima":"^2.0.3"},"devDependencies":{"mocha":"^2.3.3","eslint":"^1.10.2","espree":"^2.2.5"}},"5.0.0-beta6":{"name":"babel-eslint","version":"5.0.0-beta6","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@5.0.0-beta6","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"ba61da7d14f7b4e3a8098aee37b446d22e227614","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-5.0.0-beta6.tgz","integrity":"sha512-9G9OXPsaE4aTB22GFQCYgivThGz5vuQZBPhrtii4xEIWClEH9F3ns2SzunjYsSeTleOosMghknmIxMkycH0CTw==","signatures":[{"sig":"MEUCIQD9PAQHxZXVvU9m42/n/pSD8onWtEPmDengU24z/qiA4QIgN5h8qVsOBGb4hZgRTBwYlZequ7mMaT0wuDnGOg+TTTo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"ba61da7d14f7b4e3a8098aee37b446d22e227614","gitHead":"380142822364cabcad485f30757a92382994b693","scripts":{"lint":"./node_modules/eslint/bin/eslint.js ./test index.js acorn-to-esprima.js","test":"mocha","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","bootstrap":"git submodule update --init && cd eslint && npm install","preversion":"npm test"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"3.3.12","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"5.1.0","dependencies":{"babylon":"^6.0.18","babel-types":"^6.0.19","lodash.pick":"^3.1.0","lodash.assign":"^3.2.0","babel-traverse":"^6.0.20","acorn-to-esprima":"^2.0.4"},"devDependencies":{"mocha":"^2.3.3","eslint":"^1.10.2","espree":"^2.2.5"}},"3.0.0":{"name":"babel-eslint","version":"3.0.0","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@3.0.0","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"6c6b0b1ff1b78fe12159fa06a56c3845fdecc64e","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-3.0.0.tgz","integrity":"sha512-W+d3Q1R/E6aaS8HmkaU9lmVsF2/g/qVOZZNvXY9UD16oemgKCyEDI1LonlZ+iU6dIloX8xwkHE1x1AQmB4pSvw==","signatures":[{"sig":"MEUCIQC7vMnd//XEdbFnQb0gfvALGyVpIq+jKmJqBsjRWmhROAIgcaNZZbBEhblpgtSAejDQ+Efvf6KX1S0UDlsl7lJ/oK8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"6c6b0b1ff1b78fe12159fa06a56c3845fdecc64e","gitHead":"0c34385ea0bf319134e68ce717b5fc58378f2bcf","scripts":{"test":"mocha"},"_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"2.7.5","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"1.6.4","dependencies":{"babel-core":"^5.1.8","lodash.assign":"^3.0.0"},"devDependencies":{"mocha":"^2.1.0","eslint":"^0.18.0","espree":"^2.0.0"}},"5.0.0-beta7":{"name":"babel-eslint","version":"5.0.0-beta7","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@5.0.0-beta7","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"3073f3f23911fe6580aa17b177326ae38503bcf4","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-5.0.0-beta7.tgz","integrity":"sha512-spT7uXgt92bqyGb3Nqcc1TSh9Ox/9UBY8LVdoKyVvQF3Upi1CntsreMtl4K9gkj0+HncSpwqGeQ0EeVeGO3XHw==","signatures":[{"sig":"MEUCIBJ4tqciRc4R1CD75/loqn3d1bqycd17+1w5c64mLQFHAiEAykGKYtBUS/19rS8ggcM8nmByLG4576seA07cKctoR9I=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"3073f3f23911fe6580aa17b177326ae38503bcf4","gitHead":"937ecebfe4369ab7785bbcd16419286e9203b471","scripts":{"lint":"./node_modules/eslint/bin/eslint.js ./test index.js acorn-to-esprima.js","test":"mocha","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","bootstrap":"git submodule update --init && cd eslint && npm install","preversion":"npm test"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"2.13.4","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"0.12.7","dependencies":{"babylon":"^6.0.18","babel-types":"^6.0.19","lodash.pick":"^3.1.0","lodash.assign":"^3.2.0","babel-traverse":"^6.0.20","acorn-to-esprima":"^2.0.4"},"devDependencies":{"mocha":"^2.3.3","eslint":"^1.10.2","espree":"^2.2.5"}},"5.0.0-beta8":{"name":"babel-eslint","version":"5.0.0-beta8","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@5.0.0-beta8","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"998fa146fc2ab793c266d828c440bc5f73a08cba","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-5.0.0-beta8.tgz","integrity":"sha512-cZHD1NIj1m5u1ZYASpBx1K39knnT9IWD+TQEr701FPs/YIzkDBrI0x6bk9kbsDsXD4z+tjlcDGe4i17GGGN8+A==","signatures":[{"sig":"MEQCIAaYPfDoFV/ZD5079peJlT9Xc3Bp9jL2TnXW7Shj9cAvAiA02fe/oyghFUEW5yHqTEju8o74gctk3xbTPQs11xnj7Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"998fa146fc2ab793c266d828c440bc5f73a08cba","gitHead":"3dcb32ced84799131dfb817d43d7723616669a48","scripts":{"lint":"./node_modules/eslint/bin/eslint.js ./test index.js acorn-to-esprima.js","test":"mocha","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","bootstrap":"git submodule update --init && cd eslint && npm install","preversion":"npm test"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"repository":{"url":"https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"1.4.28","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"dependencies":{"babylon":"^6.0.18","babel-types":"^6.0.19","lodash.pick":"^3.1.0","lodash.assign":"^3.2.0","babel-traverse":"^6.0.20","acorn-to-esprima":"^2.0.4"},"devDependencies":{"mocha":"^2.3.3","eslint":"^1.10.2","espree":"^2.2.5"}},"5.0.0-beta9":{"name":"babel-eslint","version":"5.0.0-beta9","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@5.0.0-beta9","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"e852b955abdb3270d4a8098ef023152c7cad78f0","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-5.0.0-beta9.tgz","integrity":"sha512-TSLckEDUngQ4IcDITcqHBd6FC03FY2mvvvUlq73K8tvVDLZQuBdqm5a/fxuWjAgpBUvhdhKJUoptH5k5rodBuQ==","signatures":[{"sig":"MEYCIQCRoih9S8vL3EqAItnqnFdPA9Ve4eU3rX3kzdcfWE8q8QIhAOTaa0WZqrskjX/XZ49iq7P09INqClxwZM6MlrxR3Vpv","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"e852b955abdb3270d4a8098ef023152c7cad78f0","gitHead":"0d3088227dc3b0114228ea09c566129f8a00a18f","scripts":{"lint":"./node_modules/eslint/bin/eslint.js ./test index.js acorn-to-esprima.js","test":"mocha","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","bootstrap":"git submodule update --init && cd eslint && npm install","preversion":"npm test"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"3.6.0","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"5.1.0","dependencies":{"babylon":"^6.0.18","babel-types":"^6.0.19","lodash.pick":"^3.1.0","lodash.assign":"^3.2.0","babel-traverse":"^6.0.20","acorn-to-esprima":"^2.0.4"},"devDependencies":{"mocha":"^2.3.3","eslint":"^1.10.2","espree":"^2.2.5"},"_npmOperationalInternal":{"tmp":"tmp/babel-eslint-5.0.0-beta9.tgz_1454355716378_0.9311813565436751","host":"packages-8-eu.internal.npmjs.com"}},"3.1.28":{"name":"babel-eslint","version":"3.1.28","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@3.1.28","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"41188ed389a65aab568676a89596cd8c1d0c287e","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-3.1.28.tgz","integrity":"sha512-BlFRiZmSynPKjtgb7WNRS9FaVFNDue7A0DQUgTBbQORtZa4Gt46syYgcWkCWBFpjqjoRl43iHFCQxBHAatz5sw==","signatures":[{"sig":"MEQCIHfvGjfUiHnQpHSI7+gh7LH7OyEZuzhEEyvhiW0QrASZAiBwnOs0DQbsbUyrkr/PEZcIngUH2n/0plNDehjaZd/OqQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"41188ed389a65aab568676a89596cd8c1d0c287e","gitHead":"9ca302694a1bdeeac9f28854d7b50e81e0f407ea","scripts":{"test":"mocha","eslint":"cd eslint && mocha -c tests/lib/rules/**/*.js -r ../eslint-tester.js","bootstrap":"git submodule update --init && cd eslint && npm install"},"_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"2.12.1","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"2.3.4","dependencies":{"babel-core":"^5.6.4","lodash.pick":"^3.1.0","lodash.assign":"^3.0.0"},"devDependencies":{"mocha":"^2.2.5","eslint":"^0.24.0","espree":"^2.0.3"}},"3.1.29":{"name":"babel-eslint","version":"3.1.29","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@3.1.29","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"ed236c36b387625219bebcbb0a909a6d791bba36","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-3.1.29.tgz","integrity":"sha512-2kmlAMY22mgHc7hk7GELemtGn6SYVh2cebn5dAEdKGoCwpGS62l9VsAOpdQvqkrPRK1ymBkZT18XmMQvq38x5g==","signatures":[{"sig":"MEUCIBae5haKyy6lcHUtIR3xlmfnljrqgZeTypMb0SMb6JxQAiEA9WPyQCKdKWQZVSkCPvmoT/tzMdd8ZYT/4CvV1666mJU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"ed236c36b387625219bebcbb0a909a6d791bba36","gitHead":"06a37a08a29552d39b0999d1c59ce2c988fe8295","scripts":{"test":"mocha","eslint":"cd eslint && mocha -c tests/lib/rules/**/*.js -r ../eslint-tester.js","bootstrap":"git submodule update --init && cd eslint && npm install"},"_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"2.12.1","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"2.3.4","dependencies":{"babel-core":"^5.6.4","lodash.pick":"^3.1.0","lodash.assign":"^3.0.0"},"devDependencies":{"mocha":"^2.2.5","eslint":"^0.24.0","espree":"^2.0.3"}},"3.1.26":{"name":"babel-eslint","version":"3.1.26","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@3.1.26","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"0eae90608586ba9079d65a6384d90040007759d0","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-3.1.26.tgz","integrity":"sha512-9/OGy50x26rs6dzFeKyPG+2C5bOvPnJYXSDyk5xcL4AJFuXRxIjVwE2INtk3m3Wl01o8nP6QrNMsqVf6cXomUA==","signatures":[{"sig":"MEUCIQD4WFRYHYjOp5BuItR+VoxffrEqCv9x1W1OSW2B5L2XBQIgE6HhOnqaVhCELbSGw1tcWN/pxGzHxrwgbtvHxZQqn6k=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"0eae90608586ba9079d65a6384d90040007759d0","gitHead":"45b8209511b2693f0378d4f387b672a40e49ab2d","scripts":{"test":"mocha","eslint":"cd eslint && mocha -c tests/lib/rules/**/*.js -r ../eslint-tester.js","bootstrap":"git submodule update --init && cd eslint && npm install"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"2.13.2","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"2.3.4","dependencies":{"babel-core":"^5.6.4","lodash.pick":"^3.1.0","lodash.assign":"^3.0.0"},"devDependencies":{"mocha":"^2.2.5","eslint":"^0.24.0","espree":"^2.0.3"}},"3.1.27":{"name":"babel-eslint","version":"3.1.27","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@3.1.27","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"540952619a8305be2201efb42cdc19a1cfa2772a","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-3.1.27.tgz","integrity":"sha512-acO/Kos4CQ9FJ9hyZgJkf9XVdim5AwHP1kTOfrqRo760ve6aeGJTdJU+6nTm76MLSJ4om+SXsonUPttP88jYaA==","signatures":[{"sig":"MEUCIAGIdM4vPuSMUzlCbPLk3/F+853kwtE7CHhe1keQqH/XAiEA7PBLyIau5xzxj0rd+XCjzaghFBbysOUa+9ROOnVZPh0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"540952619a8305be2201efb42cdc19a1cfa2772a","gitHead":"41bcd680a6b0ef945449bbd740e6a57786a5da4b","scripts":{"test":"mocha","eslint":"cd eslint && mocha -c tests/lib/rules/**/*.js -r ../eslint-tester.js","bootstrap":"git submodule update --init && cd eslint && npm install"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"2.13.2","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"2.3.4","dependencies":{"babel-core":"^5.6.4","lodash.pick":"^3.1.0","lodash.assign":"^3.0.0"},"devDependencies":{"mocha":"^2.2.5","eslint":"^0.24.0","espree":"^2.0.3"}},"3.0.1":{"name":"babel-eslint","version":"3.0.1","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@3.0.1","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"e26a23a12de90cc37731b3244f27f28ff60062a6","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-3.0.1.tgz","integrity":"sha512-UlysbVZVS7oTJaVwULDaxzWXF6lVlPX/CGIZ9wH3r/E5kby2bpg2prmyX4ip7AhPbCQeSAhTMGPL01vn79dUpw==","signatures":[{"sig":"MEYCIQC9NADdslS0OiMAkcLe8zXlziKPHgyYBnVEoa4jAKGTlwIhALShJHnJrHzRYvRcblReHROdG/VhLSIP37wxvwl/NYQw","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"e26a23a12de90cc37731b3244f27f28ff60062a6","gitHead":"1bc620f665e9ca7bb19be6c5405b3c18e9b97377","scripts":{"test":"mocha"},"_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"2.7.5","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"1.6.4","dependencies":{"babel-core":"^5.1.8","lodash.assign":"^3.0.0"},"devDependencies":{"mocha":"^2.1.0","eslint":"^0.18.0","espree":"^2.0.0"}},"3.1.24":{"name":"babel-eslint","version":"3.1.24","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@3.1.24","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"1025320cea92bfb7e5e6b705f0cbcdb36ef223b5","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-3.1.24.tgz","integrity":"sha512-Efzp5FBRECey1duzOC38642s1F2Q04yi7EkWDfa60mpsvuJwl7DrB675aBLTbsg3O4C1Y2OunyfxLLWHe3YYuw==","signatures":[{"sig":"MEUCIQCUAwf7GzBDDfj0eRGlP20wRxY60V8GQpkq9h38qXRCbAIgK+odO2TECClzj1Nw1XOGCBK0uxm+x4XwvrXr8grbHys=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"1025320cea92bfb7e5e6b705f0cbcdb36ef223b5","gitHead":"7112930c7e454e8c0bbceb1153c25d4db5d29cb5","scripts":{"test":"mocha","eslint":"cd eslint && mocha -c tests/lib/rules/**/*.js -r ../eslint-tester.js","bootstrap":"git submodule update --init && cd eslint && npm install"},"_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"2.12.1","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"2.3.4","dependencies":{"babel-core":"^5.6.4","lodash.pick":"^3.1.0","lodash.assign":"^3.0.0"},"devDependencies":{"mocha":"^2.2.5","eslint":"^0.24.0","espree":"^2.0.3"}},"7.2.3":{"name":"babel-eslint","version":"7.2.3","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@7.2.3","maintainers":[{"name":"danez","email":"daniel@tschinder.de"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"sebmck","email":"sebmck@gmail.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"b2fe2d80126470f5c19442dc757253a897710827","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-7.2.3.tgz","integrity":"sha512-i2yKOhjgwUbUrJ8oJm6QqRzltIoFahGNPZ0HF22lUN4H1DW03JQyJm7WSv+I1LURQWjDNhVqFo04acYa07rhOQ==","signatures":[{"sig":"MEYCIQDgmwjGbBbwadzRsTdPBKP2of354WBn2GiXQpETmbRJGwIhAOpJOCP4WQWX5jIm3kLiPUoSySHdC7ldPtFDcWwelInL","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js","babylon-to-espree"],"_shasum":"b2fe2d80126470f5c19442dc757253a897710827","engines":{"node":">=4"},"gitHead":"94bb5a1d36c5624fb612de2dd704ffa586d38845","scripts":{"fix":"eslint index.js babylon-to-espree test --fix","lint":"eslint index.js babylon-to-espree test","test":"npm run lint && npm run test-only","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","test-only":"mocha","preversion":"npm test"},"_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"3.10.10","description":"Custom parser for ESLint","directories":{},"_nodeVersion":"6.10.0","dependencies":{"babylon":"^6.17.0","babel-types":"^6.23.0","babel-traverse":"^6.23.1","babel-code-frame":"^6.22.0"},"devDependencies":{"mocha":"^3.0.0","dedent":"^0.7.0","eslint":"^3.18.0","espree":"^3.4.0","babel-eslint":"^7.0.0","eslint-config-babel":"^6.0.0","eslint-plugin-flowtype":"^2.30.3"},"_npmOperationalInternal":{"tmp":"tmp/babel-eslint-7.2.3.tgz_1492809267094_0.871210214914754","host":"packages-18-east.internal.npmjs.com"}},"3.1.25":{"name":"babel-eslint","version":"3.1.25","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@3.1.25","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"0ab6a7843b57cb046f7bf68f2ed15d0fcfc6d8c5","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-3.1.25.tgz","integrity":"sha512-CMge1BE5XA0F034adm6hijoCOb2tpgkOB4vCAvex43mxvvTNDO5/Xlod9RYJ7XzILeDv49rQLpYbXekguVzwAg==","signatures":[{"sig":"MEUCIFytK8kC5U7eu0zRtdcv8sW/aNbtlzbyL4/w/7Q9wQpiAiEA2oXKlu9y5Y59A9Ei4MyOAZszR/NkRiAFoHEbaiwT0vo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"0ab6a7843b57cb046f7bf68f2ed15d0fcfc6d8c5","gitHead":"82a60b9b84f27b42e6a7b1872b7dc84f61b54e15","scripts":{"test":"mocha","eslint":"cd eslint && mocha -c tests/lib/rules/**/*.js -r ../eslint-tester.js","bootstrap":"git submodule update --init && cd eslint && npm install"},"_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"2.12.1","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"2.3.4","dependencies":{"babel-core":"^5.6.4","lodash.pick":"^3.1.0","lodash.assign":"^3.0.0"},"devDependencies":{"mocha":"^2.2.5","eslint":"^0.24.0","espree":"^2.0.3"}},"3.1.22":{"name":"babel-eslint","version":"3.1.22","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@3.1.22","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"27777bf433ab2923b07c8bd660ef5439b41dc2fe","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-3.1.22.tgz","integrity":"sha512-GIwZY0S2gbJKzMDYHjK529cfk2muLIBBGHozvOsVqM0J7o7QIA4rzIgafwqyA4oirUgAX8TX3vldspFnkrZ8rQ==","signatures":[{"sig":"MEQCIFV6HmSg3YXxW53agUsDcd1ejpPiMsAVz6X0oOBxImRDAiAK06Gg5wiM1md5etVNwwqmlJvxEb51yYNbt4LbHxEsyg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"27777bf433ab2923b07c8bd660ef5439b41dc2fe","gitHead":"3508eab9052d9047546dde5ee03d415a921957f1","scripts":{"test":"mocha","eslint":"cd eslint && mocha -c tests/lib/rules/**/*.js -r ../eslint-tester.js","bootstrap":"git submodule update --init && cd eslint && npm install"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"2.12.0","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"0.10.38","dependencies":{"babel-core":"^5.6.4","lodash.pick":"^3.1.0","lodash.assign":"^3.0.0"},"devDependencies":{"mocha":"^2.2.5","eslint":"^0.24.0","espree":"^2.0.3"}},"3.1.23":{"name":"babel-eslint","version":"3.1.23","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@3.1.23","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"c755e5c16404c764ce6a4fd4574a0cd6ac4e5f7e","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-3.1.23.tgz","integrity":"sha512-SrV3r/0wu0SIypMIb23bzBZVwWLzFgUkQkMotcVgxfu/vmfapQ3vljfi6ded9qCqBQFkRxST7X8babl2Hm9CtA==","signatures":[{"sig":"MEUCIGHwHfDpF1XFPtkl3DIV4K9+8lm/xuNpMstPr6DBRnxxAiEAvZkBEtAEUd34s/Xe7/1LmtnSsJ61XF69ZUxdDFt0Y58=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"c755e5c16404c764ce6a4fd4574a0cd6ac4e5f7e","gitHead":"5bbc0023d8162e256b5a4b358fa9b268eb2da4b3","scripts":{"test":"mocha","eslint":"cd eslint && mocha -c tests/lib/rules/**/*.js -r ../eslint-tester.js","bootstrap":"git submodule update --init && cd eslint && npm install"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"2.12.0","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"0.10.38","dependencies":{"babel-core":"^5.6.4","lodash.pick":"^3.1.0","lodash.assign":"^3.0.0"},"devDependencies":{"mocha":"^2.2.5","eslint":"^0.24.0","espree":"^2.0.3"}},"7.1.0":{"name":"babel-eslint","version":"7.1.0","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@7.1.0","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"d506a5174ba224e25a2d17e128e2ba8987139ddc","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-7.1.0.tgz","integrity":"sha512-e6OC9K9QNTPmSaWnU0wv55wzvml68iYYYmYKduML3zFaRAOawiZ2zhCR3XZPtCl+D0VVpKIKwzDWOZChJ+P/KQ==","signatures":[{"sig":"MEUCIErwZOxx5aOTPn7tnp8JPhbEexEil1uV43zZtLFagzseAiEA5kEzq5z/reO6cZeXSs9PyMaQsootQg8SQiHAazqZNoM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js","babylon-to-espree"],"_shasum":"d506a5174ba224e25a2d17e128e2ba8987139ddc","engines":{"node":">=4"},"gitHead":"931d8a91d634b48f3b26f1f506da68435dbe955e","scripts":{"fix":"eslint index.js babylon-to-espree test --fix","lint":"eslint index.js babylon-to-espree test","test":"npm run lint && npm run test-only","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","bootstrap":"git submodule update --init && cd eslint && npm install","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","test-only":"mocha","preversion":"npm test"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"3.10.8","description":"Custom parser for ESLint","directories":{},"_nodeVersion":"6.8.1","dependencies":{"babylon":"^6.11.2","babel-types":"^6.15.0","lodash.pickby":"^4.6.0","babel-traverse":"^6.15.0"},"devDependencies":{"mocha":"^3.0.0","eslint":"^3.6.0","espree":"^3.3.1","babel-eslint":"^7.0.0","eslint-config-babel":"^2.0.1","eslint-plugin-babel":"^3.3.0","eslint-plugin-flowtype":"^2.4.0"},"_npmOperationalInternal":{"tmp":"tmp/babel-eslint-7.1.0.tgz_1477507046520_0.19844479975290596","host":"packages-18-east.internal.npmjs.com"}},"7.1.1":{"name":"babel-eslint","version":"7.1.1","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@7.1.1","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"8a6a884f085aa7060af69cfc77341c2f99370fb2","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-7.1.1.tgz","integrity":"sha512-fDjlUdJc1EsqmCvin6uLH6Oxz2XbEegkgD70zYwHW6yJNYoz4DJ0P+v4MesQo6u+OGr4k1cm7yYXHCx4SvYSug==","signatures":[{"sig":"MEUCIAYZQJLAZgbCBoXTu5iM+BSdPwGnTO/h0ZnUcGOOsQuLAiEA1Di2qXL801z4d1OCzIcCSzkfIbHFCrQ0T+yIKaxLtLg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js","babylon-to-espree"],"_shasum":"8a6a884f085aa7060af69cfc77341c2f99370fb2","engines":{"node":">=4"},"gitHead":"bc482f4479e73f4609d97dc9c7abda848d7ccc63","scripts":{"fix":"eslint index.js babylon-to-espree test --fix","lint":"eslint index.js babylon-to-espree test","test":"npm run lint && npm run test-only","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","bootstrap":"git submodule update --init && cd eslint && npm install","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","test-only":"mocha","preversion":"npm test"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"3.10.8","description":"Custom parser for ESLint","directories":{},"_nodeVersion":"6.9.0","dependencies":{"babylon":"^6.13.0","babel-types":"^6.15.0","lodash.pickby":"^4.6.0","babel-traverse":"^6.15.0","babel-code-frame":"^6.16.0"},"devDependencies":{"mocha":"^3.0.0","eslint":"^3.9.1","espree":"^3.3.1","babel-eslint":"^7.0.0","eslint-config-babel":"^2.0.1","eslint-plugin-babel":"^4.0.0","eslint-plugin-flowtype":"^2.4.0"},"_npmOperationalInternal":{"tmp":"tmp/babel-eslint-7.1.1.tgz_1479423577580_0.5264919744804502","host":"packages-12-west.internal.npmjs.com"}},"3.1.8":{"name":"babel-eslint","version":"3.1.8","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@3.1.8","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"43951e35da931d2f8c92acc03fac313cd322b185","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-3.1.8.tgz","integrity":"sha512-Mj4ZArOerrIm8lHmY/Ui4DxWxchdXeuG/Uq6gZJs5eaJI0BWDBD4RudKKENG+p78l3ZiM3BXF1GGoUk6FMqtfg==","signatures":[{"sig":"MEUCIBlklhpH0V5UkRMnLFI29q9k0/bKhV0VRTRCM2144lE8AiEA98VpvykHNhMYlY+q/k9uhfI+eUXEo6dTZfsk6zq9wy4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"43951e35da931d2f8c92acc03fac313cd322b185","gitHead":"4e538c4dc850bcb49ecd0a2e0f7b781b56aae33d","scripts":{"test":"mocha"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"2.7.1","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"0.10.36","dependencies":{"babel-core":"^5.1.8","lodash.assign":"^3.0.0"},"devDependencies":{"mocha":"^2.1.0","eslint":"^0.21.2","espree":"^2.0.0"}},"3.1.9":{"name":"babel-eslint","version":"3.1.9","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@3.1.9","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"0c2f3a0865f682ea971ff53e9b83f10ea49c6815","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-3.1.9.tgz","integrity":"sha512-4Vlfz9xrCwVgRFZ9cx2YZ2V6FXqPixpjzAiWAv53mXsKJ97ehKGMKFzn+dqDqUy6zqYjScGwCCVgEGjlgU5VHg==","signatures":[{"sig":"MEQCIEGRi2MM5Dkq+SWtnB7nzu7NoZdqmdf0ti060xz+cWX5AiAPXCbB5pA3lnO9qvq6coV3FU7SpcC2Pob9JH1lhnD0WQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"0c2f3a0865f682ea971ff53e9b83f10ea49c6815","gitHead":"a1fffcd1ab01df61e10cc540be90df307699c4a8","scripts":{"test":"mocha"},"_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"2.9.0","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"2.0.0","dependencies":{"babel-core":"^5.1.8","lodash.assign":"^3.0.0"},"devDependencies":{"mocha":"^2.1.0","eslint":"^0.21.2","espree":"^2.0.0"}},"1.0.3":{"name":"babel-eslint","version":"1.0.3","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@1.0.3","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"06508246116ef32eb75ebcc0c6f939aa8bf883b6","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-1.0.3.tgz","integrity":"sha512-3HiImjloJLC/IwMvQHFdgGSTmt8vcfpppeE2OA+EPwvqQyMOFrznzeEZ97Fapmw/ndf8ilkDy+2aQhfbO9leAQ==","signatures":[{"sig":"MEUCIQDu9Eb+7VITSVTNOZBxxdKpHS8BP7E9fFLTNpPkroaMkQIgV3XaBanDstQHZOlmoAmVtQKOYzO+y7ou39QtyFoogec=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"06508246116ef32eb75ebcc0c6f939aa8bf883b6","gitHead":"3c1ac5dedcc37fd5d48bf06e89122d4581471d9b","scripts":{},"_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"2.6.0","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [eslint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"1.4.1","dependencies":{"babel":"^4.6.0","lodash":"^3.3.1"}},"1.0.4":{"name":"babel-eslint","version":"1.0.4","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@1.0.4","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"c9fc728bb572ee57818dafcefb9639d75e5fa12a","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-1.0.4.tgz","integrity":"sha512-xkJ62NbiwIOkFIgO6g1LNoU3+sDgvr9bnsb2IxGT2hB2aVbpN1a1gzJsCMvT+5TevhzIRfNejwbBEQsbae9+2Q==","signatures":[{"sig":"MEUCIQDUomV2wmwFH2j7wkBPf5AfXTX6m+h4dHwXVVsGC97pHgIgfJp7yi5I7NMom3mCH+0tcko1QZjj1HlBK96CJrkonus=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"c9fc728bb572ee57818dafcefb9639d75e5fa12a","gitHead":"bc5a95f073741d7c78160448a3a15631a1378220","scripts":{},"_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"2.6.0","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"1.4.1","dependencies":{"babel":"^4.6.0","lodash":"^3.3.1"}},"3.1.10":{"name":"babel-eslint","version":"3.1.10","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@3.1.10","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"481ce797ced379f5135d998b3dc9369b2b1c23ef","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-3.1.10.tgz","integrity":"sha512-2SojnlQ1hZcpfBgMaOq8vI1SJFwskN1b6n8iwFlTOtCH7u9jl+7QOkTDV6zkwUmjWTwdj6/5o4pcEsHQTD6qtQ==","signatures":[{"sig":"MEYCIQDx+zM6bfbmCWnrPg4g2yPyh02esYxZLMsGyJvSQkB1OQIhAO1RDz6JF9DS20vAXAFs133WD6kuC65cAElSZ1nmPSqf","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"481ce797ced379f5135d998b3dc9369b2b1c23ef","gitHead":"fdeb0221e898480b3f9cc7bcee1ebcc5bb5edbe6","scripts":{"test":"mocha"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"2.7.1","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"0.10.36","dependencies":{"babel-core":"^5.1.8","lodash.pick":"^3.1.0","lodash.assign":"^3.0.0"},"devDependencies":{"mocha":"^2.1.0","eslint":"^0.22.1","espree":"^2.0.0"}},"1.0.6":{"name":"babel-eslint","version":"1.0.6","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@1.0.6","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"294949566a1b211f2fed9352b2e6d41593fd3556","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-1.0.6.tgz","integrity":"sha512-xA4ZEgNnwTsO8jeZHRU21+byZTHXNjb4e5GB36nbONEjAwiHqFHd67ApcusM/+gs4w2tShjPgyqMBtyAjyFJsw==","signatures":[{"sig":"MEUCIAzEAgWx/z+MceYyN8bHY9zZnz1t3UqMzOX9O5gQVqmhAiEAqUGw1BwaNnO9NhTJheR/vXJm2Sxl+r2sTrKyuQX+oR8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"294949566a1b211f2fed9352b2e6d41593fd3556","gitHead":"92db8b16359b28961a8ded68d6b168692e8506fb","scripts":{},"_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"2.6.0","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"1.4.1","dependencies":{"babel":"^4.6.0","lodash":"^3.3.1"}},"1.0.7":{"name":"babel-eslint","version":"1.0.7","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@1.0.7","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"d46d8b42cc520434b41d9a4f430b2758afdc5efe","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-1.0.7.tgz","integrity":"sha512-I2DhZbb9y+6/74fJlSq5wc6UNpyCb43fiW6rEzokwR8SainpsDMb6V8LgC6WidlKKKE6cTIy3lrtRSoBa4P6zw==","signatures":[{"sig":"MEUCIQC8H8a8g9P/GRHgfLHek50hAKMoyQ5AGtPm5ONM44hqSQIgL5v4aPVRV9gy33ydl19D/R+06aMH8uAmNyNqeZLQ8K0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"d46d8b42cc520434b41d9a4f430b2758afdc5efe","gitHead":"67f8efdc35a4e5083149b850e7840b839047d3a8","scripts":{},"_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"2.6.0","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"1.4.1","dependencies":{"babel":"^4.6.0","lodash":"^3.3.1"}},"1.0.8":{"name":"babel-eslint","version":"1.0.8","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@1.0.8","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"574bc4960b071b2ac0fc7c5aa223fc3da3587735","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-1.0.8.tgz","integrity":"sha512-Xoqlxj0As+DsXufCXK+JGeJ+CCgHGGJ5XEt9MChRiZxVYmHB1mWjIK0pIsep1LJJeecpAx1zm89+itc47jYOfw==","signatures":[{"sig":"MEYCIQCzHfJit9fMFv7m5nOMhaURz6ekEnu8FleT543GWE0b0gIhAO7vS616XeeUfFa+APgkjLGI/QQhxx0Y4hssd+Picyx7","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"574bc4960b071b2ac0fc7c5aa223fc3da3587735","gitHead":"6f184a55768aceaf096079be4b8005c28ea77f59","scripts":{},"_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"2.6.0","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"1.4.1","dependencies":{"babel":"^4.6.0","lodash":"^3.3.1"}},"1.0.9":{"name":"babel-eslint","version":"1.0.9","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@1.0.9","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"00371b77a457ca1870f457d4c92fc9aca3905a8b","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-1.0.9.tgz","integrity":"sha512-6zCJ7QIjYXXWf3ydHJYwUhkMgspwk1P277gzyXc1S6LRI/L5oA+ot4Q10moIMCog48JEErSF9XVUClpPB5zdRA==","signatures":[{"sig":"MEUCIQDyxSLKzB4HxVOeJZDLbwG4fXkegqNcx4D4mt0lfcBbUgIgB+4fr4RGDPspXmXP/678ZZFl5hy0RVXqvcYHmDCnqcs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"00371b77a457ca1870f457d4c92fc9aca3905a8b","gitHead":"02944635e2e2fce1a72106f42f160db287a6a40f","scripts":{},"_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"2.6.0","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"1.4.1","dependencies":{"babel":"^4.6.0","lodash":"^3.3.1"}},"3.1.17":{"name":"babel-eslint","version":"3.1.17","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@3.1.17","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"c63454ec05535ff251a1d6b33ea9acdecf7597b2","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-3.1.17.tgz","integrity":"sha512-AS3GU81cUnSidsAPvFBLz3qyzhGyrbvRZzQyFpoSdPnBHMq+RCsckhamSCRloZM7WCNYIKIpR4F/PYVPWXlzIQ==","signatures":[{"sig":"MEYCIQC5FRv3p3dorThdJeu2Nkf/nkXZBfzWrSOmSPltGbY6QAIhAJeVDPQhbp11iSMp2pmSCbCZhzCTo+aVxwuVLiBqdknC","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"c63454ec05535ff251a1d6b33ea9acdecf7597b2","gitHead":"1028c8c7d89c72fcbc55e308800dc2c86c8e214d","scripts":{"test":"mocha","eslint":"cd eslint && mocha -c tests/lib/rules/**/*.js -r ../eslint-tester.js","bootstrap":"git submodule update --init && cd eslint && npm install"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"2.11.0","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"0.10.38","dependencies":{"babel-core":"^5.5.1","lodash.pick":"^3.1.0","lodash.assign":"^3.0.0"},"devDependencies":{"mocha":"^2.1.0","eslint":"^0.21.2","espree":"^2.0.0","eslint-tester":"^0.7.0"}},"3.1.18":{"name":"babel-eslint","version":"3.1.18","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@3.1.18","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"5d3e52f29051cdebf89b836db2b55940345d5306","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-3.1.18.tgz","integrity":"sha512-RZ8WMvQ99hsieFgG0pZx46ZPIwb/FmV1H3LaJCOJR5sX75tD/frYPrZ7F3rKrw/MqcPkXLeU1N+O88FSVIuyCA==","signatures":[{"sig":"MEUCIDEvUJNOI0lDoDHEKVQh0lqfbNL/cUFz3rKQrA9gtyGtAiEAo5vYHXcrXNGUffrRaZhA5JlByzY+CfgrjMiznEC0piw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"5d3e52f29051cdebf89b836db2b55940345d5306","gitHead":"03a29ed78f8b3239c3185dfb686111d43c5a4b6b","scripts":{"test":"mocha","eslint":"cd eslint && mocha -c tests/lib/rules/**/*.js -r ../eslint-tester.js","bootstrap":"git submodule update --init && cd eslint && npm install"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"2.7.1","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"0.10.36","dependencies":{"babel-core":"^5.6.4","lodash.pick":"^3.1.0","lodash.assign":"^3.0.0"},"devDependencies":{"mocha":"^2.2.5","eslint":"^0.23.0","espree":"^2.0.3"}},"3.1.15":{"name":"babel-eslint","version":"3.1.15","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@3.1.15","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"e46d079af1eb51c2d5b3f634784abbc98be8f3d9","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-3.1.15.tgz","integrity":"sha512-b07ACgCXoxLSI/CtJQd+84nUaodwNOevN8suU0iENokIxjh3w8T1PpdZ5sO7SFu4U4QQHES5JZKxQsbOpv8Gsg==","signatures":[{"sig":"MEQCIFDTybZWZAtSh5AJxBOtM8bQun3OhMhHlB0iAxVaAb1vAiA1W5imkrx05sXPD/kunLjj06M2aQzBf+vD8zv76Vvi3A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"e46d079af1eb51c2d5b3f634784abbc98be8f3d9","gitHead":"493b17709d156414ef736d71544028cbc9d509c3","scripts":{"test":"mocha","eslint":"cd eslint && mocha -c tests/lib/rules/**/*.js -r ../eslint-tester.js","bootstrap":"git submodule update --init && cd eslint && npm install"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"2.7.1","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"0.10.36","dependencies":{"babel-core":"^5.5.1","lodash.pick":"^3.1.0","lodash.assign":"^3.0.0"},"devDependencies":{"mocha":"^2.1.0","eslint":"^0.21.2","espree":"^2.0.0","eslint-tester":"^0.7.0"}},"3.1.16":{"name":"babel-eslint","version":"3.1.16","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@3.1.16","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"d7fc6c6e0e2887c57be9bd24dea16b58e4046a0c","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-3.1.16.tgz","integrity":"sha512-j4F3xfUl97PuQJW/511840Co5Um9DOoO48qRJRy92VcPjutdWz1SdvI8Yuso4iLudOj79VSrzxBTbD+pRC8Dkg==","signatures":[{"sig":"MEUCIBGkgVZREVybrkIU77HALNRAbZCGxmR+7RJJTa1VQOufAiEArJ75cpj2ETiO0dEKkxfTO3wXUQuSK7bMWirsi/ghQtU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"d7fc6c6e0e2887c57be9bd24dea16b58e4046a0c","gitHead":"022dd0f3bcecab59567621cc62f172e8d4f99459","scripts":{"test":"mocha","eslint":"cd eslint && mocha -c tests/lib/rules/**/*.js -r ../eslint-tester.js","bootstrap":"git submodule update --init && cd eslint && npm install"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"2.7.1","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"0.10.36","dependencies":{"babel-core":"^5.5.1","lodash.pick":"^3.1.0","lodash.assign":"^3.0.0"},"devDependencies":{"mocha":"^2.1.0","eslint":"^0.21.2","espree":"^2.0.0","eslint-tester":"^0.7.0"}},"3.1.13":{"name":"babel-eslint","version":"3.1.13","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@3.1.13","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"7748c9cc8c19dbc24feef06874a22871f92737f6","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-3.1.13.tgz","integrity":"sha512-XMg6jrFl8L7Rmwn0naAoecPXztoAUIbtCi8UmGoxa8A7ljGtZXGx/xomnJssD9xcW37T5USkpMwxcF0/qGcX0A==","signatures":[{"sig":"MEUCIECrALTfhLSxBGCOg49+7BSOKueO8xo6ayo+r6L1G4oYAiEAlw5fqaafTwz3bxtb0bEUREUYiOKaVrnWMzq0Iw/MbN0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"7748c9cc8c19dbc24feef06874a22871f92737f6","gitHead":"a04ce0fab5244028bd1aa6e9cede0f953ab72ce8","scripts":{"test":"mocha"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"2.11.0","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"0.10.38","dependencies":{"babel-core":"^5.5.1","lodash.pick":"^3.1.0","lodash.assign":"^3.0.0"},"devDependencies":{"mocha":"^2.1.0","eslint":"^0.22.1","espree":"^2.0.0"}},"1.0.0":{"name":"babel-eslint","version":"1.0.0","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@1.0.0","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"4fb7392d199ccd74d438126879418e34e0240cc1","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-1.0.0.tgz","integrity":"sha512-axRf5wh7sZST8xRFmpJYDWJtBK8TCmNIbrReKwMRgbJb4MCs1T+8cYNivkPJQhmDzDgxCNE4NM/ktpIMQqo7Jg==","signatures":[{"sig":"MEQCIHSuxiMFCFD+JCPnn0LWgOiP6/y9Vqrh4LISWJGOa2JCAiALh7vZMp1EGlAsxWdV5gp9Msj4IJP4rpRuOKXRkkkKjw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"4fb7392d199ccd74d438126879418e34e0240cc1","gitHead":"f6eac866dfb420c8ef2584dd03cb98ee4253e86e","scripts":{},"_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"2.6.0","description":"","directories":{},"_nodeVersion":"1.4.1"},"3.1.14":{"name":"babel-eslint","version":"3.1.14","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@3.1.14","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"a75e5b0112a2de5237b4d02dcb0bda726d15f9ec","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-3.1.14.tgz","integrity":"sha512-D+i1YAMioS6QNnXPnWShE/WiPZt4rqEWzr1WDeaX61NIaiKcdOKZ9UGC5w/+vQbRCEKtVSILkiOeH7IXCyfybw==","signatures":[{"sig":"MEYCIQCEFTaNgr526KnWLvzPNdsW348XmcprE/vTa+OrfeliCgIhAMKde+DfjI1hspjYYF983lTnFfMj8WkzPX0W5wH37whk","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"a75e5b0112a2de5237b4d02dcb0bda726d15f9ec","gitHead":"87baf18a352c6e2f5230c7fb51c9ba17fc85bde6","scripts":{"test":"mocha"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"2.11.0","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"0.10.38","dependencies":{"babel-core":"^5.5.1","lodash.pick":"^3.1.0","lodash.assign":"^3.0.0"},"devDependencies":{"mocha":"^2.1.0","eslint":"^0.22.1","espree":"^2.0.0"}},"1.0.1":{"name":"babel-eslint","version":"1.0.1","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@1.0.1","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"24361610bb91c740d778acbdaf056c6d0c965acb","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-1.0.1.tgz","integrity":"sha512-ct71XcCuOjQFnTgk8TLAk6mUtEs9lR3sLfZ30HWvvN/y8rPlcltQTSa+wcdNe3LJ5E0xlMmQP9RBMjNbG5rJ2A==","signatures":[{"sig":"MEUCIGpSVAC+B17p1tx0WC/+ZYTisyHx5IfHrBwNW8fjIgjhAiEAu+t0FX96Xj8dkB2DAfiaemT89UVJ6gE4PzhdrP/Rp8o=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"24361610bb91c740d778acbdaf056c6d0c965acb","gitHead":"f6eac866dfb420c8ef2584dd03cb98ee4253e86e","scripts":{},"_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"2.6.0","description":"","directories":{},"_nodeVersion":"1.4.1","dependencies":{"babel":"^4.6.0"}},"3.1.11":{"name":"babel-eslint","version":"3.1.11","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@3.1.11","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"a00bb68cc096ceed1fbf4fc77787a263f43a5f76","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-3.1.11.tgz","integrity":"sha512-zqhEh/q3M5SmbdJtnuyC0oZsRyeFCfYQpzOazycpFX2LgYvKRkegG/MorumXql1mtIhyBCBe437hRJTyJU+Q8g==","signatures":[{"sig":"MEUCICd/dQMZGFuiqzqf+aocvPNZC2Gg5xsspuAK4CjN3jNhAiEAyKdF0ywvu8P1eU0xS2IVhmT3RJJ8TLXUQ5NJtLRlPL4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"a00bb68cc096ceed1fbf4fc77787a263f43a5f76","gitHead":"58daefc0ebea35494345786606e34a4002704190","scripts":{"test":"mocha"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"2.7.1","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"0.10.36","dependencies":{"babel-core":"^5.1.8","lodash.pick":"^3.1.0","lodash.assign":"^3.0.0"},"devDependencies":{"mocha":"^2.1.0","eslint":"^0.22.1","espree":"^2.0.0"}},"1.0.2":{"name":"babel-eslint","version":"1.0.2","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@1.0.2","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"7c95bb545a5e355bc52958980afa56b643de8ed3","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-1.0.2.tgz","integrity":"sha512-To11yRFbLapitNMqRaIAIpmycMaZrc3vW0R9eyN2t4r9gQZNXUr2at/FY726Lv8lC4Pv+JQtaVfg/Myy7/YNyw==","signatures":[{"sig":"MEQCIDP/I55SJdg+6vN4YHezzx2lsahFLFsTWXM4fJiYgtujAiA9jYRxc5/2xlGcy+mvdia5Ii9xrXyTQGbcq4XgW5jLtA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"7c95bb545a5e355bc52958980afa56b643de8ed3","gitHead":"b4ab63f8b150bf1efe29b2cc3721573b536ac1d3","scripts":{},"_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"2.6.0","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [eslint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"1.4.1","dependencies":{"babel":"^4.6.0"}},"3.1.12":{"name":"babel-eslint","version":"3.1.12","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@3.1.12","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"078af5aa974aea4f5797f38e25a7416f59ef887a","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-3.1.12.tgz","integrity":"sha512-dyJEZ4VjZyedzJWZBmZGm1JpoI7IWQvRfh2pXtFLNsg4NF/uo00euhsh+uDend0ajl58JYLo5Ell3piQfR1/+w==","signatures":[{"sig":"MEQCIANWO6Hf1LgtLmhz8RJMZIL6Ol8iTlCLxfkwKDG7iLyVAiBZ1Nx6P5Ox44/PkQGAPMk9HD30MwMYh1OafDQnduIPrA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"078af5aa974aea4f5797f38e25a7416f59ef887a","gitHead":"9ab1d1e478bff6aaffcde0c5fd8fc8c670f06d5d","scripts":{"test":"mocha"},"_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"2.9.0","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"2.0.0","dependencies":{"babel-core":"^5.5.1","lodash.pick":"^3.1.0","lodash.assign":"^3.0.0"},"devDependencies":{"mocha":"^2.1.0","eslint":"^0.22.1","espree":"^2.0.0"}},"9.0.0":{"name":"babel-eslint","version":"9.0.0","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@9.0.0","maintainers":[{"name":"danez","email":"daniel@tschinder.de"},{"name":"existentialism","email":"bng412@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"jameshenry","email":"james@henry.sc"},{"name":"kaicataldo","email":"kaicataldo@gmail.com"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"monastic.panic","email":"monastic.panic@gmail.com"},{"name":"mysticatea","email":"star.ctor@gmail.com"},{"name":"not-an-aardvark","email":"teddy.katz@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"zertosh","email":"zertosh@gmail.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"7d9445f81ed9f60aff38115f838970df9f2b6220","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-9.0.0.tgz","fileCount":17,"integrity":"sha512-itv1MwE3TMbY0QtNfeL7wzak1mV47Uy+n6HtSOO4Xd7rvmO+tsGQSgyOEEgo6Y2vHZKZphaoelNeSVj4vkLA1g==","signatures":[{"sig":"MEYCIQDzEYGFBZJJbj3aZm6k45DvXWjwciY/PLgGF6+fYs0fmQIhALeosMCs81faq6bo00j8qDC2fiS8RFPMgmMM+C8xkQAU","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42419,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbhHajCRA9TVsSAnZWagAAQxUP/1Q7tNrgO0zIWkJL9FA6\nPbqLNgamAf7+OM/xlJE9fwUYQRRPeOMWCWmiamkxtnunK5xAgijR1mSBTYVK\nJAhaCEhFasp52K9GrbRWHawG5EP1U2UzC6WXTjBCrGjFLByyzrFQpNNHOqQR\n6JIfdjkQ/IElZ2c8f8DJn9Ro22xNWTiNGp7MG3pY0o4qM2NwFqs/NhrXFlhs\nz0yNNUkrAHcEvIyYxRxrlItqC5vRQ1czWg7AlfJHSXct8pMJTA5TEKx0P75V\ntzzicogaDPAsugJ2F3f8p/TbRcAT9LiLi0Gwc03w7ys9taSVb8vgqZIJJRLj\nNQtkDTOr/ENDXTrAnmQYse9u3g4+lCGmeYjNQGMfq3pEZAeTWnzKLw3Xwpb8\nhcfbSGNWaLo+Mry2Nbtyr+SGCbj6Jh0/hnUh0NnDMtRXnRrrDleGRR/CQZJ0\ndit8+axIGjXe6p9FV9mTIcVpJDCA1FXzGjDfJX59AVNu80ZwBWqDQCIIPODn\nebQEhIiW0YTaoJET5qmhmhqn3uRi2EmCUmVJDRzTA91m4NhWT1q1lq3sOtrB\nUxjjkyA9koQvdPU2Qjg4rWTf3UkjwpRRTxsEVfqxNzli41IgVFm5T7uCY6gS\nxEjIXFJTwFUwyHN7D/VnyHpVRVKzOxGOZvi6jOIokSpNwkkeGH2WDtlic4Yb\nJuGs\r\n=4/lk\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","files":["lib"],"engines":{"node":">=6"},"gitHead":"6aa8b6f02ff83cfb14eae2432f226f113929a50f","scripts":{"fix":"eslint index.js babylon-to-espree test --fix","lint":"eslint index.js babylon-to-espree test","test":"npm run lint && npm run test-only","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","precommit":"lint-staged","test-only":"mocha && mocha --require test/fixtures/preprocess-to-patch.js && mocha --require test/fixtures/use-eslint-old.js","preversion":"npm test"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"5.6.0","description":"Custom parser for ESLint","directories":{},"lint-staged":{"*.js":["eslint --format=codeframe --fix","git add"]},"_nodeVersion":"8.10.0","dependencies":{"@babel/types":"^7.0.0","eslint-scope":"3.7.1","@babel/parser":"^7.0.0","@babel/traverse":"^7.0.0","@babel/code-frame":"^7.0.0","eslint-visitor-keys":"^1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"husky":"^1.0.0-rc.13","mocha":"^5.0.1","dedent":"^0.7.0","eslint":"npm:eslint@4.19.1","espree":"^3.5.2","prettier":"^1.4.4","eslint-old":"npm:eslint@4.13.1","lint-staged":"^7.2.2","babel-eslint":"^8.2.6","eslint-config-babel":"^7.0.1","eslint-plugin-import":"^2.8.0","eslint-plugin-flowtype":"^2.30.3","eslint-plugin-prettier":"^2.1.2"},"_npmOperationalInternal":{"tmp":"tmp/babel-eslint_9.0.0_1535407778818_0.7507528875105944","host":"s3://npm-registry-packages"}},"11.0.0-beta.2":{"name":"babel-eslint","version":"11.0.0-beta.2","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@11.0.0-beta.2","maintainers":[{"name":"danez","email":"daniel@tschinder.de"},{"name":"existentialism","email":"bng412@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"jameshenry","email":"npm@jameshenry.email"},{"name":"kaicataldo","email":"kai@kaicataldo.com"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"monastic.panic","email":"monastic.panic@gmail.com"},{"name":"mysticatea","email":"public@mysticatea.dev"},{"name":"nicolo-ribaudo","email":"nicolo.ribaudo@gmail.com"},{"name":"not-an-aardvark","email":"teddy.katz@gmail.com"},{"name":"sebmck","email":"npm@sebastian.barretomckenzie.com"},{"name":"zertosh","email":"zertosh@gmail.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"de1f06795aa0d8cedcf6ac943e63056f5b4a7048","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-11.0.0-beta.2.tgz","fileCount":15,"integrity":"sha512-D2tunrOu04XloEdU2XVUminUu25FILlGruZmffqH5OSnLDhCheKNvUoM1ihrexdUvhizlix8bjqRnsss4V/UIQ==","signatures":[{"sig":"MEQCIH6CmtrvaiokflLaDoG8mNMkyNz55d9v4/jUtdxog2xUAiBxU9w4KCl5hqedvLzujCTin4v++XeI6pdIoUHA1QyLWQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32114,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd77V/CRA9TVsSAnZWagAAR+wP/3ksSiQM2IBGvXxZ/0/c\nx0OSJxq5Kje2YAcrYR/eX0TSsBwUHQKCdF8zR7XwJn3Mk/iHWguEB1iGRgBW\ncpzGIE9tLUQM3mvWpYbjQ5rKquFp32Wzb6pPTT3sUVM2YB6y9TNIU457lSxm\nf23PBscMhsytmlGW15LQ0DnRHZiu0B6M/b1+FFrOZp3kWqDjEqFC+7M8d1nO\nRWJJHoKYKtnYPGvgIENuoI6cQ/iOCakJoXu+2ynHc1r0KlP1JQWTzFks4iWK\ntV1/Hyk/s2+SDjQa1Rs1HenKoXRfyou20dCmNV52Eh3gWZmAGtosXpyR8Acr\nlWXcQLUF55H+hisdNzP/HdRvXAHe0npw54yKyLXeWhLELoj166Np5unfjP/9\ny/TSxDvo1OB7FXq6dCzGmPFGEZu1L5VCsEusIA6S822/dvEKrIyksB57iKnI\nV0tFDMr2M925LPa58DQ3YJkuR9yAs/SEHNcJ1joqE9wx4c12HLoHKTacw2O8\n9N34F86X7SfEK52xf2tWfzWX23pq02C2iioLuQsSEYcYRswIOIDp2R50ei4X\n5b4PH4F7/yQEuuVppTNPOCt9mLSVsaxCqml7YRZ/QaMf5k0Ob6lJ55o+BWb4\ntzHPjs8rFJIIfeJEG4jkN3BDajT25ygGDvGyMo85zmcSF0YCD47I4qhpLW0c\n3cuX\r\n=4O1M\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","engines":{"node":">=8"},"gitHead":"249a2947a24428ac9306d2780121201a9e27b77d","scripts":{"lint":"eslint .","test":"npm run lint && npm run test-only","lint-fix":"npm run lint -- --fix","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","precommit":"lint-staged","test-only":"cd test && mocha specs && cd -","preversion":"npm test"},"_npmUser":{"name":"kaicataldo","email":"kai@kaicataldo.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"6.12.1","description":"Custom parser for ESLint","directories":{},"lint-staged":{"*.js":["eslint --format=codeframe --fix","git add"]},"_nodeVersion":"12.13.1","dependencies":{"semver":"^6.3.0","eslint-scope":"5.0.0","eslint-visitor-keys":"^1.1.0"},"_hasShrinkwrap":false,"devDependencies":{"husky":"^1.0.0-rc.13","mocha":"^6.1.4","dedent":"^0.7.0","eslint":"^6.0.1","espree":"^6.0.0","prettier":"^1.4.4","@babel/core":"^7.2.0","lint-staged":"^7.2.2","babel-eslint":"^10.0.2","@babel/preset-env":"^7.1.5","@babel/preset-flow":"^7.0.0","@babel/preset-react":"^7.0.0","eslint-config-babel":"^9.0.0","eslint-plugin-import":"^2.14.0","eslint-plugin-flowtype":"^3.11.1","eslint-plugin-prettier":"^3.1.0","@babel/plugin-syntax-import-meta":"^7.0.0","@babel/plugin-proposal-decorators":"^7.1.2","@babel/plugin-syntax-dynamic-import":"^7.0.0","@babel/plugin-syntax-numeric-separator":"^7.0.0","@babel/plugin-proposal-class-properties":"^7.1.0","@babel/plugin-proposal-optional-chaining":"^7.0.0","@babel/plugin-proposal-pipeline-operator":"^7.0.0","@babel/plugin-syntax-export-default-from":"^7.0.0","@babel/plugin-syntax-export-namespace-from":"^7.0.0","@babel/plugin-proposal-nullish-coalescing-operator":"^7.0.0"},"peerDependencies":{"eslint":">= 6.0.0","@babel/core":">=7.2.0"},"_npmOperationalInternal":{"tmp":"tmp/babel-eslint_11.0.0-beta.2_1575990654865_0.2198578198800203","host":"s3://npm-registry-packages"}},"11.0.0-beta.1":{"name":"babel-eslint","version":"11.0.0-beta.1","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@11.0.0-beta.1","maintainers":[{"name":"danez","email":"daniel@tschinder.de"},{"name":"existentialism","email":"bng412@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"jameshenry","email":"npm@jameshenry.email"},{"name":"kaicataldo","email":"kai@kaicataldo.com"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"monastic.panic","email":"monastic.panic@gmail.com"},{"name":"mysticatea","email":"public@mysticatea.dev"},{"name":"nicolo-ribaudo","email":"nicolo.ribaudo@gmail.com"},{"name":"not-an-aardvark","email":"teddy.katz@gmail.com"},{"name":"sebmck","email":"npm@sebastian.barretomckenzie.com"},{"name":"zertosh","email":"zertosh@gmail.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"1762faffeaee26877761b9a19af43cef679999a4","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-11.0.0-beta.1.tgz","fileCount":18,"integrity":"sha512-4xDIJZUn6RDNfSfKmrywNT+e37srxxPP+GdciWakL5U36fde3/K7Y/X8XyEquXGQz02tPvzRuF6SNrR61uZ+fA==","signatures":[{"sig":"MEQCIFBpv+0RIJQRwm4+tc32UVVHobg2TvJvSNQJR3O+9pSyAiAjsTIpwWdFwXxGm5gX4pJKKGd9UMZhO00SFPuZYmTHZA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29772,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd2RWZCRA9TVsSAnZWagAAEtgP/RXQ7Z+10I6lQt2b13pj\nOhQlIbaN7OrogoNZI5eH7LjYi6PR/Ni3mkgGPjBDna8r7FRP5k8w7A1Es78v\nZZPl1gcrndZjj3kAgmhj0jj3nIIf9auVpqLai1eV39IZrvpvBAvxkMcm4ck+\nka2YY6HBdjGHXRoILeRLnAtskCAo/wHz2hfmgaA2Inhff2yGRH6aMmoDyAHj\nmK17bhml3bOL/BA57acr2L6XNV+jAidqJPqr3IA0kqsczqGESS8tgy2IDL79\nD9WuB+giv1zl9IGXukSDIKPXj4oXwDLwywyNWnHVv0PW7gP2LPoqralFo1Tw\nxxxeS7WFNJYVubOTiJV/4OF8ZH6jP6anmhisFpgDImPllx8HyGk1dnd/fRK7\n+YDxb0jFK2Pk7tqjbAPVOQzhPQWhovziFuNqUFi3M3KyurVlOaPO2S7ys/3s\n8Qthp5wBuJsCeybE4QnjXdUp9UbVSsGWwJLzV0ZYZGq8JigLDvcPE25X+Ra/\nj0G2Fnsel9mfQWCO95YXrcqGkb6rczmTJ4LSraMdsucdq0NO042kg4EJKwgl\nVpJcUJqU7sz0k09Ky0OSvnZYi4j0qNa9zmv+lFlqzWVoc9/4mCIdWhyo0UeP\ne9EFVw5Gjurtc1VVz+WY1cv/vh50atadeH2zr4kxP3ZYVD2M8la2ilSYTDYE\n+SML\r\n=+/pi\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","engines":{"node":">=6"},"private":false,"scripts":{"changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'"},"_npmUser":{"name":"nicolo-ribaudo","email":"nicolo.ribaudo@gmail.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"https://github.com/babel/babel-eslint.git","type":"git"},"description":"Custom parser for ESLint","directories":{},"licenseText":"MIT License\n\nCopyright (c) 2014-present Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n","dependencies":{"semver":"^6.3.0","eslint-scope":"3.7.1","eslint-visitor-keys":"^1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"dedent":"^0.7.0","eslint":"^6.0.1","espree":"^6.0.0","@babel/core":"^7.2.0","@babel/preset-env":"^7.1.5","@babel/preset-flow":"^7.0.0","@babel/preset-react":"^7.0.0","@babel/plugin-syntax-import-meta":"^7.0.0","@babel/plugin-proposal-decorators":"^7.1.2","@babel/plugin-syntax-dynamic-import":"^7.0.0","@babel/plugin-syntax-numeric-separator":"^7.0.0","@babel/plugin-proposal-class-properties":"^7.1.0","@babel/plugin-proposal-optional-chaining":"^7.0.0","@babel/plugin-proposal-pipeline-operator":"^7.0.0","@babel/plugin-syntax-export-default-from":"^7.0.0","@babel/plugin-syntax-export-namespace-from":"^7.0.0","@babel/plugin-proposal-nullish-coalescing-operator":"^7.0.0"},"peerDependencies":{"eslint":">= 4.12.1","@babel/core":">=7.2.0"},"_npmOperationalInternal":{"tmp":"tmp/babel-eslint_11.0.0-beta.1_1574507928799_0.8598312352177653","host":"s3://npm-registry-packages"}},"8.2.0":{"name":"babel-eslint","version":"8.2.0","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@8.2.0","maintainers":[{"name":"zertosh","email":"zertosh@gmail.com"},{"name":"kaicataldo","email":"kaicataldo@gmail.com"},{"name":"jameshenry","email":"james@henry.sc"},{"name":"mysticatea","email":"star.ctor@gmail.com"},{"name":"not-an-aardvark","email":"teddy.katz@gmail.com"},{"name":"monastic.panic","email":"monastic.panic@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"danez","email":"daniel@tschinder.de"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"3021b43beb3033a05a9f3319fc847fc364988cce","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-8.2.0.tgz","integrity":"sha512-CNRUner+Y3zmfdgkBCXs2zfTGmMVxbm13fF1XmZMpASfO4Lne5EOTSXwarsqdPu+qaAY+HZ5UvmR5JCTP4NzyQ==","signatures":[{"sig":"MEUCIQDAhTwLTNUGgyf0Avd8L6H3EeqahB6JYngGknTdbIzt4QIgGwIAIcSKp9UM6a2SSw8zrIIIyEXPBxYoP+OpT+9g8Aw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","files":["lib"],"engines":{"node":">=4"},"gitHead":"ef276702e73a74d284fcafa71e3da2992c11c5a3","scripts":{"fix":"eslint index.js babylon-to-espree test --fix","lint":"eslint index.js babylon-to-espree test","test":"npm run lint && npm run test-only","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","precommit":"lint-staged","test-only":"mocha && mocha --require test/fixtures/preprocess-to-patch.js && mocha --require test/fixtures/use-eslint-old.js","preversion":"npm test"},"_npmUser":{"name":"kaicataldo","email":"kaicataldo@gmail.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"5.6.0","description":"Custom parser for ESLint","directories":{},"lint-staged":{"*.js":["eslint --format=codeframe --fix","git add"]},"_nodeVersion":"8.9.1","dependencies":{"babylon":"7.0.0-beta.36","@babel/types":"7.0.0-beta.36","eslint-scope":"~3.7.1","@babel/traverse":"7.0.0-beta.36","@babel/code-frame":"7.0.0-beta.36","eslint-visitor-keys":"^1.0.0"},"devDependencies":{"husky":"^0.14.0","mocha":"^4.0.0","dedent":"^0.7.0","eslint":"^4.14.0","espree":"^3.5.2","prettier":"^1.4.4","eslint-old":"npm:eslint@4.13.1","lint-staged":"^4.0.0","babel-eslint":"^8.0.0","eslint-config-babel":"^7.0.1","eslint-plugin-import":"^2.8.0","eslint-plugin-flowtype":"^2.30.3","eslint-plugin-prettier":"^2.1.2"},"_npmOperationalInternal":{"tmp":"tmp/babel-eslint-8.2.0.tgz_1515452827035_0.725310328649357","host":"s3://npm-registry-packages"}},"11.0.0-beta.0":{"name":"babel-eslint","version":"11.0.0-beta.0","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@11.0.0-beta.0","maintainers":[{"name":"danez","email":"daniel@tschinder.de"},{"name":"existentialism","email":"bng412@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"jameshenry","email":"james@henry.sc"},{"name":"kaicataldo","email":"kaicataldo@gmail.com"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"monastic.panic","email":"monastic.panic@gmail.com"},{"name":"mysticatea","email":"star.ctor@gmail.com"},{"name":"not-an-aardvark","email":"teddy.katz@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"zertosh","email":"zertosh@gmail.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"3645b9b84d848e070e0afadc95d0c8ff96f4c63a","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-11.0.0-beta.0.tgz","fileCount":15,"integrity":"sha512-GJTX0XL22be/A5sFp1/4qQIOnZJ/KJ8YrA0aW07SZoDXTMLB1KQT0rYl4a9Y5DfJGPuVDVf0bMYyvLLXmXPpHw==","signatures":[{"sig":"MEUCIQCwquGklQDq66DyRKBf8MRN7IcUMRPlXe5CbBwIY9hZVQIgBjYXgNVhCyBlydBS674xd7/vSC/oCC/MfrYYO+D3s+Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32166,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcRjnKCRA9TVsSAnZWagAAiDIP/jt8qPXGxeRpBDWq0wev\nvj4IU+W6I+ILjJYBIu8tY+8MPtLWprHaCRJW980MsfXz7pgvSE2WOFB1ybTM\nKGgpUd4452tu5X3wxdwA7n+KS6WvF6dPAfopy7WSmpRk01ea5ND6qWk2R2Vv\nxDFXQ2o6HBvxUftsav1c47N7nupuBOHH/EK2btKw7OohnXRS5k01y+DX/SIr\nY67u+nt57Q2qntqlhByRm2lJQbWKu+YAcz/iPks9mW4U1thgX/4l2Vz/SuOC\ngkwlu+i6jKcANJ5x8YON4HUpGMxZiO2/dwou4hx8zAnFAQ+f0XisnVSc+fa4\nT4BRsKDND63+xCOO1mJAt8uVlNSOotff4Ps3gxUduPK2GUh8IDR8xjDDMO7U\n4VMAm8wHvibjkzWPJguGlRmrlq8TBSfLmzyj0gPEQhG87Nxj8xZSHIoBI5+b\nsPKGup9Rpuq9FFpb8Rmx9O5EGBPNlO1kb3+x/vNFR9NkSLUpgQFHGE9vYQzk\nVA6ip7V2P8MP5x6vDlHtkHMLSSBb6vSfS/OSgnhMANzjsKLPntn9yMGcRES4\n3ToqVN21j5hIxoq9cYRr9HJQLrvZiOiwo0oykCld7iG9inoDaBDzPZO1RwWB\nyPFuimn8o6u8F1jC6DwET57C5Rx44UmjW5tHaG7wgr11czWeXxcHl3OILqMm\nGojh\r\n=vuKF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","readme":"# babel-eslint [![npm](https://img.shields.io/npm/v/babel-eslint.svg)](https://www.npmjs.com/package/babel-eslint) [![travis](https://img.shields.io/travis/babel/babel-eslint/master.svg)](https://travis-ci.org/babel/babel-eslint) [![npm-downloads](https://img.shields.io/npm/dm/babel-eslint.svg)](https://www.npmjs.com/package/babel-eslint)\n\n**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic\n[ESLint](https://github.com/eslint/eslint).\n\n## Breaking change in v11.x.x\n\nAs of the v11.x.x release, babel-eslint now requires Babel as a peer dependency and expects a valid [Babel configuration file](https://babeljs.io/docs/en/configuration) to exist. This ensures that the same Babel configuration is used during both linting and compilation.\n\n## When should I use babel-eslint?\n\nESLint's default parser and core rules [only suppport the latest final ECMAScript standard](https://github.com/eslint/eslint/blob/a675c89573836adaf108a932696b061946abf1e6/README.md#what-about-experimental-features) and do not support experimental (such as new features) and non-standard (such as Flow or TypeScript types) syntax provided by Babel. babel-eslint is a parser that allows ESLint to run on source code that is transformed by Babel.\n\n**Note:** You only need to use babel-eslint if you are using Babel to transform your code. If this is not the case, please use the relevant parser for your chosen flavor of ECMAScript (note that the default parser supports all non-experimental syntax as well as JSX).\n\n## How does it work?\n\nESLint allows for the use of [custom parsers](https://eslint.org/docs/developer-guide/working-with-custom-parsers). When using this plugin, your code is parsed by Babel's parser (using the configuration specified in your [Babel configuration file](https://babeljs.io/docs/en/configuration)) and the resulting AST is\ntransformed into an [ESTree](https://github.com/estree/estree)-compliant structure that ESLint can understand. All location info such as line numbers,\ncolumns is also retained so you can track down errors with ease.\n\n**Note:** ESLint's core rules do not support experimental syntax and may therefore not work as expected when using babel-eslint. Please use the companion [`eslint-plugin-babel`](https://github.com/babel/eslint-plugin-babel) plugin for core rules that you have issues with.\n\n## Usage\n\n### Installation\n\n```sh\n$ npm install eslint babel-eslint --save-dev\n# or\n$ yarn add eslint babel-eslint -D\n```\n\n**Note:** babel-eslint requires `babel/core@>=7.2.0` and a valid Babel configuration file to run. If you do not have this already set up, please see the [Babel Usage Guide](https://babeljs.io/docs/en/usage).\n\n### Setup\n\nTo use babel-eslint, `\"babel-eslint\"` must be specified as the `parser` in your ESLint configuration file (see [here](https://eslint.org/docs/user-guide/configuring#specifying-parser) for more detailed information).\n\n**.eslintrc.js**\n\n```js\nmodule.exports = {\n  parser: \"babel-eslint\",\n};\n```\n\nWith the parser set, your configuration can be configured as described in the [Configuring ESLint](https://eslint.org/docs/user-guide/configuring) documentation.\n\n**Note:** The `parserOptions` described in the [official documentation](https://eslint.org/docs/user-guide/configuring#specifying-parser-options) are for the default parser and are not necessarily supported by babel-eslint. Please see the section directly below for supported `parserOptions`.\n\n### Additional parser configuration\n\nAdditional configuration options can be set in your ESLint configuration under the `parserOptions` key. Please note that the `ecmaFeatures` config property may still be required for ESLint to work properly with features not in ECMAScript 5 by default.\n\n- `requireConfigFile` (default `true`) can be set to `false` to allow babel-eslint to run on files that do not have a Babel configuration associated with them. This can be useful for linting files that are not transformed by Babel (such as tooling configuration files), though we recommend using the default parser via [glob-based configuration](https://eslint.org/docs/user-guide/configuring#configuration-based-on-glob-patterns). Note: babel-eslint will not parse any experimental syntax when no configuration file is found.\n- `sourceType` can be set to `\"module\"`(default) or `\"script\"` if your code isn't using ECMAScript modules.\n- `allowImportExportEverywhere` (default `false`) can be set to `true` to allow import and export declarations to appear anywhere a statement is allowed if your build environment supports that. Otherwise import and export declarations can only appear at a program's top level.\n- `ecmaFeatures.globalReturn` (default `false`) allow return statements in the global scope when used with `sourceType: \"script\"`.\n- `babelOptions` passes through Babel's configuration [loading](https://babeljs.io/docs/en/options#config-loading-options) and [merging](https://babeljs.io/docs/en/options#config-merging-options) options (for instance, in case of a monorepo). When not defined, babel-eslint will use Babel's default configuration file resolution logic.\n\n**.eslintrc.js**\n\n```js\nmodule.exports = {\n  parser: \"babel-eslint\",\n  parserOptions: {\n    sourceType: \"module\",\n    allowImportExportEverywhere: false,\n    ecmaFeatures: {\n      globalReturn: false,\n    },\n    babelOptions: {\n      configFile: \"path/to/config.js\",\n    },\n  },\n};\n```\n\n### Run\n\n```sh\n$ ./node_modules/.bin/eslint yourfile.js\n```\n\n## Known issues\n\nFlow:\n\n> Check out [eslint-plugin-flowtype](https://github.com/gajus/eslint-plugin-flowtype): An `eslint` plugin that makes flow type annotations global variables and marks declarations as used. Solves the problem of false positives with `no-undef` and `no-unused-vars`.\n\n- `no-undef` for global flow types: `ReactElement`, `ReactClass` [#130](https://github.com/babel/babel-eslint/issues/130#issuecomment-111215076)\n  - Workaround: define types as globals in `.eslintrc` or define types and import them `import type ReactElement from './types'`\n- `no-unused-vars/no-undef` with Flow declarations (`declare module A {}`) [#132](https://github.com/babel/babel-eslint/issues/132#issuecomment-112815926)\n\nModules/strict mode\n\n- `no-unused-vars: [\"error\", { vars: local }]` [#136](https://github.com/babel/babel-eslint/issues/136)\n\nPlease check out [eslint-plugin-react](https://github.com/yannickcr/eslint-plugin-react) for React/JSX issues.\n\n- `no-unused-vars` with jsx\n\nPlease check out [eslint-plugin-babel](https://github.com/babel/eslint-plugin-babel) for other issues.\n\n## Questions and support\n\nIf you have an issue, please first check if it can be reproduced with the default parser and with the latest versions of `eslint` and `babel-eslint`. If it is not reproducible with the default parser, it is most likely an issue with babel-eslint.\n\nFor questions and support please visit the [`#discussion`](https://babeljs.slack.com/messages/discussion/) Babel Slack channel (sign up [here](https://github.com/babel/notes/issues/38)) or the ESLint [Gitter](https://gitter.im/eslint/eslint).\n","engines":{"node":">=6"},"gitHead":"2540427c555cf707ced5b71b1717ac401fbcf3d0","scripts":{"lint":"eslint .","test":"npm run lint && npm run test-only","lint-fix":"npm run lint -- --fix","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","precommit":"lint-staged","test-only":"cd test && mocha specs && cd -","preversion":"npm test"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"5.6.0","description":"Custom parser for ESLint","directories":{},"lint-staged":{"*.js":["eslint --format=codeframe --fix","git add"]},"_nodeVersion":"8.10.0","dependencies":{"semver":"^5.6.0","eslint-scope":"3.7.1","eslint-visitor-keys":"^1.0.0"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"husky":"^1.0.0-rc.13","mocha":"^5.0.1","dedent":"^0.7.0","eslint":"^5.6.0","espree":"^3.5.2","prettier":"^1.4.4","@babel/core":"^7.2.0","lint-staged":"^7.2.2","babel-eslint":"^8.2.6","@babel/preset-env":"^7.1.5","@babel/preset-flow":"^7.0.0","@babel/preset-react":"^7.0.0","eslint-config-babel":"^7.0.1","eslint-plugin-import":"^2.14.0","eslint-plugin-flowtype":"^2.30.3","eslint-plugin-prettier":"^2.1.2","@babel/plugin-syntax-import-meta":"^7.0.0","@babel/plugin-proposal-decorators":"^7.1.2","@babel/plugin-syntax-dynamic-import":"^7.0.0","@babel/plugin-syntax-numeric-separator":"^7.0.0","@babel/plugin-proposal-class-properties":"^7.1.0","@babel/plugin-proposal-optional-chaining":"^7.0.0","@babel/plugin-proposal-pipeline-operator":"^7.0.0","@babel/plugin-syntax-export-default-from":"^7.0.0","@babel/plugin-syntax-export-namespace-from":"^7.0.0","@babel/plugin-proposal-nullish-coalescing-operator":"^7.0.0"},"peerDependencies":{"eslint":">= 4.12.1","@babel/core":">=7.2.0"},"_npmOperationalInternal":{"tmp":"tmp/babel-eslint_11.0.0-beta.0_1548106185750_0.9994929197036932","host":"s3://npm-registry-packages"}},"8.2.1":{"name":"babel-eslint","version":"8.2.1","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@8.2.1","maintainers":[{"name":"zertosh","email":"zertosh@gmail.com"},{"name":"kaicataldo","email":"kaicataldo@gmail.com"},{"name":"jameshenry","email":"james@henry.sc"},{"name":"mysticatea","email":"star.ctor@gmail.com"},{"name":"not-an-aardvark","email":"teddy.katz@gmail.com"},{"name":"monastic.panic","email":"monastic.panic@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"danez","email":"daniel@tschinder.de"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"136888f3c109edc65376c23ebf494f36a3e03951","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-8.2.1.tgz","integrity":"sha512-RzdVOyWKQRUnLXhwLk+eKb4oyW+BykZSkpYwFhM4tnfzAG5OWfvG0w/uyzMp5XKEU0jN82+JefHr39bG2+KhRQ==","signatures":[{"sig":"MEQCIGX6gcLFYDbBZ312DRLMa5pMCpvJWSpNY4hpXIIWejf1AiAI0iclEPgp22J4LZ2VSKAb/EX3DYnkGqwpojXkrcch0A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","files":["lib"],"engines":{"node":">=4"},"gitHead":"bf27f6021e3a3661589bfa1e314f45876edeb20b","scripts":{"fix":"eslint index.js babylon-to-espree test --fix","lint":"eslint index.js babylon-to-espree test","test":"npm run lint && npm run test-only","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","precommit":"lint-staged","test-only":"mocha && mocha --require test/fixtures/preprocess-to-patch.js && mocha --require test/fixtures/use-eslint-old.js","preversion":"npm test"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"5.5.1","description":"Custom parser for ESLint","directories":{},"lint-staged":{"*.js":["eslint --format=codeframe --fix","git add"]},"_nodeVersion":"8.9.1","dependencies":{"babylon":"7.0.0-beta.36","@babel/types":"7.0.0-beta.36","eslint-scope":"~3.7.1","@babel/traverse":"7.0.0-beta.36","@babel/code-frame":"7.0.0-beta.36","eslint-visitor-keys":"^1.0.0"},"devDependencies":{"husky":"^0.14.0","mocha":"^4.0.0","dedent":"^0.7.0","eslint":"^4.14.0","espree":"^3.5.2","prettier":"^1.4.4","eslint-old":"npm:eslint@4.13.1","lint-staged":"^4.0.0","babel-eslint":"^8.0.0","eslint-config-babel":"^7.0.1","eslint-plugin-import":"^2.8.0","eslint-plugin-flowtype":"^2.30.3","eslint-plugin-prettier":"^2.1.2"},"_npmOperationalInternal":{"tmp":"tmp/babel-eslint-8.2.1.tgz_1515456943908_0.9363292441703379","host":"s3://npm-registry-packages"}},"3.1.4":{"name":"babel-eslint","version":"3.1.4","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@3.1.4","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"7f13662cb86ac5c16d8e6504fe7c5019fd83f137","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-3.1.4.tgz","integrity":"sha512-pN+RosPgCsOZcyW/gjLz5w5TdV255jecLeHcqho640lJwoXP7YBWyozgwrxQa9VLWtmXpLrICh11yPo5+yS2OQ==","signatures":[{"sig":"MEQCICj8OSHv9xZB8tcNhbCJdSNTu8rXSicOEE04oouJmWAAAiBsU7y57n6V3zVnqhcdLVCmbnWfvfqemfNRaseV3UW4AQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"7f13662cb86ac5c16d8e6504fe7c5019fd83f137","gitHead":"32592af874939372ac8c7d604cb2e7d9531bb709","scripts":{"test":"mocha"},"_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"2.7.4","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"0.12.2","dependencies":{"babel-core":"^5.1.8","lodash.assign":"^3.0.0"},"devDependencies":{"mocha":"^2.1.0","eslint":"^0.18.0","espree":"^2.0.0"}},"8.0.0-alpha.13":{"name":"babel-eslint","version":"8.0.0-alpha.13","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@8.0.0-alpha.13","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"danez","email":"daniel@tschinder.de"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"47c6f04d4c7ef5084f5a849ffe5a8a48f17db7df","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-8.0.0-alpha.13.tgz","integrity":"sha512-g0HzEcACnDjG3mEryqaaSHpnBTHdzx9ZodqOKDfBmQ37lmguqBHWPQ5y8u9krpKeIeyvsAa9R/A6fK4cPhpnPQ==","signatures":[{"sig":"MEUCIEAmjYEmKxZ3aTA7FI1zjqf8qrLR3gvGatbk1d008KDOAiEAuIGXBJ6glIQFu1aJ/cMkVcd0nK/2THeIRWK35wayk1Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js","babylon-to-espree"],"_shasum":"47c6f04d4c7ef5084f5a849ffe5a8a48f17db7df","engines":{"node":">=4"},"gitHead":"8e3e088cf2583417cf0bcc3268088e348cbc533f","scripts":{"fix":"eslint index.js babylon-to-espree test --fix","lint":"eslint index.js babylon-to-espree test","test":"npm run lint && npm run test-only","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","precommit":"lint-staged","test-only":"mocha","preversion":"npm test"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"4.6.1","description":"Custom parser for ESLint","directories":{},"lint-staged":{"*.js":["eslint --format=codeframe --fix","git add"]},"_nodeVersion":"6.9.0","dependencies":{"babylon":"7.0.0-beta.14","babel-types":"7.0.0-alpha.12","babel-traverse":"7.0.0-alpha.12","babel-code-frame":"7.0.0-alpha.12"},"devDependencies":{"husky":"^0.13.2","mocha":"^3.0.0","dedent":"^0.7.0","eslint":"^3.18.0","espree":"^3.4.0","prettier":"1.4.4","lint-staged":"^3.6.1","babel-eslint":"^7.0.0","eslint-config-babel":"^7.0.1","eslint-plugin-flowtype":"^2.30.3","eslint-plugin-prettier":"^2.1.2"},"_npmOperationalInternal":{"tmp":"tmp/babel-eslint-8.0.0-alpha.13.tgz_1497825232293_0.28221250558272004","host":"s3://npm-registry-packages"}},"3.1.5":{"name":"babel-eslint","version":"3.1.5","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@3.1.5","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"b28b5fe342662d1bca47f6d15918bda5b85a1a80","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-3.1.5.tgz","integrity":"sha512-24fRRoOvOAi7DRo4Rv0KOEtLuJRTyvkdmMUJrujcx1gBppvBC0+Dllv7UH106AVQ72auOKQvXLr+4hBHsV+7VQ==","signatures":[{"sig":"MEUCIQCPOyJF1JOdXDcxFmkfiYdUiK9qxA/btr5QsSCRWILnLQIgJnNZqWI15YYSZvWd9cPcI+G0xer7EUwQ/TddDOmKmwQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"b28b5fe342662d1bca47f6d15918bda5b85a1a80","gitHead":"f9e5fe42910d602f894dffcaa7538cdb7ea706f4","scripts":{"test":"mocha"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"2.7.1","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"0.10.36","dependencies":{"babel-core":"^5.1.8","lodash.assign":"^3.0.0"},"devDependencies":{"mocha":"^2.1.0","eslint":"^0.18.0","espree":"^2.0.0"}},"8.0.0-alpha.12":{"name":"babel-eslint","version":"8.0.0-alpha.12","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@8.0.0-alpha.12","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"danez","email":"daniel@tschinder.de"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"f1adeafec401f1481de5df5926f1f5ac97eecad3","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-8.0.0-alpha.12.tgz","integrity":"sha512-lhk7O3hnXw9PxFaXA6jZjUqXSi39Az09vU2Y1azo1sIaYNKGphNlQjtJHBwEHGqzI/fFKIEktNfH9WjetizqJw==","signatures":[{"sig":"MEUCIBQx62dYY4vLYQBd1htwxYqA0kjuv9674ywH/NHGAVyGAiEAhBSsUNT/FNGAVtjPsPRkuaYrMNppkJoT+J7MQCgFWWQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js","babylon-to-espree"],"_shasum":"f1adeafec401f1481de5df5926f1f5ac97eecad3","engines":{"node":">=4"},"gitHead":"945f00a2e03b5a4cf2967b2cc0fa20dfc9856192","scripts":{"fix":"eslint index.js babylon-to-espree test --fix","lint":"eslint index.js babylon-to-espree test","test":"npm run lint && npm run test-only","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","test-only":"mocha","preversion":"npm test"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"4.6.1","description":"Custom parser for ESLint","directories":{},"_nodeVersion":"6.9.0","dependencies":{"babylon":"7.0.0-beta.13","babel-types":"7.0.0-alpha.12","babel-traverse":"7.0.0-alpha.12","babel-code-frame":"7.0.0-alpha.12"},"devDependencies":{"mocha":"^3.0.0","dedent":"^0.7.0","eslint":"^3.18.0","espree":"^3.4.0","babel-eslint":"^7.0.0","eslint-config-babel":"^6.0.0","eslint-plugin-flowtype":"^2.30.3"},"_npmOperationalInternal":{"tmp":"tmp/babel-eslint-8.0.0-alpha.12.tgz_1497646620974_0.3487641920801252","host":"s3://npm-registry-packages"}},"3.1.6":{"name":"babel-eslint","version":"3.1.6","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@3.1.6","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"ae81bd0488f7a919afa1a29cf9172ec0147e488c","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-3.1.6.tgz","integrity":"sha512-rFM+T6hBeTwDxILpWyYQkajHrYvDiHcAIo4eH6EbsG4zQc1aCPLmdy60RJd8NXeYhc3EVnyJlIeC3RRSGrk48Q==","signatures":[{"sig":"MEUCIQDP7/KmnJVv35L4f5fh8hvi7O88UUtXw7E41ePvoHaoYAIgWX/gdydZVo2+LcR9tJesBqqVX28ep5Bn5e/AgshLMdc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"ae81bd0488f7a919afa1a29cf9172ec0147e488c","gitHead":"323e37ad884f7bbca614e41af327ceccac187b4f","scripts":{"test":"mocha"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"2.7.1","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"0.10.36","dependencies":{"eslint":"^0.21.2","babel-core":"^5.1.8","lodash.assign":"^3.0.0"},"devDependencies":{"mocha":"^2.1.0","eslint":"^0.18.0","espree":"^2.0.0"}},"3.1.7":{"name":"babel-eslint","version":"3.1.7","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@3.1.7","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"f5535594cde2b2b9baec94ea037e47443a6f72a2","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-3.1.7.tgz","integrity":"sha512-lm8nUbI7jDLrTErSZVhIgXp9TQ0d1K9vf4ATwvdbrLxlRmvLB5jIa0TPXnSR5mNGChFBRUU352ZF+CnMJoKnZA==","signatures":[{"sig":"MEUCIQDLuP+gxpy0omC4qULnC+yugGhuk0PfeKY7WUQT15597wIgRrO5TqpWw2LdwGw87q91B9SwPn13LdRn6cazM5B0UgY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"f5535594cde2b2b9baec94ea037e47443a6f72a2","gitHead":"aa87a04774f8a1cdbebaf5f384378c14173ce047","scripts":{"test":"mocha"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"2.7.1","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"0.10.36","dependencies":{"babel-core":"^5.1.8","lodash.assign":"^3.0.0"},"devDependencies":{"mocha":"^2.1.0","eslint":"^0.21.2","espree":"^2.0.0"}},"3.1.0":{"name":"babel-eslint","version":"3.1.0","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@3.1.0","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"299fe5d054ee9faae0c062868ba659dcb2d32361","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-3.1.0.tgz","integrity":"sha512-718sqmZBSPWPOCU/p78NdPMZKFPUXRYcpfJPSURWPDBU38dnWPKly7F+5iQeERvu21xLKti+ZHf8KBixs0GE6A==","signatures":[{"sig":"MEYCIQCsnBVCb9S3MYGeXqB2d8g28+7xE3l1b7YaRjyOGwci1QIhAMa0uXkq80ehP2S0zGTUQog9yzipWZ93F8Xp6JHCmp5C","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"299fe5d054ee9faae0c062868ba659dcb2d32361","gitHead":"6b1fc0f668e32d5cc6f27d326b38e2d3993b9c29","scripts":{"test":"mocha"},"_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"2.9.0","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"2.0.0","dependencies":{"babel-core":"^5.1.8","lodash.assign":"^3.0.0"},"devDependencies":{"mocha":"^2.1.0","eslint":"^0.18.0","espree":"^2.0.0"}},"8.0.0-alpha.17":{"name":"babel-eslint","version":"8.0.0-alpha.17","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@8.0.0-alpha.17","maintainers":[{"name":"monastic.panic","email":"monastic.panic@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"danez","email":"daniel@tschinder.de"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"ae3955d96f5ec8d895af5a155e8f450b80db9593","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-8.0.0-alpha.17.tgz","integrity":"sha512-goiC+nnxwu+w1zmMzz0JXqM2eXQtuB1TkXinFzy/Goc0ZAfzBrdfPFGF5IAK28V1SyVFIE2q6jB67Ac7JHpDAA==","signatures":[{"sig":"MEYCIQD7piRMdtcV+PXb6q7PbO6I2TwO/+mVHIbYHv4r7wTZZQIhAO+waG+HOYGSn/UJk/2x76WTcxGE1qSTO2sIyjyRnqqX","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js","babylon-to-espree"],"_shasum":"ae3955d96f5ec8d895af5a155e8f450b80db9593","engines":{"node":">=4"},"gitHead":"25bd2084b5695d8fef0f205ebba75954bd773f05","scripts":{"fix":"eslint index.js babylon-to-espree test --fix","lint":"eslint index.js babylon-to-espree test","test":"npm run lint && npm run test-only","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","precommit":"lint-staged","test-only":"mocha","preversion":"npm test"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"4.6.1","description":"Custom parser for ESLint","directories":{},"lint-staged":{"*.js":["eslint --format=codeframe --fix","git add"]},"_nodeVersion":"6.9.0","dependencies":{"babylon":"7.0.0-beta.18","babel-types":"7.0.0-alpha.17","babel-traverse":"7.0.0-alpha.17","babel-code-frame":"7.0.0-alpha.17"},"devDependencies":{"husky":"^0.14.0","mocha":"^3.0.0","dedent":"^0.7.0","eslint":"^4.1.0","espree":"^3.4.0","prettier":"^1.4.4","lint-staged":"^4.0.0","babel-eslint":"^8.0.0-alpha.13","eslint-config-babel":"^7.0.1","eslint-plugin-flowtype":"^2.30.3","eslint-plugin-prettier":"^2.1.2"},"_npmOperationalInternal":{"tmp":"tmp/babel-eslint-8.0.0-alpha.17.tgz_1501100378010_0.2601701549720019","host":"s3://npm-registry-packages"}},"3.1.1":{"name":"babel-eslint","version":"3.1.1","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@3.1.1","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"427cb4da6a0802b9ca1ae33486cbf7e2fa157ac4","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-3.1.1.tgz","integrity":"sha512-KypxY98VMb132D7voYj4/JSgBG0VMn1oc7wSP3hh+Y79RDFjV15T7Jj9mpSpRnAsR2b8B5Y1nRr8AvcaSYnDDQ==","signatures":[{"sig":"MEYCIQD36R9D5yXWtX8Mk5am82eXGj+cnSURk/a3YvrnJA/NSQIhAIdn4C+UMOd300KgUROwv8nAzNdKMf7VMwcwuOZwL1RD","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"427cb4da6a0802b9ca1ae33486cbf7e2fa157ac4","gitHead":"d97f3608897e459386f0eca62360cb7d54e67757","scripts":{"test":"mocha"},"_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"2.9.0","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"2.0.0","dependencies":{"babel-core":"^5.1.8","lodash.assign":"^3.0.0"},"devDependencies":{"mocha":"^2.1.0","eslint":"^0.18.0","espree":"^2.0.0"}},"8.0.0-alpha.15":{"name":"babel-eslint","version":"8.0.0-alpha.15","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@8.0.0-alpha.15","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"danez","email":"daniel@tschinder.de"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"7cf5c1c81eaf40662d40aef51b0b488dfd199b2d","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-8.0.0-alpha.15.tgz","integrity":"sha512-U+MXze25b41meDr3LuwSvsSKUFCLMm3BaZ9pa8qQv+KV9+NK9oOACJapo/5BwVJEMiWAiNGnENDXO8R9sgu7gQ==","signatures":[{"sig":"MEUCICW38ExlnvHM+ctHK9Zp8yZqqDO601XCJ8FU7bU8Qg/oAiEA5HKjWYN4NYQUBPXK2w+1sMaOFo8BHA5F+R3vN8LRJic=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js","babylon-to-espree"],"_shasum":"7cf5c1c81eaf40662d40aef51b0b488dfd199b2d","engines":{"node":">=4"},"gitHead":"57c133ef7f2774e10e90262c9f7c3324ff1e4545","scripts":{"fix":"eslint index.js babylon-to-espree test --fix","lint":"eslint index.js babylon-to-espree test","test":"npm run lint && npm run test-only","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","precommit":"lint-staged","test-only":"mocha","preversion":"npm test"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"4.6.1","description":"Custom parser for ESLint","directories":{},"lint-staged":{"*.js":["eslint --format=codeframe --fix","git add"]},"_nodeVersion":"6.9.0","dependencies":{"babylon":"7.0.0-beta.16","babel-types":"7.0.0-alpha.15","babel-traverse":"7.0.0-alpha.15","babel-code-frame":"7.0.0-alpha.15"},"devDependencies":{"husky":"^0.14.0","mocha":"^3.0.0","dedent":"^0.7.0","eslint":"^4.1.0","espree":"^3.4.0","prettier":"^1.4.4","lint-staged":"^4.0.0","babel-eslint":"^8.0.0-alpha.13","eslint-config-babel":"^7.0.1","eslint-plugin-flowtype":"^2.30.3","eslint-plugin-prettier":"^2.1.2"},"_npmOperationalInternal":{"tmp":"tmp/babel-eslint-8.0.0-alpha.15.tgz_1499965304415_0.9216793393716216","host":"s3://npm-registry-packages"}},"3.1.3":{"name":"babel-eslint","version":"3.1.3","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@3.1.3","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"2c5b60c264d496aba5bbde2d58a29d68ea383466","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-3.1.3.tgz","integrity":"sha512-o6DX4KSTdsn9Oc8HqdBjIrujswqOZSH+RDZGkrMRBAM2mVO7N0S6TJ6IBgh2cPp82kgFQ7pwxNS3FtUxIsMAGw==","signatures":[{"sig":"MEYCIQC0Q/OkMz/FubxCJfwIL8n2CpxYSNVZ7xoEhp/kBz5G6QIhAIY6e7d3v4/ar+wu2Rc3MtqZnJ8vcWmzyuAVQXSDXGRp","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"2c5b60c264d496aba5bbde2d58a29d68ea383466","gitHead":"5f8cfd35be7b02c7e505363e5ed13bac13f51028","scripts":{"test":"mocha"},"_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"2.9.0","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"2.0.0","dependencies":{"babel-core":"^5.1.8","lodash.assign":"^3.0.0"},"devDependencies":{"mocha":"^2.1.0","eslint":"^0.18.0","espree":"^2.0.0"}},"7.0.0":{"name":"babel-eslint","version":"7.0.0","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@7.0.0","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"54e51b4033f54ac81326ecea4c646a779935196d","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-7.0.0.tgz","integrity":"sha512-x/iNGVean7xj7WFRDSvVAUqve4gfTeso0r6ATHpw78O9bo/bYDqICRheeBF3GJWz/IDDGPoh9VNAfp6EHT92OQ==","signatures":[{"sig":"MEYCIQCbgVeF8EJRnqJtM0zkWxdr715f/ICbIAjBd3jVkrvalwIhALSVyMXf2OhdwWuwvZdPXdzaUk8/9UOvimpfpHH+xTef","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js","babylon-to-espree"],"_shasum":"54e51b4033f54ac81326ecea4c646a779935196d","engines":{"node":">=4"},"gitHead":"f82b121d2de05652ff48dc837fb55fe75b67ca52","scripts":{"fix":"eslint index.js babylon-to-espree test --fix","lint":"eslint index.js babylon-to-espree test","test":"mocha","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","test-ci":"npm test && npm run lint","bootstrap":"git submodule update --init && cd eslint && npm install","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","preversion":"npm test"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"3.10.6","description":"Custom parser for ESLint","directories":{},"_nodeVersion":"5.11.1","dependencies":{"babylon":"^6.11.2","babel-types":"^6.15.0","lodash.pickby":"^4.6.0","babel-traverse":"^6.15.0"},"devDependencies":{"mocha":"^3.0.0","eslint":"^3.6.0","espree":"^3.3.1","eslint-config-babel":"^1.0.2","eslint-plugin-babel":"^3.3.0","eslint-plugin-flow-vars":"^0.5.0"},"_npmOperationalInternal":{"tmp":"tmp/babel-eslint-7.0.0.tgz_1474994151236_0.3773129852488637","host":"packages-16-east.internal.npmjs.com"}},"9.0.0-beta.1":{"name":"babel-eslint","version":"9.0.0-beta.1","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@9.0.0-beta.1","maintainers":[{"name":"danez","email":"daniel@tschinder.de"},{"name":"existentialism","email":"bng412@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"jameshenry","email":"james@henry.sc"},{"name":"kaicataldo","email":"kaicataldo@gmail.com"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"monastic.panic","email":"monastic.panic@gmail.com"},{"name":"mysticatea","email":"star.ctor@gmail.com"},{"name":"not-an-aardvark","email":"teddy.katz@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"zertosh","email":"zertosh@gmail.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"350c2c87fd7b7f7d5ec28f72570806de03a93ce6","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-9.0.0-beta.1.tgz","fileCount":17,"integrity":"sha512-+l6lWCC687yf75fcNODJq6NT0dtbC6WcP+xhdTZlRQ3d2W2tExF3xwV+yPaU5Q345ggpYb4s7ibL4Y7MRCqRZA==","signatures":[{"sig":"MEUCIFuqpLN8b1N0IG441ksit606R6jvp+eZASEe+CMmk/4bAiEA9NWItSFtL8npMhlcM++HVrSjBAOph6FJsLhwfK6yCH4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42301,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbNjYwCRA9TVsSAnZWagAA4kAQAJd12tqs5TJYEZ8nyU9s\n31UILvOxN8qi/AYQ2IkIR8XYbi1jyr3NS14wgVyivTL39lZ0eVhgfauhf+/L\nitzt10FBaqMHUnyX2cmEkY0EOSmOfS2TRkArBbBwkbAj2uTAl0aisNjiQZDR\nwE54T3sSI4k5jJhF1ZRf6fWoGMA/BrimYmWlTTydpRMEPXh5CZ/2XItr/bAj\nYBxXn+5KDlepq2jXc1Lh46I6EMJp4b9P7Z0HxVbxXWEbJgkDKbYhsPzxTF06\n6URn5+10UN98xlH53PZ/u5Vb1QJTiyBHK/OYeqW3CMb5RbAfWjH7AFk1+Onf\nXTvhdyD+twHBCeoYV4204BgWVapDgB7q9QkOTRa1cAJ0V3guHr4iZvIrAADg\ndGYuPCxThbsIILH6Uo26zwYAt9DreYwmtBQgG3ABgYvs8bFxWSUYnn9yxEBT\ngpJNelC9JMD1/YpZyUXlM2hOHZpumMyq4efcsILkD9BlQRnSTTzf7bMPxNbJ\nyWEgINXqL7B2qOVrZaH/H4OFURP0yYQsq6I76IQBn9IH8nfOA7qve4dwao/A\nNapk30xqWmX7h9/yGkXDbIe+Rj/0ALgsyux0900uSrryi7OkBg6z/lL84fil\nFk8IPS2yHyK6LSrJZBFXb5lF4Tjdqd5CiFdMN9C4ls6UO8XyEbP6AtpCS291\nZSuI\r\n=apkJ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","files":["lib"],"readme":"# babel-eslint [![npm](https://img.shields.io/npm/v/babel-eslint.svg)](https://www.npmjs.com/package/babel-eslint) [![travis](https://img.shields.io/travis/babel/babel-eslint/master.svg)](https://travis-ci.org/babel/babel-eslint) [![npm-downloads](https://img.shields.io/npm/dm/babel-eslint.svg)](https://www.npmjs.com/package/babel-eslint)\n\n**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic\n[ESLint](https://github.com/eslint/eslint).\n\n### Why Use babel-eslint\n\nYou only need to use babel-eslint if you are using types (Flow) or experimental features not supported in ESLint itself yet. Otherwise try the default parser (you don't have to use it just because you are using Babel).\n\n---\n\n> If there is an issue, first check if it can be reproduced with the regular parser or with the latest versions of `eslint` and `babel-eslint`!\n\nFor questions and support please visit the [`#discussion`](https://babeljs.slack.com/messages/discussion/) babel slack channel (sign up [here](https://github.com/babel/notes/issues/38)) or eslint [gitter](https://gitter.im/eslint/eslint)!\n\n> Note that the `ecmaFeatures` config property may still be required for ESLint to work properly with features not in ECMAScript 5 by default. Examples are `globalReturn` and `modules`).\n\n## Known Issues\n\nFlow:\n> Check out [eslint-plugin-flowtype](https://github.com/gajus/eslint-plugin-flowtype): An `eslint` plugin that makes flow type annotations global variables and marks declarations as used. Solves the problem of false positives with `no-undef` and `no-unused-vars`.\n- `no-undef` for global flow types: `ReactElement`, `ReactClass` [#130](https://github.com/babel/babel-eslint/issues/130#issuecomment-111215076)\n  - Workaround: define types as globals in `.eslintrc` or define types and import them `import type ReactElement from './types'`\n- `no-unused-vars/no-undef` with Flow declarations (`declare module A {}`) [#132](https://github.com/babel/babel-eslint/issues/132#issuecomment-112815926)\n\nModules/strict mode\n- `no-unused-vars: [2, {vars: local}]` [#136](https://github.com/babel/babel-eslint/issues/136)\n\nPlease check out [eslint-plugin-react](https://github.com/yannickcr/eslint-plugin-react) for React/JSX issues\n- `no-unused-vars` with jsx\n\nPlease check out [eslint-plugin-babel](https://github.com/babel/eslint-plugin-babel) for other issues\n\n## How does it work?\n\nESLint allows custom parsers. This is great but some of the syntax nodes that Babel supports\naren't supported by ESLint. When using this plugin, ESLint is monkeypatched and your code is\ntransformed into code that ESLint can understand. All location info such as line numbers,\ncolumns is also retained so you can track down errors with ease.\n\nBasically `babel-eslint` exports an [`index.js`](/index.js) that a linter can use.\nIt just needs to export a `parse` method that takes in a string of code and outputs an AST.\n\n## Usage\n\n### Supported ESLint versions\n\nESLint | babel-eslint\n------------ | -------------\n4.x | >= 6.x\n3.x | >= 6.x\n2.x | >= 6.x\n1.x | >= 5.x\n\n### Install\n\nEnsure that you have substituted the correct version lock for `eslint` and `babel-eslint` into this command:\n\n```sh\n$ npm install eslint@4.x babel-eslint@8 --save-dev\n# or\n$ yarn add eslint@4.x babel-eslint@8 -D\n```\n\n### Setup\n\n**.eslintrc**\n\n```json\n{\n  \"parser\": \"babel-eslint\",\n  \"rules\": {\n    \"strict\": 0\n  }\n}\n```\n\nCheck out the [ESLint docs](http://eslint.org/docs/rules/) for all possible rules.\n\n### Configuration\n\n`sourceType` can be set to `'module'`(default) or `'script'` if your code isn't using ECMAScript modules.\n`allowImportExportEverywhere` can be set to true to allow import and export declarations to appear anywhere a statement is allowed if your build environment supports that. By default, import and export declarations can only appear at a program's top level.\n`codeFrame` can be set to false to disable the code frame in the reporter. This is useful since some eslint formatters don't play well with it.\n\n**.eslintrc**\n\n```json\n{\n  \"parser\": \"babel-eslint\",\n  \"parserOptions\": {\n    \"sourceType\": \"module\",\n    \"allowImportExportEverywhere\": false,\n    \"codeFrame\": false\n  }\n}\n```\n\n### Run\n\n```sh\n$ eslint your-files-here\n```\n","engines":{"node":">=6"},"gitHead":"4882b2906619545f24c215ed57cd4997ca8e7b92","scripts":{"fix":"eslint index.js babylon-to-espree test --fix","lint":"eslint index.js babylon-to-espree test","test":"npm run lint && npm run test-only","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","precommit":"lint-staged","test-only":"mocha && mocha --require test/fixtures/preprocess-to-patch.js && mocha --require test/fixtures/use-eslint-old.js","preversion":"npm test"},"_npmUser":{"name":"existentialism","email":"bng412@gmail.com"},"repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"6.1.0","description":"Custom parser for ESLint","directories":{},"lint-staged":{"*.js":["eslint --format=codeframe --fix","git add"]},"_nodeVersion":"8.11.2","dependencies":{"@babel/types":"7.0.0-beta.51","eslint-scope":"~3.7.1","@babel/parser":"7.0.0-beta.51","@babel/traverse":"7.0.0-beta.51","@babel/code-frame":"7.0.0-beta.51","eslint-visitor-keys":"^1.0.0"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"husky":"^0.14.0","mocha":"^5.0.1","dedent":"^0.7.0","eslint":"npm:eslint@4.19.1","espree":"^3.5.2","prettier":"^1.4.4","eslint-old":"npm:eslint@4.13.1","lint-staged":"^6.1.1","babel-eslint":"^8.0.0","eslint-config-babel":"^7.0.1","eslint-plugin-import":"^2.8.0","eslint-plugin-flowtype":"^2.30.3","eslint-plugin-prettier":"^2.1.2"},"_npmOperationalInternal":{"tmp":"tmp/babel-eslint_9.0.0-beta.1_1530279472120_0.054107653651928045","host":"s3://npm-registry-packages"}},"9.0.0-beta.2":{"name":"babel-eslint","version":"9.0.0-beta.2","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@9.0.0-beta.2","maintainers":[{"name":"danez","email":"daniel@tschinder.de"},{"name":"existentialism","email":"bng412@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"jameshenry","email":"james@henry.sc"},{"name":"kaicataldo","email":"kaicataldo@gmail.com"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"monastic.panic","email":"monastic.panic@gmail.com"},{"name":"mysticatea","email":"star.ctor@gmail.com"},{"name":"not-an-aardvark","email":"teddy.katz@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"zertosh","email":"zertosh@gmail.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"ce99bdb4e5e6acc135eea84ea6d5d0adc7e6f01f","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-9.0.0-beta.2.tgz","fileCount":17,"integrity":"sha512-8lpia2C2VCfZzfA3l0QNYdJCLcpHAvMtEc+7wp3uxBYzk/XBwhp5e3f0zNnRQI56K5xKfqedQsz9PqCbmehKjA==","signatures":[{"sig":"MEUCIQC1NsK7vPAjiqrAeDZpttQFLGCvUUpczYxuNlIhw1iGgAIgUrvOKdNAZHTu64ruk7q+8AEJIvSuNH+XWld6sTmYHdc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42301,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbP5gMCRA9TVsSAnZWagAARAwP/2hoeIhTAMSWWrEmub+4\nvRbg9f0K5TexfKr60e6S5nEnmizdXSqRGik3ZNJNFSQVckO9OM7QqSCPY8xS\nyRgHu9RdVcvhWy3Cv3/+nk22nqtotETg93skBrbB4jHHxeq+s+TrwzWaZD4D\nYm/zuhjqDJRm5Xpiwen2j6kdW4ouuI2QFYFfUOZJMteX6Sr+Z8FmqZ1PX572\nw4HssQJosaKbqMC9u8zy++HzzO7dLC/G+IVSVannABaab+OqMhFZEQGNtU4H\nPAJcK3OVGDQl1L/rj9huZ62Sk0boUflbZUBu6I8iTKduiZ8hBD2ct0169qFZ\nlNyMEPCMV2oqo3kAcqtkOQTZjkdZDkf9Rlsibf9NhjkpBqqbRoquuWdBe1t8\nSR1IyFqiM/E4w0+jxRk1bmf/kReGtI2cBfZJ6t7OHvzg+AqZMn1Kcax/R+QJ\nJM6aR3jstyJygZ74tOkuE+INN+A+xoLgvpZmyB1Tv8yhIlPhZtknkoNeFcIi\n5bcBOXjn25SM5J5Xt7VcH+XZcb+vlFKJ8GZQWDkW5KYK08GQElecAykYrWmJ\nxv2QUQ9JvoqdzId8wRE/00flcNjWJhdpNEFbsPxBfpSOvawL4GIeOmHGEgUT\nM4HoOqUbpxKGceNnSbm1OuJoTZXyowcmnExxkW6QpFl8f7WLOZELbEQYF8kA\nH3kL\r\n=cAyc\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","files":["lib"],"readme":"# babel-eslint [![npm](https://img.shields.io/npm/v/babel-eslint.svg)](https://www.npmjs.com/package/babel-eslint) [![travis](https://img.shields.io/travis/babel/babel-eslint/master.svg)](https://travis-ci.org/babel/babel-eslint) [![npm-downloads](https://img.shields.io/npm/dm/babel-eslint.svg)](https://www.npmjs.com/package/babel-eslint)\n\n**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic\n[ESLint](https://github.com/eslint/eslint).\n\n### Why Use babel-eslint\n\nYou only need to use babel-eslint if you are using types (Flow) or experimental features not supported in ESLint itself yet. Otherwise try the default parser (you don't have to use it just because you are using Babel).\n\n---\n\n> If there is an issue, first check if it can be reproduced with the regular parser or with the latest versions of `eslint` and `babel-eslint`!\n\nFor questions and support please visit the [`#discussion`](https://babeljs.slack.com/messages/discussion/) babel slack channel (sign up [here](https://github.com/babel/notes/issues/38)) or eslint [gitter](https://gitter.im/eslint/eslint)!\n\n> Note that the `ecmaFeatures` config property may still be required for ESLint to work properly with features not in ECMAScript 5 by default. Examples are `globalReturn` and `modules`).\n\n## Known Issues\n\nFlow:\n> Check out [eslint-plugin-flowtype](https://github.com/gajus/eslint-plugin-flowtype): An `eslint` plugin that makes flow type annotations global variables and marks declarations as used. Solves the problem of false positives with `no-undef` and `no-unused-vars`.\n- `no-undef` for global flow types: `ReactElement`, `ReactClass` [#130](https://github.com/babel/babel-eslint/issues/130#issuecomment-111215076)\n  - Workaround: define types as globals in `.eslintrc` or define types and import them `import type ReactElement from './types'`\n- `no-unused-vars/no-undef` with Flow declarations (`declare module A {}`) [#132](https://github.com/babel/babel-eslint/issues/132#issuecomment-112815926)\n\nModules/strict mode\n- `no-unused-vars: [2, {vars: local}]` [#136](https://github.com/babel/babel-eslint/issues/136)\n\nPlease check out [eslint-plugin-react](https://github.com/yannickcr/eslint-plugin-react) for React/JSX issues\n- `no-unused-vars` with jsx\n\nPlease check out [eslint-plugin-babel](https://github.com/babel/eslint-plugin-babel) for other issues\n\n## How does it work?\n\nESLint allows custom parsers. This is great but some of the syntax nodes that Babel supports\naren't supported by ESLint. When using this plugin, ESLint is monkeypatched and your code is\ntransformed into code that ESLint can understand. All location info such as line numbers,\ncolumns is also retained so you can track down errors with ease.\n\nBasically `babel-eslint` exports an [`index.js`](/index.js) that a linter can use.\nIt just needs to export a `parse` method that takes in a string of code and outputs an AST.\n\n## Usage\n\n### Supported ESLint versions\n\nESLint | babel-eslint\n------------ | -------------\n4.x | >= 6.x\n3.x | >= 6.x\n2.x | >= 6.x\n1.x | >= 5.x\n\n### Install\n\nEnsure that you have substituted the correct version lock for `eslint` and `babel-eslint` into this command:\n\n```sh\n$ npm install eslint@4.x babel-eslint@8 --save-dev\n# or\n$ yarn add eslint@4.x babel-eslint@8 -D\n```\n\n### Setup\n\n**.eslintrc**\n\n```json\n{\n  \"parser\": \"babel-eslint\",\n  \"rules\": {\n    \"strict\": 0\n  }\n}\n```\n\nCheck out the [ESLint docs](http://eslint.org/docs/rules/) for all possible rules.\n\n### Configuration\n\n`sourceType` can be set to `'module'`(default) or `'script'` if your code isn't using ECMAScript modules.\n`allowImportExportEverywhere` can be set to true to allow import and export declarations to appear anywhere a statement is allowed if your build environment supports that. By default, import and export declarations can only appear at a program's top level.\n`codeFrame` can be set to false to disable the code frame in the reporter. This is useful since some eslint formatters don't play well with it.\n\n**.eslintrc**\n\n```json\n{\n  \"parser\": \"babel-eslint\",\n  \"parserOptions\": {\n    \"sourceType\": \"module\",\n    \"allowImportExportEverywhere\": false,\n    \"codeFrame\": false\n  }\n}\n```\n\n### Run\n\n```sh\n$ eslint your-files-here\n```\n","engines":{"node":">=6"},"gitHead":"e0119e088764efb9def4ce94b34825a0ecd287e6","scripts":{"fix":"eslint index.js babylon-to-espree test --fix","lint":"eslint index.js babylon-to-espree test","test":"npm run lint && npm run test-only","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","precommit":"lint-staged","test-only":"mocha && mocha --require test/fixtures/preprocess-to-patch.js && mocha --require test/fixtures/use-eslint-old.js","preversion":"npm test"},"_npmUser":{"name":"existentialism","email":"bng412@gmail.com"},"repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"6.1.0","description":"Custom parser for ESLint","directories":{},"lint-staged":{"*.js":["eslint --format=codeframe --fix","git add"]},"_nodeVersion":"8.11.2","dependencies":{"@babel/types":"7.0.0-beta.52","eslint-scope":"~3.7.1","@babel/parser":"7.0.0-beta.52","@babel/traverse":"7.0.0-beta.52","@babel/code-frame":"7.0.0-beta.52","eslint-visitor-keys":"^1.0.0"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"husky":"^0.14.0","mocha":"^5.0.1","dedent":"^0.7.0","eslint":"npm:eslint@4.19.1","espree":"^3.5.2","prettier":"^1.4.4","eslint-old":"npm:eslint@4.13.1","lint-staged":"^6.1.1","babel-eslint":"^8.0.0","eslint-config-babel":"^7.0.1","eslint-plugin-import":"^2.8.0","eslint-plugin-flowtype":"^2.30.3","eslint-plugin-prettier":"^2.1.2"},"_npmOperationalInternal":{"tmp":"tmp/babel-eslint_9.0.0-beta.2_1530894348326_0.02414360951012151","host":"s3://npm-registry-packages"}},"9.0.0-beta.3":{"name":"babel-eslint","version":"9.0.0-beta.3","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@9.0.0-beta.3","maintainers":[{"name":"danez","email":"daniel@tschinder.de"},{"name":"existentialism","email":"bng412@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"jameshenry","email":"james@henry.sc"},{"name":"kaicataldo","email":"kaicataldo@gmail.com"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"monastic.panic","email":"monastic.panic@gmail.com"},{"name":"mysticatea","email":"star.ctor@gmail.com"},{"name":"not-an-aardvark","email":"teddy.katz@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"zertosh","email":"zertosh@gmail.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"229e36419ca5f20a1548cf5cd2413aa861193649","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-9.0.0-beta.3.tgz","fileCount":17,"integrity":"sha512-niiSqeVysX9Hr3KjCzqz8XEQmVKeqQV7Xf2uaOyCMl6Z88IyE3k3ofXBMcEO0B8ATFHgc73Dfyx9hUaddDplag==","signatures":[{"sig":"MEQCIAybGxHPiyt8yd+qT0kbEdeEntb0AASzQQLk1gBYQEctAiBYYLX4rnt90RarYiGCCd3rONhNFtXfKROb/+RIksiFnQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42300,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbR10GCRA9TVsSAnZWagAA4jQP/0kAM5FPpfFOTWVkgx1r\n2iIomJrs5dsKvvhIuTPWc91+AMRNQd0SiJr+7tPTZQGgCB4wYybqXBIgZ3g9\nGYnQzqgoU337UzTmHadaxANcYVGslLFiUbhn0Fqf6wIVecXNG4X/cT1s2lAS\n638MKQ/2RLfy5+PfjG7T97NWunRFKJYA6gYeljkoboGBFQm3GNefgoWsEAPm\nv2M8pymp8IVg869ys3O9JS57DJV6QPjSrxwLHub2nhzPgLScMT6ZGAKU2tRe\n0iC/Ji3W60E9sTVKv7RihRllIWFyLQpHc8CEvwbHBos7rBBwEkYxvee7jS5o\n2UT7Ne1MTL2GrTm9Sb87mN2iezLZKJs4szJ88hNuaJib7MCH1uByZqW9/9/J\nxnf5OVgu9AHOI5Jz+Djk24YPcDk7EH/VOmmkjUE470r3an02Fb/HeL5SwpBk\nGAkNgtfg4pj2yToURIrP/x5tJjxOVICmP6hpjpJitUd+PIYHkCWwXjM1At5V\ngdota1Dc4sdoAI8idga9G9FktGKdoUm1HP4mBNA7a5JwprC0j7M1ll9pz1Lz\nQqMjXak+pIQ5BFq3uIcAfh9GzDnsDXlGmKX/vQOvhzTpuWeitq00nwyHQRAU\nv84phtjLUNUXJC4Ar4/eQnQEOpli1TZGNA5OfhOn3chpUnQSw63C9Kd2H9gJ\nJn7k\r\n=9/Gn\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","files":["lib"],"readme":"# babel-eslint [![npm](https://img.shields.io/npm/v/babel-eslint.svg)](https://www.npmjs.com/package/babel-eslint) [![travis](https://img.shields.io/travis/babel/babel-eslint/master.svg)](https://travis-ci.org/babel/babel-eslint) [![npm-downloads](https://img.shields.io/npm/dm/babel-eslint.svg)](https://www.npmjs.com/package/babel-eslint)\n\n**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic\n[ESLint](https://github.com/eslint/eslint).\n\n### Why Use babel-eslint\n\nYou only need to use babel-eslint if you are using types (Flow) or experimental features not supported in ESLint itself yet. Otherwise try the default parser (you don't have to use it just because you are using Babel).\n\n---\n\n> If there is an issue, first check if it can be reproduced with the regular parser or with the latest versions of `eslint` and `babel-eslint`!\n\nFor questions and support please visit the [`#discussion`](https://babeljs.slack.com/messages/discussion/) babel slack channel (sign up [here](https://github.com/babel/notes/issues/38)) or eslint [gitter](https://gitter.im/eslint/eslint)!\n\n> Note that the `ecmaFeatures` config property may still be required for ESLint to work properly with features not in ECMAScript 5 by default. Examples are `globalReturn` and `modules`).\n\n## Known Issues\n\nFlow:\n> Check out [eslint-plugin-flowtype](https://github.com/gajus/eslint-plugin-flowtype): An `eslint` plugin that makes flow type annotations global variables and marks declarations as used. Solves the problem of false positives with `no-undef` and `no-unused-vars`.\n- `no-undef` for global flow types: `ReactElement`, `ReactClass` [#130](https://github.com/babel/babel-eslint/issues/130#issuecomment-111215076)\n  - Workaround: define types as globals in `.eslintrc` or define types and import them `import type ReactElement from './types'`\n- `no-unused-vars/no-undef` with Flow declarations (`declare module A {}`) [#132](https://github.com/babel/babel-eslint/issues/132#issuecomment-112815926)\n\nModules/strict mode\n- `no-unused-vars: [2, {vars: local}]` [#136](https://github.com/babel/babel-eslint/issues/136)\n\nPlease check out [eslint-plugin-react](https://github.com/yannickcr/eslint-plugin-react) for React/JSX issues\n- `no-unused-vars` with jsx\n\nPlease check out [eslint-plugin-babel](https://github.com/babel/eslint-plugin-babel) for other issues\n\n## How does it work?\n\nESLint allows custom parsers. This is great but some of the syntax nodes that Babel supports\naren't supported by ESLint. When using this plugin, ESLint is monkeypatched and your code is\ntransformed into code that ESLint can understand. All location info such as line numbers,\ncolumns is also retained so you can track down errors with ease.\n\nBasically `babel-eslint` exports an [`index.js`](/index.js) that a linter can use.\nIt just needs to export a `parse` method that takes in a string of code and outputs an AST.\n\n## Usage\n\n### Supported ESLint versions\n\nESLint | babel-eslint\n------------ | -------------\n4.x | >= 6.x\n3.x | >= 6.x\n2.x | >= 6.x\n1.x | >= 5.x\n\n### Install\n\nEnsure that you have substituted the correct version lock for `eslint` and `babel-eslint` into this command:\n\n```sh\n$ npm install eslint@4.x babel-eslint@8 --save-dev\n# or\n$ yarn add eslint@4.x babel-eslint@8 -D\n```\n\n### Setup\n\n**.eslintrc**\n\n```json\n{\n  \"parser\": \"babel-eslint\",\n  \"rules\": {\n    \"strict\": 0\n  }\n}\n```\n\nCheck out the [ESLint docs](http://eslint.org/docs/rules/) for all possible rules.\n\n### Configuration\n\n`sourceType` can be set to `'module'`(default) or `'script'` if your code isn't using ECMAScript modules.\n`allowImportExportEverywhere` can be set to true to allow import and export declarations to appear anywhere a statement is allowed if your build environment supports that. By default, import and export declarations can only appear at a program's top level.\n`codeFrame` can be set to false to disable the code frame in the reporter. This is useful since some eslint formatters don't play well with it.\n\n**.eslintrc**\n\n```json\n{\n  \"parser\": \"babel-eslint\",\n  \"parserOptions\": {\n    \"sourceType\": \"module\",\n    \"allowImportExportEverywhere\": false,\n    \"codeFrame\": false\n  }\n}\n```\n\n### Run\n\n```sh\n$ eslint your-files-here\n```\n","engines":{"node":">=6"},"gitHead":"bc9787530b95d6b1cd6e68f076f9f961b38cbfff","scripts":{"fix":"eslint index.js babylon-to-espree test --fix","lint":"eslint index.js babylon-to-espree test","test":"npm run lint && npm run test-only","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","precommit":"lint-staged","test-only":"mocha && mocha --require test/fixtures/preprocess-to-patch.js && mocha --require test/fixtures/use-eslint-old.js","preversion":"npm test"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"5.6.0","description":"Custom parser for ESLint","directories":{},"lint-staged":{"*.js":["eslint --format=codeframe --fix","git add"]},"_nodeVersion":"8.10.0","dependencies":{"@babel/types":"7.0.0-beta.52","eslint-scope":"3.7.1","@babel/parser":"7.0.0-beta.52","@babel/traverse":"7.0.0-beta.52","@babel/code-frame":"7.0.0-beta.52","eslint-visitor-keys":"^1.0.0"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"husky":"^0.14.0","mocha":"^5.0.1","dedent":"^0.7.0","eslint":"npm:eslint@4.19.1","espree":"^3.5.2","prettier":"^1.4.4","eslint-old":"npm:eslint@4.13.1","lint-staged":"^6.1.1","babel-eslint":"^8.0.0","eslint-config-babel":"^7.0.1","eslint-plugin-import":"^2.8.0","eslint-plugin-flowtype":"^2.30.3","eslint-plugin-prettier":"^2.1.2"},"_npmOperationalInternal":{"tmp":"tmp/babel-eslint_9.0.0-beta.3_1531403518146_0.4946957492747954","host":"s3://npm-registry-packages"}},"4.0.8":{"name":"babel-eslint","version":"4.0.8","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@4.0.8","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"a40db3ece5644f167b2d60d4e36ab4d0cfb686b5","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-4.0.8.tgz","integrity":"sha512-OQcHNsyuOFoax9XftAL4R5TuSOSRYBvOXnuPG71SDxI0TQ7MKtR0nqGx6gjUX1BBI1owfxzxBGilUqEqpGWgvg==","signatures":[{"sig":"MEQCIF9AitOYQlM8ggRuhNuVDSEkNWS/qNzOdTT2wtoOXj9cAiBz90idYjJUyb8DRYemsMCc0eCQE3t/RZX60mW4JNwQfA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"a40db3ece5644f167b2d60d4e36ab4d0cfb686b5","gitHead":"5e2dc85d6885e0264235933e4c692d188e709166","scripts":{"test":"mocha","eslint":"cd eslint && mocha -c tests/lib/rules/**/*.js -r ../eslint-tester.js","bootstrap":"git submodule update --init && cd eslint && npm install"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"2.13.1","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"0.12.7","dependencies":{"babel-core":"^5.6.9","lodash.pick":"^3.1.0","lodash.assign":"^3.0.0"},"devDependencies":{"mocha":"^2.2.5","eslint":"^1.1.0","espree":"^2.0.3"}},"3.1.30":{"name":"babel-eslint","version":"3.1.30","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@3.1.30","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"4d244a478ee719ea0570ea347167d5ca2f9a9ca3","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-3.1.30.tgz","integrity":"sha512-ndM1GPxUKI0LcH/n4Mhgh9ZwUu0by7EmJSqrZXptjRYiOXPGj2Lxh5IypdFfk4ySqO37fMMw9XOP2yBtQkYO0w==","signatures":[{"sig":"MEYCIQCJcHjsU+8qPihhygZ9V/IAx8zc6ZxOlMeLOTZZzU7C0gIhAOg3O0iUYxB7Z+g/0M7MA3/h0TPXDksU+zAE3ms+Is0r","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"4d244a478ee719ea0570ea347167d5ca2f9a9ca3","gitHead":"403bbefbd95ff5b642dfc95a517929922161aec8","scripts":{"test":"mocha","eslint":"cd eslint && mocha -c tests/lib/rules/**/*.js -r ../eslint-tester.js","bootstrap":"git submodule update --init && cd eslint && npm install"},"_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"2.12.1","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"2.3.4","dependencies":{"babel-core":"^5.6.4","lodash.pick":"^3.1.0","lodash.assign":"^3.0.0"},"devDependencies":{"mocha":"^2.2.5","eslint":"^0.24.0","espree":"^2.0.3"}},"4.0.9":{"name":"babel-eslint","version":"4.0.9","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@4.0.9","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"155ab91e0bcdee2e7a695ca1e61eacfab5dee076","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-4.0.9.tgz","integrity":"sha512-CllPiZTugDvcS43rHtl7Raj/4QAPCbadommQooC0zVTVlyk6ulAFK36FTuk+18qOt2N+qy8Waa6mlgtSHShx9w==","signatures":[{"sig":"MEQCIBqb90gLaoRPSKV2cU7sGVqKPDW2/NBcVGSTUia9YUWNAiAtHOVJMnArWSL37QhXyl8eE2HOaucwKGBOLgZMA/P57w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"155ab91e0bcdee2e7a695ca1e61eacfab5dee076","gitHead":"9eccec9d072c09054992a69fd061638db8aaf0b0","scripts":{"test":"mocha","eslint":"cd eslint && mocha -c tests/lib/rules/**/*.js -r ../eslint-tester.js","bootstrap":"git submodule update --init && cd eslint && npm install"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"2.13.1","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"0.12.7","dependencies":{"babel-core":"^5.6.9","lodash.pick":"^3.1.0","lodash.assign":"^3.0.0"},"devDependencies":{"mocha":"^2.2.5","eslint":"^1.1.0","espree":"^2.0.3"}},"5.0.0":{"name":"babel-eslint","version":"5.0.0","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@5.0.0","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"47cfed8880090ffdf8569fa82adab5757ea5512f","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-5.0.0.tgz","integrity":"sha512-uFZC7Ng3ZA476dvhixFjjNX5Mf5goJvie7ozN0BheGZYFq3j7uIHDXCIUpQy4M2vN/bNuNzFDiLhlz0JJ9E8iQ==","signatures":[{"sig":"MEUCIQCHRUvMyhNNrq2/3/tnOJdrqzp//7pxApjAIzbwTWoB8gIgRx+p6UQsbq0chpYzVfA2YS8luoNtsEEyLhFv4cM280w=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js"],"_shasum":"47cfed8880090ffdf8569fa82adab5757ea5512f","gitHead":"0f20099e501c5076b227a672cb6491332a89246f","scripts":{"lint":"./node_modules/eslint/bin/eslint.js ./test index.js acorn-to-esprima.js","test":"mocha","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","bootstrap":"git submodule update --init && cd eslint && npm install","preversion":"npm test"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"3.6.0","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"5.1.0","dependencies":{"babylon":"^6.0.18","babel-types":"^6.0.19","lodash.pick":"^3.1.0","lodash.assign":"^3.2.0","babel-traverse":"^6.0.20","acorn-to-esprima":"^2.0.4"},"devDependencies":{"mocha":"^2.3.3","eslint":"^1.10.2","espree":"^2.2.5"},"_npmOperationalInternal":{"tmp":"tmp/babel-eslint-5.0.0.tgz_1455664074077_0.17597890179604292","host":"packages-9-west.internal.npmjs.com"}},"5.0.1":{"name":"babel-eslint","version":"5.0.1","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@5.0.1","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"25edb246baf3c8e34060830c7535a2e7060820b1","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-5.0.1.tgz","integrity":"sha512-WRFNAMTTphPiBnVs6Cy7vM48m02XV/8uKXTO1MdtGCg1bjKmP0OyWwb9RRawKOJ0O7mmMaed7PAqN6k7yaHphA==","signatures":[{"sig":"MEUCIQDtGMyEqa/uiWikdS5wb9M8UFvPD3FGt2uLn8QHftFMegIgNHzQ8H/MaGBnM+fDoXEMtKgL5czq9H8tydp7iiCLqZQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js"],"_shasum":"25edb246baf3c8e34060830c7535a2e7060820b1","gitHead":"43d5ba6966047ba287bd414126f4861b02f7dcf6","scripts":{"lint":"./node_modules/eslint/bin/eslint.js ./test index.js acorn-to-esprima.js","test":"mocha","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","bootstrap":"git submodule update --init && cd eslint && npm install","preversion":"npm test"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"3.6.0","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"5.1.0","dependencies":{"babylon":"^6.0.18","babel-types":"^6.0.19","lodash.pick":"^3.1.0","lodash.assign":"^3.2.0","babel-traverse":"^6.0.20","acorn-to-esprima":"^2.0.4"},"devDependencies":{"mocha":"^2.3.3","eslint":"^1.10.2","espree":"^2.2.5"},"peerDependencies":{"eslint":"<2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/babel-eslint-5.0.1.tgz_1458963942017_0.6763984786812216","host":"packages-12-west.internal.npmjs.com"}},"5.0.2":{"name":"babel-eslint","version":"5.0.2","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@5.0.2","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"d343015e0987e4ac5ea54bd246151ac74f7fc44a","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-5.0.2.tgz","integrity":"sha512-7gWxXmYJ3mDkpnTUDHpxDKm/4fawfXrnrF3ysIJuy35T5F7pMVOZZ3GCRnWCb8uKfEzI7PsGI8MOZaDpcWeTVw==","signatures":[{"sig":"MEQCID56v7DuMG77CyN7HzHi99sI/euZUhJrBGWn/OtnEQ0FAiAWeVlOpIak/eb7LocpIQJxumV+gBiWWDG0JqHXdikN7Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js"],"_shasum":"d343015e0987e4ac5ea54bd246151ac74f7fc44a","gitHead":"04c5ebe5e13c417411b618169e9fe04aadb0e80a","scripts":{"lint":"./node_modules/eslint/bin/eslint.js ./test index.js acorn-to-esprima.js","test":"mocha","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","bootstrap":"git submodule update --init && cd eslint && npm install","preversion":"npm test"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"3.6.0","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"5.1.0","dependencies":{"babylon":"^6.0.18","babel-types":"^6.0.19","lodash.pick":"^3.1.0","lodash.assign":"^3.2.0","babel-traverse":"^6.0.20","acorn-to-esprima":"^2.0.4"},"devDependencies":{"mocha":"^2.3.3","eslint":"^1.10.2","espree":"^2.2.5"},"peerDependencies":{"eslint":"<2.3.0"},"_npmOperationalInternal":{"tmp":"tmp/babel-eslint-5.0.2.tgz_1459338067632_0.3738697627559304","host":"packages-12-west.internal.npmjs.com"}},"5.0.3":{"name":"babel-eslint","version":"5.0.3","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@5.0.3","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"b5579c86ed30c0a397007e7428edf13eba4096b2","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-5.0.3.tgz","integrity":"sha512-z98MSZW7gTqMK/1y40hdc/WSL7xKKOqAO7MyuzIlddFQNlngQaSWArnh/vKwB1sTsVKsr89e7uz4iQWG0gZI2w==","signatures":[{"sig":"MEYCIQCW4tEXXUDWuzQl6lH8JG+sXXnxOvG6ltsrNKg483czEgIhAJwAESOFOLHnspo+evohjU3lvFf/4p7Uq7rWht7uYjxV","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js"],"_shasum":"b5579c86ed30c0a397007e7428edf13eba4096b2","gitHead":"07383bb7e2a1948d2162e30e959edf90cb9a4579","scripts":{"lint":"./node_modules/eslint/bin/eslint.js ./test index.js acorn-to-esprima.js","test":"mocha","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","bootstrap":"git submodule update --init && cd eslint && npm install","preversion":"npm test"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"3.8.3","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"5.1.0","dependencies":{"babylon":"^6.0.18","babel-types":"^6.0.19","lodash.pick":"^3.1.0","lodash.assign":"^3.2.0","babel-traverse":"^6.0.20","acorn-to-esprima":"^2.0.4"},"devDependencies":{"mocha":"^2.3.3","eslint":"^1.10.2","espree":"^2.2.5"},"peerDependencies":{"eslint":"<2.3.0"},"_npmOperationalInternal":{"tmp":"tmp/babel-eslint-5.0.3.tgz_1459457525438_0.8120077769272029","host":"packages-12-west.internal.npmjs.com"}},"5.0.4":{"name":"babel-eslint","version":"5.0.4","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@5.0.4","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"a6ba51ae582a1d4e25adfddbc2a61f8d5a9040b9","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-5.0.4.tgz","integrity":"sha512-NJo6B7o6A/6Fzw4L6UlYMjfRMajfAZNvQ7AhvkVoKdleT0nRpVwbs+kVoSbAlYGVlPkIg7/90uIZW+GJ+wdPXQ==","signatures":[{"sig":"MEUCIQCFl+0CYweIMPRVTRuECmVwbPYsr2O1w9QE4MVWox3iwwIgG8S4k2eckNCHF65tIWle+Zr2xPb03GtKuxIsalTMMEM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js"],"_shasum":"a6ba51ae582a1d4e25adfddbc2a61f8d5a9040b9","gitHead":"54815d2c38f86e7b3960c4040919f2ceac312888","scripts":{"lint":"./node_modules/eslint/bin/eslint.js ./test index.js acorn-to-esprima.js","test":"mocha","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","bootstrap":"git submodule update --init && cd eslint && npm install","preversion":"npm test"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"3.8.3","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"5.1.0","dependencies":{"babylon":"^6.0.18","babel-types":"^6.0.19","lodash.pick":"^3.1.0","lodash.assign":"^3.2.0","babel-traverse":"^6.0.20","acorn-to-esprima":"^2.0.4"},"devDependencies":{"mocha":"^2.3.3","eslint":"^1.10.2","espree":"^2.2.5"},"peerDependencies":{"eslint":"<2.3.0"},"_npmOperationalInternal":{"tmp":"tmp/babel-eslint-5.0.4.tgz_1459466243168_0.7925616216380149","host":"packages-12-west.internal.npmjs.com"}},"4.0.2":{"name":"babel-eslint","version":"4.0.2","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@4.0.2","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"643652100dad9edee473e5bb851d62a3d50f7acc","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-4.0.2.tgz","integrity":"sha512-3bj11pbMsrB74AySc5+5xuDW3RlexOESo0v5CjhYcdavx/A6vB/IFjtTJ+rOx+I18op50sXwgCClWZfZR6Quyw==","signatures":[{"sig":"MEUCIFQgwmoOyTAjXa8vDBM2G8LYJpCjFPDhcSBB8FPBASlFAiEA/m6wPeHc1oBNQxgV5bSxTr2nQX9fCc6HV2cdyL2mzGo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"643652100dad9edee473e5bb851d62a3d50f7acc","gitHead":"313dabcafd732bf2949df4b11de9c272770c1eff","scripts":{"test":"mocha","eslint":"cd eslint && mocha -c tests/lib/rules/**/*.js -r ../eslint-tester.js","bootstrap":"git submodule update --init && cd eslint && npm install"},"_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"2.12.1","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"2.3.4","dependencies":{"babel-core":"^5.6.4","lodash.pick":"^3.1.0","lodash.assign":"^3.0.0"},"devDependencies":{"mocha":"^2.2.5","eslint":"^0.24.0","espree":"^2.0.3"}},"4.0.3":{"name":"babel-eslint","version":"4.0.3","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@4.0.3","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"426222f9a3378f372733181598a7ab72189ee241","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-4.0.3.tgz","integrity":"sha512-qQPEPAIuAbdAl8t6ATuPSNSJgcCgqcbl5Q4OvBenHCIJKPLqdw7otcSBzwKfirdzvWFBJndiR6PCOSI+aZST4w==","signatures":[{"sig":"MEQCIHXa1YnkmH9WOL7szVeiw+zbyBCfYLEYMouPsnGYu0klAiBC1l8Z+nMzrlX+DH0cxToZdxntpnsgLAjQsCO+ZO527g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"426222f9a3378f372733181598a7ab72189ee241","gitHead":"1eb01dc55f9db69b0ddb654e458694adbe54ea17","scripts":{"test":"mocha","eslint":"cd eslint && mocha -c tests/lib/rules/**/*.js -r ../eslint-tester.js","bootstrap":"git submodule update --init && cd eslint && npm install"},"_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"2.12.1","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"2.3.4","dependencies":{"babel-core":"^5.6.4","lodash.pick":"^3.1.0","lodash.assign":"^3.0.0"},"devDependencies":{"mocha":"^2.2.5","eslint":"^0.24.0","espree":"^2.0.3"}},"4.0.0":{"name":"babel-eslint","version":"4.0.0","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@4.0.0","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"4bcedf5aef5774f100a72553bfe575b944f6a1e3","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-4.0.0.tgz","integrity":"sha512-FuIXn2IYfXI3OT9Zx0qFyrMXaPuHD9KpxKtnvDcSNwFhIq9YOeiUFDL6g7P4aAfRHGcrL4smCY+Kr0xh/WNLJQ==","signatures":[{"sig":"MEYCIQDkPGVK4BWVRpt1GyT/pEZJuGBqcnlpSFZWoT9+jfS0KgIhAInV7zRtnNBW0gWXefoXbchVZUPq4/Evi5QtXu+oW81H","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"4bcedf5aef5774f100a72553bfe575b944f6a1e3","gitHead":"2352867a3ecbc9d443019f12fe3cc5002d1ad2f9","scripts":{"test":"mocha","eslint":"cd eslint && mocha -c tests/lib/rules/**/*.js -r ../eslint-tester.js","bootstrap":"git submodule update --init && cd eslint && npm install"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"2.13.2","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"2.3.4","dependencies":{"babel-core":"^5.6.4","lodash.pick":"^3.1.0","lodash.assign":"^3.0.0"},"devDependencies":{"mocha":"^2.2.5","eslint":"^0.24.0","espree":"^2.0.3"}},"4.0.1":{"name":"babel-eslint","version":"4.0.1","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@4.0.1","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"ac1c254416fb1979688c1e076338d8716dd9dde8","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-4.0.1.tgz","integrity":"sha512-tquVuGDpJEyjL+bYFQ9ZBRuXU23HEPYv38reS06AqpkFXChCxB81ZYKCFS90kCAQ1HHrlbf7f7boI8CPAC8CTw==","signatures":[{"sig":"MEUCIQCrWYQNItGYrn0pGlAITZliIPAlyLScpDNoWqqatHhlUwIgZUoGPlDR05DMN0b9tOU5UQRY1QDHS2ZIecBCesHCxNs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"ac1c254416fb1979688c1e076338d8716dd9dde8","gitHead":"15506ba21ad914a4b1d2d60a06d6042ae89a619e","scripts":{"test":"mocha","eslint":"cd eslint && mocha -c tests/lib/rules/**/*.js -r ../eslint-tester.js","bootstrap":"git submodule update --init && cd eslint && npm install"},"_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"2.12.1","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"2.3.4","dependencies":{"babel-core":"^5.6.4","lodash.pick":"^3.1.0","lodash.assign":"^3.0.0"},"devDependencies":{"mocha":"^2.2.5","eslint":"^0.24.0","espree":"^2.0.3"}},"4.0.6":{"name":"babel-eslint","version":"4.0.6","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@4.0.6","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"1267901e820c805ece6d6cf41887c73b79c87e38","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-4.0.6.tgz","integrity":"sha512-ya6f/CegRABnsEM07pjnKbI8xvojACwITATJY7pL6Qp1qeYko8zpq31/CrbQpOYBqNjHZm9ZMHfxY8CDACqwEw==","signatures":[{"sig":"MEYCIQCO1+vKJ5Yiz5RYaKIwiPBAbDnWNohkSOH/436Zpr/7iAIhAO9Wmc+Qowx7QR2JCPMPwAKome8YZOwxAp2vXJHzCz85","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"1267901e820c805ece6d6cf41887c73b79c87e38","gitHead":"2aee3e7342e5093ec21f22b686ec62597fb79225","scripts":{"test":"mocha","eslint":"cd eslint && mocha -c tests/lib/rules/**/*.js -r ../eslint-tester.js","bootstrap":"git submodule update --init && cd eslint && npm install"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"2.13.1","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"0.12.7","dependencies":{"babel-core":"^5.6.9","lodash.pick":"^3.1.0","lodash.assign":"^3.0.0"},"devDependencies":{"mocha":"^2.2.5","eslint":"^1.1.0","espree":"^2.0.3"}},"4.0.7":{"name":"babel-eslint","version":"4.0.7","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@4.0.7","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"c17184e10469a110baaa58b8a7a610e47b780674","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-4.0.7.tgz","integrity":"sha512-PrGp4w70jBqBWUaBCS8ZUJVDyYMlTH2cmpgRBHi20fEG/JoJ5slK/fuEpOtmbf2xp1/kzRSZ/UyWToVUmbXmlQ==","signatures":[{"sig":"MEQCICjU0BHgDBtd5R+Qay5ikU+qwwaBevhZ1DHH2+K/tYAUAiAWpx7L+ryw6FYVxu7zJca/028sKgO90wM2SiItXWj2Sg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"c17184e10469a110baaa58b8a7a610e47b780674","gitHead":"6dd4c5b6b5abdcd77c46bec64c75769414cc1a8b","scripts":{"test":"mocha","eslint":"cd eslint && mocha -c tests/lib/rules/**/*.js -r ../eslint-tester.js","bootstrap":"git submodule update --init && cd eslint && npm install"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"2.13.1","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"0.12.7","dependencies":{"babel-core":"^5.6.9","lodash.pick":"^3.1.0","lodash.assign":"^3.0.0"},"devDependencies":{"mocha":"^2.2.5","eslint":"^1.1.0","espree":"^2.0.3"}},"4.0.4":{"name":"babel-eslint","version":"4.0.4","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@4.0.4","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"7b66cf8ebca1f237274f06e8c8c7a8e55d10026e","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-4.0.4.tgz","integrity":"sha512-FWxGZWb9uQDGUjqSY/YjoIozvD0EK+rvg6Hyc9cOg9Xnfx4Hr7E4Efql2s2O8z+1yU0yOn4nlr0oFdBAM9ANRQ==","signatures":[{"sig":"MEYCIQC/TyxW2DcrM9urZI4H6KBavWEYwZLjxO0VC2vi56aH7QIhAOfghcidrCmIqv61XpM2rnLvZ3T6DJUBf/fFjISXLV0q","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"7b66cf8ebca1f237274f06e8c8c7a8e55d10026e","gitHead":"5be0fca73326013a8e0bb8a46131ad799d9dd7f2","scripts":{"test":"mocha","eslint":"cd eslint && mocha -c tests/lib/rules/**/*.js -r ../eslint-tester.js","bootstrap":"git submodule update --init && cd eslint && npm install"},"_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"2.12.1","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"2.3.4","dependencies":{"babel-core":"^5.6.4","lodash.pick":"^3.1.0","lodash.assign":"^3.0.0"},"devDependencies":{"mocha":"^2.2.5","eslint":"^0.24.0","espree":"^2.0.3"}},"4.0.5":{"name":"babel-eslint","version":"4.0.5","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@4.0.5","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"860fcaa3124c14d59f0b37d9536f0b375bfd8fa1","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-4.0.5.tgz","integrity":"sha512-McXrOBeEuf38bG1S73g3qpjaP+y+TUVTzvlHd3jKQkbheXu8iDW3m3jqKjaXmDPgdZMh2wLjiYwP/khs2iKztQ==","signatures":[{"sig":"MEYCIQCUOJ6gSlpEKXLN8CbAVc6UybvGDQWnpDfiNY/qQVYVfwIhAINZk0sqNGuTnZrCHEn8HrPuVyN5e7q8w3Wpwxo717/x","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"860fcaa3124c14d59f0b37d9536f0b375bfd8fa1","gitHead":"d467c8a60887ebd68908e9c84080dbc31330e075","scripts":{"test":"mocha","eslint":"cd eslint && mocha -c tests/lib/rules/**/*.js -r ../eslint-tester.js","bootstrap":"git submodule update --init && cd eslint && npm install"},"_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"2.12.1","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"2.3.4","dependencies":{"babel-core":"^5.6.9","lodash.pick":"^3.1.0","lodash.assign":"^3.0.0"},"devDependencies":{"mocha":"^2.2.5","eslint":"^0.24.0","espree":"^2.0.3"}},"8.1.1":{"name":"babel-eslint","version":"8.1.1","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@8.1.1","maintainers":[{"name":"zertosh","email":"zertosh@gmail.com"},{"name":"kaicataldo","email":"kaicataldo@gmail.com"},{"name":"jameshenry","email":"james@henry.sc"},{"name":"mysticatea","email":"star.ctor@gmail.com"},{"name":"not-an-aardvark","email":"teddy.katz@gmail.com"},{"name":"monastic.panic","email":"monastic.panic@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"danez","email":"daniel@tschinder.de"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"a0637faf5ba160ae9e445b360f4d5be295edf1ed","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-8.1.1.tgz","integrity":"sha512-3oP7pacBIJe2wRiMwr0W7a+1G6rnIUVFqSePXtLayBya2/d1X+KnH1nZfCoS8OXPuuVz5lmJtKrHc8TjDVWK+g==","signatures":[{"sig":"MEYCIQDKOaGcf2D75T+2ANZtLDHvsz/MC4Oj3WkAdxgKnx33QQIhAJg7SY8H4Nbei9+LZXYpYy27Fscjjn5RLr60snZxBvts","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","files":["lib"],"engines":{"node":">=4"},"gitHead":"d84b236467474940c7794135d7b10866d54374c5","scripts":{"fix":"eslint index.js babylon-to-espree test --fix","lint":"eslint index.js babylon-to-espree test","test":"npm run lint && npm run test-only","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","precommit":"lint-staged","test-only":"mocha && mocha --require test/fixtures/preprocess-to-patch.js && mocha --require test/fixtures/use-eslint-old.js","preversion":"npm test"},"_npmUser":{"name":"mysticatea","email":"star.ctor@gmail.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"5.6.0","description":"Custom parser for ESLint","directories":{},"lint-staged":{"*.js":["eslint --format=codeframe --fix","git add"]},"_nodeVersion":"9.2.0","dependencies":{"babylon":"7.0.0-beta.31","@babel/types":"7.0.0-beta.31","eslint-scope":"~3.7.1","@babel/traverse":"7.0.0-beta.31","@babel/code-frame":"7.0.0-beta.31","eslint-visitor-keys":"^1.0.0"},"devDependencies":{"husky":"^0.14.0","mocha":"^4.0.0","dedent":"^0.7.0","eslint":"^4.14.0","espree":"^3.4.0","prettier":"^1.4.4","eslint-old":"npm:eslint@4.13.1","lint-staged":"^4.0.0","babel-eslint":"^8.0.0","eslint-config-babel":"^7.0.1","eslint-plugin-import":"^2.8.0","eslint-plugin-flowtype":"^2.30.3","eslint-plugin-prettier":"^2.1.2"},"_npmOperationalInternal":{"tmp":"tmp/babel-eslint-8.1.1.tgz_1514185339741_0.8943911725655198","host":"s3://npm-registry-packages"}},"8.1.2":{"name":"babel-eslint","version":"8.1.2","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@8.1.2","maintainers":[{"name":"zertosh","email":"zertosh@gmail.com"},{"name":"kaicataldo","email":"kaicataldo@gmail.com"},{"name":"jameshenry","email":"james@henry.sc"},{"name":"mysticatea","email":"star.ctor@gmail.com"},{"name":"not-an-aardvark","email":"teddy.katz@gmail.com"},{"name":"monastic.panic","email":"monastic.panic@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"danez","email":"daniel@tschinder.de"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"a39230b0c20ecbaa19a35d5633bf9b9ca2c8116f","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-8.1.2.tgz","integrity":"sha512-IE+glF8t0lLoldylN7JyR8gT7e3jwyuNH2ds8g3UVUwGob/U4iT7Xpsiq2kQ8QGLb0eX4RcQXNqeW6mgPysu9A==","signatures":[{"sig":"MEYCIQDOuWWBk+HQgs0O+ypz7U1vYOkBPqdFUIDNSh5HXLxQrAIhAMzg38l+E6/B7umkxyOXAv3ig4/manDMqq0airwd5Yzy","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","files":["lib"],"engines":{"node":">=4"},"gitHead":"36bf8b450d822ab78a1093d5361a34e7052cb375","scripts":{"fix":"eslint index.js babylon-to-espree test --fix","lint":"eslint index.js babylon-to-espree test","test":"npm run lint && npm run test-only","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","precommit":"lint-staged","test-only":"mocha && mocha --require test/fixtures/preprocess-to-patch.js && mocha --require test/fixtures/use-eslint-old.js","preversion":"npm test"},"_npmUser":{"name":"mysticatea","email":"star.ctor@gmail.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"5.6.0","description":"Custom parser for ESLint","directories":{},"lint-staged":{"*.js":["eslint --format=codeframe --fix","git add"]},"_nodeVersion":"9.2.0","dependencies":{"babylon":"7.0.0-beta.31","@babel/types":"7.0.0-beta.31","eslint-scope":"~3.7.1","@babel/traverse":"7.0.0-beta.31","@babel/code-frame":"7.0.0-beta.31","eslint-visitor-keys":"^1.0.0"},"devDependencies":{"husky":"^0.14.0","mocha":"^4.0.0","dedent":"^0.7.0","eslint":"^4.14.0","espree":"^3.4.0","prettier":"^1.4.4","eslint-old":"npm:eslint@4.13.1","lint-staged":"^4.0.0","babel-eslint":"^8.0.0","eslint-config-babel":"^7.0.1","eslint-plugin-import":"^2.8.0","eslint-plugin-flowtype":"^2.30.3","eslint-plugin-prettier":"^2.1.2"},"_npmOperationalInternal":{"tmp":"tmp/babel-eslint-8.1.2.tgz_1514253837491_0.9339654587674886","host":"s3://npm-registry-packages"}},"8.1.0":{"name":"babel-eslint","version":"8.1.0","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@8.1.0","maintainers":[{"name":"zertosh","email":"zertosh@gmail.com"},{"name":"kaicataldo","email":"kaicataldo@gmail.com"},{"name":"jameshenry","email":"james@henry.sc"},{"name":"mysticatea","email":"star.ctor@gmail.com"},{"name":"not-an-aardvark","email":"teddy.katz@gmail.com"},{"name":"monastic.panic","email":"monastic.panic@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"danez","email":"daniel@tschinder.de"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"b6f32d598559f96127fa608bd19574626325d5b7","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-8.1.0.tgz","integrity":"sha512-PoEowcPopVkHl98QPj3ba3iP98I+cAFJXqoJAua23nmw3Qp2m45AJcTQIb5aiqq7Zqi2XjhJuBO1BJDvYCA2Gg==","signatures":[{"sig":"MEQCIBF/RBKgGQvXsng2HoPB9ViDWtD8T0wriqhKH/Lzf7lXAiAyVOyzUkPNSFjO5kihP8tBRdCqZuD7ppHGRh1kMBLqEQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","files":["lib"],"engines":{"node":">=4"},"gitHead":"893a5e308e237c77b733224aeeaece53df6dd326","scripts":{"fix":"eslint index.js babylon-to-espree test --fix","lint":"eslint index.js babylon-to-espree test","test":"npm run lint && npm run test-only","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","precommit":"lint-staged","test-only":"mocha","preversion":"npm test"},"_npmUser":{"name":"not-an-aardvark","email":"teddy.katz@gmail.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"5.6.0","description":"Custom parser for ESLint","directories":{},"lint-staged":{"*.js":["eslint --format=codeframe --fix","git add"]},"_nodeVersion":"9.2.1","dependencies":{"babylon":"7.0.0-beta.31","@babel/types":"7.0.0-beta.31","eslint-scope":"~3.7.1","@babel/traverse":"7.0.0-beta.31","@babel/code-frame":"7.0.0-beta.31","eslint-visitor-keys":"^1.0.0"},"devDependencies":{"husky":"^0.14.0","mocha":"^4.0.0","dedent":"^0.7.0","eslint":"^4.12.1","espree":"^3.4.0","prettier":"^1.4.4","lint-staged":"^4.0.0","babel-eslint":"^8.0.0","eslint-config-babel":"^7.0.1","eslint-plugin-flowtype":"^2.30.3","eslint-plugin-prettier":"^2.1.2"},"_npmOperationalInternal":{"tmp":"tmp/babel-eslint-8.1.0.tgz_1514099105411_0.4973682991694659","host":"s3://npm-registry-packages"}},"2.0.0":{"name":"babel-eslint","version":"2.0.0","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@2.0.0","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"5e25ef9b81b85b76a3c85c66c86df68df2c7eeb7","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-2.0.0.tgz","integrity":"sha512-oeoWat5EFVs6YJxjuTLpw9KhWuPWewce0vzLV1HyL/F8P/elcN2VR1y7uHGaIcRrupeCCP/S6dWuXE9HL6sVUQ==","signatures":[{"sig":"MEQCICLBAYfD7jRDBWlvDSyGKMKRn1gUgxkR9XV3cWXtqgV2AiBJVQ99Lp4FVpSGa0Z0Rtff8aM5COhys/mrPj9pbmYe2Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"5e25ef9b81b85b76a3c85c66c86df68df2c7eeb7","gitHead":"d230a2f6a6b6e7e76bf06cc7c1eae700168e79b1","scripts":{"test":"mocha"},"_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"2.6.0","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"1.4.1","dependencies":{"babel-core":"^4.6.0","lodash.assign":"^3.0.0"},"devDependencies":{"mocha":"^2.1.0","eslint":"^0.16.0","espree":"^1.10.0"}},"8.2.4":{"name":"babel-eslint","version":"8.2.4","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@8.2.4","maintainers":[{"name":"danez","email":"daniel@tschinder.de"},{"name":"existentialism","email":"bng412@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"jameshenry","email":"james@henry.sc"},{"name":"kaicataldo","email":"kaicataldo@gmail.com"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"monastic.panic","email":"monastic.panic@gmail.com"},{"name":"mysticatea","email":"star.ctor@gmail.com"},{"name":"not-an-aardvark","email":"teddy.katz@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"zertosh","email":"zertosh@gmail.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"93bd946ffaaa00153d82d864c57e3609eaf148d8","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-8.2.4.tgz","fileCount":17,"integrity":"sha512-Ngjr50RgF+cxYDb2GOmqZcG/rm+qspvSiTxi0UD+omDAPHLnLzFzTO1tUyqKuBXlLZb/R1lWshs83T+mNhevwg==","signatures":[{"sig":"MEUCIBjK9GfAigIpZTjQyn/BxIwFWvnc9Syd5mn466mn/39YAiEAxatdBzBlZoXBfO9l4o83gY8+pIWFOTR55qssnuH6fwU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42148,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbLUOcCRA9TVsSAnZWagAAbU4QAJaFmj9kKqEuXeOZpqaI\nxGOq++nXcjvvrNJpUVoqZClXvI+OJX17T/7/BH/FOnN+igm31+xUDzVBWgK0\n7NfMy2LNRLt0TjZnvWCAqBpW40yR46lWPijIffhPfBdYFyJ6qT2Gp7R5CDrV\n9dxTWCQs3St8ys/nMx5s3K2coCpRjPA2LZVidrtsLeJbiaddwhvZHfU0Zncm\n3iRGl8k5uxDIGFMlTpUG1GBhRPZBeHRk+chmVvJWmf9Tc0UcOuCs+qNIBaQF\n0thZtpAVcTjYflHFxB62gY3fR03TKUgfRSWsLjJ7ZO8NevpUI/DIby9MXkAr\nAt3bTVXn8pwwEdeFjU0gYhx20XCTxvEWJRTTnFkOx5NLIQhYMhKUc1BGRgCQ\n6qzLPhTKvjQ9mE9Q+DZWfo+vCFMgzD5E7z0UxqsblWPQ0KStdzTistKQfTdg\nKgf/S3NSRr+TnRz2agH86hHeqSv+bpryMpQTkX3t729HPvMIXQGHi+5ggxY4\ncu3VoFD2oonHv6byRHHqnUpsI55dUPw0BCc8lbB2igZusIEb3h2mdcLXL1i8\nqNc+SVLmDd7NhOKeZz5bVagpCaDDuHylFHCp/mP3raJQLLYgAvICBQPEmhHH\ngUCDLU8am2pgkD5ZODu6+guPlKWM4Fcq1zQjiXb9p07JFat8N6+FW9Xh9x04\nOL/c\r\n=l+ld\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","files":["lib"],"engines":{"node":">=4"},"gitHead":"2bd8508345bbfda5f8721de451ef6d41abd8ce8d","scripts":{"fix":"eslint index.js babylon-to-espree test --fix","lint":"eslint index.js babylon-to-espree test","test":"npm run lint && npm run test-only","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","precommit":"lint-staged","test-only":"mocha && mocha --require test/fixtures/preprocess-to-patch.js && mocha --require test/fixtures/use-eslint-old.js","preversion":"npm test"},"_npmUser":{"name":"existentialism","email":"bng412@gmail.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"6.1.0","description":"Custom parser for ESLint","directories":{},"lint-staged":{"*.js":["eslint --format=codeframe --fix","git add"]},"_nodeVersion":"8.11.2","dependencies":{"@babel/types":"7.0.0-beta.51","eslint-scope":"~3.7.1","@babel/parser":"7.0.0-beta.51","@babel/traverse":"7.0.0-beta.51","@babel/code-frame":"7.0.0-beta.51","eslint-visitor-keys":"^1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"husky":"^0.14.0","mocha":"^5.0.1","dedent":"^0.7.0","eslint":"npm:eslint@4.19.1","espree":"^3.5.2","prettier":"^1.4.4","eslint-old":"npm:eslint@4.13.1","lint-staged":"^6.1.1","babel-eslint":"^8.0.0","eslint-config-babel":"^7.0.1","eslint-plugin-import":"^2.8.0","eslint-plugin-flowtype":"^2.30.3","eslint-plugin-prettier":"^2.1.2"},"_npmOperationalInternal":{"tmp":"tmp/babel-eslint_8.2.4_1529693084355_0.8673530829285376","host":"s3://npm-registry-packages"}},"8.2.5":{"name":"babel-eslint","version":"8.2.5","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@8.2.5","maintainers":[{"name":"danez","email":"daniel@tschinder.de"},{"name":"existentialism","email":"bng412@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"jameshenry","email":"james@henry.sc"},{"name":"kaicataldo","email":"kaicataldo@gmail.com"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"monastic.panic","email":"monastic.panic@gmail.com"},{"name":"mysticatea","email":"star.ctor@gmail.com"},{"name":"not-an-aardvark","email":"teddy.katz@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"zertosh","email":"zertosh@gmail.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"dc2331c259d36782aa189da510c43dedd5adc7a3","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-8.2.5.tgz","fileCount":17,"integrity":"sha512-TcdEGCHHquOPQOlH6Fe6MLwPWWWJLdeKhcGoLfOTShETpoH8XYWhjWJw38KCKaTca7c/EdxLolnbakixKxnXDg==","signatures":[{"sig":"MEUCIBP/k0RsXnUadkwbs0DJZQ6rMxUL1Wrb/19rbliOIej5AiEAo0p+f1m3H0otRixKoeKXk4LRKHH+xH0eonmIwyYYOvk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42123,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbLkk1CRA9TVsSAnZWagAA4aYP/2DTK4y97i42taB5vL8p\nd1kNSBUI4FW+cmYsYRlsMjR4q2BFl6oVbIAfw8UcWkl4saXCG/EqwNa9GaZV\n1l7/Jq7nsgkLcNN/sCDY7A0nZlCjIT5eEDtLsk/P45QoXgTt1x+qj96voV72\nPB++m2bPMHEy+bITdMX3umBZrG0ja1gNC6MBzyX6Ls4LYkzwtWy9nC742uwB\nO5uGciVdTF81rKNvvMdKYtELAQcO5EUCfa4/zPlX2dHm8dj29O7kwfvi2O02\njRIe4uEqY6sdIIrKws/dFLNB6Z60g8AsaBJUVrwnBjtyvs9/tKbKwFKqeGY/\na6c60pcvYPi911kbi6q0DS4HQ4H6mk556N7FI+zYb3ZmQwyhUH/IgMGxEbN1\ntuIbrbjZZrrw0xjkZOvo7skYwIYDlL59N1YyL852jXNPCczILAuxt0h3aj6G\n03GBl8PH3YtvSdpSll0fdm1kI3YXPpZY7w8YOgWuQNNjVJ8CqY0SNULkRIDr\nydQ6FCJW5KOSmNOCWcOaZENziMceEWkbuy/MrPNSDZq+WP+ni22x6vrStw6H\n/Zd0ZIGTMNXL58DikzgMI5OmLJ1nwc2PTmLAbW9H4niPkNcVyWVbCxJhK0fE\n5zCwKykq5fr+TRvAp8icyRS920WaYhrc+rJ1PxlSg7246J3s4a/wsyKkwvai\nO3NG\r\n=UpTu\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","files":["lib"],"engines":{"node":">=4"},"gitHead":"e8651042e31ae36bd909b90f7575b935639fe756","scripts":{"fix":"eslint index.js babylon-to-espree test --fix","lint":"eslint index.js babylon-to-espree test","test":"npm run lint && npm run test-only","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","precommit":"lint-staged","test-only":"mocha && mocha --require test/fixtures/preprocess-to-patch.js && mocha --require test/fixtures/use-eslint-old.js","preversion":"npm test"},"_npmUser":{"name":"existentialism","email":"bng412@gmail.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"6.1.0","description":"Custom parser for ESLint","directories":{},"lint-staged":{"*.js":["eslint --format=codeframe --fix","git add"]},"_nodeVersion":"8.11.2","dependencies":{"babylon":"7.0.0-beta.44","@babel/types":"7.0.0-beta.44","eslint-scope":"~3.7.1","@babel/traverse":"7.0.0-beta.44","@babel/code-frame":"7.0.0-beta.44","eslint-visitor-keys":"^1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"husky":"^0.14.0","mocha":"^5.0.1","dedent":"^0.7.0","eslint":"npm:eslint@4.19.1","espree":"^3.5.2","prettier":"^1.4.4","eslint-old":"npm:eslint@4.13.1","lint-staged":"^6.1.1","babel-eslint":"^8.0.0","eslint-config-babel":"^7.0.1","eslint-plugin-import":"^2.8.0","eslint-plugin-flowtype":"^2.30.3","eslint-plugin-prettier":"^2.1.2"},"_npmOperationalInternal":{"tmp":"tmp/babel-eslint_8.2.5_1529760053917_0.8248978259225852","host":"s3://npm-registry-packages"}},"8.2.2":{"name":"babel-eslint","version":"8.2.2","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@8.2.2","maintainers":[{"name":"danez","email":"daniel@tschinder.de"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"jameshenry","email":"james@henry.sc"},{"name":"kaicataldo","email":"kaicataldo@gmail.com"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"monastic.panic","email":"monastic.panic@gmail.com"},{"name":"mysticatea","email":"star.ctor@gmail.com"},{"name":"not-an-aardvark","email":"teddy.katz@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"zertosh","email":"zertosh@gmail.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"1102273354c6f0b29b4ea28a65f97d122296b68b","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-8.2.2.tgz","fileCount":17,"integrity":"sha512-Qt2lz2egBxNYWqN9JIO2z4NOOf8i4b5JS6CFoYrOZZTDssueiV1jH/jsefyg+86SeNY3rB361/mi3kE1WK2WYQ==","signatures":[{"sig":"MEYCIQDI7AR4oFHm1Kt+OkfhivCs08F5rtSmRxSZccJ4SYtz3wIhAPfH4JI4YGPclSGXvtT0t2mKSR3HowvTOsnFwVM85unt","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42942},"main":"lib/index.js","files":["lib"],"engines":{"node":">=4"},"gitHead":"9a6d66305e2d81f5674b5f227b0d3f1dcb0a3106","scripts":{"fix":"eslint index.js babylon-to-espree test --fix","lint":"eslint index.js babylon-to-espree test","test":"npm run lint && npm run test-only","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","precommit":"lint-staged","test-only":"mocha && mocha --require test/fixtures/preprocess-to-patch.js && mocha --require test/fixtures/use-eslint-old.js","preversion":"npm test"},"_npmUser":{"name":"danez","email":"daniel@tschinder.de"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"5.6.0","description":"Custom parser for ESLint","directories":{},"lint-staged":{"*.js":["eslint --format=codeframe --fix","git add"]},"_nodeVersion":"8.9.4","dependencies":{"babylon":"^7.0.0-beta.40","@babel/types":"^7.0.0-beta.40","eslint-scope":"~3.7.1","@babel/traverse":"^7.0.0-beta.40","@babel/code-frame":"^7.0.0-beta.40","eslint-visitor-keys":"^1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"husky":"^0.14.0","mocha":"^5.0.1","dedent":"^0.7.0","eslint":"npm:eslint@4.13.1","espree":"^3.5.2","prettier":"^1.4.4","eslint-old":"npm:eslint@4.13.1","lint-staged":"^6.1.1","babel-eslint":"^8.0.0","eslint-config-babel":"^7.0.1","eslint-plugin-import":"^2.8.0","eslint-plugin-flowtype":"^2.30.3","eslint-plugin-prettier":"^2.1.2"},"_npmOperationalInternal":{"tmp":"tmp/babel-eslint_8.2.2_1519124231315_0.7938292778548659","host":"s3://npm-registry-packages"}},"8.2.3":{"name":"babel-eslint","version":"8.2.3","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@8.2.3","maintainers":[{"name":"danez","email":"daniel@tschinder.de"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"jameshenry","email":"james@henry.sc"},{"name":"kaicataldo","email":"kaicataldo@gmail.com"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"monastic.panic","email":"monastic.panic@gmail.com"},{"name":"mysticatea","email":"star.ctor@gmail.com"},{"name":"not-an-aardvark","email":"teddy.katz@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"zertosh","email":"zertosh@gmail.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"1a2e6681cc9bc4473c32899e59915e19cd6733cf","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-8.2.3.tgz","fileCount":17,"integrity":"sha512-0HeSTtaXg/Em7FCUWxwOT+KeFSO1O7LuRuzhk7g+1BjwdlQGlHq4OyMi3GqGxrNfEq8jEi6Hmt5ylEQUhurgiQ==","signatures":[{"sig":"MEYCIQDQPoInznJY+xNKkeY1Pr1Tt4DTS7AWr7fZaGi4ZUCp8QIhAMNeixlV4TnP912/66IkZ3s0cdPfAzvQ99B3Q4zqRz0O","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42938},"main":"lib/index.js","files":["lib"],"engines":{"node":">=4"},"gitHead":"aaeb46beeec64c0e8c26b40556fc48581e7fa733","scripts":{"fix":"eslint index.js babylon-to-espree test --fix","lint":"eslint index.js babylon-to-espree test","test":"npm run lint && npm run test-only","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","precommit":"lint-staged","test-only":"mocha && mocha --require test/fixtures/preprocess-to-patch.js && mocha --require test/fixtures/use-eslint-old.js","preversion":"npm test"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"5.6.0","description":"Custom parser for ESLint","directories":{},"lint-staged":{"*.js":["eslint --format=codeframe --fix","git add"]},"_nodeVersion":"8.10.0","dependencies":{"babylon":"7.0.0-beta.44","@babel/types":"7.0.0-beta.44","eslint-scope":"~3.7.1","@babel/traverse":"7.0.0-beta.44","@babel/code-frame":"7.0.0-beta.44","eslint-visitor-keys":"^1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"husky":"^0.14.0","mocha":"^5.0.1","dedent":"^0.7.0","eslint":"npm:eslint@4.13.1","espree":"^3.5.2","prettier":"^1.4.4","eslint-old":"npm:eslint@4.13.1","lint-staged":"^6.1.1","babel-eslint":"^8.0.0","eslint-config-babel":"^7.0.1","eslint-plugin-import":"^2.8.0","eslint-plugin-flowtype":"^2.30.3","eslint-plugin-prettier":"^2.1.2"},"_npmOperationalInternal":{"tmp":"tmp/babel-eslint_8.2.3_1523633123958_0.09490812136741189","host":"s3://npm-registry-packages"}},"2.0.2":{"name":"babel-eslint","version":"2.0.2","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@2.0.2","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"6c51dd2a74fd40dd4a85ec6543bdb0286851e018","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-2.0.2.tgz","integrity":"sha512-I6kPUxjp6NZIKDNMtGGYnq/ywrFICrXHCDasuwSj57QZtXlMljT/xWud+tXHkMBTbVAKbUrvlOWMR3fPUrOCIw==","signatures":[{"sig":"MEQCIDZGcvc/SOKUgJxFNwGkjTMeQQirJl+hMPgYKIez2vLnAiAwnjpOzzjyfXbQIYUPfPTlFMBHEr9+SnD+sarFhN+6Tw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"6c51dd2a74fd40dd4a85ec6543bdb0286851e018","gitHead":"e23b1525e214abe7a6e28eba90dcb646d80285ec","scripts":{"test":"mocha"},"_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"2.6.0","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"1.4.1","dependencies":{"babel-core":"^4.7.8","lodash.assign":"^3.0.0"},"devDependencies":{"mocha":"^2.1.0","eslint":"^0.16.0","espree":"^1.10.0"}},"8.2.6":{"name":"babel-eslint","version":"8.2.6","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@8.2.6","maintainers":[{"name":"danez","email":"daniel@tschinder.de"},{"name":"existentialism","email":"bng412@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"jameshenry","email":"james@henry.sc"},{"name":"kaicataldo","email":"kaicataldo@gmail.com"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"monastic.panic","email":"monastic.panic@gmail.com"},{"name":"mysticatea","email":"star.ctor@gmail.com"},{"name":"not-an-aardvark","email":"teddy.katz@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"zertosh","email":"zertosh@gmail.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"6270d0c73205628067c0f7ae1693a9e797acefd9","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-8.2.6.tgz","fileCount":17,"integrity":"sha512-aCdHjhzcILdP8c9lej7hvXKvQieyRt20SF102SIGyY4cUIiw6UaAtK4j2o3dXX74jEmy0TJ0CEhv4fTIM3SzcA==","signatures":[{"sig":"MEYCIQCXZcLBSaAw5DkNeM3cfp9kqjMcUlI4tCdJZ9rkOfBP6gIhAO08tJ4XcpcoZ5OGcx7ug3HGFyTBJyW5S9GPlhHIpgen","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42122,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbR11vCRA9TVsSAnZWagAAnwQP/0lQ0qM43q3t+nraHSMO\n3XozAAy24+0My/AAMiDuXiCu1Ol3fOsG+p7VXc0V12POhVh8nF7/S8CALiT+\nY8ZpF/OQM+8KlxGc+BJ6YzXKgFzpHmzn5VnM5Fl8z3c4yVZBM80YetEOUkPu\nMAUcQGEhqA4j6w4J6aTDZMPqi7jaj2HS5Smcnzs+0JbeK1VnagFYqIIp/cNu\nzs2X35KqtGI+A0M/sG+1M4nrMNKWpPi/xjCF3droDyBAMaQgA9Gkw6UQyU5o\n7mWWpnz/ZMylR3kneLPUKOoVViiLdbH2VBD72YS3wqssYGo+llUHwXm536xB\nBEDCm0DMD+s5IGknGSj6dfi59hvfMK/in9h5xOR7CNBFBxzsZx6EOXnSGULW\nxvftPxAaE5MQ4ziF1rc40Yse9/O8+v8wIt02WwINtV4OqY8fYXL83XsjVylz\nvHkD+HFOC46cnrgHAMRC6ldMD1RKcv8tAY9kSg8CXOBFfNAOr+mk/JNfoUC0\nVb1qFRs7eyYfzMvjGA8XsJNPGo6lUH/7+a2Gh1vdKBLaOUMHA1/3Yk7HfDJs\nnPIlvfyUYpGVY3fYN4gYH8EOh0gyK+s6P7F9yVBHvk9yqiHWsip3Z45c6+R1\nPynNhdbCoH/vmAKrtpzqmjYB9/F64pEQJKDDG37f43Y7VJWgCc7LZwb9zDqP\nReQ3\r\n=WS+0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","files":["lib"],"engines":{"node":">=4"},"gitHead":"b9067fa4a643c003810d7f7735393961e0ec5bbc","scripts":{"fix":"eslint index.js babylon-to-espree test --fix","lint":"eslint index.js babylon-to-espree test","test":"npm run lint && npm run test-only","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","precommit":"lint-staged","test-only":"mocha && mocha --require test/fixtures/preprocess-to-patch.js && mocha --require test/fixtures/use-eslint-old.js","preversion":"npm test"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"5.6.0","description":"Custom parser for ESLint","directories":{},"lint-staged":{"*.js":["eslint --format=codeframe --fix","git add"]},"_nodeVersion":"8.10.0","dependencies":{"babylon":"7.0.0-beta.44","@babel/types":"7.0.0-beta.44","eslint-scope":"3.7.1","@babel/traverse":"7.0.0-beta.44","@babel/code-frame":"7.0.0-beta.44","eslint-visitor-keys":"^1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"husky":"^0.14.0","mocha":"^5.0.1","dedent":"^0.7.0","eslint":"npm:eslint@4.19.1","espree":"^3.5.2","prettier":"^1.4.4","eslint-old":"npm:eslint@4.13.1","lint-staged":"^6.1.1","babel-eslint":"^8.0.0","eslint-config-babel":"^7.0.1","eslint-plugin-import":"^2.8.0","eslint-plugin-flowtype":"^2.30.3","eslint-plugin-prettier":"^2.1.2"},"_npmOperationalInternal":{"tmp":"tmp/babel-eslint_8.2.6_1531403631471_0.6484869772563733","host":"s3://npm-registry-packages"}},"10.0.3":{"name":"babel-eslint","version":"10.0.3","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@10.0.3","maintainers":[{"name":"danez","email":"daniel@tschinder.de"},{"name":"existentialism","email":"bng412@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"jameshenry","email":"james@henry.sc"},{"name":"kaicataldo","email":"kaicataldo@gmail.com"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"monastic.panic","email":"monastic.panic@gmail.com"},{"name":"mysticatea","email":"star.ctor@gmail.com"},{"name":"not-an-aardvark","email":"teddy.katz@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"zertosh","email":"zertosh@gmail.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"81a2c669be0f205e19462fed2482d33e4687a88a","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-10.0.3.tgz","fileCount":16,"integrity":"sha512-z3U7eMY6r/3f3/JB9mTsLjyxrv0Yb1zb8PCWCLpguxfCzBIZUwy23R1t/XKewP+8mEN2Ck8Dtr4q20z6ce6SoA==","signatures":[{"sig":"MEUCIQCUaRVXgRBIbalQ9Q02AFL+35M/eP5wLjuqbctlkGF47gIgHrAXAs0vcTDehrMny0jqMmk4ufo1zgzFuX5/H6107As=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":30300,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdYvoHCRA9TVsSAnZWagAAhbIP/1/w5kzgE9BbnBbM36A/\nxZp1adyUfz3iD0dqNM3T2n+Okn/zhzkB3sMNRWtUGk0OA6cXt/XSzzIZXD9L\nuctSfEp942AbIRMsPYhmbtj09IAcSCgjB1/tGdxxCqi+20/7p4iEwMWA5D6a\nY55MrahaTMP2Ij6zPmt7C+kVmreV0Xq0ZhdxNz/ygAkX3QWiPUwzt5agwVUF\njXZepU4Bt70/A7nZTqNnrokzvvjb5LxhPTm9GaA4Kid151UKlWbiO/pnmN44\n02uwDPjV+5PSgb+dUKYAJ4/uVVQPybbTLYpb/e791YxYkndnwVs+V8EOZMWi\nTj0eTTd8UFLYvRfJgc39B3LYrSw3sxk1RtiHd0Fv/A4156/cl0zMFlApGxnc\nFPEgn7ysxGHg8cf3sL5q8VNlzk/S4/qQG2N7R2LW4G25upnVIRGtdTBOf8WC\nwI92Ni8fcC7/TM3uQpu/dfdE0ukTkiFtmhL0jh2NrXjsNvBzR0pT2mzeOPo3\nR5uOSBka4rIkCeKrN2GsqF+O4AkQvGCThbtlVZZPQUZw8EOJ+XWz48V6dzAZ\nCXi3tmbDOzMKfa795vRb+JG2s86bfVGK3lSFtle1rq1vpJ9c8NL5dfbjOPRz\nZgUUxIX4mJ5/RCRNF30C+RVtNy94unXox3H7MiUp3Ke8hcNJ0jh7WXo243Xs\nnTi/\r\n=2sdT\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","engines":{"node":">=6"},"gitHead":"183d13ece52f33376c869bad630274741c8edb97","scripts":{"fix":"eslint lib test --fix","lint":"eslint lib test","test":"npm run lint && npm run test-only","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","precommit":"lint-staged","test-only":"mocha && mocha --require test/fixtures/preprocess-to-patch.js","preversion":"npm test"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"6.9.0","description":"Custom parser for ESLint","directories":{},"lint-staged":{"*.js":["eslint --format=codeframe --fix","git add"]},"_nodeVersion":"10.15.0","dependencies":{"resolve":"^1.12.0","@babel/types":"^7.0.0","@babel/parser":"^7.0.0","@babel/traverse":"^7.0.0","@babel/code-frame":"^7.0.0","eslint-visitor-keys":"^1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"husky":"^1.0.0-rc.13","mocha":"^5.0.1","dedent":"^0.7.0","eslint":"^5.6.0","espree":"^3.5.2","prettier":"^1.4.4","lint-staged":"^7.2.2","babel-eslint":"^8.2.6","eslint-config-babel":"^7.0.1","eslint-plugin-import":"^2.14.0","eslint-plugin-flowtype":"^2.30.3","eslint-plugin-prettier":"^2.1.2"},"peerDependencies":{"eslint":">= 4.12.1"},"_npmOperationalInternal":{"tmp":"tmp/babel-eslint_10.0.3_1566767623153_0.6665420157012609","host":"s3://npm-registry-packages"}},"4.1.7":{"name":"babel-eslint","version":"4.1.7","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@4.1.7","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"792bfa77f2709af6f20ad4f796cc2dcf0b713165","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-4.1.7.tgz","integrity":"sha512-sMCfOGxVmRgFY2Y7Q2RR1hlLooRDnXkUULBWAWPvPd+XQysMfD2oUhH0dh8TdxKRnpzugIzszSwVutBvJEvHyw==","signatures":[{"sig":"MEUCIQDk1yoOcheGSXdgAUgPK0XU9QOTtsMjnLWzj6HVYtlyvAIgHJ4OO4fOfTdu6YZMdD9zKeIO1LQ06Pvmkj2eFWSuWpI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"792bfa77f2709af6f20ad4f796cc2dcf0b713165","gitHead":"7a8985787136daa2314407179a74e4bdfcd271c2","scripts":{"lint":"./node_modules/eslint/bin/eslint.js ./test index.js acorn-to-esprima.js","test":"mocha","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","bootstrap":"git submodule update --init && cd eslint && npm install","preversion":"npm test"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"3.6.0","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"5.1.0","dependencies":{"babylon":"^6.0.18","babel-types":"^6.0.19","lodash.pick":"^3.1.0","lodash.assign":"^3.2.0","babel-traverse":"^6.0.20","acorn-to-esprima":"^2.0.4"},"devDependencies":{"mocha":"^2.3.3","eslint":"^1.10.2","espree":"^2.2.5"},"_npmOperationalInternal":{"tmp":"tmp/babel-eslint-4.1.7.tgz_1454356744443_0.9880041712895036","host":"packages-9-west.internal.npmjs.com"}},"6.1.1":{"name":"babel-eslint","version":"6.1.1","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@6.1.1","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"007791ff2ceb1bfe73d3c820e70b4395aa874d2f","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-6.1.1.tgz","integrity":"sha512-Y7qH04HltFXTjKT1UbB5GjuE9Qf3V1qInnNeS2BCGcfJi0nf+YeGbQFuMMalPCMpV+OdFk7EYEXL2HAEwQrfGA==","signatures":[{"sig":"MEUCIQDENTXS/1wq30oa/rPB+qg57cdDkEARxRumu5KZVjl7jQIgGcLZQSwXxc6MzDxHl6DZbFS3Hf5Lz64y8DLrRyLU/IU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js","babylon-to-espree"],"_shasum":"007791ff2ceb1bfe73d3c820e70b4395aa874d2f","gitHead":"36a6a6d50e5c2f08b4dfbfa9f96cb67c223d774a","scripts":{"fix":"eslint index.js babylon-to-espree test --fix","lint":"eslint index.js babylon-to-espree test","test":"mocha","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","bootstrap":"git submodule update --init && cd eslint && npm install","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","preversion":"npm test"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"3.10.3","description":"Custom parser for ESLint","directories":{},"_nodeVersion":"5.11.1","dependencies":{"babylon":"^6.0.18","babel-types":"^6.0.19","lodash.assign":"^4.0.0","lodash.pickby":"^4.0.0","babel-traverse":"^6.0.20"},"devDependencies":{"mocha":"^2.3.3","eslint":"^2.4.0","espree":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/babel-eslint-6.1.1.tgz_1468002221835_0.4413412075955421","host":"packages-12-west.internal.npmjs.com"}},"10.0.2":{"name":"babel-eslint","version":"10.0.2","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@10.0.2","maintainers":[{"name":"danez","email":"daniel@tschinder.de"},{"name":"existentialism","email":"bng412@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"jameshenry","email":"james@henry.sc"},{"name":"kaicataldo","email":"kaicataldo@gmail.com"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"monastic.panic","email":"monastic.panic@gmail.com"},{"name":"mysticatea","email":"star.ctor@gmail.com"},{"name":"not-an-aardvark","email":"teddy.katz@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"zertosh","email":"zertosh@gmail.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"182d5ac204579ff0881684b040560fdcc1558456","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-10.0.2.tgz","fileCount":15,"integrity":"sha512-UdsurWPtgiPgpJ06ryUnuaSXC2s0WoSZnQmEpbAH65XZSdwowgN5MvyP7e88nW07FYXv72erVtpBkxyDVKhH1Q==","signatures":[{"sig":"MEQCIBBNY+EKpflXgKmFqfFPBm0+fOxAUhuECdQTIofYJYxMAiBZ298fgyqHpScKXcwI+P4TyNJAV0OuzksLm3UJ+371+g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29965,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdB5mRCRA9TVsSAnZWagAAHp4QAJ6cMykYmDGUwPSnAlOX\nRIKtZ1GDUw9VP4gqJhfE5T5VWqYAfpjK7mWT671/w1ap36E0rNAK0fFc8jQI\nqhUqshQaTdIWecVXpdDUViNQkw/lD/Z/lUr7pek/mIX+RjD8du6fZMFe6N9l\nIKxYd3gbnmsd/Wd5FkxWHvYztPysj51x+nj+tuSuPO3+U7jOgkRPP2Tz7NAJ\nodIPDbuaVUpL8XSEu+VpR3hqgaR4cnCQvMPScf8yXdUZzFs1P3e+vfn7RR8k\n6XAlFVSAtu01qbRvOlddqiCE8/Sym2wzkQ5i+TJW67lPz5ejL6Ypljj3zmJb\nozAQ0mja9QMU2ppYBqJEjWVYBSOm16lbzZ9Kf+HjAPOG7AlMvMtaggMPM68u\nEkKoeB5KB2U18AX32y1IvnDBBRFzj0vS0QZxOSWdEp0RYSt0ZKonyLXBvgeQ\ndd0aM+RbEZkNOJ9/LZH1rFrVpkJJvcukNeplwAQYP0+0t7/UjqZyM4Q1mVk0\nBnfbF3r3Mfn8jUXQQiy70a5nFIIowiu/aLL4wUjOVElO3MiCwui0zNzRptKH\nFH9KDqFij89aMKpcsaYH8F4JWisyAoGQQ3H7DXAXUNCAQhS48SRt8Wo6OLeL\nL+c5XynhQAxJwV6skHsizHLn2rYcGPE6qjdq4QEWiV4YNNHWjv2Zhi9nYN9K\nYpKy\r\n=0c2K\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","engines":{"node":">=6"},"gitHead":"48f6d78721ff37a8b4752d731d7d595adef8a469","scripts":{"fix":"eslint lib test --fix","lint":"eslint lib test","test":"npm run lint && npm run test-only","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","precommit":"lint-staged","test-only":"mocha && mocha --require test/fixtures/preprocess-to-patch.js","preversion":"npm test"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"5.6.0","description":"Custom parser for ESLint","directories":{},"lint-staged":{"*.js":["eslint --format=codeframe --fix","git add"]},"_nodeVersion":"8.10.0","dependencies":{"@babel/types":"^7.0.0","eslint-scope":"3.7.1","@babel/parser":"^7.0.0","@babel/traverse":"^7.0.0","@babel/code-frame":"^7.0.0","eslint-visitor-keys":"^1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"husky":"^1.0.0-rc.13","mocha":"^5.0.1","dedent":"^0.7.0","eslint":"^5.6.0","espree":"^3.5.2","prettier":"^1.4.4","lint-staged":"^7.2.2","babel-eslint":"^8.2.6","eslint-config-babel":"^7.0.1","eslint-plugin-import":"^2.14.0","eslint-plugin-flowtype":"^2.30.3","eslint-plugin-prettier":"^2.1.2"},"peerDependencies":{"eslint":">= 4.12.1"},"_npmOperationalInternal":{"tmp":"tmp/babel-eslint_10.0.2_1560779152505_0.17332604931304618","host":"s3://npm-registry-packages"}},"4.1.8":{"name":"babel-eslint","version":"4.1.8","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@4.1.8","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"4f79e7a4f5879ecf03f48cb16f552a355fcc31b2","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-4.1.8.tgz","integrity":"sha512-Q1TWdm7vAka50oCk45JCgWMAat1tKiVus4hIYoKHZ/K6uHBhDga2gxfYrypmXu4F30T178HVe7iZV8Ct+12Epg==","signatures":[{"sig":"MEUCIFrBbr9Y2XDUX48HhkUYXWgjUYOBb7AxKV+t9tUmHLhqAiEA1tEjOIKfGWdOR6VXGsYArr/D19AtVMxlmKJeLcD6QHY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"4f79e7a4f5879ecf03f48cb16f552a355fcc31b2","gitHead":"059059293f4ae37d093c21c559d92b88d9124bdb","scripts":{"lint":"./node_modules/eslint/bin/eslint.js ./test index.js acorn-to-esprima.js","test":"mocha","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","bootstrap":"git submodule update --init && cd eslint && npm install"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"3.6.0","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","directories":{},"_nodeVersion":"5.1.0","dependencies":{"babel-core":"^5.8.33","lodash.pick":"^3.1.0","lodash.assign":"^3.2.0","acorn-to-esprima":"^1.0.5"},"devDependencies":{"mocha":"^2.3.3","eslint":"^1.9.0","espree":"^2.2.5"},"_npmOperationalInternal":{"tmp":"tmp/babel-eslint-4.1.8.tgz_1454386499946_0.72509032394737","host":"packages-6-west.internal.npmjs.com"}},"6.1.2":{"name":"babel-eslint","version":"6.1.2","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@6.1.2","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"5293419fe3672d66598d327da9694567ba6a5f2f","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-6.1.2.tgz","integrity":"sha512-BvFokAiUA0ZXeIzOr/v5m5Hu8IpTNc19ZBVEXn9ISBfRWddI2aUZ31kdlrzQXuXvPvq0wlyf7aw7KB85c9OcUw==","signatures":[{"sig":"MEUCIC+aOH9Y4c9wGRlkRkd1PXqeMxIdDAzU4i7Eq0ONaWAWAiEAmHR0sjj8LYw5PWvzOlEI3ZNswgQqDTaGWB7OLMTUYC8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js","babylon-to-espree"],"_shasum":"5293419fe3672d66598d327da9694567ba6a5f2f","gitHead":"9bea6fb2b7c6e01c29bbfc907b8ff6b85519bc52","scripts":{"fix":"eslint index.js babylon-to-espree test --fix","lint":"eslint index.js babylon-to-espree test","test":"mocha","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","bootstrap":"git submodule update --init && cd eslint && npm install","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","preversion":"npm test"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"3.10.3","description":"Custom parser for ESLint","directories":{},"_nodeVersion":"5.11.1","dependencies":{"babylon":"^6.0.18","babel-types":"^6.0.19","lodash.assign":"^4.0.0","lodash.pickby":"^4.0.0","babel-traverse":"^6.0.20"},"devDependencies":{"mocha":"^2.3.3","eslint":"^2.4.0","espree":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/babel-eslint-6.1.2.tgz_1468078840838_0.10370502877049148","host":"packages-16-east.internal.npmjs.com"}},"10.0.1":{"name":"babel-eslint","version":"10.0.1","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@10.0.1","maintainers":[{"name":"danez","email":"daniel@tschinder.de"},{"name":"existentialism","email":"bng412@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"jameshenry","email":"james@henry.sc"},{"name":"kaicataldo","email":"kaicataldo@gmail.com"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"monastic.panic","email":"monastic.panic@gmail.com"},{"name":"mysticatea","email":"star.ctor@gmail.com"},{"name":"not-an-aardvark","email":"teddy.katz@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"zertosh","email":"zertosh@gmail.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"919681dc099614cd7d31d45c8908695092a1faed","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-10.0.1.tgz","fileCount":15,"integrity":"sha512-z7OT1iNV+TjOwHNLLyJk+HN+YVWX+CLE6fPD2SymJZOZQBs+QIexFjhm4keGTm8MW9xr4EC9Q0PbaLB24V5GoQ==","signatures":[{"sig":"MEYCIQDXxRrvqvnZ4PcRLV5G+j7jJa68MnN4UDH9uSaOwq+EZwIhAPKZ98DXPp0cxMPZEpXmSkYiscpAqooCnko2DTpxh5nT","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":30111,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbrOl0CRA9TVsSAnZWagAALDgP/Rv7ll0s0nIAzKRSXOSf\nH0e0y7eNqav9u3m2FW6P0CAIE/wsdkCvFRP7QuZtGhImOgVxykecP94zMCXe\nThXxKasbX5yyiz2TnerUmKnVkgWi6X8RLXiMIljSdJzjvKEkde99/T+VKaGk\n3bzut4GCiweyb34PbhN80CY6R7yfvQuYWAD1p/Mn4NCo6nMYeT5Y4kbVnGtB\nDh/tzbw/dB4lfEy/aYPuU/GKfZvm88m5aZvqCDD47hcnTpigb2MXPqJqHYkb\nDlZH+xvCG+7nnHSJyoh4nek1OTDCjCdvmeEXj5lk99d3Jq594hwXwVPIKAEB\nJjlbN9N9bosOekYmn2CwA6k0qUx3XZuvqKJFhN224l4/bVr7ngFvbr1D/eZt\nV7BGyZTDhruNoZKd0lSj1cegTDfTvIpmwmMrZoNmS7VinI4N/741MvDV2NbV\nHS3XWCGX72AmuDDonYCzrhiawJnKlGb0b2f8fK3lcQxCa6NdwbOgK/aNyOmv\nT1ROPplYYyDLzFdq7HrvDTYKXj488GZu8IDL2m1EV1zKnoHaTaHzmmOmk49g\npFioF9cOru9q/Uba3dQ1xsuF4fM6K0vl168c4rRKOpt+sgGVoY7wbrMZ8sCu\nAc3hvA7olJyfQ3W4YKERi1Xu5JlI2EVqX98xE64KMwqKj31C1rCY3oH+Th4q\nEZoz\r\n=Zk4o\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","engines":{"node":">=6"},"gitHead":"4cf0a21a4b12e64ce4012bbfcc62d0d969053f8b","scripts":{"fix":"eslint lib test --fix","lint":"eslint lib test","test":"npm run lint && npm run test-only","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","precommit":"lint-staged","test-only":"mocha && mocha --require test/fixtures/preprocess-to-patch.js","preversion":"npm test"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"5.6.0","description":"Custom parser for ESLint","directories":{},"lint-staged":{"*.js":["eslint --format=codeframe --fix","git add"]},"_nodeVersion":"8.10.0","dependencies":{"@babel/types":"^7.0.0","eslint-scope":"3.7.1","@babel/parser":"^7.0.0","@babel/traverse":"^7.0.0","@babel/code-frame":"^7.0.0","eslint-visitor-keys":"^1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"husky":"^1.0.0-rc.13","mocha":"^5.0.1","dedent":"^0.7.0","eslint":"^5.6.0","espree":"^3.5.2","prettier":"^1.4.4","lint-staged":"^7.2.2","babel-eslint":"^8.2.6","eslint-config-babel":"^7.0.1","eslint-plugin-import":"^2.14.0","eslint-plugin-flowtype":"^2.30.3","eslint-plugin-prettier":"^2.1.2"},"peerDependencies":{"eslint":">= 4.12.1"},"_npmOperationalInternal":{"tmp":"tmp/babel-eslint_10.0.1_1538058611818_0.8197686175401775","host":"s3://npm-registry-packages"}},"6.0.0-beta.2":{"name":"babel-eslint","version":"6.0.0-beta.2","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@6.0.0-beta.2","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"1f5956ba3e69b76a074b90da2c238a66eeb5c841","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-6.0.0-beta.2.tgz","integrity":"sha512-KWtXRNpdDz92jP7SvsMO6D8IqAwaBNI2I48Dx7sr1Pn17w8NXh4lrxbk4/NlQAxTTf4lCtPolrOsNEWQFyuu0g==","signatures":[{"sig":"MEYCIQDk2RJWObK4Gqk8Ij0ckokhiUg1HaztZOIQFHL4+/2YzAIhAMVaB4yAI4cmzJIo0S1e7n3dDIwzJ8VG3l5CdGAYq8qs","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js","babylon-to-espree"],"_shasum":"1f5956ba3e69b76a074b90da2c238a66eeb5c841","gitHead":"98d2f07d05351807146b7d9f211c4faf6d5704c2","scripts":{"fix":"./node_modules/eslint/bin/eslint.js index.js babylon-to-espree test --fix","lint":"./node_modules/eslint/bin/eslint.js index.js babylon-to-espree test","test":"mocha","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","bootstrap":"git submodule update --init && cd eslint && npm install","preversion":"npm test"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"3.6.0","description":"Custom parser for ESLint","directories":{},"_nodeVersion":"5.1.0","dependencies":{"babylon":"^6.0.18","babel-types":"^6.0.19","lodash.pick":"^3.1.0","lodash.assign":"^3.2.0","babel-traverse":"^6.0.20"},"devDependencies":{"mocha":"^2.3.3","eslint":"^2.3.0","espree":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/babel-eslint-6.0.0-beta.2.tgz_1457372093549_0.20735106244683266","host":"packages-12-west.internal.npmjs.com"}},"10.0.0":{"name":"babel-eslint","version":"10.0.0","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@10.0.0","maintainers":[{"name":"danez","email":"daniel@tschinder.de"},{"name":"existentialism","email":"bng412@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"jameshenry","email":"james@henry.sc"},{"name":"kaicataldo","email":"kaicataldo@gmail.com"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"monastic.panic","email":"monastic.panic@gmail.com"},{"name":"mysticatea","email":"star.ctor@gmail.com"},{"name":"not-an-aardvark","email":"teddy.katz@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"zertosh","email":"zertosh@gmail.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"0bb43e6b11a119bf3defbb1ee2521f42e2d413c9","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-10.0.0.tgz","fileCount":15,"integrity":"sha512-GDQOtoj8CFtEe1HlbuEb6rwdbxRr4Y5DWyddivdsriEj6ulDda+fS43Zfe/Ku0tuMNnxC9JK1bmIovsLq5+hUA==","signatures":[{"sig":"MEQCICcHFaFnrO1ugtwf8qnWLTwkGT7BGcqYVSWTOJKNq3rYAiAD4SQuIHFl1L9IUJcRyBiA6Xp3y4VSP02ZNHTuxZ/aFQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":30330,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbqo3GCRA9TVsSAnZWagAAGU0P/0MlOHFB1Bme1hp5JxYe\nvHU/zQuc9ESo3PRRsZj1MYiZJgj6YjFfJoqH4eva5yipQR9gE+D/x3gDEXiE\nyJnZDB/jb0KauhzC1aH8JST8QqEA47KSZRQzQicqZVQfK35l34UKWRes+8Kj\nnlbL41zE90OXg3sOyibMacQNbciLok9YER5tpTJo3YpSaTlR3TKv/ugzTeqO\ne5jE3/FQtog4iSXCw8Gc7FUbP7nxRfg74Hfzu9NxiLfqjOrVVnmNAlFPmpeU\ngaGguD0ysopIDNof8rd9zCnuwQ5dZ6VsRGCIqwhdpusUxvtmG1SDaIYXqOS7\nCWiUqsVxJda4JoWk0lbYMq+r0beFsAk/ioKBwAEN3qGPY5fVz458eNdMyVi0\nAb3I/5pD9eLKp0rHzXRRWusZh90IwAdSjOBUqmbnHZGDWn9U05VVIS3WhfNt\nyZZUCs42ThzDyzGi9USKzqfr5995O6y2nBiaf0omugH7qnr/hFumdOE9BelY\nV9HIgaGica7+8PRjgdIB9M7raq8mJex8hVXA3NlGdjE72+gNgQ1/M8KLs5s6\nH+rZSjePTaho2S4e5n1WwIgs4sLESzuhn6dRj1GYaEZ4+BE5HYXsADMXsrPV\nKgpOn/Jfp6k4mzwZZUr/ZknLwvc6vhXr8cwpESYV+rj9ldjME3O1kBGxg7m/\niOOT\r\n=EpGL\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","engines":{"node":">=6"},"gitHead":"8f78e280a22def1128cd847b73fd7f221a047ed2","scripts":{"fix":"eslint lib test --fix","lint":"eslint lib test","test":"npm run lint && npm run test-only","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","precommit":"lint-staged","test-only":"mocha && mocha --require test/fixtures/preprocess-to-patch.js","preversion":"npm test"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"5.6.0","description":"Custom parser for ESLint","directories":{},"lint-staged":{"*.js":["eslint --format=codeframe --fix","git add"]},"_nodeVersion":"8.10.0","dependencies":{"@babel/types":"^7.0.0","eslint-scope":"3.7.1","@babel/parser":"^7.0.0","@babel/traverse":"^7.0.0","@babel/code-frame":"^7.0.0","eslint-visitor-keys":"^1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"husky":"^1.0.0-rc.13","mocha":"^5.0.1","dedent":"^0.7.0","eslint":"^5.6.0","espree":"^3.5.2","prettier":"^1.4.4","lint-staged":"^7.2.2","babel-eslint":"^8.2.6","eslint-config-babel":"^7.0.1","eslint-plugin-import":"^2.14.0","eslint-plugin-flowtype":"^2.30.3","eslint-plugin-prettier":"^2.1.2"},"peerDependencies":{"eslint":">= 4.12.1"},"_npmOperationalInternal":{"tmp":"tmp/babel-eslint_10.0.0_1537904069894_0.9430437697864862","host":"s3://npm-registry-packages"}},"6.0.0-beta.1":{"name":"babel-eslint","version":"6.0.0-beta.1","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@6.0.0-beta.1","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"cadde6dd8a0c7143a3ec389efed3552be852b8c9","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-6.0.0-beta.1.tgz","integrity":"sha512-QSv07zQyHx/9Zdh1iFhgVWWQGZFVPCo0CkG9xPkljNAeWsEdyqie/5bjhDDVOGLhzG4S4ZR3gs+A818Wt7/XLg==","signatures":[{"sig":"MEQCIEyQEBXHABbtvKrsLKbmvrPAPJ+/EJ3uNKd1Uafr4Nl/AiBqvi44ehEqEUqG84i9mJgPbEoI9iKtXVSLrbVdnnYUmg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js","babylon-to-espree"],"_shasum":"cadde6dd8a0c7143a3ec389efed3552be852b8c9","gitHead":"e40bac5a7b419b60eb3b472299b7d83091f37b61","scripts":{"fix":"./node_modules/eslint/bin/eslint.js index.js babylon-to-espree test --fix","lint":"./node_modules/eslint/bin/eslint.js index.js babylon-to-espree test","test":"mocha","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","bootstrap":"git submodule update --init && cd eslint && npm install","preversion":"npm test"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"3.6.0","description":"Custom parser for ESLint","directories":{},"_nodeVersion":"5.1.0","dependencies":{"babylon":"^6.0.18","babel-types":"^6.0.19","lodash.pick":"^3.1.0","lodash.assign":"^3.2.0","babel-traverse":"^6.0.20"},"devDependencies":{"mocha":"^2.3.3","eslint":"^2.0.0","espree":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/babel-eslint-6.0.0-beta.1.tgz_1456889984974_0.8517343329731375","host":"packages-13-west.internal.npmjs.com"}},"6.1.0":{"name":"babel-eslint","version":"6.1.0","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@6.1.0","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"ce97bb95590f67e0af43d585126fbdad7678b8ab","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-6.1.0.tgz","integrity":"sha512-tkOn18tPY0G7YQE01CNEg669VgEU97TatWVcJQLZL1FW0HoSnFDpWG9NkBzBiiJJ7JCaacQ7/H75HBihZCbHrw==","signatures":[{"sig":"MEUCIEfJNsiLHgjE3pWQv0mPfDTGRhQviNucVW5HWXORr9WWAiEA6aqOLgAe9uVTPgaXgMhXjVbc0a8RbO6uZklwndV7TNA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js","babylon-to-espree"],"_shasum":"ce97bb95590f67e0af43d585126fbdad7678b8ab","gitHead":"eebb978a6bd651a114a12793d4b84d43ace38c4e","scripts":{"fix":"eslint index.js babylon-to-espree test --fix","lint":"eslint index.js babylon-to-espree test","test":"mocha","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","bootstrap":"git submodule update --init && cd eslint && npm install","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","preversion":"npm test"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"deprecated":"babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.","repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"3.8.9","description":"Custom parser for ESLint","directories":{},"_nodeVersion":"6.2.0","dependencies":{"babylon":"^6.0.18","babel-types":"^6.0.19","lodash.assign":"^4.0.0","lodash.pickby":"^4.0.0","babel-traverse":"^6.0.20"},"devDependencies":{"mocha":"^2.3.3","eslint":"^2.4.0","espree":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/babel-eslint-6.1.0.tgz_1466627840395_0.6725804065354168","host":"packages-16-east.internal.npmjs.com"}},"6.0.0-beta.6":{"name":"babel-eslint","version":"6.0.0-beta.6","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@6.0.0-beta.6","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"6b1a6c7227111505987b58be5c606c3f9ca8a503","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-6.0.0-beta.6.tgz","integrity":"sha512-9vMe6c/7J7kEAy6hUlg9TnQTnohVT1Cz62qWt8Mqx5OEkTVgeu0T9kFnXAQXgx2dcIOBx9D+2b4uoLjUjaYBdw==","signatures":[{"sig":"MEYCIQCfasEXQAByJhf9xZgCB/T2xdgGIzVfUXl6pzaAVgyVbgIhAOrYdsHYu2SfRbjBciBryBGxL5qGf4ABRVBTdJDTEycZ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js","babylon-to-espree"],"_shasum":"6b1a6c7227111505987b58be5c606c3f9ca8a503","gitHead":"cdb5bb0c9d50709488605a4c6d09d0acf5adac23","scripts":{"fix":"./node_modules/eslint/bin/eslint.js index.js babylon-to-espree test --fix","lint":"./node_modules/eslint/bin/eslint.js index.js babylon-to-espree test","test":"mocha","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","bootstrap":"git submodule update --init && cd eslint && npm install","preversion":"npm test"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"3.6.0","description":"Custom parser for ESLint","directories":{},"_nodeVersion":"5.1.0","dependencies":{"babylon":"^6.0.18","babel-types":"^6.0.19","lodash.pick":"^3.1.0","lodash.assign":"^3.2.0","babel-traverse":"^6.0.20"},"devDependencies":{"mocha":"^2.3.3","eslint":"^2.4.0","espree":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/babel-eslint-6.0.0-beta.6.tgz_1457959064373_0.26748901861719787","host":"packages-12-west.internal.npmjs.com"}},"6.0.0-beta.5":{"name":"babel-eslint","version":"6.0.0-beta.5","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@6.0.0-beta.5","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"1aa8bf5d00004db937a18dce51dd4f47ea080b9d","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-6.0.0-beta.5.tgz","integrity":"sha512-hhC9wZv/68q2/5Xw3bRMcAvL+fQWHvI4F16+vPV/lEGG3OyvQLoKS4pbGuy+zuYTXHv+2Dtzw8V022RTDW6ZkQ==","signatures":[{"sig":"MEYCIQDUCb0yCkMXD2qfWGjawno3KNZ409Xinfai0HhPi0Zg0AIhAKiFC4FrF9zCQcvkNEF6yX43R8oeaijSxrDfXbsGvk1h","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js","babylon-to-espree"],"_shasum":"1aa8bf5d00004db937a18dce51dd4f47ea080b9d","gitHead":"32848e57bd606076c4e0c2a7c618ff6a6ab639ff","scripts":{"fix":"./node_modules/eslint/bin/eslint.js index.js babylon-to-espree test --fix","lint":"./node_modules/eslint/bin/eslint.js index.js babylon-to-espree test","test":"mocha","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","bootstrap":"git submodule update --init && cd eslint && npm install","preversion":"npm test"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"3.6.0","description":"Custom parser for ESLint","directories":{},"_nodeVersion":"5.1.0","dependencies":{"babylon":"^6.0.18","babel-types":"^6.0.19","lodash.pick":"^3.1.0","lodash.assign":"^3.2.0","babel-traverse":"^6.0.20"},"devDependencies":{"mocha":"^2.3.3","eslint":"~2.2.0","espree":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/babel-eslint-6.0.0-beta.5.tgz_1457453222643_0.7407714789733291","host":"packages-12-west.internal.npmjs.com"}},"6.0.0-beta.4":{"name":"babel-eslint","version":"6.0.0-beta.4","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@6.0.0-beta.4","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"894aa9ea6ed26f4e9cd9efd2fcb2c49928bbfeea","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-6.0.0-beta.4.tgz","integrity":"sha512-VDLVHLY60X/ua2PMFh69Rz2aeWUZdiLwxsWHR5rFeu+ZpSvBSlDuZuY4NzyCHrieCQP00i52jR8MP9oPfHoimA==","signatures":[{"sig":"MEUCIGGQhAHua7dVOId4P3HiPMa7iRrMhKXzCRw4c0lQ61rJAiEA1paSaLEw9xOc4k4t3DVm3bd1vAx7uarpv8qh9U015FU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js","babylon-to-espree"],"_shasum":"894aa9ea6ed26f4e9cd9efd2fcb2c49928bbfeea","gitHead":"9951c45303d364ff82fa39cd5b580c3a6b282b60","scripts":{"fix":"./node_modules/eslint/bin/eslint.js index.js babylon-to-espree test --fix","lint":"./node_modules/eslint/bin/eslint.js index.js babylon-to-espree test","test":"mocha","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","bootstrap":"git submodule update --init && cd eslint && npm install","preversion":"npm test"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"3.6.0","description":"Custom parser for ESLint","directories":{},"_nodeVersion":"5.1.0","dependencies":{"babylon":"^6.0.18","babel-types":"^6.0.19","lodash.pick":"^3.1.0","lodash.assign":"^3.2.0","babel-traverse":"^6.0.20"},"devDependencies":{"mocha":"^2.3.3","eslint":"~2.2.0","espree":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/babel-eslint-6.0.0-beta.4.tgz_1457453068537_0.25740736396983266","host":"packages-13-west.internal.npmjs.com"}},"6.0.0-beta.3":{"name":"babel-eslint","version":"6.0.0-beta.3","author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","_id":"babel-eslint@6.0.0-beta.3","maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"homepage":"https://github.com/babel/babel-eslint","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"dist":{"shasum":"590478ba502c0818fb267af0e1b4c5408be89647","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-eslint/-/babel-eslint-6.0.0-beta.3.tgz","integrity":"sha512-zh6dcWa6+JRg0YzBVgUi+bTPeB18h68uIne0CYS76qOkzaf3r+i2i3tYzQZPl6+SfvPpDjIN/munk1Y44r1JFw==","signatures":[{"sig":"MEUCIGhUqzVxOikvdCwowXUw4PJV+lWs7nfexdLV/LvLQ6r6AiEAj6lZKsO6qzsfajwVeLdngAfCP0KubkYvBNLxmTKiY0E=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js","babylon-to-espree"],"_shasum":"590478ba502c0818fb267af0e1b4c5408be89647","gitHead":"7c9ccd2962f7116dc03329cc06c229d310d60a82","scripts":{"fix":"./node_modules/eslint/bin/eslint.js index.js babylon-to-espree test --fix","lint":"./node_modules/eslint/bin/eslint.js index.js babylon-to-espree test","test":"mocha","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","bootstrap":"git submodule update --init && cd eslint && npm install","preversion":"npm test"},"_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"repository":{"url":"git+https://github.com/babel/babel-eslint.git","type":"git"},"_npmVersion":"3.6.0","description":"Custom parser for ESLint","directories":{},"_nodeVersion":"5.1.0","dependencies":{"babylon":"^6.0.18","babel-types":"^6.0.19","lodash.pick":"^3.1.0","lodash.assign":"^3.2.0","babel-traverse":"^6.0.20"},"devDependencies":{"mocha":"^2.3.3","eslint":"^2.3.0","espree":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/babel-eslint-6.0.0-beta.3.tgz_1457410435974_0.49022157629951835","host":"packages-13-west.internal.npmjs.com"}}},"name":"babel-eslint","time":{"1.0.12":"2015-02-28T06:38:05.667Z","1.0.13":"2015-03-04T11:30:52.403Z","1.0.14":"2015-03-08T15:47:15.690Z","5.0.0-beta10":"2016-02-02T04:06:22.439Z","1.0.10":"2015-02-28T05:34:15.613Z","1.0.11":"2015-02-28T06:08:23.218Z","4.1.1":"2015-08-31T14:25:09.520Z","4.1.2":"2015-09-14T18:48:28.648Z","4.1.0":"2015-08-25T23:17:14.526Z","4.1.5":"2015-11-10T02:18:05.624Z","4.1.6":"2015-11-24T02:21:04.715Z","4.1.3":"2015-09-17T13:43:35.350Z","4.1.4":"2015-11-04T14:51:23.152Z","8.0.2":"2017-11-06T20:00:41.002Z","8.0.3":"2017-12-01T18:06:42.743Z","8.0.0":"2017-09-12T13:45:33.084Z","8.0.1":"2017-09-26T20:18:51.377Z","7.2.0":"2017-03-20T21:53:35.504Z","7.2.1":"2017-03-23T18:06:26.074Z","7.2.2":"2017-04-12T16:07:18.694Z","6.0.4":"2016-04-25T21:55:48.748Z","6.0.5":"2016-06-20T21:12:38.767Z","6.0.2":"2016-03-31T23:14:30.396Z","6.0.3":"2016-04-20T03:41:01.323Z","10.1.0":"2020-02-26T00:13:23.677Z","6.0.0":"2016-03-26T03:51:47.960Z","6.0.1":"2016-03-31T20:52:44.386Z","3.1.19":"2015-06-26T14:07:17.562Z","4.0.10":"2015-08-17T02:50:58.234Z","5.0.0-beta1":"2015-11-26T19:55:58.311Z","5.0.0-beta2":"2015-11-27T20:46:57.937Z","5.0.0-beta3":"2015-11-28T21:31:44.839Z","3.1.20":"2015-06-29T17:52:49.590Z","5.0.0-beta4":"2015-11-29T13:24:46.122Z","3.1.21":"2015-07-06T02:09:58.489Z","5.0.0-beta5":"2015-12-09T13:41:15.516Z","5.0.0-beta6":"2015-12-09T13:42:16.856Z","3.0.0":"2015-04-14T00:12:18.038Z","5.0.0-beta7":"2016-01-30T15:39:34.978Z","5.0.0-beta8":"2016-01-30T17:22:21.436Z","5.0.0-beta9":"2016-02-01T19:41:58.940Z","3.1.28":"2015-07-27T01:49:22.719Z","3.1.29":"2015-07-27T01:59:57.208Z","3.1.26":"2015-07-22T05:36:45.470Z","3.1.27":"2015-07-25T14:54:23.606Z","3.0.1":"2015-04-14T01:06:16.907Z","3.1.24":"2015-07-21T21:34:42.133Z","7.2.3":"2017-04-21T21:14:27.780Z","3.1.25":"2015-07-22T00:19:52.453Z","3.1.22":"2015-07-06T13:40:17.610Z","3.1.23":"2015-07-06T14:41:12.031Z","7.1.0":"2016-10-26T18:37:28.811Z","7.1.1":"2016-11-17T22:59:39.316Z","3.1.8":"2015-05-23T01:05:15.687Z","3.1.9":"2015-05-25T04:48:31.218Z","1.0.3":"2015-02-27T10:43:37.909Z","1.0.4":"2015-02-27T11:40:32.309Z","3.1.10":"2015-06-02T01:20:35.849Z","1.0.6":"2015-02-27T12:42:09.753Z","1.0.7":"2015-02-28T00:51:36.380Z","1.0.8":"2015-02-28T01:04:39.049Z","1.0.9":"2015-02-28T01:09:33.131Z","3.1.17":"2015-06-18T00:34:55.971Z","3.1.18":"2015-06-23T22:35:05.423Z","3.1.15":"2015-06-09T19:02:55.442Z","3.1.16":"2015-06-17T11:20:37.286Z","3.1.13":"2015-06-05T09:32:49.412Z","1.0.0":"2015-02-27T05:30:47.161Z","3.1.14":"2015-06-06T20:56:55.883Z","1.0.1":"2015-02-27T10:22:52.391Z","3.1.11":"2015-06-03T21:13:24.289Z","1.0.2":"2015-02-27T10:41:05.311Z","3.1.12":"2015-06-05T09:00:33.786Z","9.0.0":"2018-08-27T22:09:38.892Z","11.0.0-beta.2":"2019-12-10T15:10:55.001Z","11.0.0-beta.1":"2019-11-23T11:18:48.923Z","8.2.0":"2018-01-08T23:07:07.216Z","11.0.0-beta.0":"2019-01-21T21:29:45.891Z","8.2.1":"2018-01-09T00:15:44.848Z","3.1.4":"2015-05-16T22:17:20.793Z","8.0.0-alpha.13":"2017-06-18T22:33:54.619Z","modified":"2025-05-13T13:28:05.765Z","3.1.5":"2015-05-17T21:15:32.117Z","8.0.0-alpha.12":"2017-06-16T20:57:01.098Z","3.1.6":"2015-05-20T23:11:18.344Z","3.1.7":"2015-05-21T10:52:27.288Z","3.1.0":"2015-05-06T16:19:56.743Z","8.0.0-alpha.17":"2017-07-26T20:19:38.135Z","3.1.1":"2015-05-07T12:49:13.282Z","3.1.2":"2015-05-14T20:39:22.729Z","8.0.0-alpha.15":"2017-07-13T17:01:44.649Z","3.1.3":"2015-05-15T19:56:21.294Z","created":"2015-02-27T05:30:47.161Z","7.0.0":"2016-09-27T16:35:52.795Z","9.0.0-beta.1":"2018-06-29T13:37:52.209Z","9.0.0-beta.2":"2018-07-06T16:25:48.424Z","9.0.0-beta.3":"2018-07-12T13:52:06.341Z","4.0.8":"2015-08-16T20:13:58.862Z","3.1.30":"2015-07-27T03:05:28.142Z","4.0.9":"2015-08-17T02:35:04.078Z","5.0.0":"2016-02-16T23:07:58.027Z","5.0.1":"2016-03-26T03:45:44.562Z","5.0.2":"2016-03-30T11:41:09.994Z","5.0.3":"2016-03-31T20:52:07.769Z","5.0.4":"2016-03-31T23:17:25.750Z","4.0.2":"2015-07-27T01:45:05.482Z","4.0.3":"2015-07-27T01:58:52.388Z","4.0.0":"2015-07-25T15:09:33.097Z","4.0.1":"2015-07-27T01:21:36.345Z","4.0.6":"2015-08-15T13:27:09.247Z","4.0.7":"2015-08-15T23:52:40.039Z","4.0.4":"2015-07-27T03:04:43.210Z","4.0.5":"2015-07-27T03:20:33.327Z","8.1.1":"2017-12-25T07:02:19.880Z","8.1.2":"2017-12-26T02:03:57.619Z","8.1.0":"2017-12-24T07:05:06.395Z","2.0.0":"2015-03-10T13:41:41.478Z","8.2.4":"2018-06-22T18:44:44.454Z","8.2.5":"2018-06-23T13:20:53.991Z","8.2.2":"2018-02-20T10:57:11.361Z","8.2.3":"2018-04-13T15:25:24.061Z","2.0.2":"2015-03-16T01:50:34.042Z","8.2.6":"2018-07-12T13:53:51.547Z","10.0.3":"2019-08-25T21:13:43.282Z","4.1.7":"2016-02-01T19:59:06.712Z","6.1.1":"2016-07-08T18:23:44.141Z","10.0.2":"2019-06-17T13:45:52.697Z","4.1.8":"2016-02-02T04:15:02.383Z","6.1.2":"2016-07-09T15:40:42.228Z","10.0.1":"2018-09-27T14:30:11.916Z","6.0.0-beta.2":"2016-03-07T17:34:57.372Z","10.0.0":"2018-09-25T19:34:30.012Z","6.0.0-beta.1":"2016-03-02T03:39:47.515Z","6.1.0":"2016-06-22T20:37:22.381Z","6.0.0-beta.6":"2016-03-14T12:37:46.905Z","6.0.0-beta.5":"2016-03-08T16:07:07.142Z","6.0.0-beta.4":"2016-03-08T16:04:32.681Z","6.0.0-beta.3":"2016-03-08T04:13:59.934Z"},"readmeFilename":"README.md","homepage":"https://github.com/babel/babel-eslint"}