{"maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"keywords":["eslint","eslintplugin","eslint-plugin","node","nodejs","ecmascript","shebang","file","path","import","require"],"dist-tags":{"latest":"11.1.0","old":"4.2.3","next":"7.0.0-beta.0"},"author":{"name":"Toru Nagashima"},"description":"Additional ESLint's rules for Node.js","readme":"# eslint-plugin-node\n\n[![npm version](https://img.shields.io/npm/v/eslint-plugin-node.svg)](https://www.npmjs.com/package/eslint-plugin-node)\n[![Downloads/month](https://img.shields.io/npm/dm/eslint-plugin-node.svg)](http://www.npmtrends.com/eslint-plugin-node)\n[![Build Status](https://github.com/mysticatea/eslint-plugin-node/workflows/CI/badge.svg)](https://github.com/mysticatea/eslint-plugin-node/actions)\n[![Coverage Status](https://codecov.io/gh/mysticatea/eslint-plugin-node/branch/master/graph/badge.svg)](https://codecov.io/gh/mysticatea/eslint-plugin-node)\n[![Dependency Status](https://david-dm.org/mysticatea/eslint-plugin-node.svg)](https://david-dm.org/mysticatea/eslint-plugin-node)\n\nAdditional ESLint's rules for Node.js\n\n## 💿 Install & Usage\n\n```\n$ npm install --save-dev eslint eslint-plugin-node\n```\n\n- Requires Node.js `>=8.10.0`\n- Requires ESLint `>=5.16.0`\n\n**Note:** It recommends a use of [the \"engines\" field of package.json](https://docs.npmjs.com/files/package.json#engines). The \"engines\" field is used by `node/no-unsupported-features/*` rules.\n\n**.eslintrc.json** (An example)\n\n```jsonc\n{\n    \"extends\": [\n        \"eslint:recommended\",\n        \"plugin:node/recommended\"\n    ],\n    \"parserOptions\": {\n        // Only ESLint 6.2.0 and later support ES2020.\n        \"ecmaVersion\": 2020\n    },\n    \"rules\": {\n        \"node/exports-style\": [\"error\", \"module.exports\"],\n        \"node/file-extension-in-import\": [\"error\", \"always\"],\n        \"node/prefer-global/buffer\": [\"error\", \"always\"],\n        \"node/prefer-global/console\": [\"error\", \"always\"],\n        \"node/prefer-global/process\": [\"error\", \"always\"],\n        \"node/prefer-global/url-search-params\": [\"error\", \"always\"],\n        \"node/prefer-global/url\": [\"error\", \"always\"],\n        \"node/prefer-promises/dns\": \"error\",\n        \"node/prefer-promises/fs\": \"error\"\n    }\n}\n```\n\n**package.json** (An example)\n\n```json\n{\n    \"name\": \"your-module\",\n    \"version\": \"1.0.0\",\n    \"type\": \"commonjs\",\n    \"engines\": {\n        \"node\": \">=8.10.0\"\n    }\n}\n```\n\n## 📖 Rules\n\n- ⭐️ - the mark of recommended rules.\n- ✒️ - the mark of fixable rules.\n\n<!--RULES_TABLE_START-->\n### Possible Errors\n\n| Rule ID | Description |    |\n|:--------|:------------|:--:|\n| [node/no-callback-literal](./docs/rules/no-callback-literal.md) | ensure Node.js-style error-first callback pattern is followed |  |\n| [node/no-exports-assign](./docs/rules/no-exports-assign.md) | disallow the assignment to `exports` | ⭐️ |\n| [node/no-extraneous-import](./docs/rules/no-extraneous-import.md) | disallow `import` declarations which import extraneous modules | ⭐️ |\n| [node/no-extraneous-require](./docs/rules/no-extraneous-require.md) | disallow `require()` expressions which import extraneous modules | ⭐️ |\n| [node/no-missing-import](./docs/rules/no-missing-import.md) | disallow `import` declarations which import non-existence modules | ⭐️ |\n| [node/no-missing-require](./docs/rules/no-missing-require.md) | disallow `require()` expressions which import non-existence modules | ⭐️ |\n| [node/no-unpublished-bin](./docs/rules/no-unpublished-bin.md) | disallow `bin` files that npm ignores | ⭐️ |\n| [node/no-unpublished-import](./docs/rules/no-unpublished-import.md) | disallow `import` declarations which import private modules | ⭐️ |\n| [node/no-unpublished-require](./docs/rules/no-unpublished-require.md) | disallow `require()` expressions which import private modules | ⭐️ |\n| [node/no-unsupported-features/es-builtins](./docs/rules/no-unsupported-features/es-builtins.md) | disallow unsupported ECMAScript built-ins on the specified version | ⭐️ |\n| [node/no-unsupported-features/es-syntax](./docs/rules/no-unsupported-features/es-syntax.md) | disallow unsupported ECMAScript syntax on the specified version | ⭐️ |\n| [node/no-unsupported-features/node-builtins](./docs/rules/no-unsupported-features/node-builtins.md) | disallow unsupported Node.js built-in APIs on the specified version | ⭐️ |\n| [node/process-exit-as-throw](./docs/rules/process-exit-as-throw.md) | make `process.exit()` expressions the same code path as `throw` | ⭐️ |\n| [node/shebang](./docs/rules/shebang.md) | suggest correct usage of shebang | ⭐️✒️ |\n\n### Best Practices\n\n| Rule ID | Description |    |\n|:--------|:------------|:--:|\n| [node/no-deprecated-api](./docs/rules/no-deprecated-api.md) | disallow deprecated APIs | ⭐️ |\n\n### Stylistic Issues\n\n| Rule ID | Description |    |\n|:--------|:------------|:--:|\n| [node/exports-style](./docs/rules/exports-style.md) | enforce either `module.exports` or `exports` |  |\n| [node/file-extension-in-import](./docs/rules/file-extension-in-import.md) | enforce the style of file extensions in `import` declarations | ✒️ |\n| [node/prefer-global/buffer](./docs/rules/prefer-global/buffer.md) | enforce either `Buffer` or `require(\"buffer\").Buffer` |  |\n| [node/prefer-global/console](./docs/rules/prefer-global/console.md) | enforce either `console` or `require(\"console\")` |  |\n| [node/prefer-global/process](./docs/rules/prefer-global/process.md) | enforce either `process` or `require(\"process\")` |  |\n| [node/prefer-global/text-decoder](./docs/rules/prefer-global/text-decoder.md) | enforce either `TextDecoder` or `require(\"util\").TextDecoder` |  |\n| [node/prefer-global/text-encoder](./docs/rules/prefer-global/text-encoder.md) | enforce either `TextEncoder` or `require(\"util\").TextEncoder` |  |\n| [node/prefer-global/url-search-params](./docs/rules/prefer-global/url-search-params.md) | enforce either `URLSearchParams` or `require(\"url\").URLSearchParams` |  |\n| [node/prefer-global/url](./docs/rules/prefer-global/url.md) | enforce either `URL` or `require(\"url\").URL` |  |\n| [node/prefer-promises/dns](./docs/rules/prefer-promises/dns.md) | enforce `require(\"dns\").promises` |  |\n| [node/prefer-promises/fs](./docs/rules/prefer-promises/fs.md) | enforce `require(\"fs\").promises` |  |\n\n### Deprecated rules\n\nThese rules have been deprecated in accordance with the [deprecation policy](https://eslint.org/docs/user-guide/rule-deprecation), and replaced by newer rules:\n\n| Rule ID | Replaced by |\n|:--------|:------------|\n| [node/no-hide-core-modules](./docs/rules/no-hide-core-modules.md) | (nothing) |\n| [node/no-unsupported-features](./docs/rules/no-unsupported-features.md) | [node/no-unsupported-features/es-syntax](./docs/rules/no-unsupported-features/es-syntax.md) and [node/no-unsupported-features/es-builtins](./docs/rules/no-unsupported-features/es-builtins.md) |\n\n<!--RULES_TABLE_END-->\n\n## 🔧 Configs\n\nThis plugin provides three configs:\n\n- `plugin:node/recommended` condiders both CommonJS and ES Modules. If [`\"type\":\"module\"` field](https://medium.com/@nodejs/announcing-a-new-experimental-modules-1be8d2d6c2ff#b023) existed in package.json then it considers files as ES Modules. Otherwise it considers files as CommonJS. In addition, it considers `*.mjs` files as ES Modules and `*.cjs` files as CommonJS.\n- `plugin:node/recommended-module` considers all files as ES Modules.\n- `plugin:node/recommended-script` considers all files as CommonJS.\n\nThose preset config:\n\n- enable [no-process-exit](http://eslint.org/docs/rules/no-process-exit) rule because [the official document](https://nodejs.org/api/process.html#process_process_exit_code) does not recommend a use of `process.exit()`.\n- enable plugin rules which are given :star: in the above table.\n- add `{ecmaVersion: 2019}` and etc into `parserOptions`.\n- add proper globals into `globals`.\n- add this plugin into `plugins`.\n\n## 👫 FAQ\n\n- Q: The `no-missing-import` / `no-missing-require` rules don't work with nested folders in SublimeLinter-eslint\n- A: See [context.getFilename() in rule returns relative path](https://github.com/roadhump/SublimeLinter-eslint#contextgetfilename-in-rule-returns-relative-path) in the SublimeLinter-eslint FAQ.\n\n## 🚥 Semantic Versioning Policy\n\n`eslint-plugin-node` follows [semantic versioning](http://semver.org/) and [ESLint's Semantic Versioning Policy](https://github.com/eslint/eslint#semantic-versioning-policy).\n\n- Patch release (intended to not break your lint build)\n    - A bug fix in a rule that results in it reporting fewer errors.\n    - Improvements to documentation.\n    - Non-user-facing changes such as refactoring code, adding, deleting, or modifying tests, and increasing test coverage.\n    - Re-releasing after a failed release (i.e., publishing a release that doesn't work for anyone).\n- Minor release (might break your lint build)\n    - A bug fix in a rule that results in it reporting more errors.\n    - A new rule is created.\n    - A new option to an existing rule is created.\n    - An existing rule is deprecated.\n- Major release (likely to break your lint build)\n    - A support for old Node version is dropped.\n    - A support for old ESLint version is dropped.\n    - An existing rule is changed in it reporting more errors.\n    - An existing rule is removed.\n    - An existing option of a rule is removed.\n    - An existing config is updated.\n\n## 📰 Changelog\n\n- [GitHub Releases](https://github.com/mysticatea/eslint-plugin-node/releases)\n\n## ❤️ Contributing\n\nWelcome contributing!\n\nPlease use GitHub's Issues/PRs.\n\n### Development Tools\n\n- `npm test` runs tests and measures coverage.\n- `npm run coverage` shows the coverage result of `npm test` command.\n- `npm run clean` removes the coverage result of `npm test` command.\n","repository":{"type":"git","url":"git+https://github.com/mysticatea/eslint-plugin-node.git"},"users":{"byk":true,"rochejul":true,"knoja4":true,"xueboren":true,"cbetancourt":true,"charlietango592":true,"jaymcoder":true,"alexxnica":true,"mtdalpizzol":true,"mikemena":true,"yonigoldberg":true,"princetoad":true,"maemichi-monosense":true,"ashokaditya":true,"456wyc":true,"vparaskevas":true,"spatrick":true,"flumpus-dev":true},"bugs":{"url":"https://github.com/mysticatea/eslint-plugin-node/issues"},"license":"MIT","versions":{"0.0.0":{"name":"eslint-plugin-node","version":"0.0.0","description":"Additional ESLint's rules for Node.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/mysticatea/eslint-plugin-node.git"},"keywords":["eslint","eslintplugin","eslint-plugin"],"author":{"name":"Toru Nagashima"},"license":"MIT","bugs":{"url":"https://github.com/mysticatea/eslint-plugin-node/issues"},"homepage":"https://github.com/mysticatea/eslint-plugin-node#readme","gitHead":"48843e895d6388cd5b46e1eaed05430388a81137","_id":"eslint-plugin-node@0.0.0","_shasum":"850d70fef1195d69e63344f0ff85a6fe004c4101","_from":".","_npmVersion":"3.3.12","_nodeVersion":"4.2.2","_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"dist":{"shasum":"850d70fef1195d69e63344f0ff85a6fe004c4101","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/eslint-plugin-node/-/eslint-plugin-node-0.0.0.tgz","integrity":"sha512-MhFc7JNqCluZahKlt6VYIxdAMumKOODE6lk7hmGV4ezIZWFjeIOUEwB++BcQDBJGV7zqsSRpIVh2neEriaHHpA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCpc3Vj0K1JQWbP5COC1/hBsIuFflbF5PW7Q3b+dYTMMQIhAMVXpiXmIj1+pGmnsKMabrOezT5PAB9TXKpoRfFlomnO"}]},"directories":{}},"0.1.0":{"name":"eslint-plugin-node","version":"0.1.0","description":"Additional ESLint's rules for Node.js","files":["lib","index.js"],"scripts":{"preversion":"npm-run-all test build","postversion":"git push && git push --tags","clean":"rimraf coverage","lint":"eslint lib tests --rulesdir lib/rules --rule \"no-missing-require:2\"","build":"node scripts/generate-index.js","test":"npm-run-all clean lint test:mocha","test:mocha":"istanbul cover node_modules/mocha/bin/_mocha -- tests/lib/**/*.js","dev":"node scripts/dev.js","coveralls":"cat coverage/lcov.info | coveralls"},"peerDependencies":{"eslint":">=1.0.0"},"dependencies":{"minimatch":"^3.0.0","object-assign":"^4.0.1","resolve":"^1.1.6"},"devDependencies":{"coveralls":"^2.11.4","eslint":"^1.10.1","eslint-config-eslint":"^1.0.1","istanbul":"^0.4.0","mocha":"^2.3.4","npm-run-all":"^1.3.2","rimraf":"^2.4.4","shelljs":"^0.5.3","watch":"^0.16.0"},"repository":{"type":"git","url":"git+https://github.com/mysticatea/eslint-plugin-node.git"},"keywords":["eslint","eslintplugin","eslint-plugin"],"author":{"name":"Toru Nagashima"},"license":"MIT","bugs":{"url":"https://github.com/mysticatea/eslint-plugin-node/issues"},"homepage":"https://github.com/mysticatea/eslint-plugin-node#readme","gitHead":"e2a153f21a016728e12e70a947c0835e3533db4a","_id":"eslint-plugin-node@0.1.0","_shasum":"97de2e265d81ba2a2cf447866248e286a60b973d","_from":".","_npmVersion":"3.3.12","_nodeVersion":"4.2.2","_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"dist":{"shasum":"97de2e265d81ba2a2cf447866248e286a60b973d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/eslint-plugin-node/-/eslint-plugin-node-0.1.0.tgz","integrity":"sha512-YddlBBqh/DwoRq6QmUfFnT6zDFDRYvU8IfRX3qlNtncFd1DUVpgiyMAohzLfBMWzOroCwjmf2gmwrb6RvrGq0Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDn8lncD5L/8z+pNIYn/QsoYd0roshzRHF0Z5zwjrW/MwIgTA8XhVnjOokCuaB9lsSYZKceovQFoiU2WyB5vDToCUQ="}]},"directories":{}},"0.2.0":{"name":"eslint-plugin-node","version":"0.2.0","description":"Additional ESLint's rules for Node.js","files":["lib","index.js"],"scripts":{"preversion":"npm-run-all test build","postversion":"git push && git push --tags","clean":"rimraf coverage","lint":"eslint lib tests --rulesdir lib/rules --rule \"no-missing-require:2\"","build":"node scripts/generate-index.js","test":"npm-run-all clean lint test:mocha","test:mocha":"istanbul cover node_modules/mocha/bin/_mocha -- tests/lib/**/*.js","dev":"node scripts/dev.js","coveralls":"cat coverage/lcov.info | coveralls"},"peerDependencies":{"eslint":">=1.0.0"},"dependencies":{"minimatch":"^3.0.0","object-assign":"^4.0.1","resolve":"^1.1.6"},"devDependencies":{"coveralls":"^2.11.4","eslint":"^1.10.1","eslint-config-eslint":"^1.0.1","istanbul":"^0.4.0","mocha":"^2.3.4","npm-run-all":"^1.3.2","rimraf":"^2.4.4","shelljs":"^0.5.3","watch":"^0.16.0"},"repository":{"type":"git","url":"git+https://github.com/mysticatea/eslint-plugin-node.git"},"keywords":["eslint","eslintplugin","eslint-plugin"],"author":{"name":"Toru Nagashima"},"license":"MIT","bugs":{"url":"https://github.com/mysticatea/eslint-plugin-node/issues"},"homepage":"https://github.com/mysticatea/eslint-plugin-node#readme","gitHead":"77cb1634d835662c72b35c823724b71f87baee8a","_id":"eslint-plugin-node@0.2.0","_shasum":"7deab76c7dc2446a190eafeed71717c2913c99f3","_from":".","_npmVersion":"3.3.12","_nodeVersion":"4.2.2","_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"dist":{"shasum":"7deab76c7dc2446a190eafeed71717c2913c99f3","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/eslint-plugin-node/-/eslint-plugin-node-0.2.0.tgz","integrity":"sha512-5bJP//eMOC1DvYi25Drm4lg1ggAFw+KX1Ei50aGLOuXvO6co6p4AY3ImRBbaqfYaYtu2nkZp8sz3sH6rHJxwxg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHQdb9CeOoEMfO/objgAfFRZhje7TWl4bXoU4INboXRwAiBQVRFGvAGhsL9vgrnattomUGDu8Y/NFyJmXbhPrbxvVg=="}]},"directories":{}},"0.2.1":{"name":"eslint-plugin-node","version":"0.2.1","description":"Additional ESLint's rules for Node.js","files":["lib","index.js"],"scripts":{"preversion":"npm-run-all test build","postversion":"git push && git push --tags","clean":"rimraf coverage","lint":"eslint lib tests --rulesdir lib/rules --rule \"no-missing-require:2\"","build":"node scripts/generate-index.js","test":"npm-run-all clean lint test:mocha","test:mocha":"istanbul cover node_modules/mocha/bin/_mocha -- tests/lib/**/*.js","dev":"node scripts/dev.js","coveralls":"cat coverage/lcov.info | coveralls"},"peerDependencies":{"eslint":">=1.0.0"},"dependencies":{"minimatch":"^3.0.0","object-assign":"^4.0.1","resolve":"^1.1.6"},"devDependencies":{"coveralls":"^2.11.4","eslint":"^1.10.1","eslint-config-eslint":"^1.0.1","istanbul":"^0.4.0","mocha":"^2.3.4","npm-run-all":"^1.3.2","rimraf":"^2.4.4","shelljs":"^0.5.3","watch":"^0.16.0"},"repository":{"type":"git","url":"git+https://github.com/mysticatea/eslint-plugin-node.git"},"keywords":["eslint","eslintplugin","eslint-plugin"],"author":{"name":"Toru Nagashima"},"license":"MIT","bugs":{"url":"https://github.com/mysticatea/eslint-plugin-node/issues"},"homepage":"https://github.com/mysticatea/eslint-plugin-node#readme","gitHead":"0cd062316b1e819102bfb7f4e822534d1385376c","_id":"eslint-plugin-node@0.2.1","_shasum":"eebf6769f106c0c5bc0d081761eb16dea1e11eef","_from":".","_npmVersion":"3.5.0","_nodeVersion":"0.10.41","_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"dist":{"shasum":"eebf6769f106c0c5bc0d081761eb16dea1e11eef","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/eslint-plugin-node/-/eslint-plugin-node-0.2.1.tgz","integrity":"sha512-vtfu9snZhjbOjG7xwG4E770l++KrbR89tolys7H/yYb+AgXJuOXyTMbLX4FqKIKZ7IwR7o8uvywL0rTTrtGeNA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCOLLzJ72T3xU/HasoK/FKoecdApzM0/MATYn/WWmIIlgIhAMCxYI0FL+aZm5x0kYNnQb8+753n1xb4fT9pO4D9QAvi"}]},"directories":{}},"0.3.0":{"name":"eslint-plugin-node","version":"0.3.0","description":"Additional ESLint's rules for Node.js","files":["lib","index.js"],"scripts":{"preversion":"npm-run-all test build","postversion":"git push && git push --tags","clean":"rimraf coverage","lint":"eslint lib tests --rulesdir lib/rules --rule \"no-missing-require:2\"","build":"node scripts/generate-index.js","test":"npm-run-all clean lint test:mocha","test:mocha":"istanbul cover node_modules/mocha/bin/_mocha -- tests/lib/**/*.js","coveralls":"cat coverage/lcov.info | coveralls"},"peerDependencies":{"eslint":">=1.10.3"},"dependencies":{"minimatch":"^3.0.0","object-assign":"^4.0.1","resolve":"^1.1.6"},"devDependencies":{"coveralls":"^2.11.4","eslint":"^1.10.3","eslint-config-eslint":"^1.0.1","istanbul":"^0.4.0","mocha":"^2.3.4","npm-run-all":"^1.3.2","rimraf":"^2.4.4","shelljs":"^0.5.3","watch":"^0.16.0"},"repository":{"type":"git","url":"git+https://github.com/mysticatea/eslint-plugin-node.git"},"keywords":["eslint","eslintplugin","eslint-plugin"],"author":{"name":"Toru Nagashima"},"license":"MIT","bugs":{"url":"https://github.com/mysticatea/eslint-plugin-node/issues"},"homepage":"https://github.com/mysticatea/eslint-plugin-node#readme","gitHead":"483bb4edf749a448ff1032a2b4bcf1fc157772e2","_id":"eslint-plugin-node@0.3.0","_shasum":"9208e5d82e00846ff9996f8aefb4362ae9b0c136","_from":".","_npmVersion":"3.5.0","_nodeVersion":"4.2.3","_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"dist":{"shasum":"9208e5d82e00846ff9996f8aefb4362ae9b0c136","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/eslint-plugin-node/-/eslint-plugin-node-0.3.0.tgz","integrity":"sha512-BThlCDiKTZqNlhaWBrbJtU8rqnKtyy22Xshz1D/QQfstuCeixPhVXSEr3tIKHmhpYzq4yQLqaBfZJp18gaW3uQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBbyRPbmICmao9AYnChNP/CHqHR9yzRvVfSSi1er9wZlAiEA7+sqU6EyynJ8f0bJZHZmlowu2nMawB8Ewol86i/RwK4="}]},"directories":{}},"0.4.0":{"name":"eslint-plugin-node","version":"0.4.0","description":"Additional ESLint's rules for Node.js","files":["lib","index.js"],"scripts":{"preversion":"npm-run-all test build","postversion":"git push && git push --tags","clean":"rimraf coverage","lint":"eslint lib tests --rulesdir lib/rules --rule \"{no-missing-require:2, no-unpublished-require:2, shebang:2}\"","build":"node scripts/generate-index.js","test":"npm-run-all clean lint test:mocha","test:mocha":"istanbul cover node_modules/mocha/bin/_mocha -- tests/lib/**/*.js","coveralls":"cat coverage/lcov.info | coveralls"},"peerDependencies":{"eslint":">=1.10.3"},"dependencies":{"ignore":"^2.2.19","minimatch":"^3.0.0","object-assign":"^4.0.1","resolve":"^1.1.6"},"devDependencies":{"coveralls":"^2.11.4","eslint":"^1.10.3","eslint-config-eslint":"^1.0.1","istanbul":"^0.4.0","mocha":"^2.3.4","npm-run-all":"^1.3.2","rimraf":"^2.4.4","shelljs":"^0.5.3"},"repository":{"type":"git","url":"git+https://github.com/mysticatea/eslint-plugin-node.git"},"keywords":["eslint","eslintplugin","eslint-plugin"],"author":{"name":"Toru Nagashima"},"license":"MIT","bugs":{"url":"https://github.com/mysticatea/eslint-plugin-node/issues"},"homepage":"https://github.com/mysticatea/eslint-plugin-node#readme","gitHead":"9e373e2e7a08b0b7bb26d16a9fbf87c23f9a8802","_id":"eslint-plugin-node@0.4.0","_shasum":"c087a6d0527606542d5987d9b124a70677843dea","_from":".","_npmVersion":"3.5.0","_nodeVersion":"4.2.3","_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"dist":{"shasum":"c087a6d0527606542d5987d9b124a70677843dea","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/eslint-plugin-node/-/eslint-plugin-node-0.4.0.tgz","integrity":"sha512-Buyls9sTNaj4oN7dKI/Uezv/bLpJLE67PoDnTvtC6cKLJb4+71D8T1+BY5m9J3afi8qllfYMKBAjrYJ7/yr8fw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCItb87JEVtP2tRrBSSMJkgJUaLaumAPjh+DdTMs/wktwIgGikgVUPN7+3gGAOy2NxJAhXEl0uNGaDDgLf/UJ5uIQs="}]},"directories":{}},"0.4.1":{"name":"eslint-plugin-node","version":"0.4.1","description":"Additional ESLint's rules for Node.js","files":["lib","index.js"],"scripts":{"preversion":"npm-run-all test build","postversion":"git push && git push --tags","clean":"rimraf coverage","lint":"eslint lib tests --rulesdir lib/rules --rule \"{no-missing-require:2, no-unpublished-require:2, shebang:2}\"","build":"node scripts/generate-index.js","test":"npm-run-all clean lint test:mocha","test:mocha":"istanbul cover node_modules/mocha/bin/_mocha -- tests/lib/**/*.js","coveralls":"cat coverage/lcov.info | coveralls"},"peerDependencies":{"eslint":">=1.10.3"},"dependencies":{"ignore":"^2.2.19","minimatch":"^3.0.0","object-assign":"^4.0.1","resolve":"^1.1.6"},"devDependencies":{"coveralls":"^2.11.4","eslint":"^1.10.3","eslint-config-eslint":"^1.0.1","istanbul":"^0.4.0","mocha":"^2.3.4","npm-run-all":"^1.3.2","rimraf":"^2.4.4","shelljs":"^0.5.3"},"repository":{"type":"git","url":"git+https://github.com/mysticatea/eslint-plugin-node.git"},"keywords":["eslint","eslintplugin","eslint-plugin"],"author":{"name":"Toru Nagashima"},"license":"MIT","bugs":{"url":"https://github.com/mysticatea/eslint-plugin-node/issues"},"homepage":"https://github.com/mysticatea/eslint-plugin-node#readme","gitHead":"43442a74fd627a43abc4ed388fffa516080de6e4","_id":"eslint-plugin-node@0.4.1","_shasum":"6f9f8d1496c813bb1e6c114538bd0c245ee9162c","_from":".","_npmVersion":"3.5.0","_nodeVersion":"4.2.3","_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"dist":{"shasum":"6f9f8d1496c813bb1e6c114538bd0c245ee9162c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/eslint-plugin-node/-/eslint-plugin-node-0.4.1.tgz","integrity":"sha512-e+RG6DnGFnqrLAAAbk1CAUm4IrhlsGkiQ7LTfUOQ/wDhiNCWR49Lj72ksYBOAqkiJu+k+3tYvI53kK2qj0MSYw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIArUINqszpZMTiyNDyOmTledOFZUTL34hpm+WTrLB8NrAiBq5xEPoMBpptu7RUQed3EWpIcITtwnLNbVTbBNyx9LvQ=="}]},"directories":{}},"0.5.0":{"name":"eslint-plugin-node","version":"0.5.0","description":"Additional ESLint's rules for Node.js","files":["lib","index.js"],"scripts":{"preversion":"npm-run-all test build","postversion":"git push && git push --tags","clean":"rimraf coverage","lint":"eslint lib tests/lib --rulesdir lib/rules --rule \"{no-missing-require:2, no-unpublished-require:2, shebang:2}\"","build":"node scripts/generate-index.js","test":"npm-run-all clean lint test:mocha","test:mocha":"istanbul cover node_modules/mocha/bin/_mocha -- tests/lib/**/*.js","coveralls":"cat coverage/lcov.info | coveralls"},"peerDependencies":{"eslint":">=1.10.3"},"dependencies":{"ignore":"^2.2.19","minimatch":"^3.0.0","object-assign":"^4.0.1","resolve":"^1.1.6"},"devDependencies":{"coveralls":"^2.11.4","eslint":"1.10.3","eslint-config-mysticatea":"^1.9.0","eslint-plugin-mysticatea":"^1.0.3","istanbul":"^0.4.0","mocha":"^2.3.4","npm-run-all":"^1.3.2","rimraf":"^2.4.4","shelljs":"^0.5.3"},"repository":{"type":"git","url":"git+https://github.com/mysticatea/eslint-plugin-node.git"},"keywords":["eslint","eslintplugin","eslint-plugin"],"author":{"name":"Toru Nagashima"},"license":"MIT","bugs":{"url":"https://github.com/mysticatea/eslint-plugin-node/issues"},"homepage":"https://github.com/mysticatea/eslint-plugin-node#readme","gitHead":"900e64eb03bdce408c3ba59da798ea9a08dd1d8c","_id":"eslint-plugin-node@0.5.0","_shasum":"b8d129a6c39d06a96e8a8427fdd8a168a81dafb5","_from":".","_npmVersion":"3.5.0","_nodeVersion":"0.10.41","_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"dist":{"shasum":"b8d129a6c39d06a96e8a8427fdd8a168a81dafb5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/eslint-plugin-node/-/eslint-plugin-node-0.5.0.tgz","integrity":"sha512-w93ZOeio9BDSNpM4NMxCaOVbSB1W0YgUGq6KzzD8I3EO4TpzEcUB2BRMyATLHotDshwJ3w1jO8ko8QsEP/JwDQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAT0jXhwRij7NUAnR9Dtwvbmh8CvDumTnu7YfVUnnuTIAiAHZnYdSl35B+oRkWK2TutIkuR7b8kimwFQBYqkV26E8g=="}]},"directories":{}},"0.5.1":{"name":"eslint-plugin-node","version":"0.5.1","description":"Additional ESLint's rules for Node.js","files":["lib","index.js"],"scripts":{"preversion":"npm-run-all test build","postversion":"git push && git push --tags","clean":"rimraf coverage","lint":"eslint lib tests/lib --rulesdir lib/rules --rule \"{no-missing-require:2, no-unpublished-require:2, shebang:2}\"","build":"node scripts/generate-index.js","test":"npm-run-all clean lint test:mocha","test:mocha":"istanbul cover node_modules/mocha/bin/_mocha -- tests/lib/**/*.js","coveralls":"cat coverage/lcov.info | coveralls"},"peerDependencies":{"eslint":">=1.10.3"},"dependencies":{"ignore":"^2.2.19","minimatch":"^3.0.0","object-assign":"^4.0.1","resolve":"^1.1.6"},"devDependencies":{"coveralls":"^2.11.4","eslint":"1.10.3","eslint-config-mysticatea":"^1.9.0","eslint-plugin-mysticatea":"^1.0.3","istanbul":"^0.4.0","mocha":"^2.3.4","npm-run-all":"^1.3.2","rimraf":"^2.4.4","shelljs":"^0.5.3"},"repository":{"type":"git","url":"git+https://github.com/mysticatea/eslint-plugin-node.git"},"keywords":["eslint","eslintplugin","eslint-plugin"],"author":{"name":"Toru Nagashima"},"license":"MIT","bugs":{"url":"https://github.com/mysticatea/eslint-plugin-node/issues"},"homepage":"https://github.com/mysticatea/eslint-plugin-node#readme","gitHead":"b32337877e69e4dec9bae8bab94df893ea9e1464","_id":"eslint-plugin-node@0.5.1","_shasum":"f45d4e82ea548f06c714ce298f74aa01da1eca7b","_from":".","_npmVersion":"3.5.0","_nodeVersion":"4.2.3","_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"dist":{"shasum":"f45d4e82ea548f06c714ce298f74aa01da1eca7b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/eslint-plugin-node/-/eslint-plugin-node-0.5.1.tgz","integrity":"sha512-MZeSWNmd3P8yPjU1hl2l9cZoT45arEEtiCWImKkgK7UG9Z0A9GsQjpiw93BeUYfdIq/juHQ7kl4vKkj8LHeEog==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDGXIFRSqOfGO+SOk0XNiQBqd8z7St7so0TRpUWJhADpgIhAIqoxksP/IRAckuZp1N3U9wbOXoasQY5AlUPnx+h811Z"}]},"directories":{}},"0.6.0":{"name":"eslint-plugin-node","version":"0.6.0","description":"Additional ESLint's rules for Node.js","files":["lib","index.js"],"scripts":{"preversion":"npm-run-all test build","postversion":"git push && git push --tags","clean":"rimraf coverage","lint":"eslint lib tests/lib --rulesdir lib/rules --rule \"{no-missing-require:2, no-unpublished-require:2, shebang:2}\"","build":"node scripts/generate-index.js","test":"npm-run-all clean lint test:mocha","test:mocha":"istanbul cover node_modules/mocha/bin/_mocha -- tests/lib/**/*.js","coveralls":"cat coverage/lcov.info | coveralls"},"peerDependencies":{"eslint":">=1.10.3"},"dependencies":{"ignore":"^2.2.19","minimatch":"^3.0.0","object-assign":"^4.0.1","resolve":"^1.1.6"},"devDependencies":{"coveralls":"^2.11.4","eslint":"1.10.3","eslint-config-mysticatea":"^1.9.0","eslint-plugin-mysticatea":"^1.0.3","istanbul":"^0.4.0","mocha":"^2.3.4","npm-run-all":"^1.3.2","rimraf":"^2.4.4","shelljs":"^0.5.3"},"repository":{"type":"git","url":"git+https://github.com/mysticatea/eslint-plugin-node.git"},"keywords":["eslint","eslintplugin","eslint-plugin"],"author":{"name":"Toru Nagashima"},"license":"MIT","bugs":{"url":"https://github.com/mysticatea/eslint-plugin-node/issues"},"homepage":"https://github.com/mysticatea/eslint-plugin-node#readme","gitHead":"0cb67963a9e696c6b2315293fd865acb387f9a58","_id":"eslint-plugin-node@0.6.0","_shasum":"e639a2fa426afc1e05ecb52d78765c99be26ab19","_from":".","_npmVersion":"3.5.0","_nodeVersion":"4.2.3","_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"dist":{"shasum":"e639a2fa426afc1e05ecb52d78765c99be26ab19","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/eslint-plugin-node/-/eslint-plugin-node-0.6.0.tgz","integrity":"sha512-9P89xfZM6BDHsq9rVsxlZBwkyjz9Tv2pyiiZAVooIVNIEVf76WRccvJxRDEHVZNmVnKzt0BWh4iq1IXRVJSZtw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCKGQUAM7pgagnBOUKVfQBCo+WdTefdgM8GUSB8Pu4KxwIhAL7EU/+oCdw9hs/JWDnv1Uj2O+0/Koyvsmm/XCAY3gqx"}]},"directories":{}},"0.6.1":{"name":"eslint-plugin-node","version":"0.6.1","description":"Additional ESLint's rules for Node.js","files":["lib","index.js"],"scripts":{"preversion":"npm-run-all test build","postversion":"git push && git push --tags","clean":"rimraf coverage","lint":"eslint lib tests/lib --rulesdir lib/rules --rule \"{no-missing-require:2, no-unpublished-require:2, shebang:2}\"","build":"node scripts/generate-index.js","test":"npm-run-all clean lint test:mocha","test:mocha":"istanbul cover node_modules/mocha/bin/_mocha -- tests/lib/**/*.js --reporter progress","coveralls":"cat coverage/lcov.info | coveralls"},"peerDependencies":{"eslint":">=1.10.3"},"dependencies":{"ignore":"^2.2.19","minimatch":"^3.0.0","object-assign":"^4.0.1","resolve":"^1.1.6"},"devDependencies":{"coveralls":"^2.11.4","eslint":"1.10.3","eslint-config-mysticatea":"^1.9.0","eslint-plugin-mysticatea":"^1.0.3","istanbul":"^0.4.0","mocha":"^2.3.4","npm-run-all":"^1.3.2","rimraf":"^2.4.4","shelljs":"^0.5.3"},"repository":{"type":"git","url":"git+https://github.com/mysticatea/eslint-plugin-node.git"},"keywords":["eslint","eslintplugin","eslint-plugin"],"author":{"name":"Toru Nagashima"},"license":"MIT","bugs":{"url":"https://github.com/mysticatea/eslint-plugin-node/issues"},"homepage":"https://github.com/mysticatea/eslint-plugin-node#readme","gitHead":"3680f0e59b429028c2cb29ce52a51a68cbb43ff6","_id":"eslint-plugin-node@0.6.1","_shasum":"11e68b5e33f624bb32d21796025f9ac989e43faa","_from":".","_npmVersion":"3.5.0","_nodeVersion":"4.2.3","_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"dist":{"shasum":"11e68b5e33f624bb32d21796025f9ac989e43faa","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/eslint-plugin-node/-/eslint-plugin-node-0.6.1.tgz","integrity":"sha512-kmNjXvoO8U73vmtefcAssI0PyC2LN5MqCSldJEbdmnj+hwer2pLni6Tb+D0bKndWQAVVpM9T7w1oY7W/6/dtMQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDYiryecQDtMXmboM0dYoDpq9UDZhEfzIEOtFyK63+GFQIhAL4wlIZ5ln/dWdvx/nkekT014RuB+h4b8qYbfOOEF2rb"}]},"directories":{}},"0.6.2":{"name":"eslint-plugin-node","version":"0.6.2","description":"Additional ESLint's rules for Node.js","files":["lib","index.js"],"scripts":{"preversion":"npm-run-all test build","postversion":"git push && git push --tags","clean":"rimraf coverage","lint":"eslint lib tests/lib --rulesdir lib/rules --rule \"{no-missing-require:2, no-unpublished-require:2, shebang:2}\"","build":"node scripts/generate-index.js","test":"npm-run-all clean lint test:mocha","test:mocha":"istanbul cover node_modules/mocha/bin/_mocha -- tests/lib/**/*.js --reporter progress","coveralls":"cat coverage/lcov.info | coveralls","travis-test-with-eslint-next":"rimraf node_modules && npm i -g npm@3 && npm i && npm i eslint@next && npm i && npm run test:mocha && npm run coveralls"},"peerDependencies":{"eslint":">=1.10.3 || 2.0.0-alpha-1 || 2.0.0-alpha-2 || 2.0.0-beta.1 || 2.0.0-beta.2 || 2.0.0-beta.3"},"dependencies":{"ignore":"^2.2.19","minimatch":"^3.0.0","object-assign":"^4.0.1","resolve":"^1.1.6"},"devDependencies":{"coveralls":"^2.11.4","eslint":"1.10.3","eslint-config-mysticatea":"^1.9.0","eslint-plugin-mysticatea":"^1.0.3","istanbul":"^0.4.0","mocha":"^2.3.4","npm-run-all":"^1.3.2","rimraf":"^2.4.4","semver":"^5.1.0","shelljs":"^0.5.3"},"repository":{"type":"git","url":"git+https://github.com/mysticatea/eslint-plugin-node.git"},"keywords":["eslint","eslintplugin","eslint-plugin"],"author":{"name":"Toru Nagashima"},"license":"MIT","bugs":{"url":"https://github.com/mysticatea/eslint-plugin-node/issues"},"homepage":"https://github.com/mysticatea/eslint-plugin-node#readme","gitHead":"a42c736142c28a9d9346ad2f981d3301d58d9c1c","_id":"eslint-plugin-node@0.6.2","_shasum":"866430c419bab53592f6b7fad1359f06471ee305","_from":".","_npmVersion":"3.5.0","_nodeVersion":"4.2.3","_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"dist":{"shasum":"866430c419bab53592f6b7fad1359f06471ee305","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/eslint-plugin-node/-/eslint-plugin-node-0.6.2.tgz","integrity":"sha512-JvpRy2DQqyowt9gb7XwL5in8BZprmQ099PrLyyl9oiRxrjDAzbOFOylCu5NhUzCoVP8JyjAc4BcX3c/Z8X3D5Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDe7NM5wAMXBHd+uQsnF21+3eYoI49zPPH/+QG+2MqvPwIgOGmxUX52y93WbPeRV3aP1eaaFur62eVdHWb1vpy4qKU="}]},"directories":{}},"1.0.0":{"name":"eslint-plugin-node","version":"1.0.0","description":"Additional ESLint's rules for Node.js","files":["lib","index.js"],"scripts":{"preversion":"npm-run-all test build","postversion":"git push && git push --tags","clean":"rimraf coverage","lint":"eslint lib tests/lib","build":"node scripts/generate-index.js","test":"npm-run-all clean lint test:mocha","test:mocha":"istanbul cover node_modules/mocha/bin/_mocha -- tests/lib/**/*.js --reporter progress","coveralls":"cat coverage/lcov.info | coveralls"},"peerDependencies":{"eslint":">=1.10.3 <3.0.0"},"dependencies":{"ignore":"^2.2.19","minimatch":"^3.0.0","object-assign":"^4.0.1","resolve":"^1.1.6"},"devDependencies":{"coveralls":"^2.11.4","eslint":"^2.0.0","eslint-config-mysticatea":"^2.0.0","istanbul":"^0.4.0","mocha":"^2.3.4","npm-run-all":"^1.3.2","rimraf":"^2.4.4","semver":"^5.1.0","shelljs":"^0.6.0"},"repository":{"type":"git","url":"git+https://github.com/mysticatea/eslint-plugin-node.git"},"keywords":["eslint","eslintplugin","eslint-plugin"],"author":{"name":"Toru Nagashima"},"license":"MIT","bugs":{"url":"https://github.com/mysticatea/eslint-plugin-node/issues"},"homepage":"https://github.com/mysticatea/eslint-plugin-node#readme","gitHead":"2ebe566fffc78cf515f02e36d226bc133eefcba1","_id":"eslint-plugin-node@1.0.0","_shasum":"9359fce3a8b39bc47483449c1544980f129ba5aa","_from":".","_npmVersion":"3.5.0","_nodeVersion":"4.3.0","_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"dist":{"shasum":"9359fce3a8b39bc47483449c1544980f129ba5aa","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/eslint-plugin-node/-/eslint-plugin-node-1.0.0.tgz","integrity":"sha512-nvEqNBKN1GFIkxGwamasv6am0Bzw0SpfRGa3ceMbkpJnATibEo5zI/lGSsiiCZKUNtLvzC0ew2Jxavikw6Tyzg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDJlw9lt16VxayjQHrz2hHGLt1DO1v1ognhq11b1MecKgIgT2TwykQyVQ58VgTva3zpctBDRZE/efwTegKPpj8lDvI="}]},"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/eslint-plugin-node-1.0.0.tgz_1455353700418_0.7328024783637375"},"directories":{}},"1.1.0":{"name":"eslint-plugin-node","version":"1.1.0","description":"Additional ESLint's rules for Node.js","files":["lib","index.js"],"scripts":{"preversion":"npm-run-all test build","postversion":"git push && git push --tags","clean":"rimraf coverage","lint":"eslint lib tests/lib","build":"node scripts/generate-index.js","test":"npm-run-all clean lint test:mocha","test:mocha":"istanbul cover node_modules/mocha/bin/_mocha -- tests/lib/**/*.js --reporter progress","coveralls":"cat coverage/lcov.info | coveralls"},"engines":{"node":">=0.10"},"peerDependencies":{"eslint":">=1.10.3 <3.0.0"},"dependencies":{"ignore":"^3.0.11","minimatch":"^3.0.0","object-assign":"^4.0.1","resolve":"^1.1.7","semver":"5.1.0"},"devDependencies":{"coveralls":"^2.11.4","eslint":"^2.5.1","eslint-config-mysticatea":"^2.0.0","istanbul":"^0.4.0","mocha":"^2.3.4","npm-run-all":"^1.3.2","rimraf":"^2.4.4","shelljs":"^0.7.0"},"repository":{"type":"git","url":"git+https://github.com/mysticatea/eslint-plugin-node.git"},"keywords":["eslint","eslintplugin","eslint-plugin"],"author":{"name":"Toru Nagashima"},"license":"MIT","bugs":{"url":"https://github.com/mysticatea/eslint-plugin-node/issues"},"homepage":"https://github.com/mysticatea/eslint-plugin-node#readme","gitHead":"4710fdea6aa2bd0c0375885905d9d54a5d2c3673","_id":"eslint-plugin-node@1.1.0","_shasum":"04180f1ef3996628fb467f4dcf83bdf308521651","_from":".","_npmVersion":"3.7.5","_nodeVersion":"6.0.0","_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"dist":{"shasum":"04180f1ef3996628fb467f4dcf83bdf308521651","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/eslint-plugin-node/-/eslint-plugin-node-1.1.0.tgz","integrity":"sha512-Td93dP6atkiVS2X8PNdXWdWNfYHWdpNtwO1yDdtVSlnya1uGfl9Vtq3DISCU0ZKI1E+F1P1DrEgMXnfpcI/SQg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC4hj/GWxPRoWKJRGyS666RfuRScoAOdAW3LzfMGVG0gQIhAOj4WAJw0J2i7ohGXfrM9QAwN+/tK//rbeNY7ICiKsqy"}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/eslint-plugin-node-1.1.0.tgz_1461761539127_0.18606801331043243"},"directories":{}},"1.2.0":{"name":"eslint-plugin-node","version":"1.2.0","description":"Additional ESLint's rules for Node.js","files":["lib","index.js"],"scripts":{"preversion":"npm-run-all test build","postversion":"git push && git push --tags","clean":"rimraf coverage","lint":"eslint lib tests/lib","build":"node scripts/generate-index.js","test":"npm-run-all clean lint test:mocha","test:mocha":"istanbul cover node_modules/mocha/bin/_mocha -- tests/lib/**/*.js --reporter progress","coveralls":"cat coverage/lcov.info | coveralls"},"engines":{"node":">=0.10"},"peerDependencies":{"eslint":">=1.10.3 <3.0.0"},"dependencies":{"ignore":"^3.0.11","minimatch":"^3.0.0","object-assign":"^4.0.1","resolve":"^1.1.7","semver":"5.1.0"},"devDependencies":{"coveralls":"^2.11.4","eslint":"^2.9.0","eslint-config-mysticatea":"^3.0.0","istanbul":"^0.4.0","mocha":"^2.3.4","npm-run-all":"^1.3.2","rimraf":"^2.4.4","shelljs":"^0.7.0"},"repository":{"type":"git","url":"git+https://github.com/mysticatea/eslint-plugin-node.git"},"keywords":["eslint","eslintplugin","eslint-plugin","node","nodejs","ecmascript","shebang","file","path","import","require"],"author":{"name":"Toru Nagashima"},"license":"MIT","bugs":{"url":"https://github.com/mysticatea/eslint-plugin-node/issues"},"homepage":"https://github.com/mysticatea/eslint-plugin-node#readme","gitHead":"15c9335be034b5bbb023eb7c0104a1e7aee6e846","_id":"eslint-plugin-node@1.2.0","_shasum":"99e7e819917735b7fa8f5b70c6a0be36be933f98","_from":".","_npmVersion":"3.8.8","_nodeVersion":"6.0.0","_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"dist":{"shasum":"99e7e819917735b7fa8f5b70c6a0be36be933f98","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/eslint-plugin-node/-/eslint-plugin-node-1.2.0.tgz","integrity":"sha512-q8nN/03lGuNfUqdQCRed1V4/T2GJbFhgY5Hf1uruFQgWsDb4VvEfbMhn3i+GArOpRqeN8/EvNT8exIAQGTnP1w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCJ1FefU0qJuVHLYEtG9lRqZwn+5xTamdvPcPfuZpYr1QIgfSk2SzzBnHbddgMVzGqFqRQm4id/jK1sXHwfH2Ys+J0="}]},"maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/eslint-plugin-node-1.2.0.tgz_1462465221320_0.11583641543984413"},"directories":{}},"1.2.1":{"name":"eslint-plugin-node","version":"1.2.1","description":"Additional ESLint's rules for Node.js","files":["lib","index.js"],"scripts":{"preversion":"npm-run-all test build","postversion":"git push && git push --tags","clean":"rimraf coverage","lint":"eslint lib tests/lib","build":"node scripts/generate-index.js","test":"npm-run-all clean lint test:mocha","test:mocha":"istanbul cover node_modules/mocha/bin/_mocha -- tests/lib/**/*.js --reporter progress","coveralls":"cat coverage/lcov.info | coveralls"},"engines":{"node":">=0.10"},"peerDependencies":{"eslint":">=1.10.3 <3.0.0"},"dependencies":{"ignore":"^3.0.11","minimatch":"^3.0.0","object-assign":"^4.0.1","resolve":"^1.1.7","semver":"5.1.0"},"devDependencies":{"coveralls":"^2.11.4","eslint":"^2.9.0","eslint-config-mysticatea":"^3.0.0","istanbul":"^0.4.0","mocha":"^2.3.4","npm-run-all":"^1.3.2","rimraf":"^2.4.4","shelljs":"^0.7.0"},"repository":{"type":"git","url":"git+https://github.com/mysticatea/eslint-plugin-node.git"},"keywords":["eslint","eslintplugin","eslint-plugin","node","nodejs","ecmascript","shebang","file","path","import","require"],"author":{"name":"Toru Nagashima"},"license":"MIT","bugs":{"url":"https://github.com/mysticatea/eslint-plugin-node/issues"},"homepage":"https://github.com/mysticatea/eslint-plugin-node#readme","gitHead":"f0265444585a292bd426cce290550bbd25f81581","_id":"eslint-plugin-node@1.2.1","_shasum":"4acc8f2703e6aed227f651d4fc9e4000c175b888","_from":".","_npmVersion":"3.8.8","_nodeVersion":"6.0.0","_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"dist":{"shasum":"4acc8f2703e6aed227f651d4fc9e4000c175b888","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/eslint-plugin-node/-/eslint-plugin-node-1.2.1.tgz","integrity":"sha512-EO7x23dHC67aH5/SB8rH7btgUE16s+eVcewtp/4KUG7pm/dzVpHAcF84uS/bgXcVcHrfhAFP/QqVm1SNSWJykA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFjdNjx+/h+Phml14Oa+grSgqYzSBMBzqdfInVOYz9beAiAt8IaYEdx76ZTMbwNGuEnfPepfmvubA7+88qF8sHNrYQ=="}]},"maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/eslint-plugin-node-1.2.1.tgz_1462466011775_0.9130302697885782"},"directories":{}},"1.2.2":{"name":"eslint-plugin-node","version":"1.2.2","description":"Additional ESLint's rules for Node.js","files":["lib","index.js"],"scripts":{"preversion":"run-s -sn clean test:* build","postversion":"git push && git push --tags","clean":"rimraf coverage","build":"node scripts/generate-index.js","test":"run-s -sn clean test:*","test:lint":"eslint lib tests/lib","test:mocha":"istanbul cover node_modules/mocha/bin/_mocha -- tests/lib/**/*.js --reporter progress","coveralls":"cat coverage/lcov.info | coveralls"},"engines":{"node":">=0.10"},"peerDependencies":{"eslint":"^1.10.3 || ^2.0.0"},"dependencies":{"ignore":"^3.0.11","minimatch":"^3.0.0","object-assign":"^4.0.1","resolve":"^1.1.7","semver":"5.1.0"},"devDependencies":{"coveralls":"^2.11.4","eslint":"^2.9.0","eslint-config-mysticatea":"^3.0.0","istanbul":"^0.4.0","mocha":"^2.3.4","npm-run-all":"^2.0.0","rimraf":"^2.4.4","shelljs":"^0.7.0"},"repository":{"type":"git","url":"git+https://github.com/mysticatea/eslint-plugin-node.git"},"keywords":["eslint","eslintplugin","eslint-plugin","node","nodejs","ecmascript","shebang","file","path","import","require"],"author":{"name":"Toru Nagashima"},"license":"MIT","bugs":{"url":"https://github.com/mysticatea/eslint-plugin-node/issues"},"homepage":"https://github.com/mysticatea/eslint-plugin-node#readme","gitHead":"2201894f9abd3c039b32eb0d87b238ee87220a4c","_id":"eslint-plugin-node@1.2.2","_shasum":"76ce39d25fead1015fa4d24c542d559300a62f8f","_from":".","_npmVersion":"3.7.5","_nodeVersion":"6.1.0","_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"dist":{"shasum":"76ce39d25fead1015fa4d24c542d559300a62f8f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/eslint-plugin-node/-/eslint-plugin-node-1.2.2.tgz","integrity":"sha512-Plb5Cfpz1Ksxt+GQPCFufweT/8G8/C3lyDETjGbXq6829DBHoroVE1pNc5vBLXvIs90wbtoq+35u21lLxCTBtA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCdy4BGWePJDwOdkodZpa/XIn85pME2bImZ5KNCxs044wIhANY4OTQcgMLqjIA9SKH1VfHbKXms+vGDAeDKzlEfF70U"}]},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/eslint-plugin-node-1.2.2.tgz_1463144672798_0.8405899086501449"},"directories":{}},"1.3.0":{"name":"eslint-plugin-node","version":"1.3.0","description":"Additional ESLint's rules for Node.js","files":["lib","index.js"],"scripts":{"preversion":"run-s -sn clean test:* build","postversion":"git push && git push --tags","clean":"rimraf coverage","build":"node scripts/generate-index.js","test":"run-s -sn clean test:*","test:lint":"eslint lib tests/lib","test:mocha":"istanbul cover node_modules/mocha/bin/_mocha -- tests/lib/**/*.js --reporter progress","coveralls":"cat coverage/lcov.info | coveralls"},"engines":{"node":">=0.10"},"peerDependencies":{"eslint":"^1.10.3 || ^2.0.0"},"dependencies":{"ignore":"^3.0.11","minimatch":"^3.0.0","object-assign":"^4.0.1","resolve":"^1.1.7","semver":"5.1.0"},"devDependencies":{"coveralls":"^2.11.4","eslint":"^2.9.0","eslint-config-mysticatea":"^3.0.0","istanbul":"^0.4.0","mocha":"^2.3.4","npm-run-all":"^2.0.0","rimraf":"^2.4.4","shelljs":"^0.7.0"},"repository":{"type":"git","url":"git+https://github.com/mysticatea/eslint-plugin-node.git"},"keywords":["eslint","eslintplugin","eslint-plugin","node","nodejs","ecmascript","shebang","file","path","import","require"],"author":{"name":"Toru Nagashima"},"license":"MIT","bugs":{"url":"https://github.com/mysticatea/eslint-plugin-node/issues"},"homepage":"https://github.com/mysticatea/eslint-plugin-node#readme","gitHead":"fdfb0e9897a395cc7b020532d0cb8e5415945c41","_id":"eslint-plugin-node@1.3.0","_shasum":"4d424d8a3f6d0eaaf3756350626e885c02f6a0fb","_from":".","_npmVersion":"3.7.5","_nodeVersion":"6.1.0","_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"dist":{"shasum":"4d424d8a3f6d0eaaf3756350626e885c02f6a0fb","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/eslint-plugin-node/-/eslint-plugin-node-1.3.0.tgz","integrity":"sha512-YGImHkGf79E6+O0250Y6fSUYtZLB2EBOqL+VBsjgHNoL7eejGFJKFFaITPbYcjHXLm2URKnohvxmRxKIgo1P7A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIB6+nFA7T47dgB1d2zB8NFsspm0q5pGjSskNf5AdbIRYAiEArz1Anmp3ef//WOcXdjIrE+RweY9hncwuKRFhvEPp11I="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/eslint-plugin-node-1.3.0.tgz_1463224855288_0.6463475273922086"},"directories":{}},"1.4.0":{"name":"eslint-plugin-node","version":"1.4.0","description":"Additional ESLint's rules for Node.js","files":["lib","index.js"],"scripts":{"preversion":"run-s -sn clean test:* build","postversion":"git push && git push --tags","clean":"rimraf coverage","build":"node scripts/generate-index.js","test":"run-s -sn clean test:*","test:lint":"eslint lib tests/lib","test:mocha":"istanbul cover node_modules/mocha/bin/_mocha -- tests/lib/**/*.js --reporter progress","coveralls":"cat coverage/lcov.info | coveralls"},"engines":{"node":">=0.10"},"peerDependencies":{"eslint":"^1.10.3 || ^2.0.0"},"dependencies":{"ignore":"^3.0.11","minimatch":"^3.0.0","object-assign":"^4.0.1","resolve":"^1.1.7","semver":"5.1.0"},"devDependencies":{"coveralls":"^2.11.4","eslint":"^2.9.0","eslint-config-mysticatea":"^3.0.0","istanbul":"^0.4.0","mocha":"^2.3.4","npm-run-all":"^2.0.0","rimraf":"^2.4.4","shelljs":"^0.7.0"},"repository":{"type":"git","url":"git+https://github.com/mysticatea/eslint-plugin-node.git"},"keywords":["eslint","eslintplugin","eslint-plugin","node","nodejs","ecmascript","shebang","file","path","import","require"],"author":{"name":"Toru Nagashima"},"license":"MIT","bugs":{"url":"https://github.com/mysticatea/eslint-plugin-node/issues"},"homepage":"https://github.com/mysticatea/eslint-plugin-node#readme","gitHead":"1e0d9da3f496e27be5109d2efb76f53efc929316","_id":"eslint-plugin-node@1.4.0","_shasum":"c91c8479f4376bea6588da126d6b92af0f591990","_from":".","_npmVersion":"3.9.0","_nodeVersion":"6.2.0","_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"dist":{"shasum":"c91c8479f4376bea6588da126d6b92af0f591990","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/eslint-plugin-node/-/eslint-plugin-node-1.4.0.tgz","integrity":"sha512-fKxUmRCKuuw7//MGJeeOkDvA2VGqMsIKjWBOrJBml50HGVq7g66Eh8mn+KjgDUbxAsDc6aQRvfLYBYGW1S46Qg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD3Y/dJAps4j113KcnpeCtHlWzv6Gh7bJbTob55HOG7DQIhAKOpxWFRAVjFL18DfxzHuyeiqq0bJ/KO0x6CrnkzPZvp"}]},"maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/eslint-plugin-node-1.4.0.tgz_1463871771797_0.5881357362959534"},"directories":{}},"1.5.0":{"name":"eslint-plugin-node","version":"1.5.0","description":"Additional ESLint's rules for Node.js","files":["conf","lib","index.js"],"scripts":{"preversion":"run-s -sn clean build test:*","postversion":"git push && git push --tags","clean":"rimraf coverage","build":"node scripts/generate-index.js","test":"run-s -sn clean build test:*","test:lint":"eslint lib tests/lib index.js","test:mocha":"istanbul cover node_modules/mocha/bin/_mocha -- tests/lib/**/*.js --reporter progress","coveralls":"cat coverage/lcov.info | coveralls"},"engines":{"node":">=0.10"},"peerDependencies":{"eslint":"^1.10.3 || ^2.0.0"},"dependencies":{"ignore":"^3.0.11","minimatch":"^3.0.0","object-assign":"^4.0.1","resolve":"^1.1.7","semver":"5.1.0"},"devDependencies":{"coveralls":"^2.11.4","eslint":"^2.9.0","eslint-config-mysticatea":"^3.0.0","istanbul":"^0.4.0","mocha":"^2.3.4","npm-run-all":"^2.0.0","rimraf":"^2.4.4","shelljs":"^0.7.0"},"repository":{"type":"git","url":"git+https://github.com/mysticatea/eslint-plugin-node.git"},"keywords":["eslint","eslintplugin","eslint-plugin","node","nodejs","ecmascript","shebang","file","path","import","require"],"author":{"name":"Toru Nagashima"},"license":"MIT","bugs":{"url":"https://github.com/mysticatea/eslint-plugin-node/issues"},"homepage":"https://github.com/mysticatea/eslint-plugin-node#readme","gitHead":"42fd1c8756520660d4e0508f67e80906fc7ece4a","_id":"eslint-plugin-node@1.5.0","_shasum":"66247bd0978a337b8f364cffa20ed4b27c388214","_from":".","_npmVersion":"3.9.0","_nodeVersion":"6.2.0","_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"dist":{"shasum":"66247bd0978a337b8f364cffa20ed4b27c388214","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/eslint-plugin-node/-/eslint-plugin-node-1.5.0.tgz","integrity":"sha512-HMSfeFiBYvuHZghUY1DEmOVnYz4w9c0s6MYrpVWvg9gxkK/eguXVVcu8bDZUr0gkWEAuUrzb5J09x4vQxqlFBw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCSuUJfuDL8VnpTN7eiH/6IFRYBkG9Gs+AsRVjifl/08gIgE/MrE5khIsYf9Auwrg8oMQWiRTAV0d6C0qkUCclW3dQ="}]},"maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/eslint-plugin-node-1.5.0.tgz_1466137005273_0.22204394405707717"},"directories":{}},"1.5.1":{"name":"eslint-plugin-node","version":"1.5.1","description":"Additional ESLint's rules for Node.js","files":["conf","lib","index.js"],"scripts":{"preversion":"run-s -sn clean build test:*","postversion":"git push && git push --tags","clean":"rimraf coverage","build":"node scripts/generate-index.js","test":"run-s -sn clean build test:*","test:lint":"eslint lib tests/lib index.js","test:mocha":"istanbul cover node_modules/mocha/bin/_mocha -- tests/lib/**/*.js --reporter progress","coveralls":"cat coverage/lcov.info | coveralls"},"engines":{"node":">=0.10"},"peerDependencies":{"eslint":"^1.10.3 || ^2.0.0"},"dependencies":{"ignore":"^3.0.11","minimatch":"^3.0.2","object-assign":"^4.0.1","resolve":"^1.1.7","semver":"5.1.0"},"devDependencies":{"coveralls":"^2.11.4","eslint":"^2.9.0","eslint-config-mysticatea":"^3.0.0","istanbul":"^0.4.0","mocha":"^2.3.4","npm-run-all":"^2.0.0","rimraf":"^2.4.4","shelljs":"^0.7.0"},"repository":{"type":"git","url":"git+https://github.com/mysticatea/eslint-plugin-node.git"},"keywords":["eslint","eslintplugin","eslint-plugin","node","nodejs","ecmascript","shebang","file","path","import","require"],"author":{"name":"Toru Nagashima"},"license":"MIT","bugs":{"url":"https://github.com/mysticatea/eslint-plugin-node/issues"},"homepage":"https://github.com/mysticatea/eslint-plugin-node#readme","gitHead":"413c23dbefa534bf3b1e0761a3e035b8966e5c20","_id":"eslint-plugin-node@1.5.1","_shasum":"270770494a1310cde1fc2bb5cea5c33ad157bc06","_from":".","_npmVersion":"3.9.0","_nodeVersion":"6.2.0","_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"dist":{"shasum":"270770494a1310cde1fc2bb5cea5c33ad157bc06","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/eslint-plugin-node/-/eslint-plugin-node-1.5.1.tgz","integrity":"sha512-DpF+GKFDHhJyOErnj6pDECe4XGlCcXDBcRRklHbytGTrRIIc7TolEo78IvXIr5t3aNYaVOudNihw3ocLeDXPxQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDh8/b8W6+lcyKWsLcRnNPuwCmnfv9Mpr4LFFnFvAAVTAIgFfkoPgVZ9oHiyDDVQNSR1Xi7C8ePStfF+TpKmRF25kc="}]},"maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/eslint-plugin-node-1.5.1.tgz_1466676805740_0.011099587427452207"},"directories":{}},"1.5.2":{"name":"eslint-plugin-node","version":"1.5.2","description":"Additional ESLint's rules for Node.js","files":["conf","lib","index.js"],"scripts":{"preversion":"run-s -sn clean build test:*","postversion":"git push && git push --tags","clean":"rimraf coverage","build":"node scripts/generate-index.js","test":"run-s -sn clean build test:*","test:lint":"eslint lib tests/lib index.js","test:mocha":"istanbul cover node_modules/mocha/bin/_mocha -- tests/lib/**/*.js --reporter progress","coveralls":"cat coverage/lcov.info | coveralls"},"engines":{"node":">=0.10"},"peerDependencies":{"eslint":">=1.10.3"},"dependencies":{"ignore":"^3.0.11","minimatch":"^3.0.2","object-assign":"^4.0.1","resolve":"^1.1.7","semver":"5.1.0"},"devDependencies":{"coveralls":"^2.11.4","eslint":"^2.9.0","eslint-config-mysticatea":"^3.0.0","istanbul":"^0.4.0","mocha":"^2.3.4","npm-run-all":"^2.0.0","rimraf":"^2.4.4","shelljs":"^0.7.0"},"repository":{"type":"git","url":"git+https://github.com/mysticatea/eslint-plugin-node.git"},"keywords":["eslint","eslintplugin","eslint-plugin","node","nodejs","ecmascript","shebang","file","path","import","require"],"author":{"name":"Toru Nagashima"},"license":"MIT","bugs":{"url":"https://github.com/mysticatea/eslint-plugin-node/issues"},"homepage":"https://github.com/mysticatea/eslint-plugin-node#readme","gitHead":"a7f3846c6984fc71379ce245dbc38ea0f62df801","_id":"eslint-plugin-node@1.5.2","_shasum":"f816907fb2c0570fe0cc8ccc6b6ca1cc8f5718f6","_from":".","_npmVersion":"3.9.0","_nodeVersion":"6.2.0","_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"dist":{"shasum":"f816907fb2c0570fe0cc8ccc6b6ca1cc8f5718f6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/eslint-plugin-node/-/eslint-plugin-node-1.5.2.tgz","integrity":"sha512-jfTkXiPhjrm5RQtj5VFClK5FyDDfm7gUuLoTB8OQNAPq41rTCkG9IBKuYi2+i/P4nUixF0o7UJi/Kc1DtPbtSA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDPy493kjR9IRbNqmGMWUAG8nWYzLxjOf7BogPKXB/TUAiB58a2SkwB2uYv7is+hPOOUcwhB2o/L82O/B9gJDwA2Cw=="}]},"maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/eslint-plugin-node-1.5.2.tgz_1467463072139_0.01960058882832527"},"directories":{}},"2.0.0":{"name":"eslint-plugin-node","version":"2.0.0","description":"Additional ESLint's rules for Node.js","files":["conf","lib","index.js"],"scripts":{"preversion":"run-s -sn clean build test:*","postversion":"git push && git push --tags","clean":"rimraf coverage","build":"node scripts/generate-index.js","test":"run-s -sn clean build test:*","test:lint":"if-node-version \">=4\" eslint lib tests/lib index.js","test:mocha":"istanbul cover node_modules/mocha/bin/_mocha -- tests/lib/**/*.js --reporter progress","coveralls":"cat coverage/lcov.info | coveralls"},"engines":{"node":">=0.10"},"peerDependencies":{"eslint":">=2.0.0"},"dependencies":{"ignore":"^3.0.11","minimatch":"^3.0.2","object-assign":"^4.0.1","resolve":"^1.1.7","semver":"5.2.0"},"devDependencies":{"coveralls":"^2.11.4","eslint":"^3.0.0","eslint-config-mysticatea":"^5.0.0","if-node-version":"^0.1.0","istanbul":"^0.4.0","mocha":"^2.3.4","npm-run-all":"^2.0.0","rimraf":"^2.4.4","shelljs":"^0.7.0"},"repository":{"type":"git","url":"git+https://github.com/mysticatea/eslint-plugin-node.git"},"keywords":["eslint","eslintplugin","eslint-plugin","node","nodejs","ecmascript","shebang","file","path","import","require"],"author":{"name":"Toru Nagashima"},"license":"MIT","bugs":{"url":"https://github.com/mysticatea/eslint-plugin-node/issues"},"homepage":"https://github.com/mysticatea/eslint-plugin-node#readme","gitHead":"9efa7f3e98df43e9f802781a9785d6cc0fa132be","_id":"eslint-plugin-node@2.0.0","_shasum":"d49dc427cedc0df436238cdcb06acd961fa38de5","_from":".","_npmVersion":"3.9.0","_nodeVersion":"6.2.2","_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"dist":{"shasum":"d49dc427cedc0df436238cdcb06acd961fa38de5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/eslint-plugin-node/-/eslint-plugin-node-2.0.0.tgz","integrity":"sha512-TKVI6c317pLfGsZgqJ01dfx7r15fE22EWiaAgk9CsLOxANx11nGedvyvITgIYZEOJGAQFWTmL7i4wBEx+wfLMw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDfd4uLhq6GQmkbM2U0oH8uv93ON9jZghLLvojrQF+fKAiEA/5qe/gxnriPPLgRGaK7jAzoiGI3lVfc6S8jT4tMN7OY="}]},"maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/eslint-plugin-node-2.0.0.tgz_1467557764723_0.48277507023885846"},"directories":{}},"2.1.0":{"name":"eslint-plugin-node","version":"2.1.0","description":"Additional ESLint's rules for Node.js","files":["conf","lib","index.js"],"scripts":{"preversion":"run-s -sn clean build test:*","postversion":"git push && git push --tags","clean":"rimraf .nyc_output coverage index.js","build":"node scripts/generate-index.js","test":"run-s -sn clean build test:*","test:lint":"if-node-version \">=4\" eslint lib tests/lib index.js","test:mocha":"nyc mocha tests/lib/**/*.js --reporter progress","coverage":"nyc report --reporter=lcov && opener ./coverage/lcov-report/index.html","test@2":"npm rm eslint-config-mysticatea && npm i eslint@2 && npm run test:mocha","codecov":"nyc report -r lcovonly && codecov"},"engines":{"node":">=0.10"},"peerDependencies":{"eslint":">=2.0.0"},"dependencies":{"ignore":"^3.0.11","minimatch":"^3.0.2","object-assign":"^4.0.1","resolve":"^1.1.7","semver":"5.3.0"},"devDependencies":{"codecov":"^1.0.1","eslint":"^3.6.0","eslint-config-mysticatea":"^6.0.0","if-node-version":"^1.0.0","mocha":"^3.0.2","npm-run-all":"^3.1.0","nyc":"^8.3.0","opener":"^1.4.2","rimraf":"^2.4.4","shelljs":"^0.7.0"},"repository":{"type":"git","url":"git+https://github.com/mysticatea/eslint-plugin-node.git"},"keywords":["eslint","eslintplugin","eslint-plugin","node","nodejs","ecmascript","shebang","file","path","import","require"],"author":{"name":"Toru Nagashima"},"license":"MIT","bugs":{"url":"https://github.com/mysticatea/eslint-plugin-node/issues"},"homepage":"https://github.com/mysticatea/eslint-plugin-node#readme","gitHead":"8788242783a299546e3fc64a969ec4ad2ed3722b","_id":"eslint-plugin-node@2.1.0","_shasum":"33bc314af26eecb88dd5c3042b8a2ac1fa75c32d","_from":".","_npmVersion":"3.8.9","_nodeVersion":"4.5.0","_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"dist":{"shasum":"33bc314af26eecb88dd5c3042b8a2ac1fa75c32d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/eslint-plugin-node/-/eslint-plugin-node-2.1.0.tgz","integrity":"sha512-ce/8PLg5Rc+uQagpbRJTEhQ5sY8ANhVUWqSnxNoLClRXqsxvBlYXK81h9eQTaKWLzg8iyfnlfzscJybY8/ZzrA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAjTx+XaD3QuBdO5p5E90zBWbeZOOZK/5aMSeUGy7de0AiBSkWwJUgFsqbF/dFOF868FbjsMU6FqY0RaHVP/uoSmQA=="}]},"maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/eslint-plugin-node-2.1.0.tgz_1474792692570_0.8622047989629209"},"directories":{}},"2.1.1":{"name":"eslint-plugin-node","version":"2.1.1","description":"Additional ESLint's rules for Node.js","files":["conf","lib","index.js"],"scripts":{"preversion":"run-s -sn clean build test:*","postversion":"git push && git push --tags","clean":"rimraf .nyc_output coverage index.js","build":"node scripts/generate-index.js","test":"run-s -sn clean build test:*","test:lint":"if-node-version \">=4\" eslint lib tests/lib index.js","test:mocha":"nyc mocha tests/lib/**/*.js --reporter progress","coverage":"nyc report --reporter=lcov && opener ./coverage/lcov-report/index.html","test@2":"npm rm eslint-config-mysticatea && npm i eslint@2 && npm run test:mocha","codecov":"nyc report -r lcovonly && codecov"},"engines":{"node":">=0.10"},"peerDependencies":{"eslint":">=2.0.0"},"dependencies":{"ignore":"^3.0.11","minimatch":"^3.0.2","object-assign":"^4.0.1","resolve":"^1.1.7","semver":"5.3.0"},"devDependencies":{"codecov":"^1.0.1","eslint":"^3.6.0","eslint-config-mysticatea":"^6.0.0","if-node-version":"^1.0.0","mocha":"^3.0.2","npm-run-all":"^3.1.0","nyc":"^8.3.0","opener":"^1.4.2","rimraf":"^2.4.4","shelljs":"^0.7.0"},"repository":{"type":"git","url":"git+https://github.com/mysticatea/eslint-plugin-node.git"},"keywords":["eslint","eslintplugin","eslint-plugin","node","nodejs","ecmascript","shebang","file","path","import","require"],"author":{"name":"Toru Nagashima"},"license":"MIT","bugs":{"url":"https://github.com/mysticatea/eslint-plugin-node/issues"},"homepage":"https://github.com/mysticatea/eslint-plugin-node#readme","gitHead":"06231d4c5ddb4bef203ece2970b5e6fa9592455d","_id":"eslint-plugin-node@2.1.1","_shasum":"a6aa469e935289be9607800f8695de22ac32fca1","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.3.0","_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"dist":{"shasum":"a6aa469e935289be9607800f8695de22ac32fca1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/eslint-plugin-node/-/eslint-plugin-node-2.1.1.tgz","integrity":"sha512-CosGjAvV4InrH1JkrXMyHmODL7EuEIX5Sz1uUebkHTmF32JvaNxFr/ehb4dWQZypFKwIR+oxstyEOE6G6FtTsQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCE2OOxC4wwFkkMYPAMe+tkrT6QfMV3duihkh7Whpt3ygIgKFyhIEYgBLLRqUvrSAyc8/oCILF6ejLlCRpWbcxP3IU="}]},"maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/eslint-plugin-node-2.1.1.tgz_1474855379212_0.5700865865219384"},"directories":{}},"2.1.2":{"name":"eslint-plugin-node","version":"2.1.2","description":"Additional ESLint's rules for Node.js","files":["conf","lib","index.js"],"scripts":{"preversion":"run-s -sn clean build test:*","postversion":"git push && git push --tags","clean":"rimraf .nyc_output coverage index.js","build":"node scripts/generate-index.js","test":"run-s -sn clean build test:*","test:lint":"if-node-version \">=4\" eslint lib tests/lib index.js","test:mocha":"nyc mocha tests/lib/**/*.js --reporter progress","coverage":"nyc report --reporter=lcov && opener ./coverage/lcov-report/index.html","test@2":"npm rm eslint-config-mysticatea && npm i eslint@2 && npm run test:mocha","codecov":"nyc report -r lcovonly && codecov"},"engines":{"node":">=0.10"},"peerDependencies":{"eslint":">=2.0.0"},"dependencies":{"ignore":"^3.0.11","minimatch":"^3.0.2","object-assign":"^4.0.1","resolve":"^1.1.7","semver":"5.3.0"},"devDependencies":{"codecov":"^1.0.1","eslint":"^3.6.0","eslint-config-mysticatea":"^6.0.0","if-node-version":"^1.0.0","mocha":"^3.0.2","npm-run-all":"^3.1.0","nyc":"^8.3.0","opener":"^1.4.2","rimraf":"^2.4.4","shelljs":"^0.7.0"},"repository":{"type":"git","url":"git+https://github.com/mysticatea/eslint-plugin-node.git"},"keywords":["eslint","eslintplugin","eslint-plugin","node","nodejs","ecmascript","shebang","file","path","import","require"],"author":{"name":"Toru Nagashima"},"license":"MIT","bugs":{"url":"https://github.com/mysticatea/eslint-plugin-node/issues"},"homepage":"https://github.com/mysticatea/eslint-plugin-node#readme","gitHead":"b3cec7f1324af8249fbe036c88c175a2f24e669a","_id":"eslint-plugin-node@2.1.2","_shasum":"ad8cd1fb51e04030a2cb415919c1029f0d79ce96","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.3.0","_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"dist":{"shasum":"ad8cd1fb51e04030a2cb415919c1029f0d79ce96","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/eslint-plugin-node/-/eslint-plugin-node-2.1.2.tgz","integrity":"sha512-gCMx5g0+c14H+k61MK3k9S/FkveLBbtvLr/U0BBsxYXuUkGp08vZqi3hS4TdkR0ROsUUT1ivMcd/4qR4ukKOQg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCUFNjIQoM8S/sNZoYuWB6iwDXgdvqXn+/r9DGrq47O+gIhAIunrqirGRfiFid8Rk5Uiue/1YWx2mNG16Cg0A7fN9xQ"}]},"maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/eslint-plugin-node-2.1.2.tgz_1475143941224_0.27292838250286877"},"directories":{}},"2.1.3":{"name":"eslint-plugin-node","version":"2.1.3","description":"Additional ESLint's rules for Node.js","files":["conf","lib","index.js"],"scripts":{"preversion":"run-s -sn clean build test:*","postversion":"git push && git push --tags","clean":"rimraf .nyc_output coverage index.js","build":"node scripts/generate-index.js","test":"run-s -sn clean build test:*","test:lint":"if-node-version \">=4\" eslint lib tests/lib index.js","test:mocha":"nyc mocha tests/lib/**/*.js --reporter progress","coverage":"nyc report --reporter=lcov && opener ./coverage/lcov-report/index.html","test@2":"rimraf \"node_modules/eslint-{config,plugin}-*\" && npm i eslint@2 && npm run test:mocha","codecov":"nyc report -r lcovonly && codecov"},"engines":{"node":">=0.10"},"peerDependencies":{"eslint":">=2.0.0"},"dependencies":{"ignore":"^3.0.11","minimatch":"^3.0.2","object-assign":"^4.0.1","resolve":"^1.1.7","semver":"5.3.0"},"devDependencies":{"codecov":"^1.0.1","eslint":"^3.6.0","eslint-config-mysticatea":"^6.0.0","if-node-version":"^1.0.0","mocha":"^3.0.2","npm-run-all":"^3.1.0","nyc":"^8.3.0","opener":"^1.4.2","rimraf":"^2.4.4","shelljs":"^0.7.0"},"repository":{"type":"git","url":"git+https://github.com/mysticatea/eslint-plugin-node.git"},"keywords":["eslint","eslintplugin","eslint-plugin","node","nodejs","ecmascript","shebang","file","path","import","require"],"author":{"name":"Toru Nagashima"},"license":"MIT","bugs":{"url":"https://github.com/mysticatea/eslint-plugin-node/issues"},"homepage":"https://github.com/mysticatea/eslint-plugin-node#readme","gitHead":"b0618d4a21a5ce5303f58e125f28705d4d3f7b47","_id":"eslint-plugin-node@2.1.3","_shasum":"3816fda8b6441732e4ecb351f9930a2a9b5fabd3","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.3.0","_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"dist":{"shasum":"3816fda8b6441732e4ecb351f9930a2a9b5fabd3","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/eslint-plugin-node/-/eslint-plugin-node-2.1.3.tgz","integrity":"sha512-78dBtv1oKfm5aLiTm0ERiKVmrCrCdvTQzomGdo38xeDKM6+JOj88Q2w2edeArARwen1B4g75lZcQdIldRJliXw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBCpSjUL9jqaqAisug4WY8GXmWHGFzWIGTutMNtpeW18AiBmuemffr7HCJGOFAE8K2QMArtTH6mY6RWIrlocSc5D3Q=="}]},"maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/eslint-plugin-node-2.1.3.tgz_1476526384259_0.9466681878548115"},"directories":{}},"3.0.0":{"name":"eslint-plugin-node","version":"3.0.0","description":"Additional ESLint's rules for Node.js","files":["conf","lib","index.js"],"scripts":{"preversion":"run-s -sn clean build test:*","postversion":"git push && git push --tags","clean":"rimraf .nyc_output coverage index.js","build":"node scripts/generate-index.js","test":"run-s -sn clean build test:*","test:lint":"if-node-version \">=4\" eslint lib tests/lib index.js","test:mocha":"nyc mocha tests/lib/**/*.js --reporter progress","coverage":"nyc report --reporter=lcov && opener ./coverage/lcov-report/index.html","test@2":"rimraf \"node_modules/eslint-{config,plugin}-*\" && npm i eslint@2 && npm run test:mocha","codecov":"nyc report -r lcovonly && codecov"},"engines":{"node":">=0.10"},"peerDependencies":{"eslint":">=2.0.0"},"dependencies":{"ignore":"^3.0.11","minimatch":"^3.0.2","object-assign":"^4.0.1","resolve":"^1.1.7","semver":"5.3.0"},"devDependencies":{"codecov":"^1.0.1","eslint":"^3.9.0","eslint-config-mysticatea":"^7.0.0","if-node-version":"^1.0.0","mocha":"^3.0.2","npm-run-all":"^3.1.0","nyc":"^8.3.0","opener":"^1.4.2","rimraf":"^2.4.4","shelljs":"^0.7.0"},"repository":{"type":"git","url":"git+https://github.com/mysticatea/eslint-plugin-node.git"},"keywords":["eslint","eslintplugin","eslint-plugin","node","nodejs","ecmascript","shebang","file","path","import","require"],"author":{"name":"Toru Nagashima"},"license":"MIT","bugs":{"url":"https://github.com/mysticatea/eslint-plugin-node/issues"},"homepage":"https://github.com/mysticatea/eslint-plugin-node#readme","gitHead":"34928aa0c62eaa083bb5b2f3645be07065c16d83","_id":"eslint-plugin-node@3.0.0","_shasum":"21950d4a22e04c5dbdfb563be90785492fd3e400","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.9.1","_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"dist":{"shasum":"21950d4a22e04c5dbdfb563be90785492fd3e400","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/eslint-plugin-node/-/eslint-plugin-node-3.0.0.tgz","integrity":"sha512-vQM0w1Y1shOSLaXmYNLwt9iqACjZVXJ1MqNaY7HOBhjwx7+beJAba7fbgCfqek3XTgruS5mxnURwdEzjeIhVPw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDW1P8J6ZBCfWppK/edQAhjvYNSzeumehlRsSK4lefuqQIhAPwItMs06PzhHXg3Rq7TRVXV/5u8SqZeKupiqfGYI/fQ"}]},"maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/eslint-plugin-node-3.0.0.tgz_1477914105387_0.0006219870410859585"},"directories":{}},"3.0.1":{"name":"eslint-plugin-node","version":"3.0.1","description":"Additional ESLint's rules for Node.js","files":["conf","lib","index.js"],"scripts":{"preversion":"run-s -sn clean build test:*","postversion":"git push && git push --tags","clean":"rimraf .nyc_output coverage index.js","build":"node scripts/generate-index.js","test":"run-s -sn clean build test:*","test:lint":"if-node-version \">=4\" eslint lib tests/lib index.js","test:mocha":"nyc mocha tests/lib/**/*.js --reporter progress","coverage":"nyc report --reporter=lcov && opener ./coverage/lcov-report/index.html","test@2":"rimraf \"node_modules/eslint-{config,plugin}-*\" && npm i eslint@2 && npm run test:mocha","codecov":"nyc report -r lcovonly && codecov"},"engines":{"node":">=0.10"},"peerDependencies":{"eslint":">=2.0.0"},"dependencies":{"ignore":"^3.0.11","minimatch":"^3.0.2","object-assign":"^4.0.1","resolve":"^1.1.7","semver":"5.3.0"},"devDependencies":{"codecov":"^1.0.1","eslint":"^3.9.0","eslint-config-mysticatea":"^7.0.0","if-node-version":"^1.0.0","mocha":"^3.0.2","npm-run-all":"^3.1.0","nyc":"^8.3.0","opener":"^1.4.2","rimraf":"^2.4.4","shelljs":"^0.7.0"},"repository":{"type":"git","url":"git+https://github.com/mysticatea/eslint-plugin-node.git"},"keywords":["eslint","eslintplugin","eslint-plugin","node","nodejs","ecmascript","shebang","file","path","import","require"],"author":{"name":"Toru Nagashima"},"license":"MIT","bugs":{"url":"https://github.com/mysticatea/eslint-plugin-node/issues"},"homepage":"https://github.com/mysticatea/eslint-plugin-node#readme","gitHead":"6bbee16659a31dfb566321172bd1d6fa6f63f2a2","_id":"eslint-plugin-node@3.0.1","_shasum":"c236f743323b9dbdc69fc9410caf331f8a6d0bb2","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.9.1","_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"dist":{"shasum":"c236f743323b9dbdc69fc9410caf331f8a6d0bb2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/eslint-plugin-node/-/eslint-plugin-node-3.0.1.tgz","integrity":"sha512-G1TmWYxyqG7nTsBBncIMEFkBF3a8Kb0wQjYpICb0l3hAh/tWjEL618L4/73gc1ioigvIIeoB+zWODk/jd8+BLQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDwIhaKKmzoGkcWn95e8pTqOErl6nnw+7Lh0+CRf3thBAIgdkTpn+el2V752oY7608AzYsM9IcjpAEcoyh0EjzzdcM="}]},"maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/eslint-plugin-node-3.0.1.tgz_1477991407055_0.6253764142747968"},"directories":{}},"2.1.4":{"name":"eslint-plugin-node","version":"2.1.4","description":"Additional ESLint's rules for Node.js","files":["conf","lib","index.js"],"scripts":{"preversion":"run-s -sn clean build test:*","postversion":"git push && git push --tags","clean":"rimraf .nyc_output coverage index.js","build":"node scripts/generate-index.js","test":"run-s -sn clean build test:*","test:lint":"if-node-version \">=4\" eslint lib tests/lib index.js","test:mocha":"nyc mocha tests/lib/**/*.js --reporter progress","coverage":"nyc report --reporter=lcov && opener ./coverage/lcov-report/index.html","test@2":"rimraf \"node_modules/eslint-{config,plugin}-*\" && npm i eslint@2 && npm run test:mocha","codecov":"nyc report -r lcovonly && codecov"},"engines":{"node":">=0.10"},"peerDependencies":{"eslint":">=2.0.0"},"dependencies":{"ignore":"^3.0.11","minimatch":"^3.0.2","object-assign":"^4.0.1","resolve":"^1.1.7","semver":"5.3.0"},"devDependencies":{"codecov":"^1.0.1","eslint":"^3.6.0","eslint-config-mysticatea":"^6.0.0","if-node-version":"^1.0.0","mocha":"^3.0.2","npm-run-all":"^3.1.0","nyc":"^8.3.0","opener":"^1.4.2","rimraf":"^2.4.4","shelljs":"^0.7.0"},"repository":{"type":"git","url":"git+https://github.com/mysticatea/eslint-plugin-node.git"},"keywords":["eslint","eslintplugin","eslint-plugin","node","nodejs","ecmascript","shebang","file","path","import","require"],"author":{"name":"Toru Nagashima"},"license":"MIT","bugs":{"url":"https://github.com/mysticatea/eslint-plugin-node/issues"},"homepage":"https://github.com/mysticatea/eslint-plugin-node#readme","gitHead":"49f752bbb25affea5434a28940aaea88acd8e7ab","_id":"eslint-plugin-node@2.1.4","_shasum":"60a04d71d9512d72801aac5a1842ca744cd8eec6","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.9.1","_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"dist":{"shasum":"60a04d71d9512d72801aac5a1842ca744cd8eec6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/eslint-plugin-node/-/eslint-plugin-node-2.1.4.tgz","integrity":"sha512-BXOmPQp2ai7+9dqK7n7I1DXkEYurvA7xSyGDew8rBhxm/NdP1sAwZ+wo8TpCnArPH/d3Q9yXrEUrOkcFM2jhGA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCgUeVNtZWHzl2Wpm+Ee0WmC7enYD/1mrK3PMo7QpfSuAIhAPlMWokuu6s21DVBcPOp01FxbtnZ6SFR1GBOw/QVeoN1"}]},"maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/eslint-plugin-node-2.1.4.tgz_1477992795276_0.451351557392627"},"directories":{}},"3.0.2":{"name":"eslint-plugin-node","version":"3.0.2","description":"Additional ESLint's rules for Node.js","files":["conf","lib","index.js"],"scripts":{"preversion":"run-s -sn clean build test:*","postversion":"git push && git push --tags","clean":"rimraf .nyc_output coverage index.js","build":"node scripts/generate-index.js","test":"run-s -sn clean build test:*","test:lint":"if-node-version \">=4\" eslint lib tests/lib index.js","test:mocha":"nyc mocha tests/lib/**/*.js --reporter progress","coverage":"nyc report --reporter=lcov && opener ./coverage/lcov-report/index.html","test@2":"rimraf \"node_modules/eslint-{config,plugin}-*\" && npm i eslint@2 && npm run test:mocha","codecov":"nyc report -r lcovonly && codecov"},"engines":{"node":">=0.10"},"peerDependencies":{"eslint":">=2.0.0"},"dependencies":{"ignore":"^3.0.11","minimatch":"^3.0.2","object-assign":"^4.0.1","resolve":"^1.1.7","semver":"5.3.0"},"devDependencies":{"codecov":"^1.0.1","eslint":"^3.9.0","eslint-config-mysticatea":"^7.0.0","if-node-version":"^1.0.0","mocha":"^3.0.2","npm-run-all":"^3.1.0","nyc":"^8.3.0","opener":"^1.4.2","rimraf":"^2.4.4","shelljs":"^0.7.0"},"repository":{"type":"git","url":"git+https://github.com/mysticatea/eslint-plugin-node.git"},"keywords":["eslint","eslintplugin","eslint-plugin","node","nodejs","ecmascript","shebang","file","path","import","require"],"author":{"name":"Toru Nagashima"},"license":"MIT","bugs":{"url":"https://github.com/mysticatea/eslint-plugin-node/issues"},"homepage":"https://github.com/mysticatea/eslint-plugin-node#readme","gitHead":"77d0c76339e8f0ce301eba01f64eac9ef63265b9","_id":"eslint-plugin-node@3.0.2","_shasum":"75e781d6f29ccaaf53ab696b1ab26eb885d8f12b","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.9.1","_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"dist":{"shasum":"75e781d6f29ccaaf53ab696b1ab26eb885d8f12b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/eslint-plugin-node/-/eslint-plugin-node-3.0.2.tgz","integrity":"sha512-k3uZmQIni5Z3+0szJmEmiqzYL0da9VNOy3pvEYN1edXc+r6rDzzTExFxhwPgazqP3mcauXaZ96j654SaXOYKqg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDGBAydhyhPFIr2+X0xhSU04Kad+gSY6RcpDXZmRu43eAIgDpqqVyR+KRlbWpxyZAn3arhW1JgKw6Xu+gG3V6Up/Cs="}]},"maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/eslint-plugin-node-3.0.2.tgz_1477993718802_0.1577207159716636"},"directories":{}},"3.0.3":{"name":"eslint-plugin-node","version":"3.0.3","description":"Additional ESLint's rules for Node.js","files":["conf","lib","index.js"],"scripts":{"preversion":"run-s -sn clean build test:*","postversion":"git push && git push --tags","clean":"rimraf .nyc_output coverage index.js","build":"node scripts/generate-index.js","test":"run-s -sn clean build test:*","test:lint":"if-node-version \">=4\" eslint lib tests/lib index.js","test:mocha":"nyc mocha tests/lib/**/*.js --reporter progress","coverage":"nyc report --reporter=lcov && opener ./coverage/lcov-report/index.html","test@2":"rimraf \"node_modules/eslint-{config,plugin}-*\" && npm i eslint@2 && npm run test:mocha","codecov":"nyc report -r lcovonly && codecov"},"engines":{"node":">=0.10"},"peerDependencies":{"eslint":">=2.0.0"},"dependencies":{"ignore":"^3.0.11","minimatch":"^3.0.2","object-assign":"^4.0.1","resolve":"^1.1.7","semver":"5.3.0"},"devDependencies":{"codecov":"^1.0.1","eslint":"^3.9.0","eslint-config-mysticatea":"^7.0.0","if-node-version":"^1.0.0","mocha":"^3.0.2","npm-run-all":"^3.1.0","nyc":"^8.3.0","opener":"^1.4.2","rimraf":"^2.4.4","shelljs":"^0.7.0"},"repository":{"type":"git","url":"git+https://github.com/mysticatea/eslint-plugin-node.git"},"keywords":["eslint","eslintplugin","eslint-plugin","node","nodejs","ecmascript","shebang","file","path","import","require"],"author":{"name":"Toru Nagashima"},"license":"MIT","bugs":{"url":"https://github.com/mysticatea/eslint-plugin-node/issues"},"homepage":"https://github.com/mysticatea/eslint-plugin-node#readme","gitHead":"cb96b1466e0138bdfef8eb85310c4c69ac8c0fa4","_id":"eslint-plugin-node@3.0.3","_shasum":"a0f98c145a4ff1ad81f6b4b11f82a4c973dc9c37","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.9.1","_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"dist":{"shasum":"a0f98c145a4ff1ad81f6b4b11f82a4c973dc9c37","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/eslint-plugin-node/-/eslint-plugin-node-3.0.3.tgz","integrity":"sha512-UfSUtwbhYDT/YppBef7BXcpUB5FeE/G8/I1+WqjJRCuoQHpZS3YbTFzy3q5SPQ2APHWZp3m2s2wEfGa3uJvuRg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCNuSFsKBJybByb+1JV0Waml8BQ/FuHycENZClV0UXVnQIgXDyUWYPAkWpNtwSt9Zr202uWA742rGuqy2oNoQzV3cA="}]},"maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/eslint-plugin-node-3.0.3.tgz_1477999213459_0.11010097432881594"},"directories":{}},"3.0.4":{"name":"eslint-plugin-node","version":"3.0.4","description":"Additional ESLint's rules for Node.js","files":["conf","lib","index.js"],"scripts":{"preversion":"run-s -sn clean build test:*","postversion":"git push && git push --tags","clean":"rimraf .nyc_output coverage index.js","build":"node scripts/generate-index.js","test":"run-s -sn clean build test:*","test:lint":"if-node-version \">=4\" eslint lib tests/lib index.js","test:mocha":"nyc mocha tests/lib/**/*.js --reporter progress","coverage":"nyc report --reporter=lcov && opener ./coverage/lcov-report/index.html","test@2":"rimraf \"node_modules/eslint-{config,plugin}-*\" && npm i eslint@2 && npm run test:mocha -- -i -g NOT_SUPPORTED_ON_2","codecov":"nyc report -r lcovonly && codecov"},"engines":{"node":">=0.10"},"peerDependencies":{"eslint":">=2.0.0"},"dependencies":{"ignore":"^3.0.11","minimatch":"^3.0.2","object-assign":"^4.0.1","resolve":"^1.1.7","semver":"5.3.0"},"devDependencies":{"codecov":"^1.0.1","eslint":"^3.9.0","eslint-config-mysticatea":"^7.0.0","if-node-version":"^1.0.0","mocha":"^3.0.2","npm-run-all":"^3.1.0","nyc":"^8.3.0","opener":"^1.4.2","rimraf":"^2.4.4","shelljs":"^0.7.0"},"repository":{"type":"git","url":"git+https://github.com/mysticatea/eslint-plugin-node.git"},"keywords":["eslint","eslintplugin","eslint-plugin","node","nodejs","ecmascript","shebang","file","path","import","require"],"author":{"name":"Toru Nagashima"},"license":"MIT","bugs":{"url":"https://github.com/mysticatea/eslint-plugin-node/issues"},"homepage":"https://github.com/mysticatea/eslint-plugin-node#readme","gitHead":"0714d40938e282bbf44d1271dab95d2404edb1ab","_id":"eslint-plugin-node@3.0.4","_shasum":"e1a91f580ec081e4eda92772322103230f9f7a28","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.9.1","_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"dist":{"shasum":"e1a91f580ec081e4eda92772322103230f9f7a28","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/eslint-plugin-node/-/eslint-plugin-node-3.0.4.tgz","integrity":"sha512-fGon1FnUvUbTfxWXpvGQwLMl+VL9UebUpf8OwgoOTe7YxgMhsietw3yrBheQRRDg3eAf4NhAi66QfxaWB33ljA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCgWplfw7Zwko9BPrzPZuWejqVpikv9fDlpvCRAlzaO9QIgeY6Ptl0wgAWEnMnILTSV3O8lCgESgOBznQqnbp2b+vo="}]},"maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/eslint-plugin-node-3.0.4.tgz_1479478835955_0.3202447136864066"},"directories":{}},"3.0.5":{"name":"eslint-plugin-node","version":"3.0.5","description":"Additional ESLint's rules for Node.js","files":["conf","lib","index.js"],"scripts":{"preversion":"run-s -sn clean build test:*","postversion":"git push && git push --tags","clean":"rimraf .nyc_output coverage index.js","build":"node scripts/generate-index.js","test":"run-s -sn clean build test:*","test:lint":"if-node-version \">=4\" eslint lib tests/lib index.js","test:mocha":"nyc mocha tests/lib/**/*.js --reporter progress","coverage":"nyc report --reporter=lcov && opener ./coverage/lcov-report/index.html","watch":"mocha tests/lib/**/*.js --reporter progress --watch --growl","test@2":"rimraf \"node_modules/eslint-{config,plugin}-*\" && npm i eslint@2 && npm run test:mocha -- -i -g NOT_SUPPORTED_ON_2","codecov":"nyc report -r lcovonly && codecov"},"engines":{"node":">=0.10"},"peerDependencies":{"eslint":">=2.0.0"},"dependencies":{"ignore":"^3.0.11","minimatch":"^3.0.2","object-assign":"^4.0.1","resolve":"^1.1.7","semver":"5.3.0"},"devDependencies":{"codecov":"^1.0.1","eslint":"^3.9.0","eslint-config-mysticatea":"^7.0.0","if-node-version":"^1.0.0","mocha":"^3.0.2","npm-run-all":"^3.1.0","nyc":"^8.3.0","opener":"^1.4.2","rimraf":"^2.4.4","shelljs":"^0.7.0"},"repository":{"type":"git","url":"git+https://github.com/mysticatea/eslint-plugin-node.git"},"keywords":["eslint","eslintplugin","eslint-plugin","node","nodejs","ecmascript","shebang","file","path","import","require"],"author":{"name":"Toru Nagashima"},"license":"MIT","bugs":{"url":"https://github.com/mysticatea/eslint-plugin-node/issues"},"homepage":"https://github.com/mysticatea/eslint-plugin-node#readme","gitHead":"8fd03edb89bb04ced5ffd137d274f716f73a35ce","_id":"eslint-plugin-node@3.0.5","_shasum":"03c8e23c6011eabd240e7ebf3556ec6e50fc734e","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.9.1","_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"dist":{"shasum":"03c8e23c6011eabd240e7ebf3556ec6e50fc734e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/eslint-plugin-node/-/eslint-plugin-node-3.0.5.tgz","integrity":"sha512-iGLdLYkSVjWMgXDzDGimtK97LAkRGlEDkbO9yhKcrJDDIXbLs//H8QljIWVL71dnTrXVpup7BXTtN+zHyL4v0A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCy1kPUo6YO5p9mA43QEJy59538of1uw5cn4J9CsUaeVgIgCV7Rft8H3Cqw3xGj8tOPKDSXCJVbHuOg3edfUrh4MUc="}]},"maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/eslint-plugin-node-3.0.5.tgz_1480560196203_0.147736384999007"},"directories":{}},"4.0.0":{"name":"eslint-plugin-node","version":"4.0.0","description":"Additional ESLint's rules for Node.js","files":["conf","lib","index.js"],"scripts":{"build":"node scripts/generate-index.js","clean":"rimraf .nyc_output coverage index.js","codecov":"nyc report -r lcovonly && codecov","coverage":"nyc report -r lcov && opener ./coverage/lcov-report/index.html","lint":"eslint lib tests/lib index.js","postversion":"git push && git push --tags","pretest":"npm run -s lint","preversion":"npm t && npm run build","test":"nyc npm run -s test:_mocha","test:_mocha":"_mocha tests/lib/**/*.js --reporter progress","watch":"npm run test:_mocha -- --watch --growl"},"engines":{"node":">=4"},"peerDependencies":{"eslint":">=3.1.0"},"dependencies":{"ignore":"^3.0.11","minimatch":"^3.0.2","object-assign":"^4.0.1","resolve":"^1.1.7","semver":"5.3.0"},"devDependencies":{"@types/minimatch":"^2.0.29","@types/node":"^4.2.1","@types/resolve":"0.0.4","@types/semver":"^5.3.30","codecov":"^1.0.1","eslint":"^3.9.0","eslint-config-mysticatea":"^7.0.0","mocha":"^3.0.2","nyc":"^8.3.0","opener":"^1.4.2","rimraf":"^2.4.4","shelljs":"^0.7.0"},"repository":{"type":"git","url":"git+https://github.com/mysticatea/eslint-plugin-node.git"},"keywords":["eslint","eslintplugin","eslint-plugin","node","nodejs","ecmascript","shebang","file","path","import","require"],"author":{"name":"Toru Nagashima"},"license":"MIT","bugs":{"url":"https://github.com/mysticatea/eslint-plugin-node/issues"},"homepage":"https://github.com/mysticatea/eslint-plugin-node#readme","gitHead":"5fdb19a00ef22dd6e1c65b7eff765e41ec7b9adc","_id":"eslint-plugin-node@4.0.0","_shasum":"5f6c7934256b9b9165557c1449b53e59c6ac5466","_from":".","_npmVersion":"3.8.9","_nodeVersion":"7.3.0","_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"dist":{"shasum":"5f6c7934256b9b9165557c1449b53e59c6ac5466","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/eslint-plugin-node/-/eslint-plugin-node-4.0.0.tgz","integrity":"sha512-OB9ogLJZjCYNQy1SN/XUOZUv9pOMP44JolugB3AM3e4puuQguw91zkiMjFd0oMCrVlPD3ocAOyHAcNVRncGmcQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBOvrHZyewIrjEDH49IM1ggm/QAFYs+Cpg0gf0Waa62BAiEA/muGRJX1F46A7960vG0V/lwwh94jFOqylSOk6eIB4GY="}]},"maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/eslint-plugin-node-4.0.0.tgz_1486325570629_0.7148277319502085"},"directories":{}},"4.0.1":{"name":"eslint-plugin-node","version":"4.0.1","description":"Additional ESLint's rules for Node.js","files":["conf","lib","index.js"],"scripts":{"build":"node scripts/generate-index.js","clean":"rimraf .nyc_output coverage index.js","codecov":"nyc report -r lcovonly && codecov","coverage":"nyc report -r lcov && opener ./coverage/lcov-report/index.html","lint":"eslint lib tests/lib index.js","postversion":"git push && git push --tags","pretest":"npm run -s lint","preversion":"npm t && npm run build","test":"nyc npm run -s test:_mocha","test:_mocha":"_mocha tests/lib/**/*.js --reporter progress","watch":"npm run test:_mocha -- --watch --growl"},"engines":{"node":">=4"},"peerDependencies":{"eslint":">=3.1.0"},"dependencies":{"ignore":"^3.0.11","minimatch":"^3.0.2","object-assign":"^4.0.1","resolve":"^1.1.7","semver":"5.3.0"},"devDependencies":{"@types/minimatch":"^2.0.29","@types/node":"^4.2.1","@types/resolve":"0.0.4","@types/semver":"^5.3.30","codecov":"^1.0.1","eslint":"^3.9.0","eslint-config-mysticatea":"^7.0.0","mocha":"^3.0.2","nyc":"^8.3.0","opener":"^1.4.2","rimraf":"^2.4.4","shelljs":"^0.7.0"},"repository":{"type":"git","url":"git+https://github.com/mysticatea/eslint-plugin-node.git"},"keywords":["eslint","eslintplugin","eslint-plugin","node","nodejs","ecmascript","shebang","file","path","import","require"],"author":{"name":"Toru Nagashima"},"license":"MIT","bugs":{"url":"https://github.com/mysticatea/eslint-plugin-node/issues"},"homepage":"https://github.com/mysticatea/eslint-plugin-node#readme","gitHead":"1c12caed07be80715f1fc53d9f29cfacc18e66c3","_id":"eslint-plugin-node@4.0.1","_shasum":"02eba2eb3eb522378de15881db19d3e5570110f6","_from":".","_npmVersion":"3.8.9","_nodeVersion":"7.3.0","_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"dist":{"shasum":"02eba2eb3eb522378de15881db19d3e5570110f6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/eslint-plugin-node/-/eslint-plugin-node-4.0.1.tgz","integrity":"sha512-GkHp3dadOGJm4h5/yTfHFrmj0MUbP95D0eJkB5nZ45e+ZUx2b4M02v2cBkcfoU5chbRto8xRsAGy5kTOaUYHuQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDkCqcfDMNH4ajHUcgPeW4deT73pXpCwlZETIwQUOaBsAiAtj57fh08D+gpBvDRcNkiPqb2j0p7nCiFIp4aBxko0RA=="}]},"maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/eslint-plugin-node-4.0.1.tgz_1486630261557_0.3128617119509727"},"directories":{}},"4.1.0":{"name":"eslint-plugin-node","version":"4.1.0","description":"Additional ESLint's rules for Node.js","files":["conf","lib","index.js"],"scripts":{"build":"node scripts/generate-index.js","clean":"rimraf .nyc_output coverage index.js","codecov":"nyc report -r lcovonly && codecov","coverage":"nyc report -r lcov && opener ./coverage/lcov-report/index.html","lint":"eslint lib tests/lib index.js","postversion":"git push && git push --tags","pretest":"npm run -s lint","preversion":"npm t && npm run build","test":"nyc npm run -s test:_mocha","test:_mocha":"_mocha tests/lib/**/*.js --reporter progress","watch":"npm run test:_mocha -- --watch --growl"},"engines":{"node":">=4"},"peerDependencies":{"eslint":">=3.1.0"},"dependencies":{"ignore":"^3.0.11","minimatch":"^3.0.2","object-assign":"^4.0.1","resolve":"^1.1.7","semver":"5.3.0"},"devDependencies":{"@types/minimatch":"^2.0.29","@types/node":"^4.2.1","@types/resolve":"0.0.4","@types/semver":"^5.3.30","codecov":"^1.0.1","eslint":"^3.9.0","eslint-config-mysticatea":"^7.0.0","mocha":"^3.0.2","nyc":"^8.3.0","opener":"^1.4.2","rimraf":"^2.4.4","shelljs":"^0.7.0"},"repository":{"type":"git","url":"git+https://github.com/mysticatea/eslint-plugin-node.git"},"keywords":["eslint","eslintplugin","eslint-plugin","node","nodejs","ecmascript","shebang","file","path","import","require"],"author":{"name":"Toru Nagashima"},"license":"MIT","bugs":{"url":"https://github.com/mysticatea/eslint-plugin-node/issues"},"homepage":"https://github.com/mysticatea/eslint-plugin-node#readme","gitHead":"3f03d921f4182174f5816c1349d15a3dc8aacf58","_id":"eslint-plugin-node@4.1.0","_shasum":"87cb62a96109087bcb5827bd5ae15fd0c49685bb","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.6.0","_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"dist":{"shasum":"87cb62a96109087bcb5827bd5ae15fd0c49685bb","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/eslint-plugin-node/-/eslint-plugin-node-4.1.0.tgz","integrity":"sha512-bVKfu3veqtESRtVftDrBeFtY7+yd9VqEo3/CjbTuV6lG4+yiTdio572I0l98qId6lgoVMVHYlcKsCt7+ZXdEFA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFHtcyqlaDFQCr9kPXW/UAIx5iAigEmhBe6H6omQFwzsAiATUimxJEhm6uUVwxj4TzyXCf4pvW3kGdD8udC/46Fn0A=="}]},"maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/eslint-plugin-node-4.1.0.tgz_1487842194317_0.8407847718335688"},"directories":{}},"4.2.0":{"name":"eslint-plugin-node","version":"4.2.0","description":"Additional ESLint's rules for Node.js","files":["conf","lib","index.js"],"scripts":{"build":"node scripts/generate-index.js","clean":"rimraf .nyc_output coverage index.js","codecov":"nyc report -r lcovonly && codecov","coverage":"nyc report -r lcov && opener ./coverage/lcov-report/index.html","lint":"eslint lib tests/lib index.js","postversion":"git push && git push --tags","pretest":"npm run -s lint","preversion":"npm t && npm run build","test":"nyc npm run -s test:_mocha","test:_mocha":"_mocha tests/lib/**/*.js --reporter progress","watch":"npm run test:_mocha -- --watch --growl"},"engines":{"node":">=4"},"peerDependencies":{"eslint":">=3.1.0"},"dependencies":{"ignore":"^3.0.11","minimatch":"^3.0.2","object-assign":"^4.0.1","resolve":"^1.1.7","semver":"5.3.0"},"devDependencies":{"@types/minimatch":"^2.0.29","@types/node":"^4.2.1","@types/resolve":"0.0.4","@types/semver":"^5.3.30","codecov":"^1.0.1","eslint":"^3.9.0","eslint-config-mysticatea":"^7.0.0","mocha":"^3.0.2","nyc":"^8.3.0","opener":"^1.4.2","rimraf":"^2.4.4","shelljs":"^0.7.0"},"repository":{"type":"git","url":"git+https://github.com/mysticatea/eslint-plugin-node.git"},"keywords":["eslint","eslintplugin","eslint-plugin","node","nodejs","ecmascript","shebang","file","path","import","require"],"author":{"name":"Toru Nagashima"},"license":"MIT","bugs":{"url":"https://github.com/mysticatea/eslint-plugin-node/issues"},"homepage":"https://github.com/mysticatea/eslint-plugin-node#readme","gitHead":"242eeeba3e45904b079e412bc376d364c1068018","_id":"eslint-plugin-node@4.2.0","_shasum":"c63076eb1ef109b57fa54deefa519957de0c7952","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.6.0","_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"dist":{"shasum":"c63076eb1ef109b57fa54deefa519957de0c7952","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/eslint-plugin-node/-/eslint-plugin-node-4.2.0.tgz","integrity":"sha512-PiVzHGzplNwXnMykBFRr/YwHanwkjH/xT5O7+sHkDdCn/NGnsicKg4YUHiKrvS87uxqA94JCunfendW34how5g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCzp0qgvIt9AY47a1Elpt3KY9Mq8Hxp8SlzVPvRdon+TgIgBZdvOG/oFHvmF/+F4izDg89/xC7Q2kGLbUibC3cD2xo="}]},"maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/eslint-plugin-node-4.2.0.tgz_1488832243827_0.5519959575030953"},"directories":{}},"4.2.1":{"name":"eslint-plugin-node","version":"4.2.1","description":"Additional ESLint's rules for Node.js","files":["conf","lib","index.js"],"scripts":{"build":"node scripts/generate-index.js","clean":"rimraf .nyc_output coverage index.js","codecov":"nyc report -r lcovonly && codecov","coverage":"nyc report -r lcov && opener ./coverage/lcov-report/index.html","lint":"eslint lib tests/lib index.js","postversion":"git push && git push --tags","pretest":"npm run -s lint","preversion":"npm t && npm run build","test":"nyc npm run -s test:_mocha","test:_mocha":"_mocha tests/lib/**/*.js --reporter progress","watch":"npm run test:_mocha -- --watch --growl"},"engines":{"node":">=4"},"peerDependencies":{"eslint":">=3.1.0"},"dependencies":{"ignore":"^3.0.11","minimatch":"^3.0.2","object-assign":"^4.0.1","resolve":"^1.1.7","semver":"5.3.0"},"devDependencies":{"@types/minimatch":"^2.0.29","@types/node":"^4.2.1","@types/resolve":"0.0.4","@types/semver":"^5.3.30","codecov":"^1.0.1","eslint":"^3.9.0","eslint-config-mysticatea":"^7.0.0","mocha":"^3.0.2","nyc":"^8.3.0","opener":"^1.4.2","rimraf":"^2.4.4","shelljs":"^0.7.0"},"repository":{"type":"git","url":"git+https://github.com/mysticatea/eslint-plugin-node.git"},"keywords":["eslint","eslintplugin","eslint-plugin","node","nodejs","ecmascript","shebang","file","path","import","require"],"author":{"name":"Toru Nagashima"},"license":"MIT","bugs":{"url":"https://github.com/mysticatea/eslint-plugin-node/issues"},"homepage":"https://github.com/mysticatea/eslint-plugin-node#readme","gitHead":"fb3f030999802299120bddbba713a8476bef75ba","_id":"eslint-plugin-node@4.2.1","_shasum":"52e8e06595d0be63a25fdc237be5e42b69a46eaa","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.6.0","_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"dist":{"shasum":"52e8e06595d0be63a25fdc237be5e42b69a46eaa","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/eslint-plugin-node/-/eslint-plugin-node-4.2.1.tgz","integrity":"sha512-7tZwoF+HsymJ3v+L0oRECf4JmyPmXAVbyhiyH7xq9/9g2b/+MabdcQFizGNOZciH7sNROYFUvtp7yM/fU8ZOzg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCamfHe+YyfYQwaqZtvUzdUDuWjLgmwvA28nK8FFYcNkAIgbwpkQ5omH6OWxlGUQ+VXVihKnSJXkCurtUgB0t/TBmI="}]},"maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/eslint-plugin-node-4.2.1.tgz_1489483884133_0.7161744635086507"},"directories":{}},"4.2.2":{"name":"eslint-plugin-node","version":"4.2.2","description":"Additional ESLint's rules for Node.js","files":["conf","lib","index.js"],"scripts":{"build":"node scripts/generate-index.js","clean":"rimraf .nyc_output coverage index.js","codecov":"nyc report -r lcovonly && codecov","coverage":"nyc report -r lcov && opener ./coverage/lcov-report/index.html","lint":"eslint lib tests/lib index.js","postversion":"git push && git push --tags","pretest":"npm run -s lint","preversion":"npm t && npm run build","test":"nyc npm run -s test:_mocha","test:_mocha":"_mocha tests/lib/**/*.js --reporter progress","watch":"npm run test:_mocha -- --watch --growl"},"engines":{"node":">=4"},"peerDependencies":{"eslint":">=3.1.0"},"dependencies":{"ignore":"^3.0.11","minimatch":"^3.0.2","object-assign":"^4.0.1","resolve":"^1.1.7","semver":"5.3.0"},"devDependencies":{"@types/minimatch":"^2.0.29","@types/node":"^4.2.1","@types/resolve":"0.0.4","@types/semver":"^5.3.30","codecov":"^1.0.1","eslint":"^3.9.0","eslint-config-mysticatea":"^7.0.0","mocha":"^3.0.2","nyc":"^8.3.0","opener":"^1.4.2","rimraf":"^2.4.4","shelljs":"^0.7.0"},"repository":{"type":"git","url":"git+https://github.com/mysticatea/eslint-plugin-node.git"},"keywords":["eslint","eslintplugin","eslint-plugin","node","nodejs","ecmascript","shebang","file","path","import","require"],"author":{"name":"Toru Nagashima"},"license":"MIT","bugs":{"url":"https://github.com/mysticatea/eslint-plugin-node/issues"},"homepage":"https://github.com/mysticatea/eslint-plugin-node#readme","gitHead":"f1a137b1250cd457cd9dfdf0bf851d1efa0ce2fa","_id":"eslint-plugin-node@4.2.2","_shasum":"82959ca9aed79fcbd28bb1b188d05cac04fb3363","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.6.0","_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"dist":{"shasum":"82959ca9aed79fcbd28bb1b188d05cac04fb3363","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/eslint-plugin-node/-/eslint-plugin-node-4.2.2.tgz","integrity":"sha512-iEmMJQgmsKnZKLPIjSU4+H44tsR1HmTBNC/+XbBbRbq4Sxu4CijLscPSxpYqLZsMslRMyvovZuyoATzM3DSELw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDOfNhjBRu7579WPytXfd/kPgqeSEst8h0KsPAqDyAApAIgV8Pvz4uVG0Bef1+e7S12mUH4e9Qj5/hOBx1j8sbhsgw="}]},"maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/eslint-plugin-node-4.2.2.tgz_1490698795673_0.2696786930318922"},"directories":{}},"5.0.0":{"name":"eslint-plugin-node","version":"5.0.0","description":"Additional ESLint's rules for Node.js","main":"lib/index.js","files":["lib"],"scripts":{"build":"node scripts/update.js","clean":"rimraf .nyc_output coverage","codecov":"nyc report -r lcovonly && codecov","coverage":"nyc report -r lcov && opener ./coverage/lcov-report/index.html","lint":"eslint lib tests/lib index.js","postversion":"git push && git push --tags","pretest":"npm run -s lint","preversion":"npm t && npm run -s build","test":"nyc npm run -s test:_mocha","test:_mocha":"_mocha tests/lib/**/*.js --reporter progress","watch":"npm run test:_mocha -- --watch --growl"},"engines":{"node":">=4"},"peerDependencies":{"eslint":">=3.1.0"},"dependencies":{"ignore":"^3.3.3","minimatch":"^3.0.4","resolve":"^1.3.3","semver":"5.3.0"},"devDependencies":{"codecov":"^2.2.0","eslint":"^3.19.0","eslint-config-mysticatea":"^10.0.0","mocha":"^3.4.2","nyc":"^11.0.1","opener":"^1.4.3","rimraf":"^2.6.1","shelljs":"^0.7.7"},"repository":{"type":"git","url":"git+https://github.com/mysticatea/eslint-plugin-node.git"},"keywords":["eslint","eslintplugin","eslint-plugin","node","nodejs","ecmascript","shebang","file","path","import","require"],"author":{"name":"Toru Nagashima"},"license":"MIT","bugs":{"url":"https://github.com/mysticatea/eslint-plugin-node/issues"},"homepage":"https://github.com/mysticatea/eslint-plugin-node#readme","gitHead":"5634718d468a69e2aea53988341721a37e8fcb4c","_id":"eslint-plugin-node@5.0.0","_npmVersion":"5.0.1","_nodeVersion":"8.0.0","_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"dist":{"integrity":"sha512-9xERRx9V/8ciUHlTDlz9S4JiTL6Dc5oO+jKTy2mvQpxjhycpYZXzTT1t90IXjf+nAYw6/8sDnZfkeixJHxromA==","shasum":"948b1fb82e3f0a744e86fad19aa4f49537d246cc","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/eslint-plugin-node/-/eslint-plugin-node-5.0.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDFLmPl288W2Tr22ZO6dJ1wHQg/ifK7BRF8M8laTiQ3jwIhANB3Ui/cvr7SsYS+lkRXuyEUYtqy8ZeonzcMULa63WAK"}]},"maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/eslint-plugin-node-5.0.0.tgz_1496374014448_0.8129105588886887"},"directories":{}},"5.1.0":{"name":"eslint-plugin-node","version":"5.1.0","description":"Additional ESLint's rules for Node.js","main":"lib/index.js","files":["lib"],"scripts":{"build":"node scripts/update.js","clean":"rimraf .nyc_output coverage","codecov":"nyc report -r lcovonly && codecov","coverage":"nyc report -r lcov && opener ./coverage/lcov-report/index.html","lint":"eslint lib tests/lib index.js","postversion":"git push && git push --tags","pretest":"npm run -s lint","preversion":"npm t && npm run -s build","test":"nyc npm run -s test:_mocha","test:_mocha":"_mocha tests/lib/**/*.js --reporter progress","watch":"npm run test:_mocha -- --watch --growl"},"engines":{"node":">=4"},"peerDependencies":{"eslint":">=3.1.0"},"dependencies":{"ignore":"^3.3.3","minimatch":"^3.0.4","resolve":"^1.3.3","semver":"5.3.0"},"devDependencies":{"codecov":"^2.2.0","eslint":"^4.1.0","eslint-config-mysticatea":"^11.0.0","mocha":"^3.4.2","nyc":"^11.0.1","opener":"^1.4.3","rimraf":"^2.6.1","shelljs":"^0.7.7"},"repository":{"type":"git","url":"git+https://github.com/mysticatea/eslint-plugin-node.git"},"keywords":["eslint","eslintplugin","eslint-plugin","node","nodejs","ecmascript","shebang","file","path","import","require"],"author":{"name":"Toru Nagashima"},"license":"MIT","bugs":{"url":"https://github.com/mysticatea/eslint-plugin-node/issues"},"homepage":"https://github.com/mysticatea/eslint-plugin-node#readme","gitHead":"af4737e6f564ca3ee695aede4279bbfbb3131b7c","_id":"eslint-plugin-node@5.1.0","_npmVersion":"5.0.3","_nodeVersion":"8.0.0","_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"dist":{"integrity":"sha512-MzAAnEfNOl6g871VgjKswHkyG+bqsXX2//SWXwNkyREvWAPUoU8X6ZvcrambHEGecUIbE0pAVPzzfKU/p9H5lg==","shasum":"bc8cdb85180d0b4d946a2531640e2a4dd7a4e6d4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/eslint-plugin-node/-/eslint-plugin-node-5.1.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGnSgVOXtSQlxGfZXIssyjDIzQSZXmJfRawxUL1R+0FyAiBqwJV20YJVLRDhgklaWRma6Bp9rhaQGusqL9gfrTRTCw=="}]},"maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/eslint-plugin-node-5.1.0.tgz_1498423515878_0.767461284995079"},"directories":{}},"5.1.1":{"name":"eslint-plugin-node","version":"5.1.1","description":"Additional ESLint's rules for Node.js","main":"lib/index.js","files":["lib"],"scripts":{"build":"node scripts/update.js","clean":"rimraf .nyc_output coverage","codecov":"nyc report -r lcovonly && codecov","coverage":"nyc report -r lcov && opener ./coverage/lcov-report/index.html","lint":"eslint lib tests/lib index.js","postversion":"git push && git push --tags","pretest":"npm run -s lint","preversion":"npm t && npm run -s build","test":"nyc npm run -s test:_mocha","test:_mocha":"_mocha tests/lib/**/*.js --reporter progress","watch":"npm run test:_mocha -- --watch --growl"},"engines":{"node":">=4"},"peerDependencies":{"eslint":">=3.1.0"},"dependencies":{"ignore":"^3.3.3","minimatch":"^3.0.4","resolve":"^1.3.3","semver":"5.3.0"},"devDependencies":{"codecov":"^2.2.0","eslint":"^4.1.0","eslint-config-mysticatea":"^11.0.0","mocha":"^3.4.2","nyc":"^11.0.1","opener":"^1.4.3","rimraf":"^2.6.1","shelljs":"^0.7.7"},"repository":{"type":"git","url":"git+https://github.com/mysticatea/eslint-plugin-node.git"},"keywords":["eslint","eslintplugin","eslint-plugin","node","nodejs","ecmascript","shebang","file","path","import","require"],"author":{"name":"Toru Nagashima"},"license":"MIT","bugs":{"url":"https://github.com/mysticatea/eslint-plugin-node/issues"},"homepage":"https://github.com/mysticatea/eslint-plugin-node#readme","gitHead":"3045e95158f2cbc03f210de84693772f43a3a159","_id":"eslint-plugin-node@5.1.1","_npmVersion":"5.1.0","_nodeVersion":"8.1.4","_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"dist":{"integrity":"sha512-3xdoEbPyyQNyGhhqttjgSO3cU/non8QDBJF8ttGaHM2h8CaY5zFIngtqW6ZbLEIvhpoFPDVwiQg61b8zanx5zQ==","shasum":"a7ed956e780c22aef6afd1116005acd82f26eac6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/eslint-plugin-node/-/eslint-plugin-node-5.1.1.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCR8XHHq2hbZvz4GSLhmApkDbjW1fP2Mu2fubQlLAuvsgIhALT9Wojbfn6Wa1uvm3CV9UasTbz9RH82k9BXfZWO2paE"}]},"maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/eslint-plugin-node-5.1.1.tgz_1500425029116_0.7681355567183346"},"directories":{}},"4.2.3":{"name":"eslint-plugin-node","version":"4.2.3","description":"Additional ESLint's rules for Node.js","files":["conf","lib","index.js"],"scripts":{"build":"node scripts/generate-index.js","clean":"rimraf .nyc_output coverage index.js","codecov":"nyc report -r lcovonly && codecov","coverage":"nyc report -r lcov && opener ./coverage/lcov-report/index.html","lint":"eslint lib tests/lib index.js","postversion":"git push && git push --tags","pretest":"npm run -s lint","preversion":"npm t && npm run build","test":"nyc npm run -s test:_mocha","test:_mocha":"_mocha tests/lib/**/*.js --reporter progress","watch":"npm run test:_mocha -- --watch --growl"},"engines":{"node":">=4"},"peerDependencies":{"eslint":">=3.1.0"},"dependencies":{"ignore":"^3.0.11","minimatch":"^3.0.2","object-assign":"^4.0.1","resolve":"^1.1.7","semver":"5.3.0"},"devDependencies":{"@types/minimatch":"^2.0.29","@types/node":"^4.2.1","@types/resolve":"0.0.4","@types/semver":"^5.3.30","codecov":"^1.0.1","eslint":"^3.9.0","eslint-config-mysticatea":"^7.0.0","mocha":"^3.0.2","nyc":"^8.3.0","opener":"^1.4.2","rimraf":"^2.4.4","shelljs":"^0.7.0"},"repository":{"type":"git","url":"git+https://github.com/mysticatea/eslint-plugin-node.git"},"keywords":["eslint","eslintplugin","eslint-plugin","node","nodejs","ecmascript","shebang","file","path","import","require"],"author":{"name":"Toru Nagashima"},"license":"MIT","bugs":{"url":"https://github.com/mysticatea/eslint-plugin-node/issues"},"homepage":"https://github.com/mysticatea/eslint-plugin-node#readme","gitHead":"229778730248f73990cbf7c82788030e3aa8108e","_id":"eslint-plugin-node@4.2.3","_npmVersion":"5.1.0","_nodeVersion":"8.1.4","_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"dist":{"integrity":"sha512-vIUQPuwbVYdz/CYnlTLsJrRy7iXHQjdEe5wz0XhhdTym3IInM/zZLlPf9nZ2mThsH0QcsieCOWs2vOeCy/22LQ==","shasum":"c04390ab8dbcbb6887174023d6f3a72769e63b97","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/eslint-plugin-node/-/eslint-plugin-node-4.2.3.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDbfnRURHkZaCKImRSnsbJfo7AifaKU6GpQCvh9W0LpTAIgPXkvQthom0Y1LJU1TAGchImdKiYFOVRQg1aR/nZn2rI="}]},"maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/eslint-plugin-node-4.2.3.tgz_1500427988799_0.017717160983011127"},"directories":{}},"5.2.0":{"name":"eslint-plugin-node","version":"5.2.0","description":"Additional ESLint's rules for Node.js","main":"lib/index.js","files":["lib"],"scripts":{"build":"node scripts/update.js","clean":"rimraf .nyc_output coverage","codecov":"nyc report -r lcovonly && codecov","coverage":"nyc report -r lcov && opener ./coverage/lcov-report/index.html","lint":"eslint lib tests/lib index.js","postversion":"git push && git push --tags","pretest":"npm run -s lint","preversion":"npm t && npm run -s build","test":"nyc npm run -s test:_mocha","test:_mocha":"_mocha tests/lib/**/*.js --reporter progress","watch":"npm run test:_mocha -- --watch --growl"},"engines":{"node":">=4"},"peerDependencies":{"eslint":">=3.1.0"},"dependencies":{"ignore":"^3.3.3","minimatch":"^3.0.4","resolve":"^1.3.3","semver":"5.3.0"},"devDependencies":{"codecov":"^2.2.0","eslint":"^4.1.0","eslint-config-mysticatea":"^11.0.0","mocha":"^3.4.2","nyc":"^11.0.1","opener":"^1.4.3","rimraf":"^2.6.1","shelljs":"^0.7.7"},"repository":{"type":"git","url":"git+https://github.com/mysticatea/eslint-plugin-node.git"},"keywords":["eslint","eslintplugin","eslint-plugin","node","nodejs","ecmascript","shebang","file","path","import","require"],"author":{"name":"Toru Nagashima"},"license":"MIT","bugs":{"url":"https://github.com/mysticatea/eslint-plugin-node/issues"},"homepage":"https://github.com/mysticatea/eslint-plugin-node#readme","gitHead":"7189722f39fad951fd2b9a5a744d9f6fe328f324","_id":"eslint-plugin-node@5.2.0","_npmVersion":"5.4.2","_nodeVersion":"8.5.0","_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"dist":{"integrity":"sha512-N9FLFwknT5LhRhjz1lmHguNss/MCwkrLCS4CjqqTZZTJaUhLRfDNK3zxSHL/Il3Aa0Mw+xY3T1gtsJrUNoJy8Q==","shasum":"e1efca04a385516cff3f2f04027ce8c5ae6db749","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/eslint-plugin-node/-/eslint-plugin-node-5.2.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCFyfFwl4Xe6aHnKbHIuqsBBlXbcM3SJ7jaN4Jt91JU/QIgB8wT7eeFtXnSvJz5/1UNiVXILTz2IT8vbpKkJuTqwvs="}]},"maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/eslint-plugin-node-5.2.0.tgz_1506602071226_0.5988058759830892"},"directories":{}},"5.2.1":{"name":"eslint-plugin-node","version":"5.2.1","description":"Additional ESLint's rules for Node.js","main":"lib/index.js","files":["lib"],"scripts":{"build":"node scripts/update.js","clean":"rimraf .nyc_output coverage","codecov":"nyc report -r lcovonly && codecov","coverage":"nyc report -r lcov && opener ./coverage/lcov-report/index.html","lint":"eslint lib tests/lib index.js","postversion":"git push && git push --tags","pretest":"npm run -s lint","preversion":"npm t && npm run -s build","test":"nyc npm run -s test:_mocha","test:_mocha":"_mocha tests/lib/**/*.js --reporter progress","watch":"npm run test:_mocha -- --watch --growl"},"engines":{"node":">=4"},"peerDependencies":{"eslint":">=3.1.0"},"dependencies":{"ignore":"^3.3.6","minimatch":"^3.0.4","resolve":"^1.3.3","semver":"5.3.0"},"devDependencies":{"codecov":"^2.2.0","eslint":"^4.1.0","eslint-config-mysticatea":"^11.0.0","mocha":"^3.4.2","nyc":"^11.0.1","opener":"^1.4.3","rimraf":"^2.6.1","shelljs":"^0.7.7"},"repository":{"type":"git","url":"git+https://github.com/mysticatea/eslint-plugin-node.git"},"keywords":["eslint","eslintplugin","eslint-plugin","node","nodejs","ecmascript","shebang","file","path","import","require"],"author":{"name":"Toru Nagashima"},"license":"MIT","bugs":{"url":"https://github.com/mysticatea/eslint-plugin-node/issues"},"homepage":"https://github.com/mysticatea/eslint-plugin-node#readme","gitHead":"ad1f15a02940f4f6eae73b8ffc832742796e515b","_id":"eslint-plugin-node@5.2.1","_npmVersion":"5.5.1","_nodeVersion":"8.6.0","_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"dist":{"integrity":"sha512-xhPXrh0Vl/b7870uEbaumb2Q+LxaEcOQ3kS1jtIXanBAwpMre1l5q/l2l/hESYJGEFKuI78bp6Uw50hlpr7B+g==","shasum":"80df3253c4d7901045ec87fa660a284e32bdca29","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/eslint-plugin-node/-/eslint-plugin-node-5.2.1.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDjh4rb/opICYUdK7mSxdqFUtUzkn/zKnjUfIKoeP8tGAiEAiHJmakkT4MUTLP2dw6tW+8d5FNbzbqPLlNYrCcXhmjo="}]},"maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/eslint-plugin-node-5.2.1.tgz_1508742817866_0.07042436208575964"},"directories":{}},"6.0.0":{"name":"eslint-plugin-node","version":"6.0.0","description":"Additional ESLint's rules for Node.js","main":"lib/index.js","files":["lib"],"scripts":{"build":"node scripts/update.js","clean":"rimraf .nyc_output coverage","codecov":"nyc report -r lcovonly && codecov","coverage":"nyc report -r lcov && opener ./coverage/lcov-report/index.html","lint":"eslint lib tests/lib index.js","postversion":"git push && git push --tags","pretest":"npm run -s lint","preversion":"npm t && npm run -s build","test":"nyc npm run -s test:_mocha","test:_mocha":"_mocha tests/lib/**/*.js --reporter progress","watch":"npm run test:_mocha -- --watch --growl"},"engines":{"node":">=4"},"peerDependencies":{"eslint":">=3.1.0"},"dependencies":{"ignore":"^3.3.6","minimatch":"^3.0.4","resolve":"^1.3.3","semver":"^5.4.1"},"devDependencies":{"codecov":"^3.0.0","eslint":"^4.17.0","eslint-config-mysticatea":"^13.0.2","mocha":"^5.0.0","nyc":"^11.0.1","opener":"^1.4.3","rimraf":"^2.6.1","shelljs":"^0.8.1"},"repository":{"type":"git","url":"git+https://github.com/mysticatea/eslint-plugin-node.git"},"keywords":["eslint","eslintplugin","eslint-plugin","node","nodejs","ecmascript","shebang","file","path","import","require"],"author":{"name":"Toru Nagashima"},"license":"MIT","bugs":{"url":"https://github.com/mysticatea/eslint-plugin-node/issues"},"homepage":"https://github.com/mysticatea/eslint-plugin-node#readme","gitHead":"bbf4b6032705d446cd3532c92649fdc2894da9d1","_id":"eslint-plugin-node@6.0.0","_npmVersion":"5.6.0","_nodeVersion":"9.2.0","_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"dist":{"integrity":"sha512-Qj4dMF1N/wRALO1IRvnchn8c1i0awgrztrGx7MjF9ewDwlW/heNB+WeZ09bhp8Yp0TD+BZcADP8BRya0wmropA==","shasum":"5ad5ee6b5346aec6cc9cde0b8619caed2c6d8f25","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/eslint-plugin-node/-/eslint-plugin-node-6.0.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDqFkvf+UXEY2s5HWHTujYremgk0JLO/M6DdvzgsYB0gAIgNj4Iy7BSMX1eMNMX79ag0GKvX+ckDkklemyEhS7UqI8="}]},"maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/eslint-plugin-node-6.0.0.tgz_1517821765718_0.594820469385013"},"directories":{}},"6.0.1":{"name":"eslint-plugin-node","version":"6.0.1","description":"Additional ESLint's rules for Node.js","main":"lib/index.js","files":["lib"],"scripts":{"build":"node scripts/update.js","clean":"rimraf .nyc_output coverage","codecov":"nyc report -r lcovonly && codecov","coverage":"nyc report -r lcov && opener ./coverage/lcov-report/index.html","lint":"eslint lib tests/lib index.js","postversion":"git push && git push --tags","pretest":"npm run -s lint","preversion":"npm t && npm run -s build","test":"nyc npm run -s test:_mocha","test:_mocha":"_mocha tests/lib/**/*.js --reporter progress","watch":"npm run test:_mocha -- --watch --growl"},"engines":{"node":">=4"},"peerDependencies":{"eslint":">=3.1.0"},"dependencies":{"ignore":"^3.3.6","minimatch":"^3.0.4","resolve":"^1.3.3","semver":"^5.4.1"},"devDependencies":{"codecov":"^3.0.0","eslint":"^4.17.0","eslint-config-mysticatea":"^13.0.2","mocha":"^5.0.0","nyc":"^11.0.1","opener":"^1.4.3","rimraf":"^2.6.1","shelljs":"^0.8.1"},"repository":{"type":"git","url":"git+https://github.com/mysticatea/eslint-plugin-node.git"},"keywords":["eslint","eslintplugin","eslint-plugin","node","nodejs","ecmascript","shebang","file","path","import","require"],"author":{"name":"Toru Nagashima"},"license":"MIT","bugs":{"url":"https://github.com/mysticatea/eslint-plugin-node/issues"},"homepage":"https://github.com/mysticatea/eslint-plugin-node#readme","gitHead":"5260039c77fd7e6368c1a5808f90462e5beec6f3","_id":"eslint-plugin-node@6.0.1","_npmVersion":"5.6.0","_nodeVersion":"9.2.0","_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"dist":{"integrity":"sha512-Q/Cc2sW1OAISDS+Ji6lZS2KV4b7ueA/WydVWd1BECTQwVvfQy5JAi3glhINoKzoMnfnuRgNP+ZWKrGAbp3QDxw==","shasum":"bf19642298064379315d7a4b2a75937376fa05e4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/eslint-plugin-node/-/eslint-plugin-node-6.0.1.tgz","fileCount":38,"unpackedSize":167061,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCkaXCSl4nGAxu4rkaFpiVNyXZll2vl/Ede9b7ehGCPzwIhAJUDtRtxfWKfBnl+Ajkk9ne4znJYyD4EVxIxl9WA3V7d"}]},"maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/eslint-plugin-node_6.0.1_1519378626675_0.3668017896419047"},"_hasShrinkwrap":false},"7.0.0-beta.0":{"name":"eslint-plugin-node","version":"7.0.0-beta.0","description":"Additional ESLint's rules for Node.js","engines":{"node":">=6"},"main":"lib/index.js","files":["lib"],"peerDependencies":{"eslint":">=4.19.1"},"dependencies":{"eslint-plugin-es":"^1.3.1","eslint-utils":"^1.3.1","ignore":"^4.0.2","minimatch":"^3.0.4","resolve":"^1.8.1","semver":"^5.5.0"},"devDependencies":{"@mysticatea/eslint-plugin":"^5.1.0","codecov":"^3.0.4","eslint":"^5.1.0","fast-glob":"^2.2.2","mocha":"^5.2.0","nyc":"^12.0.2","opener":"^1.4.3","rimraf":"^2.6.1"},"scripts":{"build":"node scripts/update.js","clean":"rimraf .nyc_output coverage","codecov":"nyc report -r lcovonly && codecov","coverage":"nyc report -r lcov && opener ./coverage/lcov-report/index.html","lint":"eslint lib scripts tests/lib .eslintrc.js","test":"nyc npm run -s test:_mocha","test:_mocha":"_mocha tests/lib/**/*.js --reporter progress","preversion":"npm t && npm run -s build","version":"eslint lib/rules --fix && git add lib/rules","postversion":"git push && git push --tags","watch":"npm run test:_mocha -- --watch --growl"},"repository":{"type":"git","url":"git+https://github.com/mysticatea/eslint-plugin-node.git"},"keywords":["eslint","eslintplugin","eslint-plugin","node","nodejs","ecmascript","shebang","file","path","import","require"],"author":{"name":"Toru Nagashima"},"license":"MIT","bugs":{"url":"https://github.com/mysticatea/eslint-plugin-node/issues"},"homepage":"https://github.com/mysticatea/eslint-plugin-node#readme","readme":"# eslint-plugin-node\n\n[![npm version](https://img.shields.io/npm/v/eslint-plugin-node.svg)](https://www.npmjs.com/package/eslint-plugin-node)\n[![Downloads/month](https://img.shields.io/npm/dm/eslint-plugin-node.svg)](http://www.npmtrends.com/eslint-plugin-node)\n[![Build Status](https://travis-ci.org/mysticatea/eslint-plugin-node.svg?branch=master)](https://travis-ci.org/mysticatea/eslint-plugin-node)\n[![Coverage Status](https://codecov.io/gh/mysticatea/eslint-plugin-node/branch/master/graph/badge.svg)](https://codecov.io/gh/mysticatea/eslint-plugin-node)\n[![Dependency Status](https://david-dm.org/mysticatea/eslint-plugin-node.svg)](https://david-dm.org/mysticatea/eslint-plugin-node)\n\nAdditional ESLint's rules for Node.js\n\n## 💿 Install & Usage\n\n```\n$ npm install --save-dev eslint eslint-plugin-node\n```\n\n- Requires Node.js `>=6.0.0`\n- Requires ESLint `>=4.19.1`\n\n**Note:** It recommends a use of [the \"engines\" field of package.json](https://docs.npmjs.com/files/package.json#engines). The \"engines\" field is used by `node/no-unsupported-features/*` rules.\n\n**.eslintrc.json** (An example)\n\n```json\n{\n    \"extends\": [\"eslint:recommended\", \"plugin:node/recommended\"],\n    \"rules\": {\n        \"node/exports-style\": [\"error\", \"module.exports\"],\n        \"node/prefer-global/buffer\": [\"error\", \"always\"],\n        \"node/prefer-global/console\": [\"error\", \"always\"],\n        \"node/prefer-global/process\": [\"error\", \"always\"],\n        \"node/prefer-global/url-search-params\": [\"error\", \"always\"],\n        \"node/prefer-global/url\": [\"error\", \"always\"],\n    }\n}\n```\n\n**package.json** (An example)\n\n```json\n{\n    \"name\": \"your-module\",\n    \"version\": \"1.0.0\",\n    \"engines\": {\n        \"node\": \">=6.0.0\"\n    }\n}\n```\n\n## 📖 Rules\n\n- ⭐️ - the mark of recommended rules.\n- ✒️ - the mark of fixable rules.\n\n<!--RULES_TABLE_START-->\n### Possible Errors\n\n| Rule ID | Description |    |\n|:--------|:------------|:--:|\n| [node/no-extraneous-import](./docs/rules/no-extraneous-import.md) | disallow `import` declarations of extraneous packages |  |\n| [node/no-extraneous-require](./docs/rules/no-extraneous-require.md) | disallow `require()` expressions of extraneous packages | ⭐️ |\n| [node/no-missing-import](./docs/rules/no-missing-import.md) | disallow `import` declarations of missing files |  |\n| [node/no-missing-require](./docs/rules/no-missing-require.md) | disallow `require()` expressions of missing files | ⭐️ |\n| [node/no-unpublished-bin](./docs/rules/no-unpublished-bin.md) | disallow 'bin' files which are ignored by npm | ⭐️ |\n| [node/no-unpublished-import](./docs/rules/no-unpublished-import.md) | disallow `import` declarations of private things |  |\n| [node/no-unpublished-require](./docs/rules/no-unpublished-require.md) | disallow `require()` expressions of private things | ⭐️ |\n| [node/no-unsupported-features/es-builtins](./docs/rules/no-unsupported-features/es-builtins.md) | disallow unsupported ECMAScript built-ins on the specified version | ⭐️ |\n| [node/no-unsupported-features/es-syntax](./docs/rules/no-unsupported-features/es-syntax.md) | disallow unsupported ECMAScript syntax on the specified version | ⭐️ |\n| [node/no-unsupported-features/node-builtins](./docs/rules/no-unsupported-features/node-builtins.md) | disallow unsupported Node.js built-in APIs on the specified version | ⭐️ |\n| [node/process-exit-as-throw](./docs/rules/process-exit-as-throw.md) | make `process.exit()` expressions the same code path as `throw` | ⭐️ |\n| [node/shebang](./docs/rules/shebang.md) | enforce the correct usage of shebang | ⭐️✒️ |\n\n### Best Practices\n\n| Rule ID | Description |    |\n|:--------|:------------|:--:|\n| [node/no-deprecated-api](./docs/rules/no-deprecated-api.md) | disallow deprecated APIs | ⭐️ |\n\n### Stylistic Issues\n\n| Rule ID | Description |    |\n|:--------|:------------|:--:|\n| [node/exports-style](./docs/rules/exports-style.md) | enforce either `module.exports` or `exports` |  |\n| [node/prefer-global/buffer](./docs/rules/prefer-global/buffer.md) | enforce either `Buffer` or `require(\"buffer\").Buffer` |  |\n| [node/prefer-global/console](./docs/rules/prefer-global/console.md) | enforce either `console` or `require(\"console\")` |  |\n| [node/prefer-global/process](./docs/rules/prefer-global/process.md) | enforce either `process` or `require(\"process\")` |  |\n| [node/prefer-global/url-search-params](./docs/rules/prefer-global/url-search-params.md) | enforce either `URLSearchParams` or `require(\"url\").URLSearchParams` |  |\n| [node/prefer-global/url](./docs/rules/prefer-global/url.md) | enforce either `URL` or `require(\"url\").URL` |  |\n\n<!--RULES_TABLE_END-->\n\n## 🔧 Configs\n\nThis plugin provides `plugin:node/recommended` preset config.\nThis preset config:\n\n- enables the environment of ES2015 (ES6) and Node.js.\n- enables rules which are given :star: in the above table.\n- enables [no-process-exit](http://eslint.org/docs/rules/no-process-exit) rule because [the official document](https://nodejs.org/api/process.html#process_process_exit_code) does not recommend a use of `process.exit()`.\n- adds `{ecmaVersion: 2019}` into `parserOptions`.\n- adds `Atomics` and `SharedArrayBuffer` into `globals`.\n- adds this plugin into `plugins`.\n\n## 👫 FAQ\n\n- Q: The `no-missing-import` / `no-missing-require` rules don't work with nested folders in SublimeLinter-eslint\n- A: See [context.getFilename() in rule returns relative path](https://github.com/roadhump/SublimeLinter-eslint#contextgetfilename-in-rule-returns-relative-path) in the SublimeLinter-eslint FAQ.\n\n## 🚥 Semantic Versioning Policy\n\n`eslint-plugin-node` follows [semantic versioning](http://semver.org/) and [ESLint's Semantic Versioning Policy](https://github.com/eslint/eslint#semantic-versioning-policy).\n\n- Patch release (intended to not break your lint build)\n    - A bug fix in a rule that results in it reporting fewer errors.\n    - Improvements to documentation.\n    - Non-user-facing changes such as refactoring code, adding, deleting, or modifying tests, and increasing test coverage.\n    - Re-releasing after a failed release (i.e., publishing a release that doesn't work for anyone).\n- Minor release (might break your lint build)\n    - A bug fix in a rule that results in it reporting more errors.\n    - A new rule is created.\n    - A new option to an existing rule is created.\n    - An existing rule is deprecated.\n- Major release (likely to break your lint build)\n    - A support for old Node version is dropped.\n    - A support for old ESLint version is dropped.\n    - An existing rule is changed in it reporting more errors.\n    - An existing rule is removed.\n    - An existing option of a rule is removed.\n    - An existing config is updated.\n\n## 📰 Changelog\n\n- [GitHub Releases](https://github.com/mysticatea/eslint-plugin-node/releases)\n\n## 💎 Contributing\n\nWelcome contributing!\n\nPlease use GitHub's Issues/PRs.\n\n### Development Tools\n\n- `npm test` runs tests and measures coverage.\n- `npm run coverage` shows the coverage result of `npm test` command.\n- `npm run clean` removes the coverage result of `npm test` command.\n","readmeFilename":"README.md","gitHead":"7137055892e5c89441dc57aa97eff5bc20c3f312","_id":"eslint-plugin-node@7.0.0-beta.0","_npmVersion":"6.1.0","_nodeVersion":"10.6.0","_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"dist":{"integrity":"sha512-uOoiCu7c1nNw4U20ZFaxXFTEb9XyhUKW8COC3cBoD5ATVEyMmlDzPG2Zp/WjKqkGR2DaS70tpcwyQ/vHz0f7yA==","shasum":"3b900dec39d17f6a3d7a2b7ba0edf59d4fd8d14b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/eslint-plugin-node/-/eslint-plugin-node-7.0.0-beta.0.tgz","fileCount":47,"unpackedSize":191393,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbTI0qCRA9TVsSAnZWagAALBwP/iKrBPdvOPmDRxW4NLNK\nTZMlnrU/xNgC96wQfNq87+nq/FeRnJj8QcfbRSLBUZj8N9wV5tzCt1nAalKI\nBkQYVnR03QpN+eVgHeZYEHR60ByAhqS5xrPrpDKsofngCm0GpQ4fn7pcExB7\ny9TFhlMAQ/fTwM/Z4foT6pWhHhqWH6PpLb/NYWAFL5SPkTPZBq3AAsIsM1Kw\nxzRpiyM//McggWG7Ze4+EiwRq7J6rL187WJ++XEbi3QxR/1mCho2pLuSYorS\nkMB7ulHp/0HIOE0zG3WfaMQAq7nOY/5eUMpNclHCYQYejfJE6tWBjtZ8peCk\nIfT+yb+f9JfSqi9EaiHB8iwMrofomUFth02yWP9UDpmAtK+EChTXtEMhE/fP\nPdXcdNZ6hcWVhZqqrbR2Slck04xeUy98LWxqAhwP71SzF9r3N3aPyyCu8YH/\nBGYkzZIT0oL64nW0EBWdkRNO/sa2ztByC5pkjPEvXMF/JK+66l/YWibi6k7P\n2Sjg/OXlX4ef9X9Bazo6nSp9/H/++eOMxMedLgagdYjvWBgix9aLNSzNWUDk\ni/MEyoZCnL7g1YLAPl4P2AB05/UxF2VqIvxMcsFEChq2O8Y7hQ8YQNkYiJad\nJdlmde/hUWl+8ceTuO/KfE7vFU7M/SMjQZUtsYqana16PpSRgNdrV+fB4P4z\n1Lml\r\n=ktKB\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEMCID4UiWVHXjKItflLp0fyoebiYIjiA0TpjebPXcNee1MSAh8SBtstkpaWQNdKPzYr/Ki1E47uZ+UayYLUDBJZyd2v"}]},"maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/eslint-plugin-node_7.0.0-beta.0_1531743530556_0.2732164847492151"},"_hasShrinkwrap":false},"7.0.0":{"name":"eslint-plugin-node","version":"7.0.0","description":"Additional ESLint's rules for Node.js","engines":{"node":">=6"},"main":"lib/index.js","files":["lib"],"peerDependencies":{"eslint":">=4.19.1"},"dependencies":{"eslint-plugin-es":"^1.3.1","eslint-utils":"^1.3.1","ignore":"^4.0.2","minimatch":"^3.0.4","resolve":"^1.8.1","semver":"^5.5.0"},"devDependencies":{"@mysticatea/eslint-plugin":"^5.1.0","codecov":"^3.0.4","eslint":"^5.1.0","fast-glob":"^2.2.2","mocha":"^5.2.0","nyc":"^12.0.2","opener":"^1.4.3","rimraf":"^2.6.1"},"scripts":{"build":"node scripts/update.js","clean":"rimraf .nyc_output coverage","codecov":"nyc report -r lcovonly && codecov","coverage":"nyc report -r lcov && opener ./coverage/lcov-report/index.html","lint":"eslint lib scripts tests/lib .eslintrc.js","test":"nyc npm run -s test:_mocha","test:_mocha":"_mocha tests/lib/**/*.js --reporter progress","preversion":"npm t && npm run -s build","version":"eslint lib/rules --fix && git add lib/rules","postversion":"git push && git push --tags","watch":"npm run test:_mocha -- --watch --growl"},"repository":{"type":"git","url":"git+https://github.com/mysticatea/eslint-plugin-node.git"},"keywords":["eslint","eslintplugin","eslint-plugin","node","nodejs","ecmascript","shebang","file","path","import","require"],"author":{"name":"Toru Nagashima"},"license":"MIT","bugs":{"url":"https://github.com/mysticatea/eslint-plugin-node/issues"},"homepage":"https://github.com/mysticatea/eslint-plugin-node#readme","gitHead":"890ee63e98ef95ec5a27f50f42188102526d81b1","_id":"eslint-plugin-node@7.0.0","_npmVersion":"6.1.0","_nodeVersion":"10.5.0","_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"dist":{"integrity":"sha512-l5r5Zan0zHBP8nPqsxhABFcZ33FtN8o40+NiHri0N3Qa71AOcIX8BmXlXvQEhwsPmUE7Bg9Umkseo24waJmpYg==","shasum":"cd4db400d500394c0d39037868d0d61eb2cfb0f9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/eslint-plugin-node/-/eslint-plugin-node-7.0.0.tgz","fileCount":46,"unpackedSize":188350,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbTbEwCRA9TVsSAnZWagAA1k8P/1pqH4BJFFV2w77IYO1L\nYbLgdNnQuie2bB+0PUKBGtNpiJji8jVpWdjc1el00CNwEAne9MPwCrzy0qis\nXssY5h6nie3kt77u3dgMJ4wGwuvV9FTQ3ABowvMvsgDtXhpRAhLrrNWQn4sz\nOF6RYlKXcfCROYC3k4H5Q3Ttnp47qH7X4jzAatwsoVP+Qzu2BT1L0qJmtj9U\n4PeeE6e9GKEqqq7uq517GdQNjJ4gZTzqVBDhxSOt4lIpL7gsdhp4A035Gzqv\nhJfvvqT/qdEr8x2U1KIPU0ZcCh1xGMjI5dsL1k1jaZBfaOqu4TFyvbJw/W30\n0BZKXdzreHB5PM4Youzx3+pXOKh/NhGxHjlnhT4xTtrJB/Eg2U4a7apt6WIP\nDcSXwZRDXNShE0WZqauEJhGIWNWfGZp5dX1oesDWG1fPyhyy/mkahGuk8qEN\nMbfdoTLbcYArwctF7WcYQjTRCcuTmGvERl866gMLujnCc/F7irQD587JMsar\n2oWjp9uSOx/b5lDV9P7JOKjmirHDVRibfQ33jcHpYqhnPsYnGj3HJEW1Jcn7\nQrdh28zRM9pBOVDICkfZCVmVPyhnebloRu8Ke8IiIYBj485htcCEMg6TpUkJ\ng1GnXwcnZ1O2DpWIQ0kNCplkosuCrirZBxKN/qQsCxttaAFt8yA0cWLfrlo6\nvKOx\r\n=+stN\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCyugcwHnHBjLuQyti9Acbk5oFxHdn3Xkfn/NzQjDV2tgIgd74SOwlKIVxrBT8Qb6wx0zm+CQKgH1X/VgoOhLtiE2M="}]},"maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/eslint-plugin-node_7.0.0_1531818288612_0.01756091996164244"},"_hasShrinkwrap":false},"7.0.1":{"name":"eslint-plugin-node","version":"7.0.1","description":"Additional ESLint's rules for Node.js","engines":{"node":">=6"},"main":"lib/index.js","files":["lib"],"peerDependencies":{"eslint":">=4.19.1"},"dependencies":{"eslint-plugin-es":"^1.3.1","eslint-utils":"^1.3.1","ignore":"^4.0.2","minimatch":"^3.0.4","resolve":"^1.8.1","semver":"^5.5.0"},"devDependencies":{"@mysticatea/eslint-plugin":"^5.1.0","codecov":"^3.0.4","eslint":"^5.1.0","fast-glob":"^2.2.2","mocha":"^5.2.0","nyc":"^12.0.2","opener":"^1.4.3","rimraf":"^2.6.1"},"scripts":{"build":"node scripts/update.js","clean":"rimraf .nyc_output coverage","codecov":"nyc report -r lcovonly && codecov","coverage":"nyc report -r lcov && opener ./coverage/lcov-report/index.html","lint":"eslint lib scripts tests/lib .eslintrc.js","test":"nyc npm run -s test:_mocha","test:_mocha":"_mocha tests/lib/**/*.js --reporter progress","preversion":"npm t && npm run -s build","version":"eslint lib/rules --fix && git add lib/rules","postversion":"git push && git push --tags","watch":"npm run test:_mocha -- --watch --growl"},"repository":{"type":"git","url":"git+https://github.com/mysticatea/eslint-plugin-node.git"},"keywords":["eslint","eslintplugin","eslint-plugin","node","nodejs","ecmascript","shebang","file","path","import","require"],"author":{"name":"Toru Nagashima"},"license":"MIT","bugs":{"url":"https://github.com/mysticatea/eslint-plugin-node/issues"},"homepage":"https://github.com/mysticatea/eslint-plugin-node#readme","gitHead":"a4a7ad2388afd423ffd0a98ed11b0a0144fd81f7","_id":"eslint-plugin-node@7.0.1","_npmVersion":"6.1.0","_nodeVersion":"10.5.0","_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"dist":{"integrity":"sha512-lfVw3TEqThwq0j2Ba/Ckn2ABdwmL5dkOgAux1rvOk6CO7A6yGyPI2+zIxN6FyNkp1X1X/BSvKOceD6mBWSj4Yw==","shasum":"a6e054e50199b2edd85518b89b4e7b323c9f36db","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/eslint-plugin-node/-/eslint-plugin-node-7.0.1.tgz","fileCount":46,"unpackedSize":188404,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbTeBvCRA9TVsSAnZWagAACPEP/0FmLjyeAcYBEePGPiYB\nAi2JuQRBpnnlkyPLWzrkhwCX9Im3jTJXIl6VyCizA8AEUayVfBD9f7eb19j1\nwxDclPhyNayQIzOglRAPQxqAJmGtb8yDf6RIXPCpsjueBT6wPhL1KiFNMz6s\nWi562yyEZdARW5CQkVJwEohdm7Y3/4J2Rib1fpS6zi28Pu3I50bjcwRcqgzl\nGByyaPl5PejtB8KCMATrLABZ+Ia+prZs2fLjooiqNd2vWQjE4BokAlZVJ7I+\nubGuiIfy+DYjQG1ZJ6iGFuW9F4rLxxaOY9L9D0mFsHtt4U162crL1m5LkqS6\nLoLpChoQ/8dHrpBCXHnNWrkW4Edk6PoGIL3kpKbvUJrbh5ytdcXFfx0qVHxR\nqf4vAeuc2+uBQdBU+/5A4dUhSYvTLWvTZ8F/4KmVLhv0jT82HvcoudoAwdh1\n4CnD/oEGSy3Nv++LQOo3ie3pkblv++3fwn972CkKbzIHwv3y9vfxNbcTxWDx\nGBOH3OfhuUzzDDRMQz2XTnQdZHeC1SOjeGCWIc0Qaq0x2ieTuM3CEwoWJUvm\nXfO0NsYk2/7iR8MZoebhVSPahhfSMskz5/G3EY0YYP0aXhguMF4ExapauwIz\nFkBkajSXFRAExNfStWvzS4xZKQqKFOsGVd7bsJxHWFgp7b00+sN71Ofny7GQ\nTZQH\r\n=j7W4\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBywvoDTFMpS9pjpM3VlmbKYbEqFPkRswU3Ossk2OI9bAiBtNbvIJmigQvsRtwmmRRDt1SWbwUkHYl9KCwdNL2XlKQ=="}]},"maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/eslint-plugin-node_7.0.1_1531830383679_0.24966876937332994"},"_hasShrinkwrap":false},"8.0.0":{"name":"eslint-plugin-node","version":"8.0.0","description":"Additional ESLint's rules for Node.js","engines":{"node":">=6"},"main":"lib/index.js","peerDependencies":{"eslint":">=4.19.1"},"dependencies":{"eslint-plugin-es":"^1.3.1","eslint-utils":"^1.3.1","ignore":"^5.0.2","minimatch":"^3.0.4","resolve":"^1.8.1","semver":"^5.5.0"},"devDependencies":{"@mysticatea/eslint-plugin":"^7.0.0","codecov":"^3.0.4","eslint":"^5.8.0","fast-glob":"^2.2.2","mocha":"^5.2.0","nyc":"^12.0.2","opener":"^1.4.3","rimraf":"^2.6.1"},"scripts":{"build":"node scripts/update.js","clean":"rimraf .nyc_output coverage","codecov":"nyc report -r lcovonly && codecov","coverage":"nyc report -r lcov && opener ./coverage/lcov-report/index.html","lint":"eslint lib scripts tests/lib .eslintrc.js","test":"nyc npm run -s test:_mocha","test:_mocha":"_mocha tests/lib/**/*.js --reporter progress","preversion":"npm t && npm run -s build","version":"eslint lib/rules --fix && git add lib/rules","postversion":"git push && git push --tags","watch":"npm run test:_mocha -- --watch --growl"},"repository":{"type":"git","url":"git+https://github.com/mysticatea/eslint-plugin-node.git"},"keywords":["eslint","eslintplugin","eslint-plugin","node","nodejs","ecmascript","shebang","file","path","import","require"],"author":{"name":"Toru Nagashima"},"license":"MIT","bugs":{"url":"https://github.com/mysticatea/eslint-plugin-node/issues"},"homepage":"https://github.com/mysticatea/eslint-plugin-node#readme","gitHead":"932836b5a97e33c35ada5af0d3dd2d5ba1e2307b","_id":"eslint-plugin-node@8.0.0","_npmVersion":"6.4.1","_nodeVersion":"11.0.0","_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"dist":{"integrity":"sha512-Y+ln8iQ52scz9+rSPnSWRaAxeWaoJZ4wIveDR0vLHkuSZGe44Vk1J4HX7WvEP5Cm+iXPE8ixo7OM7gAO3/OKpQ==","shasum":"fb9e8911f4543514f154bb6a5924b599aa645568","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/eslint-plugin-node/-/eslint-plugin-node-8.0.0.tgz","fileCount":48,"unpackedSize":194796,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb1OhCCRA9TVsSAnZWagAANakP/3XXfoDIew1CvQWb/EW3\nKJyFwfQuquVcirZGKa3zq8Of67B1utBXk4qOCBny8cpNp1Ewv8H70qbEbCuP\nS7PgYVKV2wJXqjXa9UDN6MBgO1BLiTJ3ZxNkYe/01PATdDWKVKtYQGybkDgx\nsALWIfOLyQW5caXW6SVOiBAScOGurW2y6ax/npyLxQ1MATy9QqyQ6eHdjlHP\nnMsqEtrK/MTn9t/j+N6vFEy9+c6M2gY3VUSidYfGvEkfsGewjtcYl4egL32V\ntXl4svA2fo+imYaOv4RiId/tFl4qTmYzU70gJGS4au2qaI5zLYLqS49mEx0f\n9SiET7xXC7qjjJ7wFa7+ghBbBNeM+BODI9OK/VaFwG4akk9jdBAzDjAJJNAm\nW8H0iOuzXPQmcr8VtX59ZEIlw+U6/Wel/r0Wj24dmDNRbgy1haq4pveBRAmh\ngczl7vEpvP5jFNWUWFdKsN9wxynTndE4sPmewUik9atHG1TUpxjq4UjeWb0R\nc7zhg1FWnRzOiXKUZWuCN0xT6Mu1Eb5Bvby1DImIOLIGMJqU45uZO0jZf6bv\npts6kNmSstkLC5eVw+V8JJ3FLgdZKkePk7pt2Mm1w6KIfD4vEqClLJ/bc9fo\nkOF2LJcVEcxPvG1kGiT9hpV0KNv0TdsAEGoba9vqOo+d88fqQsqq0ueJ0r9K\nZz+Y\r\n=uVel\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDT83MKGstsiR4pY7cLu1IULUsMkcqWWBlmOkzNjIuW6AiB390sAK8VNrIYcHnESm+HStnGgUkTann9G1wa5voi/Ig=="}]},"maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/eslint-plugin-node_8.0.0_1540679745672_0.8051786431648933"},"_hasShrinkwrap":false},"8.0.1":{"name":"eslint-plugin-node","version":"8.0.1","description":"Additional ESLint's rules for Node.js","engines":{"node":">=6"},"main":"lib/index.js","peerDependencies":{"eslint":">=4.19.1"},"dependencies":{"eslint-plugin-es":"^1.3.1","eslint-utils":"^1.3.1","ignore":"^5.0.2","minimatch":"^3.0.4","resolve":"^1.8.1","semver":"^5.5.0"},"devDependencies":{"@mysticatea/eslint-plugin":"^7.0.0","codecov":"^3.0.4","eslint":"^5.8.0","fast-glob":"^2.2.2","mocha":"^5.2.0","nyc":"^12.0.2","opener":"^1.4.3","rimraf":"^2.6.1"},"scripts":{"build":"node scripts/update.js","clean":"rimraf .nyc_output coverage","codecov":"nyc report -r lcovonly && codecov","coverage":"nyc report -r lcov && opener ./coverage/lcov-report/index.html","lint":"eslint lib scripts tests/lib .eslintrc.js","test":"nyc npm run -s test:_mocha","test:_mocha":"_mocha tests/lib/**/*.js --reporter progress","preversion":"npm t && npm run -s build","version":"eslint lib/rules --fix && git add lib/rules","postversion":"git push && git push --tags","watch":"npm run test:_mocha -- --watch --growl"},"repository":{"type":"git","url":"git+https://github.com/mysticatea/eslint-plugin-node.git"},"keywords":["eslint","eslintplugin","eslint-plugin","node","nodejs","ecmascript","shebang","file","path","import","require"],"author":{"name":"Toru Nagashima"},"license":"MIT","bugs":{"url":"https://github.com/mysticatea/eslint-plugin-node/issues"},"homepage":"https://github.com/mysticatea/eslint-plugin-node#readme","gitHead":"b234dcc6a653f8b74fbf1f2773b71bcb06b7b255","_id":"eslint-plugin-node@8.0.1","_npmVersion":"6.5.0","_nodeVersion":"10.15.0","_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"dist":{"integrity":"sha512-ZjOjbjEi6jd82rIpFSgagv4CHWzG9xsQAVp1ZPlhRnnYxcTgENUVBvhYmkQ7GvT1QFijUSo69RaiOJKhMu6i8w==","shasum":"55ae3560022863d141fa7a11799532340a685964","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/eslint-plugin-node/-/eslint-plugin-node-8.0.1.tgz","fileCount":48,"unpackedSize":195690,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcL42kCRA9TVsSAnZWagAAMXoP/1gh3B6ZZ90EUGtAHVoK\nDMT+EObeIcoJ5D82fpxpz6f42K130V5TBzRJcLrSFiVytBnMiXCEJD/Xfdno\n6eS8n2ad3lzY1l2JOowkWWsEpFtmpAPqBWpyG46utEtrj0RzeYyaxUh5qcDX\nsguSttpwyJTN6sYlIrcN4OSQ+2cPfKL1j4lYnveFiDfthAB+34JKYCg0zpoK\nQbNI0c+Z+TK40BuAYQK7lnR3UEyeXvdSMX8n1oohqeCJCvhbYcxcmPaROn57\n5XMxhUwgxdI0vKFjJodNBKiiKWw28/Wa+AQmcTG/NIiuny2ZCe87OjRX5FBD\njJuV3qcVRE0n04ltNtIZDgSuoVqx67OjgNKgXrEcL5UoSTeWsorAulYwHQ9A\nTX71ac+BSTFHSoY5atWn7F+EaPmkuUlMuNEjWmu7QjXSoYsxWfBa4YeQCFqp\nUYQZuK0Va3NlvkY8U8Cd2d9IsOUdltmn2e54B+vOydhfXR3YGivqbeVsvkKq\n8lpBzVEN3xAaPmcYQSNeA9AdHGzwMTc362SQrxZnvBY/NVgo9Ftq8yvBj1bt\nWmrALVHEDl2yX9WBePdAWmcFWO/sSYlayUr6RTwyhBL1Rwkaj3QdNZoDgt3Z\n1jz+Gsbc+F2+T7rQ/LQ91JDkhiGZkbs3arbyFQgQtdOxy0N9dHr5i/AUcIBm\nxHjo\r\n=aOrg\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDCJHlWjXYJaWhR+MrsdrNGv545EVXL82aJV/N9he95RAiAkvudWGtGU9yAqI5hFK6CPzJ/BfdoB058Pw6UwlwpZAw=="}]},"maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/eslint-plugin-node_8.0.1_1546620324063_0.2333374040553755"},"_hasShrinkwrap":false},"9.0.0":{"name":"eslint-plugin-node","version":"9.0.0","description":"Additional ESLint's rules for Node.js","engines":{"node":">=8.10.0"},"main":"lib/index.js","peerDependencies":{"eslint":">=5.16.0"},"dependencies":{"eslint-plugin-es":"^1.4.0","eslint-utils":"^1.3.1","ignore":"^5.1.1","minimatch":"^3.0.4","resolve":"^1.10.1","semver":"^6.0.0"},"devDependencies":{"@mysticatea/eslint-plugin":"^10.0.3","codecov":"^3.3.0","eslint":"^5.16.0","eslint-plugin-node":"file:.","fast-glob":"^2.2.6","mocha":"^6.1.4","nyc":"^14.0.0","opener":"^1.5.1","rimraf":"^2.6.3"},"scripts":{"build":"node scripts/update.js","clean":"rimraf .nyc_output coverage","codecov":"codecov","coverage":"opener ./coverage/lcov-report/index.html","lint":"eslint lib scripts tests/lib .eslintrc.js","test":"nyc npm run -s test:_mocha","test:_mocha":"_mocha \"tests/lib/**/*.js\" --reporter progress","preversion":"npm t && npm run -s build","version":"eslint lib/rules --fix && git add lib/rules","postversion":"git push && git push --tags","watch":"npm run test:_mocha -- --watch --growl"},"repository":{"type":"git","url":"git+https://github.com/mysticatea/eslint-plugin-node.git"},"keywords":["eslint","eslintplugin","eslint-plugin","node","nodejs","ecmascript","shebang","file","path","import","require"],"author":{"name":"Toru Nagashima"},"license":"MIT","bugs":{"url":"https://github.com/mysticatea/eslint-plugin-node/issues"},"homepage":"https://github.com/mysticatea/eslint-plugin-node#readme","gitHead":"a84a00975bb88215a1e75482e31217d721023c3e","_id":"eslint-plugin-node@9.0.0","_nodeVersion":"12.1.0","_npmVersion":"6.9.0","dist":{"integrity":"sha512-46VIO0apTu0b5Hh+lFsTGeRBG+3XksfVR3CrSrP+Bk+bYVuSQ3JxlCW3RLiJYtC0HxKbn4HFqepj+DT8HRUGGQ==","shasum":"a35f617b3f948622e992e901efbc3c9dcb34f42a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/eslint-plugin-node/-/eslint-plugin-node-9.0.0.tgz","fileCount":54,"unpackedSize":210756,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcy/UrCRA9TVsSAnZWagAAmIcP/jIiXgKbAqu72PuBTXVS\nwSoFfkBf+mXEL3/LtsjU3k366/sIMa292Xy3Kimvw+HR2YMYklIuM4G1uPrL\nnkNOdzTC+NxBDDjouLVPTToyor5MGnU0lBlMyrI4RC4SMve8OM7U15BPv31k\nv8RjtfBqlBarZPJKuDu4mN+pg6GbQJ7XfKL/N1aURNRkWkbAPagUPGS5PmDY\ndwiokiMvoCdXa+RADOMQD6RxjukBadaYShqE+HsXzGHgHnsAwTrIo8JS+Fxl\nG5b+M6IOqa+iucvHLF/jRMUW/a8fbOiRIxK5mjzTdZIbhUic+QGCLYBwWP0S\nTX5ioTGbNGqY2G+G450Ar2K9vBfh9L0zOBEzmkCbGvxxNheQ8NdPQO6JdF36\nXpmo0Yl/c0Xjd07aGc8DnyidvBFVaFwxH8vs4+/3ezSe96fm2SE4udBXr+b7\n/qzeDTrJQ/+cxVrSCX5LsueGLAkXfPsrA4Xw9fvI1X5ZlAJ+wT+Ml+kdO7tw\nyHGHcxKVQRZEUs75rFp6uBIKkTZFGReS3B3qSuoHrTPREDg+zN7+Mr+lPiTo\nrQkzuqhor1DxpwT0D7BiKOjmTsMR2POXg0O9cwB/I1Vl7FaocNG05L468iRT\nKuAGxOcWMkZIkb9/6LMoLkKZO7ni47rRDshbPoAR+50AGCeT1+C0RboymI1n\n9oXQ\r\n=NbHa\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC2cIJT7bkwvBBkTleLRuwI2KYu5hBL8OGmv/dxxeFc6QIgDWtY1ZHmzjBGXR7+m+QfaU3g972rbWkXTHZhv87Gn6Y="}]},"maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/eslint-plugin-node_9.0.0_1556870443092_0.9843889549789908"},"_hasShrinkwrap":false},"9.0.1":{"name":"eslint-plugin-node","version":"9.0.1","description":"Additional ESLint's rules for Node.js","engines":{"node":">=8.10.0"},"main":"lib/index.js","peerDependencies":{"eslint":">=5.16.0"},"dependencies":{"eslint-plugin-es":"^1.4.0","eslint-utils":"^1.3.1","ignore":"^5.1.1","minimatch":"^3.0.4","resolve":"^1.10.1","semver":"^6.0.0"},"devDependencies":{"@mysticatea/eslint-plugin":"^10.0.3","codecov":"^3.3.0","eslint":"^5.16.0","eslint-plugin-node":"file:.","fast-glob":"^2.2.6","mocha":"^6.1.4","nyc":"^14.0.0","opener":"^1.5.1","punycode":"^2.1.1","rimraf":"^2.6.3"},"scripts":{"build":"node scripts/update.js","clean":"rimraf .nyc_output coverage","codecov":"codecov","coverage":"opener ./coverage/lcov-report/index.html","lint":"eslint lib scripts tests/lib .eslintrc.js","test":"nyc npm run -s test:_mocha","test:_mocha":"_mocha \"tests/lib/**/*.js\" --reporter progress","preversion":"npm t && npm run -s build","version":"eslint lib/rules --fix && git add lib/rules","postversion":"git push && git push --tags","watch":"npm run test:_mocha -- --watch --growl"},"repository":{"type":"git","url":"git+https://github.com/mysticatea/eslint-plugin-node.git"},"keywords":["eslint","eslintplugin","eslint-plugin","node","nodejs","ecmascript","shebang","file","path","import","require"],"author":{"name":"Toru Nagashima"},"license":"MIT","bugs":{"url":"https://github.com/mysticatea/eslint-plugin-node/issues"},"homepage":"https://github.com/mysticatea/eslint-plugin-node#readme","gitHead":"bc02c52f8199d7c55e69d54628f8be397d4986f4","_id":"eslint-plugin-node@9.0.1","_nodeVersion":"12.1.0","_npmVersion":"6.9.0","dist":{"integrity":"sha512-fljT5Uyy3lkJzuqhxrYanLSsvaILs9I7CmQ31atTtZ0DoIzRbbvInBh4cQ1CrthFHInHYBQxfPmPt6KLHXNXdw==","shasum":"93e44626fa62bcb6efea528cee9687663dc03b62","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/eslint-plugin-node/-/eslint-plugin-node-9.0.1.tgz","fileCount":54,"unpackedSize":211290,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJczOnoCRA9TVsSAnZWagAAz2oP+wZP9qjzdNuW9H9YW0Qs\nDv4gainM8ewmhoo+zkHlTtbCEa2oTVLRhQ5bHaZD8N4eZDsMi6OSCiTsfB0d\n529eEf/ybH+N6bIq1yVSX8Vb/h7o6b3OdWcn4zC0Uz5+V7CzoUQXuqbq9Wx4\n5l9wIBZ42PYA/2lWbCiMymou/zImQvdzeeo6RWtlr09gfvtjKD+pJtw3ap56\niXYHGkyIOz3ODKiqGJ0Z7P8B5/m+tHR8VtcZSnBJh0ngBEZupr0oBWoql+ov\nX0t3t0x9CCDHVtwL82urY2Kl8Ztvp5eo4VLeAsvLZp4B0lYwQ1oNMJHo0eNm\nd8nIRfcTFsPJKpgSYVo0+tJuiChiQufHEa0xdw9P6J780srGzDprA8FmOkHp\no2BVOEo1NpufjmN5Mo9F74X9aozksgM5o4BYHMlRiEgpI9WCCTcgKWGOLHzh\ntwwyR25nrOz9JecO63ECE4wSvv1EDT6uRHWXQxLG/QfFndSJoc2FAm5qFu/W\nCgtmoVy4pAfiFSY1QEdiSaztb0LWPNcajBqxH0COCGDh/nVZq/oxZ4MHZs4n\nmfccGdo/eWSXAhzpf55xUx8xnC8NhOVxP+pOgllvnEC38cTDcS1GhYxFSAB+\npOSrAMnY1OtnuMwhzWYRjKP/0tPIXf69U2SdZArnfiXWEVC5UrtMJ+xIEiNg\nnK2r\r\n=x2up\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCD0ixK/pkzhusQZ4rWHEZkyEUNOcKeTWCXF28tn929QQIhAKhfMBw5ZrOCgUcU3ppq+SwBRFiqszXmPQxX6xOLWuo3"}]},"maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/eslint-plugin-node_9.0.1_1556933094939_0.43140876091329305"},"_hasShrinkwrap":false},"9.1.0":{"name":"eslint-plugin-node","version":"9.1.0","description":"Additional ESLint's rules for Node.js","engines":{"node":">=8.10.0"},"main":"lib/index.js","peerDependencies":{"eslint":">=5.16.0"},"dependencies":{"eslint-plugin-es":"^1.4.0","eslint-utils":"^1.3.1","ignore":"^5.1.1","minimatch":"^3.0.4","resolve":"^1.10.1","semver":"^6.1.0"},"devDependencies":{"@mysticatea/eslint-plugin":"^10.0.3","codecov":"^3.3.0","eslint":"^5.16.0","eslint-plugin-node":"file:.","fast-glob":"^2.2.6","mocha":"^6.1.4","nyc":"^14.0.0","opener":"^1.5.1","punycode":"^2.1.1","rimraf":"^2.6.3"},"scripts":{"build":"node scripts/update.js","clean":"rimraf .nyc_output coverage","codecov":"codecov","coverage":"opener ./coverage/lcov-report/index.html","lint":"eslint lib scripts tests/lib .eslintrc.js","test":"nyc npm run -s test:_mocha","test:_mocha":"_mocha \"tests/lib/**/*.js\" --reporter progress","preversion":"npm t && npm run -s build","version":"eslint lib/rules --fix && git add lib/rules","postversion":"git push && git push --tags","watch":"npm run test:_mocha -- --watch --growl"},"repository":{"type":"git","url":"git+https://github.com/mysticatea/eslint-plugin-node.git"},"keywords":["eslint","eslintplugin","eslint-plugin","node","nodejs","ecmascript","shebang","file","path","import","require"],"author":{"name":"Toru Nagashima"},"license":"MIT","bugs":{"url":"https://github.com/mysticatea/eslint-plugin-node/issues"},"homepage":"https://github.com/mysticatea/eslint-plugin-node#readme","gitHead":"7ce77f9393151dbbd11b70a360cc67458faceb8b","_id":"eslint-plugin-node@9.1.0","_nodeVersion":"12.2.0","_npmVersion":"6.9.0","dist":{"integrity":"sha512-ZwQYGm6EoV2cfLpE1wxJWsfnKUIXfM/KM09/TlorkukgCAwmkgajEJnPCmyzoFPQQkmvo5DrW/nyKutNIw36Mw==","shasum":"f2fd88509a31ec69db6e9606d76dabc5adc1b91a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/eslint-plugin-node/-/eslint-plugin-node-9.1.0.tgz","fileCount":54,"unpackedSize":217871,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc5nLwCRA9TVsSAnZWagAALpQQAJfseH/HVLXtR6u/iLvT\nLugDmYulz6mLha9q0JUjSxyCbQngQK648zb0F6Gza9UfV8s3sW6QW8Dl2gJ8\nP3qTh5y+gVJifGsySTyk4LHFuAG+5fFGfcWoLO8er0iMEbJRybsEkO/NyaKY\n0Qx9y2VwtF9R0M2r1iTT4DWJ65OchQ6Mc+ArX0xRlz+/EuInawsPGXv7KBvr\nHyMCVUdL9TQuRCC7cmLxRYFMmUdTwgIjlimPiZFNkf1r3IzPcQnkNOL8tP8F\nGgEM7ac/HcUTOSXLIpGCuYUD0ftPG5hsuK90cBvXnxln1lkMOOQ48g7/4mb2\nC5CnfvnKlF4ZC5T88bPd0RRUAQxGbWdZDc4BLEN992i0Ki+zNlCCdmIQkRyl\nzrjcOsJdhpj0b7PhahBx6X8co2vDJGyAqHsNgGjIW1xADRU2EJ//GsoQL4fL\nAFhTnpLx53MQZ4gL/JTahqBcETeyxEUm9BAMHau/rHjJLMNARKIicJh0XhzE\nHkd8/KyEowe2oa4N9rbydmsctYaPeerO7llrYV3uNXi5tmBcthH/xVX7Ox7F\nkh+WYpb4EfrXbM7eDuIOmL++9sjs09+KepmjejmZzNY/K0disVPQVMsT0It2\n8MjoXb480hFS/Pam/G+dL1ub7sduuA5kONFiiSKU+Mf4card1qYrNPbL6J68\nyxzL\r\n=ISZO\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIF6uxsMJZU1S4hHFoypOYylHDunj6+VPdcFbU02WN3frAiEA/zVJJBPVNRTca6B5ghfINVCQzqrT8pHm4recjNfvZLQ="}]},"maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/eslint-plugin-node_9.1.0_1558606575352_0.10565158689813314"},"_hasShrinkwrap":false},"9.2.0":{"name":"eslint-plugin-node","version":"9.2.0","description":"Additional ESLint's rules for Node.js","engines":{"node":">=8.10.0"},"main":"lib/index.js","peerDependencies":{"eslint":">=5.16.0"},"dependencies":{"eslint-plugin-es":"^1.4.1","eslint-utils":"^1.4.2","ignore":"^5.1.1","minimatch":"^3.0.4","resolve":"^1.10.1","semver":"^6.1.0"},"devDependencies":{"@mysticatea/eslint-plugin":"^10.0.3","codecov":"^3.3.0","eslint":"^5.16.0","eslint-plugin-node":"file:.","fast-glob":"^2.2.6","globals":"^11.12.0","mocha":"^6.1.4","nyc":"^14.0.0","opener":"^1.5.1","punycode":"^2.1.1","rimraf":"^2.6.3"},"scripts":{"build":"node scripts/update.js","clean":"rimraf .nyc_output coverage","codecov":"nyc report --reporter text-lcov | codecov --pipe --disable=gcov","coverage":"opener ./coverage/lcov-report/index.html","lint":"eslint lib scripts tests/lib .eslintrc.js","pretest":"npm run -s lint","test":"nyc npm run -s test:_mocha","test:ci":"nyc npm run -s test:_mocha","test:_mocha":"_mocha \"tests/lib/**/*.js\" --reporter progress","preversion":"npm t && npm run -s build","version":"eslint lib/rules --fix && git add lib/rules","postversion":"git push && git push --tags","watch":"npm run test:_mocha -- --watch --growl"},"repository":{"type":"git","url":"git+https://github.com/mysticatea/eslint-plugin-node.git"},"keywords":["eslint","eslintplugin","eslint-plugin","node","nodejs","ecmascript","shebang","file","path","import","require"],"author":{"name":"Toru Nagashima"},"license":"MIT","bugs":{"url":"https://github.com/mysticatea/eslint-plugin-node/issues"},"homepage":"https://github.com/mysticatea/eslint-plugin-node#readme","gitHead":"9fbdaec1147498081428f20ceeac90ad44629856","_id":"eslint-plugin-node@9.2.0","_nodeVersion":"12.6.0","_npmVersion":"6.11.2","dist":{"integrity":"sha512-2abNmzAH/JpxI4gEOwd6K8wZIodK3BmHbTxz4s79OIYwwIt2gkpEXlAouJXu4H1c9ySTnRso0tsuthSOZbUMlA==","shasum":"b1911f111002d366c5954a6d96d3cd5bf2a3036a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/eslint-plugin-node/-/eslint-plugin-node-9.2.0.tgz","fileCount":55,"unpackedSize":220954,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdZ6QbCRA9TVsSAnZWagAA//YP/0o7zgBy+5YZC2RXPTgm\nCF+BqVX0Zmb4TIB1VXUdVHkQJalS+t6Ym2QspuLt1EChTH0LhWjwVD0hfvOl\nPO5f/VFziPyuyoJOo9qLew0i6wdDi18tV6ESmXnqhzFsUgO/qbEHBO9IlIuK\nWQCkQjqVJINKt4ohcMSVtUjsJy4zUbr7+O0aNBU2b/UCPNdEJmWrLuVXkbLx\nbplp4xf9mgyUQFDQILoQTbY/rY7LnYGvY0RtFq0O3BIzdS201GO3ZxZBS6Of\n06QpmpSmkd0NLh2iLpah8fmv5u88ur8yHZL1QFQk8aJ/pa8bTswCPOqSlntb\niUv8aXaZtYB1thtO+rsfUVAPOT05LQ17mDvTLtRXHH1usRVziac4rkdrV0oQ\nH6hGrVkZaxcuNLk9jWLtpk4RI4MXDISK72u6Yv6vezrAQK3Y9B0ETgwIGxYh\nisLRsmT5yUGRu1z/gbC2NaMCBuOOtqpQ4C0kG+Cq50T1Gbebt/A1RqYMB9Qn\nzfqrgSvQnGBBOGcIfwpfqd++/9Cwm6z/7fqKSHWS+uUguhVsYbeQ0xGiYsQF\nFC7qSLJuTABFNvOO0s4FnnrTB+9mA61khEOjQpJfocAubLgNp6+koMB7JJxo\nJgDi57BSWfN9Hmh4Z4/P3tGIwNeiGBuErWcDMc3UhAr2rBGdqGS/OzyC7Vre\nOnxi\r\n=p/s7\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIECd8lQbF47nXgn6cQ4WAZ+x7wyjhQiCNxKM2t0rTVvrAiEA14nYev0pBMVz7QegpLCsYs62+TKRmSOTSEkAQtO9u0A="}]},"maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"_npmUser":{"name":"anonymous","email":"public@mysticatea.dev"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/eslint-plugin-node_9.2.0_1567073306269_0.1899237707696595"},"_hasShrinkwrap":false},"10.0.0":{"name":"eslint-plugin-node","version":"10.0.0","description":"Additional ESLint's rules for Node.js","engines":{"node":">=8.10.0"},"main":"lib/index.js","peerDependencies":{"eslint":">=5.16.0"},"dependencies":{"eslint-plugin-es":"^2.0.0","eslint-utils":"^1.4.2","ignore":"^5.1.1","minimatch":"^3.0.4","resolve":"^1.10.1","semver":"^6.1.0"},"devDependencies":{"@mysticatea/eslint-plugin":"^10.0.3","codecov":"^3.3.0","eslint":"^6.3.0","eslint-plugin-node":"file:.","fast-glob":"^2.2.6","globals":"^11.12.0","mocha":"^6.1.4","nyc":"^14.0.0","opener":"^1.5.1","punycode":"^2.1.1","rimraf":"^2.6.3"},"scripts":{"build":"node scripts/update","clean":"rimraf .nyc_output coverage","codecov":"nyc report --reporter text-lcov | codecov --pipe --disable=gcov -t $CODECOV_TOKEN","coverage":"opener ./coverage/lcov-report/index.html","lint":"eslint lib scripts tests/lib .eslintrc.js","new":"node scripts/new-rule","pretest":"npm run -s lint","test":"nyc npm run -s test:_mocha","test:ci":"nyc npm run -s test:_mocha","test:_mocha":"_mocha \"tests/lib/**/*.js\" --reporter progress --timeout 4000","preversion":"npm t && npm run -s build","version":"eslint lib/rules --fix && git add lib/rules","postversion":"git push && git push --tags","watch":"npm run test:_mocha -- --watch --growl"},"repository":{"type":"git","url":"git+https://github.com/mysticatea/eslint-plugin-node.git"},"keywords":["eslint","eslintplugin","eslint-plugin","node","nodejs","ecmascript","shebang","file","path","import","require"],"author":{"name":"Toru Nagashima"},"license":"MIT","bugs":{"url":"https://github.com/mysticatea/eslint-plugin-node/issues"},"homepage":"https://github.com/mysticatea/eslint-plugin-node#readme","gitHead":"dc067a116ca14ae9c23b2f6aec63f416d2abf2c7","_id":"eslint-plugin-node@10.0.0","_nodeVersion":"12.10.0","_npmVersion":"6.11.2","dist":{"integrity":"sha512-1CSyM/QCjs6PXaT18+zuAXsjXGIGo5Rw630rSKwokSs2jrYURQc4R5JZpoanNCqwNmepg+0eZ9L7YiRUJb8jiQ==","shasum":"fd1adbc7a300cf7eb6ac55cf4b0b6fc6e577f5a6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/eslint-plugin-node/-/eslint-plugin-node-10.0.0.tgz","fileCount":57,"unpackedSize":226637,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdcHZRCRA9TVsSAnZWagAAPQwP/iaUYTA3VYrQyz2LJofZ\neuAyshUxMWf8VBKziZMOr29Q5AphwiHNIgJImq/e/f4RM07iHdjmNu3bugEo\nMgFxnxwuKQbsknPt+Dy2KgPIqUjI42gW+Z3j7E425VLD1uvLhKYl4WgUibA+\nGcON7Oc6Ogo4xpJpXYuauGMaQbGVE9htun37JChf4RHjAF9Tw1TXYJWi7Tvi\nQduYAC7iB5J57S/h5VRIOlCgfAYQjQ8poXGLKMgOnjJHWB0bsAFS4jA1Tazq\nYj9+sil3ctFhfy/hjcYxMBwsADt3BSz8c6mLUSeDzC3ka/ouZAKaAgSWJFvH\n5gio9xjpKuDFm9OTm9gXgRAU3/g2kh5B54xlxhq86BgqUxq89nWt/QdV8znA\nqb1CReZDTdxoBxV1hrOlKQBlWnCIDJpdByamrdwHYoRSrGJASRfvv/J1zVIr\n/1jzcx6w+6E64oVvXmPjL2FhQb0Hz8serv4I9UyGmat9FlyqF7J3WbuYdECv\n+3Bxo+vPmoJarsWSJwOaa73qMT9GEXuWXwQyx2yzjzs3Kgrq2Wx2is34aPEG\nqH5E9H8V4PHH4ZDfq4M0uKyp5iVoh/JwgSbCvafH25vlEfRaaHXJWl3Qq3fs\n4A7bsHmotTwyN+myGaX3HGHA8cDqZFP3xEVwDL6O/I00hp4vyHbv7oJipc5x\n8ICZ\r\n=t6rA\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDAna9naRVoeUUH9mfsEwn31+zfjAOHzABnNS3bSIX+5QIhAKerw6pKYswQQygRxBxXukxDlOULMqvV7PXjuW6bdJ8r"}]},"maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"_npmUser":{"name":"anonymous","email":"public@mysticatea.dev"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/eslint-plugin-node_10.0.0_1567651408947_0.31521265716162583"},"_hasShrinkwrap":false},"11.0.0":{"name":"eslint-plugin-node","version":"11.0.0","description":"Additional ESLint's rules for Node.js","engines":{"node":">=8.10.0"},"main":"lib/index.js","peerDependencies":{"eslint":">=5.16.0"},"dependencies":{"eslint-plugin-es":"^3.0.0","eslint-utils":"^2.0.0","ignore":"^5.1.1","minimatch":"^3.0.4","resolve":"^1.10.1","semver":"^6.1.0"},"devDependencies":{"@mysticatea/eslint-plugin":"^10.0.3","codecov":"^3.3.0","eslint":"^6.3.0","eslint-plugin-node":"file:.","fast-glob":"^2.2.6","globals":"^11.12.0","mocha":"^6.1.4","nyc":"^14.0.0","opener":"^1.5.1","punycode":"^2.1.1","rimraf":"^2.6.3"},"scripts":{"build":"node scripts/update","clean":"rimraf .nyc_output coverage","codecov":"nyc report --reporter text-lcov | codecov --pipe --disable=gcov -t $CODECOV_TOKEN","coverage":"opener ./coverage/lcov-report/index.html","lint":"eslint lib scripts tests/lib .eslintrc.js","new":"node scripts/new-rule","pretest":"npm run -s lint","test":"nyc npm run -s test:_mocha","test:ci":"nyc npm run -s test:_mocha","test:_mocha":"_mocha \"tests/lib/**/*.js\" --reporter progress --timeout 4000","preversion":"npm t && npm run -s build","version":"eslint lib/rules --fix && git add lib/rules","postversion":"git push && git push --tags","watch":"npm run test:_mocha -- --watch --growl"},"repository":{"type":"git","url":"git+https://github.com/mysticatea/eslint-plugin-node.git"},"keywords":["eslint","eslintplugin","eslint-plugin","node","nodejs","ecmascript","shebang","file","path","import","require"],"author":{"name":"Toru Nagashima"},"license":"MIT","bugs":{"url":"https://github.com/mysticatea/eslint-plugin-node/issues"},"homepage":"https://github.com/mysticatea/eslint-plugin-node#readme","gitHead":"b8f99452c0e1a808af7aa349d417dca0837e3a67","_id":"eslint-plugin-node@11.0.0","_nodeVersion":"13.5.0","_npmVersion":"6.13.1","dist":{"integrity":"sha512-chUs/NVID+sknFiJzxoN9lM7uKSOEta8GC8365hw1nDfwIPIjjpRSwwPvQanWv8dt/pDe9EV4anmVSwdiSndNg==","shasum":"365944bb0804c5d1d501182a9bc41a0ffefed726","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/eslint-plugin-node/-/eslint-plugin-node-11.0.0.tgz","fileCount":57,"unpackedSize":229656,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeBJ1zCRA9TVsSAnZWagAAyREP/iqfzGxKbvdZSHtxLxZ+\n391cdZoQugV8pE2RJNQlVkB4fj9VnCkczyTiGCZs4Ogs8RHHYV2w3xbH+f0L\nkIAL/LEBuFbfX9QgsXf2JL1kCiPpp31v+P9f6vHyb05cO75UMTJC8GCNNhHB\n+mX2WHKkMjOr6fLD3CDR1ZFpd4IaarOqwJ1sHHkBMAANeuGizDqzsXu4oIGc\nsniis1Zpk4ckbbM86SSXMtkmKI0wCfxSeQPEkLSaGzYPIFfPoZRUgKX9/Ac1\nLoaC03VbGcXS7Br5KcIaleJ41fJccRhLvAk1syG22cFU1j7KD74+YNiwC9s/\nuzNUQGpgj4aign3I3cIeKU06POE8CTTEQEQsjmd+0n4ioO3oA1w0M2F/Lqk3\n8U5NRwy3fBXrBTQbcSvRfWETsO8RUu0jDApBECDQHOcTBBeyZi2I0YWg0VAB\nrcjaoDgHCY+fXIUQaFv8TC/+Xo85m74vFNWHncZZaBri8Y2w5uQgZzF5CCRw\nO41zyo3PMDQ/5sFNsM71CnjAGFhw5Rf4ryw0WJuVhhGFmvNfmawxw886Jj28\n5E5Lqtlgkao+k2kJZrlllMFaGsNZ4CG8u486zXk9lfsz7xeyIBxpJabC5AwG\nPbXXNeLMoVe5I2u87Yzn9wNsDMm70nwRPB6VIsTJYnCG6caiz7CinbQ+x6UD\n3Cvj\r\n=Tikc\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAzl29P6e0xiKG6CyozfLO3eHKINU/KIy1XyVDcq0A4sAiEAr1e3H9cUAkymHFwD5qnresDhRQrgZG1HNeQh2c4LQt8="}]},"maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"_npmUser":{"name":"anonymous","email":"public@mysticatea.dev"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/eslint-plugin-node_11.0.0_1577360755261_0.7550309840487053"},"_hasShrinkwrap":false},"11.1.0":{"name":"eslint-plugin-node","version":"11.1.0","description":"Additional ESLint's rules for Node.js","engines":{"node":">=8.10.0"},"main":"lib/index.js","peerDependencies":{"eslint":">=5.16.0"},"dependencies":{"eslint-plugin-es":"^3.0.0","eslint-utils":"^2.0.0","ignore":"^5.1.1","minimatch":"^3.0.4","resolve":"^1.10.1","semver":"^6.1.0"},"devDependencies":{"@mysticatea/eslint-plugin":"^10.0.3","codecov":"^3.3.0","eslint":"^6.3.0","eslint-plugin-node":"file:.","fast-glob":"^2.2.6","globals":"^11.12.0","mocha":"^6.1.4","nyc":"^14.0.0","opener":"^1.5.1","punycode":"^2.1.1","rimraf":"^2.6.3"},"scripts":{"build":"node scripts/update","clean":"rimraf .nyc_output coverage","codecov":"nyc report --reporter text-lcov | codecov --pipe --disable=gcov -t $CODECOV_TOKEN","coverage":"opener ./coverage/lcov-report/index.html","lint":"eslint lib scripts tests/lib .eslintrc.js","new":"node scripts/new-rule","pretest":"npm run -s lint","test":"nyc npm run -s test:_mocha","test:ci":"nyc npm run -s test:_mocha","test:_mocha":"_mocha \"tests/lib/**/*.js\" --reporter progress --timeout 4000","preversion":"npm t && npm run -s build","version":"eslint lib/rules --fix && git add lib/rules","postversion":"git push && git push --tags","watch":"npm run test:_mocha -- --watch --growl"},"repository":{"type":"git","url":"git+https://github.com/mysticatea/eslint-plugin-node.git"},"keywords":["eslint","eslintplugin","eslint-plugin","node","nodejs","ecmascript","shebang","file","path","import","require"],"author":{"name":"Toru Nagashima"},"license":"MIT","bugs":{"url":"https://github.com/mysticatea/eslint-plugin-node/issues"},"homepage":"https://github.com/mysticatea/eslint-plugin-node#readme","gitHead":"4a348e7d24e0d806d7873f293c91a922d0316d14","_id":"eslint-plugin-node@11.1.0","_nodeVersion":"12.12.0","_npmVersion":"6.13.1","dist":{"integrity":"sha512-oUwtPJ1W0SKD0Tr+wqu92c5xuCeQqB3hSCHasn/ZgjFdA9iDGNkNf2Zi9ztY7X+hNuMib23LNGRm6+uN+KLE3g==","shasum":"c95544416ee4ada26740a30474eefc5402dc671d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/eslint-plugin-node/-/eslint-plugin-node-11.1.0.tgz","fileCount":69,"unpackedSize":268687,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJefzknCRA9TVsSAnZWagAAsooP/RkGf0J0QbRKV2+3cft9\nx5HEaqJQ7HgTeZKF10suOXZVdAFFVsL8OJtl9yrRPZrQya31StyCdrqj+4L2\n057vE24xfV+gkUXoLRfcTPNdQaIhf/KBJxxQHDWukIpwPIACP+E5s0sdssqc\nJXxiybo5Awyz/RwdVafHQeV6vW0ui3dPiNsxwywxneLnV7aA4dtsoch5Y0xs\nwx4tC7VAuzYfHYa1+jTV9+Xiz+ovBW2tqz6l+/KVrxPzt82aQjeBuVyI2la7\nQaeCdoAZpcJz0YZluTHPBZLR502n+w1Gxy9rjP88SF88PTmaD5AdxlBluPIV\nwtYBzaRVVhpHRmhmnCvs+iNseAqIHP0paAONlx/3RML/fo19at4Mw9TivPWZ\nEqMX0l/CjBSXzLJLfoYE8iw8GSiNwlzoPWEE5bqFwJjHO/hS+jf9affpMqof\nKzDderb3k9jKcFSInHyKCncnIqKMUjABuD2/2C7Zz0CspT93m/3XbeP4TC9c\nQXSvHyaZkMXq9ATspssMQHhuo5t3Z/fgr6A3m4TUpGRTFhpcq3JkEQOCGvXQ\ndOf+HYXtrmC2yK1oTEBhr3hogHWQwCKQCmRjiytrNnpSK7wFpz0azAdmdkh2\nIzqeOz3DsGI5r9rX2tKXNbP+vyyclgMueopls36WOCDyY6eMlWSw/VJpc/A7\nXp38\r\n=W5nx\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICH2ECoGaJeh3k7I4A3K9P2hX9AVF4IokZ9jldb3Sq0rAiEAzzQPTBsau2JPrV3TWugzhnP02ElmUjJSPaD915Rdb1E="}]},"maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"_npmUser":{"name":"anonymous","email":"public@mysticatea.dev"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/eslint-plugin-node_11.1.0_1585396006669_0.052875316666102457"},"_hasShrinkwrap":false}},"name":"eslint-plugin-node","time":{"modified":"2023-04-04T20:13:19.712Z","created":"2015-11-23T07:15:35.856Z","0.0.0":"2015-11-23T07:15:35.856Z","0.1.0":"2015-11-27T13:22:54.525Z","0.2.0":"2015-11-28T13:49:18.225Z","0.2.1":"2015-12-15T08:27:40.297Z","0.3.0":"2015-12-28T11:22:15.813Z","0.4.0":"2016-01-09T19:06:31.394Z","0.4.1":"2016-01-09T21:37:46.453Z","0.5.0":"2016-01-16T14:00:29.899Z","0.5.1":"2016-01-17T18:00:04.787Z","0.6.0":"2016-01-24T02:46:07.742Z","0.6.1":"2016-01-30T22:07:47.838Z","0.6.2":"2016-02-01T06:03:33.438Z","1.0.0":"2016-02-13T08:55:03.680Z","1.1.0":"2016-04-27T12:52:19.540Z","1.2.0":"2016-05-05T16:20:24.344Z","1.2.1":"2016-05-05T16:33:34.929Z","1.2.2":"2016-05-13T13:04:36.305Z","1.3.0":"2016-05-14T11:20:55.865Z","1.4.0":"2016-05-21T23:02:54.285Z","1.5.0":"2016-06-17T04:16:45.714Z","1.5.1":"2016-06-23T10:13:28.668Z","1.5.2":"2016-07-02T12:37:55.633Z","2.0.0":"2016-07-03T14:56:05.265Z","2.1.0":"2016-09-25T08:38:14.992Z","2.1.1":"2016-09-26T02:02:59.468Z","2.1.2":"2016-09-29T10:12:21.477Z","2.1.3":"2016-10-15T10:13:07.099Z","3.0.0":"2016-10-31T11:41:45.620Z","3.0.1":"2016-11-01T09:10:08.849Z","2.1.4":"2016-11-01T09:33:16.994Z","3.0.2":"2016-11-01T09:48:40.506Z","3.0.3":"2016-11-01T11:20:13.706Z","3.0.4":"2016-11-18T14:20:36.191Z","3.0.5":"2016-12-01T02:43:17.972Z","4.0.0":"2017-02-05T20:12:52.500Z","4.0.1":"2017-02-09T08:51:03.396Z","4.1.0":"2017-02-23T09:29:56.229Z","4.2.0":"2017-03-06T20:30:45.758Z","4.2.1":"2017-03-14T09:31:24.421Z","4.2.2":"2017-03-28T10:59:56.041Z","5.0.0":"2017-06-02T03:26:54.586Z","5.1.0":"2017-06-25T20:45:16.311Z","5.1.1":"2017-07-19T00:43:49.219Z","4.2.3":"2017-07-19T01:33:08.928Z","5.2.0":"2017-09-28T12:34:31.705Z","5.2.1":"2017-10-23T07:13:38.091Z","6.0.0":"2018-02-05T09:09:25.799Z","6.0.1":"2018-02-23T09:37:06.807Z","7.0.0-beta.0":"2018-07-16T12:18:50.649Z","7.0.0":"2018-07-17T09:04:48.712Z","7.0.1":"2018-07-17T12:26:23.756Z","8.0.0":"2018-10-27T22:35:45.840Z","8.0.1":"2019-01-04T16:45:24.213Z","9.0.0":"2019-05-03T08:00:43.283Z","9.0.1":"2019-05-04T01:24:55.130Z","9.1.0":"2019-05-23T10:16:15.518Z","9.2.0":"2019-08-29T10:08:26.439Z","10.0.0":"2019-09-05T02:43:29.086Z","11.0.0":"2019-12-26T11:45:55.388Z","11.1.0":"2020-03-28T11:46:46.795Z"},"readmeFilename":"README.md","homepage":"https://github.com/mysticatea/eslint-plugin-node#readme"}