{"maintainers":[{"email":"ljharb@gmail.com","name":"ljharb"},{"email":"jfm.engels@gmail.com","name":"jfmengels"},{"email":"me@benmosher.com","name":"benmosher"}],"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"dist-tags":{"latest":"2.7.0","next":"2.0.0-beta.1"},"author":{"name":"Ben Mosher","email":"me@benmosher.com"},"description":"Import with sanity.","readme":"# eslint-plugin-import\n\n[![build status](https://travis-ci.org/benmosher/eslint-plugin-import.svg?branch=master)](https://travis-ci.org/benmosher/eslint-plugin-import)\n[![Coverage Status](https://coveralls.io/repos/github/benmosher/eslint-plugin-import/badge.svg?branch=master)](https://coveralls.io/github/benmosher/eslint-plugin-import?branch=master)\n[![win32 build status](https://ci.appveyor.com/api/projects/status/3mw2fifalmjlqf56/branch/master?svg=true)](https://ci.appveyor.com/project/benmosher/eslint-plugin-import/branch/master)\n[![npm](https://img.shields.io/npm/v/eslint-plugin-import.svg)](https://www.npmjs.com/package/eslint-plugin-import)\n[![npm downloads](https://img.shields.io/npm/dt/eslint-plugin-import.svg?maxAge=2592000)](http://www.npmtrends.com/eslint-plugin-import)\n\nThis plugin intends to support linting of ES2015+ (ES6+) import/export syntax, and prevent issues with misspelling of file paths and import names. All the goodness that the ES2015+ static module syntax intends to provide, marked up in your editor.\n\n**IF YOU ARE USING THIS WITH SUBLIME**: see the [bottom section](#sublimelinter-eslint) for important info.\n\n## Rules\n\n**Static analysis:**\n\n* Ensure imports point to a file/module that can be resolved. ([`no-unresolved`])\n* Ensure named imports correspond to a named export in the remote file. ([`named`])\n* Ensure a default export is present, given a default import. ([`default`])\n* Ensure imported namespaces contain dereferenced properties as they are dereferenced. ([`namespace`])\n* Restrict which files can be imported in a given folder ([`no-restricted-paths`])\n* Forbid import of modules using absolute paths ([`no-absolute-path`])\n* Forbid `require()` calls with expressions ([`no-dynamic-require`])\n* Prevent importing the submodules of other modules ([`no-internal-modules`])\n* Forbid Webpack loader syntax in imports ([`no-webpack-loader-syntax`])\n\n[`no-unresolved`]: ./docs/rules/no-unresolved.md\n[`named`]: ./docs/rules/named.md\n[`default`]: ./docs/rules/default.md\n[`namespace`]: ./docs/rules/namespace.md\n[`no-restricted-paths`]: ./docs/rules/no-restricted-paths.md\n[`no-absolute-path`]: ./docs/rules/no-absolute-path.md\n[`no-dynamic-require`]: ./docs/rules/no-dynamic-require.md\n[`no-internal-modules`]: ./docs/rules/no-internal-modules.md\n[`no-webpack-loader-syntax`]: ./docs/rules/no-webpack-loader-syntax.md\n\n**Helpful warnings:**\n\n\n* Report any invalid exports, i.e. re-export of the same name ([`export`])\n* Report use of exported name as identifier of default export ([`no-named-as-default`])\n* Report use of exported name as property of default export ([`no-named-as-default-member`])\n* Report imported names marked with `@deprecated` documentation tag ([`no-deprecated`])\n* Forbid the use of extraneous packages ([`no-extraneous-dependencies`])\n* Forbid the use of mutable exports with `var` or `let`. ([`no-mutable-exports`])\n\n[`export`]: ./docs/rules/export.md\n[`no-named-as-default`]: ./docs/rules/no-named-as-default.md\n[`no-named-as-default-member`]: ./docs/rules/no-named-as-default-member.md\n[`no-deprecated`]: ./docs/rules/no-deprecated.md\n[`no-extraneous-dependencies`]: ./docs/rules/no-extraneous-dependencies.md\n[`no-mutable-exports`]: ./docs/rules/no-mutable-exports.md\n\n**Module systems:**\n\n* Report potentially ambiguous parse goal (`script` vs. `module`) ([`unambiguous`])\n* Report CommonJS `require` calls and `module.exports` or `exports.*`. ([`no-commonjs`])\n* Report AMD `require` and `define` calls. ([`no-amd`])\n* No Node.js builtin modules. ([`no-nodejs-modules`])\n\n[`unambiguous`]: ./docs/rules/unambiguous.md\n[`no-commonjs`]: ./docs/rules/no-commonjs.md\n[`no-amd`]: ./docs/rules/no-amd.md\n[`no-nodejs-modules`]: ./docs/rules/no-nodejs-modules.md\n\n\n**Style guide:**\n\n* Ensure all imports appear before other statements ([`first`])\n* Report repeated import of the same module in multiple places ([`no-duplicates`])\n* Report namespace imports ([`no-namespace`])\n* Ensure consistent use of file extension within the import path ([`extensions`])\n* Enforce a convention in module import order ([`order`])\n* Enforce a newline after import statements ([`newline-after-import`])\n* Prefer a default export if module exports a single name ([`prefer-default-export`])\n* Limit the maximum number of dependencies a module can have ([`max-dependencies`])\n* Forbid unassigned imports ([`no-unassigned-import`])\n* Forbid named default exports ([`no-named-default`])\n* Forbid anonymous values as default exports ([`no-anonymous-default-export`])\n\n[`first`]: ./docs/rules/first.md\n[`no-duplicates`]: ./docs/rules/no-duplicates.md\n[`no-namespace`]: ./docs/rules/no-namespace.md\n[`extensions`]: ./docs/rules/extensions.md\n[`order`]: ./docs/rules/order.md\n[`newline-after-import`]: ./docs/rules/newline-after-import.md\n[`prefer-default-export`]: ./docs/rules/prefer-default-export.md\n[`max-dependencies`]: ./docs/rules/max-dependencies.md\n[`no-unassigned-import`]: ./docs/rules/no-unassigned-import.md\n[`no-named-default`]: ./docs/rules/no-named-default.md\n[`no-anonymous-default-export`]: ./docs/rules/no-anonymous-default-export.md\n\n## Installation\n\n```sh\nnpm install eslint-plugin-import -g\n```\n\nor if you manage ESLint as a dev dependency:\n\n```sh\n# inside your project's working tree\nnpm install eslint-plugin-import --save-dev\n```\n\nAll rules are off by default. However, you may configure them manually\nin your `.eslintrc.(yml|json|js)`, or extend one of the canned configs:\n\n```yaml\n---\nextends:\n  - eslint:recommended\n  - plugin:import/errors\n  - plugin:import/warnings\n\n# or configure manually:\nplugins:\n  - import\n\nrules:\n  import/no-unresolved: [2, {commonjs: true, amd: true}]\n  import/named: 2\n  import/namespace: 2\n  import/default: 2\n  import/export: 2\n  # etc...\n```\n\n# Resolvers\n\nWith the advent of module bundlers and the current state of modules and module\nsyntax specs, it's not always obvious where `import x from 'module'` should look\nto find the file behind `module`.\n\nUp through v0.10ish, this plugin has directly used substack's [`resolve`] plugin,\nwhich implements Node's import behavior. This works pretty well in most cases.\n\nHowever, Webpack allows a number of things in import module source strings that\nNode does not, such as loaders (`import 'file!./whatever'`) and a number of\naliasing schemes, such as [`externals`]: mapping a module id to a global name at\nruntime (allowing some modules to be included more traditionally via script tags).\n\nIn the interest of supporting both of these, v0.11 introduces resolvers.\n\nCurrently [Node] and [Webpack] resolution have been implemented, but the\nresolvers are just npm packages, so [third party packages are supported](https://github.com/benmosher/eslint-plugin-import/wiki/Resolvers) (and encouraged!).\n\nYou can reference resolvers in several ways(in order of precedence):\n\n- as a conventional `eslint-import-resolver` name, like `eslint-import-resolver-foo`:\n\n```yaml\n# .eslintrc.yml\nsettings:\n  # uses 'eslint-import-resolver-foo':\n  import/resolver: foo\n```\n```js\n// .eslintrc.js\nmodule.exports = {\n  settings: {\n    'import/resolver': {\n      foo: { someConfig: value }\n    }\n  }\n}\n```\n\n- with a full npm module name, like `my-awesome-npm-module`:\n\n```yaml\n# .eslintrc.yml\nsettings:\n  import/resolver: 'my-awesome-npm-module'\n```\n```js\n// .eslintrc.js\nmodule.exports = {\n  settings: {\n    'import/resolver': {\n      'my-awesome-npm-module': { someConfig: value }\n    }\n  }\n}\n```\n\n- with a filesystem path to resolver, defined in this example as a `computed property` name:\n\n```js\n// .eslintrc.js\nmodule.exports = {\n  settings: {\n    'import/resolver': {\n      [path.resolve('../../../my-resolver')]: { someConfig: value }\n    }\n  }\n}\n```\n\nRelative paths will be resolved relative to the source's nearest `package.json` or\nthe process's current working directory if no `package.json` is found.\n\n\n\nIf you are interesting in writing a resolver, see the [spec](./resolvers/README.md) for more details.\n\n[`resolve`]: https://www.npmjs.com/package/resolve\n[`externals`]: http://webpack.github.io/docs/library-and-externals.html\n\n[Node]: https://www.npmjs.com/package/eslint-import-resolver-node\n[Webpack]: https://www.npmjs.com/package/eslint-import-resolver-webpack\n\n# Settings\n\nYou may set the following settings in your `.eslintrc`:\n\n#### `import/extensions`\n\nA list of file extensions that will be parsed as modules and inspected for\n`export`s.\n\nThis defaults to `['.js']`, unless you are using the `react` shared config,\nin which case it is specified as `['.js', '.jsx']`.\n\nNote that this is different from (and likely a subset of) any `import/resolver`\nextensions settings, which may include `.json`, `.coffee`, etc. which will still\nfactor into the `no-unresolved` rule.\n\nAlso, the following `import/ignore` patterns will overrule this list.\n\n#### `import/ignore`\n\nA list of regex strings that, if matched by a path, will\nnot report the matching module if no `export`s are found.\nIn practice, this means rules other than [`no-unresolved`](./docs/rules/no-unresolved.md#ignore) will not report on any\n`import`s with (absolute filesystem) paths matching this pattern.\n\n`no-unresolved` has its own [`ignore`](./docs/rules/no-unresolved.md#ignore) setting.\n\n```yaml\nsettings:\n  import/ignore:\n    - \\.coffee$          # fraught with parse errors\n    - \\.(scss|less|css)$ # can't parse unprocessed CSS modules, either\n```\n\n#### `import/core-modules`\n\nAn array of additional modules to consider as \"core\" modules--modules that should\nbe considered resolved but have no path on the filesystem. Your resolver may\nalready define some of these (for example, the Node resolver knows about `fs` and\n`path`), so you need not redefine those.\n\nFor example, Electron exposes an `electron` module:\n\n```js\nimport 'electron'  // without extra config, will be flagged as unresolved!\n```\n\nthat would otherwise be unresolved. To avoid this, you may provide `electron` as a\ncore module:\n\n```yaml\n# .eslintrc.yml\nsettings:\n  import/core-modules: [ electron ]\n```\n\nIn Electron's specific case, there is a shared config named `electron`\nthat specifies this for you.\n\nContribution of more such shared configs for other platforms are welcome!\n\n#### `import/external-module-folders`\n\nAn array of folders. Resolved modules only from those folders will be considered as \"external\". By default - `[\"node_modules\"]`. Makes sense if you have configured your path or webpack to handle your internal paths differently and want to considered modules from some folders, for example `bower_components` or `jspm_modules`, as \"external\".\n\n#### `import/parsers`\n\nA map from parsers to file extension arrays. If a file extension is matched, the\ndependency parser will require and use the map key as the parser instead of the\nconfigured ESLint parser. This is useful if you're inter-op-ing with TypeScript\ndirectly using Webpack, for example:\n\n```yaml\n# .eslintrc.yml\nsettings:\n  import/parsers:\n    typescript-eslint-parser: [ .ts, .tsx ]\n```\n\nIn this case, [`typescript-eslint-parser`](https://github.com/eslint/typescript-eslint-parser) must be installed and require-able from\nthe running `eslint` module's location (i.e., install it as a peer of ESLint).\n\nThis is currently only tested with `typescript-eslint-parser` but should theoretically\nwork with any moderately ESTree-compliant parser.\n\nIt's difficult to say how well various plugin features will be supported, too,\ndepending on how far down the rabbit hole goes. Submit an issue if you find strange\nbehavior beyond here, but steel your heart against the likely outcome of closing\nwith `wontfix`.\n\n\n#### `import/resolver`\n\nSee [resolvers](#resolvers).\n\n#### `import/cache`\n\nSettings for cache behavior. Memoization is used at various levels to avoid the copious amount of `fs.statSync`/module parse calls required to correctly report errors.\n\nFor normal `eslint` console runs, the cache lifetime is irrelevant, as we can strongly assume that files should not be changing during the lifetime of the linter process (and thus, the cache in memory)\n\nFor long-lasting processes, like [`eslint_d`] or [`eslint-loader`], however, it's important that there be some notion of staleness.\n\nIf you never use [`eslint_d`] or [`eslint-loader`], you may set the cache lifetime to `Infinity` and everything should be fine:\n\n```yaml\n# .eslintrc.yml\nsettings:\n  import/cache:\n    lifetime: ∞  # or Infinity\n```\n\nOtherwise, set some integer, and cache entries will be evicted after that many seconds have elapsed:\n\n```yaml\n# .eslintrc.yml\nsettings:\n  import/cache:\n    lifetime: 5  # 30 is the default\n```\n\n[`eslint_d`]: https://www.npmjs.com/package/eslint_d\n[`eslint-loader`]: https://www.npmjs.com/package/eslint-loader\n\n## SublimeLinter-eslint\n\nSublimeLinter-eslint introduced a change to support `.eslintignore` files\nwhich altered the way file paths are passed to ESLint when linting during editing.\nThis change sends a relative path instead of the absolute path to the file (as ESLint\nnormally provides), which can make it impossible for this plugin to resolve dependencies\non the filesystem.\n\nThis workaround should no longer be necessary with the release of ESLint 2.0, when\n`.eslintignore` will be updated to work more like a `.gitignore`, which should\nsupport proper ignoring of absolute paths via `--stdin-filename`.\n\nIn the meantime, see [roadhump/SublimeLinter-eslint#58](https://github.com/roadhump/SublimeLinter-eslint/issues/58)\nfor more details and discussion, but essentially, you may find you need to add the following\n`SublimeLinter` config to your Sublime project file:\n\n```json\n{\n    \"folders\":\n    [\n        {\n            \"path\": \"code\"\n        }\n    ],\n    \"SublimeLinter\":\n    {\n        \"linters\":\n        {\n            \"eslint\":\n            {\n                \"chdir\": \"${project}/code\"\n            }\n        }\n    }\n}\n```\n\nNote that `${project}/code` matches the `code` provided at `folders[0].path`.\n\nThe purpose of the `chdir` setting, in this case, is to set the working directory\nfrom which ESLint is executed to be the same as the directory on which SublimeLinter-eslint\nbases the relative path it provides.\n\nSee the SublimeLinter docs on [`chdir`](http://www.sublimelinter.com/en/latest/linter_settings.html#chdir)\nfor more information, in case this does not work with your project.\n\nIf you are not using `.eslintignore`, or don't have a Sublime project file, you can also\ndo the following via a `.sublimelinterrc` file in some ancestor directory of your\ncode:\n\n```json\n{\n  \"linters\": {\n    \"eslint\": {\n      \"args\": [\"--stdin-filename\", \"@\"]\n    }\n  }\n}\n```\n\nI also found that I needed to set `rc_search_limit` to `null`, which removes the file\nhierarchy search limit when looking up the directory tree for `.sublimelinterrc`:\n\nIn Package Settings / SublimeLinter / User Settings:\n```json\n{\n  \"user\": {\n    \"rc_search_limit\": null\n  }\n}\n```\n\nI believe this defaults to `3`, so you may not need to alter it depending on your\nproject folder max depth.\n","repository":{"type":"git","url":"git+https://github.com/benmosher/eslint-plugin-import.git"},"users":{"piecioshka":true,"riku":true,"preco21":true,"jaxelson":true,"ugarz":true,"wangnan0610":true,"manny":true,"cbetancourt":true,"mswanson1524":true,"jpshankle":true,"langri-sha":true,"vannizer":true,"guzgarcia":true,"abuelwafa":true,"princetoad":true,"ungurys":true,"finnhvman":true,"joris-van-der-wel":true,"leonardorb":true,"ifeature":true,"phritolay":true,"ridermansb":true,"n0f3":true,"modood":true,"lore-w":true,"jaymcoder":true,"isoceles":true,"serge-nikitin":true,"alexxnica":true,"mtdalpizzol":true,"morewry":true,"andrewbanks10":true,"bsara":true,"djviolin":true,"abhijitkalta":true},"bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"license":"MIT","versions":{"0.3.0":{"name":"eslint-plugin-import","version":"0.3.0","description":"Import with sanity.","main":"index.js","directories":{"test":"tests"},"scripts":{"test":"mocha --recursive tests/"},"repository":{"type":"git","url":"https://github.com/benmosher/eslint-plugin-import"},"keywords":["eslint","eslintplugin","es6","jsnext"],"author":{"name":"Ben Mosher","url":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"chai":"^2.1.2","eslint":"^0.17.1","eslint-tester":"^0.6.0","mocha":"^2.2.1","object-assign":"^2.0.0"},"peerDependencies":{"eslint":">=0.16.0"},"dependencies":{"array.prototype.find":"^1.0.0","es6-set":"^0.1.1","espree":"^1.12.0","resolve":"^1.1.6"},"gitHead":"e726455dbc18c1ff9b0482e7cf9904e2e103eaef","_id":"eslint-plugin-import@0.3.0","_shasum":"3748994869fada0b1bf2919ab50487409d540a88","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.10.32","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"dist":{"shasum":"3748994869fada0b1bf2919ab50487409d540a88","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-0.3.0.tgz"}},"0.3.2":{"name":"eslint-plugin-import","version":"0.3.2","description":"Import with sanity.","main":"index.js","directories":{"test":"tests"},"scripts":{"test":"mocha --recursive tests/"},"repository":{"type":"git","url":"https://github.com/benmosher/eslint-plugin-import"},"keywords":["eslint","eslintplugin","es6","jsnext"],"author":{"name":"Ben Mosher","url":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"chai":"^2.1.2","eslint":"^0.17.1","eslint-tester":"^0.6.0","mocha":"^2.2.1","object-assign":"^2.0.0"},"peerDependencies":{"eslint":">=0.16.0"},"dependencies":{"array.prototype.find":"^1.0.0","es6-map":"^0.1.1","es6-set":"^0.1.1","espree":"^1.12.0","resolve":"^1.1.6"},"gitHead":"292e81debcabc0672b2f0cd3bca8c3e253e6bb53","_id":"eslint-plugin-import@0.3.2","_shasum":"a644bcfce8b2eb58425f58a17566c5d049931ed3","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.10.32","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"dist":{"shasum":"a644bcfce8b2eb58425f58a17566c5d049931ed3","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-0.3.2.tgz"}},"0.3.3":{"name":"eslint-plugin-import","version":"0.3.3","description":"Import with sanity.","main":"index.js","directories":{"test":"tests"},"scripts":{"test":"mocha --recursive tests/"},"repository":{"type":"git","url":"https://github.com/benmosher/eslint-plugin-import"},"keywords":["eslint","eslintplugin","es6","jsnext"],"author":{"name":"Ben Mosher","url":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"chai":"^2.1.2","eslint":"^0.17.1","eslint-tester":"^0.6.0","mocha":"^2.2.1","object-assign":"^2.0.0"},"peerDependencies":{"eslint":">=0.16.0"},"dependencies":{"array.prototype.find":"^1.0.0","es6-map":"^0.1.1","es6-set":"^0.1.1","espree":"^1.12.0","resolve":"^1.1.6"},"gitHead":"aa36749673189f04718f76f49c514d4b13fd364e","_id":"eslint-plugin-import@0.3.3","_shasum":"2bac0b1cc73a9d6b43638592e94b8edad38a75ce","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.10.32","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"dist":{"shasum":"2bac0b1cc73a9d6b43638592e94b8edad38a75ce","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-0.3.3.tgz"}},"0.3.4":{"name":"eslint-plugin-import","version":"0.3.4","description":"Import with sanity.","main":"index.js","directories":{"test":"tests"},"scripts":{"test":"mocha --recursive tests/"},"repository":{"type":"git","url":"https://github.com/benmosher/eslint-plugin-import"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","url":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"chai":"^2.1.2","eslint":"^0.17.1","eslint-tester":"^0.6.0","mocha":"^2.2.1","object-assign":"^2.0.0"},"peerDependencies":{"eslint":">=0.16.0"},"dependencies":{"array.prototype.find":"^1.0.0","es6-map":"^0.1.1","es6-set":"^0.1.1","espree":"^1.12.0","resolve":"^1.1.6"},"gitHead":"1e831ae5eaa509c365d39e2083717d0ec1261417","_id":"eslint-plugin-import@0.3.4","_shasum":"da5551f6108278ab5924de10fc2391e6ccb168e4","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.10.32","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"dist":{"shasum":"da5551f6108278ab5924de10fc2391e6ccb168e4","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-0.3.4.tgz"}},"0.3.5":{"name":"eslint-plugin-import","version":"0.3.5","description":"Import with sanity.","main":"index.js","directories":{"test":"tests"},"scripts":{"test":"mocha --recursive tests/"},"repository":{"type":"git","url":"https://github.com/benmosher/eslint-plugin-import"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","url":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"chai":"^2.1.2","eslint":"^0.17.1","eslint-tester":"^0.6.0","mocha":"^2.2.1","object-assign":"^2.0.0"},"peerDependencies":{"eslint":">=0.16.0"},"dependencies":{"array.prototype.find":"^1.0.0","es6-map":"^0.1.1","es6-set":"^0.1.1","espree":"^1.12.0","estraverse":"^3.1.0","resolve":"^1.1.6"},"gitHead":"811c28cb2b47439674d3203ffb8ddda17e04c3f0","_id":"eslint-plugin-import@0.3.5","_shasum":"4f03662b1c1981fb6cb9c5146272b07be39d5661","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.10.32","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"dist":{"shasum":"4f03662b1c1981fb6cb9c5146272b07be39d5661","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-0.3.5.tgz"}},"0.3.6":{"name":"eslint-plugin-import","version":"0.3.6","description":"Import with sanity.","main":"index.js","directories":{"test":"tests"},"scripts":{"test":"mocha --recursive tests/"},"repository":{"type":"git","url":"https://github.com/benmosher/eslint-plugin-import"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","url":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"chai":"^2.1.2","eslint":"^0.17.1","eslint-tester":"^0.6.0","mocha":"^2.2.1","object-assign":"^2.0.0"},"peerDependencies":{"eslint":">=0.16.0"},"dependencies":{"array.prototype.find":"^1.0.0","es6-map":"^0.1.1","es6-set":"^0.1.1","espree":"^1.12.0","estraverse":"^3.1.0","resolve":"^1.1.6"},"gitHead":"c695ea49f5d94c6e7ce4babaef0d03bfc767673d","_id":"eslint-plugin-import@0.3.6","_shasum":"35905f14a2cffd7a2ee2f9b4c1f7105d0aa92aec","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.10.32","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"dist":{"shasum":"35905f14a2cffd7a2ee2f9b4c1f7105d0aa92aec","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-0.3.6.tgz"}},"0.3.8":{"name":"eslint-plugin-import","version":"0.3.8","description":"Import with sanity.","main":"index.js","directories":{"test":"tests"},"scripts":{"test":"mocha --reporter dot --recursive tests/"},"repository":{"type":"git","url":"https://github.com/benmosher/eslint-plugin-import"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","url":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"chai":"^2.1.2","eslint":"^0.17.1","eslint-tester":"^0.6.0","mocha":"^2.2.1","object-assign":"^2.0.0"},"peerDependencies":{"eslint":">=0.16.0"},"dependencies":{"array.prototype.find":"^1.0.0","es6-map":"^0.1.1","es6-set":"^0.1.1","espree":"^1.12.0","estraverse":"^3.1.0","resolve":"^1.1.6"},"gitHead":"aee1b4be60d4bb39974a909a6b13961fd704e07d","_id":"eslint-plugin-import@0.3.8","_shasum":"3ad9e69acc80efc5e436fcb5ea2412bad044d474","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.10.32","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"dist":{"shasum":"3ad9e69acc80efc5e436fcb5ea2412bad044d474","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-0.3.8.tgz"}},"0.3.9":{"name":"eslint-plugin-import","version":"0.3.9","description":"Import with sanity.","main":"index.js","directories":{"test":"tests"},"scripts":{"test":"mocha --reporter dot --recursive tests/"},"repository":{"type":"git","url":"https://github.com/benmosher/eslint-plugin-import"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","url":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"chai":"^2.1.2","eslint":"^0.17.1","eslint-tester":"^0.6.0","mocha":"^2.2.1","object-assign":"^2.0.0"},"peerDependencies":{"eslint":">=0.16.0"},"dependencies":{"array.prototype.find":"^1.0.0","es6-map":"^0.1.1","es6-set":"^0.1.1","espree":"^1.12.0","estraverse":"^3.1.0","resolve":"^1.1.6"},"gitHead":"a91997130270ecb84f7f9cf3a78c70c9a116b8b9","_id":"eslint-plugin-import@0.3.9","_shasum":"f4f894c7219abfa6a849572169dab9713ca83800","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.10.32","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"dist":{"shasum":"f4f894c7219abfa6a849572169dab9713ca83800","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-0.3.9.tgz"}},"0.3.10":{"name":"eslint-plugin-import","version":"0.3.10","description":"Import with sanity.","main":"index.js","directories":{"test":"tests"},"scripts":{"test":"mocha --reporter dot --recursive tests/"},"repository":{"type":"git","url":"https://github.com/benmosher/eslint-plugin-import"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","url":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"chai":"^2.1.2","eslint":"^0.17.1","eslint-tester":"^0.6.0","mocha":"^2.2.1","object-assign":"^2.0.0"},"peerDependencies":{"eslint":">=0.16.0"},"dependencies":{"array.prototype.find":"^1.0.0","es6-map":"^0.1.1","es6-set":"^0.1.1","espree":"^1.12.0","estraverse":"^3.1.0","resolve":"^1.1.6"},"gitHead":"05d509333e20ea943c795d0eb8e97de4df923729","_id":"eslint-plugin-import@0.3.10","_shasum":"d66925b7ef0b69ebf854fde3e2a8d3a5337a4169","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.10.32","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"dist":{"shasum":"d66925b7ef0b69ebf854fde3e2a8d3a5337a4169","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-0.3.10.tgz"}},"0.3.11":{"name":"eslint-plugin-import","version":"0.3.11","description":"Import with sanity.","main":"index.js","directories":{"test":"tests"},"scripts":{"test":"mocha --reporter dot --recursive tests/"},"repository":{"type":"git","url":"https://github.com/benmosher/eslint-plugin-import"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","url":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"chai":"^2.1.2","eslint":"^0.17.1","eslint-tester":"^0.6.0","mocha":"^2.2.1","object-assign":"^2.0.0"},"peerDependencies":{"eslint":">=0.16.0"},"dependencies":{"array.prototype.find":"^1.0.0","es6-map":"^0.1.1","es6-set":"^0.1.1","espree":"^1.12.0","estraverse":"^3.1.0","resolve":"^1.1.6"},"gitHead":"c956d3b61d2ae18150ffdee0a99806ea5789e8c8","_id":"eslint-plugin-import@0.3.11","_shasum":"4e3f717f5a22232fb7e38de22521b986b8ba2aae","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.10.32","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"dist":{"shasum":"4e3f717f5a22232fb7e38de22521b986b8ba2aae","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-0.3.11.tgz"}},"0.3.12":{"name":"eslint-plugin-import","version":"0.3.12","description":"Import with sanity.","main":"index.js","directories":{"test":"tests"},"scripts":{"test":"istanbul cover --dir reports/coverage _mocha tests/ -- --recursive --reporter dot"},"repository":{"type":"git","url":"https://github.com/benmosher/eslint-plugin-import"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","url":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"chai":"^2.1.2","eslint":"^0.17.1","eslint-tester":"^0.6.0","istanbul":"^0.3.11","mocha":"^2.2.1","object-assign":"^2.0.0"},"peerDependencies":{"eslint":">=0.16.0"},"dependencies":{"array.prototype.find":"^1.0.0","es6-map":"^0.1.1","es6-set":"^0.1.1","espree":"^1.12.0","estraverse":"^3.1.0","resolve":"^1.1.6"},"gitHead":"152120f26abb1f423b0953eb988f5ae1ada3c638","_id":"eslint-plugin-import@0.3.12","_shasum":"b18d88c5e812531e5a584e5d5563dbb0ce4581fb","_from":".","_npmVersion":"2.7.1","_nodeVersion":"1.6.2","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"dist":{"shasum":"b18d88c5e812531e5a584e5d5563dbb0ce4581fb","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-0.3.12.tgz"}},"0.3.13":{"name":"eslint-plugin-import","version":"0.3.13","description":"Import with sanity.","main":"index.js","directories":{"test":"tests"},"scripts":{"test":"istanbul cover --dir reports/coverage _mocha tests/ -- --recursive --reporter dot"},"repository":{"type":"git","url":"https://github.com/benmosher/eslint-plugin-import"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","url":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"chai":"^2.1.2","eslint":"^0.17.1","eslint-tester":"^0.6.0","istanbul":"^0.3.11","mocha":"^2.2.1","object-assign":"^2.0.0"},"peerDependencies":{"eslint":">=0.16.0"},"dependencies":{"array.prototype.find":"^1.0.0","es6-map":"^0.1.1","es6-set":"^0.1.1","espree":"^1.12.0","estraverse":"^3.1.0","resolve":"^1.1.6"},"gitHead":"e3efa667d4af8baf067a25f235315f61964f97af","_id":"eslint-plugin-import@0.3.13","_shasum":"bc753e050d0a0c4e6ad44ff48f7291b1df00bc7d","_from":".","_npmVersion":"2.7.1","_nodeVersion":"1.6.2","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"dist":{"shasum":"bc753e050d0a0c4e6ad44ff48f7291b1df00bc7d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-0.3.13.tgz"}},"0.4.0":{"name":"eslint-plugin-import","version":"0.4.0","description":"Import with sanity.","main":"index.js","directories":{"test":"tests"},"scripts":{"watch":"mocha --recursive --reporter dot --watch tests/lib/","test":"istanbul cover --dir reports/coverage _mocha tests/lib/ -- --recursive --reporter dot"},"repository":{"type":"git","url":"https://github.com/benmosher/eslint-plugin-import"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","url":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"chai":"^2.1.2","eslint":"^0.17.1","eslint-tester":"^0.6.0","istanbul":"^0.3.11","mocha":"^2.2.1","object-assign":"^2.0.0"},"peerDependencies":{"eslint":">=0.16.0"},"dependencies":{"array.prototype.find":"^1.0.0","es6-map":"^0.1.1","es6-set":"^0.1.1","espree":"^1.12.0","estraverse":"^3.1.0","resolve":"^1.1.6"},"gitHead":"0c99eb25d93c647d02c232b52c603fb493acd26c","_id":"eslint-plugin-import@0.4.0","_shasum":"a7880d34e10b4d5639f7e3cb4df6f993d41603a3","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.10.32","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"dist":{"shasum":"a7880d34e10b4d5639f7e3cb4df6f993d41603a3","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-0.4.0.tgz"}},"0.4.1":{"name":"eslint-plugin-import","version":"0.4.1","description":"Import with sanity.","main":"index.js","directories":{"test":"tests"},"scripts":{"watch":"mocha --recursive --reporter dot --watch tests/lib/","test":"istanbul cover --dir reports/coverage _mocha tests/lib/ -- --recursive --reporter dot"},"repository":{"type":"git","url":"https://github.com/benmosher/eslint-plugin-import"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","url":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"chai":"^2.1.2","eslint":"^0.17.1","eslint-tester":"^0.6.0","istanbul":"^0.3.11","mocha":"^2.2.1","object-assign":"^2.0.0"},"peerDependencies":{"eslint":">=0.16.0"},"dependencies":{"array.prototype.find":"^1.0.0","es6-map":"^0.1.1","es6-set":"^0.1.1","espree":"^1.12.0","estraverse":"^3.1.0","resolve":"^1.1.6"},"gitHead":"78217586f2c7ce42d244d9c81480bb8f14c6e9d0","_id":"eslint-plugin-import@0.4.1","_shasum":"2ed5f84712de35319809dd91f6a5844512801d0f","_from":".","_npmVersion":"2.7.4","_nodeVersion":"1.6.3","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"dist":{"shasum":"2ed5f84712de35319809dd91f6a5844512801d0f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-0.4.1.tgz"}},"0.4.2":{"name":"eslint-plugin-import","version":"0.4.2","description":"Import with sanity.","main":"index.js","directories":{"test":"tests"},"scripts":{"watch":"mocha --recursive --reporter dot --watch tests/lib/","test":"istanbul cover --dir reports/coverage _mocha tests/lib/ -- --recursive --reporter dot"},"repository":{"type":"git","url":"https://github.com/benmosher/eslint-plugin-import"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","url":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"chai":"^2.1.2","eslint":">=0.16.0","eslint-tester":">=0.6.0","istanbul":"^0.3.11","mocha":"^2.2.1","object-assign":"^2.0.0"},"peerDependencies":{"eslint":">=0.16.0"},"dependencies":{"array.prototype.find":"1.0.0","es6-map":"0.1.1","es6-set":"0.1.1","espree":"2.0.1","resolve":"1.1.6"},"gitHead":"b371b451bae2051dc1aa726c9350d697b790cd57","_id":"eslint-plugin-import@0.4.2","_shasum":"498ae857205ea53b1297ff4937625cc73b8a3eaa","_from":".","_npmVersion":"2.7.4","_nodeVersion":"1.6.3","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"dist":{"shasum":"498ae857205ea53b1297ff4937625cc73b8a3eaa","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-0.4.2.tgz"}},"0.4.3":{"name":"eslint-plugin-import","version":"0.4.3","description":"Import with sanity.","main":"index.js","directories":{"test":"tests"},"scripts":{"watch":"mocha --recursive --reporter dot --watch tests/lib/","test":"eslint ./lib && istanbul cover --dir reports/coverage _mocha tests/lib/ -- --recursive --reporter dot"},"repository":{"type":"git","url":"https://github.com/benmosher/eslint-plugin-import"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","url":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"chai":"^2.1.2","eslint":">=0.16.0","eslint-tester":">=0.6.0","istanbul":"^0.3.11","mocha":"^2.2.1","object-assign":"^2.0.0"},"peerDependencies":{"eslint":">=0.16.0"},"dependencies":{"array.prototype.find":"1.0.0","es6-map":"0.1.1","es6-set":"0.1.1","eslint-import-core":"^0.1.0"},"gitHead":"40364386a5123de734263ff93905ca7c24bb7129","_id":"eslint-plugin-import@0.4.3","_shasum":"d28a6a5097e467f5474f39e40237318d1d4a68fc","_from":".","_npmVersion":"2.7.4","_nodeVersion":"1.6.3","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"dist":{"shasum":"d28a6a5097e467f5474f39e40237318d1d4a68fc","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-0.4.3.tgz"}},"0.4.4":{"name":"eslint-plugin-import","version":"0.4.4","description":"Import with sanity.","main":"index.js","directories":{"test":"tests"},"scripts":{"watch":"mocha --recursive --reporter dot --watch tests/lib/","test":"eslint ./lib && istanbul cover --dir reports/coverage _mocha tests/lib/ -- --recursive --reporter dot"},"repository":{"type":"git","url":"https://github.com/benmosher/eslint-plugin-import"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","url":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"chai":"^2.1.2","eslint":">=0.16.0","eslint-tester":">=0.6.0","istanbul":"^0.3.11","mocha":"^2.2.1","object-assign":"^2.0.0"},"peerDependencies":{"eslint":">=0.16.0"},"dependencies":{"array.prototype.find":"1.0.0","es6-map":"0.1.1","es6-set":"0.1.1","eslint-import-core":"^0.1.0"},"gitHead":"73cf1373bfbadfead70d5f84c6e0c1beb6c2dd89","_id":"eslint-plugin-import@0.4.4","_shasum":"252e67a9f72b115f3b4b0f299d88515c73a18d23","_from":".","_npmVersion":"2.7.4","_nodeVersion":"1.6.3","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"dist":{"shasum":"252e67a9f72b115f3b4b0f299d88515c73a18d23","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-0.4.4.tgz"}},"0.4.5":{"name":"eslint-plugin-import","version":"0.4.5","description":"Import with sanity.","main":"index.js","directories":{"test":"tests"},"scripts":{"watch":"mocha --recursive --reporter dot --watch tests/lib/","test":"eslint ./lib && istanbul cover --dir reports/coverage _mocha tests/lib/ -- --recursive --reporter dot"},"repository":{"type":"git","url":"git+https://github.com/benmosher/eslint-plugin-import.git"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","url":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"chai":"^2.1.2","eslint":">=0.16.0","eslint-tester":">=0.6.0","istanbul":"^0.3.11","mocha":"^2.2.1","object-assign":"^2.0.0"},"peerDependencies":{"eslint":">=0.16.0"},"dependencies":{"array.prototype.find":"1.0.0","es6-map":"0.1.1","es6-set":"0.1.1","eslint-import-core":"^0.1.0"},"gitHead":"5b409947011f0ec1c3654ad14d412ef75df0838d","_id":"eslint-plugin-import@0.4.5","_shasum":"8ecc5966a21734c632193ed840aeaf394536f952","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"dist":{"shasum":"8ecc5966a21734c632193ed840aeaf394536f952","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-0.4.5.tgz"}},"0.5.1":{"name":"eslint-plugin-import","version":"0.5.1","description":"Import with sanity.","main":"index.js","directories":{"test":"tests"},"scripts":{"watch":"mocha --recursive --reporter dot --watch tests/lib/","test":"eslint ./lib && istanbul cover --dir reports/coverage _mocha tests/lib/ -- --recursive --reporter dot"},"repository":{"type":"git","url":"git+https://github.com/benmosher/eslint-plugin-import.git"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","url":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"chai":"^2.1.2","eslint":">=0.16.0","eslint-tester":">=0.6.0","istanbul":"^0.3.11","mocha":"^2.2.1","object-assign":"^2.0.0"},"peerDependencies":{"eslint":">=0.16.0"},"dependencies":{"array.prototype.find":"1.0.0","es6-map":"0.1.1","es6-set":"0.1.1","eslint-import-core":"^0.1.0"},"gitHead":"b7b5ef3978f49a3164506ed6d737d9fb0ff5fbba","_id":"eslint-plugin-import@0.5.1","_shasum":"1a2afee64c95c6961d2963a890b9e0a8b740a4ab","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"dist":{"shasum":"1a2afee64c95c6961d2963a890b9e0a8b740a4ab","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-0.5.1.tgz"}},"0.5.2":{"name":"eslint-plugin-import","version":"0.5.2","description":"Import with sanity.","main":"index.js","directories":{"test":"tests"},"scripts":{"watch":"mocha --recursive --reporter dot --watch tests/lib/","test":"eslint ./lib && istanbul cover --dir reports/coverage _mocha tests/lib/ -- --recursive --reporter dot"},"repository":{"type":"git","url":"git+https://github.com/benmosher/eslint-plugin-import.git"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","url":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"chai":"^2.1.2","eslint":">=0.16.0","eslint-tester":">=0.6.0","istanbul":"^0.3.11","mocha":"^2.2.1","object-assign":"^2.0.0"},"peerDependencies":{"eslint":">=0.16.0"},"dependencies":{"array.prototype.find":"1.0.0","es6-map":"0.1.1","es6-set":"0.1.1","eslint-import-core":"^0.1.0"},"gitHead":"e7d9c0d285acc4e667c1f9a3c1b1f6854415cb14","_id":"eslint-plugin-import@0.5.2","_shasum":"1ed345279bead6b1cec489fd61c9b0afa3e00095","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"dist":{"shasum":"1ed345279bead6b1cec489fd61c9b0afa3e00095","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-0.5.2.tgz"}},"0.6.0":{"name":"eslint-plugin-import","version":"0.6.0","description":"Import with sanity.","main":"index.js","directories":{"test":"tests"},"scripts":{"watch":"mocha --recursive --reporter dot --watch tests/lib/","test":"eslint ./lib && istanbul cover --dir reports/coverage _mocha tests/lib/ -- --recursive --reporter dot"},"repository":{"type":"git","url":"git+https://github.com/benmosher/eslint-plugin-import.git"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","email":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"chai":"^2.2.0","eslint":">=0.16.0","eslint-tester":">=0.6.0","istanbul":"^0.3.11","mocha":"^2.2.1","object-assign":"^2.0.0"},"peerDependencies":{"eslint":">=0.16.0"},"dependencies":{"array.prototype.find":"1.0.0","es6-map":"0.1.1","es6-set":"0.1.1","espree":"^2.0.1","resolve":"^1.1.6"},"gitHead":"cae1a88324b8b69076e2b183d0bd017281b4ddae","_id":"eslint-plugin-import@0.6.0","_shasum":"40e9fec27ed4345930934a842ec33e36917be25a","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"dist":{"shasum":"40e9fec27ed4345930934a842ec33e36917be25a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-0.6.0.tgz"}},"0.7.0":{"name":"eslint-plugin-import","version":"0.7.0","description":"Import with sanity.","main":"index.js","directories":{"test":"tests"},"scripts":{"watch":"mocha --recursive --reporter dot --watch tests/lib/","test":"eslint ./lib && istanbul cover --dir reports/coverage _mocha tests/lib/ -- --recursive --reporter dot"},"repository":{"type":"git","url":"git+https://github.com/benmosher/eslint-plugin-import.git"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","email":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"chai":"^2.2.0","eslint":">=0.16.0","eslint-tester":">=0.6.0","istanbul":"^0.3.11","mocha":"^2.2.1","object-assign":"^2.0.0"},"peerDependencies":{"eslint":">=0.16.0"},"dependencies":{"array.prototype.find":"1.0.0","es6-map":"0.1.1","es6-set":"0.1.1","espree":"^2.0.1","resolve":"^1.1.6"},"gitHead":"c1fc431cab82eb0c2bc5a679995c2649ff6f9119","_id":"eslint-plugin-import@0.7.0","_shasum":"69cb595d264aa5ad9b0d8e2604f8c6324923abdf","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"dist":{"shasum":"69cb595d264aa5ad9b0d8e2604f8c6324923abdf","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-0.7.0.tgz"}},"0.7.1":{"name":"eslint-plugin-import","version":"0.7.1","description":"Import with sanity.","main":"index.js","directories":{"test":"tests"},"scripts":{"watch":"mocha --recursive --reporter dot --watch tests/lib/","test":"eslint ./lib && istanbul cover --dir reports/coverage _mocha tests/lib/ -- --recursive --reporter dot"},"repository":{"type":"git","url":"git+https://github.com/benmosher/eslint-plugin-import.git"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","email":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"chai":"^2.2.0","eslint":">=0.16.0","eslint-tester":">=0.6.0","istanbul":"^0.3.11","mocha":"^2.2.1"},"peerDependencies":{"eslint":">=0.16.0 || ~1.0.0-rc-0"},"dependencies":{"array.prototype.find":"1.0.0","es6-map":"0.1.1","es6-set":"0.1.1","espree":"^2.0.1","object-assign":"^2.0.0","resolve":"^1.1.6"},"gitHead":"e1ef2284a04b168bb4740b70761a6cd25cf3a135","_id":"eslint-plugin-import@0.7.1","_shasum":"5a377070ab62a595e1c049c3951535e9f5f83d7e","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"dist":{"shasum":"5a377070ab62a595e1c049c3951535e9f5f83d7e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-0.7.1.tgz"}},"0.7.2":{"name":"eslint-plugin-import","version":"0.7.2","description":"Import with sanity.","main":"index.js","directories":{"test":"tests"},"scripts":{"watch":"mocha --recursive --reporter dot --watch tests/lib/ tests/core/","test":"eslint ./lib && istanbul cover --dir reports/coverage _mocha tests/lib/ tests/core/ -- --recursive --reporter dot"},"repository":{"type":"git","url":"git+https://github.com/benmosher/eslint-plugin-import.git"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","email":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"babel-eslint":"^3.1.23","chai":"^2.2.0","eslint":">=0.16.0","eslint-tester":">=0.6.0","istanbul":"^0.3.11","mocha":"^2.2.1"},"peerDependencies":{"eslint":">=0.16.0 || ~1.0.0-rc-0"},"dependencies":{"array.prototype.find":"1.0.0","es6-map":"0.1.1","es6-set":"0.1.1","espree":"^2.0.1","object-assign":"^2.0.0","resolve":"^1.1.6"},"gitHead":"d1dea2c7ddd4de848c9cc161ea87509bae59e85a","_id":"eslint-plugin-import@0.7.2","_shasum":"19433366c236da013e977a07f4d7e65616ed0b88","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"dist":{"shasum":"19433366c236da013e977a07f4d7e65616ed0b88","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-0.7.2.tgz"}},"0.7.3":{"name":"eslint-plugin-import","version":"0.7.3","description":"Import with sanity.","main":"lib/index.js","directories":{"test":"tests"},"scripts":{"watch":"babel -d lib/ src/ --watch & mocha --recursive --reporter dot --compilers js:babel/register --watch tests/src/","test":"eslint ./src && istanbul cover --dir reports/coverage _mocha tests/src/ -- --recursive --reporter dot --compilers js:babel/register","compile":"babel -d lib/ src/","prepublish":"npm run compile","pretest":"npm run compile"},"repository":{"type":"git","url":"git+https://github.com/benmosher/eslint-plugin-import.git"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","email":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"babel-eslint":"^3.1.23","chai":"^2.2.0","eslint":">=0.16.0","eslint-tester":">=0.6.0","istanbul":"^0.3.11","mocha":"^2.2.1"},"peerDependencies":{"eslint":">=0.16.0 || ~1.0.0-rc-0"},"dependencies":{"array.prototype.find":"1.0.0","babel":"^5.6.23","es6-map":"0.1.1","es6-set":"0.1.1","espree":"^2.0.1","object-assign":"^2.0.0","resolve":"^1.1.6"},"gitHead":"63ba2a4e887f07fcc7e0d045059358fd9df7be44","_id":"eslint-plugin-import@0.7.3","_shasum":"85c3c933e173ae941f9588c7123686d2894bd87b","_from":".","_npmVersion":"2.9.0","_nodeVersion":"2.0.1","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"dist":{"shasum":"85c3c933e173ae941f9588c7123686d2894bd87b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-0.7.3.tgz"}},"0.7.4":{"name":"eslint-plugin-import","version":"0.7.4","description":"Import with sanity.","main":"lib/index.js","directories":{"test":"tests"},"scripts":{"watch":"babel -d lib/ src/ --watch & mocha --recursive --reporter dot --compilers js:babel/register --watch tests/src/","test":"eslint ./src && istanbul cover --dir reports/coverage _mocha tests/src/ -- --recursive --reporter dot --compilers js:babel/register","compile":"babel -d lib/ src/","prepublish":"npm run compile","pretest":"npm run compile"},"repository":{"type":"git","url":"git+https://github.com/benmosher/eslint-plugin-import.git"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","email":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"babel-eslint":"^3.1.23","chai":"^2.2.0","eslint":">=0.16.0","eslint-tester":">=0.6.0","istanbul":"^0.3.11","mocha":"^2.2.1"},"peerDependencies":{"eslint":">=0.16.0 || ~1.0.0-rc-0"},"dependencies":{"array.prototype.find":"1.0.0","babel":"^5.6.23","es6-map":"0.1.1","es6-set":"0.1.1","espree":"^2.0.1","object-assign":"^2.0.0","resolve":"^1.1.6"},"gitHead":"ce9f191617fdb38dd4f1d940a1bebef81b3756de","_id":"eslint-plugin-import@0.7.4","_shasum":"f96a4cb344e5ad39dd8cc09373815b4f61e9cd79","_from":".","_npmVersion":"2.9.0","_nodeVersion":"2.0.1","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"dist":{"shasum":"f96a4cb344e5ad39dd8cc09373815b4f61e9cd79","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-0.7.4.tgz"}},"0.7.5":{"name":"eslint-plugin-import","version":"0.7.5","description":"Import with sanity.","main":"lib/index.js","directories":{"test":"tests"},"scripts":{"watch":"babel -d lib/ src/ --watch & mocha --recursive --reporter dot --compilers js:babel/register --watch tests/src/","test":"eslint ./src && istanbul cover --dir reports/coverage _mocha tests/src/ -- --recursive --reporter dot --compilers js:babel/register","compile":"babel -d lib/ src/","prepublish":"npm run compile","pretest":"npm run compile"},"repository":{"type":"git","url":"git+https://github.com/benmosher/eslint-plugin-import.git"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","email":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"babel":"^5.6.23","babel-eslint":"^3.1.23","chai":"^2.2.0","eslint":">=0.16.0","eslint-tester":">=0.6.0","istanbul":"^0.3.11","mocha":"^2.2.1"},"peerDependencies":{"eslint":">=0.16.0 || ~1.0.0-rc-0"},"dependencies":{"array.prototype.find":"1.0.0","es6-map":"0.1.1","es6-set":"0.1.1","espree":"^2.0.1","object-assign":"^2.0.0","resolve":"^1.1.6"},"gitHead":"d484ea447ac57fb877da5e60b7e8475d598d47d4","_id":"eslint-plugin-import@0.7.5","_shasum":"d99bd2b9fb5e281376f22508e1e992743144bc04","_from":".","_npmVersion":"2.9.0","_nodeVersion":"2.0.1","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"dist":{"shasum":"d99bd2b9fb5e281376f22508e1e992743144bc04","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-0.7.5.tgz"}},"0.7.7":{"name":"eslint-plugin-import","version":"0.7.7","description":"Import with sanity.","main":"lib/index.js","directories":{"test":"tests"},"scripts":{"watch":"babel -d lib/ src/ --watch & mocha --recursive --reporter dot --compilers js:babel/register --watch tests/src/","test":"eslint ./src && istanbul cover --dir reports/coverage _mocha tests/src/ -- --recursive --reporter dot --compilers js:babel/register","compile":"babel -d lib/ src/","prepublish":"npm run compile"},"repository":{"type":"git","url":"git+https://github.com/benmosher/eslint-plugin-import.git"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","email":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"babel":"^5.6.23","babel-eslint":"^3.1.23","chai":"^2.2.0","eslint":">=0.16.0","eslint-tester":">=0.6.0","istanbul":"^0.3.17","mocha":"^2.2.1"},"peerDependencies":{"eslint":">=0.16.0 || ~1.0.0-rc-0"},"dependencies":{"babel-runtime":"5.8.19","espree":"^2.0.1","resolve":"^1.1.6"},"gitHead":"70faf35977d84aec7ea55f675eeeb64257fedea6","_id":"eslint-plugin-import@0.7.7","_shasum":"8ad04bee4bf00d5c614873087831df2bb2158b07","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"dist":{"shasum":"8ad04bee4bf00d5c614873087831df2bb2158b07","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-0.7.7.tgz"}},"0.7.8":{"name":"eslint-plugin-import","version":"0.7.8","description":"Import with sanity.","main":"lib/index.js","directories":{"test":"tests"},"scripts":{"watch":"babel -d lib/ src/ --watch & mocha --recursive --reporter dot --compilers js:babel/register --watch tests/src/","cover":"eslint ./src && istanbul cover --dir reports/coverage _mocha tests/src/ -- --recursive --reporter dot --compilers js:babel/register","test":"mocha --timeout 5000 --recursive --reporter dot --compilers js:babel/register tests/src/","compile":"babel -d lib/ src/","prepublish":"npm run compile","pretest":"eslint ./src"},"repository":{"type":"git","url":"git+https://github.com/benmosher/eslint-plugin-import.git"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","email":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"babel":"^5.6.23","babel-eslint":"^3.1.23","chai":"^2.2.0","eslint":"^1.1.0","istanbul":"^0.3.17","mocha":"^2.2.1"},"peerDependencies":{"eslint":">=0.16.0"},"dependencies":{"babel-runtime":"5.8.19","espree":"^2.0.1","resolve":"^1.1.6"},"gitHead":"207efa0823e70b6fa1971a0dbb709dfd0b73774a","_id":"eslint-plugin-import@0.7.8","_shasum":"3cb7afc622f39b3bc396e8be405db5a239460388","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"dist":{"shasum":"3cb7afc622f39b3bc396e8be405db5a239460388","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-0.7.8.tgz"}},"0.7.9":{"name":"eslint-plugin-import","version":"0.7.9","description":"Import with sanity.","main":"lib/index.js","directories":{"test":"tests"},"scripts":{"watch":"babel -d lib/ src/ --watch & mocha --recursive --reporter dot --compilers js:babel/register --watch tests/src/","cover":"eslint ./src && istanbul cover --dir reports/coverage _mocha tests/src/ -- --recursive --reporter dot --compilers js:babel/register","test":"mocha --recursive --reporter dot tests/lib/","compile":"babel -d lib/ src/","prepublish":"npm run compile","pretest":"eslint ./src && npm run compile && babel -d tests/lib/ tests/src/"},"repository":{"type":"git","url":"https://github.com/benmosher/eslint-plugin-import"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","email":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"babel":"^5.6.23","babel-eslint":"^3.1.23","chai":"^2.2.0","eslint":"^1.1.0","istanbul":"^0.3.17","mocha":"^2.2.1"},"peerDependencies":{"eslint":">=0.16.0"},"dependencies":{"babel-runtime":"5.8.19","espree":"^2.0.1","resolve":"^1.1.6"},"gitHead":"5799eb149e8e205ba75b6f55d08cab42f747be5a","_id":"eslint-plugin-import@0.7.9","_shasum":"41c9540ba7a59fba2c7992c4d0bccdd4dbbedb5b","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"dist":{"shasum":"41c9540ba7a59fba2c7992c4d0bccdd4dbbedb5b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-0.7.9.tgz"}},"0.8.0":{"name":"eslint-plugin-import","version":"0.8.0","description":"Import with sanity.","main":"lib/index.js","directories":{"test":"tests"},"scripts":{"watch":"babel -d lib/ src/ --watch & mocha --recursive --reporter dot --compilers js:babel/register --watch tests/src/","cover":"eslint ./src && istanbul cover --dir reports/coverage _mocha tests/src/ -- --recursive --reporter dot --compilers js:babel/register","test":"mocha --recursive --reporter dot tests/lib/","compile":"babel -d lib/ src/","prepublish":"npm run compile","pretest":"eslint ./src && npm run compile && babel -d tests/lib/ tests/src/"},"repository":{"type":"git","url":"git+https://github.com/benmosher/eslint-plugin-import.git"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","email":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"babel":"^5.6.23","babel-eslint":"^3.1.23","chai":"^2.2.0","eslint":"^1.1.0","istanbul":"^0.3.17","mocha":"^2.2.1"},"peerDependencies":{"eslint":">=0.16.0"},"dependencies":{"babel-runtime":"5.8.19","espree":"^2.0.1","resolve":"^1.1.6"},"gitHead":"30a61c0977ba3f05fdc900bb4e0fdf2472c66bca","_id":"eslint-plugin-import@0.8.0","_shasum":"0e6ecf09c71e674951479b96fd202d4320a3a884","_from":".","_npmVersion":"2.14.2","_nodeVersion":"4.0.0","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"dist":{"shasum":"0e6ecf09c71e674951479b96fd202d4320a3a884","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-0.8.0.tgz"}},"0.8.1":{"name":"eslint-plugin-import","version":"0.8.1","description":"Import with sanity.","main":"lib/index.js","directories":{"test":"tests"},"scripts":{"watch":"babel -d lib/ src/ --watch & mocha --recursive --reporter dot --compilers js:babel/register --watch tests/src/","cover":"eslint ./src && istanbul cover --dir reports/coverage _mocha tests/src/ -- --recursive --reporter dot --compilers js:babel/register","test":"mocha --recursive --reporter dot tests/lib/","compile":"babel -d lib/ src/","prepublish":"npm run compile","pretest":"eslint ./src && npm run compile && babel -d tests/lib/ tests/src/"},"repository":{"type":"git","url":"git+https://github.com/benmosher/eslint-plugin-import.git"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","email":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"babel":"^5.6.23","babel-eslint":"^3.1.23","chai":"^2.2.0","eslint":">=1.6.0","istanbul":"^0.3.17","mocha":"^2.2.1"},"peerDependencies":{"eslint":">=0.16.0"},"dependencies":{"babel-runtime":"5.8.19","espree":"^2.0.1","resolve":"^1.1.6"},"gitHead":"1ddc61c642980c12ec6e4a9a649bc7869419234a","_id":"eslint-plugin-import@0.8.1","_shasum":"c1e076097d913cbdfd58f1d14f49205d8a33a735","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"dist":{"shasum":"c1e076097d913cbdfd58f1d14f49205d8a33a735","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-0.8.1.tgz"}},"0.9.1":{"name":"eslint-plugin-import","version":"0.9.1","description":"Import with sanity.","main":"lib/index.js","directories":{"test":"tests"},"scripts":{"watch":"babel -d lib/ src/ --watch & mocha --recursive --reporter dot --compilers js:babel/register --watch tests/src/","cover":"eslint ./src && istanbul cover --dir reports/coverage _mocha tests/src/ -- --recursive --reporter dot --compilers js:babel-core/register","test":"mocha --recursive --reporter dot tests/lib/","debug":"mocha debug --recursive --reporter dot tests/lib/","compile":"babel -d lib/ src/","prepublish":"npm run compile","pretest":"eslint ./src && npm run compile && babel -d tests/lib/ tests/src/"},"repository":{"type":"git","url":"git+https://github.com/benmosher/eslint-plugin-import.git"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","email":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"acorn-to-esprima":"^1.0.5","babel":"5.x","babel-eslint":"^4.1.3","chai":"^3.4.0","eslint":">=1.8.0","istanbul":"^0.4.0","mocha":"^2.2.1"},"peerDependencies":{"eslint":">=0.16.0"},"dependencies":{"babel-runtime":"5.x","babylon":"6.0.18","resolve":"1.1.6"},"gitHead":"8ebb4d1a2e3f5ebd563b30f7ee4fc24747c1dacd","_id":"eslint-plugin-import@0.9.1","_shasum":"622fd62202fcba09f069e9f6c150acfac52560b4","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"dist":{"shasum":"622fd62202fcba09f069e9f6c150acfac52560b4","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-0.9.1.tgz"}},"0.10.0":{"name":"eslint-plugin-import","version":"0.10.0","description":"Import with sanity.","main":"lib/index.js","directories":{"test":"tests"},"scripts":{"watch":"babel -d lib/ src/ --watch & mocha --recursive --reporter dot --compilers js:babel/register --watch tests/src/","cover":"npm run pretest && NODE_ENV=testing NODE_PATH=./lib istanbul cover --dir reports/coverage _mocha tests/lib/ -- --recursive --reporter dot && remap-istanbul -i reports/coverage/coverage.json -o reports/coverage/lcov-report --type html","test":"NODE_ENV=testing NODE_PATH=./lib mocha --recursive --reporter dot tests/lib/","ci-test":"npm run-script pretest && mocha --recursive --reporter dot tests/lib/","debug":"mocha debug --recursive --reporter dot tests/lib/","compile":"rm -rf lib/ && babel -d lib/ src/","prepublish":"npm run compile","pretest":"eslint ./src && npm run compile && babel -d tests/lib/ tests/src/","coveralls":"istanbul cover --report lcovonly --dir reports/coverage _mocha tests/lib/ -- --recursive --reporter dot && remap-istanbul -i reports/coverage/coverage.json -o reports/coverage/lcov.info --type lcovonly && cat ./reports/coverage/lcov.info | coveralls"},"repository":{"type":"git","url":"git+https://github.com/benmosher/eslint-plugin-import.git"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","email":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"babel":"5.x","babel-eslint":"^4.1.4","chai":"^3.4.0","coveralls":"^2.11.4","eslint":">=1.8.0","istanbul":"^0.4.0","mocha":"^2.2.1","remap-istanbul":"^0.4.0"},"peerDependencies":{"eslint":">=1.4.0"},"dependencies":{"babel-runtime":"5.x","babylon":"^6.1.2","resolve":"1.1.6"},"greenkeeper":{"ignore":["babel","babel-runtime"]},"gitHead":"241bb58b1115998f079753155e4bf3183c919118","_id":"eslint-plugin-import@0.10.0","_shasum":"2b258bb2c0d4be0b089acdb89804aac9c437e976","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"dist":{"shasum":"2b258bb2c0d4be0b089acdb89804aac9c437e976","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-0.10.0.tgz"}},"0.10.1":{"name":"eslint-plugin-import","version":"0.10.1","description":"Import with sanity.","main":"lib/index.js","directories":{"test":"tests"},"scripts":{"watch":"babel -d lib/ src/ --watch & mocha --recursive --reporter dot --compilers js:babel/register --watch tests/src/","cover":"npm run pretest && NODE_PATH=./lib istanbul cover --dir reports/coverage _mocha tests/lib/ -- --recursive --reporter dot; remap-istanbul -i reports/coverage/coverage.json -o reports/coverage/lcov-report --type html","test":"NODE_PATH=./lib mocha --recursive --reporter dot tests/lib/","ci-test":"npm run-script pretest && mocha --recursive --reporter dot tests/lib/","debug":"mocha debug --recursive --reporter dot tests/lib/","compile":"rm -rf lib/ && babel -d lib/ src/","prepublish":"npm run compile","pretest":"eslint ./src && npm run compile && babel -d tests/lib/ tests/src/","coveralls":"istanbul cover --report lcovonly --dir reports/coverage _mocha tests/lib/ -- --recursive --reporter dot; remap-istanbul -i reports/coverage/coverage.json -o reports/coverage/lcov.info --type lcovonly && cat ./reports/coverage/lcov.info | coveralls"},"repository":{"type":"git","url":"git+https://github.com/benmosher/eslint-plugin-import.git"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","email":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"babel":"5.x","babel-eslint":"^4.1.4","chai":"^3.4.0","coveralls":"^2.11.4","eslint":">=1.8.0","istanbul":"^0.4.0","mocha":"^2.2.1","remap-istanbul":"^0.4.0"},"peerDependencies":{"eslint":">=1.4.0"},"dependencies":{"babel-runtime":"5.x","babylon":"^6.1.2","resolve":"1.1.6"},"greenkeeper":{"ignore":["babel","babel-runtime"]},"gitHead":"435198735e562cabccc14104512b8bd68eaf99e1","_id":"eslint-plugin-import@0.10.1","_shasum":"b22a9c70323672e26f2e2e627592276df2f08401","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"dist":{"shasum":"b22a9c70323672e26f2e2e627592276df2f08401","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-0.10.1.tgz"}},"0.11.0":{"name":"eslint-plugin-import","version":"0.11.0","description":"Import with sanity.","main":"lib/index.js","directories":{"test":"tests"},"scripts":{"watch":"babel -d lib/ src/ --watch & mocha --recursive --reporter dot --compilers js:babel/register --watch tests/src/","cover":"npm run pretest && NODE_PATH=./lib istanbul cover --dir reports/coverage _mocha tests/lib/ -- --recursive --reporter dot; remap-istanbul -i reports/coverage/coverage.json -o reports/coverage/lcov-report --type html","test":"NODE_PATH=./lib mocha --recursive --reporter dot tests/lib/","ci-test":"npm run-script pretest && mocha --recursive --reporter dot tests/lib/","debug":"mocha debug --recursive --reporter dot tests/lib/","compile":"rm -rf lib/ && babel -d lib/ src/","prepublish":"eslint ./src && npm run compile","pretest":"npm run compile && babel -d tests/lib/ tests/src/","coveralls":"istanbul cover --report lcovonly --dir reports/coverage _mocha tests/lib/ -- --recursive --reporter dot; remap-istanbul -i reports/coverage/coverage.json -o reports/coverage/lcov.info --type lcovonly && cat ./reports/coverage/lcov.info | coveralls"},"repository":{"type":"git","url":"git+https://github.com/benmosher/eslint-plugin-import.git"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","email":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"babel":"5.x","babel-eslint":"^4.1.4","chai":"^3.4.0","coveralls":"^2.11.4","eslint":">=1.8.0","istanbul":"^0.4.0","mocha":"^2.2.1","remap-istanbul":"^0.4.0","eslint-import-resolver-webpack":"file:./resolvers/webpack","eslint-import-resolver-node":"file:./resolvers/node"},"peerDependencies":{"eslint":">=1.4.0"},"dependencies":{"babel-runtime":"5.x","babylon":"^6.1.2","eslint-import-resolver-node":"^0.1.0"},"greenkeeper":{"ignore":["babel","babel-runtime"]},"gitHead":"31644c327cd44fe587e2a02a61f2ca3112c1c4e8","_id":"eslint-plugin-import@0.11.0","_shasum":"663f44749ccb9e2b7380d76f9c72c22c2e7a2728","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"dist":{"shasum":"663f44749ccb9e2b7380d76f9c72c22c2e7a2728","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-0.11.0.tgz"}},"0.12.0":{"name":"eslint-plugin-import","version":"0.12.0","description":"Import with sanity.","main":"lib/index.js","directories":{"test":"tests"},"scripts":{"watch":"babel -d lib/ src/ --watch & mocha --recursive --reporter dot --compilers js:babel/register --watch tests/src/","cover":"npm run pretest && NODE_PATH=./lib istanbul cover --dir reports/coverage _mocha tests/lib/ -- --recursive --reporter dot; remap-istanbul -i reports/coverage/coverage.json -o reports/coverage/lcov-report --type html","test":"NODE_PATH=./lib mocha --recursive --reporter dot tests/lib/","ci-test":"eslint ./src && npm run-script pretest && istanbul cover --report lcovonly --dir reports/coverage _mocha tests/lib/ -- --recursive --reporter dot","debug":"NODE_PATH=./lib mocha debug --recursive --reporter dot tests/lib/","compile":"rm -rf lib/ && babel -d lib/ src/","prepublish":"eslint ./src && npm run compile","pretest":"npm run compile && babel -d tests/lib/ tests/src/","coveralls":"remap-istanbul -i reports/coverage/coverage.json -o reports/coverage/lcov.info --type lcovonly && cat ./reports/coverage/lcov.info | coveralls"},"repository":{"type":"git","url":"git+https://github.com/benmosher/eslint-plugin-import.git"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","email":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"babel":"5.x","babel-eslint":"^4.1.4","chai":"^3.4.0","coveralls":"^2.11.4","eslint":">=1.8.0","eslint-import-resolver-node":"file:./resolvers/node","eslint-import-resolver-webpack":"file:./resolvers/webpack","istanbul":"^0.4.0","mocha":"^2.2.1","redux":"^3.0.4","remap-istanbul":"^0.5.1"},"peerDependencies":{"eslint":">=1.4.0"},"dependencies":{"babel-runtime":"5.x","babylon":"^6.1.2","eslint-import-resolver-node":"^0.1.0"},"greenkeeper":{"ignore":["babel","babel-runtime"]},"gitHead":"dbd358ccc114d7b588f6b4b5e528338878646160","_id":"eslint-plugin-import@0.12.0","_shasum":"363862c6869b4de589aeac2bcc9e5a592a512152","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.3","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"dist":{"shasum":"363862c6869b4de589aeac2bcc9e5a592a512152","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-0.12.0.tgz"}},"0.12.1":{"name":"eslint-plugin-import","version":"0.12.1","description":"Import with sanity.","main":"lib/index.js","directories":{"test":"tests"},"scripts":{"watch":"babel -d lib/ src/ --watch & mocha --recursive --reporter dot --compilers js:babel/register --watch tests/src/","cover":"npm run pretest && NODE_PATH=./lib istanbul cover --dir reports/coverage _mocha tests/lib/ -- --recursive --reporter dot; remap-istanbul -i reports/coverage/coverage.json -o reports/coverage/lcov-report --type html","test":"NODE_PATH=./lib mocha --recursive --reporter dot tests/lib/","ci-test":"eslint ./src && npm run-script pretest && istanbul cover --report lcovonly --dir reports/coverage _mocha tests/lib/ -- --recursive --reporter dot","debug":"NODE_PATH=./lib mocha debug --recursive --reporter dot tests/lib/","compile":"rm -rf lib/ && babel -d lib/ src/","prepublish":"eslint ./src && npm run compile","pretest":"npm run compile && babel -d tests/lib/ tests/src/","coveralls":"remap-istanbul -i reports/coverage/coverage.json -o reports/coverage/lcov.info --type lcovonly && cat ./reports/coverage/lcov.info | coveralls"},"repository":{"type":"git","url":"git+https://github.com/benmosher/eslint-plugin-import.git"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","email":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"babel":"5.x","babel-eslint":"^4.1.4","chai":"^3.4.0","coveralls":"^2.11.4","eslint":">=1.8.0","eslint-import-resolver-node":"file:./resolvers/node","eslint-import-resolver-webpack":"file:./resolvers/webpack","istanbul":"^0.4.0","mocha":"^2.2.1","redux":"^3.0.4","remap-istanbul":"^0.5.1"},"peerDependencies":{"eslint":">=1.4.0"},"dependencies":{"babel-runtime":"5.x","babylon":"^6.1.2","eslint-import-resolver-node":"^0.1.0"},"greenkeeper":{"ignore":["babel","babel-runtime"]},"gitHead":"97c5ab8c87661282936d9eec43fd0b53b4147ffc","_id":"eslint-plugin-import@0.12.1","_shasum":"656a9ba6b93ae51ce74c2d3034b6e856afa74475","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.3","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"dist":{"shasum":"656a9ba6b93ae51ce74c2d3034b6e856afa74475","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-0.12.1.tgz"}},"0.13.0":{"name":"eslint-plugin-import","version":"0.13.0","description":"Import with sanity.","main":"lib/index.js","directories":{"test":"tests"},"scripts":{"watch":"NODE_PATH=./lib gulp watch-test","cover":"gulp pretest && NODE_PATH=./lib istanbul cover --dir reports/coverage _mocha tests/lib/ -- --recursive -R progress","test":"NODE_PATH=./lib gulp test","ci-test":"eslint ./src && gulp pretest && istanbul cover --report lcovonly --dir reports/coverage _mocha tests/lib/ -- --recursive --reporter dot","debug":"NODE_PATH=./lib mocha debug --recursive --reporter dot tests/lib/","prepublish":"eslint ./src && gulp prepublish","coveralls":"remap-istanbul -i reports/coverage/coverage.json -o reports/coverage/lcov.info --type lcovonly && cat ./reports/coverage/lcov.info | coveralls"},"repository":{"type":"git","url":"git+https://github.com/benmosher/eslint-plugin-import.git"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","email":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"babel":"5.x","babel-eslint":"^4.1.4","chai":"^3.4.0","coveralls":"^2.11.4","eslint":">=1.8.0","eslint-import-resolver-node":"file:./resolvers/node","eslint-import-resolver-webpack":"file:./resolvers/webpack","glob":"^6.0.2","gulp":"^3.9.0","gulp-babel":"5.x","gulp-changed":"^1.3.0","gulp-mocha":"^2.2.0","istanbul":"^0.4.0","mocha":"^2.2.1","redux":"^3.0.4","remap-istanbul":"^0.5.1"},"peerDependencies":{"eslint":">=1.4.0"},"dependencies":{"babel-runtime":"5.x","babylon":"^6.1.2","eslint-import-resolver-node":"^0.1.0"},"greenkeeper":{"ignore":["babel","babel-runtime"]},"gitHead":"d850b71372bced3b12ae8c17da15d855899f979a","_id":"eslint-plugin-import@0.13.0","_shasum":"b766e076e0bc3952bc1b502f444a5a865437a3b6","_from":".","_npmVersion":"3.5.3","_nodeVersion":"4.2.6","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"dist":{"shasum":"b766e076e0bc3952bc1b502f444a5a865437a3b6","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-0.13.0.tgz"},"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/eslint-plugin-import-0.13.0.tgz_1454963439609_0.7346857672091573"}},"1.0.0-beta.0":{"name":"eslint-plugin-import","version":"1.0.0-beta.0","description":"Import with sanity.","main":"lib/index.js","directories":{"test":"tests"},"scripts":{"watch":"NODE_PATH=./lib gulp watch-test","cover":"gulp pretest && NODE_PATH=./lib istanbul cover --dir reports/coverage _mocha tests/lib/ -- --recursive -R progress","test":"NODE_PATH=./lib gulp test","ci-test":"eslint ./src && gulp pretest && istanbul cover --report lcovonly --dir reports/coverage _mocha tests/lib/ -- --recursive --reporter dot","debug":"NODE_PATH=./lib mocha debug --recursive --reporter dot tests/lib/","prepublish":"eslint ./src && gulp prepublish","coveralls":"cat ./reports/coverage/lcov.info | coveralls"},"repository":{"type":"git","url":"git+https://github.com/benmosher/eslint-plugin-import.git"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","email":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"babel":"6.5.1","babel-eslint":"^4.1.8","babel-plugin-transform-runtime":"6.5.2","babel-preset-es2015":"6.5.0","babel-preset-react":"6.5.0","babel-preset-stage-1":"6.5.0","chai":"^3.4.0","coveralls":"^2.11.4","eslint":"2.x","eslint-import-resolver-node":"file:./resolvers/node","eslint-import-resolver-webpack":"file:./resolvers/webpack","glob":"^6.0.2","gulp":"^3.9.0","gulp-babel":"6.1.2","gulp-changed":"^1.3.0","gulp-mocha":"^2.2.0","istanbul":"^0.4.0","mocha":"^2.2.1","redux":"^3.0.4","rimraf":"2.5.2"},"peerDependencies":{"eslint":"2.x"},"dependencies":{"babel-runtime":"6.5.0","eslint-import-resolver-node":"^0.1.0"},"greenkeeper":{"ignore":["babel","babel-runtime"]},"gitHead":"6524be6d7a4df921d2126e4c88b611457eee74d7","_id":"eslint-plugin-import@1.0.0-beta.0","_shasum":"fe30edc742cfed3c3f1727439cdded6f16797f9a","_from":".","_npmVersion":"3.5.3","_nodeVersion":"4.2.6","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"dist":{"shasum":"fe30edc742cfed3c3f1727439cdded6f16797f9a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-1.0.0-beta.0.tgz"},"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/eslint-plugin-import-1.0.0-beta.0.tgz_1455410518333_0.9735815797466785"}},"1.0.0":{"name":"eslint-plugin-import","version":"1.0.0","description":"Import with sanity.","main":"lib/index.js","directories":{"test":"tests"},"scripts":{"watch":"NODE_PATH=./lib gulp watch-test","cover":"gulp pretest && NODE_PATH=./lib istanbul cover --dir reports/coverage _mocha tests/lib/ -- --recursive -R progress","posttest":"eslint ./src","test":"NODE_PATH=./lib gulp test","ci-test":"eslint ./src && gulp pretest && istanbul cover --report lcovonly --dir reports/coverage _mocha tests/lib/ -- --recursive --reporter dot","debug":"NODE_PATH=./lib mocha debug --recursive --reporter dot tests/lib/","prepublish":"gulp prepublish","coveralls":"cat ./reports/coverage/lcov.info | coveralls"},"repository":{"type":"git","url":"git+https://github.com/benmosher/eslint-plugin-import.git"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","email":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"babel":"6.5.1","babel-eslint":"^5.0.0","babel-plugin-transform-runtime":"6.5.2","babel-preset-es2015":"6.5.0","babel-preset-react":"6.5.0","babel-preset-stage-1":"6.5.0","chai":"^3.4.0","coveralls":"^2.11.4","eslint":"2.x","eslint-import-resolver-node":"file:./resolvers/node","eslint-import-resolver-webpack":"file:./resolvers/webpack","glob":"^6.0.2","gulp":"^3.9.0","gulp-babel":"6.1.2","gulp-changed":"^1.3.0","gulp-mocha":"^2.2.0","istanbul":"^0.4.0","mocha":"^2.2.1","redux":"^3.0.4","rimraf":"2.5.2"},"peerDependencies":{"eslint":"2.x"},"dependencies":{"babel-runtime":"6.5.0","doctrine":"1.2.0","eslint-import-resolver-node":"^0.1.0"},"greenkeeper":{"ignore":["babel","babel-runtime"]},"gitHead":"9b05d72f2b51e28b7e47eeed20e5cabcdb740264","_id":"eslint-plugin-import@1.0.0","_shasum":"60987d96c89cdd5d2a11511f9d96232fda0af4db","_from":".","_npmVersion":"3.7.2","_nodeVersion":"4.2.5","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"dist":{"shasum":"60987d96c89cdd5d2a11511f9d96232fda0af4db","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-1.0.0.tgz"},"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/eslint-plugin-import-1.0.0.tgz_1456318193271_0.5428250432014465"}},"1.0.1":{"name":"eslint-plugin-import","version":"1.0.1","description":"Import with sanity.","main":"lib/index.js","directories":{"test":"tests"},"scripts":{"watch":"NODE_PATH=./lib gulp watch-test","cover":"gulp pretest && NODE_PATH=./lib istanbul cover --dir reports/coverage _mocha tests/lib/ -- --recursive -R progress","posttest":"eslint ./src","test":"NODE_PATH=./lib gulp test","ci-test":"eslint ./src && gulp pretest && istanbul cover --report lcovonly --dir reports/coverage _mocha tests/lib/ -- --recursive --reporter dot","debug":"NODE_PATH=./lib mocha debug --recursive --reporter dot tests/lib/","prepublish":"gulp prepublish","coveralls":"cat ./reports/coverage/lcov.info | coveralls"},"repository":{"type":"git","url":"git+https://github.com/benmosher/eslint-plugin-import.git"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","email":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"babel":"6.5.1","babel-eslint":"^5.0.0","babel-plugin-transform-runtime":"6.5.2","babel-preset-es2015":"6.5.0","babel-preset-react":"6.5.0","babel-preset-stage-1":"6.5.0","chai":"^3.4.0","coveralls":"^2.11.4","eslint":"2.x","eslint-import-resolver-node":"file:./resolvers/node","eslint-import-resolver-webpack":"file:./resolvers/webpack","glob":"^6.0.2","gulp":"^3.9.0","gulp-babel":"6.1.2","gulp-changed":"^1.3.0","gulp-mocha":"^2.2.0","istanbul":"^0.4.0","mocha":"^2.2.1","redux":"^3.0.4","rimraf":"2.5.2"},"peerDependencies":{"eslint":"2.x"},"dependencies":{"babel-runtime":"6.5.0","doctrine":"1.2.0","eslint-import-resolver-node":"^0.1.0"},"greenkeeper":{"ignore":["babel","babel-runtime"]},"gitHead":"d6e8f84b8d74b377baf2b1bf87895c102071bac5","_id":"eslint-plugin-import@1.0.1","_shasum":"2960ae073583ac83ed2d094aa7a96321292502a4","_from":".","_npmVersion":"3.7.2","_nodeVersion":"4.2.6","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"dist":{"shasum":"2960ae073583ac83ed2d094aa7a96321292502a4","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-1.0.1.tgz"},"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/eslint-plugin-import-1.0.1.tgz_1456402283385_0.19070490379817784"}},"1.0.2":{"name":"eslint-plugin-import","version":"1.0.2","description":"Import with sanity.","main":"lib/index.js","directories":{"test":"tests"},"scripts":{"watch":"NODE_PATH=./lib gulp watch-test","cover":"gulp pretest && NODE_PATH=./lib istanbul cover --dir reports/coverage _mocha tests/lib/ -- --recursive -R progress","posttest":"eslint ./src","test":"NODE_PATH=./lib gulp test","ci-test":"eslint ./src && gulp pretest && istanbul cover --report lcovonly --dir reports/coverage _mocha tests/lib/ -- --recursive --reporter dot","debug":"NODE_PATH=./lib mocha debug --recursive --reporter dot tests/lib/","prepublish":"gulp prepublish","coveralls":"cat ./reports/coverage/lcov.info | coveralls"},"repository":{"type":"git","url":"git+https://github.com/benmosher/eslint-plugin-import.git"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","email":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"babel":"6.5.1","babel-eslint":"^5.0.0","babel-plugin-transform-runtime":"6.5.2","babel-preset-es2015":"6.5.0","babel-preset-react":"6.5.0","babel-preset-stage-1":"6.5.0","chai":"^3.4.0","coveralls":"^2.11.4","eslint":"2.x","eslint-import-resolver-node":"file:./resolvers/node","eslint-import-resolver-webpack":"file:./resolvers/webpack","glob":"^6.0.2","gulp":"^3.9.0","gulp-babel":"6.1.2","gulp-changed":"^1.3.0","gulp-mocha":"^2.2.0","istanbul":"^0.4.0","mocha":"^2.2.1","redux":"^3.0.4","rimraf":"2.5.2"},"peerDependencies":{"eslint":"2.x"},"dependencies":{"babel-runtime":"6.5.0","doctrine":"1.2.0","eslint-import-resolver-node":"^0.1.0"},"greenkeeper":{"ignore":["babel","babel-runtime"]},"gitHead":"535142aa8edddc76e770f6e8fba2c44c027a11fe","_id":"eslint-plugin-import@1.0.2","_shasum":"dc653111354c98902ce95990681dfe28fed5f713","_from":".","_npmVersion":"3.7.2","_nodeVersion":"4.2.6","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"dist":{"shasum":"dc653111354c98902ce95990681dfe28fed5f713","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-1.0.2.tgz"},"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/eslint-plugin-import-1.0.2.tgz_1456485689314_0.05339068849571049"}},"1.0.3":{"name":"eslint-plugin-import","version":"1.0.3","description":"Import with sanity.","main":"lib/index.js","directories":{"test":"tests"},"scripts":{"watch":"NODE_PATH=./lib gulp watch-test","cover":"gulp pretest && NODE_PATH=./lib istanbul cover --dir reports/coverage _mocha tests/lib/ -- --recursive -R progress","posttest":"eslint ./src","test":"NODE_PATH=./lib gulp test","ci-test":"eslint ./src && gulp pretest && istanbul cover --report lcovonly --dir reports/coverage _mocha tests/lib/ -- --recursive --reporter dot","debug":"NODE_PATH=./lib mocha debug --recursive --reporter dot tests/lib/","prepublish":"gulp prepublish","coveralls":"cat ./reports/coverage/lcov.info | coveralls"},"repository":{"type":"git","url":"git+https://github.com/benmosher/eslint-plugin-import.git"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","email":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"babel":"6.5.1","babel-eslint":"^5.0.0","babel-plugin-transform-runtime":"6.5.2","babel-preset-es2015":"6.5.0","babel-preset-react":"6.5.0","babel-preset-stage-1":"6.5.0","chai":"^3.4.0","coveralls":"^2.11.4","eslint":"2.x","eslint-import-resolver-node":"file:./resolvers/node","eslint-import-resolver-webpack":"file:./resolvers/webpack","glob":"^6.0.2","gulp":"^3.9.0","gulp-babel":"6.1.2","gulp-changed":"^1.3.0","gulp-mocha":"^2.2.0","istanbul":"^0.4.0","mocha":"^2.2.1","redux":"^3.0.4","rimraf":"2.5.2"},"peerDependencies":{"eslint":"2.x"},"dependencies":{"babel-runtime":"6.5.0","doctrine":"1.2.0","eslint-import-resolver-node":"^0.1.0"},"greenkeeper":{"ignore":["babel","babel-runtime"]},"gitHead":"4aa17e620e3d1bba985b2e1a70926bec86264185","_id":"eslint-plugin-import@1.0.3","_shasum":"f6f82d626962b156081f737545cd1c49ca03a758","_from":".","_npmVersion":"3.7.2","_nodeVersion":"4.2.5","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"dist":{"shasum":"f6f82d626962b156081f737545cd1c49ca03a758","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-1.0.3.tgz"},"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/eslint-plugin-import-1.0.3.tgz_1456490820133_0.683734409045428"}},"1.0.4":{"name":"eslint-plugin-import","version":"1.0.4","description":"Import with sanity.","main":"lib/index.js","directories":{"test":"tests"},"scripts":{"watch":"NODE_PATH=./lib gulp watch-test","cover":"gulp pretest && NODE_PATH=./lib istanbul cover --dir reports/coverage _mocha tests/lib/ -- --recursive -R progress","posttest":"eslint ./src","test":"NODE_PATH=./lib gulp test","ci-test":"eslint ./src && gulp pretest && istanbul cover --report lcovonly --dir reports/coverage _mocha tests/lib/ -- --recursive --reporter dot","debug":"NODE_PATH=./lib mocha debug --recursive --reporter dot tests/lib/","prepublish":"gulp prepublish","coveralls":"cat ./reports/coverage/lcov.info | coveralls"},"repository":{"type":"git","url":"git+https://github.com/benmosher/eslint-plugin-import.git"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","email":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"babel":"6.5.1","babel-eslint":"^5.0.0","babel-plugin-transform-runtime":"6.5.2","babel-preset-es2015":"6.5.0","babel-preset-react":"6.5.0","babel-preset-stage-1":"6.5.0","chai":"^3.4.0","coveralls":"^2.11.4","eslint":"2.2.x","eslint-import-resolver-node":"file:./resolvers/node","eslint-import-resolver-webpack":"file:./resolvers/webpack","glob":"^6.0.2","gulp":"^3.9.0","gulp-babel":"6.1.2","gulp-changed":"^1.3.0","gulp-mocha":"^2.2.0","istanbul":"^0.4.0","mocha":"^2.2.1","redux":"^3.0.4","rimraf":"2.5.2"},"peerDependencies":{"eslint":"2.x"},"dependencies":{"babel-runtime":"6.5.0","doctrine":"1.2.0","eslint-import-resolver-node":"^0.1.0"},"greenkeeper":{"ignore":["babel","babel-runtime"]},"gitHead":"10b1574a3010f947e4727a778c0932cea2998d51","_id":"eslint-plugin-import@1.0.4","_shasum":"2ea3f1a6f34451c34432d4c62a51854fdc460466","_from":".","_npmVersion":"3.7.2","_nodeVersion":"4.2.5","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"dist":{"shasum":"2ea3f1a6f34451c34432d4c62a51854fdc460466","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-1.0.4.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/eslint-plugin-import-1.0.4.tgz_1457697948309_0.17079406580887735"}},"1.1.0":{"name":"eslint-plugin-import","version":"1.1.0","description":"Import with sanity.","main":"lib/index.js","directories":{"test":"tests"},"scripts":{"watch":"cross-env NODE_PATH=./lib gulp watch-test","cover":"gulp pretest && cross-env NODE_PATH=./lib istanbul cover --dir reports/coverage _mocha tests/lib/ -- --recursive -R progress","posttest":"eslint ./src","test":"cross-env NODE_PATH=./lib gulp test","ci-test":"eslint ./src && gulp pretest && cross-env NODE_PATH=./lib istanbul cover --report lcovonly --dir reports/coverage _mocha tests/lib/ -- --recursive --reporter dot","debug":"cross-env NODE_PATH=./lib mocha debug --recursive --reporter dot tests/lib/","prepublish":"gulp prepublish","coveralls":"cat ./reports/coverage/lcov.info | coveralls"},"repository":{"type":"git","url":"git+https://github.com/benmosher/eslint-plugin-import.git"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","email":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"babel-eslint":"next","babel-plugin-transform-runtime":"6.5.2","babel-preset-es2015":"6.5.0","babel-preset-react":"6.5.0","babel-preset-stage-1":"6.5.0","chai":"^3.4.0","coveralls":"^2.11.4","cross-env":"^1.0.7","eslint":"2.x","eslint-import-resolver-node":"file:./resolvers/node","eslint-import-resolver-webpack":"file:./resolvers/webpack","glob":"^6.0.2","gulp":"^3.9.0","gulp-babel":"6.1.2","gulp-changed":"^1.3.0","gulp-mocha":"^2.2.0","istanbul":"^0.4.0","mocha":"^2.2.1","redux":"^3.0.4","rimraf":"2.5.2"},"peerDependencies":{"eslint":"2.x"},"dependencies":{"babel-runtime":"6.5.0","doctrine":"1.2.0","eslint-import-resolver-node":"^0.1.0"},"greenkeeper":{"ignore":["babel","babel-runtime"]},"gitHead":"35633fce21b5fb3d85a337f15eb07612e5a9d9d8","_id":"eslint-plugin-import@1.1.0","_shasum":"2bd12e2b5f3285834da7f456b4502b5d44a8a106","_from":".","_npmVersion":"3.7.2","_nodeVersion":"4.2.5","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"dist":{"shasum":"2bd12e2b5f3285834da7f456b4502b5d44a8a106","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-1.1.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/eslint-plugin-import-1.1.0.tgz_1458041211594_0.24826486431993544"}},"1.2.0":{"name":"eslint-plugin-import","version":"1.2.0","description":"Import with sanity.","main":"lib/index.js","directories":{"test":"tests"},"scripts":{"watch":"cross-env NODE_PATH=./lib gulp watch-test","cover":"gulp pretest && cross-env NODE_PATH=./lib istanbul cover --dir reports/coverage _mocha tests/lib/ -- --recursive -R progress","posttest":"eslint ./src","test":"cross-env NODE_PATH=./lib gulp test","ci-test":"eslint ./src && gulp pretest && cross-env NODE_PATH=./lib istanbul cover --report lcovonly --dir reports/coverage _mocha tests/lib/ -- --recursive --reporter dot","debug":"cross-env NODE_PATH=./lib mocha debug --recursive --reporter dot tests/lib/","prepublish":"gulp prepublish","coveralls":"cat ./reports/coverage/lcov.info | coveralls"},"repository":{"type":"git","url":"git+https://github.com/benmosher/eslint-plugin-import.git"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","email":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"babel-eslint":"next","babel-plugin-transform-runtime":"6.5.2","babel-preset-es2015":"6.5.0","babel-preset-react":"6.5.0","babel-preset-stage-1":"6.5.0","chai":"^3.4.0","coveralls":"^2.11.4","cross-env":"^1.0.7","eslint":"2.x","eslint-import-resolver-node":"file:./resolvers/node","eslint-import-resolver-webpack":"file:./resolvers/webpack","glob":"^6.0.2","gulp":"^3.9.0","gulp-babel":"6.1.2","gulp-changed":"^1.3.0","gulp-mocha":"^2.2.0","istanbul":"^0.4.0","mocha":"^2.2.1","redux":"^3.0.4","rimraf":"2.5.2"},"peerDependencies":{"eslint":"2.x"},"dependencies":{"babel-runtime":"6.5.0","doctrine":"1.2.0","eslint-import-resolver-node":"^0.1.0"},"greenkeeper":{"ignore":["babel","babel-runtime"]},"gitHead":"9376fa4b373b2b300520e05db77aaa89b3fad3b0","_id":"eslint-plugin-import@1.2.0","_shasum":"0f8dbdb6209a853f11831749a0067dbb80417a50","_from":".","_npmVersion":"3.7.2","_nodeVersion":"4.2.5","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"dist":{"shasum":"0f8dbdb6209a853f11831749a0067dbb80417a50","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-1.2.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/eslint-plugin-import-1.2.0.tgz_1458388108318_0.8944369514938444"}},"1.3.0":{"name":"eslint-plugin-import","version":"1.3.0","description":"Import with sanity.","main":"lib/index.js","directories":{"test":"tests"},"scripts":{"watch":"cross-env NODE_PATH=./lib gulp watch-test","cover":"gulp pretest && cross-env NODE_PATH=./lib istanbul cover --dir reports/coverage _mocha tests/lib/ -- --recursive -R progress","posttest":"eslint ./src","test":"cross-env NODE_PATH=./lib gulp test","ci-test":"eslint ./src && gulp pretest && cross-env NODE_PATH=./lib istanbul cover --report lcovonly --dir reports/coverage _mocha tests/lib/ -- --recursive --reporter dot","debug":"cross-env NODE_PATH=./lib mocha debug --recursive --reporter dot tests/lib/","prepublish":"gulp prepublish","coveralls":"cat ./reports/coverage/lcov.info | coveralls"},"repository":{"type":"git","url":"git+https://github.com/benmosher/eslint-plugin-import.git"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","email":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"babel-eslint":"next","babel-plugin-transform-runtime":"6.5.2","babel-preset-es2015":"6.5.0","babel-preset-react":"6.5.0","babel-preset-stage-1":"6.5.0","chai":"^3.4.0","coveralls":"^2.11.4","cross-env":"^1.0.7","eslint":"2.x","eslint-import-resolver-node":"file:./resolvers/node","eslint-import-resolver-webpack":"file:./resolvers/webpack","glob":"^6.0.2","gulp":"^3.9.0","gulp-babel":"6.1.2","gulp-changed":"^1.3.0","gulp-mocha":"^2.2.0","istanbul":"^0.4.0","mocha":"^2.2.1","redux":"^3.0.4","rimraf":"2.5.2"},"peerDependencies":{"eslint":"2.x"},"dependencies":{"babel-runtime":"6.5.0","doctrine":"1.2.0","eslint-import-resolver-node":"^0.1.0"},"greenkeeper":{"ignore":["babel","babel-runtime"]},"gitHead":"2a1ff24500815d30f95de7c2acb47089afe493a9","_id":"eslint-plugin-import@1.3.0","_shasum":"0a977efd5a9897939801b53f561f1b56ffa91f76","_from":".","_npmVersion":"3.7.2","_nodeVersion":"4.2.5","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"dist":{"shasum":"0a977efd5a9897939801b53f561f1b56ffa91f76","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-1.3.0.tgz"},"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/eslint-plugin-import-1.3.0.tgz_1458504257896_0.0009486265480518341"}},"1.4.0":{"name":"eslint-plugin-import","version":"1.4.0","description":"Import with sanity.","main":"lib/index.js","directories":{"test":"tests"},"files":["lib","config","memo-parser"],"scripts":{"watch":"cross-env NODE_PATH=./lib gulp watch-test","cover":"gulp pretest && cross-env NODE_PATH=./lib istanbul cover --dir reports/coverage _mocha tests/lib/ -- --recursive -R progress","posttest":"eslint ./src","test":"cross-env NODE_PATH=./lib gulp test","test-all":"npm test && for resolver in ./resolvers/*; do cd $resolver && npm test && cd ../..; done","ci-test":"eslint ./src && gulp pretest && cross-env NODE_PATH=./lib istanbul cover --report lcovonly --dir reports/coverage _mocha tests/lib/ -- --recursive --reporter dot","debug":"cross-env NODE_PATH=./lib mocha debug --recursive --reporter dot tests/lib/","prepublish":"gulp prepublish","coveralls":"cat ./reports/coverage/lcov.info | coveralls"},"repository":{"type":"git","url":"git+https://github.com/benmosher/eslint-plugin-import.git"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","email":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"babel-eslint":"next","babel-preset-es2015":"^6.6.0","babel-preset-es2015-loose":"^7.0.0","chai":"^3.4.0","coveralls":"^2.11.4","cross-env":"^1.0.7","eslint":"2.x","eslint-import-resolver-node":"file:./resolvers/node","eslint-import-resolver-webpack":"file:./resolvers/webpack","glob":"^6.0.2","gulp":"^3.9.0","gulp-babel":"6.1.2","gulp-changed":"^1.3.0","gulp-mocha":"^2.2.0","istanbul":"^0.4.0","mocha":"^2.2.1","redux":"^3.0.4","rimraf":"2.5.2"},"peerDependencies":{"eslint":"2.x"},"dependencies":{"doctrine":"1.2.0","es6-map":"^0.1.3","es6-set":"^0.1.4","es6-symbol":"*","eslint-import-resolver-node":"^0.2.0","object-assign":"^4.0.1"},"gitHead":"a7cf6bdec281d3c879e2dfb01e4b5116ef17922e","_id":"eslint-plugin-import@1.4.0","_shasum":"83b6dfe519dc6bf41033c3e611743f9fc7c61717","_from":".","_npmVersion":"3.7.2","_nodeVersion":"4.2.5","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"dist":{"shasum":"83b6dfe519dc6bf41033c3e611743f9fc7c61717","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-1.4.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/eslint-plugin-import-1.4.0.tgz_1458903259511_0.9035466855857521"}},"1.5.0":{"name":"eslint-plugin-import","version":"1.5.0","description":"Import with sanity.","main":"lib/index.js","directories":{"test":"tests"},"files":["lib","config","memo-parser"],"scripts":{"watch":"cross-env NODE_PATH=./lib gulp watch-test","cover":"gulp pretest && cross-env NODE_PATH=./lib istanbul cover --dir reports/coverage _mocha tests/lib/ -- --recursive -R progress","posttest":"eslint ./src","test":"cross-env NODE_PATH=./lib gulp test","test-all":"npm test && for resolver in ./resolvers/*; do cd $resolver && npm test && cd ../..; done","ci-test":"eslint ./src && gulp pretest && cross-env NODE_PATH=./lib istanbul cover --report lcovonly --dir reports/coverage _mocha tests/lib/ -- --recursive --reporter dot","debug":"cross-env NODE_PATH=./lib mocha debug --recursive --reporter dot tests/lib/","prepublish":"gulp prepublish","coveralls":"cat ./reports/coverage/lcov.info | coveralls"},"repository":{"type":"git","url":"git+https://github.com/benmosher/eslint-plugin-import.git"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","email":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"babel-eslint":"next","babel-preset-es2015":"^6.6.0","babel-preset-es2015-loose":"^7.0.0","chai":"^3.4.0","coveralls":"^2.11.4","cross-env":"^1.0.7","eslint":"2.x","eslint-import-resolver-node":"file:./resolvers/node","eslint-import-resolver-webpack":"file:./resolvers/webpack","glob":"^6.0.2","gulp":"^3.9.0","gulp-babel":"6.1.2","gulp-changed":"^1.3.0","gulp-mocha":"^2.2.0","istanbul":"^0.4.0","mocha":"^2.2.1","redux":"^3.0.4","rimraf":"2.5.2"},"peerDependencies":{"eslint":"2.x"},"dependencies":{"doctrine":"1.2.0","es6-map":"^0.1.3","es6-set":"^0.1.4","es6-symbol":"*","eslint-import-resolver-node":"^0.2.0","object-assign":"^4.0.1"},"gitHead":"1ea16f67f98fccc76f232bc5c52296d53a0faf8b","_id":"eslint-plugin-import@1.5.0","_shasum":"fd09ddf4cafa65f6aa146334e79e2fd74170c3b7","_from":".","_npmVersion":"3.7.2","_nodeVersion":"4.2.5","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"dist":{"shasum":"fd09ddf4cafa65f6aa146334e79e2fd74170c3b7","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-1.5.0.tgz"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/eslint-plugin-import-1.5.0.tgz_1460976920279_0.6493559314403683"}},"1.6.0":{"name":"eslint-plugin-import","version":"1.6.0","description":"Import with sanity.","main":"lib/index.js","directories":{"test":"tests"},"files":["lib","config","memo-parser"],"scripts":{"watch":"cross-env NODE_PATH=./lib gulp watch-test","cover":"gulp pretest && cross-env NODE_PATH=./lib istanbul cover --dir reports/coverage _mocha tests/lib/ -- --recursive -R progress","posttest":"eslint ./src","test":"cross-env NODE_PATH=./lib gulp test","test-all":"npm test && for resolver in ./resolvers/*; do cd $resolver && npm test && cd ../..; done","ci-test":"eslint ./src && gulp pretest && cross-env NODE_PATH=./lib istanbul cover --report lcovonly --dir reports/coverage _mocha tests/lib/ -- --recursive --reporter dot","debug":"cross-env NODE_PATH=./lib mocha debug --recursive --reporter dot tests/lib/","prepublish":"gulp prepublish","coveralls":"cat ./reports/coverage/lcov.info | coveralls"},"repository":{"type":"git","url":"git+https://github.com/benmosher/eslint-plugin-import.git"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","email":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"babel-eslint":"next","babel-preset-es2015":"^6.6.0","babel-preset-es2015-loose":"^7.0.0","chai":"^3.4.0","coveralls":"^2.11.4","cross-env":"^1.0.7","eslint":"2.x","eslint-import-resolver-node":"file:./resolvers/node","eslint-import-resolver-webpack":"file:./resolvers/webpack","glob":"^6.0.2","gulp":"^3.9.0","gulp-babel":"6.1.2","gulp-changed":"^1.3.0","gulp-mocha":"^2.2.0","istanbul":"^0.4.0","mocha":"^2.2.1","redux":"^3.0.4","rimraf":"2.5.2"},"peerDependencies":{"eslint":"2.x"},"dependencies":{"builtin-modules":"^1.1.1","doctrine":"1.2.x","es6-map":"^0.1.3","es6-set":"^0.1.4","es6-symbol":"*","eslint-import-resolver-node":"^0.2.0","lodash.cond":"^4.3.0","lodash.endswith":"^4.0.1","lodash.find":"^4.3.0","object-assign":"^4.0.1","pkg-up":"^1.0.0"},"gitHead":"ea1b0e3d2d0c58287d8513a71e79100b48feed38","_id":"eslint-plugin-import@1.6.0","_shasum":"6c51627a9ff34c23b2e9c5797a682349c669262f","_from":".","_npmVersion":"3.7.2","_nodeVersion":"4.2.5","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"dist":{"shasum":"6c51627a9ff34c23b2e9c5797a682349c669262f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-1.6.0.tgz"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/eslint-plugin-import-1.6.0.tgz_1461608985112_0.633720048237592"}},"1.6.1":{"name":"eslint-plugin-import","version":"1.6.1","description":"Import with sanity.","main":"lib/index.js","directories":{"test":"tests"},"files":["lib","config","memo-parser"],"scripts":{"watch":"cross-env NODE_PATH=./lib gulp watch-test","cover":"gulp pretest && cross-env NODE_PATH=./lib istanbul cover --dir reports/coverage _mocha tests/lib/ -- --recursive -R progress","posttest":"eslint ./src","test":"cross-env NODE_PATH=./lib gulp test","test-all":"npm test && for resolver in ./resolvers/*; do cd $resolver && npm test && cd ../..; done","ci-test":"eslint ./src && gulp pretest && cross-env NODE_PATH=./lib istanbul cover --report lcovonly --dir reports/coverage _mocha tests/lib/ -- --recursive --reporter dot","debug":"cross-env NODE_PATH=./lib mocha debug --recursive --reporter dot tests/lib/","prepublish":"gulp prepublish","coveralls":"cat ./reports/coverage/lcov.info | coveralls"},"repository":{"type":"git","url":"git+https://github.com/benmosher/eslint-plugin-import.git"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","email":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"babel-eslint":"next","babel-preset-es2015":"^6.6.0","babel-preset-es2015-loose":"^7.0.0","chai":"^3.4.0","coveralls":"^2.11.4","cross-env":"^1.0.7","eslint":"2.x","eslint-import-resolver-node":"file:./resolvers/node","eslint-import-resolver-webpack":"file:./resolvers/webpack","glob":"^6.0.2","gulp":"^3.9.0","gulp-babel":"6.1.2","gulp-changed":"^1.3.0","gulp-mocha":"^2.2.0","istanbul":"^0.4.0","mocha":"^2.2.1","redux":"^3.0.4","rimraf":"2.5.2"},"peerDependencies":{"eslint":"2.x"},"dependencies":{"builtin-modules":"^1.1.1","doctrine":"1.2.x","es6-map":"^0.1.3","es6-set":"^0.1.4","es6-symbol":"*","eslint-import-resolver-node":"^0.2.0","lodash.cond":"^4.3.0","lodash.endswith":"^4.0.1","lodash.find":"^4.3.0","object-assign":"^4.0.1","pkg-up":"^1.0.0"},"gitHead":"e69561c027e2e2906e8c6cedfbef94837ad0067b","_id":"eslint-plugin-import@1.6.1","_shasum":"856cd78d02a294ff7e45ed6f4cc917ae3736f29b","_from":".","_npmVersion":"3.7.2","_nodeVersion":"4.2.5","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"dist":{"shasum":"856cd78d02a294ff7e45ed6f4cc917ae3736f29b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-1.6.1.tgz"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/eslint-plugin-import-1.6.1.tgz_1461840725247_0.06146481214091182"}},"1.7.0":{"name":"eslint-plugin-import","version":"1.7.0","description":"Import with sanity.","main":"lib/index.js","directories":{"test":"tests"},"files":["lib","config","memo-parser"],"scripts":{"watch":"cross-env NODE_PATH=./lib gulp watch-test","cover":"gulp pretest && cross-env NODE_PATH=./lib istanbul cover --dir reports/coverage _mocha tests/lib/ -- --recursive -R progress","posttest":"eslint ./src","test":"cross-env NODE_PATH=./lib gulp test","test-all":"npm test && for resolver in ./resolvers/*; do cd $resolver && npm test && cd ../..; done","ci-test":"eslint ./src && gulp pretest && cross-env NODE_PATH=./lib istanbul cover --report lcovonly --dir reports/coverage _mocha tests/lib/ -- --recursive --reporter dot","debug":"cross-env NODE_PATH=./lib mocha debug --recursive --reporter dot tests/lib/","prepublish":"gulp prepublish","coveralls":"cat ./reports/coverage/lcov.info | coveralls"},"repository":{"type":"git","url":"git+https://github.com/benmosher/eslint-plugin-import.git"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","email":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"babel-eslint":"next","babel-preset-es2015":"^6.6.0","babel-preset-es2015-loose":"^7.0.0","chai":"^3.4.0","coveralls":"^2.11.4","cross-env":"^1.0.7","eslint":"2.x","eslint-import-resolver-node":"file:./resolvers/node","eslint-import-resolver-webpack":"file:./resolvers/webpack","glob":"^6.0.2","gulp":"^3.9.0","gulp-babel":"6.1.2","gulp-changed":"^1.3.0","gulp-mocha":"^2.2.0","istanbul":"^0.4.0","mocha":"^2.2.1","redux":"^3.0.4","rimraf":"2.5.2"},"peerDependencies":{"eslint":"2.x"},"dependencies":{"builtin-modules":"^1.1.1","doctrine":"1.2.x","es6-map":"^0.1.3","es6-set":"^0.1.4","es6-symbol":"*","eslint-import-resolver-node":"^0.2.0","lodash.cond":"^4.3.0","lodash.endswith":"^4.0.1","lodash.find":"^4.3.0","object-assign":"^4.0.1","pkg-up":"^1.0.0"},"gitHead":"9998b919d1e65f70410ad3d8b4adf287e2267a42","_id":"eslint-plugin-import@1.7.0","_shasum":"3b0d4f507cb1d66c487d8594cc66305e0fa3a38a","_from":".","_npmVersion":"3.7.2","_nodeVersion":"4.2.5","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"dist":{"shasum":"3b0d4f507cb1d66c487d8594cc66305e0fa3a38a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-1.7.0.tgz"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/eslint-plugin-import-1.7.0.tgz_1462537798042_0.6121445181779563"}},"1.8.0":{"name":"eslint-plugin-import","version":"1.8.0","description":"Import with sanity.","main":"lib/index.js","directories":{"test":"tests"},"files":["lib","config","memo-parser"],"scripts":{"watch":"cross-env NODE_PATH=./lib gulp watch-test","cover":"gulp pretest && cross-env NODE_PATH=./lib istanbul cover --dir reports/coverage _mocha tests/lib/ -- --recursive -R progress","posttest":"eslint ./src","test":"cross-env NODE_PATH=./lib gulp test","test-all":"npm test && for resolver in ./resolvers/*; do cd $resolver && npm test && cd ../..; done","ci-test":"eslint ./src && gulp pretest && cross-env NODE_PATH=./lib istanbul cover --report lcovonly --dir reports/coverage _mocha tests/lib/ -- --recursive --reporter dot","debug":"cross-env NODE_PATH=./lib mocha debug --recursive --reporter dot tests/lib/","prepublish":"gulp prepublish","coveralls":"cat ./reports/coverage/lcov.info | coveralls"},"repository":{"type":"git","url":"git+https://github.com/benmosher/eslint-plugin-import.git"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","email":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"babel-eslint":"next","babel-preset-es2015":"^6.6.0","babel-preset-es2015-loose":"^7.0.0","chai":"^3.4.0","coveralls":"^2.11.4","cross-env":"^1.0.7","eslint":"2.x","eslint-import-resolver-node":"file:./resolvers/node","eslint-import-resolver-webpack":"file:./resolvers/webpack","glob":"^6.0.2","gulp":"^3.9.0","gulp-babel":"6.1.2","gulp-changed":"^1.3.0","gulp-mocha":"^2.2.0","istanbul":"^0.4.0","mocha":"^2.2.1","redux":"^3.0.4","rimraf":"2.5.2"},"peerDependencies":{"eslint":"2.x"},"dependencies":{"builtin-modules":"^1.1.1","doctrine":"1.2.x","es6-map":"^0.1.3","es6-set":"^0.1.4","es6-symbol":"*","eslint-import-resolver-node":"^0.2.0","lodash.cond":"^4.3.0","lodash.endswith":"^4.0.1","lodash.find":"^4.3.0","object-assign":"^4.0.1","pkg-up":"^1.0.0"},"gitHead":"e04981707d53879c2c0ee681a45e8ca13bdd4000","_id":"eslint-plugin-import@1.8.0","_shasum":"47e681f7b26decfa94d5ccdb5584413870cf14a8","_from":".","_npmVersion":"3.7.2","_nodeVersion":"4.2.5","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"dist":{"shasum":"47e681f7b26decfa94d5ccdb5584413870cf14a8","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-1.8.0.tgz"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/eslint-plugin-import-1.8.0.tgz_1462969033301_0.07828850392252207"}},"1.8.1":{"name":"eslint-plugin-import","version":"1.8.1","description":"Import with sanity.","main":"lib/index.js","directories":{"test":"tests"},"files":["lib","config","memo-parser"],"scripts":{"watch":"cross-env NODE_PATH=./lib gulp watch-test","cover":"gulp pretest && cross-env NODE_PATH=./lib istanbul cover --dir reports/coverage _mocha tests/lib/ -- --recursive -R progress","posttest":"eslint ./src","test":"cross-env NODE_PATH=./lib gulp test","test-all":"npm test && for resolver in ./resolvers/*; do cd $resolver && npm test && cd ../..; done","ci-test":"eslint ./src && gulp pretest && cross-env NODE_PATH=./lib istanbul cover --report lcovonly --dir reports/coverage _mocha tests/lib/ -- --recursive --reporter dot","debug":"cross-env NODE_PATH=./lib mocha debug --recursive --reporter dot tests/lib/","prepublish":"gulp prepublish","coveralls":"cat ./reports/coverage/lcov.info | coveralls"},"repository":{"type":"git","url":"git+https://github.com/benmosher/eslint-plugin-import.git"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","email":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"babel-eslint":"next","babel-preset-es2015":"^6.6.0","babel-preset-es2015-loose":"^7.0.0","chai":"^3.4.0","coveralls":"^2.11.4","cross-env":"^1.0.7","eslint":"2.x","eslint-import-resolver-node":"file:./resolvers/node","eslint-import-resolver-webpack":"file:./resolvers/webpack","glob":"^6.0.2","gulp":"^3.9.0","gulp-babel":"6.1.2","gulp-changed":"^1.3.0","gulp-mocha":"^2.2.0","istanbul":"^0.4.0","mocha":"^2.2.1","redux":"^3.0.4","rimraf":"2.5.2"},"peerDependencies":{"eslint":"2.x"},"dependencies":{"builtin-modules":"^1.1.1","doctrine":"1.2.x","es6-map":"^0.1.3","es6-set":"^0.1.4","es6-symbol":"*","eslint-import-resolver-node":"^0.2.0","lodash.cond":"^4.3.0","lodash.endswith":"^4.0.1","lodash.find":"^4.3.0","lodash.findindex":"^4.3.0","object-assign":"^4.0.1","pkg-up":"^1.0.0"},"gitHead":"edb57ce718659759235e4128393892e8aa02e9cf","_id":"eslint-plugin-import@1.8.1","_shasum":"96e6a0eee892f53eaefe5e7c6c2c97b4d7422efd","_from":".","_npmVersion":"3.7.2","_nodeVersion":"4.2.5","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"dist":{"shasum":"96e6a0eee892f53eaefe5e7c6c2c97b4d7422efd","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-1.8.1.tgz"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/eslint-plugin-import-1.8.1.tgz_1464259825453_0.2500981318298727"}},"1.9.0":{"name":"eslint-plugin-import","version":"1.9.0","description":"Import with sanity.","main":"lib/index.js","directories":{"test":"tests"},"files":["lib","config","memo-parser"],"scripts":{"watch":"cross-env NODE_PATH=./lib gulp watch-test","cover":"gulp pretest && cross-env NODE_PATH=./lib istanbul cover --dir reports/coverage _mocha tests/lib/ -- --recursive -R progress","posttest":"eslint ./src","test":"cross-env NODE_PATH=./lib gulp test","test-all":"npm test && for resolver in ./resolvers/*; do cd $resolver && npm test && cd ../..; done","ci-test":"eslint ./src && gulp pretest && cross-env NODE_PATH=./lib istanbul cover --report lcovonly --dir reports/coverage _mocha tests/lib/ -- --recursive --reporter dot","debug":"cross-env NODE_PATH=./lib mocha debug --recursive --reporter dot tests/lib/","prepublish":"gulp prepublish","coveralls":"cat ./reports/coverage/lcov.info | coveralls"},"repository":{"type":"git","url":"git+https://github.com/benmosher/eslint-plugin-import.git"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","email":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"babel-eslint":"next","babel-preset-es2015":"^6.6.0","babel-preset-es2015-loose":"^7.0.0","chai":"^3.4.0","coveralls":"^2.11.4","cross-env":"^1.0.7","eslint":"2.x","eslint-import-resolver-node":"file:./resolvers/node","eslint-import-resolver-webpack":"file:./resolvers/webpack","glob":"^6.0.2","gulp":"^3.9.0","gulp-babel":"6.1.2","gulp-changed":"^1.3.0","gulp-mocha":"^2.2.0","istanbul":"^0.4.0","mocha":"^2.2.1","redux":"^3.0.4","rimraf":"2.5.2"},"peerDependencies":{"eslint":"2.x"},"dependencies":{"builtin-modules":"^1.1.1","doctrine":"1.2.x","es6-map":"^0.1.3","es6-set":"^0.1.4","es6-symbol":"*","eslint-import-resolver-node":"^0.2.0","is-absolute":"^0.2.5","lodash.cond":"^4.3.0","lodash.endswith":"^4.0.1","lodash.find":"^4.3.0","lodash.findindex":"^4.3.0","object-assign":"^4.0.1","pkg-dir":"^1.0.0","pkg-up":"^1.0.0"},"gitHead":"a36c576b345aca8a4a069398fb7688de906ac187","_id":"eslint-plugin-import@1.9.0","_shasum":"c3602a87493ff3a3e1de332bb183dc5a0c5c982e","_from":".","_npmVersion":"3.7.2","_nodeVersion":"4.2.5","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"dist":{"shasum":"c3602a87493ff3a3e1de332bb183dc5a0c5c982e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-1.9.0.tgz"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/eslint-plugin-import-1.9.0.tgz_1465475698526_0.7482778893318027"}},"1.9.1":{"name":"eslint-plugin-import","version":"1.9.1","description":"Import with sanity.","main":"lib/index.js","directories":{"test":"tests"},"files":["lib","config","memo-parser"],"scripts":{"watch":"cross-env NODE_PATH=./lib gulp watch-test","cover":"gulp pretest && cross-env NODE_PATH=./lib istanbul cover --dir reports/coverage _mocha tests/lib/ -- --recursive -R progress","posttest":"eslint ./src","test":"cross-env NODE_PATH=./lib gulp test","test-all":"npm test && for resolver in ./resolvers/*; do cd $resolver && npm test && cd ../..; done","ci-test":"eslint ./src && gulp pretest && cross-env NODE_PATH=./lib istanbul cover --report lcovonly --dir reports/coverage _mocha tests/lib/ -- --recursive --reporter dot","debug":"cross-env NODE_PATH=./lib mocha debug --recursive --reporter dot tests/lib/","prepublish":"gulp prepublish","coveralls":"cat ./reports/coverage/lcov.info | coveralls"},"repository":{"type":"git","url":"git+https://github.com/benmosher/eslint-plugin-import.git"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","email":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"babel-eslint":"next","babel-preset-es2015":"^6.6.0","babel-preset-es2015-loose":"^7.0.0","chai":"^3.4.0","coveralls":"^2.11.4","cross-env":"^1.0.7","eslint":"2.x","eslint-import-resolver-node":"file:./resolvers/node","eslint-import-resolver-webpack":"file:./resolvers/webpack","glob":"^6.0.2","gulp":"^3.9.0","gulp-babel":"6.1.2","gulp-changed":"^1.3.0","gulp-mocha":"^2.2.0","istanbul":"^0.4.0","mocha":"^2.2.1","redux":"^3.0.4","rimraf":"2.5.2"},"peerDependencies":{"eslint":"2.x"},"dependencies":{"builtin-modules":"^1.1.1","doctrine":"1.2.x","es6-map":"^0.1.3","es6-set":"^0.1.4","es6-symbol":"*","eslint-import-resolver-node":"^0.2.0","lodash.cond":"^4.3.0","lodash.endswith":"^4.0.1","lodash.find":"^4.3.0","lodash.findindex":"^4.3.0","object-assign":"^4.0.1","pkg-dir":"^1.0.0","pkg-up":"^1.0.0"},"gitHead":"9fb72740060fa7c722f5eb8546b3a9cfc93a19b2","_id":"eslint-plugin-import@1.9.1","_shasum":"41972b5dece10ed9d43f5a30258a20d8f1579724","_from":".","_npmVersion":"3.7.2","_nodeVersion":"4.2.5","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"dist":{"shasum":"41972b5dece10ed9d43f5a30258a20d8f1579724","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-1.9.1.tgz"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/eslint-plugin-import-1.9.1.tgz_1466072264827_0.2405149566475302"}},"1.9.2":{"name":"eslint-plugin-import","version":"1.9.2","description":"Import with sanity.","main":"lib/index.js","directories":{"test":"tests"},"files":["lib","config","memo-parser"],"scripts":{"watch":"cross-env NODE_PATH=./lib gulp watch-test","cover":"gulp pretest && cross-env NODE_PATH=./lib istanbul cover --dir reports/coverage _mocha tests/lib/ -- --recursive -R progress","posttest":"eslint ./src","test":"cross-env NODE_PATH=./lib gulp test","test-all":"npm test && for resolver in ./resolvers/*; do cd $resolver && npm test && cd ../..; done","ci-test":"eslint ./src && gulp pretest && cross-env NODE_PATH=./lib istanbul cover --report lcovonly --dir reports/coverage _mocha tests/lib/ -- --recursive --reporter dot","debug":"cross-env NODE_PATH=./lib mocha debug --recursive --reporter dot tests/lib/","prepublish":"gulp prepublish","coveralls":"cat ./reports/coverage/lcov.info | coveralls"},"repository":{"type":"git","url":"git+https://github.com/benmosher/eslint-plugin-import.git"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","email":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"babel-eslint":"next","babel-preset-es2015":"^6.6.0","babel-preset-es2015-loose":"^7.0.0","chai":"^3.4.0","coveralls":"^2.11.4","cross-env":"^1.0.7","eslint":"2.x","eslint-import-resolver-node":"file:./resolvers/node","eslint-import-resolver-webpack":"file:./resolvers/webpack","glob":"^6.0.2","gulp":"^3.9.0","gulp-babel":"6.1.2","gulp-changed":"^1.3.0","gulp-mocha":"^2.2.0","istanbul":"^0.4.0","mocha":"^2.2.1","redux":"^3.0.4","rimraf":"2.5.2"},"peerDependencies":{"eslint":"2.x"},"dependencies":{"builtin-modules":"^1.1.1","doctrine":"1.2.x","es6-map":"^0.1.3","es6-set":"^0.1.4","es6-symbol":"*","eslint-import-resolver-node":"^0.2.0","lodash.cond":"^4.3.0","lodash.endswith":"^4.0.1","lodash.find":"^4.3.0","lodash.findindex":"^4.3.0","object-assign":"^4.0.1","pkg-dir":"^1.0.0","pkg-up":"^1.0.0"},"gitHead":"ebc7aaf5056fdae6800eac61835c6fda2ef11f05","_id":"eslint-plugin-import@1.9.2","_shasum":"569ff739e0edd1085ad8c7c3c083fe71962f618e","_from":".","_npmVersion":"3.7.2","_nodeVersion":"4.2.5","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"dist":{"shasum":"569ff739e0edd1085ad8c7c3c083fe71962f618e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-1.9.2.tgz"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/eslint-plugin-import-1.9.2.tgz_1466511415646_0.11815060023218393"}},"1.10.0":{"name":"eslint-plugin-import","version":"1.10.0","description":"Import with sanity.","main":"lib/index.js","directories":{"test":"tests"},"files":["lib","config","memo-parser"],"scripts":{"watch":"cross-env NODE_PATH=./lib gulp watch-test","cover":"gulp pretest && cross-env NODE_PATH=./lib istanbul cover --dir reports/coverage _mocha tests/lib/ -- --recursive -R progress","posttest":"eslint ./src","test":"cross-env NODE_PATH=./lib gulp test","test-all":"npm test && for resolver in ./resolvers/*; do cd $resolver && npm test && cd ../..; done","ci-test":"eslint ./src && gulp pretest && cross-env NODE_PATH=./lib istanbul cover --report lcovonly --dir reports/coverage _mocha tests/lib/ -- --recursive --reporter dot","debug":"cross-env NODE_PATH=./lib mocha debug --recursive --reporter dot tests/lib/","prepublish":"gulp prepublish","coveralls":"cat ./reports/coverage/lcov.info | coveralls"},"repository":{"type":"git","url":"git+https://github.com/benmosher/eslint-plugin-import.git"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","email":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"babel-eslint":"next","babel-preset-es2015":"^6.6.0","babel-preset-es2015-loose":"^7.0.0","chai":"^3.4.0","coveralls":"^2.11.4","cross-env":"^1.0.7","eslint":"2.x","eslint-import-resolver-node":"file:./resolvers/node","eslint-import-resolver-webpack":"file:./resolvers/webpack","glob":"^6.0.2","gulp":"^3.9.0","gulp-babel":"6.1.2","gulp-changed":"^1.3.0","gulp-mocha":"^2.2.0","istanbul":"^0.4.0","mocha":"^2.2.1","redux":"^3.0.4","rimraf":"2.5.2"},"peerDependencies":{"eslint":"2.x"},"dependencies":{"builtin-modules":"^1.1.1","contains-path":"^0.1.0","doctrine":"1.2.x","es6-map":"^0.1.3","es6-set":"^0.1.4","es6-symbol":"*","eslint-import-resolver-node":"^0.2.0","lodash.cond":"^4.3.0","lodash.endswith":"^4.0.1","lodash.find":"^4.3.0","lodash.findindex":"^4.3.0","object-assign":"^4.0.1","pkg-dir":"^1.0.0","pkg-up":"^1.0.0"},"gitHead":"646786e812fdb4af3aa80f5e9d89e6c11e253260","_id":"eslint-plugin-import@1.10.0","_shasum":"fe6fba4524df95000a07a0c8f4b2bdd145d3b35e","_from":".","_npmVersion":"3.7.2","_nodeVersion":"4.2.5","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"dist":{"shasum":"fe6fba4524df95000a07a0c8f4b2bdd145d3b35e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-1.10.0.tgz"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/eslint-plugin-import-1.10.0.tgz_1467287228785_0.6812596288509667"}},"1.10.2":{"name":"eslint-plugin-import","version":"1.10.2","description":"Import with sanity.","main":"lib/index.js","directories":{"test":"tests"},"files":["lib","config","memo-parser"],"scripts":{"watch":"cross-env NODE_PATH=./lib gulp watch-test","cover":"gulp pretest && cross-env NODE_PATH=./lib istanbul cover --dir reports/coverage _mocha tests/lib/ -- --recursive -R progress","posttest":"eslint ./src","test":"cross-env NODE_PATH=./lib gulp test","test-all":"npm test && for resolver in ./resolvers/*; do cd $resolver && npm test && cd ../..; done","ci-test":"eslint ./src && gulp pretest && cross-env NODE_PATH=./lib istanbul cover --report lcovonly --dir reports/coverage _mocha tests/lib/ -- --recursive --reporter dot","debug":"cross-env NODE_PATH=./lib mocha debug --recursive --reporter dot tests/lib/","prepublish":"gulp prepublish","coveralls":"cat ./reports/coverage/lcov.info | coveralls"},"repository":{"type":"git","url":"git+https://github.com/benmosher/eslint-plugin-import.git"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","email":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"babel-eslint":"next","babel-preset-es2015":"^6.6.0","babel-preset-es2015-loose":"^7.0.0","chai":"^3.4.0","coveralls":"^2.11.4","cross-env":"^1.0.7","eslint":"3.x","eslint-import-resolver-node":"file:./resolvers/node","eslint-import-resolver-webpack":"file:./resolvers/webpack","glob":"^6.0.2","gulp":"^3.9.0","gulp-babel":"6.1.2","gulp-changed":"^1.3.0","gulp-mocha":"^2.2.0","istanbul":"^0.4.0","mocha":"^2.2.1","redux":"^3.0.4","rimraf":"2.5.2"},"peerDependencies":{"eslint":"2.x - 3.x"},"dependencies":{"builtin-modules":"^1.1.1","contains-path":"^0.1.0","doctrine":"1.2.x","es6-map":"^0.1.3","es6-set":"^0.1.4","es6-symbol":"*","eslint-import-resolver-node":"^0.2.0","lodash.cond":"^4.3.0","lodash.endswith":"^4.0.1","lodash.find":"^4.3.0","lodash.findindex":"^4.3.0","object-assign":"^4.0.1","pkg-dir":"^1.0.0","pkg-up":"^1.0.0"},"gitHead":"1bb07bc23f75340957a4fe232a28a32bc86fe69e","_id":"eslint-plugin-import@1.10.2","_shasum":"75a98aa51aa9e756166d1a607b85f0a0028027e3","_from":".","_npmVersion":"3.7.2","_nodeVersion":"4.2.5","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"dist":{"shasum":"75a98aa51aa9e756166d1a607b85f0a0028027e3","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-1.10.2.tgz"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/eslint-plugin-import-1.10.2.tgz_1467680464145_0.9565585411619395"}},"1.10.3":{"name":"eslint-plugin-import","version":"1.10.3","description":"Import with sanity.","main":"lib/index.js","directories":{"test":"tests"},"files":["lib","config","memo-parser"],"scripts":{"watch":"cross-env NODE_PATH=./lib gulp watch-test","cover":"gulp pretest && cross-env NODE_PATH=./lib istanbul cover --dir reports/coverage _mocha tests/lib/ -- --recursive -R progress","posttest":"eslint ./src","test":"cross-env BABEL_ENV=test NODE_PATH=./src nyc mocha --recursive tests/src -R progress -t 5s","coverage-report":"npm t && nyc report --reporter html","test-all":"npm test && for resolver in ./resolvers/*; do cd $resolver && npm test && cd ../..; done","ci-test":"eslint ./src && gulp pretest && cross-env NODE_PATH=./lib istanbul cover --report lcovonly --dir reports/coverage _mocha tests/lib/ -- --recursive --reporter dot","debug":"cross-env NODE_PATH=./lib mocha debug --recursive --reporter dot tests/lib/","prepublish":"gulp prepublish","coveralls":"nyc report --reporter lcovonly && cat ./coverage/lcov.info | coveralls"},"repository":{"type":"git","url":"git+https://github.com/benmosher/eslint-plugin-import.git"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","email":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"babel-eslint":"next","babel-plugin-istanbul":"^1.0.3","babel-preset-es2015":"^6.6.0","babel-preset-es2015-loose":"^7.0.0","babel-register":"6.9.0","chai":"^3.4.0","coveralls":"^2.11.4","cross-env":"^1.0.7","eslint":"2.x","eslint-import-resolver-node":"file:./resolvers/node","eslint-import-resolver-webpack":"file:./resolvers/webpack","gulp":"^3.9.0","gulp-babel":"6.1.2","istanbul":"^0.4.0","mocha":"^2.2.1","nyc":"^7.0.0","redux":"^3.0.4","rimraf":"2.5.2"},"peerDependencies":{"eslint":"2.x - 3.x"},"dependencies":{"builtin-modules":"^1.1.1","contains-path":"^0.1.0","doctrine":"1.2.x","es6-map":"^0.1.3","es6-set":"^0.1.4","eslint-import-resolver-node":"^0.2.0","lodash.cond":"^4.3.0","lodash.endswith":"^4.0.1","lodash.find":"^4.3.0","lodash.findindex":"^4.3.0","object-assign":"^4.0.1","pkg-dir":"^1.0.0","pkg-up":"^1.0.0"},"nyc":{"require":["babel-register"],"sourceMap":false,"instrument":false},"gitHead":"f314e5c422847039e988d623c1264efdc01c52b0","_id":"eslint-plugin-import@1.10.3","_shasum":"8fde7713f03f568619df92761fff2b931a2411ac","_from":".","_npmVersion":"3.7.2","_nodeVersion":"4.2.5","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"dist":{"shasum":"8fde7713f03f568619df92761fff2b931a2411ac","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-1.10.3.tgz"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/eslint-plugin-import-1.10.3.tgz_1468367436745_0.7908692962955683"}},"1.11.0":{"name":"eslint-plugin-import","version":"1.11.0","description":"Import with sanity.","main":"lib/index.js","directories":{"test":"tests"},"files":["lib","config","memo-parser"],"scripts":{"watch":"cross-env NODE_PATH=./lib gulp watch-test","cover":"gulp pretest && cross-env NODE_PATH=./lib istanbul cover --dir reports/coverage _mocha tests/lib/ -- --recursive -R progress","posttest":"eslint ./src","test":"cross-env BABEL_ENV=test NODE_PATH=./src nyc mocha --recursive tests/src -t 5s","test-compiled":"npm run prepublish && NODE_PATH=./lib mocha --compilers js:babel-register --recursive tests/src","coverage-report":"npm t && nyc report --reporter html","test-all":"npm test && for resolver in ./resolvers/*; do cd $resolver && npm test && cd ../..; done","ci-test":"eslint ./src && gulp pretest && cross-env NODE_PATH=./lib istanbul cover --report lcovonly --dir reports/coverage _mocha tests/lib/ -- --recursive --reporter dot","debug":"cross-env NODE_PATH=./lib mocha debug --recursive --reporter dot tests/lib/","prepublish":"gulp prepublish","coveralls":"nyc report --reporter lcovonly && cat ./coverage/lcov.info | coveralls"},"repository":{"type":"git","url":"git+https://github.com/benmosher/eslint-plugin-import.git"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","email":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"babel-eslint":"next","babel-plugin-istanbul":"^1.0.3","babel-preset-es2015":"^6.6.0","babel-preset-es2015-loose":"^7.0.0","babel-register":"6.9.0","chai":"^3.4.0","coveralls":"^2.11.4","cross-env":"^2.0.0","eslint":"2.x","eslint-plugin-import":"next","eslint-import-resolver-node":"file:./resolvers/node","eslint-import-resolver-webpack":"file:./resolvers/webpack","gulp":"^3.9.0","gulp-babel":"6.1.2","istanbul":"^0.4.0","mocha":"^2.2.1","nyc":"^7.0.0","redux":"^3.0.4","rimraf":"2.5.2"},"peerDependencies":{"eslint":"2.x - 3.x"},"dependencies":{"builtin-modules":"^1.1.1","contains-path":"^0.1.0","doctrine":"1.2.x","es6-map":"^0.1.3","es6-set":"^0.1.4","eslint-import-resolver-node":"^0.2.0","lodash.cond":"^4.3.0","lodash.endswith":"^4.0.1","lodash.find":"^4.3.0","lodash.findindex":"^4.3.0","object-assign":"^4.0.1","pkg-dir":"^1.0.0","pkg-up":"^1.0.0"},"nyc":{"require":["babel-register"],"sourceMap":false,"instrument":false},"gitHead":"b2184f083a16c1e1a7f078def628865ac9a9dca9","_id":"eslint-plugin-import@1.11.0","_shasum":"2535dc0c552eda404fcdc833944ab5d63f2320ea","_from":".","_npmVersion":"3.7.2","_nodeVersion":"4.2.5","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"dist":{"shasum":"2535dc0c552eda404fcdc833944ab5d63f2320ea","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-1.11.0.tgz"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/eslint-plugin-import-1.11.0.tgz_1468788510765_0.10531775117851794"}},"1.11.1":{"name":"eslint-plugin-import","version":"1.11.1","description":"Import with sanity.","main":"lib/index.js","directories":{"test":"tests"},"files":["lib","config","memo-parser"],"scripts":{"watch":"cross-env NODE_PATH=./lib gulp watch-test","cover":"gulp pretest && cross-env NODE_PATH=./lib istanbul cover --dir reports/coverage _mocha tests/lib/ -- --recursive -R progress","posttest":"eslint ./src","test":"cross-env BABEL_ENV=test NODE_PATH=./src nyc mocha --recursive tests/src -t 5s","test-compiled":"npm run prepublish && NODE_PATH=./lib mocha --compilers js:babel-register --recursive tests/src","coverage-report":"npm t && nyc report --reporter html","test-all":"npm test && for resolver in ./resolvers/*; do cd $resolver && npm test && cd ../..; done","ci-test":"eslint ./src && gulp pretest && cross-env NODE_PATH=./lib istanbul cover --report lcovonly --dir reports/coverage _mocha tests/lib/ -- --recursive --reporter dot","debug":"cross-env NODE_PATH=./lib mocha debug --recursive --reporter dot tests/lib/","prepublish":"gulp prepublish","coveralls":"nyc report --reporter lcovonly && cat ./coverage/lcov.info | coveralls"},"repository":{"type":"git","url":"git+https://github.com/benmosher/eslint-plugin-import.git"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","email":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"babel-eslint":"next","babel-plugin-istanbul":"^1.0.3","babel-preset-es2015":"^6.6.0","babel-preset-es2015-loose":"^7.0.0","babel-register":"6.9.0","chai":"^3.4.0","coveralls":"^2.11.4","cross-env":"^2.0.0","eslint":"2.x","eslint-plugin-import":"next","eslint-import-resolver-node":"file:./resolvers/node","eslint-import-resolver-webpack":"file:./resolvers/webpack","gulp":"^3.9.0","gulp-babel":"6.1.2","istanbul":"^0.4.0","mocha":"^2.2.1","nyc":"^7.0.0","redux":"^3.0.4","rimraf":"2.5.2"},"peerDependencies":{"eslint":"2.x - 3.x"},"dependencies":{"builtin-modules":"^1.1.1","contains-path":"^0.1.0","debug":"^2.2.0","doctrine":"1.2.x","es6-map":"^0.1.3","es6-set":"^0.1.4","eslint-import-resolver-node":"^0.2.0","lodash.cond":"^4.3.0","lodash.endswith":"^4.0.1","lodash.find":"^4.3.0","lodash.findindex":"^4.3.0","object-assign":"^4.0.1","pkg-dir":"^1.0.0","pkg-up":"^1.0.0"},"nyc":{"require":["babel-register"],"sourceMap":false,"instrument":false},"gitHead":"79905968cbd2ae469484d70b0c952e59067fbf48","_id":"eslint-plugin-import@1.11.1","_shasum":"dddeb1b5245a681529b7f692cea5d83664823158","_from":".","_npmVersion":"3.7.2","_nodeVersion":"4.2.5","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"dist":{"shasum":"dddeb1b5245a681529b7f692cea5d83664823158","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-1.11.1.tgz"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/eslint-plugin-import-1.11.1.tgz_1469012548258_0.1123366723768413"}},"1.12.0":{"name":"eslint-plugin-import","version":"1.12.0","description":"Import with sanity.","main":"lib/index.js","directories":{"test":"tests"},"files":["lib","config","memo-parser"],"scripts":{"watch":"cross-env NODE_PATH=./lib gulp watch-test","cover":"gulp pretest && cross-env NODE_PATH=./lib istanbul cover --dir reports/coverage _mocha tests/lib/ -- --recursive -R progress","posttest":"eslint ./src","test":"cross-env BABEL_ENV=test NODE_PATH=./src nyc mocha --recursive tests/src -t 5s","test-compiled":"npm run prepublish && NODE_PATH=./lib mocha --compilers js:babel-register --recursive tests/src","coverage-report":"npm t && nyc report --reporter html","test-all":"npm test && for resolver in ./resolvers/*; do cd $resolver && npm test && cd ../..; done","ci-test":"eslint ./src && gulp pretest && cross-env NODE_PATH=./lib istanbul cover --report lcovonly --dir reports/coverage _mocha tests/lib/ -- --recursive --reporter dot","debug":"cross-env NODE_PATH=./lib mocha debug --recursive --reporter dot tests/lib/","prepublish":"gulp prepublish","coveralls":"nyc report --reporter lcovonly && cat ./coverage/lcov.info | coveralls"},"repository":{"type":"git","url":"git+https://github.com/benmosher/eslint-plugin-import.git"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","email":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"babel-eslint":"next","babel-plugin-istanbul":"^1.0.3","babel-preset-es2015":"^6.6.0","babel-preset-es2015-loose":"^7.0.0","babel-register":"6.9.0","chai":"^3.4.0","coveralls":"^2.11.4","cross-env":"^2.0.0","eslint":"2.x","eslint-plugin-import":"next","eslint-import-resolver-node":"file:./resolvers/node","eslint-import-resolver-webpack":"file:./resolvers/webpack","gulp":"^3.9.0","gulp-babel":"6.1.2","istanbul":"^0.4.0","mocha":"^2.2.1","nyc":"^7.0.0","redux":"^3.0.4","rimraf":"2.5.2"},"peerDependencies":{"eslint":"2.x - 3.x"},"dependencies":{"builtin-modules":"^1.1.1","contains-path":"^0.1.0","debug":"^2.2.0","doctrine":"1.2.x","es6-map":"^0.1.3","es6-set":"^0.1.4","eslint-import-resolver-node":"^0.2.0","lodash.cond":"^4.3.0","lodash.endswith":"^4.0.1","lodash.find":"^4.3.0","lodash.findindex":"^4.3.0","object-assign":"^4.0.1","pkg-dir":"^1.0.0","pkg-up":"^1.0.0"},"nyc":{"require":["babel-register"],"sourceMap":false,"instrument":false},"gitHead":"4429edfb8c13de40d47266c69ff737a6198800b4","_id":"eslint-plugin-import@1.12.0","_shasum":"11307eb08179f43692fa845ba8542e82fa333e21","_from":".","_npmVersion":"3.7.2","_nodeVersion":"4.2.5","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"dist":{"shasum":"11307eb08179f43692fa845ba8542e82fa333e21","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-1.12.0.tgz"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/eslint-plugin-import-1.12.0.tgz_1469529857623_0.02227819594554603"}},"1.13.0":{"name":"eslint-plugin-import","version":"1.13.0","description":"Import with sanity.","main":"lib/index.js","directories":{"test":"tests"},"files":["lib","config","memo-parser"],"scripts":{"watch":"cross-env NODE_PATH=./src mocha --watch --compilers js:babel-register --recursive tests/src","cover":"gulp pretest && cross-env NODE_PATH=./lib istanbul cover --dir reports/coverage _mocha tests/lib/ -- --recursive -R progress","posttest":"eslint ./src","test":"cross-env BABEL_ENV=test NODE_PATH=./src nyc mocha --recursive tests/src -t 5s","test-compiled":"npm run prepublish && NODE_PATH=./lib mocha --compilers js:babel-register --recursive tests/src","coverage-report":"npm t && nyc report --reporter html","test-all":"npm test && for resolver in ./resolvers/*; do cd $resolver && npm test && cd ../..; done","ci-test":"eslint ./src && gulp pretest && cross-env NODE_PATH=./lib istanbul cover --report lcovonly --dir reports/coverage _mocha tests/lib/ -- --recursive --reporter dot","debug":"cross-env NODE_PATH=./lib mocha debug --recursive --reporter dot tests/lib/","prepublish":"gulp prepublish","coveralls":"nyc report --reporter lcovonly && cat ./coverage/lcov.info | coveralls"},"repository":{"type":"git","url":"git+https://github.com/benmosher/eslint-plugin-import.git"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","email":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"babel-eslint":"next","babel-plugin-istanbul":"^1.0.3","babel-preset-es2015":"^6.6.0","babel-preset-es2015-loose":"^7.0.0","babel-register":"6.9.0","chai":"^3.4.0","coveralls":"^2.11.4","cross-env":"^2.0.0","eslint":"2.x","eslint-plugin-import":"next","eslint-import-resolver-node":"file:./resolvers/node","eslint-import-resolver-webpack":"file:./resolvers/webpack","gulp":"^3.9.0","gulp-babel":"6.1.2","istanbul":"^0.4.0","mocha":"^2.2.1","nyc":"^7.0.0","redux":"^3.0.4","rimraf":"2.5.2"},"peerDependencies":{"eslint":"2.x - 3.x"},"dependencies":{"builtin-modules":"^1.1.1","contains-path":"^0.1.0","debug":"^2.2.0","doctrine":"1.2.x","es6-map":"^0.1.3","es6-set":"^0.1.4","eslint-import-resolver-node":"^0.2.0","lodash.cond":"^4.3.0","lodash.endswith":"^4.0.1","lodash.find":"^4.3.0","lodash.findindex":"^4.3.0","object-assign":"^4.0.1","pkg-dir":"^1.0.0","pkg-up":"^1.0.0"},"nyc":{"require":["babel-register"],"sourceMap":false,"instrument":false},"gitHead":"4e1919774315d9dbffd8371be323c774fd2b8f81","_id":"eslint-plugin-import@1.13.0","_shasum":"0e89ed868396d09122e307edf6db37881cfdddd7","_from":".","_npmVersion":"3.7.2","_nodeVersion":"4.2.5","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"dist":{"shasum":"0e89ed868396d09122e307edf6db37881cfdddd7","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-1.13.0.tgz"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/eslint-plugin-import-1.13.0.tgz_1470913997891_0.8996266408357769"}},"1.14.0":{"name":"eslint-plugin-import","version":"1.14.0","description":"Import with sanity.","main":"lib/index.js","directories":{"test":"tests"},"files":["lib","config","memo-parser"],"scripts":{"watch":"cross-env NODE_PATH=./src mocha --watch --compilers js:babel-register --recursive tests/src","cover":"gulp pretest && cross-env NODE_PATH=./lib istanbul cover --dir reports/coverage _mocha tests/lib/ -- --recursive -R progress","posttest":"eslint ./src","test":"cross-env BABEL_ENV=test NODE_PATH=./src nyc mocha --recursive tests/src -t 5s","test-compiled":"npm run prepublish && NODE_PATH=./lib mocha --compilers js:babel-register --recursive tests/src","coverage-report":"npm t && nyc report --reporter html","test-all":"npm test && for resolver in ./resolvers/*; do cd $resolver && npm test && cd ../..; done","ci-test":"eslint ./src && gulp pretest && cross-env NODE_PATH=./lib istanbul cover --report lcovonly --dir reports/coverage _mocha tests/lib/ -- --recursive --reporter dot","debug":"cross-env NODE_PATH=./lib mocha debug --recursive --reporter dot tests/lib/","prepublish":"gulp prepublish","coveralls":"nyc report --reporter lcovonly && cat ./coverage/lcov.info | coveralls"},"repository":{"type":"git","url":"git+https://github.com/benmosher/eslint-plugin-import.git"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","email":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"babel-eslint":"next","babel-plugin-istanbul":"^1.0.3","babel-preset-es2015":"^6.6.0","babel-preset-es2015-loose":"^7.0.0","babel-register":"6.9.0","chai":"^3.4.0","coveralls":"^2.11.4","cross-env":"^2.0.0","eslint":"2.x","eslint-import-resolver-node":"file:./resolvers/node","eslint-import-resolver-webpack":"file:./resolvers/webpack","eslint-plugin-import":"next","gulp":"^3.9.0","gulp-babel":"6.1.2","istanbul":"^0.4.0","mocha":"^2.2.1","nyc":"^7.0.0","redux":"^3.0.4","rimraf":"2.5.2","typescript":"^1.8.10","typescript-eslint-parser":"^0.1.1"},"peerDependencies":{"eslint":"2.x - 3.x"},"dependencies":{"builtin-modules":"^1.1.1","contains-path":"^0.1.0","debug":"^2.2.0","doctrine":"1.2.x","es6-map":"^0.1.3","es6-set":"^0.1.4","eslint-import-resolver-node":"^0.2.0","lodash.cond":"^4.3.0","lodash.endswith":"^4.0.1","lodash.find":"^4.3.0","lodash.findindex":"^4.3.0","object-assign":"^4.0.1","pkg-dir":"^1.0.0","pkg-up":"^1.0.0"},"nyc":{"require":["babel-register"],"sourceMap":false,"instrument":false},"gitHead":"7995581afa46c8b9154c925b533f80824e69b9f3","_id":"eslint-plugin-import@1.14.0","_shasum":"acd2159923f48c50e5cf55c30a0e1708f04af97a","_from":".","_npmVersion":"3.7.2","_nodeVersion":"4.2.5","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"dist":{"shasum":"acd2159923f48c50e5cf55c30a0e1708f04af97a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-1.14.0.tgz"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/eslint-plugin-import-1.14.0.tgz_1471864031613_0.4303875972982496"}},"1.15.0":{"name":"eslint-plugin-import","version":"1.15.0","description":"Import with sanity.","main":"lib/index.js","directories":{"test":"tests"},"files":["lib","config","memo-parser"],"scripts":{"watch":"cross-env NODE_PATH=./src mocha --watch --compilers js:babel-register --recursive tests/src","cover":"gulp pretest && cross-env NODE_PATH=./lib istanbul cover --dir reports/coverage _mocha tests/lib/ -- --recursive -R progress","posttest":"eslint ./src","test":"cross-env BABEL_ENV=test NODE_PATH=./src nyc mocha --recursive tests/src -t 5s","test-compiled":"npm run prepublish && NODE_PATH=./lib mocha --compilers js:babel-register --recursive tests/src","coverage-report":"npm t && nyc report --reporter html","test-all":"npm test && for resolver in ./resolvers/*; do cd $resolver && npm test && cd ../..; done","ci-test":"eslint ./src && gulp pretest && cross-env NODE_PATH=./lib istanbul cover --report lcovonly --dir reports/coverage _mocha tests/lib/ -- --recursive --reporter dot","debug":"cross-env NODE_PATH=./lib mocha debug --recursive --reporter dot tests/lib/","prepublish":"gulp prepublish","coveralls":"nyc report --reporter lcovonly && cat ./coverage/lcov.info | coveralls"},"repository":{"type":"git","url":"git+https://github.com/benmosher/eslint-plugin-import.git"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","email":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"babel-eslint":"next","babel-plugin-istanbul":"^2.0.1","babel-preset-es2015":"^6.6.0","babel-preset-es2015-loose":"^7.0.0","babel-register":"6.9.0","chai":"^3.4.0","coveralls":"^2.11.4","cross-env":"^2.0.0","eslint":"2.x","eslint-import-resolver-node":"file:./resolvers/node","eslint-import-resolver-webpack":"file:./resolvers/webpack","eslint-plugin-import":"next","gulp":"^3.9.0","gulp-babel":"6.1.2","istanbul":"^0.4.0","mocha":"^2.2.1","nyc":"^7.0.0","redux":"^3.0.4","rimraf":"2.5.2","typescript":"^1.8.10","typescript-eslint-parser":"^0.2.0"},"peerDependencies":{"eslint":"2.x - 3.x"},"dependencies":{"builtin-modules":"^1.1.1","contains-path":"^0.1.0","debug":"^2.2.0","doctrine":"1.3.x","es6-map":"^0.1.3","es6-set":"^0.1.4","eslint-import-resolver-node":"^0.2.0","lodash.cond":"^4.3.0","lodash.endswith":"^4.0.1","lodash.find":"^4.3.0","lodash.findindex":"^4.3.0","minimatch":"^3.0.3","object-assign":"^4.0.1","pkg-dir":"^1.0.0","pkg-up":"^1.0.0"},"nyc":{"require":["babel-register"],"sourceMap":false,"instrument":false},"gitHead":"d03577c344115e0f66b19bf1b05c8e7bb6d51fe3","_id":"eslint-plugin-import@1.15.0","_shasum":"f541a100b901389661d0bfbf2f1f004edfa4eb40","_from":".","_npmVersion":"3.10.6","_nodeVersion":"4.2.5","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"dist":{"shasum":"f541a100b901389661d0bfbf2f1f004edfa4eb40","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-1.15.0.tgz"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/eslint-plugin-import-1.15.0.tgz_1473761155621_0.3672668265644461"}},"1.16.0":{"name":"eslint-plugin-import","version":"1.16.0","description":"Import with sanity.","main":"lib/index.js","directories":{"test":"tests"},"files":["lib","config","memo-parser"],"scripts":{"watch":"cross-env NODE_PATH=./src mocha --watch --compilers js:babel-register --recursive tests/src","cover":"gulp pretest && cross-env NODE_PATH=./lib istanbul cover --dir reports/coverage _mocha tests/lib/ -- --recursive -R progress","posttest":"eslint ./src","test":"cross-env BABEL_ENV=test NODE_PATH=./src nyc mocha --recursive tests/src -t 5s","test-compiled":"npm run prepublish && NODE_PATH=./lib mocha --compilers js:babel-register --recursive tests/src","coverage-report":"npm t && nyc report --reporter html","test-all":"npm test && for resolver in ./resolvers/*; do cd $resolver && npm test && cd ../..; done","ci-test":"eslint ./src && gulp pretest && cross-env NODE_PATH=./lib istanbul cover --report lcovonly --dir reports/coverage _mocha tests/lib/ -- --recursive --reporter dot","debug":"cross-env NODE_PATH=./lib mocha debug --recursive --reporter dot tests/lib/","prepublish":"gulp prepublish","coveralls":"nyc report --reporter lcovonly && cat ./coverage/lcov.info | coveralls"},"repository":{"type":"git","url":"git+https://github.com/benmosher/eslint-plugin-import.git"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","email":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"babel-eslint":"next","babel-plugin-istanbul":"^2.0.1","babel-preset-es2015":"^6.6.0","babel-preset-es2015-loose":"^7.0.0","babel-register":"6.9.0","chai":"^3.4.0","coveralls":"^2.11.4","cross-env":"^2.0.0","eslint":"2.x","eslint-import-resolver-node":"file:./resolvers/node","eslint-import-resolver-webpack":"file:./resolvers/webpack","eslint-plugin-import":"next","gulp":"^3.9.0","gulp-babel":"6.1.2","istanbul":"^0.4.0","mocha":"^2.2.1","nyc":"^8.3.0","redux":"^3.0.4","rimraf":"2.5.2","typescript":"^1.8.10","typescript-eslint-parser":"^0.3.0"},"peerDependencies":{"eslint":"2.x - 3.x"},"dependencies":{"builtin-modules":"^1.1.1","contains-path":"^0.1.0","debug":"^2.2.0","doctrine":"1.3.x","es6-map":"^0.1.3","es6-set":"^0.1.4","eslint-import-resolver-node":"^0.2.0","has":"^1.0.1","lodash.cond":"^4.3.0","lodash.endswith":"^4.0.1","lodash.find":"^4.3.0","lodash.findindex":"^4.3.0","minimatch":"^3.0.3","object-assign":"^4.0.1","pkg-dir":"^1.0.0","pkg-up":"^1.0.0"},"nyc":{"require":["babel-register"],"sourceMap":false,"instrument":false},"gitHead":"af062f191035def4b33e2d23fe32f1faef81410b","_id":"eslint-plugin-import@1.16.0","_shasum":"b2fa07ebcc53504d0f2a4477582ec8bff1871b9f","_from":".","_npmVersion":"3.10.6","_nodeVersion":"4.2.5","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"dist":{"shasum":"b2fa07ebcc53504d0f2a4477582ec8bff1871b9f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-1.16.0.tgz"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/eslint-plugin-import-1.16.0.tgz_1474628783796_0.5313906671945006"}},"2.0.0-beta.0":{"name":"eslint-plugin-import","version":"2.0.0-beta.0","description":"Import with sanity.","engines":{"node":">=4"},"main":"lib/index.js","directories":{"test":"tests"},"files":["lib","config","memo-parser"],"scripts":{"watch":"cross-env NODE_PATH=./src mocha --watch --compilers js:babel-register --recursive tests/src","cover":"gulp pretest && cross-env NODE_PATH=./lib istanbul cover --dir reports/coverage _mocha tests/lib/ -- --recursive -R progress","pretest":"linklocal","posttest":"eslint ./src","test":"cross-env BABEL_ENV=test NODE_PATH=./src nyc -s mocha -R dot --recursive tests/src -t 5s","test-compiled":"npm run prepublish && NODE_PATH=./lib mocha --compilers js:babel-register --recursive tests/src","coverage-report":"npm t && nyc report --reporter html","test-all":"npm test && for resolver in ./resolvers/*; do cd $resolver && npm test && cd ../..; done","ci-test":"eslint ./src && gulp pretest && cross-env NODE_PATH=./lib istanbul cover --report lcovonly --dir reports/coverage _mocha tests/lib/ -- --recursive --reporter dot","debug":"cross-env NODE_PATH=./lib mocha debug --recursive --reporter dot tests/lib/","prepublish":"gulp prepublish","coveralls":"nyc report --reporter lcovonly && cat ./coverage/lcov.info | coveralls"},"repository":{"type":"git","url":"git+https://github.com/benmosher/eslint-plugin-import.git"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","email":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"babel-eslint":"next","babel-plugin-istanbul":"^2.0.1","babel-preset-es2015-argon":"latest","babel-register":"6.9.0","chai":"^3.4.0","coveralls":"^2.11.4","cross-env":"^3.0.0","eslint":"3.x","eslint-import-resolver-node":"file:./resolvers/node","eslint-import-resolver-webpack":"file:./resolvers/webpack","eslint-module-utils":"file:./utils","eslint-plugin-import":"next","gulp":"^3.9.0","gulp-babel":"6.1.2","istanbul":"^0.4.0","linklocal":"^2.6.0","mocha":"^2.2.1","nyc":"^8.3.0","redux":"^3.0.4","rimraf":"2.5.2","typescript":"^2.0.3","typescript-eslint-parser":"^0.4.0"},"peerDependencies":{"eslint":"2.x - 3.x"},"dependencies":{"builtin-modules":"^1.1.1","contains-path":"^0.1.0","debug":"^2.2.0","doctrine":"1.3.x","es6-map":"^0.1.3","es6-set":"^0.1.4","eslint-import-resolver-node":"^0.2.0","has":"^1.0.1","lodash.cond":"^4.3.0","lodash.endswith":"^4.0.1","lodash.find":"^4.3.0","lodash.findindex":"^4.3.0","minimatch":"^3.0.3","pkg-up":"^1.0.0"},"nyc":{"require":["babel-register"],"sourceMap":false,"instrument":false},"gitHead":"de71b198c6474f1d59ddc3408630f94f0de32344","_id":"eslint-plugin-import@2.0.0-beta.0","_shasum":"0f00c0430e6630531d8b65dae1ffa44c658d335e","_from":".","_npmVersion":"3.10.6","_nodeVersion":"4.2.5","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"dist":{"shasum":"0f00c0430e6630531d8b65dae1ffa44c658d335e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-2.0.0-beta.0.tgz"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/eslint-plugin-import-2.0.0-beta.0.tgz_1474920967942_0.31420297967270017"}},"2.0.0-beta.1":{"name":"eslint-plugin-import","version":"2.0.0-beta.1","description":"Import with sanity.","engines":{"node":">=4"},"main":"lib/index.js","directories":{"test":"tests"},"files":["lib","config","memo-parser"],"scripts":{"watch":"cross-env NODE_PATH=./src mocha --watch --compilers js:babel-register --recursive tests/src","cover":"gulp pretest && cross-env NODE_PATH=./lib istanbul cover --dir reports/coverage _mocha tests/lib/ -- --recursive -R progress","pretest":"linklocal","posttest":"eslint ./src","test":"cross-env BABEL_ENV=test NODE_PATH=./src nyc -s mocha -R dot --recursive tests/src -t 5s","test-compiled":"npm run prepublish && NODE_PATH=./lib mocha --compilers js:babel-register --recursive tests/src","coverage-report":"npm t && nyc report --reporter html","test-all":"npm test && for resolver in ./resolvers/*; do cd $resolver && npm test && cd ../..; done","ci-test":"eslint ./src && gulp pretest && cross-env NODE_PATH=./lib istanbul cover --report lcovonly --dir reports/coverage _mocha tests/lib/ -- --recursive --reporter dot","debug":"cross-env NODE_PATH=./lib mocha debug --recursive --reporter dot tests/lib/","prepublish":"gulp prepublish","coveralls":"nyc report --reporter lcovonly && cat ./coverage/lcov.info | coveralls"},"repository":{"type":"git","url":"git+https://github.com/benmosher/eslint-plugin-import.git"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","email":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"babel-eslint":"next","babel-plugin-istanbul":"^2.0.1","babel-preset-es2015-argon":"latest","babel-register":"6.9.0","chai":"^3.4.0","coveralls":"^2.11.4","cross-env":"^3.0.0","eslint":"3.x","eslint-import-resolver-node":"file:./resolvers/node","eslint-import-resolver-webpack":"file:./resolvers/webpack","eslint-module-utils":"file:./utils","eslint-plugin-import":"next","gulp":"^3.9.0","gulp-babel":"6.1.2","istanbul":"^0.4.0","linklocal":"^2.6.0","mocha":"^2.2.1","nyc":"^8.3.0","redux":"^3.0.4","rimraf":"2.5.2","typescript":"^2.0.3","typescript-eslint-parser":"^0.4.0"},"peerDependencies":{"eslint":"2.x - 3.x"},"dependencies":{"builtin-modules":"^1.1.1","contains-path":"^0.1.0","debug":"^2.2.0","doctrine":"1.3.x","es6-map":"^0.1.3","es6-set":"^0.1.4","eslint-import-resolver-node":"^0.2.0","eslint-module-utils":"^1.0.0-beta.0","has":"^1.0.1","lodash.cond":"^4.3.0","lodash.endswith":"^4.0.1","lodash.find":"^4.3.0","lodash.findindex":"^4.3.0","minimatch":"^3.0.3","pkg-up":"^1.0.0"},"nyc":{"require":["babel-register"],"sourceMap":false,"instrument":false},"gitHead":"1bd0650de722007f6d071aca1f3b50c3b27b2991","_id":"eslint-plugin-import@2.0.0-beta.1","_shasum":"ca5f13867695e0df51c5a539535ef006049dcae6","_from":".","_npmVersion":"3.10.6","_nodeVersion":"4.2.5","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"dist":{"shasum":"ca5f13867695e0df51c5a539535ef006049dcae6","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-2.0.0-beta.1.tgz"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/eslint-plugin-import-2.0.0-beta.1.tgz_1474921286946_0.791592561872676"}},"2.0.0":{"name":"eslint-plugin-import","version":"2.0.0","description":"Import with sanity.","engines":{"node":">=4"},"main":"lib/index.js","directories":{"test":"tests"},"files":["lib","config","memo-parser"],"scripts":{"watch":"cross-env NODE_PATH=./src mocha --watch --compilers js:babel-register --recursive tests/src","cover":"gulp pretest && cross-env NODE_PATH=./lib istanbul cover --dir reports/coverage _mocha tests/lib/ -- --recursive -R progress","pretest":"linklocal","posttest":"eslint ./src","test":"cross-env BABEL_ENV=test NODE_PATH=./src nyc -s mocha -R dot --recursive tests/src -t 5s","test-compiled":"npm run prepublish && NODE_PATH=./lib mocha --compilers js:babel-register --recursive tests/src","coverage-report":"npm t && nyc report --reporter html","test-all":"npm test && for resolver in ./resolvers/*; do cd $resolver && npm test && cd ../..; done","ci-test":"eslint ./src && gulp pretest && cross-env NODE_PATH=./lib istanbul cover --report lcovonly --dir reports/coverage _mocha tests/lib/ -- --recursive --reporter dot","debug":"cross-env NODE_PATH=./lib mocha debug --recursive --reporter dot tests/lib/","prepublish":"gulp prepublish","coveralls":"nyc report --reporter lcovonly && cat ./coverage/lcov.info | coveralls"},"repository":{"type":"git","url":"git+https://github.com/benmosher/eslint-plugin-import.git"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","email":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"babel-eslint":"next","babel-plugin-istanbul":"^2.0.1","babel-preset-es2015-argon":"latest","babel-register":"6.9.0","chai":"^3.4.0","coveralls":"^2.11.4","cross-env":"^3.0.0","eslint":"3.x","eslint-import-resolver-node":"file:./resolvers/node","eslint-import-resolver-webpack":"file:./resolvers/webpack","eslint-module-utils":"file:./utils","eslint-plugin-import":"next","gulp":"^3.9.0","gulp-babel":"6.1.2","istanbul":"^0.4.0","linklocal":"^2.6.0","mocha":"^2.2.1","nyc":"^8.3.0","redux":"^3.0.4","rimraf":"2.5.2","typescript":"^2.0.3","typescript-eslint-parser":"^0.4.0"},"peerDependencies":{"eslint":"2.x - 3.x"},"dependencies":{"builtin-modules":"^1.1.1","contains-path":"^0.1.0","debug":"^2.2.0","doctrine":"1.3.x","eslint-import-resolver-node":"^0.2.0","eslint-module-utils":"^1.0.0","has":"^1.0.1","lodash.cond":"^4.3.0","minimatch":"^3.0.3","pkg-up":"^1.0.0"},"nyc":{"require":["babel-register"],"sourceMap":false,"instrument":false},"gitHead":"9880ae7db99865a6e4c887151d59dd4de97debfa","_id":"eslint-plugin-import@2.0.0","_shasum":"5ccd46210162bc1a0d76221eb7518476d04fb089","_from":".","_npmVersion":"3.10.6","_nodeVersion":"4.2.5","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"dist":{"shasum":"5ccd46210162bc1a0d76221eb7518476d04fb089","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-2.0.0.tgz"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/eslint-plugin-import-2.0.0.tgz_1475149922242_0.8459597113542259"}},"2.0.1":{"name":"eslint-plugin-import","version":"2.0.1","description":"Import with sanity.","engines":{"node":">=4"},"main":"lib/index.js","directories":{"test":"tests"},"files":["lib","config","memo-parser"],"scripts":{"watch":"cross-env NODE_PATH=./src mocha --watch --compilers js:babel-register --recursive tests/src","cover":"gulp pretest && cross-env NODE_PATH=./lib istanbul cover --dir reports/coverage _mocha tests/lib/ -- --recursive -R progress","pretest":"linklocal","posttest":"eslint ./src","test":"cross-env BABEL_ENV=test NODE_PATH=./src nyc -s mocha -R dot --recursive tests/src -t 5s","test-compiled":"npm run prepublish && NODE_PATH=./lib mocha --compilers js:babel-register --recursive tests/src","coverage-report":"npm t && nyc report --reporter html","test-all":"npm test && for resolver in ./resolvers/*; do cd $resolver && npm test && cd ../..; done","ci-test":"eslint ./src && gulp pretest && cross-env NODE_PATH=./lib istanbul cover --report lcovonly --dir reports/coverage _mocha tests/lib/ -- --recursive --reporter dot","debug":"cross-env NODE_PATH=./lib mocha debug --recursive --reporter dot tests/lib/","prepublish":"gulp prepublish","coveralls":"nyc report --reporter lcovonly && cat ./coverage/lcov.info | coveralls"},"repository":{"type":"git","url":"git+https://github.com/benmosher/eslint-plugin-import.git"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","email":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"babel-eslint":"next","babel-plugin-istanbul":"^2.0.1","babel-preset-es2015-argon":"latest","babel-register":"6.9.0","chai":"^3.4.0","coveralls":"^2.11.4","cross-env":"^3.0.0","eslint":"3.x","eslint-import-resolver-node":"file:./resolvers/node","eslint-import-resolver-webpack":"file:./resolvers/webpack","eslint-module-utils":"file:./utils","eslint-plugin-import":"2.x","gulp":"^3.9.0","gulp-babel":"6.1.2","istanbul":"^0.4.0","linklocal":"^2.6.0","mocha":"^2.2.1","nyc":"^8.3.0","redux":"^3.0.4","rimraf":"2.5.2","typescript":"^2.0.3","typescript-eslint-parser":"^0.4.0"},"peerDependencies":{"eslint":"2.x - 3.x"},"dependencies":{"builtin-modules":"^1.1.1","contains-path":"^0.1.0","debug":"^2.2.0","doctrine":"1.3.x","eslint-import-resolver-node":"^0.2.0","eslint-module-utils":"^1.0.0","has":"^1.0.1","lodash.cond":"^4.3.0","minimatch":"^3.0.3","pkg-up":"^1.0.0"},"nyc":{"require":["babel-register"],"sourceMap":false,"instrument":false},"gitHead":"59520ff8245219763a38d54d1d5156899d26afbb","_id":"eslint-plugin-import@2.0.1","_shasum":"dcfe96357d476b3f822570d42c29bec66f5d9c5c","_from":".","_npmVersion":"3.10.6","_nodeVersion":"4.2.5","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"dist":{"shasum":"dcfe96357d476b3f822570d42c29bec66f5d9c5c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-2.0.1.tgz"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/eslint-plugin-import-2.0.1.tgz_1476186904822_0.9398263914044946"}},"2.1.0":{"name":"eslint-plugin-import","version":"2.1.0","description":"Import with sanity.","engines":{"node":">=4"},"main":"lib/index.js","directories":{"test":"tests"},"files":["lib","config","memo-parser"],"scripts":{"watch":"cross-env NODE_PATH=./src mocha --watch --compilers js:babel-register --recursive tests/src","cover":"gulp pretest && cross-env NODE_PATH=./lib istanbul cover --dir reports/coverage _mocha tests/lib/ -- --recursive -R progress","pretest":"linklocal","posttest":"eslint ./src","test":"cross-env BABEL_ENV=test NODE_PATH=./src nyc -s mocha -R dot --recursive tests/src -t 5s","test-compiled":"npm run prepublish && NODE_PATH=./lib mocha --compilers js:babel-register --recursive tests/src","coverage-report":"npm t && nyc report --reporter html","test-all":"npm test && for resolver in ./resolvers/*; do cd $resolver && npm test && cd ../..; done","ci-test":"eslint ./src && gulp pretest && cross-env NODE_PATH=./lib istanbul cover --report lcovonly --dir reports/coverage _mocha tests/lib/ -- --recursive --reporter dot","debug":"cross-env NODE_PATH=./lib mocha debug --recursive --reporter dot tests/lib/","prepublish":"gulp prepublish","coveralls":"nyc report --reporter lcovonly && cat ./coverage/lcov.info | coveralls"},"repository":{"type":"git","url":"git+https://github.com/benmosher/eslint-plugin-import.git"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","email":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"babel-eslint":"next","babel-plugin-istanbul":"^2.0.1","babel-preset-es2015-argon":"latest","babel-register":"6.16.3","chai":"^3.4.0","coveralls":"^2.11.4","cross-env":"^3.1.0","eslint":"3.x","eslint-import-resolver-node":"file:./resolvers/node","eslint-import-resolver-webpack":"file:./resolvers/webpack","eslint-module-utils":"file:./utils","eslint-plugin-import":"2.x","gulp":"^3.9.0","gulp-babel":"6.1.2","istanbul":"^0.4.0","linklocal":"^2.6.0","mocha":"^3.1.2","nyc":"^8.3.0","redux":"^3.0.4","rimraf":"2.5.2","typescript":"^2.0.3","typescript-eslint-parser":"^0.4.0"},"peerDependencies":{"eslint":"2.x - 3.x"},"dependencies":{"builtin-modules":"^1.1.1","contains-path":"^0.1.0","debug":"^2.2.0","doctrine":"1.5.0","eslint-import-resolver-node":"^0.2.0","eslint-module-utils":"^1.0.0","has":"^1.0.1","lodash.cond":"^4.3.0","minimatch":"^3.0.3","pkg-up":"^1.0.0"},"nyc":{"require":["babel-register"],"sourceMap":false,"instrument":false},"gitHead":"720590436e93b7c2948e1a4c61a381ca7857883a","_id":"eslint-plugin-import@2.1.0","_shasum":"20fe254aa7dac0d9fe617979f14b59f0f762e1b4","_from":".","_npmVersion":"3.10.8","_nodeVersion":"4.2.5","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"dist":{"shasum":"20fe254aa7dac0d9fe617979f14b59f0f762e1b4","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-2.1.0.tgz"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/eslint-plugin-import-2.1.0.tgz_1478173652566_0.5357860787771642"}},"2.2.0":{"name":"eslint-plugin-import","version":"2.2.0","description":"Import with sanity.","engines":{"node":">=4"},"main":"lib/index.js","directories":{"test":"tests"},"files":["lib","config","memo-parser"],"scripts":{"watch":"cross-env NODE_PATH=./src mocha --watch --compilers js:babel-register --recursive tests/src","cover":"gulp pretest && cross-env NODE_PATH=./lib istanbul cover --dir reports/coverage _mocha tests/lib/ -- --recursive -R progress","pretest":"linklocal","posttest":"eslint ./src","test":"cross-env BABEL_ENV=test NODE_PATH=./src nyc -s mocha -R dot --recursive tests/src -t 5s","test-compiled":"npm run prepublish && NODE_PATH=./lib mocha --compilers js:babel-register --recursive tests/src","coverage-report":"npm t && nyc report --reporter html","test-all":"npm test && for resolver in ./resolvers/*; do cd $resolver && npm test && cd ../..; done","ci-test":"eslint ./src && gulp pretest && cross-env NODE_PATH=./lib istanbul cover --report lcovonly --dir reports/coverage _mocha tests/lib/ -- --recursive --reporter dot","debug":"cross-env NODE_PATH=./lib mocha debug --recursive --reporter dot tests/lib/","prepublish":"gulp prepublish","coveralls":"nyc report --reporter lcovonly && cat ./coverage/lcov.info | coveralls"},"repository":{"type":"git","url":"git+https://github.com/benmosher/eslint-plugin-import.git"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","email":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"babel-eslint":"next","babel-plugin-istanbul":"^2.0.1","babel-preset-es2015-argon":"latest","babel-register":"6.16.3","chai":"^3.4.0","coveralls":"^2.11.4","cross-env":"^3.1.0","eslint":"3.x","eslint-import-resolver-node":"file:./resolvers/node","eslint-import-resolver-webpack":"file:./resolvers/webpack","eslint-module-utils":"file:./utils","eslint-plugin-import":"2.x","gulp":"^3.9.0","gulp-babel":"6.1.2","istanbul":"^0.4.0","linklocal":"^2.6.0","mocha":"^3.1.2","nyc":"^8.3.0","redux":"^3.0.4","rimraf":"2.5.2","typescript":"^2.0.3","typescript-eslint-parser":"^0.4.0"},"peerDependencies":{"eslint":"2.x - 3.x"},"dependencies":{"builtin-modules":"^1.1.1","contains-path":"^0.1.0","debug":"^2.2.0","doctrine":"1.5.0","eslint-import-resolver-node":"^0.2.0","eslint-module-utils":"^2.0.0","has":"^1.0.1","lodash.cond":"^4.3.0","minimatch":"^3.0.3","pkg-up":"^1.0.0"},"nyc":{"require":["babel-register"],"sourceMap":false,"instrument":false},"gitHead":"90ef48b3ade57c77526b285f75dc0cfc41537831","_id":"eslint-plugin-import@2.2.0","_shasum":"72ba306fad305d67c4816348a4699a4229ac8b4e","_from":".","_npmVersion":"3.10.8","_nodeVersion":"4.2.5","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"dist":{"shasum":"72ba306fad305d67c4816348a4699a4229ac8b4e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-2.2.0.tgz"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/eslint-plugin-import-2.2.0.tgz_1478516749963_0.6698825382627547"}},"2.3.0":{"name":"eslint-plugin-import","version":"2.3.0","description":"Import with sanity.","engines":{"node":">=4"},"main":"lib/index.js","directories":{"test":"tests"},"files":["lib","config","memo-parser"],"scripts":{"watch":"cross-env NODE_PATH=./src mocha --watch --compilers js:babel-register --recursive tests/src","cover":"gulp pretest && cross-env NODE_PATH=./lib istanbul cover --dir reports/coverage _mocha tests/lib/ -- --recursive -R progress","pretest":"linklocal","posttest":"eslint ./src","test":"cross-env BABEL_ENV=test NODE_PATH=./src nyc -s mocha -R dot --recursive tests/src -t 5s","test-compiled":"npm run prepublish && NODE_PATH=./lib mocha --compilers js:babel-register --recursive tests/src","coverage-report":"npm t && nyc report --reporter html","test-all":"npm test && for resolver in ./resolvers/*; do cd $resolver && npm test && cd ../..; done","ci-test":"eslint ./src && gulp pretest && cross-env NODE_PATH=./lib istanbul cover --report lcovonly --dir reports/coverage _mocha tests/lib/ -- --recursive --reporter dot","debug":"cross-env NODE_PATH=./lib mocha debug --recursive --reporter dot tests/lib/","prepublish":"gulp prepublish","coveralls":"nyc report --reporter lcovonly && cat ./coverage/lcov.info | coveralls"},"repository":{"type":"git","url":"git+https://github.com/benmosher/eslint-plugin-import.git"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","email":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"babel-eslint":"next","babel-plugin-istanbul":"^2.0.1","babel-preset-es2015-argon":"latest","babel-register":"6.24.1","babylon":"6.15.0","chai":"^3.4.0","coveralls":"^2.11.4","cross-env":"^4.0.0","eslint":"3.x","eslint-import-resolver-node":"file:./resolvers/node","eslint-import-resolver-webpack":"file:./resolvers/webpack","eslint-module-utils":"file:./utils","eslint-plugin-import":"2.x","gulp":"^3.9.0","gulp-babel":"6.1.2","istanbul":"^0.4.0","linklocal":"^2.6.0","mocha":"^3.1.2","nyc":"^8.3.0","redux":"^3.0.4","rimraf":"2.5.2","typescript":"^2.0.3","typescript-eslint-parser":"^2.1.0"},"peerDependencies":{"eslint":"2.x - 3.x"},"dependencies":{"builtin-modules":"^1.1.1","contains-path":"^0.1.0","debug":"^2.2.0","doctrine":"1.5.0","eslint-import-resolver-node":"^0.2.0","eslint-module-utils":"^2.0.0","has":"^1.0.1","lodash.cond":"^4.3.0","minimatch":"^3.0.3","read-pkg-up":"^2.0.0"},"nyc":{"require":["babel-register"],"sourceMap":false,"instrument":false},"gitHead":"b79e08307f40b299811b333cdd5a8d9833e1a5e4","_id":"eslint-plugin-import@2.3.0","_shasum":"37c801e0ada0e296cbdf20c3f393acb5b52af36b","_from":".","_npmVersion":"4.2.0","_nodeVersion":"6.10.0","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"dist":{"shasum":"37c801e0ada0e296cbdf20c3f393acb5b52af36b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-2.3.0.tgz"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"},{"name":"jfmengels","email":"jfm.engels@gmail.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/eslint-plugin-import-2.3.0.tgz_1495622322451_0.7237490636762232"}},"2.5.0":{"name":"eslint-plugin-import","version":"2.5.0","description":"Import with sanity.","engines":{"node":">=4"},"main":"lib/index.js","directories":{"test":"tests"},"files":["lib","config","memo-parser"],"scripts":{"watch":"cross-env NODE_PATH=./src mocha --watch --compilers js:babel-register --recursive tests/src","cover":"gulp pretest && cross-env NODE_PATH=./lib istanbul cover --dir reports/coverage _mocha tests/lib/ -- --recursive -R progress","pretest":"linklocal","posttest":"eslint ./src","test":"cross-env BABEL_ENV=test NODE_PATH=./src nyc -s mocha -R dot --recursive tests/src -t 5s","test-compiled":"npm run prepublish && NODE_PATH=./lib mocha --compilers js:babel-register --recursive tests/src","coverage-report":"npm t && nyc report --reporter html","test-all":"npm test && for resolver in ./resolvers/*; do cd $resolver && npm test && cd ../..; done","ci-test":"eslint ./src && gulp pretest && cross-env NODE_PATH=./lib istanbul cover --report lcovonly --dir reports/coverage _mocha tests/lib/ -- --recursive --reporter dot","debug":"cross-env NODE_PATH=./lib mocha debug --recursive --reporter dot tests/lib/","prepublish":"gulp prepublish","coveralls":"nyc report --reporter lcovonly && cat ./coverage/lcov.info | coveralls"},"repository":{"type":"git","url":"git+https://github.com/benmosher/eslint-plugin-import.git"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","email":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"babel-eslint":"next","babel-plugin-istanbul":"^2.0.1","babel-preset-es2015-argon":"latest","babel-register":"6.24.1","babylon":"6.15.0","chai":"^3.4.0","coveralls":"^2.11.4","cross-env":"^4.0.0","eslint":"3.x","eslint-import-resolver-node":"file:./resolvers/node","eslint-import-resolver-webpack":"file:./resolvers/webpack","eslint-module-utils":"file:./utils","eslint-plugin-import":"2.x","gulp":"^3.9.0","gulp-babel":"6.1.2","istanbul":"^0.4.0","linklocal":"^2.6.0","mocha":"^3.1.2","nyc":"^8.3.0","redux":"^3.0.4","rimraf":"2.5.2","sinon":"^2.3.2","typescript":"^2.0.3","typescript-eslint-parser":"^2.1.0"},"peerDependencies":{"eslint":"2.x - 3.x"},"dependencies":{"builtin-modules":"^1.1.1","contains-path":"^0.1.0","debug":"^2.6.8","doctrine":"1.5.0","eslint-import-resolver-node":"^0.2.0","eslint-module-utils":"^2.0.0","has":"^1.0.1","lodash.cond":"^4.3.0","minimatch":"^3.0.3","read-pkg-up":"^2.0.0"},"nyc":{"require":["babel-register"],"sourceMap":false,"instrument":false},"gitHead":"c41ed065561d77d9c6bd3dfe622b58c6c6b2f7cd","_id":"eslint-plugin-import@2.5.0","_npmVersion":"5.0.3","_nodeVersion":"6.10.0","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"dist":{"integrity":"sha512-JoGslQQHFveBnS3oZGKtinynThbTAo2QEpY5PQaD2VUGxhjB6us1wGD9PbwYLnevBdaEbUUfjtEAWmsEu3CtrQ==","shasum":"293b5ea7910a901a05a47ccdd7546e611725406c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-2.5.0.tgz"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/eslint-plugin-import-2.5.0.tgz_1498129056251_0.38770107878372073"}},"2.6.0":{"name":"eslint-plugin-import","version":"2.6.0","description":"Import with sanity.","engines":{"node":">=4"},"main":"lib/index.js","directories":{"test":"tests"},"files":["lib","config","memo-parser"],"scripts":{"watch":"cross-env NODE_PATH=./src mocha --watch --compilers js:babel-register --recursive tests/src","cover":"gulp pretest && cross-env NODE_PATH=./lib istanbul cover --dir reports/coverage _mocha tests/lib/ -- --recursive -R progress","pretest":"linklocal","posttest":"eslint ./src","test":"cross-env BABEL_ENV=test NODE_PATH=./src nyc -s mocha -R dot --recursive tests/src -t 5s","test-compiled":"npm run prepublish && NODE_PATH=./lib mocha --compilers js:babel-register --recursive tests/src","coverage-report":"npm t && nyc report --reporter html","test-all":"npm test && for resolver in ./resolvers/*; do cd $resolver && npm test && cd ../..; done","ci-test":"eslint ./src && gulp pretest && cross-env NODE_PATH=./lib istanbul cover --report lcovonly --dir reports/coverage _mocha tests/lib/ -- --recursive --reporter dot","debug":"cross-env NODE_PATH=./lib mocha debug --recursive --reporter dot tests/lib/","prepublish":"gulp prepublish","coveralls":"nyc report --reporter lcovonly && cat ./coverage/lcov.info | coveralls"},"repository":{"type":"git","url":"git+https://github.com/benmosher/eslint-plugin-import.git"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","email":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"babel-eslint":"next","babel-plugin-istanbul":"^2.0.1","babel-preset-es2015-argon":"latest","babel-register":"6.24.1","babylon":"6.15.0","chai":"^3.4.0","coveralls":"^2.11.4","cross-env":"^4.0.0","eslint":"3.x","eslint-import-resolver-node":"file:./resolvers/node","eslint-import-resolver-webpack":"file:./resolvers/webpack","eslint-module-utils":"file:./utils","eslint-plugin-import":"2.x","gulp":"^3.9.0","gulp-babel":"6.1.2","istanbul":"^0.4.0","linklocal":"^2.6.0","mocha":"^3.1.2","nyc":"^8.3.0","redux":"^3.0.4","rimraf":"2.5.2","sinon":"^2.3.2","typescript":"^2.0.3","typescript-eslint-parser":"^2.1.0"},"peerDependencies":{"eslint":"2.x - 4.x"},"dependencies":{"builtin-modules":"^1.1.1","contains-path":"^0.1.0","debug":"^2.6.8","doctrine":"1.5.0","eslint-import-resolver-node":"^0.2.0","eslint-module-utils":"^2.0.0","has":"^1.0.1","lodash.cond":"^4.3.0","minimatch":"^3.0.3","read-pkg-up":"^2.0.0"},"nyc":{"require":["babel-register"],"sourceMap":false,"instrument":false},"gitHead":"8101d39ea7fe94c1611b7183e5b171428f86f042","_id":"eslint-plugin-import@2.6.0","_npmVersion":"5.0.3","_nodeVersion":"6.10.0","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"dist":{"integrity":"sha512-JdkYDmMMjhxW6X/IVclD+vQXO6e2nJJT4cKcyTw95mvBCWkr8THXKFhc+WCvGvOscjGuLQzUB7tBeJddrg2jig==","shasum":"2a4bbad36a078e052a3c830ce3dfbd6b8a12c6e5","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-2.6.0.tgz"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/eslint-plugin-import-2.6.0.tgz_1498212901882_0.14409795054234564"}},"2.6.1":{"name":"eslint-plugin-import","version":"2.6.1","description":"Import with sanity.","engines":{"node":">=4"},"main":"lib/index.js","directories":{"test":"tests"},"files":["lib","config","memo-parser"],"scripts":{"watch":"cross-env NODE_PATH=./src mocha --watch --compilers js:babel-register --recursive tests/src","cover":"gulp pretest && cross-env NODE_PATH=./lib istanbul cover --dir reports/coverage _mocha tests/lib/ -- --recursive -R progress","pretest":"linklocal","posttest":"eslint ./src","test":"cross-env BABEL_ENV=test NODE_PATH=./src nyc -s mocha -R dot --recursive tests/src -t 5s","test-compiled":"npm run prepublish && NODE_PATH=./lib mocha --compilers js:babel-register --recursive tests/src","coverage-report":"npm t && nyc report --reporter html","test-all":"npm test && for resolver in ./resolvers/*; do cd $resolver && npm test && cd ../..; done","ci-test":"eslint ./src && gulp pretest && cross-env NODE_PATH=./lib istanbul cover --report lcovonly --dir reports/coverage _mocha tests/lib/ -- --recursive --reporter dot","debug":"cross-env NODE_PATH=./lib mocha debug --recursive --reporter dot tests/lib/","prepublish":"gulp prepublish","coveralls":"nyc report --reporter lcovonly && cat ./coverage/lcov.info | coveralls"},"repository":{"type":"git","url":"git+https://github.com/benmosher/eslint-plugin-import.git"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","email":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"babel-eslint":"next","babel-plugin-istanbul":"^2.0.1","babel-preset-es2015-argon":"latest","babel-register":"6.24.1","babylon":"6.15.0","chai":"^3.4.0","coveralls":"^2.11.4","cross-env":"^4.0.0","eslint":"3.x","eslint-import-resolver-node":"file:./resolvers/node","eslint-import-resolver-webpack":"file:./resolvers/webpack","eslint-module-utils":"file:./utils","eslint-plugin-import":"2.x","gulp":"^3.9.0","gulp-babel":"6.1.2","istanbul":"^0.4.0","linklocal":"^2.6.0","mocha":"^3.1.2","nyc":"^8.3.0","redux":"^3.0.4","rimraf":"2.5.2","sinon":"^2.3.2","typescript":"^2.0.3","typescript-eslint-parser":"^2.1.0"},"peerDependencies":{"eslint":"2.x - 4.x"},"dependencies":{"builtin-modules":"^1.1.1","contains-path":"^0.1.0","debug":"^2.6.8","doctrine":"1.5.0","eslint-import-resolver-node":"^0.3.1","eslint-module-utils":"^2.0.0","has":"^1.0.1","lodash.cond":"^4.3.0","minimatch":"^3.0.3","read-pkg-up":"^2.0.0"},"nyc":{"require":["babel-register"],"sourceMap":false,"instrument":false},"gitHead":"d9b712ac7fd1fddc391f7b234827925c160d956f","_id":"eslint-plugin-import@2.6.1","_npmVersion":"5.0.3","_nodeVersion":"6.10.0","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"dist":{"integrity":"sha512-aAMb32eHCQaQmgdb1MOG1hfu/rPiNgGur2IF71VJeDfTXdLpPiKALKWlzxMdcxQOZZ2CmYVKabAxCvjACxH1uQ==","shasum":"f580be62bb809421d46e338372764afcc9f59bf6","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-2.6.1.tgz"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/eslint-plugin-import-2.6.1.tgz_1498734026453_0.038262748159468174"}},"2.7.0":{"name":"eslint-plugin-import","version":"2.7.0","description":"Import with sanity.","engines":{"node":">=4"},"main":"lib/index.js","directories":{"test":"tests"},"files":["lib","config","memo-parser"],"scripts":{"watch":"cross-env NODE_PATH=./src mocha --watch --compilers js:babel-register --recursive tests/src","cover":"gulp pretest && cross-env NODE_PATH=./lib istanbul cover --dir reports/coverage _mocha tests/lib/ -- --recursive -R progress","pretest":"linklocal","posttest":"eslint ./src","test":"cross-env BABEL_ENV=test NODE_PATH=./src nyc -s mocha -R dot --recursive tests/src -t 5s","test-compiled":"npm run prepublish && NODE_PATH=./lib mocha --compilers js:babel-register --recursive tests/src","coverage-report":"npm t && nyc report --reporter html","test-all":"npm test && for resolver in ./resolvers/*; do cd $resolver && npm test && cd ../..; done","ci-test":"eslint ./src && gulp pretest && cross-env NODE_PATH=./lib istanbul cover --report lcovonly --dir reports/coverage _mocha tests/lib/ -- --recursive --reporter dot","debug":"cross-env NODE_PATH=./lib mocha debug --recursive --reporter dot tests/lib/","prepublish":"gulp prepublish","coveralls":"nyc report --reporter lcovonly && cat ./coverage/lcov.info | coveralls"},"repository":{"type":"git","url":"git+https://github.com/benmosher/eslint-plugin-import.git"},"keywords":["eslint","eslintplugin","es6","jsnext","modules","import","export"],"author":{"name":"Ben Mosher","email":"me@benmosher.com"},"license":"MIT","bugs":{"url":"https://github.com/benmosher/eslint-plugin-import/issues"},"homepage":"https://github.com/benmosher/eslint-plugin-import","devDependencies":{"babel-eslint":"next","babel-plugin-istanbul":"^2.0.1","babel-preset-es2015-argon":"latest","babel-register":"6.24.1","babylon":"6.15.0","chai":"^3.4.0","coveralls":"^2.11.4","cross-env":"^4.0.0","eslint":"3.x","eslint-import-resolver-node":"file:./resolvers/node","eslint-import-resolver-webpack":"file:./resolvers/webpack","eslint-module-utils":"file:./utils","eslint-plugin-import":"2.x","gulp":"^3.9.0","gulp-babel":"6.1.2","istanbul":"^0.4.0","linklocal":"^2.6.0","mocha":"^3.1.2","nyc":"^8.3.0","redux":"^3.0.4","rimraf":"2.5.2","sinon":"^2.3.2","typescript":"^2.0.3","typescript-eslint-parser":"^2.1.0"},"peerDependencies":{"eslint":"2.x - 4.x"},"dependencies":{"builtin-modules":"^1.1.1","contains-path":"^0.1.0","debug":"^2.6.8","doctrine":"1.5.0","eslint-import-resolver-node":"^0.3.1","eslint-module-utils":"^2.1.1","has":"^1.0.1","lodash.cond":"^4.3.0","minimatch":"^3.0.3","read-pkg-up":"^2.0.0"},"nyc":{"require":["babel-register"],"sourceMap":false,"instrument":false},"gitHead":"c9dd91d4fcfab3bb0f209a208e16077cb5843ceb","_id":"eslint-plugin-import@2.7.0","_npmVersion":"5.0.3","_nodeVersion":"6.10.0","_npmUser":{"name":"benmosher","email":"me@benmosher.com"},"dist":{"integrity":"sha512-HGYmpU9f/zJaQiKNQOVfHUh2oLWW3STBrCgH0sHTX1xtsxYlH1zjLh8FlQGEIdZSdTbUMaV36WaZ6ImXkenGxQ==","shasum":"21de33380b9efb55f5ef6d2e210ec0e07e7fa69f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/eslint-plugin-import/-/eslint-plugin-import-2.7.0.tgz"},"maintainers":[{"name":"benmosher","email":"me@benmosher.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/eslint-plugin-import-2.7.0.tgz_1499339128449_0.4138746822718531"}}},"name":"eslint-plugin-import","time":{"modified":"2017-07-29T14:44:19.517Z","created":"2015-03-19T16:11:14.740Z","0.3.0":"2015-03-19T16:11:14.740Z","0.3.2":"2015-03-20T11:19:08.159Z","0.3.3":"2015-03-23T10:41:39.461Z","0.3.4":"2015-03-24T11:23:25.156Z","0.3.5":"2015-03-24T11:51:44.130Z","0.3.6":"2015-03-24T13:03:49.571Z","0.3.8":"2015-03-25T11:07:27.391Z","0.3.9":"2015-03-25T11:09:43.314Z","0.3.10":"2015-03-25T11:34:13.844Z","0.3.11":"2015-03-26T10:57:37.784Z","0.3.12":"2015-03-29T21:09:26.523Z","0.3.13":"2015-03-30T09:08:04.622Z","0.4.0":"2015-04-01T10:53:13.330Z","0.4.1":"2015-04-09T11:37:53.569Z","0.4.2":"2015-04-15T11:00:51.720Z","0.4.3":"2015-04-24T11:20:09.996Z","0.4.4":"2015-05-01T11:41:24.719Z","0.4.5":"2015-06-05T12:25:18.503Z","0.5.1":"2015-07-14T13:38:29.540Z","0.5.2":"2015-07-15T10:43:35.751Z","0.6.0":"2015-07-15T19:32:46.549Z","0.7.0":"2015-07-16T03:05:32.388Z","0.7.1":"2015-07-16T20:49:35.672Z","0.7.2":"2015-07-17T02:06:28.563Z","0.7.3":"2015-07-22T11:09:04.900Z","0.7.4":"2015-07-22T15:37:47.342Z","0.7.5":"2015-07-22T22:33:06.662Z","0.7.6":"2015-07-29T18:00:18.804Z","0.7.7":"2015-07-29T18:30:54.968Z","0.7.8":"2015-08-12T23:33:01.417Z","0.7.9":"2015-09-10T01:39:16.876Z","0.8.0":"2015-10-09T17:39:38.320Z","0.8.1":"2015-10-16T16:56:30.191Z","0.9.1":"2015-11-05T14:01:23.760Z","0.10.0":"2015-11-15T00:53:49.361Z","0.10.1":"2015-11-25T22:05:38.448Z","0.11.0":"2015-11-28T01:54:36.407Z","0.12.0":"2015-12-14T12:25:04.853Z","0.12.1":"2015-12-17T15:49:28.989Z","0.12.2":"2016-02-08T12:46:18.440Z","0.13.0":"2016-02-08T20:30:40.943Z","1.0.0-beta.0":"2016-02-14T00:42:02.483Z","1.0.0":"2016-02-24T12:49:55.845Z","1.0.1":"2016-02-25T12:11:25.952Z","1.0.2":"2016-02-26T11:21:32.074Z","1.0.3":"2016-02-26T12:47:03.144Z","1.0.4":"2016-03-11T12:05:50.612Z","1.1.0":"2016-03-15T11:26:54.097Z","1.2.0":"2016-03-19T11:48:30.979Z","1.3.0":"2016-03-20T20:04:20.784Z","1.4.0":"2016-03-25T10:54:21.862Z","1.5.0":"2016-04-18T10:55:21.267Z","1.6.0":"2016-04-25T18:29:47.966Z","1.6.1":"2016-04-28T10:52:06.548Z","1.7.0":"2016-05-06T12:30:00.927Z","1.8.0":"2016-05-11T12:17:14.765Z","1.8.1":"2016-05-26T10:50:27.220Z","1.9.0":"2016-06-09T12:35:01.392Z","1.9.1":"2016-06-16T10:17:47.589Z","1.9.2":"2016-06-21T12:16:57.094Z","1.10.0":"2016-06-30T11:47:10.353Z","1.10.1":"2016-07-03T11:13:42.756Z","1.10.2":"2016-07-05T01:01:08.665Z","1.10.3":"2016-07-12T23:50:38.567Z","1.11.0":"2016-07-17T20:48:31.879Z","1.11.1":"2016-07-20T11:02:30.316Z","1.12.0":"2016-07-26T10:44:19.599Z","1.13.0":"2016-08-11T11:13:20.149Z","1.14.0":"2016-08-22T11:07:13.657Z","1.15.0":"2016-09-13T10:05:57.527Z","1.16.0":"2016-09-23T11:06:24.863Z","2.0.0-beta.0":"2016-09-26T20:16:09.503Z","2.0.0-beta.1":"2016-09-26T20:21:29.072Z","2.0.0":"2016-09-29T11:52:04.654Z","2.0.1":"2016-10-11T11:55:06.839Z","2.1.0":"2016-11-03T11:47:34.771Z","2.2.0":"2016-11-07T11:05:52.579Z","2.3.0":"2017-05-24T10:38:43.915Z","2.4.0":"2017-06-02T14:24:15.920Z","2.5.0":"2017-06-22T10:57:37.485Z","2.6.0":"2017-06-23T10:15:03.353Z","2.6.1":"2017-06-29T11:00:27.720Z","2.7.0":"2017-07-06T11:05:30.047Z"},"readmeFilename":"README.md","homepage":"https://github.com/benmosher/eslint-plugin-import"}