{"maintainers":[{"email":"monastic.panic@gmail.com","name":"monastic.panic"},{"email":"sebmck@gmail.com","name":"sebmck"},{"email":"loganfsmyth@gmail.com","name":"loganfsmyth"},{"email":"daniel@tschinder.de","name":"danez"},{"email":"hi@henryzoo.com","name":"hzoo"}],"dist-tags":{"latest":"7.2.3","next":"8.0.0-alpha.17","prev":"5.0.4"},"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 [`#linting`](https://babeljs.slack.com/messages/linting/) babel slack channel (sign up [here](https://babel-slack.herokuapp.com))!\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> ESLint 1.x | Use <= 5.x\n\n> ESLint 2.x | Use >= 6.x\n\n### Supported ESLint versions\n\nESLint | babel-eslint\n------------ | -------------\n3.x | >= 6.x\n\n### Install\n\n```sh\n$ npm install eslint@3.x babel-eslint@6 --save-dev\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","repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"users":{"alexkval":true,"koulmomo":true,"daviddraughn":true,"itonyyo":true,"jalcine":true,"draganhr":true,"crazyjingling":true,"nelix":true,"junjiansyu":true,"corintho":true,"runningtalus":true,"flynntsc":true,"evan2x":true,"ridermansb":true,"monkeymonk":true,"dexteryy":true,"porreh":true,"apehead":true,"dkannan":true,"sandeepgy11":true,"vutran":true,"ezeikel":true,"kctang":true,"dhampik":true,"zhiquan_yu":true,"princetoad":true,"micromax720":true,"preco21":true,"dbuggerx":true,"wkaifang":true,"wangnan0610":true,"kogakure":true,"qddegtya":true,"tonyljl526":true,"djviolin":true,"iori20091101":true,"knoja4":true,"langri-sha":true,"xueboren":true,"sunny_anna":true,"christopher.urquidi":true,"isenricho":true,"abuelwafa":true,"lababygirl":true,"nickeltobias":true,"joris-van-der-wel":true,"mrzmmr":true,"soulchainer":true,"jimjin":true,"rbultitude":true,"vinnyfonseca":true,"leonardorb":true,"n0f3":true,"pddivine":true,"aixieluo":true,"hr.":true,"alexxnica":true,"edwardxyt":true,"mtdalpizzol":true,"sethbergman":true},"bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"license":"MIT","versions":{"1.0.0":{"name":"babel-eslint","version":"1.0.0","description":"","main":"index.js","repository":{"type":"git","url":"https://github.com/babel/babel-eslint.git"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","gitHead":"f6eac866dfb420c8ef2584dd03cb98ee4253e86e","_id":"babel-eslint@1.0.0","scripts":{},"_shasum":"4fb7392d199ccd74d438126879418e34e0240cc1","_from":".","_npmVersion":"2.6.0","_nodeVersion":"1.4.1","_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"}],"dist":{"shasum":"4fb7392d199ccd74d438126879418e34e0240cc1","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-1.0.0.tgz"},"directories":{}},"1.0.1":{"name":"babel-eslint","version":"1.0.1","description":"","main":"index.js","repository":{"type":"git","url":"https://github.com/babel/babel-eslint.git"},"dependencies":{"babel":"^4.6.0"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","gitHead":"f6eac866dfb420c8ef2584dd03cb98ee4253e86e","_id":"babel-eslint@1.0.1","scripts":{},"_shasum":"24361610bb91c740d778acbdaf056c6d0c965acb","_from":".","_npmVersion":"2.6.0","_nodeVersion":"1.4.1","_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"}],"dist":{"shasum":"24361610bb91c740d778acbdaf056c6d0c965acb","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-1.0.1.tgz"},"directories":{}},"1.0.2":{"name":"babel-eslint","version":"1.0.2","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [eslint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"https://github.com/babel/babel-eslint.git"},"dependencies":{"babel":"^4.6.0"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","gitHead":"b4ab63f8b150bf1efe29b2cc3721573b536ac1d3","_id":"babel-eslint@1.0.2","scripts":{},"_shasum":"7c95bb545a5e355bc52958980afa56b643de8ed3","_from":".","_npmVersion":"2.6.0","_nodeVersion":"1.4.1","_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"}],"dist":{"shasum":"7c95bb545a5e355bc52958980afa56b643de8ed3","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-1.0.2.tgz"},"directories":{}},"1.0.3":{"name":"babel-eslint","version":"1.0.3","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [eslint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"https://github.com/babel/babel-eslint.git"},"dependencies":{"babel":"^4.6.0","lodash":"^3.3.1"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","gitHead":"3c1ac5dedcc37fd5d48bf06e89122d4581471d9b","_id":"babel-eslint@1.0.3","scripts":{},"_shasum":"06508246116ef32eb75ebcc0c6f939aa8bf883b6","_from":".","_npmVersion":"2.6.0","_nodeVersion":"1.4.1","_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"}],"dist":{"shasum":"06508246116ef32eb75ebcc0c6f939aa8bf883b6","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-1.0.3.tgz"},"directories":{}},"1.0.4":{"name":"babel-eslint","version":"1.0.4","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"https://github.com/babel/babel-eslint.git"},"dependencies":{"babel":"^4.6.0","lodash":"^3.3.1"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","gitHead":"bc5a95f073741d7c78160448a3a15631a1378220","_id":"babel-eslint@1.0.4","scripts":{},"_shasum":"c9fc728bb572ee57818dafcefb9639d75e5fa12a","_from":".","_npmVersion":"2.6.0","_nodeVersion":"1.4.1","_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"}],"dist":{"shasum":"c9fc728bb572ee57818dafcefb9639d75e5fa12a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-1.0.4.tgz"},"directories":{}},"1.0.6":{"name":"babel-eslint","version":"1.0.6","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"https://github.com/babel/babel-eslint.git"},"dependencies":{"babel":"^4.6.0","lodash":"^3.3.1"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","gitHead":"92db8b16359b28961a8ded68d6b168692e8506fb","_id":"babel-eslint@1.0.6","scripts":{},"_shasum":"294949566a1b211f2fed9352b2e6d41593fd3556","_from":".","_npmVersion":"2.6.0","_nodeVersion":"1.4.1","_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"}],"dist":{"shasum":"294949566a1b211f2fed9352b2e6d41593fd3556","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-1.0.6.tgz"},"directories":{}},"1.0.7":{"name":"babel-eslint","version":"1.0.7","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"https://github.com/babel/babel-eslint.git"},"dependencies":{"babel":"^4.6.0","lodash":"^3.3.1"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","gitHead":"67f8efdc35a4e5083149b850e7840b839047d3a8","_id":"babel-eslint@1.0.7","scripts":{},"_shasum":"d46d8b42cc520434b41d9a4f430b2758afdc5efe","_from":".","_npmVersion":"2.6.0","_nodeVersion":"1.4.1","_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"}],"dist":{"shasum":"d46d8b42cc520434b41d9a4f430b2758afdc5efe","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-1.0.7.tgz"},"directories":{}},"1.0.8":{"name":"babel-eslint","version":"1.0.8","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"https://github.com/babel/babel-eslint.git"},"dependencies":{"babel":"^4.6.0","lodash":"^3.3.1"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","gitHead":"6f184a55768aceaf096079be4b8005c28ea77f59","_id":"babel-eslint@1.0.8","scripts":{},"_shasum":"574bc4960b071b2ac0fc7c5aa223fc3da3587735","_from":".","_npmVersion":"2.6.0","_nodeVersion":"1.4.1","_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"}],"dist":{"shasum":"574bc4960b071b2ac0fc7c5aa223fc3da3587735","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-1.0.8.tgz"},"directories":{}},"1.0.9":{"name":"babel-eslint","version":"1.0.9","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"https://github.com/babel/babel-eslint.git"},"dependencies":{"babel":"^4.6.0","lodash":"^3.3.1"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","gitHead":"02944635e2e2fce1a72106f42f160db287a6a40f","_id":"babel-eslint@1.0.9","scripts":{},"_shasum":"00371b77a457ca1870f457d4c92fc9aca3905a8b","_from":".","_npmVersion":"2.6.0","_nodeVersion":"1.4.1","_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"}],"dist":{"shasum":"00371b77a457ca1870f457d4c92fc9aca3905a8b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-1.0.9.tgz"},"directories":{}},"1.0.10":{"name":"babel-eslint","version":"1.0.10","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"https://github.com/babel/babel-eslint.git"},"dependencies":{"babel":"^4.6.0","lodash":"^3.3.1"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","gitHead":"e98ee03758c60d773cbb3a33aff0af64114a270c","_id":"babel-eslint@1.0.10","scripts":{},"_shasum":"d9caac8351388b4e9f3ad6e2374d675cbcd5c736","_from":".","_npmVersion":"2.6.0","_nodeVersion":"1.4.1","_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"}],"dist":{"shasum":"d9caac8351388b4e9f3ad6e2374d675cbcd5c736","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-1.0.10.tgz"},"directories":{}},"1.0.11":{"name":"babel-eslint","version":"1.0.11","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"https://github.com/babel/babel-eslint.git"},"dependencies":{"babel":"^4.6.0","lodash.assign":"^3.0.0"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","gitHead":"fa620c4bebcaf1eface8c9baeba3605923f5bd95","_id":"babel-eslint@1.0.11","scripts":{},"_shasum":"254d8600db81741dfb2ed05e0d8f81a2bd709639","_from":".","_npmVersion":"2.6.0","_nodeVersion":"1.4.1","_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"}],"dist":{"shasum":"254d8600db81741dfb2ed05e0d8f81a2bd709639","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-1.0.11.tgz"},"directories":{}},"1.0.12":{"name":"babel-eslint","version":"1.0.12","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"https://github.com/babel/babel-eslint.git"},"dependencies":{"babel":"^4.6.0","lodash.assign":"^3.0.0"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","gitHead":"2a7bfc85e89014b13b1370238010ad7fc034379f","_id":"babel-eslint@1.0.12","scripts":{},"_shasum":"ce2da8a0d87bf7eb3d742e4091df8c519c491aa6","_from":".","_npmVersion":"2.6.0","_nodeVersion":"1.4.1","_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"}],"dist":{"shasum":"ce2da8a0d87bf7eb3d742e4091df8c519c491aa6","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-1.0.12.tgz"},"directories":{}},"1.0.13":{"name":"babel-eslint","version":"1.0.13","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"https://github.com/babel/babel-eslint.git"},"dependencies":{"babel":"^4.6.0","lodash.assign":"^3.0.0"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","gitHead":"ae939c7d1b86b553a996abfa81241831b1f9c738","_id":"babel-eslint@1.0.13","scripts":{},"_shasum":"d23f455f198c3802cbf891448a296456d0c44e89","_from":".","_npmVersion":"2.6.0","_nodeVersion":"1.4.1","_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"}],"dist":{"shasum":"d23f455f198c3802cbf891448a296456d0c44e89","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-1.0.13.tgz"},"directories":{}},"1.0.14":{"name":"babel-eslint","version":"1.0.14","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"https://github.com/babel/babel-eslint.git"},"dependencies":{"babel":"^4.6.0","lodash.assign":"^3.0.0"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^0.15.1","espree":"^1.10.0","mocha":"^2.1.0"},"scripts":{"test":"mocha"},"gitHead":"189c75f262fc610421886b1e80b9bad292a20031","_id":"babel-eslint@1.0.14","_shasum":"917c25bf646110cf47d07bd29829d6e33a663240","_from":".","_npmVersion":"2.6.0","_nodeVersion":"1.4.1","_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"}],"dist":{"shasum":"917c25bf646110cf47d07bd29829d6e33a663240","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-1.0.14.tgz"},"directories":{}},"2.0.0":{"name":"babel-eslint","version":"2.0.0","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-core":"^4.6.0","lodash.assign":"^3.0.0"},"scripts":{"test":"mocha"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^0.16.0","espree":"^1.10.0","mocha":"^2.1.0"},"gitHead":"d230a2f6a6b6e7e76bf06cc7c1eae700168e79b1","_id":"babel-eslint@2.0.0","_shasum":"5e25ef9b81b85b76a3c85c66c86df68df2c7eeb7","_from":".","_npmVersion":"2.6.0","_nodeVersion":"1.4.1","_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"}],"dist":{"shasum":"5e25ef9b81b85b76a3c85c66c86df68df2c7eeb7","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-2.0.0.tgz"},"directories":{}},"2.0.2":{"name":"babel-eslint","version":"2.0.2","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-core":"^4.7.8","lodash.assign":"^3.0.0"},"scripts":{"test":"mocha"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^0.16.0","espree":"^1.10.0","mocha":"^2.1.0"},"gitHead":"e23b1525e214abe7a6e28eba90dcb646d80285ec","_id":"babel-eslint@2.0.2","_shasum":"6c51dd2a74fd40dd4a85ec6543bdb0286851e018","_from":".","_npmVersion":"2.6.0","_nodeVersion":"1.4.1","_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"}],"dist":{"shasum":"6c51dd2a74fd40dd4a85ec6543bdb0286851e018","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-2.0.2.tgz"},"directories":{}},"3.0.0":{"name":"babel-eslint","version":"3.0.0","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-core":"^5.1.8","lodash.assign":"^3.0.0"},"scripts":{"test":"mocha"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^0.18.0","espree":"^2.0.0","mocha":"^2.1.0"},"gitHead":"0c34385ea0bf319134e68ce717b5fc58378f2bcf","_id":"babel-eslint@3.0.0","_shasum":"6c6b0b1ff1b78fe12159fa06a56c3845fdecc64e","_from":".","_npmVersion":"2.7.5","_nodeVersion":"1.6.4","_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"}],"dist":{"shasum":"6c6b0b1ff1b78fe12159fa06a56c3845fdecc64e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-3.0.0.tgz"},"directories":{}},"3.0.1":{"name":"babel-eslint","version":"3.0.1","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-core":"^5.1.8","lodash.assign":"^3.0.0"},"scripts":{"test":"mocha"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^0.18.0","espree":"^2.0.0","mocha":"^2.1.0"},"gitHead":"1bc620f665e9ca7bb19be6c5405b3c18e9b97377","_id":"babel-eslint@3.0.1","_shasum":"e26a23a12de90cc37731b3244f27f28ff60062a6","_from":".","_npmVersion":"2.7.5","_nodeVersion":"1.6.4","_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"}],"dist":{"shasum":"e26a23a12de90cc37731b3244f27f28ff60062a6","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-3.0.1.tgz"},"directories":{}},"3.1.0":{"name":"babel-eslint","version":"3.1.0","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-core":"^5.1.8","lodash.assign":"^3.0.0"},"scripts":{"test":"mocha"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^0.18.0","espree":"^2.0.0","mocha":"^2.1.0"},"gitHead":"6b1fc0f668e32d5cc6f27d326b38e2d3993b9c29","_id":"babel-eslint@3.1.0","_shasum":"299fe5d054ee9faae0c062868ba659dcb2d32361","_from":".","_npmVersion":"2.9.0","_nodeVersion":"2.0.0","_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"}],"dist":{"shasum":"299fe5d054ee9faae0c062868ba659dcb2d32361","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-3.1.0.tgz"},"directories":{}},"3.1.1":{"name":"babel-eslint","version":"3.1.1","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-core":"^5.1.8","lodash.assign":"^3.0.0"},"scripts":{"test":"mocha"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^0.18.0","espree":"^2.0.0","mocha":"^2.1.0"},"gitHead":"d97f3608897e459386f0eca62360cb7d54e67757","_id":"babel-eslint@3.1.1","_shasum":"427cb4da6a0802b9ca1ae33486cbf7e2fa157ac4","_from":".","_npmVersion":"2.9.0","_nodeVersion":"2.0.0","_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"}],"dist":{"shasum":"427cb4da6a0802b9ca1ae33486cbf7e2fa157ac4","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-3.1.1.tgz"},"directories":{}},"3.1.3":{"name":"babel-eslint","version":"3.1.3","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-core":"^5.1.8","lodash.assign":"^3.0.0"},"scripts":{"test":"mocha"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^0.18.0","espree":"^2.0.0","mocha":"^2.1.0"},"gitHead":"5f8cfd35be7b02c7e505363e5ed13bac13f51028","_id":"babel-eslint@3.1.3","_shasum":"2c5b60c264d496aba5bbde2d58a29d68ea383466","_from":".","_npmVersion":"2.9.0","_nodeVersion":"2.0.0","_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"}],"dist":{"shasum":"2c5b60c264d496aba5bbde2d58a29d68ea383466","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-3.1.3.tgz"},"directories":{}},"3.1.4":{"name":"babel-eslint","version":"3.1.4","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-core":"^5.1.8","lodash.assign":"^3.0.0"},"scripts":{"test":"mocha"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^0.18.0","espree":"^2.0.0","mocha":"^2.1.0"},"gitHead":"32592af874939372ac8c7d604cb2e7d9531bb709","_id":"babel-eslint@3.1.4","_shasum":"7f13662cb86ac5c16d8e6504fe7c5019fd83f137","_from":".","_npmVersion":"2.7.4","_nodeVersion":"0.12.2","_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"dist":{"shasum":"7f13662cb86ac5c16d8e6504fe7c5019fd83f137","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-3.1.4.tgz"},"directories":{}},"3.1.5":{"name":"babel-eslint","version":"3.1.5","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-core":"^5.1.8","lodash.assign":"^3.0.0"},"scripts":{"test":"mocha"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^0.18.0","espree":"^2.0.0","mocha":"^2.1.0"},"gitHead":"f9e5fe42910d602f894dffcaa7538cdb7ea706f4","_id":"babel-eslint@3.1.5","_shasum":"b28b5fe342662d1bca47f6d15918bda5b85a1a80","_from":".","_npmVersion":"2.7.1","_nodeVersion":"0.10.36","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"b28b5fe342662d1bca47f6d15918bda5b85a1a80","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-3.1.5.tgz"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"directories":{}},"3.1.6":{"name":"babel-eslint","version":"3.1.6","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-core":"^5.1.8","eslint":"^0.21.2","lodash.assign":"^3.0.0"},"scripts":{"test":"mocha"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^0.18.0","espree":"^2.0.0","mocha":"^2.1.0"},"gitHead":"323e37ad884f7bbca614e41af327ceccac187b4f","_id":"babel-eslint@3.1.6","_shasum":"ae81bd0488f7a919afa1a29cf9172ec0147e488c","_from":".","_npmVersion":"2.7.1","_nodeVersion":"0.10.36","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"ae81bd0488f7a919afa1a29cf9172ec0147e488c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-3.1.6.tgz"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"directories":{}},"3.1.7":{"name":"babel-eslint","version":"3.1.7","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-core":"^5.1.8","lodash.assign":"^3.0.0"},"scripts":{"test":"mocha"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^0.21.2","espree":"^2.0.0","mocha":"^2.1.0"},"gitHead":"aa87a04774f8a1cdbebaf5f384378c14173ce047","_id":"babel-eslint@3.1.7","_shasum":"f5535594cde2b2b9baec94ea037e47443a6f72a2","_from":".","_npmVersion":"2.7.1","_nodeVersion":"0.10.36","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"f5535594cde2b2b9baec94ea037e47443a6f72a2","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-3.1.7.tgz"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"directories":{}},"3.1.8":{"name":"babel-eslint","version":"3.1.8","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-core":"^5.1.8","lodash.assign":"^3.0.0"},"scripts":{"test":"mocha"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^0.21.2","espree":"^2.0.0","mocha":"^2.1.0"},"gitHead":"4e538c4dc850bcb49ecd0a2e0f7b781b56aae33d","_id":"babel-eslint@3.1.8","_shasum":"43951e35da931d2f8c92acc03fac313cd322b185","_from":".","_npmVersion":"2.7.1","_nodeVersion":"0.10.36","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"43951e35da931d2f8c92acc03fac313cd322b185","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-3.1.8.tgz"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"directories":{}},"3.1.9":{"name":"babel-eslint","version":"3.1.9","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-core":"^5.1.8","lodash.assign":"^3.0.0"},"scripts":{"test":"mocha"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^0.21.2","espree":"^2.0.0","mocha":"^2.1.0"},"gitHead":"a1fffcd1ab01df61e10cc540be90df307699c4a8","_id":"babel-eslint@3.1.9","_shasum":"0c2f3a0865f682ea971ff53e9b83f10ea49c6815","_from":".","_npmVersion":"2.9.0","_nodeVersion":"2.0.0","_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"dist":{"shasum":"0c2f3a0865f682ea971ff53e9b83f10ea49c6815","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-3.1.9.tgz"},"directories":{}},"3.1.10":{"name":"babel-eslint","version":"3.1.10","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-core":"^5.1.8","lodash.assign":"^3.0.0","lodash.pick":"^3.1.0"},"scripts":{"test":"mocha"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^0.22.1","espree":"^2.0.0","mocha":"^2.1.0"},"gitHead":"fdeb0221e898480b3f9cc7bcee1ebcc5bb5edbe6","_id":"babel-eslint@3.1.10","_shasum":"481ce797ced379f5135d998b3dc9369b2b1c23ef","_from":".","_npmVersion":"2.7.1","_nodeVersion":"0.10.36","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"481ce797ced379f5135d998b3dc9369b2b1c23ef","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-3.1.10.tgz"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"directories":{}},"3.1.11":{"name":"babel-eslint","version":"3.1.11","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-core":"^5.1.8","lodash.assign":"^3.0.0","lodash.pick":"^3.1.0"},"scripts":{"test":"mocha"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^0.22.1","espree":"^2.0.0","mocha":"^2.1.0"},"gitHead":"58daefc0ebea35494345786606e34a4002704190","_id":"babel-eslint@3.1.11","_shasum":"a00bb68cc096ceed1fbf4fc77787a263f43a5f76","_from":".","_npmVersion":"2.7.1","_nodeVersion":"0.10.36","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"a00bb68cc096ceed1fbf4fc77787a263f43a5f76","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-3.1.11.tgz"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"directories":{}},"3.1.12":{"name":"babel-eslint","version":"3.1.12","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-core":"^5.5.1","lodash.assign":"^3.0.0","lodash.pick":"^3.1.0"},"scripts":{"test":"mocha"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^0.22.1","espree":"^2.0.0","mocha":"^2.1.0"},"gitHead":"9ab1d1e478bff6aaffcde0c5fd8fc8c670f06d5d","_id":"babel-eslint@3.1.12","_shasum":"078af5aa974aea4f5797f38e25a7416f59ef887a","_from":".","_npmVersion":"2.9.0","_nodeVersion":"2.0.0","_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"dist":{"shasum":"078af5aa974aea4f5797f38e25a7416f59ef887a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-3.1.12.tgz"},"directories":{}},"3.1.13":{"name":"babel-eslint","version":"3.1.13","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-core":"^5.5.1","lodash.assign":"^3.0.0","lodash.pick":"^3.1.0"},"scripts":{"test":"mocha"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^0.22.1","espree":"^2.0.0","mocha":"^2.1.0"},"gitHead":"a04ce0fab5244028bd1aa6e9cede0f953ab72ce8","_id":"babel-eslint@3.1.13","_shasum":"7748c9cc8c19dbc24feef06874a22871f92737f6","_from":".","_npmVersion":"2.11.0","_nodeVersion":"0.10.38","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"7748c9cc8c19dbc24feef06874a22871f92737f6","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-3.1.13.tgz"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"directories":{}},"3.1.14":{"name":"babel-eslint","version":"3.1.14","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-core":"^5.5.1","lodash.assign":"^3.0.0","lodash.pick":"^3.1.0"},"scripts":{"test":"mocha"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^0.22.1","espree":"^2.0.0","mocha":"^2.1.0"},"gitHead":"87baf18a352c6e2f5230c7fb51c9ba17fc85bde6","_id":"babel-eslint@3.1.14","_shasum":"a75e5b0112a2de5237b4d02dcb0bda726d15f9ec","_from":".","_npmVersion":"2.11.0","_nodeVersion":"0.10.38","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"a75e5b0112a2de5237b4d02dcb0bda726d15f9ec","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-3.1.14.tgz"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"directories":{}},"3.1.15":{"name":"babel-eslint","version":"3.1.15","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-core":"^5.5.1","lodash.assign":"^3.0.0","lodash.pick":"^3.1.0"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/**/*.js -r ../eslint-tester.js","test":"mocha"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^0.21.2","eslint-tester":"^0.7.0","espree":"^2.0.0","mocha":"^2.1.0"},"gitHead":"493b17709d156414ef736d71544028cbc9d509c3","_id":"babel-eslint@3.1.15","_shasum":"e46d079af1eb51c2d5b3f634784abbc98be8f3d9","_from":".","_npmVersion":"2.7.1","_nodeVersion":"0.10.36","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"e46d079af1eb51c2d5b3f634784abbc98be8f3d9","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-3.1.15.tgz"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"directories":{}},"3.1.16":{"name":"babel-eslint","version":"3.1.16","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-core":"^5.5.1","lodash.assign":"^3.0.0","lodash.pick":"^3.1.0"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/**/*.js -r ../eslint-tester.js","test":"mocha"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^0.21.2","eslint-tester":"^0.7.0","espree":"^2.0.0","mocha":"^2.1.0"},"gitHead":"022dd0f3bcecab59567621cc62f172e8d4f99459","_id":"babel-eslint@3.1.16","_shasum":"d7fc6c6e0e2887c57be9bd24dea16b58e4046a0c","_from":".","_npmVersion":"2.7.1","_nodeVersion":"0.10.36","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"d7fc6c6e0e2887c57be9bd24dea16b58e4046a0c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-3.1.16.tgz"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"directories":{}},"3.1.17":{"name":"babel-eslint","version":"3.1.17","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-core":"^5.5.1","lodash.assign":"^3.0.0","lodash.pick":"^3.1.0"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/**/*.js -r ../eslint-tester.js","test":"mocha"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^0.21.2","eslint-tester":"^0.7.0","espree":"^2.0.0","mocha":"^2.1.0"},"gitHead":"1028c8c7d89c72fcbc55e308800dc2c86c8e214d","_id":"babel-eslint@3.1.17","_shasum":"c63454ec05535ff251a1d6b33ea9acdecf7597b2","_from":".","_npmVersion":"2.11.0","_nodeVersion":"0.10.38","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"c63454ec05535ff251a1d6b33ea9acdecf7597b2","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-3.1.17.tgz"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"directories":{}},"3.1.18":{"name":"babel-eslint","version":"3.1.18","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-core":"^5.6.4","lodash.assign":"^3.0.0","lodash.pick":"^3.1.0"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/**/*.js -r ../eslint-tester.js","test":"mocha"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^0.23.0","espree":"^2.0.3","mocha":"^2.2.5"},"gitHead":"03a29ed78f8b3239c3185dfb686111d43c5a4b6b","_id":"babel-eslint@3.1.18","_shasum":"5d3e52f29051cdebf89b836db2b55940345d5306","_from":".","_npmVersion":"2.7.1","_nodeVersion":"0.10.36","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"5d3e52f29051cdebf89b836db2b55940345d5306","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-3.1.18.tgz"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"directories":{}},"3.1.19":{"name":"babel-eslint","version":"3.1.19","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-core":"^5.6.4","lodash.assign":"^3.0.0","lodash.pick":"^3.1.0"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/**/*.js -r ../eslint-tester.js","test":"mocha"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^0.23.0","espree":"^2.0.3","mocha":"^2.2.5"},"gitHead":"fd523af9df7c87757d973db4abf7bbdd88c85230","_id":"babel-eslint@3.1.19","_shasum":"6cef679085fa59260158c61d317e22a896312cbb","_from":".","_npmVersion":"3.0.0","_nodeVersion":"2.0.0","_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"dist":{"shasum":"6cef679085fa59260158c61d317e22a896312cbb","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-3.1.19.tgz"},"directories":{}},"3.1.20":{"name":"babel-eslint","version":"3.1.20","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-core":"^5.6.4","lodash.assign":"^3.0.0","lodash.pick":"^3.1.0"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/**/*.js -r ../eslint-tester.js","test":"mocha"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^0.23.0","espree":"^2.0.3","mocha":"^2.2.5"},"gitHead":"fb0402cc11cacec701b94b743b22821c882b2610","_id":"babel-eslint@3.1.20","_shasum":"b197919e8d9a0b5d281c64683c4a8e90abe80264","_from":".","_npmVersion":"2.12.0","_nodeVersion":"0.10.38","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"b197919e8d9a0b5d281c64683c4a8e90abe80264","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-3.1.20.tgz"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"directories":{}},"3.1.21":{"name":"babel-eslint","version":"3.1.21","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-core":"^5.6.4","lodash.assign":"^3.0.0","lodash.pick":"^3.1.0"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/**/*.js -r ../eslint-tester.js","test":"mocha"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^0.24.0","espree":"^2.0.3","mocha":"^2.2.5"},"gitHead":"7d94c7be9441676127cacec5342e9c3bb0c50296","_id":"babel-eslint@3.1.21","_shasum":"d38eecba485b5ce40cb5d300e4a4128126fc483f","_from":".","_npmVersion":"2.12.0","_nodeVersion":"0.10.38","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"d38eecba485b5ce40cb5d300e4a4128126fc483f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-3.1.21.tgz"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"directories":{}},"3.1.22":{"name":"babel-eslint","version":"3.1.22","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-core":"^5.6.4","lodash.assign":"^3.0.0","lodash.pick":"^3.1.0"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/**/*.js -r ../eslint-tester.js","test":"mocha"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^0.24.0","espree":"^2.0.3","mocha":"^2.2.5"},"gitHead":"3508eab9052d9047546dde5ee03d415a921957f1","_id":"babel-eslint@3.1.22","_shasum":"27777bf433ab2923b07c8bd660ef5439b41dc2fe","_from":".","_npmVersion":"2.12.0","_nodeVersion":"0.10.38","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"27777bf433ab2923b07c8bd660ef5439b41dc2fe","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-3.1.22.tgz"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"directories":{}},"3.1.23":{"name":"babel-eslint","version":"3.1.23","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-core":"^5.6.4","lodash.assign":"^3.0.0","lodash.pick":"^3.1.0"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/**/*.js -r ../eslint-tester.js","test":"mocha"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^0.24.0","espree":"^2.0.3","mocha":"^2.2.5"},"gitHead":"5bbc0023d8162e256b5a4b358fa9b268eb2da4b3","_id":"babel-eslint@3.1.23","_shasum":"c755e5c16404c764ce6a4fd4574a0cd6ac4e5f7e","_from":".","_npmVersion":"2.12.0","_nodeVersion":"0.10.38","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"c755e5c16404c764ce6a4fd4574a0cd6ac4e5f7e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-3.1.23.tgz"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"directories":{}},"3.1.24":{"name":"babel-eslint","version":"3.1.24","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-core":"^5.6.4","lodash.assign":"^3.0.0","lodash.pick":"^3.1.0"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/**/*.js -r ../eslint-tester.js","test":"mocha"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^0.24.0","espree":"^2.0.3","mocha":"^2.2.5"},"gitHead":"7112930c7e454e8c0bbceb1153c25d4db5d29cb5","_id":"babel-eslint@3.1.24","_shasum":"1025320cea92bfb7e5e6b705f0cbcdb36ef223b5","_from":".","_npmVersion":"2.12.1","_nodeVersion":"2.3.4","_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"dist":{"shasum":"1025320cea92bfb7e5e6b705f0cbcdb36ef223b5","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-3.1.24.tgz"},"directories":{}},"3.1.25":{"name":"babel-eslint","version":"3.1.25","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-core":"^5.6.4","lodash.assign":"^3.0.0","lodash.pick":"^3.1.0"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/**/*.js -r ../eslint-tester.js","test":"mocha"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^0.24.0","espree":"^2.0.3","mocha":"^2.2.5"},"gitHead":"82a60b9b84f27b42e6a7b1872b7dc84f61b54e15","_id":"babel-eslint@3.1.25","_shasum":"0ab6a7843b57cb046f7bf68f2ed15d0fcfc6d8c5","_from":".","_npmVersion":"2.12.1","_nodeVersion":"2.3.4","_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"dist":{"shasum":"0ab6a7843b57cb046f7bf68f2ed15d0fcfc6d8c5","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-3.1.25.tgz"},"directories":{}},"3.1.26":{"name":"babel-eslint","version":"3.1.26","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-core":"^5.6.4","lodash.assign":"^3.0.0","lodash.pick":"^3.1.0"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/**/*.js -r ../eslint-tester.js","test":"mocha"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^0.24.0","espree":"^2.0.3","mocha":"^2.2.5"},"gitHead":"45b8209511b2693f0378d4f387b672a40e49ab2d","_id":"babel-eslint@3.1.26","_shasum":"0eae90608586ba9079d65a6384d90040007759d0","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.3.4","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"0eae90608586ba9079d65a6384d90040007759d0","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-3.1.26.tgz"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"directories":{}},"3.1.27":{"name":"babel-eslint","version":"3.1.27","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-core":"^5.6.4","lodash.assign":"^3.0.0","lodash.pick":"^3.1.0"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/**/*.js -r ../eslint-tester.js","test":"mocha"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^0.24.0","espree":"^2.0.3","mocha":"^2.2.5"},"gitHead":"41bcd680a6b0ef945449bbd740e6a57786a5da4b","_id":"babel-eslint@3.1.27","_shasum":"540952619a8305be2201efb42cdc19a1cfa2772a","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.3.4","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"540952619a8305be2201efb42cdc19a1cfa2772a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-3.1.27.tgz"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"directories":{}},"4.0.0":{"name":"babel-eslint","version":"4.0.0","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-core":"^5.6.4","lodash.assign":"^3.0.0","lodash.pick":"^3.1.0"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/**/*.js -r ../eslint-tester.js","test":"mocha"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^0.24.0","espree":"^2.0.3","mocha":"^2.2.5"},"gitHead":"2352867a3ecbc9d443019f12fe3cc5002d1ad2f9","_id":"babel-eslint@4.0.0","_shasum":"4bcedf5aef5774f100a72553bfe575b944f6a1e3","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.3.4","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"4bcedf5aef5774f100a72553bfe575b944f6a1e3","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-4.0.0.tgz"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"directories":{}},"4.0.1":{"name":"babel-eslint","version":"4.0.1","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-core":"^5.6.4","lodash.assign":"^3.0.0","lodash.pick":"^3.1.0"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/**/*.js -r ../eslint-tester.js","test":"mocha"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^0.24.0","espree":"^2.0.3","mocha":"^2.2.5"},"gitHead":"15506ba21ad914a4b1d2d60a06d6042ae89a619e","_id":"babel-eslint@4.0.1","_shasum":"ac1c254416fb1979688c1e076338d8716dd9dde8","_from":".","_npmVersion":"2.12.1","_nodeVersion":"2.3.4","_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"dist":{"shasum":"ac1c254416fb1979688c1e076338d8716dd9dde8","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-4.0.1.tgz"},"directories":{}},"4.0.2":{"name":"babel-eslint","version":"4.0.2","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-core":"^5.6.4","lodash.assign":"^3.0.0","lodash.pick":"^3.1.0"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/**/*.js -r ../eslint-tester.js","test":"mocha"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^0.24.0","espree":"^2.0.3","mocha":"^2.2.5"},"gitHead":"313dabcafd732bf2949df4b11de9c272770c1eff","_id":"babel-eslint@4.0.2","_shasum":"643652100dad9edee473e5bb851d62a3d50f7acc","_from":".","_npmVersion":"2.12.1","_nodeVersion":"2.3.4","_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"dist":{"shasum":"643652100dad9edee473e5bb851d62a3d50f7acc","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-4.0.2.tgz"},"directories":{}},"3.1.28":{"name":"babel-eslint","version":"3.1.28","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-core":"^5.6.4","lodash.assign":"^3.0.0","lodash.pick":"^3.1.0"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/**/*.js -r ../eslint-tester.js","test":"mocha"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^0.24.0","espree":"^2.0.3","mocha":"^2.2.5"},"gitHead":"9ca302694a1bdeeac9f28854d7b50e81e0f407ea","_id":"babel-eslint@3.1.28","_shasum":"41188ed389a65aab568676a89596cd8c1d0c287e","_from":".","_npmVersion":"2.12.1","_nodeVersion":"2.3.4","_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"dist":{"shasum":"41188ed389a65aab568676a89596cd8c1d0c287e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-3.1.28.tgz"},"directories":{}},"4.0.3":{"name":"babel-eslint","version":"4.0.3","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-core":"^5.6.4","lodash.assign":"^3.0.0","lodash.pick":"^3.1.0"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/**/*.js -r ../eslint-tester.js","test":"mocha"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^0.24.0","espree":"^2.0.3","mocha":"^2.2.5"},"gitHead":"1eb01dc55f9db69b0ddb654e458694adbe54ea17","_id":"babel-eslint@4.0.3","_shasum":"426222f9a3378f372733181598a7ab72189ee241","_from":".","_npmVersion":"2.12.1","_nodeVersion":"2.3.4","_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"dist":{"shasum":"426222f9a3378f372733181598a7ab72189ee241","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-4.0.3.tgz"},"directories":{}},"3.1.29":{"name":"babel-eslint","version":"3.1.29","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-core":"^5.6.4","lodash.assign":"^3.0.0","lodash.pick":"^3.1.0"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/**/*.js -r ../eslint-tester.js","test":"mocha"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^0.24.0","espree":"^2.0.3","mocha":"^2.2.5"},"gitHead":"06a37a08a29552d39b0999d1c59ce2c988fe8295","_id":"babel-eslint@3.1.29","_shasum":"ed236c36b387625219bebcbb0a909a6d791bba36","_from":".","_npmVersion":"2.12.1","_nodeVersion":"2.3.4","_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"dist":{"shasum":"ed236c36b387625219bebcbb0a909a6d791bba36","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-3.1.29.tgz"},"directories":{}},"4.0.4":{"name":"babel-eslint","version":"4.0.4","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-core":"^5.6.4","lodash.assign":"^3.0.0","lodash.pick":"^3.1.0"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/**/*.js -r ../eslint-tester.js","test":"mocha"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^0.24.0","espree":"^2.0.3","mocha":"^2.2.5"},"gitHead":"5be0fca73326013a8e0bb8a46131ad799d9dd7f2","_id":"babel-eslint@4.0.4","_shasum":"7b66cf8ebca1f237274f06e8c8c7a8e55d10026e","_from":".","_npmVersion":"2.12.1","_nodeVersion":"2.3.4","_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"dist":{"shasum":"7b66cf8ebca1f237274f06e8c8c7a8e55d10026e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-4.0.4.tgz"},"directories":{}},"3.1.30":{"name":"babel-eslint","version":"3.1.30","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-core":"^5.6.4","lodash.assign":"^3.0.0","lodash.pick":"^3.1.0"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/**/*.js -r ../eslint-tester.js","test":"mocha"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^0.24.0","espree":"^2.0.3","mocha":"^2.2.5"},"gitHead":"403bbefbd95ff5b642dfc95a517929922161aec8","_id":"babel-eslint@3.1.30","_shasum":"4d244a478ee719ea0570ea347167d5ca2f9a9ca3","_from":".","_npmVersion":"2.12.1","_nodeVersion":"2.3.4","_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"dist":{"shasum":"4d244a478ee719ea0570ea347167d5ca2f9a9ca3","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-3.1.30.tgz"},"directories":{}},"4.0.5":{"name":"babel-eslint","version":"4.0.5","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-core":"^5.6.9","lodash.assign":"^3.0.0","lodash.pick":"^3.1.0"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/**/*.js -r ../eslint-tester.js","test":"mocha"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^0.24.0","espree":"^2.0.3","mocha":"^2.2.5"},"gitHead":"d467c8a60887ebd68908e9c84080dbc31330e075","_id":"babel-eslint@4.0.5","_shasum":"860fcaa3124c14d59f0b37d9536f0b375bfd8fa1","_from":".","_npmVersion":"2.12.1","_nodeVersion":"2.3.4","_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"dist":{"shasum":"860fcaa3124c14d59f0b37d9536f0b375bfd8fa1","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-4.0.5.tgz"},"directories":{}},"4.0.6":{"name":"babel-eslint","version":"4.0.6","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-core":"^5.6.9","lodash.assign":"^3.0.0","lodash.pick":"^3.1.0"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/**/*.js -r ../eslint-tester.js","test":"mocha"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^1.1.0","espree":"^2.0.3","mocha":"^2.2.5"},"gitHead":"2aee3e7342e5093ec21f22b686ec62597fb79225","_id":"babel-eslint@4.0.6","_shasum":"1267901e820c805ece6d6cf41887c73b79c87e38","_from":".","_npmVersion":"2.13.1","_nodeVersion":"0.12.7","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"1267901e820c805ece6d6cf41887c73b79c87e38","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-4.0.6.tgz"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"directories":{}},"4.0.7":{"name":"babel-eslint","version":"4.0.7","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-core":"^5.6.9","lodash.assign":"^3.0.0","lodash.pick":"^3.1.0"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/**/*.js -r ../eslint-tester.js","test":"mocha"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^1.1.0","espree":"^2.0.3","mocha":"^2.2.5"},"gitHead":"6dd4c5b6b5abdcd77c46bec64c75769414cc1a8b","_id":"babel-eslint@4.0.7","_shasum":"c17184e10469a110baaa58b8a7a610e47b780674","_from":".","_npmVersion":"2.13.1","_nodeVersion":"0.12.7","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"c17184e10469a110baaa58b8a7a610e47b780674","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-4.0.7.tgz"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"directories":{}},"4.0.8":{"name":"babel-eslint","version":"4.0.8","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-core":"^5.6.9","lodash.assign":"^3.0.0","lodash.pick":"^3.1.0"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/**/*.js -r ../eslint-tester.js","test":"mocha"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^1.1.0","espree":"^2.0.3","mocha":"^2.2.5"},"gitHead":"5e2dc85d6885e0264235933e4c692d188e709166","_id":"babel-eslint@4.0.8","_shasum":"a40db3ece5644f167b2d60d4e36ab4d0cfb686b5","_from":".","_npmVersion":"2.13.1","_nodeVersion":"0.12.7","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"a40db3ece5644f167b2d60d4e36ab4d0cfb686b5","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-4.0.8.tgz"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"directories":{}},"4.0.9":{"name":"babel-eslint","version":"4.0.9","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-core":"^5.6.9","lodash.assign":"^3.0.0","lodash.pick":"^3.1.0"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/**/*.js -r ../eslint-tester.js","test":"mocha"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^1.1.0","espree":"^2.0.3","mocha":"^2.2.5"},"gitHead":"9eccec9d072c09054992a69fd061638db8aaf0b0","_id":"babel-eslint@4.0.9","_shasum":"155ab91e0bcdee2e7a695ca1e61eacfab5dee076","_from":".","_npmVersion":"2.13.1","_nodeVersion":"0.12.7","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"155ab91e0bcdee2e7a695ca1e61eacfab5dee076","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-4.0.9.tgz"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"directories":{}},"4.0.10":{"name":"babel-eslint","version":"4.0.10","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-core":"^5.6.9","lodash.assign":"^3.0.0","lodash.pick":"^3.1.0"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/**/*.js -r ../eslint-tester.js","test":"mocha"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^1.1.0","espree":"^2.0.3","mocha":"^2.2.5"},"gitHead":"8a40d77f0829015d27984b77e09e97d8a43b51bb","_id":"babel-eslint@4.0.10","_shasum":"b441a0ab371b314d9d06ab16a40da7c20950632a","_from":".","_npmVersion":"2.13.1","_nodeVersion":"0.12.7","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"b441a0ab371b314d9d06ab16a40da7c20950632a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-4.0.10.tgz"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"directories":{}},"4.1.0":{"name":"babel-eslint","version":"4.1.0","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-core":"^5.6.9","lodash.assign":"^3.0.0","lodash.pick":"^3.1.0","acorn-to-esprima":"^1.0.1"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","test":"mocha","lint":"./node_modules/eslint/bin/eslint.js ./test index.js acorn-to-esprima.js"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^1.2.1","espree":"^2.2.4","mocha":"^2.2.5"},"gitHead":"613bd87b7e98cd7645bffa8633195cea04a8c460","_id":"babel-eslint@4.1.0","_shasum":"8ad0058689b78ab5d132cadde8b3aa6de0280f8e","_from":".","_npmVersion":"2.13.1","_nodeVersion":"0.12.7","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"8ad0058689b78ab5d132cadde8b3aa6de0280f8e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-4.1.0.tgz"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"directories":{}},"4.1.1":{"name":"babel-eslint","version":"4.1.1","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-core":"^5.8.23","lodash.assign":"^3.0.0","lodash.pick":"^3.1.0","acorn-to-esprima":"^1.0.2"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","test":"mocha","lint":"./node_modules/eslint/bin/eslint.js ./test index.js acorn-to-esprima.js"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^1.3.1","espree":"^2.2.4","mocha":"^2.2.5"},"gitHead":"0db61dfa9279669fcc7e689a6d43a78ba91e2647","_id":"babel-eslint@4.1.1","_shasum":"7d016e529b68919d69018f57000751ea55aee36d","_from":".","_npmVersion":"2.13.1","_nodeVersion":"0.12.7","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"7d016e529b68919d69018f57000751ea55aee36d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-4.1.1.tgz"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"directories":{}},"4.1.2":{"name":"babel-eslint","version":"4.1.2","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-core":"^5.8.23","lodash.assign":"^3.0.0","lodash.pick":"^3.1.0","acorn-to-esprima":"^1.0.2"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","test":"mocha","lint":"./node_modules/eslint/bin/eslint.js ./test index.js acorn-to-esprima.js"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^1.3.1","espree":"^2.2.4","mocha":"^2.2.5"},"gitHead":"64cc7144a0e003b08bda1657757d0c635b9bca68","_id":"babel-eslint@4.1.2","_shasum":"6c19b1d5e73f4feaeb9ae7c9389edd0423b402a0","_from":".","_npmVersion":"2.13.1","_nodeVersion":"0.12.7","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"6c19b1d5e73f4feaeb9ae7c9389edd0423b402a0","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-4.1.2.tgz"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"directories":{}},"4.1.3":{"name":"babel-eslint","version":"4.1.3","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-core":"^5.8.23","lodash.assign":"^3.0.0","lodash.pick":"^3.1.0","acorn-to-esprima":"^1.0.2"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","test":"mocha","lint":"./node_modules/eslint/bin/eslint.js ./test index.js acorn-to-esprima.js"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^1.3.1","espree":"^2.2.4","mocha":"^2.2.5"},"gitHead":"d8b3a81ba5b8a37fff28640fa18945e6031e3e41","_id":"babel-eslint@4.1.3","_shasum":"021d3e060b77f98e695c33cf5aba3b0ead2bd496","_from":".","_npmVersion":"2.13.1","_nodeVersion":"0.12.7","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"021d3e060b77f98e695c33cf5aba3b0ead2bd496","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-4.1.3.tgz"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"directories":{}},"4.1.4":{"name":"babel-eslint","version":"4.1.4","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-core":"^5.8.33","lodash.assign":"^3.2.0","lodash.pick":"^3.1.0","acorn-to-esprima":"^1.0.5"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","test":"mocha","lint":"./node_modules/eslint/bin/eslint.js ./test index.js acorn-to-esprima.js"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^1.8.0","espree":"^2.2.5","mocha":"^2.3.3"},"gitHead":"9295bba19fb871c1237c2d87d7519484d62d2715","_id":"babel-eslint@4.1.4","_shasum":"b75f0b19a70e6741ae2ba383efcaf2f3661e9f33","_from":".","_npmVersion":"2.13.4","_nodeVersion":"0.12.7","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"b75f0b19a70e6741ae2ba383efcaf2f3661e9f33","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-4.1.4.tgz"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"directories":{}},"4.1.5":{"name":"babel-eslint","version":"4.1.5","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-core":"^5.8.33","lodash.assign":"^3.2.0","lodash.pick":"^3.1.0","acorn-to-esprima":"^1.0.5"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","test":"mocha","lint":"./node_modules/eslint/bin/eslint.js ./test index.js acorn-to-esprima.js"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^1.9.0","espree":"^2.2.5","mocha":"^2.3.3"},"gitHead":"fba0a4944ff94820d0abbd3aada424aef5b6ffc9","_id":"babel-eslint@4.1.5","_shasum":"4db669a6bdb97a1c22450f11989e0b9f2a45fe66","_from":".","_npmVersion":"2.13.4","_nodeVersion":"0.12.7","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"4db669a6bdb97a1c22450f11989e0b9f2a45fe66","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-4.1.5.tgz"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"directories":{}},"4.1.6":{"name":"babel-eslint","version":"4.1.6","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-core":"^5.8.33","lodash.assign":"^3.2.0","lodash.pick":"^3.1.0","acorn-to-esprima":"^1.0.5"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","test":"mocha","lint":"./node_modules/eslint/bin/eslint.js ./test index.js acorn-to-esprima.js"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^1.9.0","espree":"^2.2.5","mocha":"^2.3.3"},"gitHead":"7448831f38e979dcd55e893bea230d26ce046408","_id":"babel-eslint@4.1.6","_shasum":"d1933386476f04095cf58401708cb22b2cb5f254","_from":".","_npmVersion":"3.3.12","_nodeVersion":"4.2.1","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"d1933386476f04095cf58401708cb22b2cb5f254","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-4.1.6.tgz"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"directories":{}},"5.0.0-beta1":{"name":"babel-eslint","version":"5.0.0-beta1","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"acorn-to-esprima":"github:hzoo/acorn-to-esprima#babel6","babel-traverse":"^6.0.20","babel-types":"^6.0.19","babylon":"^6.0.18","lodash.assign":"^3.2.0","lodash.pick":"^3.1.0"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","test":"mocha","lint":"./node_modules/eslint/bin/eslint.js ./test index.js acorn-to-esprima.js","preversion":"npm test"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^1.9.0","espree":"^2.2.5","mocha":"^2.3.3"},"gitHead":"643cdd570ef57622c884d686c99b857c9f98faab","_id":"babel-eslint@5.0.0-beta1","_shasum":"80f03ff6f09b84e5946852be7f2911446659442e","_from":".","_npmVersion":"3.3.12","_nodeVersion":"4.2.1","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"80f03ff6f09b84e5946852be7f2911446659442e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-5.0.0-beta1.tgz"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"directories":{}},"5.0.0-beta2":{"name":"babel-eslint","version":"5.0.0-beta2","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"acorn-to-esprima":"github:hzoo/acorn-to-esprima#babel6","babel-traverse":"^6.0.20","babel-types":"^6.0.19","babylon":"^6.0.18","lodash.assign":"^3.2.0","lodash.pick":"^3.1.0"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","test":"mocha","lint":"./node_modules/eslint/bin/eslint.js ./test index.js acorn-to-esprima.js","preversion":"npm test"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^1.9.0","espree":"^2.2.5","mocha":"^2.3.3"},"gitHead":"1cba0115b9694b69c6e04aa19e72dd3d305bd574","_id":"babel-eslint@5.0.0-beta2","_shasum":"521ba3b7f51824ad0bcfbfe66eca28e1f22cc11c","_from":".","_npmVersion":"3.3.12","_nodeVersion":"4.2.1","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"521ba3b7f51824ad0bcfbfe66eca28e1f22cc11c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-5.0.0-beta2.tgz"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"directories":{}},"5.0.0-beta3":{"name":"babel-eslint","version":"5.0.0-beta3","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"acorn-to-esprima":"github:hzoo/acorn-to-esprima#babel6","babel-traverse":"^6.0.20","babel-types":"^6.0.19","babylon":"^6.0.18","lodash.assign":"^3.2.0","lodash.pick":"^3.1.0"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","test":"mocha","lint":"./node_modules/eslint/bin/eslint.js ./test index.js acorn-to-esprima.js","preversion":"npm test"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^1.9.0","espree":"^2.2.5","mocha":"^2.3.3"},"gitHead":"078e1dea951e3954f5f1b73f83a31e7b6dbcb23e","_id":"babel-eslint@5.0.0-beta3","_shasum":"f019a5927f73c6c74f9423c0aa6950ef754b0a1a","_from":".","_npmVersion":"3.3.12","_nodeVersion":"4.2.1","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"f019a5927f73c6c74f9423c0aa6950ef754b0a1a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-5.0.0-beta3.tgz"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"directories":{}},"5.0.0-beta4":{"name":"babel-eslint","version":"5.0.0-beta4","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"acorn-to-esprima":"^2.0.1","babel-traverse":"^6.0.20","babel-types":"^6.0.19","babylon":"^6.0.18","lodash.assign":"^3.2.0","lodash.pick":"^3.1.0"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","test":"mocha","lint":"./node_modules/eslint/bin/eslint.js ./test index.js acorn-to-esprima.js","preversion":"npm test"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^1.9.0","espree":"^2.2.5","mocha":"^2.3.3"},"gitHead":"9ba5a3f7ab77c1dc4cd91e0f4d0fbfea97b26983","_id":"babel-eslint@5.0.0-beta4","_shasum":"539779e8def97c40ba85d80fa26a0cf0e7bbd5c9","_from":".","_npmVersion":"3.3.12","_nodeVersion":"4.2.1","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"539779e8def97c40ba85d80fa26a0cf0e7bbd5c9","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-5.0.0-beta4.tgz"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"directories":{}},"5.0.0-beta5":{"name":"babel-eslint","version":"5.0.0-beta5","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"acorn-to-esprima":"^2.0.3","babel-traverse":"^6.0.20","babel-types":"^6.0.19","babylon":"^6.0.18","lodash.assign":"^3.2.0","lodash.pick":"^3.1.0"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","test":"mocha","lint":"./node_modules/eslint/bin/eslint.js ./test index.js acorn-to-esprima.js","preversion":"npm test"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^1.10.2","espree":"^2.2.5","mocha":"^2.3.3"},"gitHead":"4b2a9b79b1f6181dc62f03edf174be572dc0c370","_id":"babel-eslint@5.0.0-beta5","_shasum":"67482778bd9b683540ff36912dda6525569fd3cf","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"67482778bd9b683540ff36912dda6525569fd3cf","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-5.0.0-beta5.tgz"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"directories":{}},"5.0.0-beta6":{"name":"babel-eslint","version":"5.0.0-beta6","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"acorn-to-esprima":"^2.0.4","babel-traverse":"^6.0.20","babel-types":"^6.0.19","babylon":"^6.0.18","lodash.assign":"^3.2.0","lodash.pick":"^3.1.0"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","test":"mocha","lint":"./node_modules/eslint/bin/eslint.js ./test index.js acorn-to-esprima.js","preversion":"npm test"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^1.10.2","espree":"^2.2.5","mocha":"^2.3.3"},"gitHead":"380142822364cabcad485f30757a92382994b693","_id":"babel-eslint@5.0.0-beta6","_shasum":"ba61da7d14f7b4e3a8098aee37b446d22e227614","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"ba61da7d14f7b4e3a8098aee37b446d22e227614","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-5.0.0-beta6.tgz"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"directories":{}},"5.0.0-beta7":{"name":"babel-eslint","version":"5.0.0-beta7","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"acorn-to-esprima":"^2.0.4","babel-traverse":"^6.0.20","babel-types":"^6.0.19","babylon":"^6.0.18","lodash.assign":"^3.2.0","lodash.pick":"^3.1.0"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","test":"mocha","lint":"./node_modules/eslint/bin/eslint.js ./test index.js acorn-to-esprima.js","preversion":"npm test"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^1.10.2","espree":"^2.2.5","mocha":"^2.3.3"},"gitHead":"937ecebfe4369ab7785bbcd16419286e9203b471","_id":"babel-eslint@5.0.0-beta7","_shasum":"3073f3f23911fe6580aa17b177326ae38503bcf4","_from":".","_npmVersion":"2.13.4","_nodeVersion":"0.12.7","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"3073f3f23911fe6580aa17b177326ae38503bcf4","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-5.0.0-beta7.tgz"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"directories":{}},"5.0.0-beta8":{"name":"babel-eslint","version":"5.0.0-beta8","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"https://github.com/babel/babel-eslint.git"},"dependencies":{"acorn-to-esprima":"^2.0.4","babel-traverse":"^6.0.20","babel-types":"^6.0.19","babylon":"^6.0.18","lodash.assign":"^3.2.0","lodash.pick":"^3.1.0"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","test":"mocha","lint":"./node_modules/eslint/bin/eslint.js ./test index.js acorn-to-esprima.js","preversion":"npm test"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^1.10.2","espree":"^2.2.5","mocha":"^2.3.3"},"gitHead":"3dcb32ced84799131dfb817d43d7723616669a48","_id":"babel-eslint@5.0.0-beta8","_shasum":"998fa146fc2ab793c266d828c440bc5f73a08cba","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"dist":{"shasum":"998fa146fc2ab793c266d828c440bc5f73a08cba","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-5.0.0-beta8.tgz"},"directories":{}},"5.0.0-beta9":{"name":"babel-eslint","version":"5.0.0-beta9","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"acorn-to-esprima":"^2.0.4","babel-traverse":"^6.0.20","babel-types":"^6.0.19","babylon":"^6.0.18","lodash.assign":"^3.2.0","lodash.pick":"^3.1.0"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","test":"mocha","lint":"./node_modules/eslint/bin/eslint.js ./test index.js acorn-to-esprima.js","preversion":"npm test"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^1.10.2","espree":"^2.2.5","mocha":"^2.3.3"},"gitHead":"0d3088227dc3b0114228ea09c566129f8a00a18f","_id":"babel-eslint@5.0.0-beta9","_shasum":"e852b955abdb3270d4a8098ef023152c7cad78f0","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.1.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"e852b955abdb3270d4a8098ef023152c7cad78f0","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-5.0.0-beta9.tgz"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"_npmOperationalInternal":{"host":"packages-8-eu.internal.npmjs.com","tmp":"tmp/babel-eslint-5.0.0-beta9.tgz_1454355716378_0.9311813565436751"},"directories":{}},"4.1.7":{"name":"babel-eslint","version":"4.1.7","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"acorn-to-esprima":"^2.0.4","babel-traverse":"^6.0.20","babel-types":"^6.0.19","babylon":"^6.0.18","lodash.assign":"^3.2.0","lodash.pick":"^3.1.0"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","test":"mocha","lint":"./node_modules/eslint/bin/eslint.js ./test index.js acorn-to-esprima.js","preversion":"npm test"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^1.10.2","espree":"^2.2.5","mocha":"^2.3.3"},"gitHead":"7a8985787136daa2314407179a74e4bdfcd271c2","_id":"babel-eslint@4.1.7","_shasum":"792bfa77f2709af6f20ad4f796cc2dcf0b713165","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.1.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"792bfa77f2709af6f20ad4f796cc2dcf0b713165","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-4.1.7.tgz"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/babel-eslint-4.1.7.tgz_1454356744443_0.9880041712895036"},"directories":{}},"5.0.0-beta10":{"name":"babel-eslint","version":"5.0.0-beta10","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"acorn-to-esprima":"^2.0.4","babel-traverse":"^6.0.20","babel-types":"^6.0.19","babylon":"^6.0.18","lodash.assign":"^3.2.0","lodash.pick":"^3.1.0"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","test":"mocha","lint":"./node_modules/eslint/bin/eslint.js ./test index.js acorn-to-esprima.js","preversion":"npm test"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^1.10.2","espree":"^2.2.5","mocha":"^2.3.3"},"gitHead":"413b80e3516cc5d483545ae4846ebae9bcf5084b","_id":"babel-eslint@5.0.0-beta10","_shasum":"2c0f4af5e556922459e4e06ad9e70ed7e6ac72aa","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.1.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"2c0f4af5e556922459e4e06ad9e70ed7e6ac72aa","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-5.0.0-beta10.tgz"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"_npmOperationalInternal":{"host":"packages-8-eu.internal.npmjs.com","tmp":"tmp/babel-eslint-5.0.0-beta10.tgz_1454385979629_0.6554192053154111"},"directories":{}},"4.1.8":{"name":"babel-eslint","version":"4.1.8","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-core":"^5.8.33","lodash.assign":"^3.2.0","lodash.pick":"^3.1.0","acorn-to-esprima":"^1.0.5"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","test":"mocha","lint":"./node_modules/eslint/bin/eslint.js ./test index.js acorn-to-esprima.js"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^1.9.0","espree":"^2.2.5","mocha":"^2.3.3"},"gitHead":"059059293f4ae37d093c21c559d92b88d9124bdb","_id":"babel-eslint@4.1.8","_shasum":"4f79e7a4f5879ecf03f48cb16f552a355fcc31b2","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.1.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"4f79e7a4f5879ecf03f48cb16f552a355fcc31b2","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-4.1.8.tgz"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/babel-eslint-4.1.8.tgz_1454386499946_0.72509032394737"},"directories":{}},"5.0.0":{"name":"babel-eslint","version":"5.0.0","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","files":["index.js"],"repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"acorn-to-esprima":"^2.0.4","babel-traverse":"^6.0.20","babel-types":"^6.0.19","babylon":"^6.0.18","lodash.assign":"^3.2.0","lodash.pick":"^3.1.0"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","test":"mocha","lint":"./node_modules/eslint/bin/eslint.js ./test index.js acorn-to-esprima.js","preversion":"npm test"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^1.10.2","espree":"^2.2.5","mocha":"^2.3.3"},"gitHead":"0f20099e501c5076b227a672cb6491332a89246f","_id":"babel-eslint@5.0.0","_shasum":"47cfed8880090ffdf8569fa82adab5757ea5512f","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.1.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"47cfed8880090ffdf8569fa82adab5757ea5512f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-5.0.0.tgz"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/babel-eslint-5.0.0.tgz_1455664074077_0.17597890179604292"},"directories":{}},"6.0.0-beta.1":{"name":"babel-eslint","version":"6.0.0-beta.1","description":"Custom parser for ESLint","main":"index.js","files":["index.js","babylon-to-espree"],"repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-traverse":"^6.0.20","babel-types":"^6.0.19","babylon":"^6.0.18","lodash.assign":"^3.2.0","lodash.pick":"^3.1.0"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","test":"mocha","lint":"./node_modules/eslint/bin/eslint.js index.js babylon-to-espree test","fix":"./node_modules/eslint/bin/eslint.js index.js babylon-to-espree test --fix","preversion":"npm test"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^2.0.0","espree":"^3.0.0","mocha":"^2.3.3"},"gitHead":"e40bac5a7b419b60eb3b472299b7d83091f37b61","_id":"babel-eslint@6.0.0-beta.1","_shasum":"cadde6dd8a0c7143a3ec389efed3552be852b8c9","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.1.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"cadde6dd8a0c7143a3ec389efed3552be852b8c9","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-6.0.0-beta.1.tgz"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/babel-eslint-6.0.0-beta.1.tgz_1456889984974_0.8517343329731375"},"directories":{}},"6.0.0-beta.2":{"name":"babel-eslint","version":"6.0.0-beta.2","description":"Custom parser for ESLint","main":"index.js","files":["index.js","babylon-to-espree"],"repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-traverse":"^6.0.20","babel-types":"^6.0.19","babylon":"^6.0.18","lodash.assign":"^3.2.0","lodash.pick":"^3.1.0"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","test":"mocha","lint":"./node_modules/eslint/bin/eslint.js index.js babylon-to-espree test","fix":"./node_modules/eslint/bin/eslint.js index.js babylon-to-espree test --fix","preversion":"npm test"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^2.3.0","espree":"^3.0.0","mocha":"^2.3.3"},"gitHead":"98d2f07d05351807146b7d9f211c4faf6d5704c2","_id":"babel-eslint@6.0.0-beta.2","_shasum":"1f5956ba3e69b76a074b90da2c238a66eeb5c841","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.1.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"1f5956ba3e69b76a074b90da2c238a66eeb5c841","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-6.0.0-beta.2.tgz"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/babel-eslint-6.0.0-beta.2.tgz_1457372093549_0.20735106244683266"},"directories":{}},"6.0.0-beta.3":{"name":"babel-eslint","version":"6.0.0-beta.3","description":"Custom parser for ESLint","main":"index.js","files":["index.js","babylon-to-espree"],"repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-traverse":"^6.0.20","babel-types":"^6.0.19","babylon":"^6.0.18","lodash.assign":"^3.2.0","lodash.pick":"^3.1.0"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","test":"mocha","lint":"./node_modules/eslint/bin/eslint.js index.js babylon-to-espree test","fix":"./node_modules/eslint/bin/eslint.js index.js babylon-to-espree test --fix","preversion":"npm test"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^2.3.0","espree":"^3.0.0","mocha":"^2.3.3"},"gitHead":"7c9ccd2962f7116dc03329cc06c229d310d60a82","_id":"babel-eslint@6.0.0-beta.3","_shasum":"590478ba502c0818fb267af0e1b4c5408be89647","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.1.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"590478ba502c0818fb267af0e1b4c5408be89647","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-6.0.0-beta.3.tgz"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/babel-eslint-6.0.0-beta.3.tgz_1457410435974_0.49022157629951835"},"directories":{}},"6.0.0-beta.4":{"name":"babel-eslint","version":"6.0.0-beta.4","description":"Custom parser for ESLint","main":"index.js","files":["index.js","babylon-to-espree"],"repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-traverse":"^6.0.20","babel-types":"^6.0.19","babylon":"^6.0.18","lodash.assign":"^3.2.0","lodash.pick":"^3.1.0"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","test":"mocha","lint":"./node_modules/eslint/bin/eslint.js index.js babylon-to-espree test","fix":"./node_modules/eslint/bin/eslint.js index.js babylon-to-espree test --fix","preversion":"npm test"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"~2.2.0","espree":"^3.0.0","mocha":"^2.3.3"},"gitHead":"9951c45303d364ff82fa39cd5b580c3a6b282b60","_id":"babel-eslint@6.0.0-beta.4","_shasum":"894aa9ea6ed26f4e9cd9efd2fcb2c49928bbfeea","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.1.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"894aa9ea6ed26f4e9cd9efd2fcb2c49928bbfeea","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-6.0.0-beta.4.tgz"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/babel-eslint-6.0.0-beta.4.tgz_1457453068537_0.25740736396983266"},"directories":{}},"6.0.0-beta.5":{"name":"babel-eslint","version":"6.0.0-beta.5","description":"Custom parser for ESLint","main":"index.js","files":["index.js","babylon-to-espree"],"repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-traverse":"^6.0.20","babel-types":"^6.0.19","babylon":"^6.0.18","lodash.assign":"^3.2.0","lodash.pick":"^3.1.0"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","test":"mocha","lint":"./node_modules/eslint/bin/eslint.js index.js babylon-to-espree test","fix":"./node_modules/eslint/bin/eslint.js index.js babylon-to-espree test --fix","preversion":"npm test"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"~2.2.0","espree":"^3.0.0","mocha":"^2.3.3"},"gitHead":"32848e57bd606076c4e0c2a7c618ff6a6ab639ff","_id":"babel-eslint@6.0.0-beta.5","_shasum":"1aa8bf5d00004db937a18dce51dd4f47ea080b9d","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.1.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"1aa8bf5d00004db937a18dce51dd4f47ea080b9d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-6.0.0-beta.5.tgz"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/babel-eslint-6.0.0-beta.5.tgz_1457453222643_0.7407714789733291"},"directories":{}},"6.0.0-beta.6":{"name":"babel-eslint","version":"6.0.0-beta.6","description":"Custom parser for ESLint","main":"index.js","files":["index.js","babylon-to-espree"],"repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-traverse":"^6.0.20","babel-types":"^6.0.19","babylon":"^6.0.18","lodash.assign":"^3.2.0","lodash.pick":"^3.1.0"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","test":"mocha","lint":"./node_modules/eslint/bin/eslint.js index.js babylon-to-espree test","fix":"./node_modules/eslint/bin/eslint.js index.js babylon-to-espree test --fix","preversion":"npm test"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^2.4.0","espree":"^3.0.0","mocha":"^2.3.3"},"gitHead":"cdb5bb0c9d50709488605a4c6d09d0acf5adac23","_id":"babel-eslint@6.0.0-beta.6","_shasum":"6b1a6c7227111505987b58be5c606c3f9ca8a503","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.1.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"6b1a6c7227111505987b58be5c606c3f9ca8a503","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-6.0.0-beta.6.tgz"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/babel-eslint-6.0.0-beta.6.tgz_1457959064373_0.26748901861719787"},"directories":{}},"5.0.1":{"name":"babel-eslint","version":"5.0.1","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","files":["index.js"],"repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"peerDependencies":{"eslint":"<2.0.0"},"dependencies":{"acorn-to-esprima":"^2.0.4","babel-traverse":"^6.0.20","babel-types":"^6.0.19","babylon":"^6.0.18","lodash.assign":"^3.2.0","lodash.pick":"^3.1.0"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","test":"mocha","lint":"./node_modules/eslint/bin/eslint.js ./test index.js acorn-to-esprima.js","preversion":"npm test"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^1.10.2","espree":"^2.2.5","mocha":"^2.3.3"},"gitHead":"43d5ba6966047ba287bd414126f4861b02f7dcf6","_id":"babel-eslint@5.0.1","_shasum":"25edb246baf3c8e34060830c7535a2e7060820b1","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.1.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"25edb246baf3c8e34060830c7535a2e7060820b1","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-5.0.1.tgz"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/babel-eslint-5.0.1.tgz_1458963942017_0.6763984786812216"},"directories":{}},"6.0.0":{"name":"babel-eslint","version":"6.0.0","description":"Custom parser for ESLint","main":"index.js","files":["index.js","babylon-to-espree"],"repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-traverse":"^6.0.20","babel-types":"^6.0.19","babylon":"^6.0.18","lodash.assign":"^3.2.0","lodash.pick":"^3.1.0"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","test":"mocha","lint":"./node_modules/eslint/bin/eslint.js index.js babylon-to-espree test","fix":"./node_modules/eslint/bin/eslint.js index.js babylon-to-espree test --fix","preversion":"npm test"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^2.4.0","espree":"^3.0.0","mocha":"^2.3.3"},"gitHead":"000f4b841efd2b586855a08c789bc93043c1317a","_id":"babel-eslint@6.0.0","_shasum":"492b617762f9713e182676c09d957e6a8e89480b","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.1.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"492b617762f9713e182676c09d957e6a8e89480b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-6.0.0.tgz"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/babel-eslint-6.0.0.tgz_1458964305484_0.6008776088710874"},"directories":{}},"5.0.2":{"name":"babel-eslint","version":"5.0.2","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","files":["index.js"],"repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"peerDependencies":{"eslint":"<2.3.0"},"dependencies":{"acorn-to-esprima":"^2.0.4","babel-traverse":"^6.0.20","babel-types":"^6.0.19","babylon":"^6.0.18","lodash.assign":"^3.2.0","lodash.pick":"^3.1.0"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","test":"mocha","lint":"./node_modules/eslint/bin/eslint.js ./test index.js acorn-to-esprima.js","preversion":"npm test"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^1.10.2","espree":"^2.2.5","mocha":"^2.3.3"},"gitHead":"04c5ebe5e13c417411b618169e9fe04aadb0e80a","_id":"babel-eslint@5.0.2","_shasum":"d343015e0987e4ac5ea54bd246151ac74f7fc44a","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.1.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"dist":{"shasum":"d343015e0987e4ac5ea54bd246151ac74f7fc44a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-5.0.2.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/babel-eslint-5.0.2.tgz_1459338067632_0.3738697627559304"},"directories":{}},"5.0.3":{"name":"babel-eslint","version":"5.0.3","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","files":["index.js"],"repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"peerDependencies":{"eslint":"<2.3.0"},"dependencies":{"acorn-to-esprima":"^2.0.4","babel-traverse":"^6.0.20","babel-types":"^6.0.19","babylon":"^6.0.18","lodash.assign":"^3.2.0","lodash.pick":"^3.1.0"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","test":"mocha","lint":"./node_modules/eslint/bin/eslint.js ./test index.js acorn-to-esprima.js","preversion":"npm test"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^1.10.2","espree":"^2.2.5","mocha":"^2.3.3"},"gitHead":"07383bb7e2a1948d2162e30e959edf90cb9a4579","_id":"babel-eslint@5.0.3","_shasum":"b5579c86ed30c0a397007e7428edf13eba4096b2","_from":".","_npmVersion":"3.8.3","_nodeVersion":"5.1.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"dist":{"shasum":"b5579c86ed30c0a397007e7428edf13eba4096b2","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-5.0.3.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/babel-eslint-5.0.3.tgz_1459457525438_0.8120077769272029"},"directories":{}},"6.0.1":{"name":"babel-eslint","version":"6.0.1","description":"Custom parser for ESLint","main":"index.js","files":["index.js","babylon-to-espree"],"repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-traverse":"^6.0.20","babel-types":"^6.0.19","babylon":"^6.0.18","lodash.assign":"^3.2.0","lodash.pick":"^3.1.0"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","test":"mocha","lint":"./node_modules/eslint/bin/eslint.js index.js babylon-to-espree test","fix":"./node_modules/eslint/bin/eslint.js index.js babylon-to-espree test --fix","preversion":"npm test"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^2.4.0","espree":"^3.0.0","mocha":"^2.3.3"},"gitHead":"63635cdfc43afe471297a2a582092b8acf2aa66e","_id":"babel-eslint@6.0.1","_shasum":"f32fb707f3483938cb02bfa5afa82683ea39b527","_from":".","_npmVersion":"3.8.3","_nodeVersion":"5.1.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"dist":{"shasum":"f32fb707f3483938cb02bfa5afa82683ea39b527","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-6.0.1.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/babel-eslint-6.0.1.tgz_1459457562015_0.8723097976762801"},"directories":{}},"6.0.2":{"name":"babel-eslint","version":"6.0.2","description":"Custom parser for ESLint","main":"index.js","files":["index.js","babylon-to-espree"],"repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-traverse":"^6.0.20","babel-types":"^6.0.19","babylon":"^6.0.18","lodash.assign":"^3.2.0","lodash.pick":"^3.1.0"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","test":"mocha","lint":"./node_modules/eslint/bin/eslint.js index.js babylon-to-espree test","fix":"./node_modules/eslint/bin/eslint.js index.js babylon-to-espree test --fix","preversion":"npm test"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^2.4.0","espree":"^3.0.0","mocha":"^2.3.3"},"gitHead":"27debee58f0395516c1f37a9ad5cf23c55cb2c51","_id":"babel-eslint@6.0.2","_shasum":"030650af8ceeb4e9d0ef4dadb8303f622349e97f","_from":".","_npmVersion":"3.8.3","_nodeVersion":"5.1.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"dist":{"shasum":"030650af8ceeb4e9d0ef4dadb8303f622349e97f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-6.0.2.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/babel-eslint-6.0.2.tgz_1459466068265_0.9780830829404294"},"directories":{}},"5.0.4":{"name":"babel-eslint","version":"5.0.4","description":"**babel-eslint** allows you to lint **ALL** valid Babel code with the fantastic [ESLint](https://github.com/eslint/eslint).","main":"index.js","files":["index.js"],"repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"peerDependencies":{"eslint":"<2.3.0"},"dependencies":{"acorn-to-esprima":"^2.0.4","babel-traverse":"^6.0.20","babel-types":"^6.0.19","babylon":"^6.0.18","lodash.assign":"^3.2.0","lodash.pick":"^3.1.0"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","test":"mocha","lint":"./node_modules/eslint/bin/eslint.js ./test index.js acorn-to-esprima.js","preversion":"npm test"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^1.10.2","espree":"^2.2.5","mocha":"^2.3.3"},"gitHead":"54815d2c38f86e7b3960c4040919f2ceac312888","_id":"babel-eslint@5.0.4","_shasum":"a6ba51ae582a1d4e25adfddbc2a61f8d5a9040b9","_from":".","_npmVersion":"3.8.3","_nodeVersion":"5.1.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"dist":{"shasum":"a6ba51ae582a1d4e25adfddbc2a61f8d5a9040b9","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-5.0.4.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/babel-eslint-5.0.4.tgz_1459466243168_0.7925616216380149"},"directories":{}},"6.0.3":{"name":"babel-eslint","version":"6.0.3","description":"Custom parser for ESLint","main":"index.js","files":["index.js","babylon-to-espree"],"repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-traverse":"^6.0.20","babel-types":"^6.0.19","babylon":"^6.0.18","lodash.assign":"^3.2.0","lodash.pick":"^3.1.0"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","test":"mocha","lint":"eslint index.js babylon-to-espree test","fix":"eslint index.js babylon-to-espree test --fix","preversion":"npm test"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^2.4.0","espree":"^3.0.0","mocha":"^2.3.3"},"gitHead":"05377fb748aa1803dcd66f2c47ec681ee66a6b0c","_id":"babel-eslint@6.0.3","_shasum":"b705eadc25c872e5bf4801b8a4bfdcdd6b01c7ea","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.1.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"dist":{"shasum":"b705eadc25c872e5bf4801b8a4bfdcdd6b01c7ea","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-6.0.3.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/babel-eslint-6.0.3.tgz_1461123660350_0.38640773040242493"},"directories":{}},"6.0.4":{"name":"babel-eslint","version":"6.0.4","description":"Custom parser for ESLint","main":"index.js","files":["index.js","babylon-to-espree"],"repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-traverse":"^6.0.20","babel-types":"^6.0.19","babylon":"^6.0.18","lodash.assign":"^4.0.0","lodash.pickby":"^4.0.0"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","test":"mocha","lint":"eslint index.js babylon-to-espree test","fix":"eslint index.js babylon-to-espree test --fix","preversion":"npm test"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^2.4.0","espree":"^3.0.0","mocha":"^2.3.3"},"gitHead":"cff6d35b223ad51dafbaee8908f38b0d1eb3c563","_id":"babel-eslint@6.0.4","_shasum":"cf87dcd516241b2e01d85e80e08e849a232bdef7","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.1.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"dist":{"shasum":"cf87dcd516241b2e01d85e80e08e849a232bdef7","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-6.0.4.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/babel-eslint-6.0.4.tgz_1461621346271_0.799388874322176"},"directories":{}},"6.0.5":{"name":"babel-eslint","version":"6.0.5","description":"Custom parser for ESLint","main":"index.js","files":["index.js","babylon-to-espree"],"repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-traverse":"^6.0.20","babel-types":"^6.0.19","babylon":"^6.0.18","lodash.assign":"^4.0.0","lodash.pickby":"^4.0.0"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","test":"mocha","lint":"eslint index.js babylon-to-espree test","fix":"eslint index.js babylon-to-espree test --fix","preversion":"npm test","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^2.4.0","espree":"^3.0.0","mocha":"^2.3.3"},"gitHead":"e1d03fa035c7f83735059cebc351bd249bcaee6e","_id":"babel-eslint@6.0.5","_shasum":"92fe48e341683f112f20a15219ed97549a5ece9c","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"92fe48e341683f112f20a15219ed97549a5ece9c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-6.0.5.tgz"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/babel-eslint-6.0.5.tgz_1466457156366_0.6766940602101386"},"directories":{}},"6.1.0":{"name":"babel-eslint","version":"6.1.0","description":"Custom parser for ESLint","main":"index.js","files":["index.js","babylon-to-espree"],"repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-traverse":"^6.0.20","babel-types":"^6.0.19","babylon":"^6.0.18","lodash.assign":"^4.0.0","lodash.pickby":"^4.0.0"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","test":"mocha","lint":"eslint index.js babylon-to-espree test","fix":"eslint index.js babylon-to-espree test --fix","preversion":"npm test","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^2.4.0","espree":"^3.0.0","mocha":"^2.3.3"},"gitHead":"eebb978a6bd651a114a12793d4b84d43ace38c4e","_id":"babel-eslint@6.1.0","_shasum":"ce97bb95590f67e0af43d585126fbdad7678b8ab","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"ce97bb95590f67e0af43d585126fbdad7678b8ab","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-6.1.0.tgz"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/babel-eslint-6.1.0.tgz_1466627840395_0.6725804065354168"},"directories":{}},"6.1.1":{"name":"babel-eslint","version":"6.1.1","description":"Custom parser for ESLint","main":"index.js","files":["index.js","babylon-to-espree"],"repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-traverse":"^6.0.20","babel-types":"^6.0.19","babylon":"^6.0.18","lodash.assign":"^4.0.0","lodash.pickby":"^4.0.0"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","test":"mocha","lint":"eslint index.js babylon-to-espree test","fix":"eslint index.js babylon-to-espree test --fix","preversion":"npm test","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^2.4.0","espree":"^3.0.0","mocha":"^2.3.3"},"gitHead":"36a6a6d50e5c2f08b4dfbfa9f96cb67c223d774a","_id":"babel-eslint@6.1.1","_shasum":"007791ff2ceb1bfe73d3c820e70b4395aa874d2f","_from":".","_npmVersion":"3.10.3","_nodeVersion":"5.11.1","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"007791ff2ceb1bfe73d3c820e70b4395aa874d2f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-6.1.1.tgz"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/babel-eslint-6.1.1.tgz_1468002221835_0.4413412075955421"},"directories":{}},"6.1.2":{"name":"babel-eslint","version":"6.1.2","description":"Custom parser for ESLint","main":"index.js","files":["index.js","babylon-to-espree"],"repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-traverse":"^6.0.20","babel-types":"^6.0.19","babylon":"^6.0.18","lodash.assign":"^4.0.0","lodash.pickby":"^4.0.0"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","test":"mocha","lint":"eslint index.js babylon-to-espree test","fix":"eslint index.js babylon-to-espree test --fix","preversion":"npm test","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^2.4.0","espree":"^3.0.0","mocha":"^2.3.3"},"gitHead":"9bea6fb2b7c6e01c29bbfc907b8ff6b85519bc52","_id":"babel-eslint@6.1.2","_shasum":"5293419fe3672d66598d327da9694567ba6a5f2f","_from":".","_npmVersion":"3.10.3","_nodeVersion":"5.11.1","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"5293419fe3672d66598d327da9694567ba6a5f2f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-6.1.2.tgz"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/babel-eslint-6.1.2.tgz_1468078840838_0.10370502877049148"},"directories":{}},"7.0.0":{"name":"babel-eslint","version":"7.0.0","description":"Custom parser for ESLint","main":"index.js","files":["index.js","babylon-to-espree"],"repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-traverse":"^6.15.0","babel-types":"^6.15.0","babylon":"^6.11.2","lodash.pickby":"^4.6.0"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","test":"mocha","test-ci":"npm test && npm run lint","lint":"eslint index.js babylon-to-espree test","fix":"eslint index.js babylon-to-espree test --fix","preversion":"npm test","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","engines":{"node":">=4"},"bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"eslint":"^3.6.0","eslint-config-babel":"^1.0.2","eslint-plugin-babel":"^3.3.0","eslint-plugin-flow-vars":"^0.5.0","espree":"^3.3.1","mocha":"^3.0.0"},"gitHead":"f82b121d2de05652ff48dc837fb55fe75b67ca52","_id":"babel-eslint@7.0.0","_shasum":"54e51b4033f54ac81326ecea4c646a779935196d","_from":".","_npmVersion":"3.10.6","_nodeVersion":"5.11.1","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"54e51b4033f54ac81326ecea4c646a779935196d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-7.0.0.tgz"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/babel-eslint-7.0.0.tgz_1474994151236_0.3773129852488637"},"directories":{}},"7.1.0":{"name":"babel-eslint","version":"7.1.0","description":"Custom parser for ESLint","main":"index.js","files":["index.js","babylon-to-espree"],"repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-traverse":"^6.15.0","babel-types":"^6.15.0","babylon":"^6.11.2","lodash.pickby":"^4.6.0"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","test":"npm run lint && npm run test-only","test-only":"mocha","lint":"eslint index.js babylon-to-espree test","fix":"eslint index.js babylon-to-espree test --fix","preversion":"npm test","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","engines":{"node":">=4"},"bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"babel-eslint":"^7.0.0","eslint":"^3.6.0","eslint-config-babel":"^2.0.1","eslint-plugin-babel":"^3.3.0","eslint-plugin-flowtype":"^2.4.0","espree":"^3.3.1","mocha":"^3.0.0"},"gitHead":"931d8a91d634b48f3b26f1f506da68435dbe955e","_id":"babel-eslint@7.1.0","_shasum":"d506a5174ba224e25a2d17e128e2ba8987139ddc","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.8.1","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"d506a5174ba224e25a2d17e128e2ba8987139ddc","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-7.1.0.tgz"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/babel-eslint-7.1.0.tgz_1477507046520_0.19844479975290596"},"directories":{}},"7.1.1":{"name":"babel-eslint","version":"7.1.1","description":"Custom parser for ESLint","main":"index.js","files":["index.js","babylon-to-espree"],"repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-code-frame":"^6.16.0","babel-traverse":"^6.15.0","babel-types":"^6.15.0","babylon":"^6.13.0","lodash.pickby":"^4.6.0"},"scripts":{"bootstrap":"git submodule update --init && cd eslint && npm install","eslint":"cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js","test":"npm run lint && npm run test-only","test-only":"mocha","lint":"eslint index.js babylon-to-espree test","fix":"eslint index.js babylon-to-espree test --fix","preversion":"npm test","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","engines":{"node":">=4"},"bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"babel-eslint":"^7.0.0","eslint":"^3.9.1","eslint-config-babel":"^2.0.1","eslint-plugin-babel":"^4.0.0","eslint-plugin-flowtype":"^2.4.0","espree":"^3.3.1","mocha":"^3.0.0"},"gitHead":"bc482f4479e73f4609d97dc9c7abda848d7ccc63","_id":"babel-eslint@7.1.1","_shasum":"8a6a884f085aa7060af69cfc77341c2f99370fb2","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"8a6a884f085aa7060af69cfc77341c2f99370fb2","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-7.1.1.tgz"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/babel-eslint-7.1.1.tgz_1479423577580_0.5264919744804502"},"directories":{}},"7.2.0":{"name":"babel-eslint","version":"7.2.0","description":"Custom parser for ESLint","main":"index.js","files":["index.js","babylon-to-espree"],"repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-code-frame":"^6.22.0","babel-traverse":"^6.23.1","babel-types":"^6.23.0","babylon":"^6.16.1","lodash":"^4.17.4"},"scripts":{"test":"npm run lint && npm run test-only","test-only":"mocha","lint":"eslint index.js babylon-to-espree test","fix":"eslint index.js babylon-to-espree test --fix","preversion":"npm test","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","engines":{"node":">=4"},"bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"babel-eslint":"^7.0.0","eslint":"^3.18.0","eslint-config-babel":"^6.0.0","eslint-plugin-flowtype":"^2.30.3","espree":"^3.4.0","mocha":"^3.0.0"},"gitHead":"4db4db54d18d5d2833ed9a02c5e4cde20474e995","_id":"babel-eslint@7.2.0","_shasum":"8941514b9dead06f0df71b29d5d5b193a92ee0ae","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"8941514b9dead06f0df71b29d5d5b193a92ee0ae","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-7.2.0.tgz"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/babel-eslint-7.2.0.tgz_1490046813444_0.6891424732748419"},"directories":{}},"7.2.1":{"name":"babel-eslint","version":"7.2.1","description":"Custom parser for ESLint","main":"index.js","files":["index.js","babylon-to-espree"],"repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-code-frame":"^6.22.0","babel-traverse":"^6.23.1","babel-types":"^6.23.0","babylon":"^6.16.1"},"scripts":{"test":"npm run lint && npm run test-only","test-only":"mocha","lint":"eslint index.js babylon-to-espree test","fix":"eslint index.js babylon-to-espree test --fix","preversion":"npm test","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","engines":{"node":">=4"},"bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"babel-eslint":"^7.0.0","eslint":"^3.18.0","eslint-config-babel":"^6.0.0","eslint-plugin-flowtype":"^2.30.3","espree":"^3.4.0","mocha":"^3.0.0"},"gitHead":"3cda62ee066c741b766526155dcdb98db1a2a2d5","_id":"babel-eslint@7.2.1","_shasum":"079422eb73ba811e3ca0865ce87af29327f8c52f","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"079422eb73ba811e3ca0865ce87af29327f8c52f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-7.2.1.tgz"},"maintainers":[{"name":"danez","email":"daniel@tschinder.de"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"sebmck","email":"sebmck@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/babel-eslint-7.2.1.tgz_1490292384318_0.6182467951439321"},"directories":{}},"7.2.2":{"name":"babel-eslint","version":"7.2.2","description":"Custom parser for ESLint","main":"index.js","files":["index.js","babylon-to-espree"],"repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-code-frame":"^6.22.0","babel-traverse":"^6.23.1","babel-types":"^6.23.0","babylon":"^6.16.1"},"scripts":{"test":"npm run lint && npm run test-only","test-only":"mocha","lint":"eslint index.js babylon-to-espree test","fix":"eslint index.js babylon-to-espree test --fix","preversion":"npm test","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","engines":{"node":">=4"},"bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"babel-eslint":"^7.0.0","dedent":"^0.7.0","eslint":"^3.18.0","eslint-config-babel":"^6.0.0","eslint-plugin-flowtype":"^2.30.3","espree":"^3.4.0","mocha":"^3.0.0"},"gitHead":"f59d2009652e14acf1231a1268a8324cf046514e","_id":"babel-eslint@7.2.2","_shasum":"0da2cbe6554fd0fb069f19674f2db2f9c59270ff","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"0da2cbe6554fd0fb069f19674f2db2f9c59270ff","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-7.2.2.tgz"},"maintainers":[{"name":"danez","email":"daniel@tschinder.de"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"sebmck","email":"sebmck@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/babel-eslint-7.2.2.tgz_1492013238412_0.9115432433318347"},"directories":{}},"7.2.3":{"name":"babel-eslint","version":"7.2.3","description":"Custom parser for ESLint","main":"index.js","files":["index.js","babylon-to-espree"],"repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-code-frame":"^6.22.0","babel-traverse":"^6.23.1","babel-types":"^6.23.0","babylon":"^6.17.0"},"scripts":{"test":"npm run lint && npm run test-only","test-only":"mocha","lint":"eslint index.js babylon-to-espree test","fix":"eslint index.js babylon-to-espree test --fix","preversion":"npm test","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","engines":{"node":">=4"},"bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"babel-eslint":"^7.0.0","dedent":"^0.7.0","eslint":"^3.18.0","eslint-config-babel":"^6.0.0","eslint-plugin-flowtype":"^2.30.3","espree":"^3.4.0","mocha":"^3.0.0"},"gitHead":"94bb5a1d36c5624fb612de2dd704ffa586d38845","_id":"babel-eslint@7.2.3","_shasum":"b2fe2d80126470f5c19442dc757253a897710827","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.0","_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"dist":{"shasum":"b2fe2d80126470f5c19442dc757253a897710827","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-7.2.3.tgz"},"maintainers":[{"name":"danez","email":"daniel@tschinder.de"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"sebmck","email":"sebmck@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/babel-eslint-7.2.3.tgz_1492809267094_0.871210214914754"},"directories":{}},"8.0.0-alpha.12":{"name":"babel-eslint","version":"8.0.0-alpha.12","description":"Custom parser for ESLint","main":"index.js","files":["index.js","babylon-to-espree"],"repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-code-frame":"7.0.0-alpha.12","babel-traverse":"7.0.0-alpha.12","babel-types":"7.0.0-alpha.12","babylon":"7.0.0-beta.13"},"scripts":{"test":"npm run lint && npm run test-only","test-only":"mocha","lint":"eslint index.js babylon-to-espree test","fix":"eslint index.js babylon-to-espree test --fix","preversion":"npm test","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","engines":{"node":">=4"},"bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"babel-eslint":"^7.0.0","dedent":"^0.7.0","eslint":"^3.18.0","eslint-config-babel":"^6.0.0","eslint-plugin-flowtype":"^2.30.3","espree":"^3.4.0","mocha":"^3.0.0"},"gitHead":"945f00a2e03b5a4cf2967b2cc0fa20dfc9856192","_id":"babel-eslint@8.0.0-alpha.12","_shasum":"f1adeafec401f1481de5df5926f1f5ac97eecad3","_from":".","_npmVersion":"4.6.1","_nodeVersion":"6.9.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"f1adeafec401f1481de5df5926f1f5ac97eecad3","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-8.0.0-alpha.12.tgz"},"maintainers":[{"email":"sebmck@gmail.com","name":"sebmck"},{"email":"loganfsmyth@gmail.com","name":"loganfsmyth"},{"email":"daniel@tschinder.de","name":"danez"},{"email":"hi@henryzoo.com","name":"hzoo"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/babel-eslint-8.0.0-alpha.12.tgz_1497646620974_0.3487641920801252"},"directories":{}},"8.0.0-alpha.13":{"name":"babel-eslint","version":"8.0.0-alpha.13","description":"Custom parser for ESLint","main":"index.js","files":["index.js","babylon-to-espree"],"repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-code-frame":"7.0.0-alpha.12","babel-traverse":"7.0.0-alpha.12","babel-types":"7.0.0-alpha.12","babylon":"7.0.0-beta.14"},"scripts":{"test":"npm run lint && npm run test-only","test-only":"mocha","lint":"eslint index.js babylon-to-espree test","fix":"eslint index.js babylon-to-espree test --fix","precommit":"lint-staged","preversion":"npm test","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","engines":{"node":">=4"},"bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"babel-eslint":"^7.0.0","dedent":"^0.7.0","eslint":"^3.18.0","eslint-config-babel":"^7.0.1","eslint-plugin-flowtype":"^2.30.3","eslint-plugin-prettier":"^2.1.2","espree":"^3.4.0","husky":"^0.13.2","lint-staged":"^3.6.1","mocha":"^3.0.0","prettier":"1.4.4"},"lint-staged":{"*.js":["eslint --format=codeframe --fix","git add"]},"gitHead":"8e3e088cf2583417cf0bcc3268088e348cbc533f","_id":"babel-eslint@8.0.0-alpha.13","_shasum":"47c6f04d4c7ef5084f5a849ffe5a8a48f17db7df","_from":".","_npmVersion":"4.6.1","_nodeVersion":"6.9.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"47c6f04d4c7ef5084f5a849ffe5a8a48f17db7df","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-8.0.0-alpha.13.tgz"},"maintainers":[{"email":"sebmck@gmail.com","name":"sebmck"},{"email":"loganfsmyth@gmail.com","name":"loganfsmyth"},{"email":"daniel@tschinder.de","name":"danez"},{"email":"hi@henryzoo.com","name":"hzoo"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/babel-eslint-8.0.0-alpha.13.tgz_1497825232293_0.28221250558272004"},"directories":{}},"8.0.0-alpha.15":{"name":"babel-eslint","version":"8.0.0-alpha.15","description":"Custom parser for ESLint","main":"index.js","files":["index.js","babylon-to-espree"],"repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-code-frame":"7.0.0-alpha.15","babel-traverse":"7.0.0-alpha.15","babel-types":"7.0.0-alpha.15","babylon":"7.0.0-beta.16"},"scripts":{"test":"npm run lint && npm run test-only","test-only":"mocha","lint":"eslint index.js babylon-to-espree test","fix":"eslint index.js babylon-to-espree test --fix","precommit":"lint-staged","preversion":"npm test","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","engines":{"node":">=4"},"bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"babel-eslint":"^8.0.0-alpha.13","dedent":"^0.7.0","eslint":"^4.1.0","eslint-config-babel":"^7.0.1","eslint-plugin-flowtype":"^2.30.3","eslint-plugin-prettier":"^2.1.2","espree":"^3.4.0","husky":"^0.14.0","lint-staged":"^4.0.0","mocha":"^3.0.0","prettier":"^1.4.4"},"lint-staged":{"*.js":["eslint --format=codeframe --fix","git add"]},"gitHead":"57c133ef7f2774e10e90262c9f7c3324ff1e4545","_id":"babel-eslint@8.0.0-alpha.15","_shasum":"7cf5c1c81eaf40662d40aef51b0b488dfd199b2d","_from":".","_npmVersion":"4.6.1","_nodeVersion":"6.9.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"7cf5c1c81eaf40662d40aef51b0b488dfd199b2d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-8.0.0-alpha.15.tgz"},"maintainers":[{"email":"sebmck@gmail.com","name":"sebmck"},{"email":"loganfsmyth@gmail.com","name":"loganfsmyth"},{"email":"daniel@tschinder.de","name":"danez"},{"email":"hi@henryzoo.com","name":"hzoo"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/babel-eslint-8.0.0-alpha.15.tgz_1499965304415_0.9216793393716216"},"directories":{}},"8.0.0-alpha.17":{"name":"babel-eslint","version":"8.0.0-alpha.17","description":"Custom parser for ESLint","main":"index.js","files":["index.js","babylon-to-espree"],"repository":{"type":"git","url":"git+https://github.com/babel/babel-eslint.git"},"dependencies":{"babel-code-frame":"7.0.0-alpha.17","babel-traverse":"7.0.0-alpha.17","babel-types":"7.0.0-alpha.17","babylon":"7.0.0-beta.18"},"scripts":{"test":"npm run lint && npm run test-only","test-only":"mocha","lint":"eslint index.js babylon-to-espree test","fix":"eslint index.js babylon-to-espree test --fix","precommit":"lint-staged","preversion":"npm test","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'"},"author":{"name":"Sebastian McKenzie","email":"sebmck@gmail.com"},"license":"MIT","engines":{"node":">=4"},"bugs":{"url":"https://github.com/babel/babel-eslint/issues"},"homepage":"https://github.com/babel/babel-eslint","devDependencies":{"babel-eslint":"^8.0.0-alpha.13","dedent":"^0.7.0","eslint":"^4.1.0","eslint-config-babel":"^7.0.1","eslint-plugin-flowtype":"^2.30.3","eslint-plugin-prettier":"^2.1.2","espree":"^3.4.0","husky":"^0.14.0","lint-staged":"^4.0.0","mocha":"^3.0.0","prettier":"^1.4.4"},"lint-staged":{"*.js":["eslint --format=codeframe --fix","git add"]},"gitHead":"25bd2084b5695d8fef0f205ebba75954bd773f05","_id":"babel-eslint@8.0.0-alpha.17","_shasum":"ae3955d96f5ec8d895af5a155e8f450b80db9593","_from":".","_npmVersion":"4.6.1","_nodeVersion":"6.9.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"ae3955d96f5ec8d895af5a155e8f450b80db9593","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-eslint/-/babel-eslint-8.0.0-alpha.17.tgz"},"maintainers":[{"email":"monastic.panic@gmail.com","name":"monastic.panic"},{"email":"sebmck@gmail.com","name":"sebmck"},{"email":"loganfsmyth@gmail.com","name":"loganfsmyth"},{"email":"daniel@tschinder.de","name":"danez"},{"email":"hi@henryzoo.com","name":"hzoo"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/babel-eslint-8.0.0-alpha.17.tgz_1501100378010_0.2601701549720019"},"directories":{}}},"name":"babel-eslint","time":{"modified":"2017-07-26T20:19:38.135Z","created":"2015-02-27T05:30:47.161Z","1.0.0":"2015-02-27T05:30:47.161Z","1.0.1":"2015-02-27T10:22:52.391Z","1.0.2":"2015-02-27T10:41:05.311Z","1.0.3":"2015-02-27T10:43:37.909Z","1.0.4":"2015-02-27T11:40:32.309Z","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","1.0.10":"2015-02-28T05:34:15.613Z","1.0.11":"2015-02-28T06:08:23.218Z","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","2.0.0":"2015-03-10T13:41:41.478Z","2.0.2":"2015-03-16T01:50:34.042Z","3.0.0":"2015-04-14T00:12:18.038Z","3.0.1":"2015-04-14T01:06:16.907Z","3.1.0":"2015-05-06T16:19:56.743Z","3.1.1":"2015-05-07T12:49:13.282Z","3.1.2":"2015-05-14T20:39:22.729Z","3.1.3":"2015-05-15T19:56:21.294Z","3.1.4":"2015-05-16T22:17:20.793Z","3.1.5":"2015-05-17T21:15:32.117Z","3.1.6":"2015-05-20T23:11:18.344Z","3.1.7":"2015-05-21T10:52:27.288Z","3.1.8":"2015-05-23T01:05:15.687Z","3.1.9":"2015-05-25T04:48:31.218Z","3.1.10":"2015-06-02T01:20:35.849Z","3.1.11":"2015-06-03T21:13:24.289Z","3.1.12":"2015-06-05T09:00:33.786Z","3.1.13":"2015-06-05T09:32:49.412Z","3.1.14":"2015-06-06T20:56:55.883Z","3.1.15":"2015-06-09T19:02:55.442Z","3.1.16":"2015-06-17T11:20:37.286Z","3.1.17":"2015-06-18T00:34:55.971Z","3.1.18":"2015-06-23T22:35:05.423Z","3.1.19":"2015-06-26T14:07:17.562Z","3.1.20":"2015-06-29T17:52:49.590Z","3.1.21":"2015-07-06T02:09:58.489Z","3.1.22":"2015-07-06T13:40:17.610Z","3.1.23":"2015-07-06T14:41:12.031Z","3.1.24":"2015-07-21T21:34:42.133Z","3.1.25":"2015-07-22T00:19:52.453Z","3.1.26":"2015-07-22T05:36:45.470Z","3.1.27":"2015-07-25T14:54:23.606Z","4.0.0":"2015-07-25T15:09:33.097Z","4.0.1":"2015-07-27T01:21:36.345Z","4.0.2":"2015-07-27T01:45:05.482Z","3.1.28":"2015-07-27T01:49:22.719Z","4.0.3":"2015-07-27T01:58:52.388Z","3.1.29":"2015-07-27T01:59:57.208Z","4.0.4":"2015-07-27T03:04:43.210Z","3.1.30":"2015-07-27T03:05:28.142Z","4.0.5":"2015-07-27T03:20:33.327Z","4.0.6":"2015-08-15T13:27:09.247Z","4.0.7":"2015-08-15T23:52:40.039Z","4.0.8":"2015-08-16T20:13:58.862Z","4.0.9":"2015-08-17T02:35:04.078Z","4.0.10":"2015-08-17T02:50:58.234Z","4.1.0":"2015-08-25T23:17:14.526Z","4.1.1":"2015-08-31T14:25:09.520Z","4.1.2":"2015-09-14T18:48:28.648Z","4.1.3":"2015-09-17T13:43:35.350Z","4.1.4":"2015-11-04T14:51:23.152Z","4.1.5":"2015-11-10T02:18:05.624Z","4.1.6":"2015-11-24T02:21:04.715Z","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","5.0.0-beta4":"2015-11-29T13:24:46.122Z","5.0.0-beta5":"2015-12-09T13:41:15.516Z","5.0.0-beta6":"2015-12-09T13:42:16.856Z","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","4.1.7":"2016-02-01T19:59:06.712Z","5.0.0-beta10":"2016-02-02T04:06:22.439Z","4.1.8":"2016-02-02T04:15:02.383Z","5.0.0":"2016-02-16T23:07:58.027Z","6.0.0-beta.1":"2016-03-02T03:39:47.515Z","6.0.0-beta.2":"2016-03-07T17:34:57.372Z","6.0.0-beta.3":"2016-03-08T04:13:59.934Z","6.0.0-beta.4":"2016-03-08T16:04:32.681Z","6.0.0-beta.5":"2016-03-08T16:07:07.142Z","6.0.0-beta.6":"2016-03-14T12:37:46.905Z","5.0.1":"2016-03-26T03:45:44.562Z","6.0.0":"2016-03-26T03:51:47.960Z","5.0.2":"2016-03-30T11:41:09.994Z","5.0.3":"2016-03-31T20:52:07.769Z","6.0.1":"2016-03-31T20:52:44.386Z","6.0.2":"2016-03-31T23:14:30.396Z","5.0.4":"2016-03-31T23:17:25.750Z","6.0.3":"2016-04-20T03:41:01.323Z","6.0.4":"2016-04-25T21:55:48.748Z","6.0.5":"2016-06-20T21:12:38.767Z","6.1.0":"2016-06-22T20:37:22.381Z","6.1.1":"2016-07-08T18:23:44.141Z","6.1.2":"2016-07-09T15:40:42.228Z","7.0.0":"2016-09-27T16:35:52.795Z","7.1.0":"2016-10-26T18:37:28.811Z","7.1.1":"2016-11-17T22:59:39.316Z","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","7.2.3":"2017-04-21T21:14:27.780Z","8.0.0-alpha.12":"2017-06-16T20:57:01.098Z","8.0.0-alpha.13":"2017-06-18T22:33:54.619Z","8.0.0-alpha.15":"2017-07-13T17:01:44.649Z","8.0.0-alpha.17":"2017-07-26T20:19:38.135Z"},"readmeFilename":"README.md","homepage":"https://github.com/babel/babel-eslint"}