{"maintainers":[{"name":"anonymous","email":"public@mysticatea.dev"},{"name":"anonymous","email":"otameshiyo23@gmail.com"}],"keywords":[],"dist-tags":{"experimental":"2.0.1-beta.3","next":"9.0.0","latest":"10.4.0"},"author":{"name":"Toru Nagashima"},"description":"The ESLint custom parser for `.vue` files.","readme":"# vue-eslint-parser\n\n[![npm version](https://img.shields.io/npm/v/vue-eslint-parser.svg)](https://www.npmjs.com/package/vue-eslint-parser)\n[![Downloads/month](https://img.shields.io/npm/dm/vue-eslint-parser.svg)](http://www.npmtrends.com/vue-eslint-parser)\n[![Build Status](https://github.com/vuejs/vue-eslint-parser/workflows/CI/badge.svg)](https://github.com/vuejs/vue-eslint-parser/actions)\n\nThe ESLint custom parser for `.vue` files.\n\n## ⤴️ Motivation\n\nThis parser allows us to lint the `<template>` of `.vue` files. We can make mistakes easily on `<template>` if we use complex directives and expressions in the template. This parser and the rules of [eslint-plugin-vue](https://github.com/vuejs/eslint-plugin-vue) would catch some of the mistakes.\n\n## 💿 Installation\n\n```bash\nnpm install --save-dev eslint vue-eslint-parser\n```\n\n## 📖 Usage\n\nWrite `parser` option into your `eslint.config.*` file.\n\n```js\nimport vueParser from \"vue-eslint-parser\"\nexport default [\n    js.configs.recommended,\n    {\n        files: [\"*.vue\", \"**/*.vue\"],\n        languageOptions: {\n            parser: vueParser,\n        },\n    }\n]\n```\n\n## 🔧 Options\n\n`parserOptions` has the same properties as what [espree](https://github.com/eslint/espree#usage), the default parser of ESLint, is supporting.\nFor example:\n\n```js\nimport vueParser from \"vue-eslint-parser\"\nexport default [\n    {\n        files: [\"*.vue\", \"**/*.vue\"],\n        languageOptions: {\n            parser: vueParser,\n            sourceType: \"module\",\n            ecmaVersion: \"latest\",\n            parserOptions: {\n                ecmaFeatures: {\n                    globalReturn: false,\n                    impliedStrict: false,\n                    jsx: false\n                }\n            }\n        },\n    }\n]\n```\n\n### parserOptions.parser\n\nYou can use `parserOptions.parser` property to specify a custom parser to parse `<script>` tags.\nOther properties than parser would be given to the specified parser.\nFor example:\n\n```js\nimport vueParser from \"vue-eslint-parser\"\nimport babelParser from \"@babel/eslint-parser\"\nexport default [\n    {\n        files: [\"*.vue\", \"**/*.vue\"],\n        languageOptions: {\n            parser: vueParser,\n            parserOptions: {\n                parser: babelParser,\n            }\n        },\n    }\n]\n```\n\n```js\nimport vueParser from \"vue-eslint-parser\"\nimport tsParser from \"@typescript-eslint/parser\"\nexport default [\n    {\n        files: [\"*.vue\", \"**/*.vue\"],\n        languageOptions: {\n            parser: vueParser,\n            parserOptions: {\n                parser: tsParser,\n            }\n        },\n    }\n]\n```\n\nYou can also specify an object and change the parser separately for `<script lang=\"...\">`.\n\n```js\nimport vueParser from \"vue-eslint-parser\"\nimport tsParser from \"@typescript-eslint/parser\"\nexport default [\n    {\n        files: [\"*.vue\", \"**/*.vue\"],\n        languageOptions: {\n            parser: vueParser,\n            parserOptions: {\n                \"parser\": {\n                    // Script parser for `<script>`\n                    \"js\": \"espree\",\n\n                    // Script parser for `<script lang=\"ts\">`\n                    \"ts\": tsParser,\n\n                    // Script parser for vue directives (e.g. `v-if=` or `:attribute=`)\n                    // and vue interpolations (e.g. `{{variable}}`).\n                    // If not specified, the parser determined by `<script lang =\"...\">` is used.\n                    \"<template>\": \"espree\",\n                }\n            }\n        },\n    }\n]\n```\n\nIf the `parserOptions.parser` is `false`, the `vue-eslint-parser` skips parsing `<script>` tags completely.\nThis is useful for people who use the language ESLint community doesn't provide custom parser implementation.\n\n### parserOptions.vueFeatures\n\nYou can use `parserOptions.vueFeatures` property to specify how to parse related to Vue features.\nFor example:\n\n```js\nimport vueParser from \"vue-eslint-parser\"\nexport default [\n    {\n        files: [\"*.vue\", \"**/*.vue\"],\n        languageOptions: {\n            parser: vueParser,\n            parserOptions: {\n                vueFeatures: {\n                    filter: true,\n                    interpolationAsNonHTML: true,\n                    styleCSSVariableInjection: true,\n                    customMacros: []\n                }\n            }\n        },\n    }\n]\n```\n\n### parserOptions.vueFeatures.filter\n\nYou can use `parserOptions.vueFeatures.filter` property to specify whether to parse the Vue2 filter. If you specify `false`, the parser does not parse `|` as a filter.\nFor example:\n\n```json\n{\n    \"parserOptions\": {\n        \"vueFeatures\": {\n            \"filter\": false\n        }\n    }\n}\n```\n\nIf you specify `false`, it can be parsed in the same way as Vue 3.\nThe following template parses as a bitwise operation.\n\n```vue\n<template>\n  <div>{{ a | b }}</div>\n</template>\n```\n\nHowever, the following template that are valid in Vue 2 cannot be parsed.\n\n```vue\n<template>\n  <div>{{ a | valid:filter }}</div>\n</template>\n```\n\n### parserOptions.vueFeatures.interpolationAsNonHTML\n\nYou can use `parserOptions.vueFeatures.interpolationAsNonHTML` property to specify whether to parse the interpolation as HTML. If you specify `true`, the parser handles the interpolation as non-HTML (However, you can use HTML escaping in the interpolation). Default is `true`.\nFor example:\n\n```json\n{\n    \"parserOptions\": {\n        \"vueFeatures\": {\n            \"interpolationAsNonHTML\": true\n        }\n    }\n}\n```\n\nIf you specify `true`, it can be parsed in the same way as Vue 3.\nThe following template can be parsed well.\n\n```vue\n<template>\n  <div>{{a<b}}</div>\n</template>\n```\n\nBut, it cannot be parsed with Vue 2.\n\n### parserOptions.vueFeatures.styleCSSVariableInjection\n\nIf set to `true`, to parse expressions in `v-bind` CSS functions inside `<style>` tags. `v-bind()` is parsed into the `VExpressionContainer` AST node and held in the `VElement` of `<style>`. Default is `true`.\n\nSee also to [here](https://github.com/vuejs/rfcs/blob/master/active-rfcs/0043-sfc-style-variables.md).\n\n### parserOptions.vueFeatures.customMacros\n\nSpecifies an array of names of custom macros other than Vue standard macros.  \nFor example, if you have a custom macro `defineFoo()` and you want it processed by the parser, specify `[\"defineFoo\"]`.\n\nNote that this option only works in `<script setup>`.\n\n### parserOptions.templateTokenizer\n\n**This is an experimental feature. It may be changed or deleted without notice in the minor version.**\n\nYou can use `parserOptions.templateTokenizer` property to specify custom tokenizers to parse `<template lang=\"...\">` tags.\n\nFor example to enable parsing of pug templates:\n\n```jsonc\n{\n    \"parserOptions\": {\n        \"templateTokenizer\": {\n             // template tokenizer for `<template lang=\"pug\">`\n            \"pug\": \"vue-eslint-parser-template-tokenizer-pug\",\n        }\n    }\n}\n```\n\nThis option is only intended for plugin developers. **Be careful** when using this option directly, as it may change behaviour of rules you might have enabled.  \nIf you just want **pug** support, use [eslint-plugin-vue-pug](https://github.com/rashfael/eslint-plugin-vue-pug) instead, which uses this option internally.\n\nSee [implementing-custom-template-tokenizers.md](./docs/implementing-custom-template-tokenizers.md) for information on creating your own template tokenizer.\n\n## 🎇 Usage for custom rules / plugins\n\n- This parser provides `parserServices` to traverse `<template>`.\n    - `defineTemplateBodyVisitor(templateVisitor, scriptVisitor, options)` ... returns ESLint visitor to traverse `<template>`.\n    - `getTemplateBodyTokenStore()` ... returns ESLint `TokenStore` to get the tokens of `<template>`.\n    - `getDocumentFragment()` ... returns the root `VDocumentFragment`.\n    - `defineCustomBlocksVisitor(context, customParser, rule, scriptVisitor)` ... returns ESLint visitor that parses and traverses the contents of the custom block.\n    - `defineDocumentVisitor(documentVisitor, options)` ... returns ESLint visitor to traverses the document.\n- [ast.md](./docs/ast.md) is `<template>` AST specification.\n- [mustache-interpolation-spacing.js](https://github.com/vuejs/eslint-plugin-vue/blob/b434ff99d37f35570fa351681e43ba2cf5746db3/lib/rules/mustache-interpolation-spacing.js) is an example.\n- Check your version of ESLint as the location of `defineTemplateBodyVisitor` was moved from `context` to `context.sourceCode` after major version `9.x`\n\n### `defineTemplateBodyVisitor(templateBodyVisitor, scriptVisitor, options)`\n\n*Arguments*\n\n- `templateBodyVisitor` ... Event handlers for `<template>`.\n- `scriptVisitor` ... Event handlers for `<script>` or scripts. (optional)\n- `options` ... Options. (optional)\n  - `templateBodyTriggerSelector` ... Script AST node selector that triggers the templateBodyVisitor. Default is `\"Program:exit\"`. (optional)\n\n```ts\nimport { AST } from \"vue-eslint-parser\"\n\nexport function create(context) {\n    return context.sourceCode.parserServices.defineTemplateBodyVisitor(\n        // Event handlers for <template>.\n        {\n            VElement(node: AST.VElement): void {\n                //...\n            }\n        },\n        // Event handlers for <script> or scripts. (optional)\n        {\n            Program(node: AST.ESLintProgram): void {\n                //...\n            }\n        },\n        // Options. (optional)\n        {\n            templateBodyTriggerSelector: \"Program:exit\"\n        }\n    )\n}\n```\n\n## ⚠️ Known Limitations\n\nSome rules make warnings due to the outside of `<script>` tags.\nPlease disable those rules for `.vue` files as necessary.\n\n- [eol-last](http://eslint.org/docs/rules/eol-last)\n- [linebreak-style](http://eslint.org/docs/rules/linebreak-style)\n- [max-len](http://eslint.org/docs/rules/max-len)\n- [max-lines](http://eslint.org/docs/rules/max-lines)\n- [no-trailing-spaces](http://eslint.org/docs/rules/no-trailing-spaces)\n- [unicode-bom](http://eslint.org/docs/rules/unicode-bom)\n- Other rules which are using the source code text instead of AST might be confused as well.\n\n## 📰 Changelog\n\n- [GitHub Releases](https://github.com/vuejs/vue-eslint-parser/releases)\n\n## 🍻 Contributing\n\nWelcome contributing!\n\nPlease use GitHub's Issues/PRs.\n\nIf you want to write code, please execute `npm install` after you cloned this repository.\nThe `npm install` command installs dependencies.\n\n### Development Tools\n\n- `npm test` runs tests and measures coverage.\n- `npm run build` compiles TypeScript source code to `index.js`, `index.js.map`, and `index.d.ts` in `dist`.\n- `npm run coverage` shows the coverage result of `npm test` command with the default browser.\n- `npm run lint` runs ESLint.\n- `npm run update-fixtures` updates files in `test/fixtures/ast` directory based on `test/fixtures/ast/*/source.vue` files.\n- `npm run watch` runs `build`, `update-fixtures`, and tests with `--watch` option.\n","repository":{"type":"git","url":"git+https://github.com/vuejs/vue-eslint-parser.git"},"bugs":{"url":"https://github.com/vuejs/vue-eslint-parser/issues"},"license":"MIT","versions":{"0.1.0":{"name":"vue-eslint-parser","version":"0.1.0","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@0.1.0","maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"homepage":"https://github.com/mysticatea/vue-eslint-parser#readme","bugs":{"url":"https://github.com/mysticatea/vue-eslint-parser/issues"},"dist":{"shasum":"e1f23279f35f696c26eaff43b917c812e45c8e20","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-0.1.0.tgz","integrity":"sha512-IeX4X20hxsTElQsXjHz1wQ2H9oFX0IuaYFyhIfcrky5j4OlrRTOiGsRXf5fePLq+VaMYriLBKw+nlTRjPZ533g==","signatures":[{"sig":"MEYCIQC+b5BQY1C2bZuIVKHpaI3GFAxxaBBwazbnEjE89CXbCAIhAJutU12F8TUEVIqjUZpplsR2eAGhEYeEWmcHM6tYXNku","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":[],"_shasum":"e1f23279f35f696c26eaff43b917c812e45c8e20","engines":{"node":">=4"},"gitHead":"30834a3f0987b1c26cbd01d19258b6dcdcd35189","scripts":{"lint":"eslint index.js \"test/*.js\"","test":"nyc mocha \"test/*.js\" --compilers js:babel-register --reporter progress --timeout 10000","clean":"rimraf .nyc_output coverage","watch":"mocha \"test/*.js\" --compilers js:babel-register --growl --reporter progress --watch","codecov":"nyc report --reporter lcovonly && codecov","pretest":"npm run lint","coverage":"nyc report --reporter lcov && opener ./coverage/lcov-report/index.html","preversion":"npm test","postversion":"git push && git push --tags"},"_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"repository":{"url":"git+https://github.com/mysticatea/vue-eslint-parser.git","type":"git"},"_npmVersion":"3.8.9","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"6.9.1","dependencies":{"espree":">=3.3.2","parse5":"^3.0.0"},"devDependencies":{"nyc":"^10.0.0","mocha":"^3.2.0","eslint":"^3.12.2","opener":"^1.4.2","rimraf":"^2.5.4","codecov":"^1.0.1","fs-extra":"^1.0.0","@types/node":"^6.0.52","power-assert":"^1.4.2","babel-register":"^6.18.0","eslint-config-mysticatea":"^7.0.1","babel-preset-power-assert":"^1.0.0"},"peerDependencies":{"eslint":">=3.5.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser-0.1.0.tgz_1481774981852_0.3033078720327467","host":"packages-12-west.internal.npmjs.com"}},"0.1.1":{"name":"vue-eslint-parser","version":"0.1.1","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@0.1.1","maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"homepage":"https://github.com/mysticatea/vue-eslint-parser#readme","bugs":{"url":"https://github.com/mysticatea/vue-eslint-parser/issues"},"dist":{"shasum":"32a8bd5a19129946a737cdec0e7fefc2449ebe68","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-0.1.1.tgz","integrity":"sha512-R9N5wFFmeu6W8rcuBqWG9mk8sa4A6u+LkcuWW1h8NhUg+gY4mewSP8zRHaBT2rjXVK9VpRVAAtngwIKXrK3c/A==","signatures":[{"sig":"MEQCIG1xduG5zkIXry2jtYN+d1OPj2peXid2agYo69LrEAVsAiATuwnegt58hOyrQvrJz8sTEgCtqvEooDNYNPz+YqlFnw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":[],"_shasum":"32a8bd5a19129946a737cdec0e7fefc2449ebe68","engines":{"node":">=4"},"gitHead":"483e006d61d3e1ebad64cff6c0d9b8e41f34c909","scripts":{"lint":"eslint index.js \"test/*.js\"","test":"nyc mocha \"test/*.js\" --compilers js:babel-register --reporter progress --timeout 10000","clean":"rimraf .nyc_output coverage","watch":"mocha \"test/*.js\" --compilers js:babel-register --growl --reporter progress --watch","codecov":"nyc report --reporter lcovonly && codecov","pretest":"npm run lint","coverage":"nyc report --reporter lcov && opener ./coverage/lcov-report/index.html","preversion":"npm test","postversion":"git push && git push --tags"},"_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"repository":{"url":"git+https://github.com/mysticatea/vue-eslint-parser.git","type":"git"},"_npmVersion":"3.8.9","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"6.9.1","dependencies":{"espree":">=3.3.2","parse5":"^3.0.0"},"devDependencies":{"nyc":"^10.0.0","mocha":"^3.2.0","eslint":"^3.12.2","opener":"^1.4.2","rimraf":"^2.5.4","codecov":"^1.0.1","fs-extra":"^1.0.0","@types/node":"^6.0.52","power-assert":"^1.4.2","babel-register":"^6.18.0","eslint-config-mysticatea":"^7.0.1","babel-preset-power-assert":"^1.0.0"},"peerDependencies":{"eslint":">=3.5.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser-0.1.1.tgz_1481862083339_0.24762273440137506","host":"packages-18-east.internal.npmjs.com"}},"0.1.2":{"name":"vue-eslint-parser","version":"0.1.2","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@0.1.2","maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"homepage":"https://github.com/mysticatea/vue-eslint-parser#readme","bugs":{"url":"https://github.com/mysticatea/vue-eslint-parser/issues"},"dist":{"shasum":"d603f372fea43fcdd88f6f242b4bfc40b5c4726f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-0.1.2.tgz","integrity":"sha512-DLpxs5kjQb2xj91WyJGNzNg+jl3I10EUx/e6mLlOEECLWXO3jO/epFi3GT8HSptVqlrgd+G9ju5JPF4L30NhAQ==","signatures":[{"sig":"MEYCIQCwhwhZKfyoYdsL06FyXipnraUmhRqsVZ/xLOMtD7O9+QIhAP8MAWctun7S5ERg42J9hfQU2tokc2aGg/uISpjA/5S1","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":[],"_shasum":"d603f372fea43fcdd88f6f242b4bfc40b5c4726f","engines":{"node":">=4"},"gitHead":"33eb3e5f8205c9493d674185b3517fa9c2165313","scripts":{"lint":"eslint index.js \"test/*.js\"","test":"nyc mocha \"test/*.js\" --compilers js:babel-register --reporter progress --timeout 10000","clean":"rimraf .nyc_output coverage","watch":"mocha \"test/*.js\" --compilers js:babel-register --growl --reporter progress --watch","codecov":"nyc report --reporter lcovonly && codecov","pretest":"npm run lint","coverage":"nyc report --reporter lcov && opener ./coverage/lcov-report/index.html","preversion":"npm test","postversion":"git push && git push --tags"},"_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"repository":{"url":"git+https://github.com/mysticatea/vue-eslint-parser.git","type":"git"},"_npmVersion":"3.8.9","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"6.9.1","dependencies":{"espree":">=3.3.2","parse5":"^3.0.0"},"devDependencies":{"nyc":"^10.0.0","mocha":"^3.2.0","eslint":"^3.12.2","opener":"^1.4.2","rimraf":"^2.5.4","codecov":"^1.0.1","fs-extra":"^1.0.0","@types/node":"^6.0.52","power-assert":"^1.4.2","babel-register":"^6.18.0","eslint-config-mysticatea":"^7.0.1","babel-preset-power-assert":"^1.0.0"},"peerDependencies":{"eslint":">=3.5.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser-0.1.2.tgz_1481955050876_0.8764828494749963","host":"packages-12-west.internal.npmjs.com"}},"0.1.3":{"name":"vue-eslint-parser","version":"0.1.3","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@0.1.3","maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"homepage":"https://github.com/mysticatea/vue-eslint-parser#readme","bugs":{"url":"https://github.com/mysticatea/vue-eslint-parser/issues"},"dist":{"shasum":"8a97bcfc4efc7400daf9edc83af617532c4bacbe","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-0.1.3.tgz","integrity":"sha512-YaRkisZS3Lj/gxM+zooL3lf6Z7TvC0PraE7fJomENuY3PrPvDhA4mmqBufQbmNasj5e5ecKwIxZ86BXn5RsqlQ==","signatures":[{"sig":"MEQCIGOan0lMmSPuHwa/jKEV3pEhUadaFiAMszvZQdJmveZ9AiBv5zm6/AZS9OldzSAiHOG4N1eEpJcr5ROscBEKh5RKFA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":[],"_shasum":"8a97bcfc4efc7400daf9edc83af617532c4bacbe","engines":{"node":">=4"},"gitHead":"b3a780aa0c2affeb4df50b216ebe6d063b21b5da","scripts":{"lint":"eslint index.js \"test/*.js\"","test":"nyc mocha \"test/*.js\" --compilers js:babel-register --reporter progress --timeout 30000","clean":"rimraf .nyc_output coverage","watch":"mocha \"test/*.js\" --compilers js:babel-register --growl --reporter progress --watch","codecov":"nyc report --reporter lcovonly && codecov","pretest":"npm run lint","coverage":"nyc report --reporter lcov && opener ./coverage/lcov-report/index.html","preversion":"npm test","postinstall":"git submodule update --init && cd test/fixtures/eslint && npm install","postversion":"git push && git push --tags"},"_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"repository":{"url":"git+https://github.com/mysticatea/vue-eslint-parser.git","type":"git"},"_npmVersion":"3.8.9","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"6.9.1","dependencies":{"espree":">=3.3.2","parse5":"^3.0.0"},"devDependencies":{"nyc":"^10.0.0","mocha":"^3.2.0","eslint":"^3.12.2","opener":"^1.4.2","rimraf":"^2.5.4","codecov":"^1.0.1","fs-extra":"^1.0.0","typescript":"^2.1.4","@types/node":"^6.0.52","babel-eslint":"^7.1.1","power-assert":"^1.4.2","babel-register":"^6.18.0","eslint-config-mysticatea":"^7.0.1","typescript-eslint-parser":"^1.0.0","babel-preset-power-assert":"^1.0.0"},"peerDependencies":{"eslint":">=3.5.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser-0.1.3.tgz_1481977886700_0.34942883835174143","host":"packages-12-west.internal.npmjs.com"}},"0.1.4":{"name":"vue-eslint-parser","version":"0.1.4","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@0.1.4","maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"homepage":"https://github.com/mysticatea/vue-eslint-parser#readme","bugs":{"url":"https://github.com/mysticatea/vue-eslint-parser/issues"},"dist":{"shasum":"033bcb367081d69684ff16b0129fe70efa476279","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-0.1.4.tgz","integrity":"sha512-EgGVDkKc/gUBdL/neuYKyXAFRl/6E5KtB7EC2cS1FsRcvyXZSRoMg3xHtDspdtFwcu3HW96VEveKs/nCwho2jQ==","signatures":[{"sig":"MEUCIQCXBbhHPMAwPeJUed5hol19iGuT3BIaBYoIMixIcOHxtgIgEDV9Ns+dZfnRPMG/oHdb1IWdUIIBKtu5kyHRnoYumbk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":[],"_shasum":"033bcb367081d69684ff16b0129fe70efa476279","engines":{"node":">=4"},"gitHead":"94ee8fdd8583044cffb506fc47c1e93a5544e8eb","scripts":{"lint":"eslint index.js \"test/*.js\"","test":"nyc mocha \"test/*.js\" --compilers js:babel-register --reporter progress --timeout 30000","clean":"rimraf .nyc_output coverage","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"mocha \"test/*.js\" --compilers js:babel-register --growl --reporter progress --watch","codecov":"nyc report --reporter lcovonly && codecov","pretest":"npm run lint","coverage":"nyc report --reporter lcov && opener ./coverage/lcov-report/index.html","preversion":"npm test","postversion":"git push && git push --tags"},"_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"repository":{"url":"git+https://github.com/mysticatea/vue-eslint-parser.git","type":"git"},"_npmVersion":"3.8.9","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"6.9.1","dependencies":{"espree":">=3.3.2","parse5":"^3.0.0"},"devDependencies":{"nyc":"^10.0.0","mocha":"^3.2.0","eslint":"^3.12.2","opener":"^1.4.2","rimraf":"^2.5.4","codecov":"^1.0.1","fs-extra":"^1.0.0","typescript":"^2.1.4","@types/node":"^6.0.52","babel-eslint":"^7.1.1","power-assert":"^1.4.2","babel-register":"^6.18.0","eslint-config-mysticatea":"^7.0.1","typescript-eslint-parser":"^1.0.0","babel-preset-power-assert":"^1.0.0"},"peerDependencies":{"eslint":">=3.5.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser-0.1.4.tgz_1482112280697_0.472800322342664","host":"packages-18-east.internal.npmjs.com"}},"0.2.0":{"name":"vue-eslint-parser","version":"0.2.0","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@0.2.0","maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"homepage":"https://github.com/mysticatea/vue-eslint-parser#readme","bugs":{"url":"https://github.com/mysticatea/vue-eslint-parser/issues"},"dist":{"shasum":"e88aa190fdb93eef2fd98a91e2b2bb098599bb2c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-0.2.0.tgz","integrity":"sha512-KYVxBGxLFhIQsqzVdR3JoE7wSS1uPhSxJ8AQnGRuq6XFXGYnYGFahbFfTEwPZsn8IsbhCMpW4hN/KVS3UOm5cA==","signatures":[{"sig":"MEYCIQCnmtTjthjmNwdPdnq1ZenU8TzWXck42ineGv8mIvhsKwIhANgga3V6IT7MnY/E7yxU23HPh++EgjEMSlXhROcDHdwk","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["lib"],"_shasum":"e88aa190fdb93eef2fd98a91e2b2bb098599bb2c","engines":{"node":">=4"},"gitHead":"5b102847aa7f699d052d667a3bcc2564bec7616c","scripts":{"lint":"eslint index.js lib \"test/*.js\"","test":"nyc npm run _mocha","clean":"rimraf .nyc_output coverage","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"npm run _mocha -- --growl --watch","_mocha":"_mocha \"test/*.js\" --compilers js:babel-register --reporter progress --timeout 30000","codecov":"nyc report --reporter lcovonly && codecov","pretest":"npm run lint","coverage":"nyc report --reporter lcov && opener ./coverage/lcov-report/index.html","preversion":"npm test","postversion":"git push && git push --tags"},"_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"repository":{"url":"git+https://github.com/mysticatea/vue-eslint-parser.git","type":"git"},"_npmVersion":"3.8.9","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"7.3.0","dependencies":{"espree":">=3.3.2","parse5":"^3.0.0","vue-template-compiler":"^2.1.6"},"devDependencies":{"nyc":"^10.0.0","mocha":"^3.2.0","eslint":"^3.12.2","opener":"^1.4.2","rimraf":"^2.5.4","codecov":"^1.0.1","fs-extra":"^1.0.0","typescript":"^2.1.4","@types/node":"^6.0.52","babel-eslint":"^7.1.1","power-assert":"^1.4.2","babel-register":"^6.18.0","eslint-config-mysticatea":"^7.0.1","typescript-eslint-parser":"^1.0.0","babel-preset-power-assert":"^1.0.0"},"peerDependencies":{"eslint":">=3.5.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser-0.2.0.tgz_1482380010654_0.8725562826730311","host":"packages-12-west.internal.npmjs.com"}},"1.0.0":{"name":"vue-eslint-parser","version":"1.0.0","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@1.0.0","maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"homepage":"https://github.com/mysticatea/vue-eslint-parser#readme","bugs":{"url":"https://github.com/mysticatea/vue-eslint-parser/issues"},"dist":{"shasum":"0d058a3e49a6cc97c6da6482caf8c6d41850d640","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-1.0.0.tgz","integrity":"sha512-9WWDgMyLFfG5N1B7l9cb7ICJQSCdWyRA1FXNdryvVICveBADEkiZ/Qw/MPlKdZCiplVoS0oj7zZMyXDRUEmnXA==","signatures":[{"sig":"MEYCIQDvyVPSzG3MsO9EFd0Jz2HHiNmaVaoA7LSWjNlj3N91xwIhALVXCJreLeIk4irMixyHbMXz5p6OYWqpA/nmZqmLJKwj","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["lib"],"_shasum":"0d058a3e49a6cc97c6da6482caf8c6d41850d640","engines":{"node":">=4"},"gitHead":"d21b3ac1de41fea6dd4b14fd0b7389f9908349a2","scripts":{"lint":"eslint index.js lib \"test/*.js\"","test":"nyc npm run _mocha","clean":"rimraf .nyc_output coverage","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"npm run _mocha -- --growl --watch","_mocha":"_mocha \"test/*.js\" --compilers js:babel-register --reporter progress --timeout 30000","codecov":"nyc report --reporter lcovonly && codecov","pretest":"npm run lint","coverage":"nyc report --reporter lcov && opener ./coverage/lcov-report/index.html","preversion":"npm test","postversion":"git push && git push --tags"},"_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"repository":{"url":"git+https://github.com/mysticatea/vue-eslint-parser.git","type":"git"},"_npmVersion":"3.8.8","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"6.0.0","dependencies":{"espree":">=3.3.2","parse5":"^3.0.0"},"devDependencies":{"nyc":"^10.0.0","mocha":"^3.2.0","eslint":"^3.12.2","opener":"^1.4.2","rimraf":"^2.5.4","codecov":"^1.0.1","fs-extra":"^1.0.0","typescript":"^2.1.4","@types/node":"^6.0.52","babel-eslint":"^7.1.1","power-assert":"^1.4.2","babel-register":"^6.18.0","eslint-config-mysticatea":"^7.0.1","typescript-eslint-parser":"^1.0.0","babel-preset-power-assert":"^1.0.0"},"peerDependencies":{"eslint":">=3.5.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser-1.0.0.tgz_1483021956678_0.3487029285170138","host":"packages-18-east.internal.npmjs.com"}},"1.1.0-6":{"name":"vue-eslint-parser","version":"1.1.0-6","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@1.1.0-6","maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"homepage":"https://github.com/mysticatea/vue-eslint-parser#readme","bugs":{"url":"https://github.com/mysticatea/vue-eslint-parser/issues"},"dist":{"shasum":"d56f9d9abe498a2ecc5cc741e0c35bc1143ff20b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-1.1.0-6.tgz","integrity":"sha512-HKaWwqfPOUSR3lMX1/2fQkgNoVnmhQtHyeGzE3kyf1j6BgAw4fzaHeoNLPLCLvq7c/SoxY2VXRxFCxq+1mB3JQ==","signatures":[{"sig":"MEYCIQDNMkhT4PEhCo+VG4V9EZeVmBtGuB4rCX0xQEXsusHoLAIhAIRleh7MDz8fXH/cAwU99qtxsQtl1qCcGl5v631gFHE8","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","files":["lib"],"engines":{"node":">=4"},"gitHead":"b9497a6b7d89f0691272c56152bf7e2f5f208b17","scripts":{"lint":"eslint index.js lib \"test/*.js\"","test":"nyc npm run _mocha","clean":"rimraf .nyc_output coverage","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"npm run _mocha -- --growl --watch","_mocha":"_mocha \"test/*.js\" --compilers js:babel-register --reporter progress --timeout 30000","codecov":"nyc report --reporter lcovonly && codecov","pretest":"npm run lint","coverage":"nyc report --reporter lcov && opener ./coverage/lcov-report/index.html","preversion":"npm test","postversion":"git push && git push --tags","update-fixtures":"node test/tools/update-template-ast.js"},"_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"repository":{"url":"git+https://github.com/mysticatea/vue-eslint-parser.git","type":"git"},"_npmVersion":"5.0.3","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"8.0.0","dependencies":{"debug":"^2.6.3","espree":">=3.3.2","parse5":"^3.0.0","eslint-scope":"^3.7.1","lodash.sortedindex":"^4.1.0","lodash.sortedindexby":"^4.6.0"},"devDependencies":{"nyc":"^10.0.0","mocha":"^3.2.0","eslint":"^3.19.0","opener":"^1.4.2","rimraf":"^2.5.4","codecov":"^2.1.0","fs-extra":"^2.1.2","typescript":"~2.2.1","@types/node":"^6.0.52","babel-eslint":"^7.1.1","power-assert":"^1.4.2","babel-register":"^6.18.0","eslint-config-mysticatea":"^10.0.0","typescript-eslint-parser":"^2.1.0","babel-preset-power-assert":"^1.0.0"},"peerDependencies":{"eslint":">=3.9.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser-1.1.0-6.tgz_1497784616485_0.4566870303824544","host":"s3://npm-registry-packages"}},"1.1.0-7":{"name":"vue-eslint-parser","version":"1.1.0-7","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@1.1.0-7","maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"homepage":"https://github.com/mysticatea/vue-eslint-parser#readme","bugs":{"url":"https://github.com/mysticatea/vue-eslint-parser/issues"},"dist":{"shasum":"fd29030c6a1ec221ed173257072bc2359235be8d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-1.1.0-7.tgz","integrity":"sha512-dY0AR5BxSjN8TT4bStUuGb55yjSyAvN1ifUrzfuD7kMdmd5g7e/LYIXCqcvB3GuI5wWOs3fa3o31fqQHfQOHew==","signatures":[{"sig":"MEUCIQCD15kx7JqjlLfl/AJy+sDG45BBH2OXcXvkRvPz+xez6wIgR6jZZLRZFkTxK1w8//75K0Eqed5I52zkuMzDL9b/0To=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","files":["lib"],"engines":{"node":">=4"},"gitHead":"acdcf249914ad61dcd00fe5c028b06ad1f0a5b3e","scripts":{"lint":"eslint index.js lib \"test/*.js\"","test":"nyc npm run _mocha","clean":"rimraf .nyc_output coverage","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"npm run _mocha -- --growl --watch","_mocha":"_mocha \"test/*.js\" --compilers js:babel-register --reporter progress --timeout 30000","codecov":"nyc report --reporter lcovonly && codecov","pretest":"npm run lint","coverage":"nyc report --reporter lcov && opener ./coverage/lcov-report/index.html","preversion":"npm test","postversion":"git push && git push --tags","update-fixtures":"node test/tools/update-template-ast.js"},"_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"repository":{"url":"git+https://github.com/mysticatea/vue-eslint-parser.git","type":"git"},"_npmVersion":"5.0.3","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"8.1.0","dependencies":{"debug":"^2.6.3","espree":">=3.3.2","parse5":"^3.0.0","eslint-scope":"^3.7.1","lodash.sortedindex":"^4.1.0","lodash.sortedindexby":"^4.6.0"},"devDependencies":{"nyc":"^10.0.0","mocha":"^3.2.0","eslint":"^3.19.0","opener":"^1.4.2","rimraf":"^2.5.4","codecov":"^2.1.0","fs-extra":"^2.1.2","typescript":"~2.2.1","@types/node":"^6.0.52","babel-eslint":"^7.1.1","power-assert":"^1.4.2","babel-register":"^6.18.0","eslint-config-mysticatea":"^10.0.0","typescript-eslint-parser":"^2.1.0","babel-preset-power-assert":"^1.0.0"},"peerDependencies":{"eslint":">=3.9.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser-1.1.0-7.tgz_1498558088087_0.35017063305713236","host":"s3://npm-registry-packages"}},"1.1.0-8":{"name":"vue-eslint-parser","version":"1.1.0-8","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@1.1.0-8","maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"homepage":"https://github.com/mysticatea/vue-eslint-parser#readme","bugs":{"url":"https://github.com/mysticatea/vue-eslint-parser/issues"},"dist":{"shasum":"de739e299454f332f38872405e6b4746f995e2c1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-1.1.0-8.tgz","integrity":"sha512-K6dNK/vfzVAFjPV/2RCjIcGBPNkw3ffxf7Aa3a6rz6xNwD2pih8OkIuH9l2RN6CsyIQJtMRarTfBkvHOlEGxdA==","signatures":[{"sig":"MEQCIG7Y3MvQjjtGVAhdAHH4etWQGaVTR261Zc3Rw5MhHl4UAiAObF5pgwhFBoVXSzpHynJtENttebHKLT7JsxsjwkR9vQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","files":["index.d.ts","index.js","index.js.map"],"engines":{"node":">=4"},"gitHead":"6d10aa425251cf18ab0f8eb21fcda488aafe92ed","scripts":{"lint":"eslint lib test","test":"nyc npm run _mocha","build":"tsc && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","_mocha":"_mocha \"test/*.js\" --reporter dot --timeout 5000","codecov":"nyc report --reporter lcovonly && codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"nyc report --reporter lcov && opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --watch","preversion":"npm test","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --no-initial -- nyc -r lcov npm run -s _mocha","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"node test/tools/update-fixtures-ast.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node test/tools/update-fixtures-ast.js","preupdate-fixtures":"npm run -s build","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"repository":{"url":"git+https://github.com/mysticatea/vue-eslint-parser.git","type":"git"},"_npmVersion":"5.1.0","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"8.1.4","dependencies":{"debug":"^2.6.3","espree":"^3.3.2","lodash":"^4.17.4","eslint-scope":"^3.7.1"},"devDependencies":{"nyc":"^11.1.0","mocha":"^3.2.0","warun":"^1.0.0","eslint":"^4.3.0","opener":"^1.4.2","rimraf":"^2.5.4","rollup":"^0.45.2","codecov":"^2.1.0","wait-on":"^2.0.2","chokidar":"^1.7.0","fs-extra":"^4.0.0","dts-bundle":"^0.7.3","typescript":"~2.3.4","@types/node":"^6.0.85","cross-spawn":"^5.1.0","npm-run-all":"^4.0.2","@types/debug":"0.0.29","@types/mocha":"^2.2.41","babel-eslint":"^7.1.1","rollup-watch":"^4.3.1","@types/estree":"0.0.35","@types/lodash":"^4.14.71","eslint-config-mysticatea":"^11.0.0","rollup-plugin-sourcemaps":"^0.4.2","typescript-eslint-parser":"^4.0.0","rollup-plugin-node-resolve":"^3.0.0"},"peerDependencies":{"eslint":">=3.9.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser-1.1.0-8.tgz_1501381116791_0.9799063564278185","host":"s3://npm-registry-packages"}},"1.1.0-9":{"name":"vue-eslint-parser","version":"1.1.0-9","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@1.1.0-9","maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"homepage":"https://github.com/mysticatea/vue-eslint-parser#readme","bugs":{"url":"https://github.com/mysticatea/vue-eslint-parser/issues"},"dist":{"shasum":"c01f9275f6a938d97959194605a3826cbcb02c4e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-1.1.0-9.tgz","integrity":"sha512-EfvzuAqOho6Ml/dzjvgZKmbYVa7yC/gL+OzUbmRXZBOGIdfaQRvWsr/QLYVUAW8glnyW0XrBDiCf1tuNBkjqsQ==","signatures":[{"sig":"MEUCIQCECepYGLXJ3INQeZ12nKwkyN6smnN8Q5eiArKV9kA5GQIgUKd/H3cJmtisyxT+OrYgTwl/+sXSLVQIqd47MJ3Kkzw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","files":["lib"],"engines":{"node":">=4"},"gitHead":"dd5553b33b58d0cfbe4402aea789a2ffbf277dd4","scripts":{"lint":"eslint index.js lib \"test/*.js\"","test":"nyc npm run _mocha","clean":"rimraf .nyc_output coverage","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"npm run _mocha -- --growl --watch","_mocha":"_mocha \"test/*.js\" --compilers js:babel-register --reporter progress --timeout 30000","codecov":"nyc report --reporter lcovonly && codecov","pretest":"npm run lint","coverage":"nyc report --reporter lcov && opener ./coverage/lcov-report/index.html","preversion":"npm test","postversion":"git push && git push --tags","update-fixtures":"node test/tools/update-template-ast.js"},"_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"repository":{"url":"git+https://github.com/mysticatea/vue-eslint-parser.git","type":"git"},"_npmVersion":"5.1.0","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"8.1.4","dependencies":{"debug":"^2.6.3","espree":">=3.3.2","parse5":"^3.0.0","eslint-scope":"^3.7.1","lodash.sortedindex":"^4.1.0","lodash.sortedindexby":"^4.6.0"},"devDependencies":{"nyc":"^10.0.0","mocha":"^3.2.0","eslint":"^3.19.0","opener":"^1.4.2","rimraf":"^2.5.4","codecov":"^2.1.0","fs-extra":"^2.1.2","typescript":"~2.2.1","@types/node":"^6.0.52","babel-eslint":"^7.1.1","power-assert":"^1.4.2","babel-register":"^6.18.0","eslint-config-mysticatea":"^10.0.0","typescript-eslint-parser":"^2.1.0","babel-preset-power-assert":"^1.0.0"},"peerDependencies":{"eslint":">=3.9.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser-1.1.0-9.tgz_1501394936288_0.4534743642434478","host":"s3://npm-registry-packages"}},"2.0.0-beta.0":{"name":"vue-eslint-parser","version":"2.0.0-beta.0","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@2.0.0-beta.0","maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"homepage":"https://github.com/mysticatea/vue-eslint-parser#readme","bugs":{"url":"https://github.com/mysticatea/vue-eslint-parser/issues"},"dist":{"shasum":"7af40077e3a9d6e1036cc968295f1b2cb1a564a9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-2.0.0-beta.0.tgz","integrity":"sha512-GfJgr4S0kEBsT2k24yqBaYIq1cKHXwiajrEzF+6gpr56pRFY/5FibDwCTEo4QmNqugtG5XSKwlwwygDMMH8g5g==","signatures":[{"sig":"MEUCIQDIpTsYgBhuvz/waYkQWvKkCzkw6cgUWykCSE3Ksrt1UwIgG8/Jg1Ut7Z9nFhYUzr5/zQdt4teHZxIjdgslnHGJ6fA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","files":["index.d.ts","index.js","index.js.map"],"engines":{"node":">=4"},"gitHead":"833af75cf6643183f49ee81c9208826af553daff","scripts":{"lint":"eslint lib test","test":"nyc npm run _mocha","build":"tsc && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","_mocha":"_mocha \"test/*.js\" --reporter dot --timeout 5000","codecov":"nyc report --reporter lcovonly && codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"nyc report --reporter lcov && opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --watch","preversion":"npm test","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc -r lcov npm run -s _mocha","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"node test/tools/update-fixtures-ast.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node test/tools/update-fixtures-ast.js","preupdate-fixtures":"npm run -s build","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"repository":{"url":"git+https://github.com/mysticatea/vue-eslint-parser.git","type":"git"},"_npmVersion":"5.1.0","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"8.1.4","dependencies":{"debug":"^2.6.3","espree":"^3.3.2","lodash":"^4.17.4","eslint-scope":"^3.7.1"},"devDependencies":{"nyc":"^11.1.0","mocha":"^3.2.0","warun":"^1.0.0","eslint":"^4.3.0","opener":"^1.4.2","rimraf":"^2.5.4","rollup":"^0.45.2","codecov":"^2.1.0","wait-on":"^2.0.2","chokidar":"^1.7.0","fs-extra":"^4.0.0","dts-bundle":"^0.7.3","typescript":"~2.3.4","@types/node":"^6.0.85","cross-spawn":"^5.1.0","npm-run-all":"^4.0.2","@types/debug":"0.0.29","@types/mocha":"^2.2.41","babel-eslint":"^7.1.1","rollup-watch":"^4.3.1","@types/estree":"0.0.35","@types/lodash":"^4.14.71","eslint-config-mysticatea":"^11.0.0","rollup-plugin-sourcemaps":"^0.4.2","typescript-eslint-parser":"^4.0.0","rollup-plugin-node-resolve":"^3.0.0"},"peerDependencies":{"eslint":">=3.9.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser-2.0.0-beta.0.tgz_1501401427804_0.14214306371286511","host":"s3://npm-registry-packages"}},"2.0.0-beta.2":{"name":"vue-eslint-parser","version":"2.0.0-beta.2","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@2.0.0-beta.2","maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"homepage":"https://github.com/mysticatea/vue-eslint-parser#readme","bugs":{"url":"https://github.com/mysticatea/vue-eslint-parser/issues"},"dist":{"shasum":"88a0832fe9e9c91a5dfdd4f551e0796d7e037eac","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-2.0.0-beta.2.tgz","integrity":"sha512-bcoX+jDpF7xY3nbPK9W6yBiH7I0WOFA1SU0LnYkusZzY6ZRGbJWOiyNpl1TWAkNmLH0Az2uGVVnzsBVB1aSl6w==","signatures":[{"sig":"MEYCIQCiBHf1KhtoYm9QgabPhhKWiW3oJ3Xrf3IhbcG9BB1RTQIhAPlUT0FpZlhnDXXTm++N8UOApNNKcLDRatInZ0FhS42x","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","files":["index.d.ts","index.js","index.js.map"],"engines":{"node":">=4"},"gitHead":"446f7bfa737241f6b527fd89d7303b314344cb94","scripts":{"lint":"eslint lib test","test":"nyc npm run _mocha","build":"tsc && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","_mocha":"_mocha \"test/*.js\" --reporter dot --timeout 5000","codecov":"nyc report --reporter lcovonly && codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"nyc report --reporter lcov && opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --watch","preversion":"npm test","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc -r lcov npm run -s _mocha","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"node test/tools/update-fixtures-ast.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node test/tools/update-fixtures-ast.js","preupdate-fixtures":"npm run -s build","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"repository":{"url":"git+https://github.com/mysticatea/vue-eslint-parser.git","type":"git"},"_npmVersion":"5.3.0","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"8.2.1","dependencies":{"debug":"^2.6.3","espree":"^3.3.2","lodash":"^4.17.4","eslint-scope":"^3.7.1"},"devDependencies":{"nyc":"^11.1.0","mocha":"^3.2.0","warun":"^1.0.0","eslint":"^4.3.0","opener":"^1.4.2","rimraf":"^2.5.4","rollup":"^0.45.2","codecov":"^2.1.0","wait-on":"^2.0.2","chokidar":"^1.7.0","fs-extra":"^4.0.0","dts-bundle":"^0.7.3","typescript":"~2.3.4","@types/node":"^6.0.85","cross-spawn":"^5.1.0","npm-run-all":"^4.0.2","@types/debug":"0.0.29","@types/mocha":"^2.2.41","babel-eslint":"^7.1.1","rollup-watch":"^4.3.1","@types/estree":"0.0.35","@types/lodash":"^4.14.71","eslint-config-mysticatea":"^11.0.0","rollup-plugin-sourcemaps":"^0.4.2","typescript-eslint-parser":"^4.0.0","rollup-plugin-node-resolve":"^3.0.0"},"peerDependencies":{"eslint":">=3.9.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser-2.0.0-beta.2.tgz_1501505084445_0.04132794891484082","host":"s3://npm-registry-packages"}},"2.0.0-beta.3":{"name":"vue-eslint-parser","version":"2.0.0-beta.3","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@2.0.0-beta.3","maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"homepage":"https://github.com/mysticatea/vue-eslint-parser#readme","bugs":{"url":"https://github.com/mysticatea/vue-eslint-parser/issues"},"dist":{"shasum":"11677f29f7714cad350213108ebdb07503925761","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-2.0.0-beta.3.tgz","integrity":"sha512-/h9CORTgmIPEsu6PKXY5IbNzcwCkb1aV5mpnSojwNcShdWi+VKXi95HMnpiWuLAa3M6Hh2tMENwR/twyrX3h1w==","signatures":[{"sig":"MEYCIQCMb02tMiYze8QHxFpmgY6JhOlIBkFK/FFn3oQ8yNDk6QIhAN/aUPdmPGVmO+t5a/Tk+AZhRFRxcHtAzKMJD+OJG0/C","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","files":["index.d.ts","index.js","index.js.map"],"engines":{"node":">=4"},"gitHead":"e5213a4a0979573ccb572e0e38e5282dbd2b5040","scripts":{"lint":"eslint lib test","test":"nyc npm run _mocha","build":"tsc && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","_mocha":"_mocha \"test/*.js\" --reporter dot --timeout 5000","codecov":"nyc report --reporter lcovonly && codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"nyc report --reporter lcov && opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --watch","preversion":"npm test","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc -r lcov npm run -s _mocha","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"node test/tools/update-fixtures-ast.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node test/tools/update-fixtures-ast.js","preupdate-fixtures":"npm run -s build","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"repository":{"url":"git+https://github.com/mysticatea/vue-eslint-parser.git","type":"git"},"_npmVersion":"5.3.0","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"8.2.1","dependencies":{"debug":"^2.6.3","espree":"^3.3.2","lodash":"^4.17.4","eslint-scope":"^3.7.1"},"devDependencies":{"nyc":"^11.1.0","mocha":"^3.2.0","warun":"^1.0.0","eslint":"^4.3.0","opener":"^1.4.2","rimraf":"^2.5.4","rollup":"^0.45.2","codecov":"^2.1.0","wait-on":"^2.0.2","chokidar":"^1.7.0","fs-extra":"^4.0.0","dts-bundle":"^0.7.3","typescript":"~2.3.4","@types/node":"^6.0.85","cross-spawn":"^5.1.0","npm-run-all":"^4.0.2","@types/debug":"0.0.29","@types/mocha":"^2.2.41","babel-eslint":"^7.1.1","rollup-watch":"^4.3.1","@types/estree":"0.0.35","@types/lodash":"^4.14.71","eslint-config-mysticatea":"^11.0.0","rollup-plugin-sourcemaps":"^0.4.2","typescript-eslint-parser":"^4.0.0","rollup-plugin-node-resolve":"^3.0.0"},"peerDependencies":{"eslint":">=3.9.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser-2.0.0-beta.3.tgz_1501712718058_0.2568831390235573","host":"s3://npm-registry-packages"}},"2.0.0-beta.4":{"name":"vue-eslint-parser","version":"2.0.0-beta.4","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@2.0.0-beta.4","maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"homepage":"https://github.com/mysticatea/vue-eslint-parser#readme","bugs":{"url":"https://github.com/mysticatea/vue-eslint-parser/issues"},"dist":{"shasum":"ee2f176fc085f40940edcc5ea01367c30eddc26d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-2.0.0-beta.4.tgz","integrity":"sha512-lUJLB6LhDXb9gnCbcGKcVlb+jcehU1uEtw8fULeAwLvwmdcsh4EnDw//+bI+zPC9j80x7E2fr1BbkyV+kip8ow==","signatures":[{"sig":"MEUCIE4rt4CCyumXXeTdw2cjBMQprWLP0joR0PojLcf70uY6AiEA1rId07bKO/I3gencPfou14vDsxD4lq429bJcFxdyAH0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","files":["index.d.ts","index.js","index.js.map"],"engines":{"node":">=4"},"gitHead":"bddd716dae925de0354176293f3ee4b3d88023e7","scripts":{"lint":"eslint lib test","test":"nyc npm run _mocha","build":"tsc && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","_mocha":"_mocha \"test/*.js\" --reporter dot --timeout 5000","codecov":"nyc report --reporter lcovonly && codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"nyc report --reporter lcov && opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --watch","preversion":"npm test","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc -r lcov npm run -s _mocha","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"node test/tools/update-fixtures-ast.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node test/tools/update-fixtures-ast.js","preupdate-fixtures":"npm run -s build","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"repository":{"url":"git+https://github.com/mysticatea/vue-eslint-parser.git","type":"git"},"_npmVersion":"5.3.0","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"8.2.1","dependencies":{"debug":"^2.6.3","espree":"^3.3.2","lodash":"^4.17.4","eslint-scope":"^3.7.1"},"devDependencies":{"nyc":"^11.1.0","mocha":"^3.2.0","warun":"^1.0.0","eslint":"^4.3.0","opener":"^1.4.2","rimraf":"^2.5.4","rollup":"^0.45.2","codecov":"^2.1.0","wait-on":"^2.0.2","chokidar":"^1.7.0","fs-extra":"^4.0.0","dts-bundle":"^0.7.3","typescript":"~2.3.4","@types/node":"^6.0.85","cross-spawn":"^5.1.0","npm-run-all":"^4.0.2","@types/debug":"0.0.29","@types/mocha":"^2.2.41","babel-eslint":"^7.1.1","rollup-watch":"^4.3.1","@types/estree":"0.0.35","@types/lodash":"^4.14.71","eslint-config-mysticatea":"^11.0.0","rollup-plugin-sourcemaps":"^0.4.2","typescript-eslint-parser":"^4.0.0","rollup-plugin-node-resolve":"^3.0.0"},"peerDependencies":{"eslint":">=3.9.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser-2.0.0-beta.4.tgz_1501796858252_0.20865482417866588","host":"s3://npm-registry-packages"}},"2.0.0-beta.5":{"name":"vue-eslint-parser","version":"2.0.0-beta.5","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@2.0.0-beta.5","maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"homepage":"https://github.com/mysticatea/vue-eslint-parser#readme","bugs":{"url":"https://github.com/mysticatea/vue-eslint-parser/issues"},"dist":{"shasum":"5c2b59370870bfc8ea0e148658b4b91895b09ccc","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-2.0.0-beta.5.tgz","integrity":"sha512-/fw/KY6wW8d6YC+flx6qKdiPGsoSiLya09DCdrNqMW88dcWv4jhi/3xY7M5LGXJTqLLDhqx0NXql0SWOGLbCtg==","signatures":[{"sig":"MEUCIQC8pBmVQ3bcgtpl5pbChiQ/Y0MdUDL1e1vv+bEEdO6ZWAIgAcJGDucHf7BdVsvmVnS8VT1EiFPGn3t2DFaqk+LKpkg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","files":["index.d.ts","index.js","index.js.map"],"engines":{"node":">=4"},"gitHead":"0bc6d7a972c87b4bdb3e735d09bf7161361447d2","scripts":{"lint":"eslint lib test","test":"nyc npm run _mocha","build":"tsc && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","_mocha":"_mocha \"test/*.js\" --reporter dot --timeout 5000","codecov":"nyc report --reporter lcovonly && codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"nyc report --reporter lcov && opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --watch","preversion":"npm test","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc -r lcov npm run -s _mocha","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"node test/tools/update-fixtures-ast.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node test/tools/update-fixtures-ast.js","preupdate-fixtures":"npm run -s build","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"repository":{"url":"git+https://github.com/mysticatea/vue-eslint-parser.git","type":"git"},"_npmVersion":"5.3.0","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"8.2.1","dependencies":{"debug":"^2.6.3","espree":"^3.3.2","lodash":"^4.17.4","eslint-scope":"^3.7.1"},"devDependencies":{"nyc":"^11.1.0","mocha":"^3.2.0","warun":"^1.0.0","eslint":"^4.3.0","opener":"^1.4.2","rimraf":"^2.5.4","rollup":"^0.45.2","codecov":"^2.1.0","wait-on":"^2.0.2","chokidar":"^1.7.0","fs-extra":"^4.0.0","dts-bundle":"^0.7.3","typescript":"~2.3.4","@types/node":"^6.0.85","cross-spawn":"^5.1.0","npm-run-all":"^4.0.2","@types/debug":"0.0.29","@types/mocha":"^2.2.41","babel-eslint":"^7.1.1","rollup-watch":"^4.3.1","@types/estree":"0.0.35","@types/lodash":"^4.14.71","eslint-config-mysticatea":"^11.0.0","rollup-plugin-sourcemaps":"^0.4.2","typescript-eslint-parser":"^4.0.0","rollup-plugin-node-resolve":"^3.0.0"},"peerDependencies":{"eslint":">=3.9.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser-2.0.0-beta.5.tgz_1501843948414_0.5852143655065447","host":"s3://npm-registry-packages"}},"2.0.0-beta.6":{"name":"vue-eslint-parser","version":"2.0.0-beta.6","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@2.0.0-beta.6","maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"homepage":"https://github.com/mysticatea/vue-eslint-parser#readme","bugs":{"url":"https://github.com/mysticatea/vue-eslint-parser/issues"},"dist":{"shasum":"19c3b73bf2ca997c70b97d02240b58f87887e6bd","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-2.0.0-beta.6.tgz","integrity":"sha512-wOdA4iT6a5ygDOMH1A8zFtK3/I3c3C39wH9hxLZuilrY+cnWBLr5V5yjwb/G3rPPe9fJaGDC4z7PTGrqz+WwkA==","signatures":[{"sig":"MEUCIQCds9DfIizwSDxF4eN4qT1+aAB8tYR13+vqR+UYm12rngIgEMy5/ZuO5Q9P8KdmFx5cpIGZlCWZGr59y5ICv/0lmcM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","files":["index.d.ts","index.js","index.js.map"],"engines":{"node":">=4"},"gitHead":"8a231511c3d60fcae734e3ce3c7af21e4328f288","scripts":{"lint":"eslint lib test","test":"nyc npm run _mocha","build":"tsc && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","_mocha":"_mocha \"test/*.js\" --reporter dot --timeout 5000","codecov":"nyc report --reporter lcovonly && codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"nyc report --reporter lcov && opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --watch","preversion":"npm test","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc -r lcov npm run -s _mocha","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"node test/tools/update-fixtures-ast.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node test/tools/update-fixtures-ast.js","preupdate-fixtures":"npm run -s build","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"repository":{"url":"git+https://github.com/mysticatea/vue-eslint-parser.git","type":"git"},"_npmVersion":"5.3.0","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"8.2.1","dependencies":{"debug":"^2.6.3","espree":"^3.3.2","lodash":"^4.17.4","eslint-scope":"^3.7.1"},"devDependencies":{"nyc":"^11.1.0","mocha":"^3.2.0","warun":"^1.0.0","eslint":"^4.3.0","opener":"^1.4.2","rimraf":"^2.5.4","rollup":"^0.45.2","codecov":"^2.1.0","wait-on":"^2.0.2","chokidar":"^1.7.0","fs-extra":"^4.0.0","dts-bundle":"^0.7.3","typescript":"~2.3.4","@types/node":"^6.0.85","cross-spawn":"^5.1.0","npm-run-all":"^4.0.2","@types/debug":"0.0.29","@types/mocha":"^2.2.41","babel-eslint":"^7.1.1","rollup-watch":"^4.3.1","@types/estree":"0.0.35","@types/lodash":"^4.14.71","eslint-config-mysticatea":"^11.0.0","rollup-plugin-sourcemaps":"^0.4.2","typescript-eslint-parser":"^4.0.0","rollup-plugin-node-resolve":"^3.0.0"},"peerDependencies":{"eslint":">=3.9.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser-2.0.0-beta.6.tgz_1502078279590_0.043557701632380486","host":"s3://npm-registry-packages"}},"2.0.0-beta.7":{"name":"vue-eslint-parser","version":"2.0.0-beta.7","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@2.0.0-beta.7","maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"homepage":"https://github.com/mysticatea/vue-eslint-parser#readme","bugs":{"url":"https://github.com/mysticatea/vue-eslint-parser/issues"},"dist":{"shasum":"43737861129620d16326ab7486919365b3d6e379","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-2.0.0-beta.7.tgz","integrity":"sha512-S62CeCnpOZ4WfFFW/DCvu5L8Pxy6bsWEDAt8sLHI03BH0x4rbcRZgfi45GiVe/FKUl79xDI1RuCPrZmqguHCtg==","signatures":[{"sig":"MEQCIBj7EwRhyRqW2K97WTrp+01+S6IuFD/hHND0ZGL1T+QqAiAPsJVVK4KwAhYHbbxUbe1DtgVcQzYtIWIPct4fCuDMNw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","files":["index.d.ts","index.js","index.js.map"],"engines":{"node":">=4"},"gitHead":"d0b2e9a0543a8b98c28a5d9d5fbe66016e371848","scripts":{"lint":"eslint lib test","test":"nyc npm run _mocha","build":"tsc && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","_mocha":"_mocha \"test/*.js\" --reporter dot --timeout 5000","codecov":"nyc report --reporter lcovonly && codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"nyc report --reporter lcov && opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --watch","preversion":"npm test","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc -r lcov npm run -s _mocha","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"node test/tools/update-fixtures-ast.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node test/tools/update-fixtures-ast.js","preupdate-fixtures":"npm run -s build","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"repository":{"url":"git+https://github.com/mysticatea/vue-eslint-parser.git","type":"git"},"_npmVersion":"5.3.0","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"8.2.1","dependencies":{"debug":"^2.6.3","espree":"^3.3.2","lodash":"^4.17.4","eslint-scope":"^3.7.1"},"devDependencies":{"nyc":"^11.1.0","mocha":"^3.2.0","warun":"^1.0.0","eslint":"^4.3.0","opener":"^1.4.2","rimraf":"^2.5.4","rollup":"^0.45.2","codecov":"^2.1.0","wait-on":"^2.0.2","chokidar":"^1.7.0","fs-extra":"^4.0.0","dts-bundle":"^0.7.3","typescript":"~2.3.4","@types/node":"^6.0.85","cross-spawn":"^5.1.0","npm-run-all":"^4.0.2","@types/debug":"0.0.29","@types/mocha":"^2.2.41","babel-eslint":"^7.1.1","rollup-watch":"^4.3.1","@types/estree":"0.0.35","@types/lodash":"^4.14.71","eslint-config-mysticatea":"^11.0.0","rollup-plugin-sourcemaps":"^0.4.2","typescript-eslint-parser":"^4.0.0","rollup-plugin-node-resolve":"^3.0.0"},"peerDependencies":{"eslint":">=3.9.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser-2.0.0-beta.7.tgz_1502181475221_0.3444461014587432","host":"s3://npm-registry-packages"}},"2.0.0-beta.8":{"name":"vue-eslint-parser","version":"2.0.0-beta.8","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@2.0.0-beta.8","maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"homepage":"https://github.com/mysticatea/vue-eslint-parser#readme","bugs":{"url":"https://github.com/mysticatea/vue-eslint-parser/issues"},"dist":{"shasum":"05d778fb220407f2c2c2a2cba5214fae7d2d2e70","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-2.0.0-beta.8.tgz","integrity":"sha512-W+JevKwTMyotEJhSjMzImYpVE/Bb6p0S8BmBh9Nq8/msqbvFVBIxFMX+e+3KSo4LwvKn5vm0u2A5PQIv4N8Mfw==","signatures":[{"sig":"MEUCIEQk0sL9o2ZqV9La37NukIAg1fDz3rX83gTkIyrvU3yJAiEA10Wt+gCga69upnzUZ/9FuvgclJxfghQM8wvTFzCDgMo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","files":["index.d.ts","index.js","index.js.map"],"engines":{"node":">=4"},"gitHead":"c09858dc8e7afbef2344bcaa2e56f3c0612bf077","scripts":{"lint":"eslint lib test","test":"nyc npm run _mocha","build":"tsc && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","_mocha":"_mocha \"test/*.js\" --reporter dot --timeout 5000","codecov":"nyc report --reporter lcovonly && codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"nyc report --reporter lcov && opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --watch","preversion":"npm test","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc -r lcov npm run -s _mocha","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"node test/tools/update-fixtures-ast.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node test/tools/update-fixtures-ast.js","preupdate-fixtures":"npm run -s build","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"repository":{"url":"git+https://github.com/mysticatea/vue-eslint-parser.git","type":"git"},"_npmVersion":"5.3.0","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"8.3.0","dependencies":{"debug":"^3.0.0","espree":"^3.3.2","lodash":"^4.17.4","eslint-scope":"^3.7.1"},"devDependencies":{"nyc":"^11.1.0","mocha":"^3.2.0","warun":"^1.0.0","eslint":"^4.3.0","opener":"^1.4.2","rimraf":"^2.5.4","rollup":"^0.45.2","codecov":"^2.1.0","wait-on":"^2.0.2","chokidar":"^1.7.0","fs-extra":"^4.0.0","dts-bundle":"^0.7.3","typescript":"~2.4.2","@types/node":"^6.0.85","cross-spawn":"^5.1.0","npm-run-all":"^4.0.2","@types/debug":"0.0.29","@types/mocha":"^2.2.41","babel-eslint":"^7.1.1","rollup-watch":"^4.3.1","@types/estree":"0.0.35","@types/lodash":"^4.14.71","eslint-config-mysticatea":"^11.0.0","rollup-plugin-sourcemaps":"^0.4.2","typescript-eslint-parser":"^5.0.1","rollup-plugin-node-resolve":"^3.0.0"},"peerDependencies":{"eslint":">=3.9.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser-2.0.0-beta.8.tgz_1503011776188_0.4762219483964145","host":"s3://npm-registry-packages"}},"2.0.0-beta.9":{"name":"vue-eslint-parser","version":"2.0.0-beta.9","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@2.0.0-beta.9","maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"homepage":"https://github.com/mysticatea/vue-eslint-parser#readme","bugs":{"url":"https://github.com/mysticatea/vue-eslint-parser/issues"},"dist":{"shasum":"46d704755c3ebbf1439e0d86289d5f0949ed9a0a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-2.0.0-beta.9.tgz","integrity":"sha512-SHeXSlpTJZrv2qkMUqfEv8GFeriJ8gEhJrnrvv1L9+1h2aW1vuyh4niOBLEXHu/8IF8+MLbXpC91b7R+jUZwmg==","signatures":[{"sig":"MEUCIQDp+AsUtcB9otiy+lWUINdVq9GEaGvHjAMojlb9TxgCIgIgT7pfzF7GdqPnteUwxzxDIXM14YleZ2D7dHOLm0viN+Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","files":["index.d.ts","index.js","index.js.map"],"engines":{"node":">=4"},"gitHead":"0036d670730d4b9ea4c3b9055a462bd48a35a45d","scripts":{"lint":"eslint lib test","test":"nyc npm run _mocha","build":"tsc && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","_mocha":"_mocha \"test/*.js\" --reporter dot --timeout 5000","codecov":"nyc report --reporter lcovonly && codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"nyc report --reporter lcov && opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --watch","preversion":"npm test","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc -r lcov npm run -s _mocha","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"node test/tools/update-fixtures-ast.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node test/tools/update-fixtures-ast.js","preupdate-fixtures":"npm run -s build","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"repository":{"url":"git+https://github.com/mysticatea/vue-eslint-parser.git","type":"git"},"_npmVersion":"5.3.0","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"8.4.0","dependencies":{"debug":"^3.0.0","espree":"^3.3.2","lodash":"^4.17.4","eslint-scope":"^3.7.1"},"devDependencies":{"nyc":"^11.1.0","mocha":"^3.2.0","warun":"^1.0.0","eslint":"^4.3.0","opener":"^1.4.2","rimraf":"^2.5.4","rollup":"^0.45.2","codecov":"^2.1.0","wait-on":"^2.0.2","chokidar":"^1.7.0","fs-extra":"^4.0.0","dts-bundle":"^0.7.3","typescript":"~2.4.2","@types/node":"^6.0.85","cross-spawn":"^5.1.0","npm-run-all":"^4.0.2","@types/debug":"0.0.29","@types/mocha":"^2.2.41","babel-eslint":"^7.1.1","rollup-watch":"^4.3.1","@types/estree":"0.0.35","@types/lodash":"^4.14.71","eslint-config-mysticatea":"^11.0.0","rollup-plugin-sourcemaps":"^0.4.2","typescript-eslint-parser":"^5.0.1","rollup-plugin-node-resolve":"^3.0.0"},"peerDependencies":{"eslint":">=3.9.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser-2.0.0-beta.9.tgz_1503122430136_0.7996932168025523","host":"s3://npm-registry-packages"}},"2.0.0-beta.10":{"name":"vue-eslint-parser","version":"2.0.0-beta.10","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@2.0.0-beta.10","maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"homepage":"https://github.com/mysticatea/vue-eslint-parser#readme","bugs":{"url":"https://github.com/mysticatea/vue-eslint-parser/issues"},"dist":{"shasum":"b645910e1f0dbffa611137f205bd2a5c571dbb16","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-2.0.0-beta.10.tgz","integrity":"sha512-GE3cxTOQbqw1jgt++7k83agG03MVxapiw+CKUca1U0FDrQL0T2YPcIfmDIsbZWdVL84d//So0EMydEf3tpzu9g==","signatures":[{"sig":"MEUCIQCjNmAO30rn3wn3UqfOIFlKxdM3tSFNauZ062ZIb+a5NwIgfFB9zGhOi7R4ukTziKSO0Ef27BjW/tei2clfygiojNc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","files":["index.d.ts","index.js","index.js.map"],"engines":{"node":">=4"},"gitHead":"426a9e399e7cca7f8c6a73989af40b69095ff893","scripts":{"lint":"eslint lib test","test":"nyc npm run _mocha","build":"tsc && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","_mocha":"_mocha \"test/*.js\" --reporter dot --timeout 5000","codecov":"nyc report --reporter lcovonly && codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"nyc report --reporter lcov && opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --watch","preversion":"npm test","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc -r lcov npm run -s _mocha","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"node test/tools/update-fixtures-ast.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node test/tools/update-fixtures-ast.js","preupdate-fixtures":"npm run -s build","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"repository":{"url":"git+https://github.com/mysticatea/vue-eslint-parser.git","type":"git"},"_npmVersion":"5.3.0","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"8.4.0","dependencies":{"debug":"^3.0.0","espree":"^3.3.2","lodash":"^4.17.4","eslint-scope":"^3.7.1"},"devDependencies":{"nyc":"^11.1.0","mocha":"^3.2.0","warun":"^1.0.0","eslint":"^4.3.0","opener":"^1.4.2","rimraf":"^2.5.4","rollup":"^0.45.2","codecov":"^2.1.0","wait-on":"^2.0.2","chokidar":"^1.7.0","fs-extra":"^4.0.0","dts-bundle":"^0.7.3","typescript":"~2.4.2","@types/node":"^6.0.85","cross-spawn":"^5.1.0","npm-run-all":"^4.0.2","@types/debug":"0.0.29","@types/mocha":"^2.2.41","babel-eslint":"^7.1.1","rollup-watch":"^4.3.1","@types/estree":"0.0.35","@types/lodash":"^4.14.71","eslint-config-mysticatea":"^11.0.0","rollup-plugin-sourcemaps":"^0.4.2","typescript-eslint-parser":"^5.0.1","rollup-plugin-node-resolve":"^3.0.0"},"peerDependencies":{"eslint":">=3.9.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser-2.0.0-beta.10.tgz_1503125335812_0.3584956955164671","host":"s3://npm-registry-packages"}},"2.0.1-beta.0":{"name":"vue-eslint-parser","version":"2.0.1-beta.0","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@2.0.1-beta.0","maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"homepage":"https://github.com/mysticatea/vue-eslint-parser#readme","bugs":{"url":"https://github.com/mysticatea/vue-eslint-parser/issues"},"dist":{"shasum":"1ce5a7619bfb9ebaacd4f4ba9aeb591edd9132ce","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-2.0.1-beta.0.tgz","integrity":"sha512-p6ZOQao/SvTnskv4Xsi7yRzVOD7ok1pSp+XtyqCQsE4ItRoOZbzOcmDb8tc1dqnjtmZPAwqasc4MXrgrEIkEJQ==","signatures":[{"sig":"MEQCIBtLtyDFFPrbnmmaAQqZoibJ+uC7RV556F1okTG8eiswAiBOO/wcaUs3oRZj3uthNxsGNWVcGdJZfY0TZJ+qWseM2A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","files":["index.d.ts","index.js","index.js.map"],"engines":{"node":">=4"},"gitHead":"45ce600551805f0326c3ebb0931089bc4e6e4bca","scripts":{"lint":"eslint lib test","test":"nyc npm run _mocha","build":"tsc && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","_mocha":"_mocha \"test/*.js\" --reporter dot --timeout 5000","codecov":"nyc report --reporter lcovonly && codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"nyc report --reporter lcov && opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --watch","preversion":"npm test","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc -r lcov npm run -s _mocha","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"node test/tools/update-fixtures-ast.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node test/tools/update-fixtures-ast.js","preupdate-fixtures":"npm run -s build","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"repository":{"url":"git+https://github.com/mysticatea/vue-eslint-parser.git","type":"git"},"_npmVersion":"5.3.0","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"8.4.0","dependencies":{"debug":"^3.0.0","espree":"^3.3.2","lodash":"^4.17.4","esquery":"^1.0.0","eslint-scope":"^3.7.1"},"devDependencies":{"nyc":"^11.1.0","mocha":"^3.2.0","warun":"^1.0.0","eslint":"^4.3.0","opener":"^1.4.2","rimraf":"^2.5.4","rollup":"^0.45.2","codecov":"^2.1.0","wait-on":"^2.0.2","chokidar":"^1.7.0","fs-extra":"^4.0.0","dts-bundle":"^0.7.3","typescript":"~2.4.2","@types/node":"^6.0.85","cross-spawn":"^5.1.0","npm-run-all":"^4.0.2","@types/debug":"0.0.29","@types/mocha":"^2.2.41","babel-eslint":"^7.1.1","rollup-watch":"^4.3.1","@types/estree":"0.0.35","@types/lodash":"^4.14.71","eslint-config-mysticatea":"^11.0.0","rollup-plugin-sourcemaps":"^0.4.2","typescript-eslint-parser":"^5.0.1","rollup-plugin-node-resolve":"^3.0.0"},"peerDependencies":{"eslint":">=3.9.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser-2.0.1-beta.0.tgz_1504272718006_0.7606270133983344","host":"s3://npm-registry-packages"}},"2.0.1-beta.1":{"name":"vue-eslint-parser","version":"2.0.1-beta.1","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@2.0.1-beta.1","maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"homepage":"https://github.com/mysticatea/vue-eslint-parser#readme","bugs":{"url":"https://github.com/mysticatea/vue-eslint-parser/issues"},"dist":{"shasum":"7e1b3c0865905264605169497fe9e42d27c1ae60","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-2.0.1-beta.1.tgz","integrity":"sha512-VjbDnSaHM/bFafktgIadCC7AyFXEv3ImBfLYhGZe90TPQVOWLs6xijCcvaADofiFqCnJom6fftAYufdBwr6KVw==","signatures":[{"sig":"MEUCIQCRe8ujHX7EcHWpG5F8wigoqnIFoIkM4vouITTWHthwKQIgG4hNcvPJmGxsy+uWz8yk0yxAIN3ixuLzeYchv5+9HIg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","files":["index.d.ts","index.js","index.js.map"],"engines":{"node":">=4"},"gitHead":"f704031501946ca21bb15b5064df897aa9259d5c","scripts":{"lint":"eslint lib test","test":"nyc npm run _mocha","build":"tsc && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","_mocha":"_mocha \"test/*.js\" --reporter dot --timeout 5000","codecov":"nyc report --reporter lcovonly && codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"nyc report --reporter lcov && opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --watch","preversion":"npm test","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc -r lcov npm run -s _mocha","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"node test/tools/update-fixtures-ast.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node test/tools/update-fixtures-ast.js","preupdate-fixtures":"npm run -s build","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"repository":{"url":"git+https://github.com/mysticatea/vue-eslint-parser.git","type":"git"},"_npmVersion":"5.4.0","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"8.4.0","dependencies":{"debug":"^3.0.0","espree":"^3.3.2","lodash":"^4.17.4","esquery":"^1.0.0","eslint-scope":"^3.7.1"},"devDependencies":{"nyc":"^11.1.0","mocha":"^3.2.0","warun":"^1.0.0","eslint":"^4.3.0","opener":"^1.4.2","rimraf":"^2.5.4","rollup":"^0.45.2","codecov":"^2.1.0","wait-on":"^2.0.2","chokidar":"^1.7.0","fs-extra":"^4.0.0","dts-bundle":"^0.7.3","typescript":"~2.4.2","@types/node":"^6.0.85","cross-spawn":"^5.1.0","npm-run-all":"^4.0.2","@types/debug":"0.0.29","@types/mocha":"^2.2.41","babel-eslint":"^7.1.1","rollup-watch":"^4.3.1","@types/estree":"0.0.35","@types/lodash":"^4.14.71","eslint-config-mysticatea":"^11.0.0","rollup-plugin-sourcemaps":"^0.4.2","typescript-eslint-parser":"^5.0.1","rollup-plugin-node-resolve":"^3.0.0"},"peerDependencies":{"eslint":">=3.9.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser-2.0.1-beta.1.tgz_1504779757725_0.37825552583672106","host":"s3://npm-registry-packages"}},"2.0.1-beta.2":{"name":"vue-eslint-parser","version":"2.0.1-beta.2","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@2.0.1-beta.2","maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"homepage":"https://github.com/mysticatea/vue-eslint-parser#readme","bugs":{"url":"https://github.com/mysticatea/vue-eslint-parser/issues"},"dist":{"shasum":"82e5130ac18ae4b0c894a7c831b55ec92478fa2f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-2.0.1-beta.2.tgz","integrity":"sha512-lmm2WjMeK9o344Cevs+w112g3TomjG6OXvh2J0wBzS1iSVk8n6t6ORRcQwGUfv51azWeE24q0+a2HAcN1HVkhA==","signatures":[{"sig":"MEYCIQDTrjqBNSpND/olGhielbs3ZVEuxDrY8WeHWMVzxeRFzQIhAOC34GS9z21Ji4yl7Dv8YrSmaj6i1c7sysEkIAti/s+T","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","files":["index.d.ts","index.js","index.js.map"],"engines":{"node":">=4"},"gitHead":"492e1ced9c657e719d1c06dd85ea2d499236c9af","scripts":{"lint":"eslint src test --ext .ts","test":"nyc npm run _mocha","build":"tsc && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","_mocha":"_mocha \"test/*.js\" --reporter dot --timeout 10000","codecov":"nyc report --reporter lcovonly && codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"nyc report --reporter lcov && opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --watch","preversion":"npm test","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc -r lcov npm run -s _mocha","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"node test/tools/update-fixtures-ast.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node test/tools/update-fixtures-ast.js","preupdate-fixtures":"npm run -s build","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"repository":{"url":"git+https://github.com/mysticatea/vue-eslint-parser.git","type":"git"},"_npmVersion":"5.5.1","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"8.9.0","dependencies":{"debug":"^3.1.0","espree":"^3.5.1","lodash":"^4.17.4","esquery":"^1.0.0","eslint-scope":"^3.7.1"},"devDependencies":{"nyc":"^11.3.0","mocha":"^4.0.1","warun":"^1.0.0","eslint":"^4.10.0","opener":"^1.4.3","rimraf":"^2.6.2","rollup":"^0.50.0","codecov":"^3.0.0","wait-on":"^2.0.2","chokidar":"^1.7.0","fs-extra":"^4.0.2","dts-bundle":"^0.7.3","typescript":"~2.5.3","@types/node":"^6.0.85","cross-spawn":"^5.1.0","npm-run-all":"^4.1.1","@types/debug":"0.0.29","@types/mocha":"^2.2.41","babel-eslint":"^8.0.2","rollup-watch":"^4.3.1","@types/estree":"0.0.35","@types/lodash":"^4.14.71","eslint-config-mysticatea":"^12.0.0","rollup-plugin-sourcemaps":"^0.4.2","typescript-eslint-parser":"^8.0.1","rollup-plugin-node-resolve":"^3.0.0"},"peerDependencies":{"eslint":">=3.9.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser-2.0.1-beta.2.tgz_1510037655312_0.6599745007697493","host":"s3://npm-registry-packages"}},"2.0.1-beta.3":{"name":"vue-eslint-parser","version":"2.0.1-beta.3","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@2.0.1-beta.3","maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"homepage":"https://github.com/mysticatea/vue-eslint-parser#readme","bugs":{"url":"https://github.com/mysticatea/vue-eslint-parser/issues"},"dist":{"shasum":"cf1391d9c277dd72ee7faa2a2171d71aa1b85f70","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-2.0.1-beta.3.tgz","integrity":"sha512-cI+Hz/x7rH+eEEohz8pKLi6sMacIsCoUimY6a5Bn+QSENRwdjzR9HJD7V6JQHc5GAFdm17jaM4dII0pGhclLbA==","signatures":[{"sig":"MEYCIQD/SVTRnTHfh1xvpicZyYTfUM34AGRwEZwl662G0DIL6wIhALKYv3uN8wMnvtvESw87O6NsvT1j3cs9dH+cfZstTGj9","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","files":["index.d.ts","index.js","index.js.map"],"engines":{"node":">=4"},"gitHead":"22c12d5ba9374792cf25ccd456c96aab7b379b50","scripts":{"lint":"eslint src test --ext .ts","test":"nyc npm run _mocha","build":"tsc && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","_mocha":"_mocha \"test/*.js\" --reporter dot --timeout 10000","codecov":"nyc report --reporter lcovonly && codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"nyc report --reporter lcov && opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --watch","preversion":"npm test","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc -r lcov npm run -s _mocha","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"node test/tools/update-fixtures-ast.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node test/tools/update-fixtures-ast.js","preupdate-fixtures":"npm run -s build","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"repository":{"url":"git+https://github.com/mysticatea/vue-eslint-parser.git","type":"git"},"_npmVersion":"5.6.0","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"9.2.0","dependencies":{"debug":"^3.1.0","espree":"^3.5.2","lodash":"^4.17.4","esquery":"^1.0.0","eslint-scope":"^3.7.1","eslint-visitor-keys":"^1.0.0"},"devDependencies":{"nyc":"^11.4.1","mocha":"^4.0.1","warun":"^1.0.0","eslint":"^4.14.0","opener":"^1.4.3","rimraf":"^2.6.2","rollup":"^0.53.0","codecov":"^3.0.0","wait-on":"^2.0.2","chokidar":"^1.7.0","fs-extra":"^5.0.0","dts-bundle":"^0.7.3","typescript":"~2.6.2","@types/node":"^6.0.85","cross-spawn":"^5.1.0","npm-run-all":"^4.1.2","@types/debug":"0.0.30","@types/mocha":"^2.2.44","babel-eslint":"^8.1.1","rollup-watch":"^4.3.1","@types/estree":"0.0.38","@types/lodash":"^4.14.91","eslint-config-mysticatea":"^12.0.0","rollup-plugin-sourcemaps":"^0.4.2","typescript-eslint-parser":"^11.0.0","rollup-plugin-node-resolve":"^3.0.0"},"peerDependencies":{"eslint":">=3.9.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser-2.0.1-beta.3.tgz_1514196640822_0.6812508595176041","host":"s3://npm-registry-packages"}},"2.0.1":{"name":"vue-eslint-parser","version":"2.0.1","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@2.0.1","maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"homepage":"https://github.com/mysticatea/vue-eslint-parser#readme","bugs":{"url":"https://github.com/mysticatea/vue-eslint-parser/issues"},"dist":{"shasum":"30135771c4fad00fdbac4542a2d59f3b1d776834","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-2.0.1.tgz","integrity":"sha512-X0krSmOiAml2+Ie8BwG7G/eGoQhAOVwa3tsqJ1jhzD2yAFKRPfL7tcFa8/04BRwbjzEJtsWIS64sNb4/+uFLbA==","signatures":[{"sig":"MEUCIQC8MPO480qqyZaVrWwfIwckAj5xu1R9K0so+DpBXzgMCwIgWuqMw6AU7FHhEMC7DiZqmICdC9G0tKxWZTjmniITYtE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","files":["index.d.ts","index.js","index.js.map"],"engines":{"node":">=4"},"gitHead":"340b66a2b6c134143ff93da5b35897579b67d2e7","scripts":{"lint":"eslint src test --ext .ts","test":"nyc npm run _mocha","build":"tsc && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","_mocha":"_mocha \"test/*.js\" --reporter dot --timeout 10000","codecov":"nyc report --reporter lcovonly && codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"nyc report --reporter lcov && opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --watch","preversion":"npm test","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc -r lcov npm run -s _mocha","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"node test/tools/update-fixtures-ast.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node test/tools/update-fixtures-ast.js","preupdate-fixtures":"npm run -s build","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"repository":{"url":"git+https://github.com/mysticatea/vue-eslint-parser.git","type":"git"},"_npmVersion":"5.5.1","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"8.9.3","dependencies":{"debug":"^3.1.0","espree":"^3.5.2","lodash":"^4.17.4","esquery":"^1.0.0","eslint-scope":"^3.7.1","eslint-visitor-keys":"^1.0.0"},"devDependencies":{"nyc":"^11.4.1","mocha":"^4.0.1","warun":"^1.0.0","eslint":"^4.14.0","opener":"^1.4.3","rimraf":"^2.6.2","rollup":"^0.53.0","codecov":"^3.0.0","wait-on":"^2.0.2","chokidar":"^1.7.0","fs-extra":"^5.0.0","dts-bundle":"^0.7.3","typescript":"~2.6.2","@types/node":"^6.0.85","cross-spawn":"^5.1.0","npm-run-all":"^4.1.2","@types/debug":"0.0.30","@types/mocha":"^2.2.44","babel-eslint":"^8.1.1","rollup-watch":"^4.3.1","@types/estree":"0.0.38","@types/lodash":"^4.14.91","eslint-config-mysticatea":"^12.0.0","rollup-plugin-sourcemaps":"^0.4.2","typescript-eslint-parser":"^11.0.0","rollup-plugin-node-resolve":"^3.0.0"},"peerDependencies":{"eslint":">=3.9.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser-2.0.1.tgz_1514693184234_0.8523736961651593","host":"s3://npm-registry-packages"}},"2.0.2":{"name":"vue-eslint-parser","version":"2.0.2","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@2.0.2","maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"homepage":"https://github.com/mysticatea/vue-eslint-parser#readme","bugs":{"url":"https://github.com/mysticatea/vue-eslint-parser/issues"},"dist":{"shasum":"8d603545e9d7c134699075bd1772af1ffd86b744","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-2.0.2.tgz","integrity":"sha512-MQE1Tl4kYhp51opFMtRcZuyrFru/erpRI82w96tPiSnhcwK3QjJejAEJ5RlLcLU07Ua7A1WvhXG3i2KFveeGsA==","signatures":[{"sig":"MEUCIEvWucdhe73NZLqtXefHgvc6x9syhZC3kWc/ga1dJpfTAiEAhAbpZrumb0kD+ep/CiNq47dNzp0nx0Z55zyS9BrNRFs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","files":["index.d.ts","index.js","index.js.map"],"engines":{"node":">=4"},"gitHead":"6111437a4b470fb63227099a69749a7ef2f022a4","scripts":{"lint":"eslint src test --ext .ts","test":"nyc npm run _mocha","build":"tsc && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","_mocha":"_mocha \"test/*.js\" --reporter dot --timeout 10000","codecov":"nyc report --reporter lcovonly && codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"nyc report --reporter lcov && opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --watch","preversion":"npm test","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc -r lcov npm run -s _mocha","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"node test/tools/update-fixtures-ast.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node test/tools/update-fixtures-ast.js","preupdate-fixtures":"npm run -s build","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"repository":{"url":"git+https://github.com/mysticatea/vue-eslint-parser.git","type":"git"},"_npmVersion":"5.6.0","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"9.2.0","dependencies":{"debug":"^3.1.0","espree":"^3.5.2","lodash":"^4.17.4","esquery":"^1.0.0","eslint-scope":"^3.7.1","eslint-visitor-keys":"^1.0.0"},"devDependencies":{"nyc":"^11.4.1","mocha":"^4.0.1","warun":"^1.0.0","eslint":"^4.14.0","opener":"^1.4.3","rimraf":"^2.6.2","rollup":"^0.53.0","codecov":"^3.0.0","wait-on":"^2.0.2","chokidar":"^1.7.0","fs-extra":"^5.0.0","dts-bundle":"^0.7.3","typescript":"~2.6.2","@types/node":"^6.0.85","cross-spawn":"^5.1.0","npm-run-all":"^4.1.2","@types/debug":"0.0.30","@types/mocha":"^2.2.44","babel-eslint":"^8.1.1","rollup-watch":"^4.3.1","@types/estree":"0.0.38","@types/lodash":"^4.14.91","eslint-config-mysticatea":"^12.0.0","rollup-plugin-sourcemaps":"^0.4.2","typescript-eslint-parser":"^11.0.0","rollup-plugin-node-resolve":"^3.0.0"},"peerDependencies":{"eslint":">=3.9.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser-2.0.2.tgz_1515326728799_0.07105589751154184","host":"s3://npm-registry-packages"}},"2.0.3":{"name":"vue-eslint-parser","version":"2.0.3","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@2.0.3","maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"homepage":"https://github.com/mysticatea/vue-eslint-parser#readme","bugs":{"url":"https://github.com/mysticatea/vue-eslint-parser/issues"},"dist":{"shasum":"c268c96c6d94cfe3d938a5f7593959b0ca3360d1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-2.0.3.tgz","fileCount":6,"integrity":"sha512-ZezcU71Owm84xVF6gfurBQUGg8WQ+WZGxgDEQu1IHFBZNx7BFZg3L1yHxrCBNNwbwFtE1GuvfJKMtb6Xuwc/Bw==","signatures":[{"sig":"MEQCIBCeYDS7O+Cw8x8ab6yJRYVMZI5Oex3OWNmz3FAg278SAiAlY9F53YkFXODD65jH3OFU8bwbUsba+PNBrE71zrudhg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":665281},"main":"index.js","files":["index.d.ts","index.js","index.js.map"],"engines":{"node":">=4"},"gitHead":"de3fe7f18feaebdf61dc1c9661d8446b074c41c2","scripts":{"lint":"eslint src test --ext .ts","test":"nyc npm run _mocha","build":"tsc && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","_mocha":"_mocha \"test/*.js\" --reporter dot --timeout 10000","codecov":"nyc report --reporter lcovonly && codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"nyc report --reporter lcov && opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --watch","preversion":"npm test","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc -r lcov npm run -s _mocha","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"node test/tools/update-fixtures-ast.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node test/tools/update-fixtures-ast.js","preupdate-fixtures":"npm run -s build","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"repository":{"url":"git+https://github.com/mysticatea/vue-eslint-parser.git","type":"git"},"_npmVersion":"5.6.0","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"9.2.0","dependencies":{"debug":"^3.1.0","espree":"^3.5.2","lodash":"^4.17.4","esquery":"^1.0.0","eslint-scope":"^3.7.1","eslint-visitor-keys":"^1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^11.4.1","mocha":"^4.0.1","warun":"^1.0.0","eslint":"^4.14.0","opener":"^1.4.3","rimraf":"^2.6.2","rollup":"^0.53.0","codecov":"^3.0.0","wait-on":"^2.0.2","chokidar":"^1.7.0","fs-extra":"^5.0.0","dts-bundle":"^0.7.3","typescript":"~2.6.2","@types/node":"^6.0.85","cross-spawn":"^5.1.0","npm-run-all":"^4.1.2","@types/debug":"0.0.30","@types/mocha":"^2.2.44","babel-eslint":"^8.1.1","rollup-watch":"^4.3.1","@types/estree":"0.0.38","@types/lodash":"^4.14.91","eslint-config-mysticatea":"^12.0.0","rollup-plugin-sourcemaps":"^0.4.2","typescript-eslint-parser":"^11.0.0","rollup-plugin-node-resolve":"^3.0.0"},"peerDependencies":{"eslint":">=3.9.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser_2.0.3_1518861075518_0.08373813688075593","host":"s3://npm-registry-packages"}},"3.0.0":{"name":"vue-eslint-parser","version":"3.0.0","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@3.0.0","maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"homepage":"https://github.com/mysticatea/vue-eslint-parser#readme","bugs":{"url":"https://github.com/mysticatea/vue-eslint-parser/issues"},"dist":{"shasum":"e9bd9339c1595651fb045ef56ae8bd73556c93dc","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-3.0.0.tgz","fileCount":6,"integrity":"sha512-xQhJwS1Fmfa3asMhn4Pg58YteG0ebVFWMIycrBPgQuDRg+JcIh2h7KagoNDDuwoDlaMpZ1pn85v6jFGhV0QfWQ==","signatures":[{"sig":"MEUCID0JjebV4B0VomJ4DFi/6zcchgK54S8OEtyI4clvGl4WAiEApPgdKTbvPu7OeAiBRsyHb+/w1IRczV8AaHlAfL5vqXE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":676328,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbOwlsCRA9TVsSAnZWagAAH/UP/iXvd0tTvKTSDqJh3aM0\npSWHk0GLbAX8+DOl/gZvSX/j2UrUgHndjewDGEfUuk632n10H0q2X8NZtVje\nIiA4vjqE7Y3oYDtqFHo4YbJeuL5l3aorag88sd2YpWmvT/B6RKAHosoC7Phh\nK6wuuybMHBeHUNbg72pbSQ8aCajAVDmILVKvEGdlNw8R8u7RLmQEead53Igd\nu2HRVJBhRqWyLKlxIg6lrl11+R5Rhk2z4TYrYYZKxEoJlmEXZl8sSV3pwuIB\nXrWXH4rPh7fKcMD1P/Kp8nJ0iFng12NIJqTPFeW075aG01QRGpnqOv3cpWtY\nZ95QvMZafzj4ozbTsF1m6V5LD6aRkPBUskZqnHoaNSLq6Wc6QzHJkdIDPYjG\nC40FQOcDDa1uJPPFln/SyBsx9RpOLiO9ULoWJpRkt5SMlJj4eStSKEWOUGMB\nojU6UNYoiIxxkqNqZ2AVHE273E7BVqEkj7wQVQRyUqun/J0XKXrQcvI/ZoPX\nb7b9/b4Jf5BDAFH06rkcrC/QZ4JGJ3OYL6rnU/dmG1J0Xpov8X7KZ7MF09k6\npDcLTEHIVNylsHIaS/j1o5YDzsPOpFyTjQpjtVUQs7dFY1FVaRKbFS/aDkee\nkKgSe6srQtLqgQT4NoEFppG2+QucNxHXku56s+So/No7HjH5x8e4Rkrz2ENH\nG0ug\r\n=zG9A\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","files":["index.*"],"engines":{"node":">=6.5"},"gitHead":"7a9bde94f0403a52c31ff9eeb728ae918b37a12d","scripts":{"lint":"eslint src test --ext .js,.ts","test":"nyc npm run _mocha","build":"tsc && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","_mocha":"_mocha \"test/*.js\" --reporter dot --timeout 10000","codecov":"nyc report --reporter lcovonly && codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"nyc report --reporter lcov && opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --watch","preversion":"npm test","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc -r lcov npm run -s _mocha","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"node scripts/update-fixtures-ast.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node scripts/update-fixtures-ast.js","preupdate-fixtures":"npm run -s build","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"repository":{"url":"git+https://github.com/mysticatea/vue-eslint-parser.git","type":"git"},"_npmVersion":"6.1.0","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"10.5.0","dependencies":{"debug":"^3.1.0","espree":"^4.0.0","lodash":"^4.17.10","esquery":"^1.0.1","eslint-scope":"^4.0.0","eslint-visitor-keys":"^1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^12.0.2","mocha":"^5.2.0","warun":"^1.0.0","eslint":"^5.0.1","opener":"^1.4.3","rimraf":"^2.6.2","rollup":"^0.60.7","codecov":"^3.0.2","wait-on":"^2.1.0","chokidar":"^2.0.4","fs-extra":"^6.0.1","dts-bundle":"^0.7.3","typescript":"^2.9.2","@types/node":"^6.0.113","cross-spawn":"^6.0.5","npm-run-all":"^4.1.3","@types/debug":"0.0.30","@types/mocha":"^5.2.4","babel-eslint":"^8.2.5","rollup-watch":"^4.3.1","@types/estree":"0.0.38","@types/lodash":"^4.14.110","rollup-plugin-sourcemaps":"^0.4.2","typescript-eslint-parser":"^16.0.1","@mysticatea/eslint-plugin":"^5.0.1","rollup-plugin-node-resolve":"^3.3.0"},"peerDependencies":{"eslint":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser_3.0.0_1530595692087_0.5046136339627325","host":"s3://npm-registry-packages"}},"3.1.0":{"name":"vue-eslint-parser","version":"3.1.0","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@3.1.0","maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"homepage":"https://github.com/mysticatea/vue-eslint-parser#readme","bugs":{"url":"https://github.com/mysticatea/vue-eslint-parser/issues"},"dist":{"shasum":"9c8d7239cac950f62885afdf3f1e1d5c85f3b5a1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-3.1.0.tgz","fileCount":6,"integrity":"sha512-vkFlFH3QSeKqeLOBFuMYlfuqAPqNEoDJn8Rwbim8z5JJ758oJxmi06AtPx59nvpUgpkEqCkqYbZ50bbByBtf0w==","signatures":[{"sig":"MEUCIAW/HsGYvcJZDFag6HJQYbQ7EZfvRxFA2aS6kTVXMQ0NAiEAhQnP2NUno/lmL0GuSp++CEwiSpRaA/JXUha2fGAxfzo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":677468,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbQzRzCRA9TVsSAnZWagAAiSoP/i00Hkd1u+5udipAoRIX\nVJXrDF7Ysi3VBB+Vzl9WgFB1e5rICv4F7Y68fP3fi2cmv/57uyRcpM5NlUYN\nNI/J2NYRKqGcr2vucGXpzS16Mw2/V/mxMPigwuouYQdAmljjIpAkwSlJoZbe\nZoqQtTom4CHlh4XXht1/iHk08gnfH3OQh6KPHs3HMwlifO8laxVUmwGuJcQ+\nyhbxUUwK4mLlL/Lhb47dV6J+KU2bboFdSihd6TzmfumKmFd9nec1c0sqtJSa\nKumNLIGl7PFJAoxKD8ToLr+RcPYJt3FQ1I4JMwrHREKkdWOA6vkn3U6nxfeQ\ndkyzLr4yOZz0XTTNDzDF8Dob37OaVFGmGK10kbrII4g4ixwyv0B8vxV/7ZQu\nQQsQ2q3X9hQte4Tk0d3TIYGylR65vxUCqc98p2Y8/XCS1TRogtIzsJoOWwzC\nPguWlhaOK/QgQe1MkKUmAJ6ilcqFBzV+4r4DIesVF7ArWVxvgZG3SC227CcC\nGgzAuwHWJOZwv1qwa8QR2fgTKqig+Bgdd1zIdtk3OZEAEOex7x58u/DsdSOm\nrPV2pcfLw7D0b1wQJ/FD2pAM1/26xWybkPgCdTdJYJP4xwbe4tIPjnILyFe6\nkeBKXnApsBd+UXUDt3CFB8oAEDzCq+2YQnoFYo+kRNh9w3g7EB+fssmkD+Fy\ns4XC\r\n=Sbun\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","files":["index.*"],"engines":{"node":">=6.5"},"gitHead":"12079c4bd962f38d1d8abc816a59e93ebbf57733","scripts":{"lint":"eslint src test --ext .js,.ts","test":"nyc npm run _mocha","build":"tsc && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","_mocha":"_mocha \"test/*.js\" --reporter dot --timeout 10000","codecov":"nyc report --reporter lcovonly && codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"nyc report --reporter lcov && opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --watch","preversion":"npm test","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc -r lcov npm run -s _mocha","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"node scripts/update-fixtures-ast.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node scripts/update-fixtures-ast.js","preupdate-fixtures":"npm run -s build","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"repository":{"url":"git+https://github.com/mysticatea/vue-eslint-parser.git","type":"git"},"_npmVersion":"6.1.0","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"10.5.0","dependencies":{"debug":"^3.1.0","espree":"^4.0.0","lodash":"^4.17.10","esquery":"^1.0.1","eslint-scope":"^4.0.0","eslint-visitor-keys":"^1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^12.0.2","mocha":"^5.2.0","warun":"^1.0.0","eslint":"^5.0.1","opener":"^1.4.3","rimraf":"^2.6.2","rollup":"^0.60.7","codecov":"^3.0.2","wait-on":"^2.1.0","chokidar":"^2.0.4","fs-extra":"^6.0.1","dts-bundle":"^0.7.3","typescript":"^2.9.2","@types/node":"^6.0.113","cross-spawn":"^6.0.5","npm-run-all":"^4.1.3","@types/debug":"0.0.30","@types/mocha":"^5.2.4","babel-eslint":"^8.2.5","rollup-watch":"^4.3.1","@types/estree":"0.0.38","@types/lodash":"^4.14.110","rollup-plugin-sourcemaps":"^0.4.2","typescript-eslint-parser":"^16.0.1","@mysticatea/eslint-plugin":"^5.0.1","rollup-plugin-node-resolve":"^3.3.0"},"peerDependencies":{"eslint":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser_3.1.0_1531130995757_0.6178214606346111","host":"s3://npm-registry-packages"}},"3.1.1":{"name":"vue-eslint-parser","version":"3.1.1","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@3.1.1","maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"homepage":"https://github.com/mysticatea/vue-eslint-parser#readme","bugs":{"url":"https://github.com/mysticatea/vue-eslint-parser/issues"},"dist":{"shasum":"162050c101a4f46661141992f6ceb3010ab7d68a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-3.1.1.tgz","fileCount":6,"integrity":"sha512-niAjtuJrEGXFHmDBkpLTHQxp1fGN1I8T075Jz8VQEVxBMvoaGS8sKCZKIAwf0NKaLu6FERmrR4VEUCEp0m/z9Q==","signatures":[{"sig":"MEYCIQDeZsuuhIrZIk3ycJgOaOFP291eWBSkAZMsBKlMZF7orQIhAJryaaZLQH9xPYMfCmVo25wmo98heUeCG2cURpNalMjD","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":677502,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbUZGJCRA9TVsSAnZWagAAk4EQAJ0pXh6O9ACf4iTvxnsn\n9scwVI9mMST8P6x+YKDz76dyzjdj94lB2XkXPOAxb5DMcV5vExNf4ElHlFR0\n9JP26sbLFGWPjoD7jwYvr/WuKObzvYPy3aSia2XBeU86ukId5ezsYm7g15Xx\nQueLQmyy8A1VrtfTfV8n66Ps29rEHr8VkPL6g+2zAuEpdDAwBhx6HEZBZMvB\n/7DAQ+/Xk0eR0CyWvCzOO7dmLN+VEEU5tXiPomWj/rDB/e0zb2+s5HghteSf\nZDqwGnakEuR+bJfUkYjpd/5uRdIXpSZxTvTe3xaXod19FMv3jZ7iWym1gAMF\nHcwduDuZbiUb/ZhBE90VaHqJ/Goa6kUomz1NPs/vfOKtB7V2gSBcs8AxpJHI\ngImNSYG1X4nxzHe9EUkBzHt5QgxddbBY3KnPTu7ujLuIQbFJdT2pHB9rDlr+\nYsY6XdLQdamb+hnMGE7urd7ko4xEJCm4Ky/jQk9Ld/TjZWNF4ZN2poJDm++r\nZhR/vwfxN7A0xn53GgvlsCa0aAKxCY6HZ0cz/3HBRV7lOzlhWxIG3KZiC0Xf\n82TZfO1PCwOIzyMZPSFbKXl5ml+p5MhSnHBEvVg5Kh21NuDqvRVppYe4kS/V\nxlzkw3dpKY6q+3INAtDmSifTHTZG3TU22O/mtgR+aqYSJMxQ1/CVfs2WVIe7\nxwOI\r\n=+raA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","files":["index.*"],"engines":{"node":">=6.5"},"gitHead":"e564707373bf4af0543736346606092ff46fe6b9","scripts":{"lint":"eslint src test --ext .js,.ts","test":"nyc npm run _mocha","build":"tsc && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","_mocha":"_mocha \"test/*.js\" --reporter dot --timeout 10000","codecov":"nyc report --reporter lcovonly && codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"nyc report --reporter lcov && opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --watch","preversion":"npm test","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc -r lcov npm run -s _mocha","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"node scripts/update-fixtures-ast.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node scripts/update-fixtures-ast.js","preupdate-fixtures":"npm run -s build","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"repository":{"url":"git+https://github.com/mysticatea/vue-eslint-parser.git","type":"git"},"_npmVersion":"6.1.0","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"10.5.0","dependencies":{"debug":"^3.1.0","espree":"^4.0.0","lodash":"^4.17.10","esquery":"^1.0.1","eslint-scope":"^4.0.0","eslint-visitor-keys":"^1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^12.0.2","mocha":"^5.2.0","warun":"^1.0.0","eslint":"^5.0.1","opener":"^1.4.3","rimraf":"^2.6.2","rollup":"^0.60.7","codecov":"^3.0.2","wait-on":"^2.1.0","chokidar":"^2.0.4","fs-extra":"^6.0.1","dts-bundle":"^0.7.3","typescript":"^2.9.2","@types/node":"^6.0.113","cross-spawn":"^6.0.5","npm-run-all":"^4.1.3","@types/debug":"0.0.30","@types/mocha":"^5.2.4","babel-eslint":"^8.2.5","rollup-watch":"^4.3.1","@types/estree":"0.0.38","@types/lodash":"^4.14.110","rollup-plugin-sourcemaps":"^0.4.2","typescript-eslint-parser":"^16.0.1","@mysticatea/eslint-plugin":"^5.0.1","rollup-plugin-node-resolve":"^3.3.0"},"peerDependencies":{"eslint":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser_3.1.1_1532072328823_0.24579593618810391","host":"s3://npm-registry-packages"}},"3.2.0":{"name":"vue-eslint-parser","version":"3.2.0","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@3.2.0","maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"homepage":"https://github.com/mysticatea/vue-eslint-parser#readme","bugs":{"url":"https://github.com/mysticatea/vue-eslint-parser/issues"},"dist":{"shasum":"25260b71e166f637134d078e5414b79e4de1d0f5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-3.2.0.tgz","fileCount":6,"integrity":"sha512-5YePd3tc3nfqf3dRqDf4H8YKjT868LmP5RN8PfhGSIBZL6lsZZcqZ4/87Vh82ihcH3qk5hVDtDRHFs883lGmyA==","signatures":[{"sig":"MEUCIQDVxTDz5DS/5kyEfa0cWRkfvC0hyz2cTUvscGxP10SIugIgVzrBTf+VZO9F0Wqhk1ou2FriwCG8/mXYXkDxQjSM+m8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":680909,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbVsXYCRA9TVsSAnZWagAAE6YP/3hxuCP9s1WTXMUKZbHC\ndd9G2uJXwsxc5WT3f/V17qVOSm7Y1vLaNdru/0My+BNXD/4xnQRrbABsWHWF\n1BYwZpMiL+SjX+GGNC0mkv3rfvI45M12uG06zpsr3sq4R1mfnQUOpop1UfS6\ntSibttEmfFci8U1W+2YMFANG8VZNlHujzUixXc1kIH+xun72KoIE1fcGtn9y\ndOpwEl+UchsQFVFzhI+D4UQ00ex4aZuRchs0uCiscnL0DOFvt3MS57kxCfMu\nZ1D7Az3IY/1jsqToOXIrWBV4kIiJWL+uRM+EWcZwaru8sCvzMsCavrHPXAHM\noL+KPiHyiRviJTOlXly6hgtH9Eka2km3SYqCkeh1blAdPx4hrbIXhTat+ajo\nyVaQtajq2PurNSVJYfBawiPr5CF9K8ZyML2o7heUPUnRF5x/IYHlegcfCRNP\nWLxMpCSpXVKrRrum5XRTpLoQ6YroLdcoebpCq9ziPGlFHpTcnc5tWsH0+Dav\nQCLqxq5Y984YM3h+qCCl1QWerb6h66HPLqRPn5nT96v5hc5x+FcIIXavrIlp\nyt8hQpin70OeTDAN04xmjGMebFLmngEk2hWIOpb9Y772/Q2HoKzb/LK/lU+m\n8u9OURF7MEj2X9kpcCyiEKLUnPPIPG7DHCouLNNyIm2Vab2iNV10CR6elmE0\nE47D\r\n=gdq3\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","files":["index.*"],"engines":{"node":">=6.5"},"gitHead":"51a4bab0d688a7fe2bf774ec89d9a758f212dcad","scripts":{"lint":"eslint src test --ext .js,.ts","test":"nyc npm run _mocha","build":"tsc && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","_mocha":"_mocha \"test/*.js\" --reporter dot --timeout 10000","codecov":"nyc report --reporter lcovonly && codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"nyc report --reporter lcov && opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --watch","preversion":"npm test","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc -r lcov npm run -s _mocha","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"node scripts/update-fixtures-ast.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node scripts/update-fixtures-ast.js","preupdate-fixtures":"npm run -s build","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"repository":{"url":"git+https://github.com/mysticatea/vue-eslint-parser.git","type":"git"},"_npmVersion":"6.1.0","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"10.5.0","dependencies":{"debug":"^3.1.0","espree":"^4.0.0","lodash":"^4.17.10","esquery":"^1.0.1","eslint-scope":"^4.0.0","eslint-visitor-keys":"^1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^12.0.2","mocha":"^5.2.0","warun":"^1.0.0","eslint":"^5.0.1","opener":"^1.4.3","rimraf":"^2.6.2","rollup":"^0.60.7","codecov":"^3.0.2","wait-on":"^2.1.0","chokidar":"^2.0.4","fs-extra":"^6.0.1","dts-bundle":"^0.7.3","typescript":"^2.9.2","@types/node":"^6.0.113","cross-spawn":"^6.0.5","npm-run-all":"^4.1.3","@types/debug":"0.0.30","@types/mocha":"^5.2.4","babel-eslint":"^8.2.5","rollup-watch":"^4.3.1","@types/estree":"0.0.38","@types/lodash":"^4.14.110","rollup-plugin-sourcemaps":"^0.4.2","typescript-eslint-parser":"^16.0.1","@mysticatea/eslint-plugin":"^5.0.1","rollup-plugin-node-resolve":"^3.3.0"},"peerDependencies":{"eslint":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser_3.2.0_1532413400372_0.28089341556399217","host":"s3://npm-registry-packages"}},"3.2.1":{"name":"vue-eslint-parser","version":"3.2.1","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@3.2.1","maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"homepage":"https://github.com/mysticatea/vue-eslint-parser#readme","bugs":{"url":"https://github.com/mysticatea/vue-eslint-parser/issues"},"dist":{"shasum":"b21a138a2347b61a04bad9926a2dd4255b48718a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-3.2.1.tgz","fileCount":6,"integrity":"sha512-itB0sUobbpHG0bP5vSX7buBxDpars3IbAjHLHH+bQRLAqVcfyIb9JBOVhHQkqXUVeGAg+WLlyCmsBKCKAYgMlA==","signatures":[{"sig":"MEYCIQDVaTBLGlXiarK5QcuPaqrDsR+K/0EhvpH9z66qeoRVBgIhAPi1jdpsznY/LyMRKlQsustWC44ImSmuoL48lMp+fjuu","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":681915,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbVt9cCRA9TVsSAnZWagAAxmEP/2CocQLpjZ65y7XjonRS\nh06ku4x7Nh59oSn4p3YDDbZafyzHWkyvqXh+CmQsLcbF0fAlcfKB4RCdjrF5\nH+68wIjTutySA0ayCoNF2yTsK+uAD9tN13qJOHO6sNbp2Yk3npIwPpbLz5Y2\nnJ6x58okM/4Adj8Dogzxt8H8+7wXj0Bzsbqz8vShhQ7AhSzDKJYPplRMxPI5\n8WdjNZ/3clWgnRz3amytd+AK3H2+X3mBy6BeZZgcZADuU43yQGrn5beMoSg/\n4hCYc5paehnxOLEC8XYRPjOsOj1xTqARj6uxcGOVvcnpedw2OcPkIHe6qdJY\nJqkXgxvqVfCQlzrXFsQU34y/lSSu4PuVBRlwBhZSF2bTXYBcWKJohFIrdMEd\nt9UdGphIUsxxoWVS74zbHQE6kZbwvlNzL6OJbPi9tLDBycK6xvLYUuj0ExM6\nak/FMNGO78qg/IbVt+27nfmD26QNtdYFsCvDm6gkuKLA/8XxqiBsfu5PxHKh\njMtHR+Tgj3oCTLFjBXPurycYd71+pIct2xj8EUeKw9tn7+ekh/qY0cf8G4s0\n/yNpeBFqlv9Koh15T9GY+cdYGtYQwCpQibhjXprllGKS2dyVr8hPeboNllZr\n3nnCCoSXAWq6d9WfbmXppocx/4ZATi8ImJU61IGUjZbBnO7dM7cfPiuJ1Yjz\nU/zU\r\n=PGnx\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","files":["index.*"],"engines":{"node":">=6.5"},"gitHead":"a6156b8c87395ecda8100a670e1135833e417ddb","scripts":{"lint":"eslint src test --ext .js,.ts","test":"nyc npm run _mocha","build":"tsc && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","_mocha":"_mocha \"test/*.js\" --reporter dot --timeout 10000","codecov":"nyc report --reporter lcovonly && codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"nyc report --reporter lcov && opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --watch","preversion":"npm test","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc -r lcov npm run -s _mocha","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"node scripts/update-fixtures-ast.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node scripts/update-fixtures-ast.js","preupdate-fixtures":"npm run -s build","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"repository":{"url":"git+https://github.com/mysticatea/vue-eslint-parser.git","type":"git"},"_npmVersion":"6.1.0","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"10.5.0","dependencies":{"debug":"^3.1.0","espree":"^4.0.0","lodash":"^4.17.10","esquery":"^1.0.1","eslint-scope":"^4.0.0","eslint-visitor-keys":"^1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^12.0.2","mocha":"^5.2.0","warun":"^1.0.0","eslint":"^5.0.1","opener":"^1.4.3","rimraf":"^2.6.2","rollup":"^0.60.7","codecov":"^3.0.2","wait-on":"^2.1.0","chokidar":"^2.0.4","fs-extra":"^6.0.1","dts-bundle":"^0.7.3","typescript":"^2.9.2","@types/node":"^6.0.113","cross-spawn":"^6.0.5","npm-run-all":"^4.1.3","@types/debug":"0.0.30","@types/mocha":"^5.2.4","babel-eslint":"^8.2.5","rollup-watch":"^4.3.1","@types/estree":"0.0.38","@types/lodash":"^4.14.110","rollup-plugin-sourcemaps":"^0.4.2","typescript-eslint-parser":"^16.0.1","@mysticatea/eslint-plugin":"^5.0.1","rollup-plugin-node-resolve":"^3.3.0"},"peerDependencies":{"eslint":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser_3.2.1_1532419932624_0.3589801430148616","host":"s3://npm-registry-packages"}},"3.2.2":{"name":"vue-eslint-parser","version":"3.2.2","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@3.2.2","maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"homepage":"https://github.com/mysticatea/vue-eslint-parser#readme","bugs":{"url":"https://github.com/mysticatea/vue-eslint-parser/issues"},"dist":{"shasum":"47c971ee4c39b0ee7d7f5e154cb621beb22f7a34","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-3.2.2.tgz","fileCount":6,"integrity":"sha512-dprI6ggKCTwV22r+i8dtUGquiOCn063xyDmb7BV/BjG5Oc/m5EoMNrWevpvTcrlGuFZmYVPs5fgsu8UIxmMKzg==","signatures":[{"sig":"MEUCIAYPtaqLE79AK1qXgk/8uVmCYVaUaHek86wuh27qmWw9AiEA1jJNrGRdiFiRtxdwJY56s8toJzMkh2TmfAl47BtPX0Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":682068,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbWCIZCRA9TVsSAnZWagAAEfkP/RhBwNln23eazPtfw8mW\nK8DznCt2qIAzB+baBp5PMrU1cU9EfNfebTIKrgdBthqX76KmNZNcyxFxo3TJ\nqeHb/nkpIM/1m67lYNa6tG0pVQZ9HMgJKpmWzUjrfCxokB7RK4JdThZ6NtU4\nq2uKASkraup6uhy80n3FaL79YzVupZ2PZjFCYYIY5Q77WCGG/UBjEfi/PDvE\nPrptyqlCNz5BJODGti1zw8rvLLQPDQUgWaTl64OljHN9tc672E8O4BW2n+1m\nIbfJZXbRZtBKne47iIV5Vlryeva7PD6FlVUyiWDMb1uJHg/5UjbMrZeF1eX/\nWCMrPEj5fMD8TrgUi56EhUEC4YhmLX7GY3gpBcOWZbN4Y22kgBzOL+R89eEG\nd2TlI1uaiCiUax+sg+pvx71c85GrPbtVbp0CO+l/fCvd/ijk/rp+DFsEUrjp\npK1lTLnioF6I4KZ74Id3G8t+ObsYcXfjHNNE9aVKiVP2Oq8b6hrkYXCT6CNA\nwFo4HFs7FHs2YAlF6++HN+FQ4TFyBJBkpRxfrlFj91vZ6dUNlvdcU5JVfLnw\ncpmnIRdkGEfTsyyX2o5S+gJCDtQnRRvQYFfe/s6IjRMjm+SJh7Sc1iirPWos\nPx0Ocs01a2ywJ/zaGtszBgf7vxG3G8qK64Sdo+Lx2N8/LtiRVfs37ciOS3Ud\nd7Kk\r\n=F8OZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","files":["index.*"],"engines":{"node":">=6.5"},"gitHead":"da877ec63b2314e6ee0e9f7df9b4e4aa3b359bc5","scripts":{"lint":"eslint src test --ext .js,.ts","test":"nyc npm run _mocha","build":"tsc && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","_mocha":"_mocha \"test/*.js\" --reporter dot --timeout 10000","codecov":"nyc report --reporter lcovonly && codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"nyc report --reporter lcov && opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --watch","preversion":"npm test","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc -r lcov npm run -s _mocha","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"node scripts/update-fixtures-ast.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node scripts/update-fixtures-ast.js","preupdate-fixtures":"npm run -s build","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"repository":{"url":"git+https://github.com/mysticatea/vue-eslint-parser.git","type":"git"},"_npmVersion":"6.2.0","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"10.5.0","dependencies":{"debug":"^3.1.0","espree":"^4.0.0","lodash":"^4.17.10","esquery":"^1.0.1","eslint-scope":"^4.0.0","eslint-visitor-keys":"^1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^12.0.2","mocha":"^5.2.0","warun":"^1.0.0","eslint":"^5.0.1","opener":"^1.4.3","rimraf":"^2.6.2","rollup":"^0.60.7","codecov":"^3.0.2","wait-on":"^2.1.0","chokidar":"^2.0.4","fs-extra":"^6.0.1","dts-bundle":"^0.7.3","typescript":"^2.9.2","@types/node":"^6.0.113","cross-spawn":"^6.0.5","npm-run-all":"^4.1.3","@types/debug":"0.0.30","@types/mocha":"^5.2.4","babel-eslint":"^8.2.5","rollup-watch":"^4.3.1","@types/estree":"0.0.38","@types/lodash":"^4.14.110","rollup-plugin-sourcemaps":"^0.4.2","typescript-eslint-parser":"^16.0.1","@mysticatea/eslint-plugin":"^5.0.1","rollup-plugin-node-resolve":"^3.3.0"},"peerDependencies":{"eslint":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser_3.2.2_1532502552929_0.5897785699490634","host":"s3://npm-registry-packages"}},"3.3.0":{"name":"vue-eslint-parser","version":"3.3.0","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@3.3.0","maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"homepage":"https://github.com/mysticatea/vue-eslint-parser#readme","bugs":{"url":"https://github.com/mysticatea/vue-eslint-parser/issues"},"dist":{"shasum":"06b195d18bb66ac72c6b7f2469b549109a61d72c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-3.3.0.tgz","fileCount":6,"integrity":"sha512-gUsSihfwXmSIbxtqq8YT9CBdkqTHj+6ahj+glY6vJSYu0ylMHQ1A9ClC1YkF5YLRs+WShAwJklXfiL8CEZhgog==","signatures":[{"sig":"MEQCIECvhyGWQE/Dq+Cft0xLQqsbkCxlcsKWSobaVPgHerjhAiBC1rGExX64xHe/9JLCc0WTh1Uv+FpApkVHvdo15uiPcA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":649976,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb+PQQCRA9TVsSAnZWagAAn9IP/iSad+DxE8xY/mBrlhKL\nPo/rjelcAgwrow0E7BPbrCsdC8tbgHFL/Pg2XMYU95Y5M+UXcvrR0oIxwz18\nGg+HosbgkOAcT2arbGsJmCzCQ2VjEVQYGD9eF10YBpF8ewdpqUVQs8nN8Vyd\nOkZFb69aXUD3BBbYeOKPPxTpnLNFGJFKPkgaY1eGzJa4+FCNz/E3stQq6H8o\nQCwvg3+HJTHltBIg4GT4X2ub1LizIbrBPwyPTU0HxCCdEBjw/ccEAxSOZ/e4\nBvkYkFDkehyhrAndm7r0iE0QY02DgKgjKJsxFp5SjxYf3iF9xQO7nK1p7dGj\nHEmh+PfvK6DPQqcTK9idIOD9h5yiTLbJwbr5Kg1P9rmJOva8ATcR7YQmpoxS\n9H+ZeupLqBBqJGeTIDTuGXhWBq4IdHPRuYxlyEW8GWgzNbgrB18aVRhNniRH\nfewzoRyMk5/YfjMS/gsFhNnVUHwQxGLvTVyv4vhQGzhHYyjqWRxtqedIAzMt\nJl+eVv643BgvwDLsC8z7ozbIOfYpTZIpWgT0jvgEIERxEeBhNLte3/CAcJXf\nl6UfD0sNz7CWfNTb4XSN1ax0NE4YEKAEpeaAYPS4qLhXj5u9FK/ZLS2abOuj\n6x0nMj+8DkVnbRCvv4DoihVblM0aqAz0UKSWFw2ZI/2AjjuFpNCmE7PgJIV7\n1TZb\r\n=QxwN\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=6.5"},"gitHead":"59d52edb9d01989713f06c82618ce5c2b74a5646","scripts":{"lint":"eslint src test --ext .js,.ts","test":"nyc npm run _mocha","build":"tsc && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","_mocha":"_mocha \"test/*.js\" --reporter dot --timeout 10000","codecov":"nyc report --reporter lcovonly && codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"nyc report --reporter lcov && opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --watch","preversion":"npm test","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc -r lcov npm run -s _mocha","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"node scripts/update-fixtures-ast.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node scripts/update-fixtures-ast.js","preupdate-fixtures":"npm run -s build","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"repository":{"url":"git+https://github.com/mysticatea/vue-eslint-parser.git","type":"git"},"_npmVersion":"6.4.1","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"11.1.0","dependencies":{"debug":"^4.1.0","espree":"^4.1.0","lodash":"^4.17.11","esquery":"^1.0.1","eslint-scope":"^4.0.0","eslint-visitor-keys":"^1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^13.1.0","acorn":"^6.0.4","mocha":"^5.2.0","warun":"^1.0.0","eslint":"^5.9.0","opener":"^1.5.1","rimraf":"^2.6.2","rollup":"^0.67.1","codecov":"^3.1.0","wait-on":"^3.2.0","chokidar":"^2.0.4","fs-extra":"^7.0.1","acorn-jsx":"^5.0.0","dts-bundle":"^0.7.3","typescript":"~3.1.6","@types/node":"^10.12.9","cross-spawn":"^6.0.5","npm-run-all":"^4.1.3","@types/debug":"0.0.30","@types/mocha":"^5.2.4","babel-eslint":"^10.0.1","rollup-watch":"^4.3.1","@types/estree":"0.0.38","@types/lodash":"^4.14.118","rollup-plugin-sourcemaps":"^0.4.2","typescript-eslint-parser":"^21.0.1","@mysticatea/eslint-plugin":"^7.0.0","rollup-plugin-node-resolve":"^3.4.0"},"peerDependencies":{"eslint":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser_3.3.0_1543042063934_0.0758401160271478","host":"s3://npm-registry-packages"}},"4.0.0":{"name":"vue-eslint-parser","version":"4.0.0","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@4.0.0","maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"homepage":"https://github.com/mysticatea/vue-eslint-parser#readme","bugs":{"url":"https://github.com/mysticatea/vue-eslint-parser/issues"},"dist":{"shasum":"d94e693f20efae43086d859ddcd65d06dd5afb98","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-4.0.0.tgz","fileCount":6,"integrity":"sha512-EppTxlbh4PefuYjyu+ayk/iW3Sy5sPf/Rj8IBnRhpdlYTDnyL4NDfvk+ivumzYxvQaESFqg6/o+NTYy395IwUg==","signatures":[{"sig":"MEUCIQD7lv0dYGljHobR9eD/qduU/zRPv496HyhE9XOUFXsg+QIgHvDWXJhcJg9K8GEz5OBUMsOYmTvfgkLS411Yqz5N9kA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":676478,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcAkxTCRA9TVsSAnZWagAAR3gP/1f2X05g25nx7IBvtBkL\nvycTm/jQYhAo1waktaVuCPDSI+nihsJQeZ8TVnVAzo0lV0zp4oavoN+6guak\nkALqG+Xv6KkNmjimRr4zxHqzt3va5s01V2gSWGVIQqG9kcQ56yiaLIEarMQj\nXunIXqJSSF6P2GYHVCNoJKkR4Lyiz8jSALvX+TYg9eqC6t+eMSc6PNSHnJPN\niBmuMLB9410kwx7IgJw6iAiXgHwAznUS21alXFue2apGEnuwKEqxuPiI4CF9\nMuHDAIslalKWxbgRbpTaBTmyYuV0vqtvHp2yia8YfUjhDTqF2dVXM0RQYi2f\n7R/yX0Mc2aS4HH0brYk6HR3vmrB+abdDNEYYFlP7ahKyquIPqRsVUw430DP6\n3A5zZ8fhrU2eR6/5shCi7FAErTru2wZIdHt1HgldZEUIf3JW9jrVRYmyUV/a\nugrZZ12bHTcrCFSj/mhOj+0vFja5CJd8jXO79kPHGE8udH7iO+GoG3bmmRrQ\n/GF1SsIPYn7hBni9zbBpv2qiSMSSPpvmDHF5zB1Mwowt1MTlTl2b+LC3kHLH\nN/BU52s/zyRcNAdzU23WzZyRJHdhNqMKec53EDTwi8BMBWbzBlpkHmImIrF5\nmFXLb8L48Ri2dcTiwTB4SZFweqMml71UhjEYosoxIF64ds0rBezX+i9r0E7+\nuA+G\r\n=54wD\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=6.5"},"gitHead":"4cea14175e0d7545107a15664b19f5cdc5474065","scripts":{"lint":"eslint src test --ext .js,.ts","test":"nyc npm run _mocha","build":"tsc && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","_mocha":"_mocha \"test/*.js\" --reporter dot --timeout 10000","codecov":"nyc report --reporter lcovonly && codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"nyc report --reporter lcov && opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --watch","preversion":"npm test","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc -r lcov npm run -s _mocha","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"node scripts/update-fixtures-ast.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node scripts/update-fixtures-ast.js","preupdate-fixtures":"npm run -s build","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"repository":{"url":"git+https://github.com/mysticatea/vue-eslint-parser.git","type":"git"},"_npmVersion":"6.4.1","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"11.1.0","dependencies":{"debug":"^4.1.0","espree":"^4.1.0","lodash":"^4.17.11","esquery":"^1.0.1","eslint-scope":"^4.0.0","eslint-visitor-keys":"^1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^13.1.0","acorn":"^6.0.4","mocha":"^5.2.0","warun":"^1.0.0","eslint":"^5.9.0","opener":"^1.5.1","rimraf":"^2.6.2","rollup":"^0.67.1","codecov":"^3.1.0","wait-on":"^3.2.0","chokidar":"^2.0.4","fs-extra":"^7.0.1","acorn-jsx":"^5.0.0","dts-bundle":"^0.7.3","typescript":"~3.1.6","@types/node":"^10.12.9","cross-spawn":"^6.0.5","npm-run-all":"^4.1.3","@types/debug":"0.0.30","@types/mocha":"^5.2.4","babel-eslint":"^10.0.1","rollup-watch":"^4.3.1","@types/estree":"0.0.38","@types/lodash":"^4.14.118","rollup-plugin-sourcemaps":"^0.4.2","typescript-eslint-parser":"^21.0.1","@mysticatea/eslint-plugin":"^7.0.0","rollup-plugin-node-resolve":"^3.4.0"},"peerDependencies":{"eslint":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser_4.0.0_1543654481754_0.18487865985968122","host":"s3://npm-registry-packages"}},"4.0.1":{"name":"vue-eslint-parser","version":"4.0.1","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@4.0.1","maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"homepage":"https://github.com/mysticatea/vue-eslint-parser#readme","bugs":{"url":"https://github.com/mysticatea/vue-eslint-parser/issues"},"dist":{"shasum":"293a01855560888bb6c8ddbd9e7149139358d708","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-4.0.1.tgz","fileCount":6,"integrity":"sha512-bc4LgG9dYGTOuPJul9NgxNOfxGZEd9q1GOct9MaeV9bCbo2OKihnV5j4zaJyReLbQLi7glmGvZHPHuvoM6DOBA==","signatures":[{"sig":"MEUCICZvLWlMJBeX4xzufO1koS/pFYR2fpIIos6yjaLtpdm+AiEAkkJs3qulhS3rtIyAwA1ZzWKrzttTc34T5tLkwpWoix8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":676476,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcAlYPCRA9TVsSAnZWagAA3CoP+wf2eDhFEaBjiNQDBJAp\n1hV9Vjw0vJ6opgnAjXlN3bXbEN8bnYJbnXIsLnhPmuFVDYgNoNYoA8Ik1Bua\nk3mnYTdcqrjNpN+kz58skZRS7TYxEcO2jkiyMHHIaQv0YoxC4zuOGatYoEev\nYLiuBLb6MXHWkmgx5F4SCbZgIhlM2i+jW8X4XSHXAxLbafQKR+TF9BSAqXFD\nCXcS7woW4zkbiL1FT0rQ48s4Bsn5MVC8KjmxZ+R0UF92nX6xzO35KWTOhP8F\nIKiTA+7Be0XxDEPrWj9OhBB6f9/QI1rpoi0tTCDh/xM4k574v/oOpWnnr1nQ\nt1v17f1yAKjI5mbHNcYEE+9x6rlHuoAKYFvH9fyyh4SL9sy4MA6rf+nH+HTQ\n+OzSM0JgAdd5SV4Mwf1e0zwWkiOcgp5MIPpUXTVhIDkbjGcH2g4ELQgQfb5J\ng1dc7ccDYQ7k1/X7o6AL+GNPlAxojtkrkD4KyztrMWP2SF/A5I8EQeDab2IN\nnwXi3vk+3EgFpkCAmFFIdobKkSEAeP/7jAbqf2ppNAajZirTqXZgFobO7P4a\n7U3nGWYQHQA/Gkh1SvyFdDJ0K4lXDEHeUA2Yv1mYeJTULejTsTHjOMQTml40\nLst6OxKREzaIcMzd8cHTEgzQYfwyUM4kO0BbS01c1KXISuDbRVZgjPj4Zsoe\nRjM5\r\n=DqnY\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=6.5"},"gitHead":"a6135f89632d48601d453856c343275a64d525be","scripts":{"lint":"eslint src test --ext .js,.ts","test":"nyc npm run _mocha","build":"tsc && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","_mocha":"_mocha \"test/*.js\" --reporter dot --timeout 10000","codecov":"nyc report --reporter lcovonly && codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"nyc report --reporter lcov && opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --watch","preversion":"npm test","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc -r lcov npm run -s _mocha","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"node scripts/update-fixtures-ast.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node scripts/update-fixtures-ast.js","preupdate-fixtures":"npm run -s build","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"repository":{"url":"git+https://github.com/mysticatea/vue-eslint-parser.git","type":"git"},"_npmVersion":"6.4.1","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"11.1.0","dependencies":{"debug":"^4.1.0","espree":"^4.1.0","lodash":"^4.17.11","esquery":"^1.0.1","eslint-scope":"^4.0.0","eslint-visitor-keys":"^1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^13.1.0","acorn":"^6.0.4","mocha":"^5.2.0","warun":"^1.0.0","eslint":"^5.9.0","opener":"^1.5.1","rimraf":"^2.6.2","rollup":"^0.67.1","codecov":"^3.1.0","wait-on":"^3.2.0","chokidar":"^2.0.4","fs-extra":"^7.0.1","acorn-jsx":"^5.0.0","dts-bundle":"^0.7.3","typescript":"~3.1.6","@types/node":"^10.12.9","cross-spawn":"^6.0.5","npm-run-all":"^4.1.3","@types/debug":"0.0.30","@types/mocha":"^5.2.4","babel-eslint":"^10.0.1","rollup-watch":"^4.3.1","@types/estree":"0.0.38","@types/lodash":"^4.14.118","rollup-plugin-sourcemaps":"^0.4.2","typescript-eslint-parser":"^21.0.1","@mysticatea/eslint-plugin":"^7.0.0","rollup-plugin-node-resolve":"^3.4.0"},"peerDependencies":{"eslint":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser_4.0.1_1543656974216_0.18001052086638047","host":"s3://npm-registry-packages"}},"4.0.2":{"name":"vue-eslint-parser","version":"4.0.2","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@4.0.2","maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"homepage":"https://github.com/mysticatea/vue-eslint-parser#readme","bugs":{"url":"https://github.com/mysticatea/vue-eslint-parser/issues"},"dist":{"shasum":"7d10ec5b67d9b2ef240cac0f0e8b2f03773d810e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-4.0.2.tgz","fileCount":6,"integrity":"sha512-A+teFdsAVtVawd4rtLsv8q6uuj2MYt3Uw+GCodqEkjozB3g20G91hbukz60yWa9IUx/yFz+JzKBu/3Djkod36g==","signatures":[{"sig":"MEQCIFVIyCb+9rYNbrjvfZ5aZKzqCMMGJINVD3Sj+AoWbb+cAiBNExJWC9oz+mXyngEA5Rw3RqujJ2OxdYuMtwndzxc/1Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":676407,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcAmVvCRA9TVsSAnZWagAA7foP/3nujwUWM1fh1JWmcUs8\nO4sQYZ6BTQn31A4kX+rXaQYJL1UWtCpEFYGQAKKFc0G8yyY3wI22k8SbAsOW\nb775YgVlNvaYLH7Gn6tGZHmFw5l0LlOWhkx7cbL4Xc6Bb/FpDVEqhkQoBl6S\nTtEpU2TFiEaxd2YM+s9/FM8pvl58UliOehXI7QOFzwZQKKBN0N3QacQEGD+H\nJVZaPvSbV6ScdodD072Dej6SYfjt0NAcHdwZuK7VWRwihf7iVRb3Un8qrfrq\n7qjKZaFmoN/9yewxWGJ3zCVj3UtOKmvoN8id2MvG3LJQ7LATmdlH4c+aMKFB\nhp7v1TnQHan4EKnv6JwwIx8g6eQ9JtTqXx0qMf8cgjLTbEAKCmb0hD6zk6w8\nujzzkaqbRxvpFG1yV2LTCEgasMK6KJ7nc0w2AwAH/HIxA65cs8+ETA20j7rK\n4ki+NDiCREfgkukpSeUzx36GtgDuMHNcNiyObjcOEfH5ZfXQwuH/nwnGwidP\nnjThIHGoEEg4stwoHe+BBBdxFPhgWh5c+gDb7+HkIp/S5hevrhaCVGjCYgmP\nq884Hb20EpmP8GOjqOm+AZldLpfNp3HopuAmdS67A1EFHAqS9ku9Y1W5b3JF\nYLmFZi16v+OEFt8sdyLlknZfNhCvuSUW5AuKk+ZJzr591EqKNdrVEN+WhEWA\nvGY6\r\n=E1tb\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=6.5"},"gitHead":"0248739f6b137298742e071a096583ef0df7670c","scripts":{"lint":"eslint src test --ext .js,.ts","test":"nyc npm run _mocha","build":"tsc && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","_mocha":"_mocha \"test/*.js\" --reporter dot --timeout 10000","codecov":"nyc report --reporter lcovonly && codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"nyc report --reporter lcov && opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --watch","preversion":"npm test","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc -r lcov npm run -s _mocha","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"node scripts/update-fixtures-ast.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node scripts/update-fixtures-ast.js","preupdate-fixtures":"npm run -s build","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"repository":{"url":"git+https://github.com/mysticatea/vue-eslint-parser.git","type":"git"},"_npmVersion":"6.4.1","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"11.1.0","dependencies":{"debug":"^4.1.0","espree":"^4.1.0","lodash":"^4.17.11","esquery":"^1.0.1","eslint-scope":"^4.0.0","eslint-visitor-keys":"^1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^13.1.0","acorn":"^6.0.4","mocha":"^5.2.0","warun":"^1.0.0","eslint":"^5.9.0","opener":"^1.5.1","rimraf":"^2.6.2","rollup":"^0.67.1","codecov":"^3.1.0","wait-on":"^3.2.0","chokidar":"^2.0.4","fs-extra":"^7.0.1","acorn-jsx":"^5.0.0","dts-bundle":"^0.7.3","typescript":"~3.1.6","@types/node":"^10.12.9","cross-spawn":"^6.0.5","npm-run-all":"^4.1.3","@types/debug":"0.0.30","@types/mocha":"^5.2.4","babel-eslint":"^10.0.1","rollup-watch":"^4.3.1","@types/estree":"0.0.38","@types/lodash":"^4.14.118","rollup-plugin-sourcemaps":"^0.4.2","typescript-eslint-parser":"^21.0.1","@mysticatea/eslint-plugin":"^7.0.0","rollup-plugin-node-resolve":"^3.4.0"},"peerDependencies":{"eslint":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser_4.0.2_1543660910549_0.8330933810492462","host":"s3://npm-registry-packages"}},"4.0.3":{"name":"vue-eslint-parser","version":"4.0.3","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@4.0.3","maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"homepage":"https://github.com/mysticatea/vue-eslint-parser#readme","bugs":{"url":"https://github.com/mysticatea/vue-eslint-parser/issues"},"dist":{"shasum":"80cf162e484387b2640371ad21ba1f86e0c10a61","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-4.0.3.tgz","fileCount":6,"integrity":"sha512-AUeQsYdO6+7QXCems+WvGlrXd37PHv/zcRQSQdY1xdOMwdFAPEnMBsv7zPvk0TPGulXkK/5p/ITgrjiYB7k3ag==","signatures":[{"sig":"MEUCIC546ycFVbTErEChqHgMO95YNe43p8w3F1w+h127Z9r9AiEA69tZya+hqek9w2oai3CaLfq/xbItmRpNG2Pxj3HQCI4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":677261,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcCCA7CRA9TVsSAnZWagAAzaQP/A05+SMDrLUho47lLCvN\nouDPHUMvaqb0mFPU8cUf4JuqE/LeykFRZcYlCA6sJzHJxYDJTZ0x7q7dLeAV\nYVhCFek92BGAiBG8Exh3mNuFVmMjlfb0g9KVYbMpXjKrIMw2JpAnBOPWrnZB\nk1S4+MmBlsXDi2u7yENSu5He2xl738PFBCGfOIL2IfuBTAq/K0AwgaWDYVeu\nqxFyMlQ5jWMVirjEovib22DNigWY7P0LIBtbqeF3ZBYOVsIkZsrDQNXj7Ncl\nnepSlLO3LxU3rjRis8yEHtwneQzzCyoHtbIWcNCLw1t44sNSsqkgkI9OqiZJ\nxfnW6LAfA6Zczo9BzZITWgdGYHF70359VXFMQ97GC2PPkKQ636tVjRRivbwJ\nSqPvtj4k8+xRE1THlz6Hx4KgjPU2qyrtcu436h62xoHeSVv9ihNquSxPm13S\nTYsj+7JUbXiamKjLdUbRyZxTxQxIzqMFzh6nXitf2Pc95ZFHgJcgGj+pNJ+t\n7dAdZE8iTZvwljwEORKf9y6M8emyVy76/Y7OqbOIKb0wrIAGs2w8XSs7g7Da\nj3i6iPjS9rU1EvbBa3EO/Vgg8OLBjZkgD2x1iBL+c5L4zhJhq1VlBIuElDDK\nZXO4Mj4hMLfRddC8sCI22JymP3ZY9u847Ai8R9GNbQgn0cgAB/PaawVLdmPv\nLDJ7\r\n=/HIK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=6.5"},"gitHead":"b59976461d4f3c6f9e63a87c6c600da105dd4c7f","scripts":{"lint":"eslint src test --ext .js,.ts","test":"nyc npm run _mocha","build":"tsc && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","_mocha":"_mocha \"test/*.js\" --reporter dot --timeout 10000","codecov":"nyc report --reporter lcovonly && codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"nyc report --reporter lcov && opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --watch","preversion":"npm test","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc -r lcov npm run -s _mocha","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"node scripts/update-fixtures-ast.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node scripts/update-fixtures-ast.js","preupdate-fixtures":"npm run -s build","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"repository":{"url":"git+https://github.com/mysticatea/vue-eslint-parser.git","type":"git"},"_npmVersion":"6.4.1","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"11.1.0","dependencies":{"debug":"^4.1.0","espree":"^4.1.0","lodash":"^4.17.11","esquery":"^1.0.1","eslint-scope":"^4.0.0","eslint-visitor-keys":"^1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^13.1.0","acorn":"^6.0.4","mocha":"^5.2.0","warun":"^1.0.0","eslint":"^5.9.0","opener":"^1.5.1","rimraf":"^2.6.2","rollup":"^0.67.1","codecov":"^3.1.0","wait-on":"^3.2.0","chokidar":"^2.0.4","fs-extra":"^7.0.1","acorn-jsx":"^5.0.0","dts-bundle":"^0.7.3","typescript":"~3.1.6","@types/node":"^10.12.9","cross-spawn":"^6.0.5","npm-run-all":"^4.1.3","@types/debug":"0.0.30","@types/mocha":"^5.2.4","babel-eslint":"^10.0.1","rollup-watch":"^4.3.1","@types/estree":"0.0.38","@types/lodash":"^4.14.118","rollup-plugin-sourcemaps":"^0.4.2","typescript-eslint-parser":"^21.0.1","@mysticatea/eslint-plugin":"^7.0.0","rollup-plugin-node-resolve":"^3.4.0"},"peerDependencies":{"eslint":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser_4.0.3_1544036410256_0.6698835967816084","host":"s3://npm-registry-packages"}},"5.0.0":{"name":"vue-eslint-parser","version":"5.0.0","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@5.0.0","maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"homepage":"https://github.com/mysticatea/vue-eslint-parser#readme","bugs":{"url":"https://github.com/mysticatea/vue-eslint-parser/issues"},"dist":{"shasum":"00f4e4da94ec974b821a26ff0ed0f7a78402b8a1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-5.0.0.tgz","fileCount":6,"integrity":"sha512-JlHVZwBBTNVvzmifwjpZYn0oPWH2SgWv5dojlZBsrhablDu95VFD+hriB1rQGwbD+bms6g+rAFhQHk6+NyiS6g==","signatures":[{"sig":"MEUCIQCiaNcBX6t7srLEH0CQ+TXQ4SLXSBKnTKYNIRR2Xr1HYAIgaVfvp8m/VJZw9AO11Np74iDx8tPHccT2Xu1Q+x27zp4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":718737,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcL5UzCRA9TVsSAnZWagAAT14P/1lfXZA5h1X8SK1EZ4d9\nmV2ubZP2JJgs5EB4JO9Dh6hpoUPSq3Ai1I9CfzFAxdLg96PnMGJkJ0I88iqU\n7aGLgaamPLJ6QN7n1yEn9MWdqx9JGNZqRxOW0siKrmCK9pteYVoP3Q8aGxDJ\n5qeKBPWj9RYWJzEmL6WOaSID/Hqnra1Gyc3NOcBHXCPeO3HjQTVs2Jds57NK\nSo9mFcDFdpkiJgRwUpWmuB2iyMMMxmZ74q536JWHGATeTSHRznzXo0Fdpn6J\nU7Ma4q6moT3k1QxSjkPHk4zo6MJdQqbOl8DsuKNmnxsLZuysaTyTNXoPkN8Y\nCojoSZQ83gqHv608WZCuL5Ob1Gwilj0HCpMmkLRynzofrhrgPsVWVWGhamdT\nmyYyDEV3FCimq40ubloXMoi6C4BEEdFC/aTIrOZOaFnjPhMFOt7ER3xvFXip\nzLgubapfujked0ExRAymTL0LTbSCMIjN6F7P4gfwo3pK3FRL6TtED+EMCw5b\ncwguilgUw0vSARfma5VQo6mU+JHmPg0aVA6WwxpkinBilDxZ9Pf2H8XvkNeR\nYd6+Muw9OrthyI1ylugHf9oufIl/mK4Z13wiHBnodBVLM6Agaidg2y5Lx4l6\nMuMtDBM0XrcgOzhOymuSkAECKG2EQQZqh779of1xE484lZL5wYTO306CHgmg\nR+yc\r\n=qygk\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=6.5"},"gitHead":"09b4d1e287bb0ed3959afb835a0488873e0363a7","scripts":{"lint":"eslint src test --ext .js,.ts","test":"nyc npm run _mocha","build":"tsc && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","_mocha":"_mocha \"test/*.js\" --reporter dot --timeout 10000","codecov":"nyc report --reporter lcovonly && codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"nyc report --reporter lcov && opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --watch","preversion":"npm test","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc -r lcov npm run -s _mocha","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"node scripts/update-fixtures-ast.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node scripts/update-fixtures-ast.js","preupdate-fixtures":"npm run -s build","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"repository":{"url":"git+https://github.com/mysticatea/vue-eslint-parser.git","type":"git"},"_npmVersion":"6.5.0","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"10.15.0","dependencies":{"debug":"^4.1.0","espree":"^4.1.0","lodash":"^4.17.11","esquery":"^1.0.1","eslint-scope":"^4.0.0","eslint-visitor-keys":"^1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^13.1.0","acorn":"^6.0.4","mocha":"^5.2.0","warun":"^1.0.0","eslint":"^5.9.0","opener":"^1.5.1","rimraf":"^2.6.2","rollup":"^0.67.1","codecov":"^3.1.0","wait-on":"^3.2.0","chokidar":"^2.0.4","fs-extra":"^7.0.1","acorn-jsx":"^5.0.0","dts-bundle":"^0.7.3","typescript":"~3.1.6","@types/node":"^10.12.9","cross-spawn":"^6.0.5","npm-run-all":"^4.1.3","@types/debug":"0.0.30","@types/mocha":"^5.2.4","babel-eslint":"^10.0.1","rollup-watch":"^4.3.1","@types/estree":"0.0.38","@types/lodash":"^4.14.118","rollup-plugin-sourcemaps":"^0.4.2","typescript-eslint-parser":"^21.0.1","@mysticatea/eslint-plugin":"^7.0.0","rollup-plugin-node-resolve":"^3.4.0"},"peerDependencies":{"eslint":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser_5.0.0_1546622259188_0.26600979736455144","host":"s3://npm-registry-packages"}},"6.0.0-beta.0":{"name":"vue-eslint-parser","version":"6.0.0-beta.0","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@6.0.0-beta.0","maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"homepage":"https://github.com/mysticatea/vue-eslint-parser#readme","bugs":{"url":"https://github.com/mysticatea/vue-eslint-parser/issues"},"dist":{"shasum":"ba4a94b864b653decd744d73bfaf76bac1f0c29d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-6.0.0-beta.0.tgz","fileCount":6,"integrity":"sha512-GDCtgm55qRwSK3CdBi1x1EfJMjzVRo92w0Hhj4bKeoFsj7PtqrbZ1azoWKGfsbRQbSXpcwfwkf/nneNoL3EGFw==","signatures":[{"sig":"MEQCIDmtZG53XZNEKDjLktEyyC0IvKDhrhV4IqHhm39zHbscAiBNWsk60pnj+lIpGBjEnYeeU4rcCM7NKVuf6ImCDXxa5g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":736476,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcXJlrCRA9TVsSAnZWagAAi+QP/1PTk7+95mlVJ5jBG1yK\nnhks+i0/eW2fNYUUBvSO7N5+ejgzvkOuQDU3it3ouesDYL5qzz94iLCTGYXc\npbNqRFdm72LE4sA0LjATGRhddJZuJMRh5wTKc9IK0vYlPfHVU+E2NMyXNYqN\n1rgivxgEWFZwOkSULb+gwn+bxUNJGx4FDsvtSgZCG6ggDlNpeeEpX6vD2gAQ\nAqg32API3cE09R/sPy14miEvPOUj7EIQc2XCj6jQQelH2XsOBpotpkuZCkBW\nkZYh48LVyrgsqdZY+i0d9QeiHM5prdQNjPo6JqNgUPY4Idecb0G7Wnvr/Z2k\nZErRTmBCX+U5Jk1WZeVgHMiF4tAOnN1V5VbJVVTI9KSkEodTx+9QzXqawdi+\nYFS/qqdGi3M/AYRMj19n2lmu5YD/c+POwUhoc9EB8Yx3rXKVZ95X1wzoDFnt\nsve3oYQpJATFCgqMev1UEmeQap0nroIAYyIHjfArkZvdT+Lxz4ACXIeHVeun\nR2lz18aj5XEYOGgF7+UEDcGTrYyaLmmpZQnx+gya/GKwm0r/Bh/vsbVLhXbi\nE3xHqHIDe6c7PiuLjZLJgDd9iSRYxCV8rTOFXS884ojNRoNKPYOlm8W+JkSr\nqlY4KlelaTufB025pSmFQSi9OyzDfpiu1qov4ZBlaI3OeKXsXfjtBp9rL9YR\nXvJ/\r\n=SUBP\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=6.5"},"gitHead":"3c356d974b4fb49f1f8371282707b40841abe4a7","scripts":{"lint":"eslint src test --ext .js,.ts","test":"nyc npm run _mocha","build":"tsc && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","_mocha":"_mocha \"test/*.js\" --reporter dot --timeout 10000","codecov":"nyc report --reporter lcovonly && codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"nyc report --reporter lcov && opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --watch","preversion":"npm test","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc -r lcov npm run -s _mocha","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"node scripts/update-fixtures-ast.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node scripts/update-fixtures-ast.js","preupdate-fixtures":"npm run -s build","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"repository":{"url":"git+https://github.com/mysticatea/vue-eslint-parser.git","type":"git"},"_npmVersion":"6.7.0","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"11.9.0","dependencies":{"debug":"^4.1.1","espree":"^5.0.0","lodash":"^4.17.11","esquery":"^1.0.1","eslint-scope":"^4.0.0","eslint-visitor-keys":"^1.0.0"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"nyc":"^13.2.0","mocha":"^5.2.0","warun":"^1.0.0","eslint":"^5.13.0","opener":"^1.5.1","rimraf":"^2.6.3","rollup":"^1.1.2","codecov":"^3.1.0","wait-on":"^3.2.0","chokidar":"^2.0.4","fs-extra":"^7.0.1","dts-bundle":"^0.7.3","typescript":"~3.3.1","@types/node":"^10.12.21","cross-spawn":"^6.0.5","npm-run-all":"^4.1.5","@types/debug":"0.0.30","@types/mocha":"^5.2.4","babel-eslint":"^10.0.1","rollup-watch":"^4.3.1","@types/estree":"0.0.38","@types/lodash":"^4.14.120","rollup-plugin-sourcemaps":"^0.4.2","@mysticatea/eslint-plugin":"^9.0.1","@typescript-eslint/parser":"^1.2.0","rollup-plugin-node-resolve":"^4.0.0"},"peerDependencies":{"eslint":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser_6.0.0-beta.0_1549572459129_0.8174627482877412","host":"s3://npm-registry-packages"}},"6.0.0":{"name":"vue-eslint-parser","version":"6.0.0","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@6.0.0","maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"homepage":"https://github.com/mysticatea/vue-eslint-parser#readme","bugs":{"url":"https://github.com/mysticatea/vue-eslint-parser/issues"},"dist":{"shasum":"05928d34868d27969242cc614e250c99ce5c0a0d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-6.0.0.tgz","fileCount":6,"integrity":"sha512-QVGE3/bTulg8ybrkdRgqcLbqNeB26iFucn2hYfDqcresBJHVnvUdAM8klydHoWztz48oGSax5bseR6lzWMeRQA==","signatures":[{"sig":"MEQCIA8OHU6aMtbjnPTvBsrIV4+xURIp4LyqxddXDiaalQDPAiB5U1gYmReaY/gaNXrenghbeNmxbufIp22tTbCFTLDPzQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":736469,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcXKrUCRA9TVsSAnZWagAAh0cP/iv1BGczEr6hzUOVKBPq\nqRVR34XphubcJjcrqv6fFdPhCnlDfSQC+0HXBN0fUW2F0lXNGHybTPBDQlWJ\nQ1q/n5SO1jJs738aNbgWFDZ6A2+m+HJhZPB13eRNaGKzL8cLsfa7YrjA5Gc/\ncBoGJR0HGxs9qb0Cy4EftZSYXbkobVmn96AC+tzgVzUEej1F1MOSto4UkN2U\nsIrrkLySmMFggkX+h07cEQEFi61sr7GusPCSuJzP6Sx9VXzAcA8pQDno23B7\n1C7Zl7l12uH1rfyAcLrnVJffUGmxBpJ75I3qaS3alte/cpaAnes5uaA7DIa5\n6lGxumF5QRytHqon39DRjvaaSJQnC8n+zdKuXo3f++Uoz/lNo5cgVBKjhlj5\nkSm4jC6nlcWOjxwgM/pZ4m5ztzEVq9+GP6Ub/ARmHU6/8qTC5claHRWUeBd6\nNRgeGzSRcFQdCQBD+Y8fKVTBTu/L/gGhTXVoSuzSIE+hcLnMszW/FC/ZG/DF\nCk50V828tCvBFFKiQ2aOQOZ/V/kIGuWXJc56VhRTEOhtp0NTn2Z78voQ0IQ4\nvou91r+SxSNEXVXazJT01hSRTF8uDgK1su0eiVel07tZ3PzIr57/TgzJXvno\nryb7EPgO5nUwtTKYFo1bqdaU/fN6wtr/CJkTZUu+sfwa/wVpyxmJhe9nkDhF\nvwG3\r\n=UKIK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=6.5"},"gitHead":"28729dde1c1e088b3d0344a95b535210a7fd33a4","scripts":{"lint":"eslint src test --ext .js,.ts","test":"nyc npm run _mocha","build":"tsc && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","_mocha":"_mocha \"test/*.js\" --reporter dot --timeout 10000","codecov":"nyc report --reporter lcovonly && codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"nyc report --reporter lcov && opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --watch","preversion":"npm test","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc -r lcov npm run -s _mocha","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"node scripts/update-fixtures-ast.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node scripts/update-fixtures-ast.js","preupdate-fixtures":"npm run -s build","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"repository":{"url":"git+https://github.com/mysticatea/vue-eslint-parser.git","type":"git"},"_npmVersion":"6.7.0","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"11.9.0","dependencies":{"debug":"^4.1.1","espree":"^5.0.0","lodash":"^4.17.11","esquery":"^1.0.1","eslint-scope":"^4.0.0","eslint-visitor-keys":"^1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^13.2.0","mocha":"^5.2.0","warun":"^1.0.0","eslint":"^5.13.0","opener":"^1.5.1","rimraf":"^2.6.3","rollup":"^1.1.2","codecov":"^3.1.0","wait-on":"^3.2.0","chokidar":"^2.0.4","fs-extra":"^7.0.1","dts-bundle":"^0.7.3","typescript":"~3.3.1","@types/node":"^10.12.21","cross-spawn":"^6.0.5","npm-run-all":"^4.1.5","@types/debug":"0.0.30","@types/mocha":"^5.2.4","babel-eslint":"^10.0.1","rollup-watch":"^4.3.1","@types/estree":"0.0.38","@types/lodash":"^4.14.120","rollup-plugin-sourcemaps":"^0.4.2","@mysticatea/eslint-plugin":"^9.0.1","@typescript-eslint/parser":"^1.2.0","rollup-plugin-node-resolve":"^4.0.0"},"peerDependencies":{"eslint":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser_6.0.0_1549576916450_0.962349028425445","host":"s3://npm-registry-packages"}},"6.0.1":{"name":"vue-eslint-parser","version":"6.0.1","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@6.0.1","maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"homepage":"https://github.com/mysticatea/vue-eslint-parser#readme","bugs":{"url":"https://github.com/mysticatea/vue-eslint-parser/issues"},"dist":{"shasum":"86057ca8c3ef4e6c581432b10242b027423330cb","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-6.0.1.tgz","fileCount":6,"integrity":"sha512-F+IFOzsiPXwq6z3y3TykHISIM9aATWzlGHSWGsmL92AmeOKg3aB92EbrTpwB1iYfRmm1DlG3aNSWn2oR5M+kSg==","signatures":[{"sig":"MEQCIGfxbGX5jEoq/vvqTYpAlNV7StgfFnBFoSt6l1CQL3Q/AiBlOVp2RJTGaszfVpcEeNeZKixyDkuHvNlMBWbbDQq/Gw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":736510,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcXwnKCRA9TVsSAnZWagAAAyoQAJfGVc9FtgQmwUqXCH4e\nMMncyr+zeYP/ZI1Z6smDguK4VXBnfvqL4s9sbeQh83uVXAUDAMUlIsUzWkxa\ndgJpRmk5gSVvO/ZvX6STBpKnsYB4Mg61XIqw5oXwMc8IwrIvCsaX85HS8Mfx\nubvlvyZLlC+6OyTHoRhY82WjWsggqpioX0UxA2oUBdgiJWorHMiCjlvFKjgV\ns3oPKRHS+ti43rgFVEaWHMGQqg46Dfp0ZEOROFMEsZAWTdaNeC6YuH36Bs2s\nwwhhe8MAn8HLRmt3Vv8WAWeVGm710hIzYuicB6AhlUjpOuZfOo8sfsKrjVju\n3J5jy5q/Kjlgs9SsUjC8/7R0eBqjmWRWnvyZON6B5EUKUskR+1riHCYbl279\nRGnviCQsjJuxPH6KEYsF95FuBA54mx0bu5Aq1VA9gbEJr+Ly4TcDR0XMg1i+\nF/xgV0NC46eiVg5r+FI9iIK5AEKe1ONVwfrngAb9E1XcoGE11c6ltt/denT0\nnoo8zgtcZ7TMpp/jyvuNpJmxj4tg6GpbtuaLjuGM6ivy/Uk8ta79da1X7peI\neyPWoWCWs86lyiJw3IODkZIh8afJE5V86IHEy2hOzMLl07nDyoIXm5L1pAKe\nMw9btwSW7LCZxYasXlInNyo4E3108UqHhksCbZAOdWxuBuxMaoQ4krOy2mt+\nYrcK\r\n=FkTh\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=6.5"},"gitHead":"fb08ee11b732a4264b6b626cceef111750ebc704","scripts":{"lint":"eslint src test --ext .js,.ts","test":"nyc npm run _mocha","build":"tsc && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","_mocha":"_mocha \"test/*.js\" --reporter dot --timeout 10000","codecov":"nyc report --reporter lcovonly && codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"nyc report --reporter lcov && opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --watch","preversion":"npm test","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc -r lcov npm run -s _mocha","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"node scripts/update-fixtures-ast.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node scripts/update-fixtures-ast.js","preupdate-fixtures":"npm run -s build","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"repository":{"url":"git+https://github.com/mysticatea/vue-eslint-parser.git","type":"git"},"_npmVersion":"6.7.0","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"11.9.0","dependencies":{"debug":"^4.1.1","espree":"^5.0.0","lodash":"^4.17.11","esquery":"^1.0.1","eslint-scope":"^4.0.0","eslint-visitor-keys":"^1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^13.2.0","mocha":"^5.2.0","warun":"^1.0.0","eslint":"^5.13.0","opener":"^1.5.1","rimraf":"^2.6.3","rollup":"^1.1.2","codecov":"^3.1.0","wait-on":"^3.2.0","chokidar":"^2.0.4","fs-extra":"^7.0.1","dts-bundle":"^0.7.3","typescript":"~3.3.1","@types/node":"^10.12.21","cross-spawn":"^6.0.5","npm-run-all":"^4.1.5","@types/debug":"0.0.30","@types/mocha":"^5.2.4","babel-eslint":"^10.0.1","rollup-watch":"^4.3.1","@types/estree":"0.0.38","@types/lodash":"^4.14.120","rollup-plugin-sourcemaps":"^0.4.2","@mysticatea/eslint-plugin":"^9.0.1","@typescript-eslint/parser":"^1.2.0","rollup-plugin-node-resolve":"^4.0.0"},"peerDependencies":{"eslint":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser_6.0.1_1549732297928_0.6096824565987444","host":"s3://npm-registry-packages"}},"6.0.2":{"name":"vue-eslint-parser","version":"6.0.2","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@6.0.2","maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"homepage":"https://github.com/mysticatea/vue-eslint-parser#readme","bugs":{"url":"https://github.com/mysticatea/vue-eslint-parser/issues"},"dist":{"shasum":"0fa8d960bfbfb76582ad029b4a9908816ae5d76f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-6.0.2.tgz","fileCount":6,"integrity":"sha512-BxDDlPIYFYOrxs4WMvGxGj0Ve83iWYPydaqEzoVz0tVgzDXdS98FAZEX/Kd7OiHgXy1hR4nDnHHZ5sGIHMfSHw==","signatures":[{"sig":"MEQCIDNuOTLCwae/qE3jeFlBoB5pG8/BW238t0RFCk6aPJQWAiAbhNu0nkIwTnMzYLa0dNYe2eysEI5vcGdKM5bkt46Pow==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":737251,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcX9toCRA9TVsSAnZWagAAMkUP/RYtci7Ty5ss82W1u5q4\nP5m3qZWImTd7tyiGydf5g5C630NTpk/DnemMeq/e4i0ZgpBPEEuf0YLvcTZ8\n6aShsnYWruenvfsq1P/f758Qj+Z8GzOWhwtv9tP/bsZbvJM+l1+dJL4On6Yo\nrek490eaosQUxoAcdUvozQf44qkY99r3+ygOwxC+AYgrgrKT0YLL43r+ZzPx\nGmQphlbPEcTTViSCI/IymHbms9JG6yuI8Fi+kbrSpjJUEVT2LHmDfCfGC9No\n0vQCHNI6p7prM4TrWQm7Dn5H+HC7QM69sFUnEglenXQaXtqEMkdTY4QuBdlY\n3RgHLcNW/+jmBw5OcbBNphat/0xqSexABaGjJa1SQZmWI3zaL7ja+qLHjM4a\ntniQ4VBb7Psm9+uQJmB5ztf8cube1RJ553Z+6aWrdXkEAb1dTIRHLGQxxw0N\nTHiJVJjV55sxM7//WcZCfqp6U/trqXU0ORX5KU3IAemN2Gk5JYhbUwh0BxC8\njqkLUpxpJMQoLqkfZ4YzZdXiejDKO0WpTzXYOidJpJSEI1RHyv9RG+HFCuK6\n/6mUTKBQLqNwJ3ESGQu4TrZ+TY5WdCe8HRxPha6jVAH3gpgQtBW2/lR1Nq0m\nc5GG+i1Ti0QXOL9kGLaJFFzLzh7wzyB9N3IWVDomIzzKgOmLOtS1cYiXjv8/\n3tf3\r\n=niW2\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=6.5"},"gitHead":"47c0c1af92f64e96ac33795a54e93a8b4ed6f0b7","scripts":{"lint":"eslint src test --ext .js,.ts","test":"nyc npm run _mocha","build":"tsc && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","_mocha":"_mocha \"test/*.js\" --reporter dot --timeout 10000","codecov":"nyc report --reporter lcovonly && codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"nyc report --reporter lcov && opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --watch","preversion":"npm test","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc -r lcov npm run -s _mocha","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"node scripts/update-fixtures-ast.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node scripts/update-fixtures-ast.js","preupdate-fixtures":"npm run -s build","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"repository":{"url":"git+https://github.com/mysticatea/vue-eslint-parser.git","type":"git"},"_npmVersion":"6.7.0","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"11.9.0","dependencies":{"debug":"^4.1.1","espree":"^5.0.0","lodash":"^4.17.11","esquery":"^1.0.1","eslint-scope":"^4.0.0","eslint-visitor-keys":"^1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^13.2.0","mocha":"^5.2.0","warun":"^1.0.0","eslint":"^5.13.0","opener":"^1.5.1","rimraf":"^2.6.3","rollup":"^1.1.2","codecov":"^3.1.0","wait-on":"^3.2.0","chokidar":"^2.0.4","fs-extra":"^7.0.1","dts-bundle":"^0.7.3","typescript":"~3.3.1","@types/node":"^10.12.21","cross-spawn":"^6.0.5","npm-run-all":"^4.1.5","@types/debug":"0.0.30","@types/mocha":"^5.2.4","babel-eslint":"^10.0.1","rollup-watch":"^4.3.1","@types/estree":"0.0.38","@types/lodash":"^4.14.120","rollup-plugin-sourcemaps":"^0.4.2","@mysticatea/eslint-plugin":"^9.0.1","@typescript-eslint/parser":"^1.2.0","rollup-plugin-node-resolve":"^4.0.0"},"peerDependencies":{"eslint":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser_6.0.2_1549785959365_0.953867620593625","host":"s3://npm-registry-packages"}},"6.0.3":{"name":"vue-eslint-parser","version":"6.0.3","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@6.0.3","maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"homepage":"https://github.com/mysticatea/vue-eslint-parser#readme","bugs":{"url":"https://github.com/mysticatea/vue-eslint-parser/issues"},"dist":{"shasum":"e8b4748a8c63c72889341a8a2e48c33e58d1c9d3","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-6.0.3.tgz","fileCount":6,"integrity":"sha512-f2jZQojTLyZmuDLhCybJ8qIicfZfC6PmO7dEubZ0U/0tQ4dweRFuB0RpbbaHeMUfVFSYiKexbiemkze/h3/6SA==","signatures":[{"sig":"MEUCICAj75RsAwwgmLxdyf+9TVH5S85gMC7z8FLyZqiHd8TWAiEAjQh6/HMxnXHbhuiFH43Z69RuANv1ESE+Q/LAjt3jGC4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":739037,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcd6IfCRA9TVsSAnZWagAAkmEP/2OmYqitI11gvSjGgUa6\n5+7bt9jpROLHOnD/g7DA70roFSmwcN2q4PatPk/6zFY33+shGYoksFwj7aLx\nV0L9BOOLCuSQN4HnmUiqcmiQvU8h1U5OhoQLK3Ib90drodWdqDrJxm8/z/vc\nCwBZVThQQkN7oGNiQIjvObYLAzqsGE9Vw6AxRajtivA2DKXPF10VcTRCuL9h\nI0nDL9FKHHtkzKi6FslH4nBMioDQl81i+RQLHc3jqmsysScw+FYMjR27T0cs\nyDYc3T1X41Y92tSR8Cm4j7NLy1HdD3TgW9Y4dQu9lfUpZlQULLXZoiQgEEoL\nLsINZmRxDsg7VmJ1hZBkOzZ3YQxFTHdT+zGpDPaaUcOEwZNr6xxlv8znHcD5\n4UMtcmHZlJWXIwCDoO01BWXI+s+XU416dZK3e5JUMYZXmk588BbF6uVeJdEa\nPyHwbM86PkJTavRn7N42B/1wf/dgyHKpGD6H5Q3j/hgUxRMkySO6VjIsV1j0\ncxZHePqWjeaGIdaKU6XrswjL1MniAXXT+Jq25txMMXAbBWkx9Brm+KVT9IY/\n238O1XO0aDjQuPpWU/c2NVl9IcXWatqNLIe74Enxi+az6wsIyssgQr+FMgvf\nQhh7safNSOLVvwDdDfhdRk69DZheAtq+UX+wFthUSkjayPGztVIIq3ENPWGS\n2eVm\r\n=Az7U\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=6.5"},"gitHead":"a05d416440974fc7ab5622c58a561242d1325038","scripts":{"lint":"eslint src test --ext .js,.ts","test":"nyc npm run _mocha","build":"tsc && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","_mocha":"_mocha \"test/*.js\" --reporter dot --timeout 10000","codecov":"nyc report --reporter lcovonly && codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"nyc report --reporter lcov && opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --watch","preversion":"npm test","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc -r lcov npm run -s _mocha","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"node scripts/update-fixtures-ast.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node scripts/update-fixtures-ast.js","preupdate-fixtures":"npm run -s build","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"repository":{"url":"git+https://github.com/mysticatea/vue-eslint-parser.git","type":"git"},"_npmVersion":"6.8.0","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"11.9.0","dependencies":{"debug":"^4.1.1","espree":"^5.0.0","lodash":"^4.17.11","esquery":"^1.0.1","eslint-scope":"^4.0.0","eslint-visitor-keys":"^1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^13.2.0","mocha":"^5.2.0","warun":"^1.0.0","eslint":"^5.13.0","opener":"^1.5.1","rimraf":"^2.6.3","rollup":"^1.1.2","codecov":"^3.1.0","wait-on":"^3.2.0","chokidar":"^2.0.4","fs-extra":"^7.0.1","dts-bundle":"^0.7.3","typescript":"~3.3.1","@types/node":"^10.12.21","cross-spawn":"^6.0.5","npm-run-all":"^4.1.5","@types/debug":"0.0.30","@types/mocha":"^5.2.4","babel-eslint":"^10.0.1","rollup-watch":"^4.3.1","@types/estree":"0.0.38","@types/lodash":"^4.14.120","rollup-plugin-sourcemaps":"^0.4.2","@mysticatea/eslint-plugin":"^9.0.1","@typescript-eslint/parser":"^1.2.0","rollup-plugin-node-resolve":"^4.0.0"},"peerDependencies":{"eslint":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser_6.0.3_1551344158305_0.8660003197277968","host":"s3://npm-registry-packages"}},"6.0.4":{"name":"vue-eslint-parser","version":"6.0.4","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@6.0.4","maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"homepage":"https://github.com/mysticatea/vue-eslint-parser#readme","bugs":{"url":"https://github.com/mysticatea/vue-eslint-parser/issues"},"dist":{"shasum":"56ff47e2c2644bff39951d5a284982c7ecd6f7fa","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-6.0.4.tgz","fileCount":6,"integrity":"sha512-GYsDsDWwKaGtnkW4nGUxr01wqIO2FB9/QHQTW1Gl5SUr5OyQvpnR90/D+Gq2cIxURX7aJ7+VyD+37Yx9eFwTgw==","signatures":[{"sig":"MEQCIFP7pdhFWdFvUFLTAgAKNUQcqN0SrFMHlG6rSWtmGL3PAiBhZjz3ms52iROuXlGhxjPWO+4mMHzNScIhbeaRbsJ9NA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":739180,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcvCrKCRA9TVsSAnZWagAAPKcP/2Itd+dTbxCWRehGkPn0\nd7Lu2CFYGKW7SFg7lJ/8TJJ1k3KNnrygUBQpQjqeooN9lEY1D72SU7CK3jZd\nmc0+u+KV5mjxLXvHwAHxJwV1cle2EzwQCHTfPIkB7WTcdKUAhiZ9yDz5bTyY\nrfb/jUBN38OIbXPjNqmgm7MhOxMxdjRV6qxc1efktgPetaEbZ5i/fXJj49AK\n5oHALVDIbe5NvFlw845zgYdC2QdqMKE+JjkfOjwI4oAGcC42s5t+d1AfV+eV\nVaq+PO/oCu7HNCeluS0+NtyasGtY8BYbvUBo1Qi+W9i8cMN/abriBo/NGxWA\n/suHzpx0GIC2hTvQBKmntVzbT9B6s+zaTsWWzzYUY3byABI7uB0SHxNl/s8G\nNEgTtWVgmzmr1H3VZ+qjurzshz/REcslBTse+FCadRnGg78G0tWKb6dMCVHw\nfWSfpP0BRzlwH780C+ooXWiyLgUhkhvb3fm08qqje8mlBsryIyOqZVhT2UU0\n8E3IFXy/83ypst0ogRrWvuw/EACOZlN1M26UkOYa9eJO09wVfwv1PF+4uFIm\nmPxSPSyd9gFzIDXhDm2eWr3FhqaAsWSD0Rjh8MwLUE3KQGN4c9LGG04pWWfx\nElS4jebaBLKbwxWqz+4kcZp9RIeUb6xsL006qJdA6k0903Fgc/MJiJul0PUj\n7JI7\r\n=ZAAB\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=6.5"},"gitHead":"9868ae4017345d59d0f560e6a42507f25d04543a","scripts":{"lint":"eslint src test --ext .js,.ts","test":"nyc mocha \"test/*.js\" --reporter dot --timeout 10000","build":"tsc --module es2015 && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","codecov":"codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --module es2015 --watch","preversion":"npm test","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc mocha \"test/*.js\" --reporter dot --timeout 10000","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"node scripts/update-fixtures-ast.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node scripts/update-fixtures-ast.js","preupdate-fixtures":"npm run -s build","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"star.ctor@gmail.com"},"repository":{"url":"git+https://github.com/mysticatea/vue-eslint-parser.git","type":"git"},"_npmVersion":"6.9.0","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"10.15.3","dependencies":{"debug":"^4.1.1","espree":"^5.0.0","lodash":"^4.17.11","esquery":"^1.0.1","eslint-scope":"^4.0.0","eslint-visitor-keys":"^1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.0.0","mocha":"^6.1.4","warun":"^1.0.0","eslint":"^5.13.0","opener":"^1.5.1","rimraf":"^2.6.3","rollup":"^1.1.2","codecov":"^3.1.0","ts-node":"^8.1.0","wait-on":"^3.2.0","chokidar":"^2.0.4","fs-extra":"^7.0.1","dts-bundle":"^0.7.3","typescript":"~3.4.4","@types/node":"^10.12.21","cross-spawn":"^6.0.5","npm-run-all":"^4.1.5","@types/debug":"0.0.30","@types/mocha":"^5.2.4","babel-eslint":"^10.0.1","@types/estree":"0.0.38","@types/lodash":"^4.14.120","rollup-plugin-sourcemaps":"^0.4.2","@mysticatea/eslint-plugin":"^9.0.1","@typescript-eslint/parser":"^1.2.0","rollup-plugin-node-resolve":"^4.0.0"},"peerDependencies":{"eslint":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser_6.0.4_1555835594339_0.35427961243657036","host":"s3://npm-registry-packages"}},"6.0.5":{"name":"vue-eslint-parser","version":"6.0.5","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@6.0.5","maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"homepage":"https://github.com/mysticatea/vue-eslint-parser#readme","bugs":{"url":"https://github.com/mysticatea/vue-eslint-parser/issues"},"dist":{"shasum":"c1c067c2755748e28f3872cd42e8c1c4c1a8059f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-6.0.5.tgz","fileCount":6,"integrity":"sha512-Bvjlx7rH1Ulvus56KHeLXOjEi3JMOYTa1GAqZr9lBQhd8weK8mV7U7V2l85yokBZEWHJQjLn6X3nosY8TzkOKg==","signatures":[{"sig":"MEQCIBB9ywuZEXfsCK/IbieS6R4ciWRm2ZRJznlziryZ2PPzAiABhFRviWtFPqxAH1sBH93oomZyFmt5d30esha2dMat2w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":739212,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdxp6GCRA9TVsSAnZWagAAZYMQAKFrTa+4FeVncw7R4cf1\nOVIc5e+HK1zCoVHfFVFbBnXgCKsUwbJLdY4qH0BrVTA+zWKNlGRw9plekC7n\nn9p6Mqe3HXyfUwOPGTEOyhE5bC8hKDXlBnPdjpVbvw6HMph7n/S3yqHa9nI9\n86vEg/ncirn0diN0olhldzyICDIVWv8dDo1/MXB4ZhyVw7R4HB69X9W0B8k1\npBbSK7+wwLFs67qko5Lpd2JcIKHkKMxUy+3oDY3F1RzQkljIJRrCXbfzUfND\nelu0BV/V3e/aB5J5ecIQ80ZRLw4fDv9ZuR6n40hz6cKAgk+tWgteM9loOQTr\nJT0IjR1xvVEbXrStJtxTavHYNsb9+QZXGFWI4Jf/TW6RagtiFagX/CxXlgqg\nuwahxeOpsf4dP1C373nCl0kuOWsmbv6nDxbJM/Xq8r0V5kNCCu1ctiNRDtVx\nl7rEmVSZhO5uKuWYlA9mbsusd5WnoU9I9pAFTmKAD2Lfy0TDeyODK9nModwg\nnBCiIvS9eFEP9QBskzfPeqx7v898OpSdtqHeIbPOrN+pvDYDXvPWOURmopDu\nodmLXNdDHpSRGASQ9J1cdnSkHqlZZZrYmXfMh2mobUWSpckqY2aXQsOkbQt3\n4nWy9eJ5rVHtBjWxaNDpQlfmGQ2ejIY20fOrzWn4zuf8fHMnd+dLgOFZFg95\nO+Rr\r\n=SpNO\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=6.5"},"gitHead":"cce993af9cec648cfe7550b65d0cc2d44b9e59cc","scripts":{"lint":"eslint src test --ext .js,.ts","test":"nyc mocha \"test/*.js\" --reporter dot --timeout 10000","build":"tsc --module es2015 && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","codecov":"codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --module es2015 --watch","preversion":"npm test","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc mocha \"test/*.js\" --reporter dot --timeout 10000","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"node scripts/update-fixtures-ast.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node scripts/update-fixtures-ast.js","preupdate-fixtures":"npm run -s build","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"public@mysticatea.dev"},"repository":{"url":"git+https://github.com/mysticatea/vue-eslint-parser.git","type":"git"},"_npmVersion":"6.12.1","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"12.12.0","dependencies":{"debug":"^4.1.1","espree":"^5.0.0","lodash":"^4.17.11","esquery":"^1.0.1","eslint-scope":"^4.0.0","eslint-visitor-keys":"^1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.0.0","mocha":"^6.1.4","warun":"^1.0.0","eslint":"^5.13.0","opener":"^1.5.1","rimraf":"^2.6.3","rollup":"^1.1.2","codecov":"^3.1.0","ts-node":"^8.1.0","wait-on":"^3.2.0","chokidar":"^2.0.4","fs-extra":"^7.0.1","dts-bundle":"^0.7.3","typescript":"~3.4.4","@types/node":"^10.12.21","cross-spawn":"^6.0.5","npm-run-all":"^4.1.5","@types/debug":"0.0.30","@types/mocha":"^5.2.4","babel-eslint":"^10.0.1","@types/estree":"0.0.38","@types/lodash":"^4.14.120","rollup-plugin-sourcemaps":"^0.4.2","@mysticatea/eslint-plugin":"^9.0.1","@typescript-eslint/parser":"^1.2.0","rollup-plugin-node-resolve":"^4.0.0"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser_6.0.5_1573297797527_0.4720154977751181","host":"s3://npm-registry-packages"}},"7.0.0":{"name":"vue-eslint-parser","version":"7.0.0","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@7.0.0","maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"homepage":"https://github.com/mysticatea/vue-eslint-parser#readme","bugs":{"url":"https://github.com/mysticatea/vue-eslint-parser/issues"},"dist":{"shasum":"a4ed2669f87179dedd06afdd8736acbb3a3864d6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-7.0.0.tgz","fileCount":6,"integrity":"sha512-yR0dLxsTT7JfD2YQo9BhnQ6bUTLsZouuzt9SKRP7XNaZJV459gvlsJo4vT2nhZ/2dH9j3c53bIx9dnqU2prM9g==","signatures":[{"sig":"MEQCIGva2812sjNc9DRFiMlNkgyQEmPDMJ5stUcwOkmJTwOPAiAGt32/EvbwRTmo6uS8oJHKXsnf1TzCmb4Ja9grxfZFxQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":740757,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdxr+5CRA9TVsSAnZWagAASlUP/jH6hBgJxPWKEaPaeeht\nHj6Cn0cV6Mz1NMUhCd8/EhsknCeMsgPhtitbWP0Iz3TNpq42CM/r0vdQHg7z\nj2Rcg8i/ObXuqkpw516oPqwGR9szjh3KHyXV0c9kcWfQiXB3F/AdhPxlhvHL\nNdiAzbghFkWCUU9oK5DK2L65G0vD8gvioz0UAGnGfwWlDcJELGnBDBMpKSUm\njvltbznANRqhzp8g0Da2v3wv0hnbagxhE8XEE4XfNDJvFtxzWtLjA6sPGniZ\nWwo0WjDWkL4olIO6zxx4dk2MJ61yQEo+nxDMS49p6rZnjdibtfN8eHkEmYEG\nBCKuFHGJdlIpLoIfkAIXQ0VPtVFj6UZZdhQ4nyD6wdUFqqeZl1XBVHfYGP3c\n9QoCOJgaeaCYYlBwKITztdLRF+7s910D6wbSI3qyquBYBKxgfdM+zG+iRzrS\nrSewrxWW8nte5INNMYQNhxvNXpgTUIhqIXhTjV7b3GtEqyVOXONFYlEDbqvx\n78Q/kNDkTKFwR4U+QXr7Ldw/JNrljVW6fvDqqvtE6Pike72NmJJ4Bbonzy2x\npgx1SRtSCWz+IrZ4VhdTwygJt6597Z8/ENSdElRbTEGwRg+CxqtafYmELzkC\nGjHmuBB7duuD6cIlQxF+yOaE3mjGMBgUaFO7OUv9CxAx5kLzlwL6R2xh19rj\npTrr\r\n=KiN3\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=8.10"},"gitHead":"84dac95f64fbe1ae18c5848d8ab287fa00260dfe","scripts":{"lint":"node -e \"if(process.env.ESLINT=='5')process.exit(1)\" && eslint src test --ext .js,.ts || node -e \"if(process.env.ESLINT!='5')process.exit(1)\"","test":"npm run -s test:mocha","build":"tsc --module es2015 && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","codecov":"codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --module es2015 --watch","preversion":"npm test","test:mocha":"nyc mocha \"test/*.js\" --reporter dot --timeout 10000","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc mocha \"test/*.js\" --reporter dot --timeout 10000","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"node scripts/update-fixtures-ast.js && node scripts/update-fixtures-document-fragment.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node scripts/update-fixtures-ast.js","preupdate-fixtures":"npm run -s build","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"public@mysticatea.dev"},"repository":{"url":"git+https://github.com/mysticatea/vue-eslint-parser.git","type":"git"},"_npmVersion":"6.12.1","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"12.12.0","dependencies":{"debug":"^4.1.1","espree":"^6.1.2","lodash":"^4.17.15","esquery":"^1.0.1","eslint-scope":"^5.0.0","eslint-visitor-keys":"^1.1.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.0.0","mocha":"^6.1.4","warun":"^1.0.0","eslint":"^6.1.0","opener":"^1.5.1","rimraf":"^2.6.3","rollup":"^1.1.2","codecov":"^3.1.0","ts-node":"^8.1.0","wait-on":"^3.2.0","chokidar":"^2.0.4","fs-extra":"^7.0.1","dts-bundle":"^0.7.3","typescript":"~3.4.4","@types/node":"^10.12.21","cross-spawn":"^6.0.5","npm-run-all":"^4.1.5","@types/debug":"0.0.30","@types/mocha":"^5.2.4","babel-eslint":"^10.0.1","@types/estree":"0.0.38","@types/lodash":"^4.14.120","rollup-plugin-sourcemaps":"^0.4.2","@mysticatea/eslint-plugin":"^11.0.0","@typescript-eslint/parser":"^1.2.0","rollup-plugin-node-resolve":"^4.0.0"},"peerDependencies":{"eslint":">=5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser_7.0.0_1573306297337_0.09901807932312412","host":"s3://npm-registry-packages"}},"7.1.0":{"name":"vue-eslint-parser","version":"7.1.0","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@7.1.0","maintainers":[{"name":"anonymous","email":"star.ctor@gmail.com"}],"homepage":"https://github.com/mysticatea/vue-eslint-parser#readme","bugs":{"url":"https://github.com/mysticatea/vue-eslint-parser/issues"},"dist":{"shasum":"9cdbcc823e656b087507a1911732b867ac101e83","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-7.1.0.tgz","fileCount":6,"integrity":"sha512-Kr21uPfthDc63nDl27AGQEhtt9VrZ9nkYk/NTftJ2ws9XiJwzJJCnCr3AITQ2jpRMA0XPGDECxYH8E027qMK9Q==","signatures":[{"sig":"MEYCIQDEbkKZvokjcQTs23JJsKejossiXM6Lo4tXoFzsGjZZuwIhAL49a1ZFgYUoKLMjtOIo7K1ALOnvOxw+mp01lP5P4zzG","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":744821,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJevnGCCRA9TVsSAnZWagAAgO8P/0faRAYbozPoYGWbYBis\nwB1xHuzYt3ofEVwtnUGVmZLOWJhq78kdwOyR2aZ10FRNGe/ZXpvePgMRa6Tk\nELq+MFNCXMsQthZG4EYiyZ8VroPz5uUxc3K/mnsh45C25YuMshvMnpOMDxq6\nSyDcfb5Nl0oBL947sdo9oDKfAjihjivilFyYLbWdT8rvsLqV4YTrdhK7oPMg\nyHcEM6H5wE4zTObsTA+4X5U4fDugESVEQnUAvJV+b9Gy1qD1y7hn+McKAq4u\n4npJSQ/z54SlE1Gv2k5FTLNTaFqCx5ltgw9xgQSPU7zQFdAtKWMHegMgCqv2\npxixDerFCwJLIlY/j0WEZ8r0s+bspUdoYxyv76NpMLZdjQymXF/885FTWdCS\n37HtPioaVBxaz8uteKITEBHDgwx/ma5kXM6aT/SqVzW2GmVXkjjCaEWIX+4S\n7ZcYU+Oqs1pv91oFXL8Gtm1xLd3JF6/viSBVpb2HWInU6FJuQqofW0ZjtuVi\ngsmMXQ6wbbyTlOHzNtkpYRbysAWVhuP7mwWv+SFGGashrnwNVnPstp1CIJpG\nLuowwg5KIV+dyvkvSODUQN0KIZzUeOVGOTpNttuUdG9ZCSTktBZAMTVZdKoc\nvYa3ZgsWbBr4DwsqE/R9nPGjEQqPzdITs2xLAjBQHQH/LN372TdBGi/+A6RP\n2hy2\r\n=ymf5\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=8.10"},"funding":"https://github.com/sponsors/mysticatea","gitHead":"c627e36c57ab6607c96f995e81b8ce693ac846ef","scripts":{"lint":"node -e \"if(process.env.ESLINT=='5')process.exit(1)\" && eslint src test --ext .js,.ts || node -e \"if(process.env.ESLINT!='5')process.exit(1)\"","test":"npm run -s test:mocha","build":"tsc --module es2015 && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","codecov":"codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --module es2015 --watch","preversion":"npm test","test:mocha":"nyc mocha \"test/*.js\" --reporter dot --timeout 10000","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc mocha \"test/*.js\" --reporter dot --timeout 10000","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"node scripts/update-fixtures-ast.js && node scripts/update-fixtures-document-fragment.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node scripts/update-fixtures-ast.js","preupdate-fixtures":"npm run -s build","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"public@mysticatea.dev"},"repository":{"url":"git+https://github.com/mysticatea/vue-eslint-parser.git","type":"git"},"_npmVersion":"6.14.4","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"12.12.0","dependencies":{"debug":"^4.1.1","espree":"^6.2.1","lodash":"^4.17.15","esquery":"^1.0.1","eslint-scope":"^5.0.0","eslint-visitor-keys":"^1.1.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.0.0","mocha":"^6.1.4","warun":"^1.0.0","eslint":"^7.0.0","opener":"^1.5.1","rimraf":"^2.6.3","rollup":"^1.1.2","codecov":"^3.1.0","ts-node":"^8.1.0","wait-on":"^3.2.0","chokidar":"^2.0.4","fs-extra":"^7.0.1","dts-bundle":"^0.7.3","typescript":"~3.4.4","@types/node":"^10.12.21","cross-spawn":"^6.0.5","npm-run-all":"^4.1.5","@types/debug":"0.0.30","@types/mocha":"^5.2.4","babel-eslint":"^10.0.1","@types/estree":"0.0.38","@types/lodash":"^4.14.120","rollup-plugin-sourcemaps":"^0.4.2","@mysticatea/eslint-plugin":"^11.0.0","@typescript-eslint/parser":"^2.31.0","rollup-plugin-node-resolve":"^4.0.0"},"peerDependencies":{"eslint":">=5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser_7.1.0_1589539200404_0.04232663017449778","host":"s3://npm-registry-packages"}},"7.1.1":{"name":"vue-eslint-parser","version":"7.1.1","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@7.1.1","maintainers":[{"name":"anonymous","email":"public@mysticatea.dev"},{"name":"anonymous","email":"otameshiyo23@gmail.com"}],"homepage":"https://github.com/mysticatea/vue-eslint-parser#readme","bugs":{"url":"https://github.com/mysticatea/vue-eslint-parser/issues"},"dist":{"shasum":"c43c1c715ff50778b9a7e9a4e16921185f3425d3","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-7.1.1.tgz","fileCount":6,"integrity":"sha512-8FdXi0gieEwh1IprIBafpiJWcApwrU+l2FEj8c1HtHFdNXMd0+2jUSjBVmcQYohf/E72irwAXEXLga6TQcB3FA==","signatures":[{"sig":"MEQCICfVLWARpCzJYe7xgAzYPs50ahDvwOjAhHRZEZDZLI3OAiAQGfmLu4oPzWEgAgAeJP+rZM/zDmYDN4wRYF1/g9+UHA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":747143,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfhDFzCRA9TVsSAnZWagAAmwQP/iE15CNMxfSQxFKxLDD3\nrWoiuqtWMV+ylJEGT63Rwai6mfKx57sDJxu9lZInHzVgXMmJsnclOLbEpX0d\nTtmo2HEq98tmxaMcUDZIQXVH+EhYOgP20ypBhSsFgrpg+Jd1Dui+Pvx5YeTo\nBOiA/yEkjTJUaXhy/ic1dD+gLCoQ8/dh3JYkwzRKbLb3L/xjXkHUYOYo6VNd\n1p0wcYlJ9fFkfSo6lxu/3QBHQPODde91zIhwnVWC9ZU5xqYOdqsL45KyXsTZ\n5Z3OhgMxJlA73tguU4H/DNRjyJXCx+m1VFJJcLQ4b82RTOEMTM/OOQAXw+b5\ngkQmlMp1VUkdSTHBdPvjsTK2cdWvkNQEfXvgHf4FRDI2yiz2jQGUXQTDMZZk\ntrC6DEF8jjqVG59EorxlrOtcCTa0Eq5hitJYRqjrfnt5Fj/hKsj06LjoyFPT\nwLY+mGKqX2tVBEFN2MscVVnLB+pU/tg1zIqqC6cmTsL3eHCcmTnVqckkWWVa\nGQA2NL932wjF9JJinFg6FchfGf0qODxN1pfRb6uRGz7Igclw5oy2mcO/MQ9S\nYKjoIULnJycJLuPqVSZYGWvKz8eIYJC4UXubFJf4t3NbKNCCmx+MXlo5vMlX\nzTIw5iDcJxyiYzZEzR60OiMfON7GdzfEmq6cA1J3Nzl8qWXMU+MCXoLux0m1\n3Qtk\r\n=YWg1\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=8.10"},"funding":"https://github.com/sponsors/mysticatea","gitHead":"f7d69af9ba51f831008a863877458d6297a6dc68","scripts":{"lint":"node -e \"if(process.env.ESLINT=='5')process.exit(1)\" && eslint src test --ext .js,.ts || node -e \"if(process.env.ESLINT!='5')process.exit(1)\"","test":"npm run -s test:mocha","build":"tsc --module es2015 && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","codecov":"codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --module es2015 --watch","preversion":"npm test","test:mocha":"nyc mocha \"test/*.js\" --reporter dot --timeout 10000","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc mocha \"test/*.js\" --reporter dot --timeout 10000","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"node scripts/update-fixtures-ast.js && node scripts/update-fixtures-document-fragment.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node scripts/update-fixtures-ast.js","preupdate-fixtures":"npm run -s build","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"otameshiyo23@gmail.com"},"repository":{"url":"git+https://github.com/mysticatea/vue-eslint-parser.git","type":"git"},"_npmVersion":"6.13.4","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"12.14.0","dependencies":{"debug":"^4.1.1","espree":"^6.2.1","lodash":"^4.17.15","esquery":"^1.0.1","eslint-scope":"^5.0.0","eslint-visitor-keys":"^1.1.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.0.0","mocha":"^6.1.4","warun":"^1.0.0","eslint":"^7.0.0","opener":"^1.5.1","rimraf":"^2.6.3","rollup":"^1.1.2","codecov":"^3.1.0","ts-node":"^8.1.0","wait-on":"^3.2.0","chokidar":"^2.0.4","fs-extra":"^7.0.1","dts-bundle":"^0.7.3","typescript":"~3.4.4","@types/node":"^10.12.21","cross-spawn":"^6.0.5","npm-run-all":"^4.1.5","@types/debug":"0.0.30","@types/mocha":"^5.2.4","babel-eslint":"^10.0.1","@types/estree":"0.0.38","@types/lodash":"^4.14.120","rollup-plugin-sourcemaps":"^0.4.2","@mysticatea/eslint-plugin":"^11.0.0","@typescript-eslint/parser":"^2.31.0","rollup-plugin-node-resolve":"^4.0.0"},"peerDependencies":{"eslint":">=5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser_7.1.1_1602498930959_0.7635784557040723","host":"s3://npm-registry-packages"}},"7.2.0":{"name":"vue-eslint-parser","version":"7.2.0","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@7.2.0","maintainers":[{"name":"anonymous","email":"public@mysticatea.dev"},{"name":"anonymous","email":"otameshiyo23@gmail.com"}],"homepage":"https://github.com/vuejs/vue-eslint-parser#readme","bugs":{"url":"https://github.com/vuejs/vue-eslint-parser/issues"},"dist":{"shasum":"1e17ae94ca71e617025e05143c8ac5593aacb6ef","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-7.2.0.tgz","fileCount":6,"integrity":"sha512-uVcQqe8sUNzdHGcRHMd2Z/hl6qEaWrAmglTKP92Fnq9TYU9un8xsyFgEdFJaXh/1rd7h8Aic1GaiQow5nVneow==","signatures":[{"sig":"MEUCIDJxppwr6i8i78bHdYIeSeNXjbduqcMBuPN4b+p7nIHbAiEAuOMwaNvSpzSePlUIF/NEW/uE65E9BJQyrU2ar6jSv/8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":758305,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfyFWnCRA9TVsSAnZWagAAQQMP/iPHhEO/4J01SCCQ1wGM\nXkqzHZeZsJPsdTyxYoh43fpseyutNA9ks4oaqn2x3MaE89/jUj73mZ5qbYae\nSparTv8qYQHiR9Gt5Bg6SNfzQUslxVssoWTu872XHmecGkQueXY4zTmlSyL3\nGtGccfELfjdIUQZPvQTlyb9DeHrxXlhVVNegZBjlXGyBPx4yvuSI2hvZXSna\nu4NPORgNOaeaJl6/KusRRdnSjSdGV3SVtJrzWxqNizh7vksjGwqXqm1nBZMf\n9v6fPyAvxRcyBXOwT+Sy+WDp4K3+b0Ef0FU/0vSn3Q43wJ7lMWprC0keUUbX\nizMUbUo1JGe8vjoZD0tP3ciJ2Q5PGEbjFrhmoWJTl18HVJtPJ/DhyeSanCoX\nWC+G2Nwz0daHakQrcslduXCwIIbc5awLPEBkqeTAcscD7Gpbp9vTHKhgw5Z3\nxAhjJ/yLgtRYZXY4ptZL1UK9iSvgMlFoKpS1KTO4VcxXCmxTqVn+83xAKKIN\najig4lRew/q3y6IgJVpEjOc3u8da/mrmISA3VzD5Z4yTtXpwkKvuflCjvzzz\nGGlGKeZErgHHRyYoYdXAFdTuYGLCSQGj7rUAMOBB4j2d3vgsGhL/KiITouST\nR5HtgzHElWziyyhfFqJ/nylkZAcl78Pe4UTSeRWq9vcrLwaTqkVm0ofhKEeA\nGIlX\r\n=E+oO\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=8.10"},"funding":"https://github.com/sponsors/mysticatea","gitHead":"0041efa24834df0faa11cd6829aafe7430e8fb98","scripts":{"lint":"eslint src test --ext .js,.ts","test":"npm run -s test:mocha","build":"tsc --module es2015 && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","codecov":"codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --module es2015 --watch","preversion":"npm test","test:debug":"mocha --inspect --require ts-node/register \"test/*.js\" --reporter dot --timeout 10000","test:mocha":"nyc mocha \"test/*.js\" --reporter dot --timeout 10000","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc mocha \"test/*.js\" --reporter dot --timeout 10000","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"node scripts/update-fixtures-ast.js && node scripts/update-fixtures-document-fragment.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node scripts/update-fixtures-ast.js","preupdate-fixtures":"npm run -s build","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"otameshiyo23@gmail.com"},"repository":{"url":"git+https://github.com/vuejs/vue-eslint-parser.git","type":"git"},"_npmVersion":"6.13.4","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"12.14.0","dependencies":{"debug":"^4.1.1","espree":"^6.2.1","lodash":"^4.17.15","esquery":"^1.0.1","eslint-scope":"^5.0.0","eslint-visitor-keys":"^1.1.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.0.0","mocha":"^6.1.4","warun":"^1.0.0","eslint":"^7.0.0","opener":"^1.5.1","rimraf":"^2.6.3","rollup":"^1.1.2","codecov":"^3.1.0","ts-node":"^8.1.0","wait-on":"^3.2.0","chokidar":"^2.0.4","fs-extra":"^7.0.1","dts-bundle":"^0.7.3","typescript":"~4.0.5","@types/node":"^10.12.21","cross-spawn":"^6.0.5","npm-run-all":"^4.1.5","@types/debug":"0.0.30","@types/mocha":"^5.2.4","babel-eslint":"^10.0.1","@types/estree":"0.0.38","@types/lodash":"^4.14.120","rollup-plugin-sourcemaps":"^0.4.2","@mysticatea/eslint-plugin":"^13.0.0","@typescript-eslint/parser":"^4.7.0","rollup-plugin-node-resolve":"^4.0.0"},"peerDependencies":{"eslint":">=5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser_7.2.0_1606964647065_0.569323354091583","host":"s3://npm-registry-packages"}},"7.3.0":{"name":"vue-eslint-parser","version":"7.3.0","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@7.3.0","maintainers":[{"name":"anonymous","email":"public@mysticatea.dev"},{"name":"anonymous","email":"otameshiyo23@gmail.com"}],"homepage":"https://github.com/vuejs/vue-eslint-parser#readme","bugs":{"url":"https://github.com/vuejs/vue-eslint-parser/issues"},"dist":{"shasum":"894085839d99d81296fa081d19643733f23d7559","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-7.3.0.tgz","fileCount":6,"integrity":"sha512-n5PJKZbyspD0+8LnaZgpEvNCrjQx1DyDHw8JdWwoxhhC+yRip4TAvSDpXGf9SWX6b0umeB5aR61gwUo6NVvFxw==","signatures":[{"sig":"MEQCIGBnz1qjXrLMxJYxe5UYu6C42yHyvAbQ2e6y8cFHxt50AiA48LFTdcV13+YigovP3bGEWjf4BaCxS0FKQK/REQKLPA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":803205,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf12QGCRA9TVsSAnZWagAAxT8P/Av2y4EcwNZ80o6fTxSH\niK2tzqNRuJXaCZj1sX4lal1ffapcjOICeNsCOO6qKjJpSnlCFSvSshyW1ZQh\nZchyKIk4nI7owFP5t4OJJiOF+9wiYF6DWLY0RKHO+Bdqa37ab7EcXWaV/Fpp\nGe3/e7CVqqW8XGNMh4GxLoBt+oC6ee/HqO5bx+9AXfl/f5Nc0TBzdt7Hpcz3\nSDUFY6YXTh7TpsFpzAx5phURInVUjFVf2lD8Rosrh1u8I6+vpPjQEX2JCzeL\nZ3HtCEMqR3UWhCmAV2lcIGXpSph0Z6HtwhXBIDvs8EoLv2GQT/mT5Ed0GWly\ngfZXn13abvuO+I7prV3qthR0jtRyRuo3HrA9KdWuTA/acRtId00nPlnPi25C\nhYJhGGBtVSbEcBw6biuCWxgT5RPw324lCf2+BHYhZAStDtmVwqztyUkSQ96s\njA4gZnK9U82BGLppKv7v7P2dRaXdBIW8V6991236WAkf5ieC5GUF+YmgIbFQ\nQoi3DqyVOoAIbCcLDNVfYNCpiXiEii37njsGnRl9RWt1PUzbzV/lH5VbL1pR\nf/o21WI8tylj1bITILkmszRLBJEHTJN7lkOPK7Na8DjfSZugrujsitDTEAe8\n2dE7abS9Lp+I2CXA51tXJXUNgfmER8vrTsFLL5HRo3QS43gWGQ1e1W65QJFO\nwX+P\r\n=lpdc\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=8.10"},"funding":"https://github.com/sponsors/mysticatea","gitHead":"17507a405709b4dc15e9a53de7baa522d382923e","scripts":{"lint":"eslint src test --ext .js,.ts","test":"npm run -s test:mocha","build":"tsc --module es2015 && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","codecov":"codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --module es2015 --watch","preversion":"npm test","test:debug":"mocha --inspect --require ts-node/register \"test/*.js\" --reporter dot --timeout 10000","test:mocha":"nyc mocha \"test/*.js\" --reporter dot --timeout 10000","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc mocha \"test/*.js\" --reporter dot --timeout 10000","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"node scripts/update-fixtures-ast.js && node scripts/update-fixtures-document-fragment.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node scripts/update-fixtures-ast.js","preupdate-fixtures":"npm run -s build","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"otameshiyo23@gmail.com"},"repository":{"url":"git+https://github.com/vuejs/vue-eslint-parser.git","type":"git"},"_npmVersion":"6.13.4","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"12.14.0","dependencies":{"debug":"^4.1.1","espree":"^6.2.1","lodash":"^4.17.15","esquery":"^1.0.1","eslint-scope":"^5.0.0","eslint-visitor-keys":"^1.1.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.0.0","mocha":"^6.1.4","warun":"^1.0.0","eslint":"^7.0.0","opener":"^1.5.1","rimraf":"^2.6.3","rollup":"^1.1.2","codecov":"^3.1.0","ts-node":"^8.1.0","wait-on":"^3.2.0","chokidar":"^2.0.4","fs-extra":"^7.0.1","prettier":"^2.2.1","dts-bundle":"^0.7.3","typescript":"~4.0.5","@types/node":"^10.12.21","cross-spawn":"^6.0.5","npm-run-all":"^4.1.5","@types/debug":"0.0.30","@types/mocha":"^5.2.4","babel-eslint":"^10.0.1","@types/eslint":"^7.2.6","@types/estree":"0.0.45","@types/lodash":"^4.14.120","jsonc-eslint-parser":"^0.6.0","rollup-plugin-sourcemaps":"^0.4.2","@mysticatea/eslint-plugin":"^13.0.0","@typescript-eslint/parser":"^4.7.0","rollup-plugin-node-resolve":"^4.0.0","@typescript-eslint/eslint-plugin":"^4.9.1"},"peerDependencies":{"eslint":">=5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser_7.3.0_1607951365643_0.3109478079173933","host":"s3://npm-registry-packages"}},"7.4.0":{"name":"vue-eslint-parser","version":"7.4.0","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@7.4.0","maintainers":[{"name":"anonymous","email":"public@mysticatea.dev"},{"name":"anonymous","email":"otameshiyo23@gmail.com"}],"homepage":"https://github.com/vuejs/vue-eslint-parser#readme","bugs":{"url":"https://github.com/vuejs/vue-eslint-parser/issues"},"dist":{"shasum":"174d07c0feb1591bc503ba912e78080d5b5afcf5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-7.4.0.tgz","fileCount":6,"integrity":"sha512-eGVI9eMckiYrpYUEZuC3rXNNd8Hlo7i5l3WQ7oANbtSBDTXGuL/v2uCtM6k0+r/bAiZIrcPqgaj2I8wldGqO+Q==","signatures":[{"sig":"MEUCIQD/xRzkXc4UIDLUSnfzUMziPutV+8L2M7mi+4zTnKLLgwIgFPK2tL+iq21k2vbZPVXOv2lOgca+sX7qXJW99TxoEVo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":822037,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgCWB/CRA9TVsSAnZWagAALVgP/j8dBpyH0jQysEGahYTG\n2ZFcCCu0+6Dwwt4Nddig38e9VLLVB9oaMKbokfdtH3Wgh4Mfnya1pCrXH/Ct\n4UrKpOUGD8bgnob2lb1yJPGT+oTRS9S7bZdQQWyFVmImAK/FI8ffjxQg8uyJ\nvgJEPp8P24XV0QpLSuq88IgQCWul30NENoe4RVmLU7b+9BNvGC0gEi/nn1fK\ni+Uwsv9U9+EYgrf7aXLU5ENUAev30GWj8odb9EFGhzs2aUiDri2lnH9yTPUv\nsII9Z5VRTzkfidu90bco8Giqskbx7s3EulBeBTb6u+WthcZ3Ez8/QcpPu/VH\n+tTW4Kfc81hTl8POaIqOZpaJhbVYZUVl6KNqxHuexZ3vbug2oXBDJgY2sp7F\ne+vX1ud+A8r5elUNdCge97clchglWDALgoWIujzuM3Uu6ywJeenAAGbcFF8k\nbxC9iFxeHHFGoWy3XqHSrnd1b1F9DZbebyqWXtdfQrtuHmI9zqvmGfCQxqa5\n/JTcQIdtP2/b4FI9oy1+G9PilokAMoQQ2lIoxtx6D3EZSGjRRHwKwAU8lx9s\n8RJfcFDqSdbPnFcyb2YhzfYgsdE1jnlsmHLqnitzRdZHF0spJyAnRD4myfg9\n7M5UqU/lB/t50GQUVwmvixAhpz5SHSIk0r8FMOISDbyKlTR56I0w3T+MbS5Z\nAAf+\r\n=ciAt\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=8.10"},"funding":"https://github.com/sponsors/mysticatea","gitHead":"3196668a150c39a88f8ecbf6feb907cf0429b488","scripts":{"lint":"eslint src test --ext .js,.ts","test":"npm run -s test:mocha","build":"tsc --module es2015 && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","codecov":"codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --module es2015 --watch","preversion":"npm test","test:debug":"mocha --inspect --require ts-node/register \"test/*.js\" --reporter dot --timeout 10000","test:mocha":"nyc mocha \"test/*.js\" --reporter dot --timeout 10000","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc mocha \"test/*.js\" --reporter dot --timeout 10000","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"node scripts/update-fixtures-ast.js && node scripts/update-fixtures-document-fragment.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node scripts/update-fixtures-ast.js","preupdate-fixtures":"npm run -s build","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"otameshiyo23@gmail.com"},"repository":{"url":"git+https://github.com/vuejs/vue-eslint-parser.git","type":"git"},"_npmVersion":"6.13.4","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"12.14.0","dependencies":{"debug":"^4.1.1","espree":"^6.2.1","lodash":"^4.17.15","esquery":"^1.0.1","eslint-scope":"^5.0.0","eslint-visitor-keys":"^1.1.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.0.0","mocha":"^6.1.4","warun":"^1.0.0","eslint":"^7.0.0","opener":"^1.5.1","rimraf":"^2.6.3","rollup":"^1.1.2","codecov":"^3.1.0","ts-node":"^8.1.0","wait-on":"^3.2.0","chokidar":"^2.0.4","fs-extra":"^7.0.1","prettier":"^2.2.1","dts-bundle":"^0.7.3","typescript":"~4.0.5","@types/node":"^10.12.21","cross-spawn":"^6.0.5","npm-run-all":"^4.1.5","@types/debug":"0.0.30","@types/mocha":"^5.2.4","babel-eslint":"^10.0.1","@types/eslint":"^7.2.6","@types/estree":"0.0.45","@types/lodash":"^4.14.120","jsonc-eslint-parser":"^0.6.0","rollup-plugin-sourcemaps":"^0.4.2","@mysticatea/eslint-plugin":"^13.0.0","@typescript-eslint/parser":"^4.7.0","rollup-plugin-node-resolve":"^4.0.0","@typescript-eslint/eslint-plugin":"^4.9.1"},"peerDependencies":{"eslint":">=5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser_7.4.0_1611227263498_0.8846516914704408","host":"s3://npm-registry-packages"}},"7.4.1":{"name":"vue-eslint-parser","version":"7.4.1","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@7.4.1","maintainers":[{"name":"anonymous","email":"public@mysticatea.dev"},{"name":"anonymous","email":"otameshiyo23@gmail.com"}],"homepage":"https://github.com/vuejs/vue-eslint-parser#readme","bugs":{"url":"https://github.com/vuejs/vue-eslint-parser/issues"},"dist":{"shasum":"e4adcf7876a7379758d9056a72235af18a587f92","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-7.4.1.tgz","fileCount":6,"integrity":"sha512-AFvhdxpFvliYq1xt/biNBslTHE/zbEvSnr1qfHA/KxRIpErmEDrQZlQnvEexednRHmLfDNOMuDYwZL5xkLzIXQ==","signatures":[{"sig":"MEYCIQD/Ksnle94TkdJyUS8aIjZL1fPKYdZIBJJ9a+yeNRLkKwIhALO9esO034ylKzmYHiq0v9ya/deurVBtTPLswN/SX1I0","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":822072,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgCXExCRA9TVsSAnZWagAAbUAP/1FGf6l2YUuJchvmUvQJ\nyetXn5ezMj9LAW4dS75upKpPHpeFMbrqLsNlAF8TBcKCPgrfsg2h/UUuNoh5\nmYSHaUH6qEKuCbWsBr7EqUld6g6x73aCMY9ucqeMIJkqKzxclJ9mGxf0/apZ\n06SjQmvOT/vwb/Gd898cY4NAT3y7sjXe6dt/OiCM2+uA7MfE2VVNMR+KSoZz\nPipw+h8zr6LbPl74/9WM4F5/oCaT72bDSdBCQjTmVc35asnabzNO0zVzVLi2\njvHsqElQAzAme2nIp10eIXuCExGhq2JwiXU+5FlEioympyNgHXDxmaJvX3Ij\n81NeHhlQ8awJ7oP9ZGJCchQLycVhYCUCe4V8AuIUV84PdW+8tCFAMbw8LyYb\nmfwQ5OM/jKEN6V4rchWFsNXlGlwmPh0eLumfV25LexWu8fNJxghJbex5NW/c\ng7pgr/pVLiRYIvMSdYit2Mcnc7CN+g6Vb0R9yK7MpBRaNEygQzR88yMkHKO2\n7cVg9837zzbFrlZUC/UW6kH702hGf/s4iBG0GOqO73JI/BNLZup/UF15Aezl\njw9ILwQ4TaG51w6uuPqn1UfOOUrAFtdK8Mnjg0+ox+icX2GLE4hbo0Dxq5OC\niISZt8gwFhGaMs31hJRXD8tR3o6F3Lp4zocplM6H4Er+xlV8/yu952dEy7dl\nbxud\r\n=7Z9G\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=8.10"},"funding":"https://github.com/sponsors/mysticatea","gitHead":"57248514ec1e91eb978ef8a057032c74e2e4701e","scripts":{"lint":"eslint src test --ext .js,.ts","test":"npm run -s test:mocha","build":"tsc --module es2015 && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","codecov":"codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --module es2015 --watch","preversion":"npm test","test:debug":"mocha --inspect --require ts-node/register \"test/*.js\" --reporter dot --timeout 10000","test:mocha":"nyc mocha \"test/*.js\" --reporter dot --timeout 10000","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc mocha \"test/*.js\" --reporter dot --timeout 10000","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"node scripts/update-fixtures-ast.js && node scripts/update-fixtures-document-fragment.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node scripts/update-fixtures-ast.js","preupdate-fixtures":"npm run -s build","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"otameshiyo23@gmail.com"},"repository":{"url":"git+https://github.com/vuejs/vue-eslint-parser.git","type":"git"},"_npmVersion":"6.13.4","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"12.14.0","dependencies":{"debug":"^4.1.1","espree":"^6.2.1","lodash":"^4.17.15","esquery":"^1.0.1","eslint-scope":"^5.0.0","eslint-visitor-keys":"^1.1.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.0.0","mocha":"^6.1.4","warun":"^1.0.0","eslint":"^7.0.0","opener":"^1.5.1","rimraf":"^2.6.3","rollup":"^1.1.2","semver":"^7.3.4","codecov":"^3.1.0","ts-node":"^8.1.0","wait-on":"^3.2.0","chokidar":"^2.0.4","fs-extra":"^7.0.1","prettier":"^2.2.1","dts-bundle":"^0.7.3","typescript":"~4.0.5","@types/node":"^10.12.21","cross-spawn":"^6.0.5","npm-run-all":"^4.1.5","@types/debug":"0.0.30","@types/mocha":"^5.2.4","babel-eslint":"^10.0.1","@types/eslint":"^7.2.6","@types/estree":"0.0.45","@types/lodash":"^4.14.120","jsonc-eslint-parser":"^0.6.0","rollup-plugin-sourcemaps":"^0.4.2","@mysticatea/eslint-plugin":"^13.0.0","@typescript-eslint/parser":"^4.14.0","rollup-plugin-node-resolve":"^4.0.0","@typescript-eslint/eslint-plugin":"^4.9.1"},"peerDependencies":{"eslint":">=5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser_7.4.1_1611231536507_0.0007925246393034602","host":"s3://npm-registry-packages"}},"7.5.0":{"name":"vue-eslint-parser","version":"7.5.0","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@7.5.0","maintainers":[{"name":"anonymous","email":"public@mysticatea.dev"},{"name":"anonymous","email":"otameshiyo23@gmail.com"}],"homepage":"https://github.com/vuejs/vue-eslint-parser#readme","bugs":{"url":"https://github.com/vuejs/vue-eslint-parser/issues"},"dist":{"shasum":"b68221c55fee061899afcfb4441ec74c1495285e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-7.5.0.tgz","fileCount":6,"integrity":"sha512-6EHzl00hIpy4yWZo3qSbtvtVw1A1cTKOv1w95QSuAqGgk4113XtRjvNIiEGo49r0YWOPYsrmI4Dl64axL5Agrw==","signatures":[{"sig":"MEQCIG68TUNcnQckLlfJFVwudVoJrfkJdeEY9+bBz3epF8y8AiA/Tf67N7fNpgHSGEzSK40sfgEuX3XXC+HK77T3Q6rPeA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":823282,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgKHDGCRA9TVsSAnZWagAAVxkP/i4a39nRkD0z1WtAM0Dk\nXgc/h4lSPUs7e6nCkI409Uq8TRkCVQkI4vBIEwoyUcgVi64QlUNtUeAX+YU/\nh28N9dpl7qKvpjAXaY/ufYjbcm8aGAeOg6oCC6P3Ge+3F4MoXTDFSKaO8nJ4\nIHrQwBxkl3I1hRy6UTxSpMwlLBguZOm4pmyQGPu3R7/TiA3wiVBV4KTBZv77\nDZP1kf+OArT4zVz+QVlTJegcscei0LN0ST0xZ9hAXn6PC9zbkaT+fgnhSrEX\nlh2S6bRKFxdclDWYXHNBvLFXRHoS4xTAYze31fNCI+iZEyA22jr+vPxrb8KK\np0Z9Y0B+CdGQT+CHMhd7HbGK5sjGh6XIMfu5hgGZKGxtvkZJSgtz7XrScWAf\n0ufVB4azP/Ax+pBCtZXH54WnX9j8xHtKenc/zRCWOMx+ZzP3/lSyOXx4WiEK\nLczQSYCFrMR/XacJvLlqU8c3h7zCOgKozRvYBuYDoICv8yni1w6Z7yXiFhmi\n7i7xjEtedwb7xp2lqd5PJV1M49C4ElZWIMYReV+Cw4r0xkAWlgS/1wRYnJIg\n+kCehJQ36qlueX41p7VcRx/JRRW02nqqaAstWvN/2o9gNHM0EarigMX7NQnY\n1BW0WheS4eCAL0ueA+YK1yHyUcr/K3UIWfOikVwOjOA4qerk4lW8EqnyaaYY\nSaAU\r\n=ko5/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=8.10"},"funding":"https://github.com/sponsors/mysticatea","gitHead":"c6e6aa325ada47a29dc7577b9693cfb48ee1c1cc","scripts":{"lint":"eslint src test --ext .js,.ts","test":"npm run -s test:mocha","build":"tsc --module es2015 && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","codecov":"codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --module es2015 --watch","preversion":"npm test","test:debug":"mocha --inspect --require ts-node/register \"test/*.js\" --reporter dot --timeout 10000","test:mocha":"nyc mocha \"test/*.js\" --reporter dot --timeout 10000","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc mocha \"test/*.js\" --reporter dot --timeout 10000","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"node scripts/update-fixtures-ast.js && node scripts/update-fixtures-document-fragment.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node scripts/update-fixtures-ast.js","preupdate-fixtures":"npm run -s build","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"otameshiyo23@gmail.com"},"repository":{"url":"git+https://github.com/vuejs/vue-eslint-parser.git","type":"git"},"_npmVersion":"6.13.4","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"12.14.0","dependencies":{"debug":"^4.1.1","espree":"^6.2.1","lodash":"^4.17.15","esquery":"^1.4.0","eslint-scope":"^5.0.0","eslint-visitor-keys":"^1.1.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.0.0","mocha":"^6.1.4","warun":"^1.0.0","eslint":"^7.0.0","opener":"^1.5.1","rimraf":"^2.6.3","rollup":"^1.1.2","semver":"^7.3.4","codecov":"^3.1.0","ts-node":"^8.1.0","wait-on":"^3.2.0","chokidar":"^2.0.4","fs-extra":"^7.0.1","prettier":"^2.2.1","dts-bundle":"^0.7.3","typescript":"~4.0.5","@types/node":"^10.12.21","cross-spawn":"^6.0.5","npm-run-all":"^4.1.5","@types/debug":"0.0.30","@types/mocha":"^5.2.4","babel-eslint":"^10.0.1","@types/eslint":"^7.2.6","@types/estree":"0.0.45","@types/lodash":"^4.14.120","jsonc-eslint-parser":"^0.6.0","rollup-plugin-sourcemaps":"^0.4.2","@mysticatea/eslint-plugin":"^13.0.0","@typescript-eslint/parser":"^4.14.0","rollup-plugin-node-resolve":"^4.0.0","@typescript-eslint/eslint-plugin":"^4.9.1"},"peerDependencies":{"eslint":">=5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser_7.5.0_1613263045767_0.7687962616251751","host":"s3://npm-registry-packages"}},"7.6.0":{"name":"vue-eslint-parser","version":"7.6.0","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@7.6.0","maintainers":[{"name":"anonymous","email":"public@mysticatea.dev"},{"name":"anonymous","email":"otameshiyo23@gmail.com"}],"homepage":"https://github.com/vuejs/vue-eslint-parser#readme","bugs":{"url":"https://github.com/vuejs/vue-eslint-parser/issues"},"dist":{"shasum":"01ea1a2932f581ff244336565d712801f8f72561","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-7.6.0.tgz","fileCount":6,"integrity":"sha512-QXxqH8ZevBrtiZMZK0LpwaMfevQi9UL7lY6Kcp+ogWHC88AuwUPwwCIzkOUc1LR4XsYAt/F9yHXAB/QoD17QXA==","signatures":[{"sig":"MEUCIQDUv6itPKYAANtppxULwq1njoN3EktBed8Tc2NLMV+dvQIgLvRrMqsYg7qS5C6Qd3+fuRZGBsJk4vqarvsxS5zwCVQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":826106,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgPg3kCRA9TVsSAnZWagAASKcP/ikgpEcq+loR4Myzn7xt\nfYU079nrh8YxcSBmCdZXSt04V9VC4D2Wk8GqylyJnTmSrDmZKHR7BZngIshU\nx3N0HOy0yeeA7xpbMU2a/MGdyJmHOw0/WkPqtEsrjEakznUyV2he4uX0cce7\nKUsKp/LWbC0AFqQIEVQzyzir4O997Edpsqs8krZEGpq/4h2YYprzAqCXlw2I\nmcL5dPLQmljwKFPr/39dH3O7zdHSeZIYUGWNDcNvSrY3qHzP9v3Ms4pq9LO4\n4yrFAE5uuRyhKVuFp/0w0Ppq7rhKRsR7O06SKDGxLbeE8wxbFp2ieDnAG78X\nGYJkHJ2efuTM6O0/UxT3aLBgx8SRpX2sZh32EmjRCE9sP7AOSe9s46msXPru\nfreVXyjJmVHvhrL0t8CQylrqaZuDjRP4x3lwPCIuWim7jn+2OaFItsnNKbdc\nAM43f4Zhg5pZxr41BbdK3RKOW63K6u3PGJR7DZyJs2E7gezpRnj/utybrHfg\n4h9iHv+0pJUrPBtLgRqqr3L+054X9bhGi8wrduCrIx5AqxEB5IqSk6F5i0Sd\nrtn8+lkFiqrD6DgDLHNOzW4i9WjjonZDVBu5z4j5VaTwqrOxZNv8QSDgTvBl\nPQkPdyVDmF8dWnFvymb3Sd6+T+WZGaD7zGU75ADbvmCubk+UP7p670Kjl3+d\nz/24\r\n=NJqE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=8.10"},"funding":"https://github.com/sponsors/mysticatea","gitHead":"aa55d1c5d732e6ec8f46933306ae52aa2e1c49ab","scripts":{"lint":"eslint src test --ext .js,.ts","test":"npm run -s test:mocha","build":"tsc --module es2015 && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","codecov":"codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --module es2015 --watch","preversion":"npm test","test:debug":"mocha --inspect --require ts-node/register \"test/*.js\" --reporter dot --timeout 10000","test:mocha":"nyc mocha \"test/*.js\" --reporter dot --timeout 10000","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc mocha \"test/*.js\" --reporter dot --timeout 10000","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"node scripts/update-fixtures-ast.js && node scripts/update-fixtures-document-fragment.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node scripts/update-fixtures-ast.js","preupdate-fixtures":"npm run -s build","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"otameshiyo23@gmail.com"},"repository":{"url":"git+https://github.com/vuejs/vue-eslint-parser.git","type":"git"},"_npmVersion":"6.13.4","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"12.14.0","dependencies":{"debug":"^4.1.1","espree":"^6.2.1","lodash":"^4.17.15","esquery":"^1.4.0","eslint-scope":"^5.0.0","eslint-visitor-keys":"^1.1.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.0.0","mocha":"^6.1.4","warun":"^1.0.0","eslint":"^7.0.0","opener":"^1.5.1","rimraf":"^2.6.3","rollup":"^1.1.2","semver":"^7.3.4","codecov":"^3.1.0","ts-node":"^8.1.0","wait-on":"^3.2.0","chokidar":"^2.0.4","fs-extra":"^7.0.1","prettier":"^2.2.1","dts-bundle":"^0.7.3","typescript":"~4.0.5","@types/node":"^10.12.21","cross-spawn":"^6.0.5","npm-run-all":"^4.1.5","@types/debug":"0.0.30","@types/mocha":"^5.2.4","babel-eslint":"^10.0.1","@types/eslint":"^7.2.6","@types/estree":"0.0.45","@types/lodash":"^4.14.120","jsonc-eslint-parser":"^0.6.0","rollup-plugin-sourcemaps":"^0.4.2","@mysticatea/eslint-plugin":"^13.0.0","@typescript-eslint/parser":"^4.14.0","rollup-plugin-node-resolve":"^4.0.0","@typescript-eslint/eslint-plugin":"^4.9.1"},"peerDependencies":{"eslint":">=5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser_7.6.0_1614679523342_0.5784162704498463","host":"s3://npm-registry-packages"}},"7.7.0":{"name":"vue-eslint-parser","version":"7.7.0","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@7.7.0","maintainers":[{"name":"anonymous","email":"public@mysticatea.dev"},{"name":"anonymous","email":"otameshiyo23@gmail.com"}],"homepage":"https://github.com/vuejs/vue-eslint-parser#readme","bugs":{"url":"https://github.com/vuejs/vue-eslint-parser/issues"},"dist":{"shasum":"58f737bcf3d35b0c4dc3ee0f2bdd668d73ea4003","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-7.7.0.tgz","fileCount":6,"integrity":"sha512-5UKC1WlG4Od547e0qFJlBxdTqr0LKs4m2JrJgW8DF7pe4Qyt7aNjOVG+72GYCUcux31vByPGLUDf1Cr9L7vTsg==","signatures":[{"sig":"MEYCIQD6vDik453trmKJxbsxYcy6luSKnH1UAVeREyUxNZSwgQIhAPrVMWe6qMmQLUWjMzpOaawPFlhqxYq1rC/mNVz56zAB","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":884382,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg3ln9CRA9TVsSAnZWagAAJWsP/R6tjGq27ZPRvqA7uH3x\n7dcdbNOiPzLpGvTkK/587NkOT2Dj5v1MBN8s5Q7dmvMXqUqljguYFIVBEWvD\nV6+j7/wTUArO8brvt1oK/lWAA8XBSoR542GH8SYEQUd9ao42JTEFylpzCeOj\nkWF6RKBhNuxnLYt0BH+7ZmjBMfKdWhO+4GEUu6l6MjY9OZMm0CirXoNj1LNt\nQawCAf+PcEl/RgoiOre/kOfDMjAKK7KMsd6UVh+iUO3YFp1O1tKUi4aCQpUL\nNFsk0lGMVnIbsWea/IX/gT4H8Uxz3Y5tCOnvYs2hxBoEO3ADt0CMJtPK5ZHh\n+VYcKfai2UEnFpLJJf3tXBTTWoQjIGdlCjjAl1pUQHZoaEuevE+1EB9eagvU\nVTWqQTcXd4DQVvED8XcueYPeDOzkxjqN8clg0dYhmkQ3ROCOCP8nBRmuhMIm\nJMznSXvUOI3GJk7V8/bxxhH8zugyZqhK6v8IFN/h1xLPREH6Gq5JOQkUM2wL\nvZUGj2dTSSFMjsj+a3RIS4RRNth4ZaCzwG5TkP+AUwi3FbGrbwYmkYcRKEVS\n/REQt3B5OUhow2WHWQzjwA9S/fytyjJjQ5U5eIOic970hKYy9g7MrCdEEoDa\nNBvE2zojitKHO31HfYIuQW3zEsvqNDuCUnsD0nYk73HD10O3TO8C/leDIylI\nKLV3\r\n=G8lr\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=8.10"},"funding":"https://github.com/sponsors/mysticatea","gitHead":"68dde0f0131faf9684dfbb4ffd23a8be07011b8b","scripts":{"lint":"eslint src test --ext .js,.ts","test":"npm run -s test:mocha","build":"tsc --module es2015 && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","codecov":"codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --module es2015 --watch","preversion":"npm test","test:debug":"mocha --inspect --require ts-node/register/transpile-only \"test/*.js\" --reporter dot --timeout 10000","test:mocha":"nyc mocha \"test/*.js\" --reporter dot --timeout 10000","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc mocha \"test/*.js\" --reporter dot --timeout 10000","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"node scripts/update-fixtures-ast.js && node scripts/update-fixtures-document-fragment.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node scripts/update-fixtures-ast.js","preupdate-fixtures":"npm run -s build","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"otameshiyo23@gmail.com"},"repository":{"url":"git+https://github.com/vuejs/vue-eslint-parser.git","type":"git"},"_npmVersion":"6.14.13","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.1.1","espree":"^8.0.0","lodash":"^4.17.21","semver":"^7.3.5","esquery":"^1.4.0","eslint-scope":"^5.1.1","eslint-visitor-keys":"^1.1.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.0.0","mocha":"^6.1.4","warun":"^1.0.0","eslint":"^7.0.0","opener":"^1.5.1","rimraf":"^2.6.3","rollup":"^1.1.2","codecov":"^3.1.0","ts-node":"^8.1.0","wait-on":"^3.2.0","chokidar":"^2.0.4","fs-extra":"^7.0.1","prettier":"^2.3.1","dts-bundle":"^0.7.3","typescript":"~4.0.5","@types/node":"^10.12.21","cross-spawn":"^6.0.5","npm-run-all":"^4.1.5","@types/debug":"0.0.30","@types/mocha":"^5.2.4","babel-eslint":"^10.0.1","@types/eslint":"^7.2.6","@types/estree":"0.0.45","@types/lodash":"^4.14.120","@types/semver":"^7.3.6","jsonc-eslint-parser":"^0.6.0","rollup-plugin-sourcemaps":"^0.4.2","@mysticatea/eslint-plugin":"^13.0.0","@typescript-eslint/parser":"^4.14.0","rollup-plugin-node-resolve":"^4.0.0","@typescript-eslint/eslint-plugin":"^4.9.1"},"peerDependencies":{"eslint":">=5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser_7.7.0_1625184765311_0.45304177958152936","host":"s3://npm-registry-packages"}},"7.7.1":{"name":"vue-eslint-parser","version":"7.7.1","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@7.7.1","maintainers":[{"name":"anonymous","email":"public@mysticatea.dev"},{"name":"anonymous","email":"otameshiyo23@gmail.com"}],"homepage":"https://github.com/vuejs/vue-eslint-parser#readme","bugs":{"url":"https://github.com/vuejs/vue-eslint-parser/issues"},"dist":{"shasum":"db018d6cb5c28f5c62329bc2e98433c8d897afdc","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-7.7.1.tgz","fileCount":6,"integrity":"sha512-rUGUCKH5rSGTvF9QlxYXi6MyoSATcrTbLwiCqFuFRhaSJLlDYBmsXJ08xIZoLdsUl/OfCC1ibnkj7SWHRTrStQ==","signatures":[{"sig":"MEUCICkXNfPqpZnBSh2Z2MoYuNMMLDTUcvDeys56ps+uzu4gAiEAtYAKhhz36gVusYWcd5MN+kQ2J/FacGvyE6efZxYoWbs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":884885,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg3n0RCRA9TVsSAnZWagAAVLMP/0/Tz4IWTiHgWHaCJvaD\nqI46sB5poxQgIUxaUgxFvLiHtYef3QWfOToKeACnzJlLvz4sU4kiobDvXq4I\nZGE7+3aRDY+4SvAVjxnqPt5+fi90pqA4Y5nPyL2/G0J48Q6gFLVOxjw2o280\nhFITRKWJ88S04tMxXPLYiuaKjEUzCgai8XGxi5nrk9quwnLB1xs3GVgHip3p\n42VjQs8eDaRFai5KBAayk5mkwBXhUumX7Cs+uLMyZD6774Rsro7Ag5HPgaoO\nx6d8xRWHkLWpfJVRbu9uaHVLkcSCBSd3aGL0DMDE8yuRhkgdk19m+HqNgbHK\nPGBKI46QWHoP7ntnTmqneUcWwJSwY+h7AXSv5AcKBij00W46rhwpYudHbApf\nPafxzqlHZ5obAQvdwhvNw0kHmdcmFmxsm96yDPFkr4iIfjcod3DYBFuDxSfb\nXTyem1o/E5TIchar1Ak0PxnAbTD4kBVxuLM7TbAJr8kZIE7MFZLHqz7oBVg/\naprhFal5Nu4uPZVZzT3KkNG/3LUNZvNCpRcLvFDBwVO0hGoh0yJxED/gIUXs\nJ9UlaH71AjfUDBcWGAbqQa8mhmDBBsmYoq3pNP/4A7DEphuhDGO7m1f0RYri\ny5oEANyZeEVVWcIKk+gDDFf/9YGlsFaq0Gm6fN0DVAwEIpx+fOd2kUPNptLj\nTMmW\r\n=hXGg\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=8.10"},"funding":"https://github.com/sponsors/mysticatea","gitHead":"3908b3495e941acdd64e180baa1219d73f730e84","scripts":{"lint":"eslint src test --ext .js,.ts","test":"npm run -s test:mocha","build":"tsc --module es2015 && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","codecov":"codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --module es2015 --watch","preversion":"npm test","test:debug":"mocha --inspect --require ts-node/register/transpile-only \"test/*.js\" --reporter dot --timeout 10000","test:mocha":"nyc mocha \"test/*.js\" --reporter dot --timeout 10000","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc mocha \"test/*.js\" --reporter dot --timeout 10000","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"node scripts/update-fixtures-ast.js && node scripts/update-fixtures-document-fragment.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node scripts/update-fixtures-ast.js","preupdate-fixtures":"npm run -s build","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"otameshiyo23@gmail.com"},"repository":{"url":"git+https://github.com/vuejs/vue-eslint-parser.git","type":"git"},"_npmVersion":"6.14.13","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.1.1","espree":"^8.0.0","lodash":"^4.17.21","semver":"^7.3.5","esquery":"^1.4.0","eslint-scope":"^5.1.1","eslint-visitor-keys":"^1.1.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.0.0","mocha":"^6.1.4","warun":"^1.0.0","eslint":"^7.0.0","opener":"^1.5.1","rimraf":"^2.6.3","rollup":"^1.1.2","codecov":"^3.1.0","ts-node":"^8.1.0","wait-on":"^3.2.0","chokidar":"^2.0.4","fs-extra":"^7.0.1","prettier":"^2.3.1","dts-bundle":"^0.7.3","typescript":"~4.0.5","@types/node":"^10.12.21","cross-spawn":"^6.0.5","npm-run-all":"^4.1.5","@types/debug":"0.0.30","@types/mocha":"^5.2.4","babel-eslint":"^10.0.1","@types/eslint":"^7.2.6","@types/estree":"0.0.45","@types/lodash":"^4.14.120","@types/semver":"^7.3.6","jsonc-eslint-parser":"^0.6.0","rollup-plugin-sourcemaps":"^0.4.2","@mysticatea/eslint-plugin":"^13.0.0","@typescript-eslint/parser":"^4.14.0","rollup-plugin-node-resolve":"^4.0.0","@typescript-eslint/eslint-plugin":"^4.9.1"},"peerDependencies":{"eslint":">=5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser_7.7.1_1625193744535_0.8419128268008049","host":"s3://npm-registry-packages"}},"7.7.2":{"name":"vue-eslint-parser","version":"7.7.2","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@7.7.2","maintainers":[{"name":"anonymous","email":"public@mysticatea.dev"},{"name":"anonymous","email":"otameshiyo23@gmail.com"}],"homepage":"https://github.com/vuejs/vue-eslint-parser#readme","bugs":{"url":"https://github.com/vuejs/vue-eslint-parser/issues"},"dist":{"shasum":"a723080b29c27fa0b3737bedceaeebe30fd0f359","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-7.7.2.tgz","fileCount":6,"integrity":"sha512-zkfxSttpwBW9SQEa+rLR+j6sFHGGhanVH3VuzHQwybCQWJsg/Yi1W619gXOW01U/zekN4D+J4/S4Zufd1sClZg==","signatures":[{"sig":"MEQCIDq5OevkuIVgtlufZghIyBFa7voapr9khB85k+KAUIN4AiBP05wMnqCbm2t0U+QkWpEsvZKyk6zBrFs1e31cZ3KohA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":886866,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg3utlCRA9TVsSAnZWagAAiqcP/i22Ufo8JyEGAvr5MyPN\ncOv8PRG+noi5z5Y0bR5ibA1RHhXpKPorx6YA8NKCMf7FKSj6VAbh62nY3CJ8\nuQTiVbyTjB5af1/BWCk4Lb2BRJ1Q5Nar2Qr/gdM+voXy5fNLfvHLVaGpCghX\nJEq6/MV5ya4T0nLji0B2g4d2eFXNa565v8Bpr1T34ppjk4fK03EfbgHdM954\nco+gv89Sv4viRAcnuw2rJXNSCzGhGh5ujOTWQ3i9OTajBg3BZBhmXSawgSDI\n607SxTrGCqvYF0ubvC2URg6RypxmijS5xFKfjORXhNmDORTjCfiVB9dK7FU9\n682yYJorIULn65WbuV94D72I/yeIULMq9u/BWcm1o3PP7/LSZp3pBaXRwu6B\nB97d0QUQKjlPCLODEttWOYuQB/+Wt8SxK7n2JCmZHCoUrIUhSOpeqnLklPo/\nrttEPurw550fszL7VqRQJogHwJW1h1z4bFGgsjIYQmgxgDxMS56VzJGcwLhZ\nRRVrf3CaTOPrk8m9OZ/dLmAUMTAyTVD5APBod4jEgdeP5eg/jqBwORXxf8Q0\nhQ0/QqD/JYpK3USW81jrgATQklbULracGmbc1N5phzdRXz1g7EHScFND9Bfp\ngv9p1waouH5ZilbRw+VcrUwfJZh09EJZk+lq6AKooiKtEoCH303GECKcZ8Vj\n2qNG\r\n=YJus\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=8.10"},"funding":"https://github.com/sponsors/mysticatea","gitHead":"4d6e4c1a14a28f463878913fb75674b6d70c1d6c","scripts":{"lint":"eslint src test --ext .js,.ts","test":"npm run -s test:mocha","build":"tsc --module es2015 && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","codecov":"codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --module es2015 --watch","preversion":"npm test","test:debug":"mocha --inspect --require ts-node/register/transpile-only \"test/*.js\" --reporter dot --timeout 10000","test:mocha":"nyc mocha \"test/*.js\" --reporter dot --timeout 10000","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc mocha \"test/*.js\" --reporter dot --timeout 10000","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"node scripts/update-fixtures-ast.js && node scripts/update-fixtures-document-fragment.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node scripts/update-fixtures-ast.js","preupdate-fixtures":"npm run -s build","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"otameshiyo23@gmail.com"},"repository":{"url":"git+https://github.com/vuejs/vue-eslint-parser.git","type":"git"},"_npmVersion":"6.14.13","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.1.1","espree":"^6.2.1","lodash":"^4.17.21","semver":"^6.3.0","esquery":"^1.4.0","eslint-scope":"^5.1.1","eslint-visitor-keys":"^1.1.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.0.0","mocha":"^6.1.4","warun":"^1.0.0","eslint":"^7.0.0","opener":"^1.5.1","rimraf":"^2.6.3","rollup":"^1.1.2","codecov":"^3.1.0","ts-node":"^8.1.0","wait-on":"^3.2.0","chokidar":"^2.0.4","fs-extra":"^7.0.1","prettier":"^2.3.1","dts-bundle":"^0.7.3","typescript":"~4.0.5","@types/node":"^10.12.21","cross-spawn":"^6.0.5","npm-run-all":"^4.1.5","@types/debug":"0.0.30","@types/mocha":"^5.2.4","babel-eslint":"^10.0.1","@types/eslint":"^7.2.6","@types/estree":"0.0.45","@types/lodash":"^4.14.120","@types/semver":"^7.3.6","jsonc-eslint-parser":"^0.6.0","rollup-plugin-sourcemaps":"^0.4.2","@mysticatea/eslint-plugin":"^13.0.0","@typescript-eslint/parser":"^4.14.0","rollup-plugin-node-resolve":"^4.0.0","@typescript-eslint/eslint-plugin":"^4.9.1"},"peerDependencies":{"eslint":">=5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser_7.7.2_1625221988432_0.2489410422333016","host":"s3://npm-registry-packages"}},"7.8.0":{"name":"vue-eslint-parser","version":"7.8.0","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@7.8.0","maintainers":[{"name":"anonymous","email":"public@mysticatea.dev"},{"name":"anonymous","email":"otameshiyo23@gmail.com"}],"homepage":"https://github.com/vuejs/vue-eslint-parser#readme","bugs":{"url":"https://github.com/vuejs/vue-eslint-parser/issues"},"dist":{"shasum":"43850bf856c9a69d62c0e12769609c338423684b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-7.8.0.tgz","fileCount":6,"integrity":"sha512-ehmmrLZNYLUoKayvVW8l8HyPQIfuYZHiJoQLRP3dapDlTU7bGs4tqIKVGdAEpMuXS/b4R/PImCt7Tkj4UhX1SQ==","signatures":[{"sig":"MEYCIQDER7L9zxE0NLrHXX6sR1fPNvnR7ldd8VxJ9wPsgQ4L+gIhALsRSV+pGXpyxtImJZnKS40OcDUIgnLU6QF3zhv7Y9R+","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":924185,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg5C+nCRA9TVsSAnZWagAAqBcP/0bMPA/PN7jitBTgghi3\nF+an5BiduO3kJ7AgtIbCBIOVE601VqhCBZQygd5MmnMdJy8vFOZiQ2wex1/a\n31JNIADMY7SV/SdvvkvH1D7b3HT/CjxTTpcidu7Kun6yIvbLhtNxM8w5qduW\nexzILeB5yY+rsx1/DTrjmW3HOs6c0LII2JtOtFmNdg5JO7c7hrd+rp79zp5U\nOtcmyopeYjpGveOvSwHQlYHlLX2+PriKOqQ7+NcZqIH/ldN5HcCiKcuE6dmM\nGa2k8GUhK/QgMPW8fK+aPf8L3N1ij/aGqSZDHgAoW65uEQRNdyQI6juzdjQ2\n1ghJxMzO1C9afWztODMoABrnKb6YiJTGNNQt46OrSZdGs2OquBckvvQIXUjU\nHM26LHA9AkZL1ouxWlitWoUViXj/6NsKQM6RXhER5nREpdpK820L/VYb4dli\n4exw/Sn04FOVEEzFVbLnYc5BmegyWavW8UEmXYcEe6G0znZE35c18WW4bIDE\nqgL/3yNJsfqazYOtsckSHcXsigeioRZrigWHOMRgf5hd0RTxLQ/S+GQVI1Ug\nZe3PLX2sYspZ2DkosBr69i1XD4pv+Tr2cBbTWZDval0g5EyTcDNDF+RpmVo2\nSee3Ms0i+PprTHdg4AuAfS9FjocOYnE5mzBwxu7kAF0vxpkZ1kOKNvgQ1or+\n1Ykk\r\n=9vRA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=8.10"},"funding":"https://github.com/sponsors/mysticatea","gitHead":"c36717c65fc90f015c0bc310f6a7b91dcf7577f7","scripts":{"lint":"eslint src test --ext .js,.ts","test":"npm run -s test:mocha","build":"tsc --module es2015 && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","codecov":"codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --module es2015 --watch","preversion":"npm test","test:debug":"mocha --inspect --require ts-node/register/transpile-only \"test/*.js\" --reporter dot --timeout 60000","test:mocha":"nyc mocha \"test/*.js\" --reporter dot --timeout 60000","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc mocha \"test/*.js\" --reporter dot --timeout 10000","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"node scripts/update-fixtures-ast.js && node scripts/update-fixtures-document-fragment.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node scripts/update-fixtures-ast.js","preupdate-fixtures":"npm run -s build","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"otameshiyo23@gmail.com"},"repository":{"url":"git+https://github.com/vuejs/vue-eslint-parser.git","type":"git"},"_npmVersion":"6.14.13","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.1.1","espree":"^6.2.1","lodash":"^4.17.21","semver":"^6.3.0","esquery":"^1.4.0","eslint-scope":"^5.1.1","eslint-visitor-keys":"^1.1.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.0.0","mocha":"^6.1.4","warun":"^1.0.0","eslint":"^7.0.0","opener":"^1.5.1","rimraf":"^2.6.3","rollup":"^1.1.2","codecov":"^3.1.0","ts-node":"^8.1.0","wait-on":"^3.2.0","chokidar":"^2.0.4","fs-extra":"^7.0.1","prettier":"^2.3.1","dts-bundle":"^0.7.3","typescript":"~4.0.5","@types/node":"^10.12.21","cross-spawn":"^6.0.5","npm-run-all":"^4.1.5","@types/debug":"0.0.30","@types/mocha":"^5.2.4","babel-eslint":"^10.0.1","@types/eslint":"^7.2.6","@types/estree":"0.0.45","@types/lodash":"^4.14.120","@types/semver":"^7.3.6","jsonc-eslint-parser":"^0.6.0","rollup-plugin-sourcemaps":"^0.4.2","@mysticatea/eslint-plugin":"^13.0.0","@typescript-eslint/parser":"^4.14.0","rollup-plugin-node-resolve":"^4.0.0","@typescript-eslint/eslint-plugin":"^4.9.1"},"peerDependencies":{"eslint":">=5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser_7.8.0_1625567142904_0.9261762146299792","host":"s3://npm-registry-packages"}},"7.9.0":{"name":"vue-eslint-parser","version":"7.9.0","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@7.9.0","maintainers":[{"name":"anonymous","email":"public@mysticatea.dev"},{"name":"anonymous","email":"otameshiyo23@gmail.com"}],"homepage":"https://github.com/vuejs/vue-eslint-parser#readme","bugs":{"url":"https://github.com/vuejs/vue-eslint-parser/issues"},"dist":{"shasum":"5eeedc71f22ebc7b18b957d1ab171acf29a41e64","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-7.9.0.tgz","fileCount":6,"integrity":"sha512-QBlhZ5LteDRVy2dISfQhNEmmcqph+GTaD4SH41bYzXcVHFPJ9p34zCG6QAqOZVa8PKaVgbomFnoZpGJRZi14vg==","signatures":[{"sig":"MEUCIQC7ksuT0agBGcmSXqgCsyElOenePHB15JJ4EBsFw2F41AIga99E89VbpbyFVkJHPZnIDn6kjob4JP+4O+aZ0j/cncA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":964171,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg83jXCRA9TVsSAnZWagAAhicQAIqK3AB+c5h54R8Mv0hA\n+WP8zp3Pq8zuece1H6KBgGLEr1IoaRpbtIMMVWp2vKTgsOoJRllNCNhWcLec\nSAQRBXVIKnvnAOKzC3CIxNwKqDRUyGt7LJFG4QTPNTPoItdEBaDH0C2UvWed\nk9PsPHCp281MCBVSMyzhsOKniWRD3Xn57aSZmQ5LGVH7sa5/hwz+We8SkBHz\nwL1P3qnT7Fyn886++fz4lNoyqXCOkPjE1E7EYJB3YzDDtQrD70eUWa/B0to8\nz4fwRQChG6W9KXla6t3QoGAQ/VFiADS3/FKs78VCCYeGLIS3xny6nMLsUMPT\n5K3rSMAtK0l+06sEooenjFMutPysTHwH7pkAVhxuFOW8nIBDjhP3ZfkbNUqS\nTzDr56NrTA99T2C2qkFv6xejrBrt7RW/E5bnR6a4LVaUIWIfcEigNTOPIvtL\nVN7oiMBfg+Q1HRd3qF82PZfrFGzmC+lzmHehhGUfT3YTIOvGAHYHwNPIVNAh\nyg9ra1dY9Ia7NJY7b8Oqvi8qHtzrzjEUPJHvwxIUA4U24PlZCtAXn3vbpxbA\nOwKCH2z5w2mviilqKFYdY3vkUowzMasTId4OlZQnHKrP+cwh5Py94DOUS7tF\neXnfv0aKsutYNGqDGk1C+wtdg18CIywNorO0X3BGqwFDBqssUlOfQLIhldyg\nFlzY\r\n=5cKP\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=8.10"},"funding":"https://github.com/sponsors/mysticatea","gitHead":"02b6d084a9d08e1fd61a4aed039b80d50ee05111","scripts":{"lint":"eslint src test --ext .js,.ts","test":"npm run -s test:mocha","build":"tsc --module es2015 && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","codecov":"codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --module es2015 --watch","preversion":"npm test","test:debug":"mocha --inspect --require ts-node/register/transpile-only \"test/*.js\" --reporter dot --timeout 60000","test:mocha":"nyc mocha \"test/*.js\" --reporter dot --timeout 60000","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc mocha \"test/*.js\" --reporter dot --timeout 10000","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"node scripts/update-fixtures-ast.js && node scripts/update-fixtures-document-fragment.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node scripts/update-fixtures-ast.js","preupdate-fixtures":"npm run -s build","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"otameshiyo23@gmail.com"},"repository":{"url":"git+https://github.com/vuejs/vue-eslint-parser.git","type":"git"},"_npmVersion":"6.14.13","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.1.1","espree":"^6.2.1","lodash":"^4.17.21","semver":"^6.3.0","esquery":"^1.4.0","eslint-scope":"^5.1.1","eslint-visitor-keys":"^1.1.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.0.0","mocha":"^6.1.4","warun":"^1.0.0","eslint":"^7.0.0","opener":"^1.5.1","rimraf":"^2.6.3","rollup":"^1.1.2","codecov":"^3.1.0","ts-node":"^8.1.0","wait-on":"^3.2.0","chokidar":"^2.0.4","fs-extra":"^7.0.1","prettier":"^2.3.1","dts-bundle":"^0.7.3","typescript":"~4.0.5","@types/node":"^10.12.21","cross-spawn":"^6.0.5","npm-run-all":"^4.1.5","@types/debug":"0.0.30","@types/mocha":"^5.2.4","babel-eslint":"^10.0.1","@types/eslint":"^7.2.6","@types/estree":"0.0.45","@types/lodash":"^4.14.120","@types/semver":"^7.3.6","jsonc-eslint-parser":"^0.6.0","rollup-plugin-sourcemaps":"^0.4.2","@mysticatea/eslint-plugin":"^13.0.0","@typescript-eslint/parser":"^4.14.0","rollup-plugin-node-resolve":"^4.0.0","@typescript-eslint/eslint-plugin":"^4.9.1"},"peerDependencies":{"eslint":">=5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser_7.9.0_1626568918958_0.8992153106786782","host":"s3://npm-registry-packages"}},"7.10.0":{"name":"vue-eslint-parser","version":"7.10.0","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@7.10.0","maintainers":[{"name":"anonymous","email":"public@mysticatea.dev"},{"name":"anonymous","email":"otameshiyo23@gmail.com"}],"homepage":"https://github.com/vuejs/vue-eslint-parser#readme","bugs":{"url":"https://github.com/vuejs/vue-eslint-parser/issues"},"dist":{"shasum":"ea4e4b10fd10aa35c8a79ac783488d8abcd29be8","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-7.10.0.tgz","fileCount":6,"integrity":"sha512-7tc/ewS9Vq9Bn741pvpg8op2fWJPH3k32aL+jcIcWGCTzh/zXSdh7pZ5FV3W2aJancP9+ftPAv292zY5T5IPCg==","signatures":[{"sig":"MEYCIQDBeGIR2fKm0QwfZD2QvYxPFBrFrpMYpmaaRf7E9AUz8gIhAM7wEekX/a8xwi1guTApaBME2gGACAf6G4FVe7PEqNZA","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":974652,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhAPSlCRA9TVsSAnZWagAAo1cP/36yrxWejyqtnG0eqWXh\nBPIb7BlsII3xfoyq9a4GiHbDIr02SVZ4dourNvH2CYjejBxR/bJweEntEfYf\nk0fvJLk1onYw9aqReG3nol4s+7NaSsfjFerNyvAL9awfw13cSXOcvsXA2Ft/\n26EA8tpN+apQUbe4063AR8Yl+Wc2aRGsjpRM9i2hli608T1CKE9ZD2ssq4Q3\n0cXyuTIWGQy/lZoScALOXxXnPJ/iYEY02oUFyQ5aAh85/ZsdtbENcP6EDzwj\nVRfizVya7CezAt51IqcIttd8S30rXCXIWkRkgrElA2Uhb5gRfT+z2JzR3ea/\nDnIfKXCaJIQKs9sajnV9JUdDRxix8+ORlgArv94018nkdxngFEKgEmFyntBa\nfV04ppLyaGmyT0/S91at7clAoclolEBZ4jwHmEQKpEj9TnxQZ9pIj/1yRc33\nrWOhXLG7pKVL3esZX9tbxFbvdkSU2XYg8DX1nHgshNQm+Ij2EdXL0LzVS2t4\n0CuZk4dSUKnmZdzEvqLjz1fcUtb0UH8mpkJNXCCcliEHdXNPrFgzsqJS8vnI\n0Nh9QmCdKqHGZXP+wk/PQ/88fARRwb6cFmPI2B2t9yRAH5xErXtd8Cvnto5+\n+clNGyeWZmQMqG7ASrhnRNPb93OMzXR9PjnPObGca9oJUtQS1e4w+2w8Y32c\ndM+1\r\n=sy9T\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=8.10"},"funding":"https://github.com/sponsors/mysticatea","gitHead":"42e4f923f7bc2527f73fb4a566cf7f3ee5ed2e0e","scripts":{"lint":"eslint src test --ext .js,.ts","test":"npm run -s test:mocha","build":"tsc --module es2015 && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","codecov":"codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --module es2015 --watch","preversion":"npm test","test:debug":"mocha --inspect --require ts-node/register/transpile-only \"test/*.js\" --reporter dot --timeout 60000","test:mocha":"nyc mocha \"test/*.js\" --reporter dot --timeout 60000","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc mocha \"test/*.js\" --reporter dot --timeout 10000","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"node scripts/update-fixtures-ast.js && node scripts/update-fixtures-document-fragment.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node scripts/update-fixtures-ast.js","preupdate-fixtures":"npm run -s build","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"otameshiyo23@gmail.com"},"repository":{"url":"git+https://github.com/vuejs/vue-eslint-parser.git","type":"git"},"_npmVersion":"6.14.13","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.1.1","espree":"^6.2.1","lodash":"^4.17.21","semver":"^6.3.0","esquery":"^1.4.0","eslint-scope":"^5.1.1","eslint-visitor-keys":"^1.1.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.0.0","mocha":"^6.1.4","warun":"^1.0.0","eslint":"^7.0.0","opener":"^1.5.1","rimraf":"^2.6.3","rollup":"^1.1.2","codecov":"^3.1.0","ts-node":"^8.1.0","wait-on":"^3.2.0","chokidar":"^2.0.4","fs-extra":"^7.0.1","prettier":"^2.3.1","dts-bundle":"^0.7.3","typescript":"~4.0.5","@types/node":"^10.12.21","cross-spawn":"^6.0.5","npm-run-all":"^4.1.5","@types/debug":"0.0.30","@types/mocha":"^5.2.4","babel-eslint":"^10.0.1","@types/eslint":"^7.2.6","@types/estree":"0.0.45","@types/lodash":"^4.14.120","@types/semver":"^7.3.6","jsonc-eslint-parser":"^0.6.0","rollup-plugin-sourcemaps":"^0.4.2","@mysticatea/eslint-plugin":"^13.0.0","@typescript-eslint/parser":"^4.14.0","rollup-plugin-node-resolve":"^4.0.0","@typescript-eslint/eslint-plugin":"^4.9.1"},"peerDependencies":{"eslint":">=5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser_7.10.0_1627452581199_0.23213585722878172","host":"s3://npm-registry-packages"}},"7.11.0":{"name":"vue-eslint-parser","version":"7.11.0","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@7.11.0","maintainers":[{"name":"anonymous","email":"public@mysticatea.dev"},{"name":"anonymous","email":"otameshiyo23@gmail.com"}],"homepage":"https://github.com/vuejs/vue-eslint-parser#readme","bugs":{"url":"https://github.com/vuejs/vue-eslint-parser/issues"},"dist":{"shasum":"214b5dea961007fcffb2ee65b8912307628d0daf","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-7.11.0.tgz","fileCount":6,"integrity":"sha512-qh3VhDLeh773wjgNTl7ss0VejY9bMMa0GoDG2fQVyDzRFdiU3L7fw74tWZDHNQXdZqxO3EveQroa9ct39D2nqg==","signatures":[{"sig":"MEYCIQDl7QHGxbEk4ASlvfiJdqYN/DMSqLsbjTRZxoH650SScgIhAKuNMv2DABdtY/wDd3AFgvnIHEKfJq+/Co3paprchWwf","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":976674,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhNUxHCRA9TVsSAnZWagAAJ/8P/204oNxcHYnTUiNYhcPm\nRSO2R+f+ij/aKTfrG6uR3FH2ZDzoPJCiQeenUkIFTNz12v9mkwdTyi4g9YBG\nvfxjebtcw0IanALiuJDhd3Ivd+XRO5LVeMM9yb9iuVCIYvSo2tMjZ6EE9hU7\ngLD0+honYjDeC5rBpDGo2CgP2VtNG9/5epIsZQlqP0W/eSzxTpKXnu/z3bLj\nzNWEfORWhrqQpDOdTI2eXpTREhe2mtflUaIPzW3APadWrIXtLpx+RToHJonv\nrM8slx/oSUrwrWZ+3REPIB0lkJRDuCGU7HMsmhm6vzWmDdK6Zs9jLj8oB0Rg\ndVWD20HOCHTHP/mQRFS4GSfRJdHQa6gfT1aFuBZic9YskvdOlktelmn7foLy\nKEUupG3YtarfDVNPvdMwdVIqHLMKmgkWLlsZ+sP9R3z90TxDPO5XB6mkDsyx\nvMvVdMiB/ySm+RPEtW5iCI8ttXGKdx78/TKUv5kCa1U4SeCNPuXqYfAPssND\nUQkYfcy1Hk+HFS2Mn0c7vCJ/FjOTpHGA2oTe1i+xEf4M64PEfDqUWuknX4To\nx7wwZd60tP7jv6wfxsR/TorOG3uTY5BpQ7rRf7guFnGWtHzq79eMG8SUZygo\naFfsLBYr+BJwPZwxNv8OQodtJ5axsPNrGinlDy6qjwR8JaiGWeETymiqXgFl\n7984\r\n=gUgk\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=8.10"},"funding":"https://github.com/sponsors/mysticatea","gitHead":"b5a5af9dd33f828231a62bb033cfdd0c256bea76","scripts":{"lint":"eslint src test package.json --ext .js,.ts","test":"npm run -s test:mocha","build":"tsc --module es2015 && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","codecov":"codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --module es2015 --watch","preversion":"npm test","test:debug":"mocha --require ts-node/register/transpile-only \"test/*.js\" --reporter dot --timeout 60000","test:mocha":"nyc mocha \"test/*.js\" --reporter dot --timeout 60000","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc mocha \"test/*.js\" --reporter dot --timeout 10000","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"node scripts/update-fixtures-ast.js && node scripts/update-fixtures-document-fragment.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node scripts/update-fixtures-ast.js","preupdate-fixtures":"npm run -s build","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"otameshiyo23@gmail.com"},"repository":{"url":"git+https://github.com/vuejs/vue-eslint-parser.git","type":"git"},"_npmVersion":"6.14.13","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.1.1","espree":"^6.2.1","lodash":"^4.17.21","semver":"^6.3.0","esquery":"^1.4.0","eslint-scope":"^5.1.1","eslint-visitor-keys":"^1.1.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.0.0","mocha":"^6.1.4","warun":"^1.0.0","eslint":"^7.0.0","opener":"^1.5.1","rimraf":"^2.6.3","rollup":"^1.1.2","codecov":"^3.1.0","ts-node":"^8.1.0","wait-on":"^3.2.0","chokidar":"^2.0.4","fs-extra":"^7.0.1","prettier":"^2.3.1","dts-bundle":"^0.7.3","typescript":"~4.0.5","@babel/core":"^7.15.0","@types/node":"^10.12.21","cross-spawn":"^6.0.5","npm-run-all":"^4.1.5","@types/debug":"0.0.30","@types/mocha":"^5.2.4","babel-eslint":"^10.0.1","@types/eslint":"^7.2.6","@types/estree":"0.0.45","@types/lodash":"^4.14.120","@types/semver":"^7.3.6","eslint-plugin-jsonc":"^1.4.0","jsonc-eslint-parser":"^0.6.0","@babel/eslint-parser":"^7.15.0","rollup-plugin-sourcemaps":"^0.4.2","@mysticatea/eslint-plugin":"^13.0.0","@typescript-eslint/parser":"^4.14.0","rollup-plugin-node-resolve":"^4.0.0","@babel/plugin-syntax-decorators":"^7.14.5","@babel/plugin-syntax-typescript":"^7.14.5","eslint-plugin-node-dependencies":"^0.5.0","@typescript-eslint/eslint-plugin":"^4.9.1","@babel/plugin-syntax-pipeline-operator":"^7.15.0"},"peerDependencies":{"eslint":">=5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser_7.11.0_1630882887238_0.30795652714321964","host":"s3://npm-registry-packages"}},"8.0.0":{"name":"vue-eslint-parser","version":"8.0.0","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@8.0.0","maintainers":[{"name":"anonymous","email":"public@mysticatea.dev"},{"name":"anonymous","email":"otameshiyo23@gmail.com"}],"homepage":"https://github.com/vuejs/vue-eslint-parser#readme","bugs":{"url":"https://github.com/vuejs/vue-eslint-parser/issues"},"dist":{"shasum":"d77fe0f47a378a7022d3d10c44d5c3df158bd27a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-8.0.0.tgz","fileCount":6,"integrity":"sha512-YxN5bkPDji+XLQ4sx+ULLxckL+y/oS3xzgFRkcjJL2asfVcRhzbrNRwMtWgj/70fXsrr+hkFjkxze8PBZ5O3ug==","signatures":[{"sig":"MEUCIAgZPsd22LAYj5Q8OjNB32xAlEw6OcEJZ+3Rgqb1OeGqAiEAkOufNj9HBL6lZsyXRjSgR3EcLtYxZFPOcAoArR7IirA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":976535},"main":"index.js","engines":{"node":"^12.22.0 || ^14.17.0 || >=16.0.0"},"funding":"https://github.com/sponsors/mysticatea","gitHead":"db2d94511091826c63676440c9ae5e7059381eae","scripts":{"lint":"eslint src test package.json --ext .js,.ts","test":"npm run -s test:mocha","build":"tsc --module es2015 && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","codecov":"codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --module es2015 --watch","preversion":"npm test","test:debug":"mocha --require ts-node/register/transpile-only \"test/*.js\" --reporter dot --timeout 60000","test:mocha":"nyc mocha \"test/*.js\" --reporter dot --timeout 60000","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc mocha \"test/*.js\" --reporter dot --timeout 10000","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"node scripts/update-fixtures-ast.js && node scripts/update-fixtures-document-fragment.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node scripts/update-fixtures-ast.js","preupdate-fixtures":"npm run -s build","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"otameshiyo23@gmail.com"},"repository":{"url":"git+https://github.com/vuejs/vue-eslint-parser.git","type":"git"},"_npmVersion":"6.14.13","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.2","espree":"^9.0.0","lodash":"^4.17.21","semver":"^7.3.5","esquery":"^1.4.0","eslint-scope":"^6.0.0","eslint-visitor-keys":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.0.0","mocha":"^6.1.4","warun":"^1.0.0","eslint":"^8.0.0-0","opener":"^1.5.1","rimraf":"^2.6.3","rollup":"^1.1.2","codecov":"^3.1.0","ts-node":"^8.1.0","wait-on":"^3.2.0","chokidar":"^2.0.4","fs-extra":"^7.0.1","prettier":"^2.3.1","dts-bundle":"^0.7.3","typescript":"~4.0.5","@babel/core":"^7.15.0","@types/node":"^10.12.21","cross-spawn":"^6.0.5","npm-run-all":"^4.1.5","@types/debug":"0.0.30","@types/mocha":"^5.2.4","@types/eslint":"^7.2.6","@types/estree":"0.0.45","@types/lodash":"^4.14.120","@types/semver":"^7.3.6","eslint-plugin-node":"^11.1.0","eslint-plugin-jsonc":"^1.4.0","jsonc-eslint-parser":"^0.6.0","@babel/eslint-parser":"^7.15.0","eslint-plugin-prettier":"^4.0.0","rollup-plugin-sourcemaps":"^0.4.2","@typescript-eslint/parser":"^5.0.0-0","rollup-plugin-node-resolve":"^4.0.0","eslint-plugin-eslint-comments":"^3.2.0","@babel/plugin-syntax-decorators":"^7.14.5","@babel/plugin-syntax-typescript":"^7.14.5","eslint-plugin-node-dependencies":"^0.5.0","@typescript-eslint/eslint-plugin":"^5.0.0-0","@babel/plugin-syntax-pipeline-operator":"^7.15.0"},"peerDependencies":{"eslint":">=6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser_8.0.0_1634602879219_0.9166192005373093","host":"s3://npm-registry-packages"}},"8.0.1":{"name":"vue-eslint-parser","version":"8.0.1","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@8.0.1","maintainers":[{"name":"anonymous","email":"public@mysticatea.dev"},{"name":"anonymous","email":"otameshiyo23@gmail.com"}],"homepage":"https://github.com/vuejs/vue-eslint-parser#readme","bugs":{"url":"https://github.com/vuejs/vue-eslint-parser/issues"},"dist":{"shasum":"25e08b20a414551531f3e19f999902e1ecf45f13","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-8.0.1.tgz","fileCount":6,"integrity":"sha512-lhWjDXJhe3UZw2uu3ztX51SJAPGPey1Tff2RK3TyZURwbuI4vximQLzz4nQfCv8CZq4xx7uIiogHMMoSJPr33A==","signatures":[{"sig":"MEUCIBOCSkIqONaTmF7yz8C+sxlcMH1uRGpRKWuHL7MZRr+VAiEAv25FhzHHheJOIEhQ4fIBa/Q5xSBjqqP5yECpYBNU+Xw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":978752,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh3AQTCRA9TVsSAnZWagAAnq4P/iLJkT4/R7ix/Qb4ltJI\nOG+MnvoUfAQGWj7FdvL/oTYVcBY9G34sqkIxjGU8oIoBg/c8jBDyHuht4ap5\nij8zBjfl3GOJxPfeZYFd2Xp8l4ScNr0nKO9YU2xcNWlZXIiEo2aHzrLWH7D8\n9CK7JR5je+Ck/dFttZfBAU4KgcshDlNrkaRbLTSyWUaFYuo7aFGwS3inlUvM\n9Gmo3wJOcgcfvZOeeweHAVP8uIOkBFKnMjK9oZR/IF/vHkd4jDHvBy5rLGe9\nbreQq4za9L16tWyri5zYUjmGM4cDK569lV29IoK6xN38InVI4xF5odg2jTey\n4t7gDLxW0y1ih7iftKA5L+SYkW1ppVa7poZ09WLyjOUtHQNYOQx49Sg6/ygo\nhGhTWfx5+IxHxa6ib5pS2kHzMMIfDCU6egYqycsKXTcLmL+RZbmHRJxraKN2\nqHa/5PNnlDtJKXWOfi687o7Hb7gHwTER0zaZri/8lOE0GOflUuqOJrj0zFb4\nNddjPjFepoF9DvxLZ+zULjsgmmkeerw1oxaZiRYY6KuTMSA+g2JUdf6UyF1P\nuTHxXKh+u6roj4gfObNbiv52KzBpeDHN16sCo84S3p+iThs4BGTYgM59JuyW\nr4uuQUNy1+NiJ491lpzGvC8Totds1TMLoZzu9kwH1HyHJKyz79Z9H909FMxC\ncP2k\r\n=7Gwb\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":"^12.22.0 || ^14.17.0 || >=16.0.0"},"funding":"https://github.com/sponsors/mysticatea","gitHead":"a16cdbdbbd57984c8b3386b8d7dc46e2e3b205e9","scripts":{"lint":"eslint src test package.json --ext .js,.ts","test":"npm run -s test:mocha","build":"tsc --module es2015 && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","codecov":"codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --module es2015 --watch","preversion":"npm test","test:debug":"mocha --require ts-node/register/transpile-only \"test/*.js\" --reporter dot --timeout 60000","test:mocha":"nyc mocha \"test/*.js\" --reporter dot --timeout 60000","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc mocha \"test/*.js\" --reporter dot --timeout 10000","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"node scripts/update-fixtures-ast.js && node scripts/update-fixtures-document-fragment.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node scripts/update-fixtures-ast.js","preupdate-fixtures":"npm run -s build","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"otameshiyo23@gmail.com"},"repository":{"url":"git+https://github.com/vuejs/vue-eslint-parser.git","type":"git"},"_npmVersion":"6.14.13","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.2","espree":"^9.0.0","lodash":"^4.17.21","semver":"^7.3.5","esquery":"^1.4.0","eslint-scope":"^6.0.0","eslint-visitor-keys":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.0.0","mocha":"^6.1.4","warun":"^1.0.0","eslint":"^8.0.0","opener":"^1.5.1","rimraf":"^2.6.3","rollup":"^1.1.2","codecov":"^3.1.0","ts-node":"^8.1.0","wait-on":"^3.2.0","chokidar":"^2.0.4","fs-extra":"^7.0.1","prettier":"^2.3.1","dts-bundle":"^0.7.3","typescript":"~4.0.5","@babel/core":"^7.15.0","@types/node":"^10.12.21","cross-spawn":"^6.0.5","npm-run-all":"^4.1.5","@types/debug":"0.0.30","@types/mocha":"^5.2.4","@types/eslint":"^7.2.6","@types/estree":"0.0.45","@types/lodash":"^4.14.120","@types/semver":"^7.3.6","eslint-plugin-node":"^11.1.0","eslint-plugin-jsonc":"^1.4.0","jsonc-eslint-parser":"^0.6.0","@babel/eslint-parser":"^7.15.0","eslint-plugin-prettier":"^4.0.0","rollup-plugin-sourcemaps":"^0.4.2","@typescript-eslint/parser":"^5.0.0-0","rollup-plugin-node-resolve":"^4.0.0","eslint-plugin-eslint-comments":"^3.2.0","@babel/plugin-syntax-decorators":"^7.14.5","@babel/plugin-syntax-typescript":"^7.14.5","eslint-plugin-node-dependencies":"^0.5.0","@typescript-eslint/eslint-plugin":"^5.0.0-0","@babel/plugin-syntax-pipeline-operator":"^7.15.0"},"peerDependencies":{"eslint":">=6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser_8.0.1_1635566500162_0.9273348287568015","host":"s3://npm-registry-packages"}},"8.1.0":{"name":"vue-eslint-parser","version":"8.1.0","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@8.1.0","maintainers":[{"name":"anonymous","email":"public@mysticatea.dev"},{"name":"anonymous","email":"otameshiyo23@gmail.com"}],"homepage":"https://github.com/vuejs/vue-eslint-parser#readme","bugs":{"url":"https://github.com/vuejs/vue-eslint-parser/issues"},"dist":{"shasum":"0ffc2488ca032043ac36b13a333401c48608bd82","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-8.1.0.tgz","fileCount":6,"integrity":"sha512-R8Pl6MSvuU81JKyUguexcABQxfM51Q2ZJVBX0TrKiLltPB+haVLp4hfuR5msiu9oqpsQkaV+TF18r4CBw9c9qg==","signatures":[{"sig":"MEUCIC0ePeAs5pECDSglyzidvMq6GqzCNulizBGPmF2AKNqZAiEAxe58YlLo8zTpnH2TGcT7gXhltK4hF4+cFIgXWqgRRX8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":986671,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh6gOfCRA9TVsSAnZWagAAFMAP/0qQpdOt0WslKg9Mrx76\nxsUgnz9D/SrBRk3lDI2j900oTtj/pPDXUgVo3wwJQPVSvqRFxVESOgJoP/Pp\nLgfC7WMHXjiuvUjjPIPq+AIIYZvTsbLrxgalNtfygtR8nzEPt6BbgoWUKxPC\nQ2W3F0G/1mSgeo0gmdQuvOp/sDDCkoq3tWy6yVgj8r7wT+kDZToad5csRLQx\nLzhbOFMVYqOI4++/3nqxFIeFOc+n/Yi2xkeZIe/zT2Nrtl/4tEmG+uKG+j9v\n5QePxQemsJz5b1nW+PapeIDSrK4AZiDbVZaUQ5eTb3karsv6ppxcuDe5XN8Q\nMJbIYPuVI+aRZQ2TScA07Dqvk402BxHMRzpArGu0ARojtfKoDUdhj4IeJR7n\npJpVZg4pf0lz680hqwDx59jk5BUxVgHGwy4boUWHpPzJWfb0Vmt6M181/TAh\nJhe+Hta1kvmTtqX4slUcjk1P4KCkHcqf9bJ6bv/rZrz1hydZXERQ2VKe+vB4\n3/c0QQ5NXDbQgdglw3dyH8wJNVWyHZm8u+m9Bdfe9iphQ3HhgsX1mNEhv77p\n9M8AvhqveOiF9/pfDOb47EsmHJVArvGQFOnTkdxBgbfip93U5EPEfSiHb/Vx\n5GWFr8yzNotnYHzx4jOu06eG7MIOwl6q2xATa6m6r0I66Blrrrj77iUr2qVb\nNTW2\r\n=9GY2\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":"^12.22.0 || ^14.17.0 || >=16.0.0"},"funding":"https://github.com/sponsors/mysticatea","gitHead":"8a0a474916c27aec7a6d04fbfc8694722dbc0644","scripts":{"lint":"eslint src test package.json --ext .js,.ts","test":"npm run -s test:mocha","build":"tsc --module es2015 && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","codecov":"codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --module es2015 --watch","preversion":"npm test","test:debug":"mocha --require ts-node/register/transpile-only \"test/*.js\" --reporter dot --timeout 60000","test:mocha":"nyc mocha \"test/*.js\" --reporter dot --timeout 60000","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc mocha \"test/*.js\" --reporter dot --timeout 10000","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"node scripts/update-fixtures-ast.js && node scripts/update-fixtures-document-fragment.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node scripts/update-fixtures-ast.js","preupdate-fixtures":"npm run -s build","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"otameshiyo23@gmail.com"},"repository":{"url":"git+https://github.com/vuejs/vue-eslint-parser.git","type":"git"},"_npmVersion":"6.14.13","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.2","espree":"^9.0.0","lodash":"^4.17.21","semver":"^7.3.5","esquery":"^1.4.0","eslint-scope":"^7.0.0","eslint-visitor-keys":"^3.1.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","mocha":"^9.1.3","warun":"^1.0.0","eslint":"^8.2.0","opener":"^1.5.2","rimraf":"^3.0.2","rollup":"^2.60.0","codecov":"^3.8.3","ts-node":"^10.4.0","wait-on":"^6.0.0","chokidar":"^3.5.2","fs-extra":"^10.0.0","prettier":"^2.4.1","dts-bundle":"^0.7.3","typescript":"~4.4.4","@babel/core":"^7.16.0","@types/node":"^16.11.7","cross-spawn":"^7.0.3","npm-run-all":"^4.1.5","@types/debug":"^4.1.7","@types/mocha":"^9.0.0","@types/eslint":"^7.29.0","@types/estree":"^0.0.50","@types/lodash":"^4.14.177","@types/semver":"^7.3.9","eslint-plugin-node":"^11.1.0","eslint-plugin-jsonc":"^2.0.0","jsonc-eslint-parser":"^2.0.3","@babel/eslint-parser":"^7.16.3","eslint-plugin-prettier":"^4.0.0","rollup-plugin-sourcemaps":"^0.6.3","@typescript-eslint/parser":"^5.4.0","rollup-plugin-node-resolve":"^5.2.0","eslint-plugin-eslint-comments":"^3.2.0","@babel/plugin-syntax-decorators":"^7.16.0","@babel/plugin-syntax-typescript":"^7.16.0","eslint-plugin-node-dependencies":"^0.6.0","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-syntax-pipeline-operator":"^7.16.0"},"peerDependencies":{"eslint":">=6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser_8.1.0_1642726303154_0.3784222756236537","host":"s3://npm-registry-packages"}},"8.2.0":{"name":"vue-eslint-parser","version":"8.2.0","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@8.2.0","maintainers":[{"name":"anonymous","email":"public@mysticatea.dev"},{"name":"anonymous","email":"otameshiyo23@gmail.com"}],"homepage":"https://github.com/vuejs/vue-eslint-parser#readme","bugs":{"url":"https://github.com/vuejs/vue-eslint-parser/issues"},"dist":{"shasum":"8c3990deb901b0d528d99f4d052a831cd1d0284c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-8.2.0.tgz","fileCount":6,"integrity":"sha512-hvl8OVT8imlKk/lQyhkshqwQQChzHETcBd5abiO4ePw7ib7QUZLfW+2TUrJHKUvFOCFRJrDin5KJO9OHzB5bRQ==","signatures":[{"sig":"MEUCIQDAlzCDMDzW0AGdv/SxpjAGBuyKVTFD3BFV9vT80rrswgIgZOBRzz5jT2SoXnQs6RhG0I///DmZG/DXewo2ZEaddj4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1002285,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh7jmJCRA9TVsSAnZWagAAC0AP/jWmCeTbooCGD/VBFvGh\nNopLDFF3RnOunGHzM348jG64Q8Dljg8XDrmX5vFI5BnBYTSpzy54jldM8QHu\nDMlDTdasKcV1RCBAPqQK5/xFC+kcNzI6Q9mD4Sg6biuSPFA+NaT5yMN2gVGl\n5yCi8fcHQf8pCnOtetNMbHJ3CCGtSp3DTzpPEraDDgSY8g9wq4ZeN+gPj/0r\n04yn51QWpLuwwmoZVW8d34L2HW8TwUc18Zq5nKE36vzUvN6LjEedh8E76wOe\nEgn2uLroFM5vBng0qRI3+4Oozj9WV1YXfnnAsmTAHYrPsDntWHlAvb0vbLy8\nH+98txuq+JU73MgmRFPSntsBohaGjDlJQ5EmFavWbTPXi7YHPEnkRyd0M+VF\nsuDsSp05tSWbGSYi46nkb+XHhMsoqlAzozdhoL4nOM5G/NwRbQtQp+TEDiAk\nZM7cjr2dhoYMCOdNpyGGYSgfidRBSqQm/2HQxM7fs2DyM6jrZHJUL7SvNpe2\nAVisBmE31w/O4ySND7stsWjuI42+ShMKxpX+4i0osEArUlMpuC6/almbil42\nAzrGlLgNDoe2wRzeOrSSRad6cAwnKiRNoOmqP+ktDIB7k23qyIqRIZL5I2lb\nH2PdVFFNIAhhqSEk4cdxeCWnedLeGsWz2jLOAVwI2PTVn00Yh+fbipCuy87q\n1wwv\r\n=KhOs\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":"^12.22.0 || ^14.17.0 || >=16.0.0"},"funding":"https://github.com/sponsors/mysticatea","gitHead":"734a87cafca2dbd570c0963f17ac890c2205b646","scripts":{"lint":"eslint src test package.json --ext .js,.ts","test":"npm run -s test:mocha","build":"tsc --module es2015 && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","codecov":"codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --module es2015 --watch","preversion":"npm test","test:debug":"mocha --require ts-node/register/transpile-only \"test/*.js\" --reporter dot --timeout 60000","test:mocha":"nyc mocha \"test/*.js\" --reporter dot --timeout 60000","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc mocha \"test/*.js\" --reporter dot --timeout 10000","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"node scripts/update-fixtures-ast.js && node scripts/update-fixtures-document-fragment.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node scripts/update-fixtures-ast.js","preupdate-fixtures":"npm run -s build","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"otameshiyo23@gmail.com"},"repository":{"url":"git+https://github.com/vuejs/vue-eslint-parser.git","type":"git"},"_npmVersion":"6.14.13","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.2","espree":"^9.0.0","lodash":"^4.17.21","semver":"^7.3.5","esquery":"^1.4.0","eslint-scope":"^7.0.0","eslint-visitor-keys":"^3.1.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","mocha":"^9.1.3","warun":"^1.0.0","eslint":"^8.2.0","opener":"^1.5.2","rimraf":"^3.0.2","rollup":"^2.60.0","codecov":"^3.8.3","ts-node":"^10.4.0","wait-on":"^6.0.0","chokidar":"^3.5.2","fs-extra":"^10.0.0","prettier":"^2.4.1","dts-bundle":"^0.7.3","typescript":"~4.4.4","@babel/core":"^7.16.0","@types/node":"^16.11.7","cross-spawn":"^7.0.3","npm-run-all":"^4.1.5","@types/debug":"^4.1.7","@types/mocha":"^9.0.0","@types/eslint":"^7.29.0","@types/estree":"^0.0.50","@types/lodash":"^4.14.177","@types/semver":"^7.3.9","eslint-plugin-node":"^11.1.0","eslint-plugin-jsonc":"^2.0.0","jsonc-eslint-parser":"^2.0.3","@babel/eslint-parser":"^7.16.3","eslint-plugin-prettier":"^4.0.0","rollup-plugin-sourcemaps":"^0.6.3","@typescript-eslint/parser":"^5.4.0","rollup-plugin-node-resolve":"^5.2.0","eslint-plugin-eslint-comments":"^3.2.0","@babel/plugin-syntax-decorators":"^7.16.0","@babel/plugin-syntax-typescript":"^7.16.0","eslint-plugin-node-dependencies":"^0.6.0","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-syntax-pipeline-operator":"^7.16.0"},"peerDependencies":{"eslint":">=6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser_8.2.0_1643002249335_0.18417010864412942","host":"s3://npm-registry-packages"}},"8.3.0":{"name":"vue-eslint-parser","version":"8.3.0","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@8.3.0","maintainers":[{"name":"anonymous","email":"public@mysticatea.dev"},{"name":"anonymous","email":"otameshiyo23@gmail.com"}],"homepage":"https://github.com/vuejs/vue-eslint-parser#readme","bugs":{"url":"https://github.com/vuejs/vue-eslint-parser/issues"},"dist":{"shasum":"5d31129a1b3dd89c0069ca0a1c88f970c360bd0d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-8.3.0.tgz","fileCount":6,"integrity":"sha512-dzHGG3+sYwSf6zFBa0Gi9ZDshD7+ad14DGOdTLjruRVgZXe2J+DcZ9iUhyR48z5g1PqRa20yt3Njna/veLJL/g==","signatures":[{"sig":"MEUCIQCKinDuws177facdFSc0cfTxIUfc5h76Njcwp/o6sinQAIgCtj4deHvRULXbQVncfLnt3Dt2DysluGL5MnkvcrHGD0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1003522,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiFKQQACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr1eQ/9H04OCMsRBSPm0J6Lhik9xh37qMmAMXECHuaaiDaIXBOCLftA\r\n8uwrAkXkepWd3lzoidVp1PHwn2XOoQ+LXBIEJGO5xRrcIMIGUL4sZ9r25FHy\r\ndTUW9BiAnuf2hApss96wDSJZ9QQIVT3lBJ4AHihM2bZmRC3tTK2S+G4o/15a\r\nbdw/Zi3Bol2QEWLwjKAslvu+vkSbs+Tpm39OLKsaVFvRnaSa902IdEVjlHsf\r\nJNqZW3yFn9KdOTc31QfNRjQKck0d0xIB3V2nWSYiNA52zex9IT200EpXGn58\r\nu+z0Fv62FMLw99Mwb33nLijK3q2kjzf2PVzTFVTOEYALHcm/Zc9NRTsiWwwi\r\npQrqQlE0ksj4n2c9gDGhRAgaWsqFYzpidddrJ9+ksgnmqDxFCtEINHFPKwc4\r\nEtTvgECGFY5mIhiZEW0XxiZqlmE5B5eh+o3xLeDCgSpks/yfVpHD9lOvH6CU\r\nZMZBChverZun8xXuelfARhL2sisARS8y948He5DOe62OHFSTefYoWWHPLmLn\r\nT2eSVuzhdXeQrzlJk5M/I4mrXeeKaoi0POgeAjChXeZpkwTFgoag+gSqnt75\r\ntCDlJl+aJYkcN8QFtPRsTsoAVFoAjU1eVH1YMHF7sKGzgmrYRfRuagM3DSed\r\n5nXgVhMuHC0t2I3rsz+ytMGE9bMTaeGr3tU=\r\n=/2xb\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":"^12.22.0 || ^14.17.0 || >=16.0.0"},"funding":"https://github.com/sponsors/mysticatea","gitHead":"d900ec22be9f76edfab33d378fcfbeb25544122c","scripts":{"lint":"eslint src test package.json --ext .js,.ts","test":"npm run -s test:mocha","build":"tsc --module es2015 && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","codecov":"codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --module es2015 --watch","preversion":"npm test","test:debug":"mocha --require ts-node/register/transpile-only \"test/*.js\" --reporter dot --timeout 60000","test:mocha":"nyc mocha \"test/*.js\" --reporter dot --timeout 60000","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc mocha \"test/*.js\" --reporter dot --timeout 10000","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"node scripts/update-fixtures-ast.js && node scripts/update-fixtures-document-fragment.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node scripts/update-fixtures-ast.js","preupdate-fixtures":"npm run -s build","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"otameshiyo23@gmail.com"},"repository":{"url":"git+https://github.com/vuejs/vue-eslint-parser.git","type":"git"},"_npmVersion":"6.14.13","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.2","espree":"^9.0.0","lodash":"^4.17.21","semver":"^7.3.5","esquery":"^1.4.0","eslint-scope":"^7.0.0","eslint-visitor-keys":"^3.1.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","mocha":"^9.1.3","warun":"^1.0.0","eslint":"^8.2.0","opener":"^1.5.2","rimraf":"^3.0.2","rollup":"^2.60.0","codecov":"^3.8.3","ts-node":"^10.4.0","wait-on":"^6.0.0","chokidar":"^3.5.2","fs-extra":"^10.0.0","prettier":"^2.4.1","dts-bundle":"^0.7.3","typescript":"~4.4.4","@babel/core":"^7.16.0","@types/node":"^16.11.7","cross-spawn":"^7.0.3","npm-run-all":"^4.1.5","@types/debug":"^4.1.7","@types/mocha":"^9.0.0","@types/eslint":"^7.29.0","@types/estree":"^0.0.50","@types/lodash":"^4.14.177","@types/semver":"^7.3.9","eslint-plugin-node":"^11.1.0","eslint-plugin-jsonc":"^2.0.0","jsonc-eslint-parser":"^2.0.3","@babel/eslint-parser":"^7.16.3","eslint-plugin-prettier":"^4.0.0","rollup-plugin-sourcemaps":"^0.6.3","@typescript-eslint/parser":"^5.4.0","rollup-plugin-node-resolve":"^5.2.0","eslint-plugin-eslint-comments":"^3.2.0","@babel/plugin-syntax-decorators":"^7.16.0","@babel/plugin-syntax-typescript":"^7.16.0","eslint-plugin-node-dependencies":"^0.6.0","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-syntax-pipeline-operator":"^7.16.0"},"peerDependencies":{"eslint":">=6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser_8.3.0_1645519888232_0.24932847099279232","host":"s3://npm-registry-packages"}},"9.0.0-alpha.0":{"name":"vue-eslint-parser","version":"9.0.0-alpha.0","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@9.0.0-alpha.0","maintainers":[{"name":"anonymous","email":"public@mysticatea.dev"},{"name":"anonymous","email":"otameshiyo23@gmail.com"}],"homepage":"https://github.com/vuejs/vue-eslint-parser#readme","bugs":{"url":"https://github.com/vuejs/vue-eslint-parser/issues"},"dist":{"shasum":"cbd87430f50691f66b047a85cba28fb039c70f19","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-9.0.0-alpha.0.tgz","fileCount":6,"integrity":"sha512-btRN9nvSE1xQYOSDSLTDARGYOpz+qoST0OJNtIrmdeLTqm2ZHGfJ6I7/uIEarVCK+yHOqfUoEFiG+Fdfbrfx9A==","signatures":[{"sig":"MEUCIQCVQPDWEeqXKvvWrB0XGzft6O6AkA0cGhQoO/e6k6JlsAIgUdtjqUSJIhqWDzc7wmxOXJr62C2KKdnAL9lX+lBn2f8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1060547,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiV+D5ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrZUQ/9Ejw698H97kmVtTCtyEvFxAcxEoAhNKV48MUwQ7JI0ZYbdQj1\r\nuB50rE5GPysaNunZMnSxxlmvqPlhQja2FbStqCjlsmS8cTmilztHmHUhHe/n\r\nhdl3vb8eF4nwtbajGD8kvEriC1xsrzdqcgL2nbbaTkze479vfnkVbizxRFSe\r\ncfbK5BbvEi/7TWKTRn1LevOCahasWxRZ4TXkyOL8y38/vI2o0NmTpnKbcst8\r\nWLiQx324GKPuC95nBEnDAuoPQJwu8qmdNO7JDL5NylD917dsblEF3+ljtZeC\r\n+q2bDqAjMeL4rsUUvszhU+253+ChcHFhZyD2IC5Xh+z9CZQOX2rGocuZQac6\r\nRXKSROfPWhjok4q7TiW6FHkLghI6RbAmk1C9hsSnG3p10F7wEjjSelmDDCmq\r\nfY+dwmMNyNRWtWaxusLs3uP+2DrGwa9ApZQvSdxRBHmEq2pegrgvc8wNRcCL\r\nQ1uBRnpEXAIIMaqoMCI8KLM/9fYFYlvaYnzzqe2YZ+RLodvQmuO/fXOxg2k3\r\np10wyLU2obBsFl80FEgUpA+Pa34mc5S+jy9da7gf/PDhZlMmcVSDExVtvc1s\r\noqLFv5KmFYOILKiBTY11Ye4sDhzY9170rX8QThzYRQPNNcSffvi6DLKsxmfV\r\nypE6Fjr+W9C8BIE39hNa8U8XYUVjAPAZ5pM=\r\n=9Yp8\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":"^14.17.0 || >=16.0.0"},"funding":"https://github.com/sponsors/mysticatea","gitHead":"c476e7c25ab161b336339448765085e6219d0e04","scripts":{"lint":"eslint src test package.json --ext .js,.ts","test":"npm run -s test:mocha","build":"tsc --module es2015 && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","codecov":"codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --module es2015 --watch","preversion":"npm test","test:debug":"mocha --require ts-node/register/transpile-only \"test/*.js\" --reporter dot --timeout 60000","test:mocha":"nyc mocha \"test/*.js\" --reporter dot --timeout 60000","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc mocha \"test/*.js\" --reporter dot --timeout 10000","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"node scripts/update-fixtures-ast.js && node scripts/update-fixtures-document-fragment.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node scripts/update-fixtures-ast.js","preupdate-fixtures":"npm run -s build","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"otameshiyo23@gmail.com"},"repository":{"url":"git+https://github.com/vuejs/vue-eslint-parser.git","type":"git"},"_npmVersion":"6.14.13","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.4","espree":"^9.3.1","lodash":"^4.17.21","semver":"^7.3.6","esquery":"^1.4.0","eslint-scope":"^7.1.1","eslint-visitor-keys":"^3.3.0"},"publishConfig":{"tag":"next"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"nyc":"^15.1.0","mocha":"^9.1.3","warun":"^1.0.0","eslint":"^8.12.0","opener":"^1.5.2","rimraf":"^3.0.2","rollup":"^2.60.0","codecov":"^3.8.3","ts-node":"^10.4.0","wait-on":"^6.0.0","chokidar":"^3.5.2","fs-extra":"^10.0.0","prettier":"^2.4.1","dts-bundle":"^0.7.3","typescript":"~4.4.4","@babel/core":"^7.16.0","@types/node":"^16.11.7","cross-spawn":"^7.0.3","npm-run-all":"^4.1.5","@types/debug":"^4.1.7","@types/mocha":"^9.0.0","@types/eslint":"^7.29.0","@types/estree":"^0.0.50","@types/lodash":"^4.14.177","@types/semver":"^7.3.9","eslint-plugin-node":"^11.1.0","eslint-plugin-jsonc":"^2.2.1","jsonc-eslint-parser":"^2.0.3","@babel/eslint-parser":"^7.16.3","eslint-plugin-prettier":"^4.0.0","rollup-plugin-sourcemaps":"^0.6.3","@typescript-eslint/parser":"^5.18.0","rollup-plugin-node-resolve":"^5.2.0","eslint-plugin-eslint-comments":"^3.2.0","@babel/plugin-syntax-decorators":"^7.16.0","@babel/plugin-syntax-typescript":"^7.16.0","eslint-plugin-node-dependencies":"^0.8.0","@typescript-eslint/eslint-plugin":"^5.18.0","@babel/plugin-syntax-pipeline-operator":"^7.16.0"},"peerDependencies":{"eslint":">=6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser_9.0.0-alpha.0_1649926393306_0.9678314500917735","host":"s3://npm-registry-packages"}},"9.0.0":{"name":"vue-eslint-parser","version":"9.0.0","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@9.0.0","maintainers":[{"name":"anonymous","email":"public@mysticatea.dev"},{"name":"anonymous","email":"otameshiyo23@gmail.com"}],"homepage":"https://github.com/vuejs/vue-eslint-parser#readme","bugs":{"url":"https://github.com/vuejs/vue-eslint-parser/issues"},"dist":{"shasum":"a5444d84f26b044cd445f18b1da597f76f9f4662","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-9.0.0.tgz","fileCount":6,"integrity":"sha512-lwH6ZR79Kc68UotOxIBcEu8u6fLzF51g4t+mGAN4owUAjy1Bkg19bvxbYybZbQB0/ToAFrPhwrTgG1+tS3jmgA==","signatures":[{"sig":"MEYCIQCrfwyyw0q+qo51snqE0XMQFGe7ypzsFKTletwdS3+EAgIhAKt53ExChoKgWSPE1BpgwCuJ+mK4NeXPdFC+u/3PxuJ0","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1060539,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJifEdRACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmoimw//Ybas2MBiHzqVcliUx4lE6pstNEIT1SkxGK0JOZe0ztWE02MV\r\n1onQ8/Tu2LQAFgeXU1OIAae6n9VrfY1sHiDM6MuA5b2Coth78OE+T1XFFsfN\r\n0KmI4oilbrdHktU33ZSsDCRLI1HfgKWZ+0wxNpQShA5EHVpmuBpg0By9/BLc\r\nIBPq/DtTS5iPrBj2kdxEevupeMVnke8OBUnGjPllQM47fn9uDd6CK6ELdEUM\r\nAEbtH0gVCp+ivxQvQUmsvYw/nZn02vnJDZAB13hi1cGn1IbzbWpCLpYj7Xiq\r\nboaxkNLV4L9Une8hvnpn1hhPKiY6yLSOI7mW1S8ek/TFs6ILYuMRN7PgMWL6\r\nKys3cSOQGpXfuMCRinVsf8v1de0CNz5qyc1/jiOSv4Zw776pcB8HStUCWbEM\r\nGGiakM8iEVaxAAxTOm1eGOTbEjtWnqeDlhALgSP7Sq+SxwsBZ18PMv8MKMxO\r\ndR6c1tglHIX32BIxgdaADZwq90lQpCYVCJLP6Ly0wlIlLvI/xvRTnV9qgECp\r\nZhtX9vXpJ1qDiq6mWcDiosAecP/W24za+/AjjQmEappkAQF/co6FEl3AKiho\r\np2aRekPaeiv5K1bB2f/jbI8SeIflfIW5zy6sT+466yXpr8ECpaAH30GrcRa3\r\nlnT0thrJ1dzuRe+xZWoE0lRQemUA2j09+TQ=\r\n=hRNR\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":"^14.17.0 || >=16.0.0"},"funding":"https://github.com/sponsors/mysticatea","gitHead":"50b0126b4373a0e951dc29d18b69ef828d39ba6b","scripts":{"lint":"eslint src test package.json --ext .js,.ts","test":"npm run -s test:mocha","build":"tsc --module es2015 && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","codecov":"codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --module es2015 --watch","preversion":"npm test","test:debug":"mocha --require ts-node/register/transpile-only \"test/*.js\" --reporter dot --timeout 60000","test:mocha":"nyc mocha \"test/*.js\" --reporter dot --timeout 60000","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc mocha \"test/*.js\" --reporter dot --timeout 10000","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"node scripts/update-fixtures-ast.js && node scripts/update-fixtures-document-fragment.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node scripts/update-fixtures-ast.js","preupdate-fixtures":"npm run -s build","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"otameshiyo23@gmail.com"},"repository":{"url":"git+https://github.com/vuejs/vue-eslint-parser.git","type":"git"},"_npmVersion":"6.14.13","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.4","espree":"^9.3.1","lodash":"^4.17.21","semver":"^7.3.6","esquery":"^1.4.0","eslint-scope":"^7.1.1","eslint-visitor-keys":"^3.3.0"},"publishConfig":{"tag":"next"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"nyc":"^15.1.0","mocha":"^9.1.3","warun":"^1.0.0","eslint":"^8.12.0","opener":"^1.5.2","rimraf":"^3.0.2","rollup":"^2.60.0","codecov":"^3.8.3","ts-node":"^10.4.0","wait-on":"^6.0.0","chokidar":"^3.5.2","fs-extra":"^10.0.0","prettier":"^2.4.1","dts-bundle":"^0.7.3","typescript":"~4.4.4","@babel/core":"^7.16.0","@types/node":"^16.11.7","cross-spawn":"^7.0.3","npm-run-all":"^4.1.5","@types/debug":"^4.1.7","@types/mocha":"^9.0.0","@types/eslint":"^7.29.0","@types/estree":"^0.0.50","@types/lodash":"^4.14.177","@types/semver":"^7.3.9","eslint-plugin-node":"^11.1.0","eslint-plugin-jsonc":"^2.2.1","jsonc-eslint-parser":"^2.0.3","@babel/eslint-parser":"^7.16.3","eslint-plugin-prettier":"^4.0.0","rollup-plugin-sourcemaps":"^0.6.3","@typescript-eslint/parser":"^5.18.0","rollup-plugin-node-resolve":"^5.2.0","eslint-plugin-eslint-comments":"^3.2.0","@babel/plugin-syntax-decorators":"^7.16.0","@babel/plugin-syntax-typescript":"^7.16.0","eslint-plugin-node-dependencies":"^0.8.0","@typescript-eslint/eslint-plugin":"^5.18.0","@babel/plugin-syntax-pipeline-operator":"^7.16.0"},"peerDependencies":{"eslint":">=6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser_9.0.0_1652311888828_0.15357453284240297","host":"s3://npm-registry-packages"}},"9.0.1":{"name":"vue-eslint-parser","version":"9.0.1","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@9.0.1","maintainers":[{"name":"anonymous","email":"public@mysticatea.dev"},{"name":"anonymous","email":"otameshiyo23@gmail.com"}],"homepage":"https://github.com/vuejs/vue-eslint-parser#readme","bugs":{"url":"https://github.com/vuejs/vue-eslint-parser/issues"},"dist":{"shasum":"a30e2a421cee3d3a3427ed27d2551939f379e5c3","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-9.0.1.tgz","fileCount":6,"integrity":"sha512-Duy/yrHiElax9AW+3uoH35jazQG7XB3OBDIJhvcnbsAI/5hQ8beBIYforOu6fznCRVGt+PmPTlnQMzdlgOAuWw==","signatures":[{"sig":"MEYCIQDi5kIAaEAKG1wEkTP3WaeoV+IVvZI5wtlq+dbbdMH2vAIhAJl9GcSjDU9SWYVkihcV0868fSet7tGS8GuO/4yCv5zS","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1060495,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJifElEACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrOXw/8D7JoTO5biiqYU7JLJ4N89rL8SJPYHZm2EL1+W79dy6cXNnff\r\nZ6budW4Fc21JpD1cWV4JnIFdfeOS5XoAX1J5J3UrpHRJfau3fgVc6RvtfVLc\r\n6Tcgxe3dOJ8fgYGaJ30YNdWbOtRoX1oKHKAT2aRNd2sL7jga68qWUMKNGMyA\r\nrg/KssNwQyq0Fjg5f0PlVv+OdupGWqYfvCRjmOeYUwGhVNYVjmEJtuEKd2Z2\r\nXyZqvMJ1jbb5O7C5nDwnhs/KTEhQ/iCn0GQlMTZKlENy/gxMoX5nei5ISEFa\r\n1dz9cx0Cv7TEXKEp4s/ihi/dED+poAq46L0UT3C0A4qg8MTYnxnBpcauu5pG\r\ntyETVNnwQI2FsuDmOWy1e/u9juoxGujW8V7BQSfqXPyhpH2WTwukID+Iogsy\r\nsSgBiVi7z3HfNDzbs6kRPaccD/dk8CFdxrmmECh00+yH3EXiIDjNGVHPZ2H2\r\nhJ8ZfryCEPcGz4g6ObLSb4t4i6Vt5Z8+0DhhOheMDzRwRjCUEJKQ7jd3EsmV\r\nsOOOojUhQMkONXX8fxKXelC7im1DWjN3BDqy69m+j74yy2S8zLhTt5m7piW/\r\nc+wR77WS2ofdGr/Ip1tRnapOFZTxmxdakPaPmtMzM+HcbWgiYcTFLyAMJ3Ir\r\nLk+wxNbfu00xlhqRFucHKNroVKqTFyV5cOw=\r\n=doDV\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":"^14.17.0 || >=16.0.0"},"funding":"https://github.com/sponsors/mysticatea","gitHead":"cfa2b47f96d42a36355660ae7019ceb2751eae13","scripts":{"lint":"eslint src test package.json --ext .js,.ts","test":"npm run -s test:mocha","build":"tsc --module es2015 && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","codecov":"codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --module es2015 --watch","preversion":"npm test","test:debug":"mocha --require ts-node/register/transpile-only \"test/*.js\" --reporter dot --timeout 60000","test:mocha":"nyc mocha \"test/*.js\" --reporter dot --timeout 60000","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc mocha \"test/*.js\" --reporter dot --timeout 10000","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"node scripts/update-fixtures-ast.js && node scripts/update-fixtures-document-fragment.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node scripts/update-fixtures-ast.js","preupdate-fixtures":"npm run -s build","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"otameshiyo23@gmail.com"},"repository":{"url":"git+https://github.com/vuejs/vue-eslint-parser.git","type":"git"},"_npmVersion":"6.14.13","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.4","espree":"^9.3.1","lodash":"^4.17.21","semver":"^7.3.6","esquery":"^1.4.0","eslint-scope":"^7.1.1","eslint-visitor-keys":"^3.3.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","mocha":"^9.1.3","warun":"^1.0.0","eslint":"^8.12.0","opener":"^1.5.2","rimraf":"^3.0.2","rollup":"^2.60.0","codecov":"^3.8.3","ts-node":"^10.4.0","wait-on":"^6.0.0","chokidar":"^3.5.2","fs-extra":"^10.0.0","prettier":"^2.4.1","dts-bundle":"^0.7.3","typescript":"~4.4.4","@babel/core":"^7.16.0","@types/node":"^16.11.7","cross-spawn":"^7.0.3","npm-run-all":"^4.1.5","@types/debug":"^4.1.7","@types/mocha":"^9.0.0","@types/eslint":"^7.29.0","@types/estree":"^0.0.50","@types/lodash":"^4.14.177","@types/semver":"^7.3.9","eslint-plugin-node":"^11.1.0","eslint-plugin-jsonc":"^2.2.1","jsonc-eslint-parser":"^2.0.3","@babel/eslint-parser":"^7.16.3","eslint-plugin-prettier":"^4.0.0","rollup-plugin-sourcemaps":"^0.6.3","@typescript-eslint/parser":"^5.18.0","rollup-plugin-node-resolve":"^5.2.0","eslint-plugin-eslint-comments":"^3.2.0","@babel/plugin-syntax-decorators":"^7.16.0","@babel/plugin-syntax-typescript":"^7.16.0","eslint-plugin-node-dependencies":"^0.8.0","@typescript-eslint/eslint-plugin":"^5.18.0","@babel/plugin-syntax-pipeline-operator":"^7.16.0"},"peerDependencies":{"eslint":">=6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser_9.0.1_1652312388350_0.7249250928144435","host":"s3://npm-registry-packages"}},"9.0.2":{"name":"vue-eslint-parser","version":"9.0.2","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@9.0.2","maintainers":[{"name":"anonymous","email":"public@mysticatea.dev"},{"name":"anonymous","email":"otameshiyo23@gmail.com"}],"homepage":"https://github.com/vuejs/vue-eslint-parser#readme","bugs":{"url":"https://github.com/vuejs/vue-eslint-parser/issues"},"dist":{"shasum":"d2535516f3f55adb387939427fe741065eb7948a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-9.0.2.tgz","fileCount":6,"integrity":"sha512-uCPQwTGjOtAYrwnU+76pYxalhjsh7iFBsHwBqDHiOPTxtICDaraO4Szw54WFTNZTAEsgHHzqFOu1mmnBOBRzDA==","signatures":[{"sig":"MEQCIDW1BOybnHfpVMSdQLIaAkletpIJy0XG2el/IAGv9zbJAiAXDOqzx0Y1YZa8z27IyBh9L9TXz6RYRuDTjqcxjMZRwg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1060610,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJig3TjACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqVwQ//WxYIs08YO512yJkMBmADYd7t3jAsfkws/v5IjQU5SMm03l8B\r\nTSY7AytxzsMezo8pnMGqVJH92FeXeqBbMHDdRSimw+4ivioUNmBHD34QppWe\r\nXwWUo5NCHdmK+Y6BqRefOTGqLwJsvWi6yfyIkA+vQQXXT4YFPvMdHw4jpbWJ\r\nauWE8yAAyc2FM9jGjDAbKFm63M+7juvsebWc3Ed4mtvsGQq7evmujC+wl5oy\r\nAznrWr0pxREUAC+EY7kqLt+EQPXeJeZobcsHL4yzhW3VLvQJXcrBpnDGQ+3M\r\n/+9MSujXh/rMM6w4ghxqJzouM9ftm1zCWCrrBovAQKJYrFf5FA9RJ5aw+mV8\r\nnfPxObWdJRPWCbm88w6P3n4/RQukRt387vQTBwZ4lKidR+REJMKxmHk8YFaX\r\n5tw5AqFzgWxcu8IDjGFSGniaA5ITF6X0SdIAN0F7Um9U8CEAuWu+XK1QFGD+\r\nWVumYZnPVylW+qdvBH5s23H6qWL3FKiIDwDWrNWFkgwbM/OaA+gxbulRgR4b\r\n+0mhyRAXDeSnMQcu3/z9HRSLMoCdA704aePBBj7pVRlfd+/odytV4898+76i\r\nUN3R6xWihQQC2IhCLa4zsoHRYLHEc1C7sflRLyjPUr+NZ25/MNqhcWYh3p9k\r\ny3RpDhFuQ42+UTsXxzB+dK1TbU7yNtJBzXY=\r\n=ak2N\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":"^14.17.0 || >=16.0.0"},"funding":"https://github.com/sponsors/mysticatea","gitHead":"806a38c291c802749e6322d80cce2678549058bb","scripts":{"lint":"eslint src test package.json --ext .js,.ts","test":"npm run -s test:mocha","build":"tsc --module es2015 && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","codecov":"codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --module es2015 --watch","preversion":"npm test","test:debug":"mocha --require ts-node/register/transpile-only \"test/*.js\" --reporter dot --timeout 60000","test:mocha":"nyc mocha \"test/*.js\" --reporter dot --timeout 60000","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc mocha \"test/*.js\" --reporter dot --timeout 10000","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"node scripts/update-fixtures-ast.js && node scripts/update-fixtures-document-fragment.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node scripts/update-fixtures-ast.js","preupdate-fixtures":"npm run -s build","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"otameshiyo23@gmail.com"},"repository":{"url":"git+https://github.com/vuejs/vue-eslint-parser.git","type":"git"},"_npmVersion":"6.14.13","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.4","espree":"^9.3.1","lodash":"^4.17.21","semver":"^7.3.6","esquery":"^1.4.0","eslint-scope":"^7.1.1","eslint-visitor-keys":"^3.3.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","mocha":"^9.1.3","warun":"^1.0.0","eslint":"^8.12.0","opener":"^1.5.2","rimraf":"^3.0.2","rollup":"^2.60.0","codecov":"^3.8.3","ts-node":"^10.4.0","wait-on":"^6.0.0","chokidar":"^3.5.2","fs-extra":"^10.0.0","prettier":"^2.4.1","dts-bundle":"^0.7.3","typescript":"~4.4.4","@babel/core":"^7.16.0","@types/node":"^16.11.7","cross-spawn":"^7.0.3","npm-run-all":"^4.1.5","@types/debug":"^4.1.7","@types/mocha":"^9.0.0","@types/eslint":"^7.29.0","@types/estree":"^0.0.50","@types/lodash":"^4.14.177","@types/semver":"^7.3.9","eslint-plugin-node":"^11.1.0","eslint-plugin-jsonc":"^2.2.1","jsonc-eslint-parser":"^2.0.3","@babel/eslint-parser":"^7.16.3","eslint-plugin-prettier":"^4.0.0","rollup-plugin-sourcemaps":"^0.6.3","@typescript-eslint/parser":"^5.18.0","rollup-plugin-node-resolve":"^5.2.0","eslint-plugin-eslint-comments":"^3.2.0","@babel/plugin-syntax-decorators":"^7.16.0","@babel/plugin-syntax-typescript":"^7.16.0","eslint-plugin-node-dependencies":"^0.8.0","@typescript-eslint/eslint-plugin":"^5.18.0","@babel/plugin-syntax-pipeline-operator":"^7.16.0"},"peerDependencies":{"eslint":">=6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser_9.0.2_1652782306987_0.8577904626256219","host":"s3://npm-registry-packages"}},"9.0.3":{"name":"vue-eslint-parser","version":"9.0.3","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@9.0.3","maintainers":[{"name":"anonymous","email":"public@mysticatea.dev"},{"name":"anonymous","email":"otameshiyo23@gmail.com"}],"homepage":"https://github.com/vuejs/vue-eslint-parser#readme","bugs":{"url":"https://github.com/vuejs/vue-eslint-parser/issues"},"dist":{"shasum":"0c17a89e0932cc94fa6a79f0726697e13bfe3c96","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-9.0.3.tgz","fileCount":6,"integrity":"sha512-yL+ZDb+9T0ELG4VIFo/2anAOz8SvBdlqEnQnvJ3M7Scq56DvtjY0VY88bByRZB0D4J0u8olBcfrXTVONXsh4og==","signatures":[{"sig":"MEQCIBfAdC7nyqQHw8IggYe7wM26cNoC7Fb07t61rNoi7RL2AiBBAszqG1PWLSq3eMBaa4c2vnUt//onilrJr/JnkMjG/A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1060655,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJitBmrACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp4Ew//WFVcgowLnyd30UlrxzTB98BTFyBf8S6n/nYUsY3bQ9bUJSUi\r\nsbc+AHclLWz2IwOfSNIwDIGN3JWW4QSdZMDGn1twb20BGYUcRplOGScoGgVl\r\n73m1WfUZ3Ph5CHyEBXpCmoLgDizP/GcC02+E+U0eBvfMGy4eIfG30SUV4FSt\r\nASH0XXc4EbJ8qM0OkVhrU33RHNDS80/J3DsIKx7FxH6TE0XQ2AFB3bTU2dX3\r\nYMV9pHDHOknVer9XjMuHiro7F1N1aqz+Cg8rmzzq3zo4Mum6zJJrotGc2N15\r\n2Q/oLFQPZB7XX8pWeHIb9UrGBHhRcY31PPGSPJCusZ8rZHNlYsbUIy22CfOD\r\nJUT8o3OhOfR05g44jBx9GEfglQLu6Uc3fxqQwpwU85tRG4IrDEvO1Wnz2T7L\r\npYMm1kcufkMMHW/hI7idBGkOU+QpusG3HX0Ot3MjTym9gwNr3VCnKpbrx1n1\r\nyBZXSycli3XPo2VDuOwvI908pxZSMX9NAZSz+EnbuOFGtaVJtOM4zhSAVtbY\r\n02WBLLXL0Pe0+ODutud/hxXP94H3bfju14j0tZYetJclsWsrv+rauQc4bm6o\r\nROsznjndPmTfZi69bspUxSNFXPi4+hqvFxRAPBTer6iTQ6tKO/6scZq7nTk5\r\nau48pTe0DIDCrrwpWPP2AihZRnUyk8ztm8M=\r\n=+FNJ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":"^14.17.0 || >=16.0.0"},"funding":"https://github.com/sponsors/mysticatea","gitHead":"9dc89b5317c6d016d0307791e178919f5605c597","scripts":{"lint":"eslint src test package.json --ext .js,.ts","test":"npm run -s test:mocha","build":"tsc --module es2015 && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","codecov":"codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --module es2015 --watch","preversion":"npm test","test:cover":"nyc mocha \"test/*.js\" --reporter dot --timeout 60000","test:debug":"mocha --require ts-node/register/transpile-only \"test/*.js\" --reporter dot --timeout 60000","test:mocha":"mocha --require ts-node/register \"test/*.js\" --reporter dot --timeout 60000","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc mocha \"test/*.js\" --reporter dot --timeout 10000","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"node scripts/update-fixtures-ast.js && node scripts/update-fixtures-document-fragment.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node scripts/update-fixtures-ast.js","preupdate-fixtures":"npm run -s build","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"otameshiyo23@gmail.com"},"repository":{"url":"git+https://github.com/vuejs/vue-eslint-parser.git","type":"git"},"_npmVersion":"6.14.17","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"14.19.3","dependencies":{"debug":"^4.3.4","espree":"^9.3.1","lodash":"^4.17.21","semver":"^7.3.6","esquery":"^1.4.0","eslint-scope":"^7.1.1","eslint-visitor-keys":"^3.3.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","mocha":"^9.1.3","warun":"^1.0.0","eslint":"^8.12.0","opener":"^1.5.2","rimraf":"^3.0.2","rollup":"^2.60.0","codecov":"^3.8.3","ts-node":"^10.4.0","wait-on":"^6.0.0","chokidar":"^3.5.2","fs-extra":"^10.0.0","prettier":"^2.4.1","dts-bundle":"^0.7.3","typescript":"~4.4.4","@babel/core":"^7.16.0","@types/node":"^16.11.7","cross-spawn":"^7.0.3","npm-run-all":"^4.1.5","@types/debug":"^4.1.7","@types/mocha":"^9.0.0","@types/eslint":"^7.29.0","@types/estree":"^0.0.50","@types/lodash":"^4.14.177","@types/semver":"^7.3.9","eslint-plugin-node":"^11.1.0","eslint-plugin-jsonc":"^2.2.1","jsonc-eslint-parser":"^2.0.3","@babel/eslint-parser":"^7.16.3","eslint-plugin-prettier":"^4.0.0","rollup-plugin-sourcemaps":"^0.6.3","@typescript-eslint/parser":"^5.18.0","rollup-plugin-node-resolve":"^5.2.0","eslint-plugin-eslint-comments":"^3.2.0","@babel/plugin-syntax-decorators":"^7.16.0","@babel/plugin-syntax-typescript":"^7.16.0","eslint-plugin-node-dependencies":"^0.8.0","@typescript-eslint/eslint-plugin":"^5.18.0","@babel/plugin-syntax-pipeline-operator":"^7.16.0"},"peerDependencies":{"eslint":">=6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser_9.0.3_1655970219101_0.46717344516901904","host":"s3://npm-registry-packages"}},"9.1.0":{"name":"vue-eslint-parser","version":"9.1.0","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@9.1.0","maintainers":[{"name":"anonymous","email":"public@mysticatea.dev"},{"name":"anonymous","email":"otameshiyo23@gmail.com"}],"homepage":"https://github.com/vuejs/vue-eslint-parser#readme","bugs":{"url":"https://github.com/vuejs/vue-eslint-parser/issues"},"dist":{"shasum":"0e121d1bb29bd10763c83e3cc583ee03434a9dd5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-9.1.0.tgz","fileCount":6,"integrity":"sha512-NGn/iQy8/Wb7RrRa4aRkokyCZfOUWk19OP5HP6JEozQFX5AoS/t+Z0ZN7FY4LlmWc4FNI922V7cvX28zctN8dQ==","signatures":[{"sig":"MEUCIGgo6oRYHSiDfPXM9O1SXmEyJ//YfWBfI1w6+EpnkJiVAiEAsSbDwsNeNSkdZCa8hm8bMla17mBNpM9H7EJH72i6crQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1064564,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjGrBvACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoUQw//Xxi+LnwBU3NjoVeZp7D9vspvRJ5Ns/q5Kh6tpuVzWnGLGLLB\r\nuNBiLoe32a4Pt4Q5sB9tpbSSTHeVEtaWs915FNPlGJM42pS5IWWp7YTl2BFa\r\nv7lUKq/HzNWTyKsE7pcvFN5bPtkbVCnI8KnlnnlLMRCk7FU9L9cTcHHK3tsl\r\ng85F7eEWgv1/ay/n3oFSczr6yYjVrk7JiNTR/9VPW/pENSbeKXt1wqH9Cul9\r\n6ZgtwPpGePrWaDyCjrrOz+9wm2vfJkC5BOh290ayozs3H2fjgAeYcxaamykn\r\nQdCi9D2qhQVj/EvdvrBw1zhL1ZtkN+mCJsaigYDwr8Bn0jsBKPNINkQx/Yne\r\nP+29d+0OAXj1wY6H0O9rK0FoIu7ZYGIN0yOtPHQ32g8DKrPL0hCI2FuHkB8a\r\n2gVcf1p4QZNvAwVDZdOtE/ZCW5vo3g/xvwdoV0vacSCW4PfDk9KaZ6Wi6whe\r\nA35l/LEicNi0aGZHlC6jelo7mPv7OX4CoW5t68dWxM31MzdbzBF47Y4R8KDh\r\nW94JX4UXS9h09mnTM/iDcS/rN5cAwJjMqxD8oFLtwO7bVBFzSuCIcaspjCZP\r\no1n1t8gQQB9PVaSQ8Pcpnk+njLHs5p9QeqduBizayBN1bE2cvQJuo4r4g5WO\r\nzyNtHmx2IROia/IRO/dY00SkqpaGWFRBGnM=\r\n=Iu2g\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"./index.d.ts","engines":{"node":"^14.17.0 || >=16.0.0"},"funding":"https://github.com/sponsors/mysticatea","gitHead":"0631f8c7a2fb9d799cb90b07a95338560c933be8","scripts":{"lint":"eslint src test package.json --ext .js,.ts","test":"npm run -s test:mocha","build":"tsc --module es2015 && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","codecov":"codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --module es2015 --watch","preversion":"npm test","test:cover":"nyc mocha \"test/*.js\" --reporter dot --timeout 60000","test:debug":"mocha --require ts-node/register/transpile-only \"test/*.js\" --reporter dot --timeout 60000","test:mocha":"mocha --require ts-node/register \"test/*.js\" --reporter dot --timeout 60000","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc mocha \"test/*.js\" --reporter dot --timeout 10000","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"node scripts/update-fixtures-ast.js && node scripts/update-fixtures-document-fragment.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node scripts/update-fixtures-ast.js","preupdate-fixtures":"npm run -s build","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"otameshiyo23@gmail.com"},"repository":{"url":"git+https://github.com/vuejs/vue-eslint-parser.git","type":"git"},"_npmVersion":"8.12.1","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"18.4.0","dependencies":{"debug":"^4.3.4","espree":"^9.3.1","lodash":"^4.17.21","semver":"^7.3.6","esquery":"^1.4.0","eslint-scope":"^7.1.1","eslint-visitor-keys":"^3.3.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","mocha":"^9.1.3","warun":"^1.0.0","eslint":"^8.12.0","opener":"^1.5.2","rimraf":"^3.0.2","rollup":"^2.60.0","codecov":"^3.8.3","ts-node":"^10.4.0","wait-on":"^6.0.0","chokidar":"^3.5.2","fs-extra":"^10.0.0","prettier":"^2.4.1","dts-bundle":"^0.7.3","typescript":"~4.4.4","@babel/core":"^7.16.0","@types/node":"^16.11.7","cross-spawn":"^7.0.3","npm-run-all":"^4.1.5","@types/debug":"^4.1.7","@types/mocha":"^9.0.0","@types/eslint":"^7.29.0","@types/estree":"^0.0.50","@types/lodash":"^4.14.177","@types/semver":"^7.3.9","eslint-plugin-node":"^11.1.0","eslint-plugin-jsonc":"^2.2.1","jsonc-eslint-parser":"^2.0.3","@babel/eslint-parser":"^7.16.3","eslint-plugin-prettier":"^4.0.0","rollup-plugin-sourcemaps":"^0.6.3","@typescript-eslint/parser":"^5.18.0","rollup-plugin-node-resolve":"^5.2.0","eslint-plugin-eslint-comments":"^3.2.0","@babel/plugin-syntax-decorators":"^7.16.0","@babel/plugin-syntax-typescript":"^7.16.0","eslint-plugin-node-dependencies":"^0.8.0","@typescript-eslint/eslint-plugin":"^5.18.0","@babel/plugin-syntax-pipeline-operator":"^7.16.0"},"peerDependencies":{"eslint":">=6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser_9.1.0_1662693487162_0.5882035849541571","host":"s3://npm-registry-packages"}},"9.1.1":{"name":"vue-eslint-parser","version":"9.1.1","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@9.1.1","maintainers":[{"name":"anonymous","email":"public@mysticatea.dev"},{"name":"anonymous","email":"otameshiyo23@gmail.com"}],"homepage":"https://github.com/vuejs/vue-eslint-parser#readme","bugs":{"url":"https://github.com/vuejs/vue-eslint-parser/issues"},"dist":{"shasum":"3f4859be7e9bb7edaa1dc7edb05abffee72bf3dd","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-9.1.1.tgz","fileCount":6,"integrity":"sha512-C2aI/r85Q6tYcz4dpgvrs4wH/MqVrRAVIdpYedrxnATDHHkb+TroeRcDpKWGZCx/OcECMWfz7tVwQ8e+Opy6rA==","signatures":[{"sig":"MEQCIB5vgKLzyMQ5SAjHmw8vI+0K35rp4y0fZ9F/cUfWz9wiAiB/qvxvm/TxNwizaeh8QEmHNtxYELo3SQ4PKM4W5CJVhg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1067603,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkJS6nACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo+ag//XjTyAaLU8eETokRLgE9pfQBZ49539kDxHqO7J7NA/Gld3PQh\r\nlm+1oNYgqOGS9Ey+CL+VyUivVjHgY2PvTM449hT+XAuvi0PpOUfGN94ONTbS\r\nVbFOaSeIKkgIXhE++i49M6oNc5aeIUcjw1rL8DvcYVu9I6YwfkxiB9wJS228\r\nKOT8cnpeLBumeKQPCLnnxdqMByCL0r86Er/MynBPomXzJo/0NRQr57SB6mcC\r\nAEPZatcP3ME6UPK6jj9eCyEMg5cYTlZkP2PBFxenRnuz1Cd4ba1L5+MyUxVs\r\nzivKx7tUR5tIeSG0uFc7ndoWrKAOkJUvQ5IhD/LAkk6pn9FOmDECHOb+pVvs\r\nP7IvsNqHs9Vz6BGtWziDXoFtVfkfMzrKiYiqWyC3BXttdmbTLcNQHcc2Dw22\r\n8riGOhkc+HNc5nH7GyWFqlXDOftkDVPuL+pbr91KFy/j3wp0zd2HzfQsYugJ\r\ngw/zL8kYcGoAhOL/8RplESWhDiMUbttYvvwJWSiDFsFkUyuVjDBELyr1kGDV\r\nulevCkhafebDVZzxAhGjgJcuPRV2jXUwrF3K0T764WQfDhe8Lbouhh6cU2R2\r\n+14OmULWrAFxvvRSMkHdBgLWcNj6QNhoFvyaIV0fQFT12j3nqy0J11212yY4\r\n0nyrGboQWJIRVKMR29bbFi1Hm9engHb0gy0=\r\n=GKU6\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"./index.d.ts","engines":{"node":"^14.17.0 || >=16.0.0"},"funding":"https://github.com/sponsors/mysticatea","gitHead":"36a492972620b70e45ffdbd96aa865e73d3b48f0","scripts":{"lint":"eslint src test package.json --ext .js,.ts","test":"npm run -s test:mocha","build":"tsc --module es2015 && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","codecov":"codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --module es2015 --watch","preversion":"npm test","test:cover":"nyc mocha \"test/*.js\" --reporter dot --timeout 60000","test:debug":"mocha --require ts-node/register/transpile-only \"test/*.js\" --reporter dot --timeout 60000","test:mocha":"mocha --require ts-node/register \"test/*.js\" --reporter dot --timeout 60000","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc mocha \"test/*.js\" --reporter dot --timeout 10000","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"node scripts/update-fixtures-ast.js && node scripts/update-fixtures-document-fragment.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node scripts/update-fixtures-ast.js","preupdate-fixtures":"npm run -s build","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"otameshiyo23@gmail.com"},"repository":{"url":"git+https://github.com/vuejs/vue-eslint-parser.git","type":"git"},"_npmVersion":"8.19.2","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"18.12.0","dependencies":{"debug":"^4.3.4","espree":"^9.3.1","lodash":"^4.17.21","semver":"^7.3.6","esquery":"^1.4.0","eslint-scope":"^7.1.1","eslint-visitor-keys":"^3.3.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","mocha":"^9.1.3","warun":"^1.0.0","eslint":"^8.12.0","opener":"^1.5.2","rimraf":"^3.0.2","rollup":"^2.60.0","codecov":"^3.8.3","ts-node":"^10.4.0","wait-on":"^6.0.0","chokidar":"^3.5.2","fs-extra":"^10.0.0","prettier":"^2.4.1","dts-bundle":"^0.7.3","typescript":"~4.8.4","@babel/core":"^7.16.0","@types/node":"^18.8.4","cross-spawn":"^7.0.3","npm-run-all":"^4.1.5","@types/debug":"^4.1.7","@types/mocha":"^9.0.0","@types/eslint":"^8.4.6","@types/estree":"^1.0.0","@types/lodash":"^4.14.186","@types/semver":"^7.3.12","eslint-plugin-node":"^11.1.0","eslint-plugin-jsonc":"^2.2.1","jsonc-eslint-parser":"^2.0.3","@babel/eslint-parser":"^7.16.3","eslint-plugin-prettier":"^4.0.0","rollup-plugin-sourcemaps":"^0.6.3","@typescript-eslint/parser":"^5.18.0","rollup-plugin-node-resolve":"^5.2.0","eslint-plugin-eslint-comments":"^3.2.0","@babel/plugin-syntax-decorators":"^7.16.0","@babel/plugin-syntax-typescript":"^7.16.0","eslint-plugin-node-dependencies":"^0.8.0","@typescript-eslint/eslint-plugin":"^5.18.0","@babel/plugin-syntax-pipeline-operator":"^7.16.0"},"peerDependencies":{"eslint":">=6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser_9.1.1_1680158374810_0.031241039509690927","host":"s3://npm-registry-packages"}},"9.2.0":{"name":"vue-eslint-parser","version":"9.2.0","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@9.2.0","maintainers":[{"name":"anonymous","email":"public@mysticatea.dev"},{"name":"anonymous","email":"otameshiyo23@gmail.com"}],"homepage":"https://github.com/vuejs/vue-eslint-parser#readme","bugs":{"url":"https://github.com/vuejs/vue-eslint-parser/issues"},"dist":{"shasum":"b397a7afae29961e5c59d80e895ab54a2e7f2f41","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-9.2.0.tgz","fileCount":6,"integrity":"sha512-aFXipsUbKU4TzgP9OU6cXIm2Nnp9ryKJc2mzY0s2xzwfjHg6WDT33LUAQRGR9K0NFncBgUEZ2njdrS3Lj/sOLw==","signatures":[{"sig":"MEUCIEZQL8Q0TZ76bLveV/EnlLKSJnaUGR27Q6RC60nwj7z9AiEAxCrO+oR8wNu6p5U2Gpdfa2MHEU2/nap7/SvtJW9Ktb8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1068524,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkUayUACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpSEQ/7BY/25wws3/JMir81Rcbu74NKaWsHbEMMYJm433PuNAT3Q2YQ\r\nbPD8Uv35PbtmKsCE7pzkUhSTay5aa99OSGYMqjD6FhKRWdtZU2UU8LFuGrRx\r\nJwzbTPX/pS6D7T3x+B4KzDlrr183F1B5x5xrxDP3V4LTeaIm8FFESK0LaRvx\r\nlEHOAXO+/VuE9+KaglzGJbxoDUZVV7zkhyA5epMH3nunJD+az36AtMD7gSWA\r\n393l1MPlT7rVgxvE/mCc7sVH0Mmj+CKCjO8VthNjEUQy8C9JAe4a45Ln5dj8\r\nf4/Zroejig27sSXmRi224FblGkBf1jPADFak88YP2F3MnpMzIdUG7QdkT9wV\r\nmnlifxKX3fTgbYvDRXdqeCn5ZI8MIdD7hN/wUCEeV8huTidEmfDUuwx4fTyp\r\nH+u0dRAaMWbgyLCVmKn8dRkArYrWoWICbrxcU3oOKvuz26eJMGxwgT7Y03O9\r\nxqekMjxOgxiQJcN+VxDFPx5LQ5xcf5gFqHJmvY/1dK8FbSdjrN6N0zwtgQIO\r\niX3ob41p/oWvGx4Hb91NuBTXy/btjoyjTl5jQPw6HRJbEGPCdGMHUdSoP9C1\r\nVOJv7TUeGai7+Qeb5Wtm6Od0BKXWbckWuNBr6WHnKZzUIIwqWdL87ZbtPlXY\r\n3KEtNRrLZciZdSSUJwVG3lZspABKCXKU04k=\r\n=6zkU\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"./index.d.ts","engines":{"node":"^14.17.0 || >=16.0.0"},"funding":"https://github.com/sponsors/mysticatea","gitHead":"384b52118df0d4d1b8bb4de52787437d47adb05f","scripts":{"lint":"eslint src test package.json --ext .js,.ts","test":"npm run -s test:mocha","build":"tsc --module es2015 && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","codecov":"codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --module es2015 --watch","preversion":"npm test","test:cover":"nyc mocha \"test/*.js\" --reporter dot --timeout 60000","test:debug":"mocha --require ts-node/register/transpile-only \"test/*.js\" --reporter dot --timeout 60000","test:mocha":"mocha --require ts-node/register \"test/*.js\" --reporter dot --timeout 60000","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc mocha \"test/*.js\" --reporter dot --timeout 10000","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"node scripts/update-fixtures-ast.js && node scripts/update-fixtures-document-fragment.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node scripts/update-fixtures-ast.js","preupdate-fixtures":"npm run -s build","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"otameshiyo23@gmail.com"},"repository":{"url":"git+https://github.com/vuejs/vue-eslint-parser.git","type":"git"},"_npmVersion":"9.6.5","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"18.12.0","dependencies":{"debug":"^4.3.4","espree":"^9.3.1","lodash":"^4.17.21","semver":"^7.3.6","esquery":"^1.4.0","eslint-scope":"^7.1.1","eslint-visitor-keys":"^3.3.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","mocha":"^9.1.3","warun":"^1.0.0","eslint":"^8.12.0","opener":"^1.5.2","rimraf":"^3.0.2","rollup":"^2.60.0","codecov":"^3.8.3","ts-node":"^10.4.0","wait-on":"^6.0.0","chokidar":"^3.5.2","fs-extra":"^10.0.0","prettier":"^2.4.1","dts-bundle":"^0.7.3","typescript":"~4.8.4","@babel/core":"^7.16.0","@types/node":"^18.8.4","cross-spawn":"^7.0.3","npm-run-all":"^4.1.5","@types/debug":"^4.1.7","@types/mocha":"^9.0.0","@types/eslint":"^8.4.6","@types/estree":"^1.0.0","@types/lodash":"^4.14.186","@types/semver":"^7.3.12","eslint-plugin-node":"^11.1.0","eslint-plugin-jsonc":"^2.2.1","jsonc-eslint-parser":"^2.0.3","@babel/eslint-parser":"^7.16.3","rollup-plugin-replace":"^2.2.0","eslint-plugin-prettier":"^4.0.0","rollup-plugin-sourcemaps":"^0.6.3","@typescript-eslint/parser":"^5.18.0","rollup-plugin-node-resolve":"^5.2.0","eslint-plugin-eslint-comments":"^3.2.0","@babel/plugin-syntax-decorators":"^7.16.0","@babel/plugin-syntax-typescript":"^7.16.0","eslint-plugin-node-dependencies":"^0.8.0","@typescript-eslint/eslint-plugin":"^5.18.0","@babel/plugin-syntax-pipeline-operator":"^7.16.0"},"peerDependencies":{"eslint":">=6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser_9.2.0_1683074196030_0.18383771930899462","host":"s3://npm-registry-packages"}},"9.2.1":{"name":"vue-eslint-parser","version":"9.2.1","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@9.2.1","maintainers":[{"name":"anonymous","email":"public@mysticatea.dev"},{"name":"anonymous","email":"otameshiyo23@gmail.com"}],"homepage":"https://github.com/vuejs/vue-eslint-parser#readme","bugs":{"url":"https://github.com/vuejs/vue-eslint-parser/issues"},"dist":{"shasum":"b011a5520ea7c24cadc832c8552122faaccfd2e6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-9.2.1.tgz","fileCount":6,"integrity":"sha512-tPOex4n6jit4E7h68auOEbDMwE58XiP4dylfaVTCOVCouR45g+QFDBjgIdEU52EXJxKyjgh91dLfN2rxUcV0bQ==","signatures":[{"sig":"MEUCIH8rmZlStcShew364qkpU8Ju4W06VNzBhKOyyYR/wCSrAiEAkKOge4I7kvinuAN5aIFqfwKXPCVIZ0BFmJBEq+nZ3/I=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1068782},"main":"index.js","types":"./index.d.ts","engines":{"node":"^14.17.0 || >=16.0.0"},"funding":"https://github.com/sponsors/mysticatea","gitHead":"fafbc7d38d38b31f5db529e2633af6736f30cce9","scripts":{"lint":"eslint src test package.json --ext .js,.ts","test":"npm run -s test:mocha","build":"tsc --module es2015 && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","codecov":"codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --module es2015 --watch","preversion":"npm test","test:cover":"nyc mocha \"test/*.js\" --reporter dot --timeout 60000","test:debug":"mocha --require ts-node/register/transpile-only \"test/*.js\" --reporter dot --timeout 60000","test:mocha":"mocha --require ts-node/register \"test/*.js\" --reporter dot --timeout 60000","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc mocha \"test/*.js\" --reporter dot --timeout 10000","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"node scripts/update-fixtures-ast.js && node scripts/update-fixtures-document-fragment.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node scripts/update-fixtures-ast.js","preupdate-fixtures":"npm run -s build","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"otameshiyo23@gmail.com"},"repository":{"url":"git+https://github.com/vuejs/vue-eslint-parser.git","type":"git"},"_npmVersion":"9.5.1","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"18.16.0","dependencies":{"debug":"^4.3.4","espree":"^9.3.1","lodash":"^4.17.21","semver":"^7.3.6","esquery":"^1.4.0","eslint-scope":"^7.1.1","eslint-visitor-keys":"^3.3.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","mocha":"^9.1.3","warun":"^1.0.0","eslint":"^8.12.0","opener":"^1.5.2","rimraf":"^3.0.2","rollup":"^2.60.0","codecov":"^3.8.3","ts-node":"^10.4.0","wait-on":"^6.0.0","chokidar":"^3.5.2","fs-extra":"^10.0.0","prettier":"^2.4.1","dts-bundle":"^0.7.3","typescript":"~4.8.4","@babel/core":"^7.16.0","@types/node":"^18.8.4","cross-spawn":"^7.0.3","npm-run-all":"^4.1.5","@types/debug":"^4.1.7","@types/mocha":"^9.0.0","@types/eslint":"^8.4.6","@types/estree":"^1.0.0","@types/lodash":"^4.14.186","@types/semver":"^7.3.12","eslint-plugin-node":"^11.1.0","eslint-plugin-jsonc":"^2.2.1","jsonc-eslint-parser":"^2.0.3","@babel/eslint-parser":"^7.16.3","rollup-plugin-replace":"^2.2.0","eslint-plugin-prettier":"^4.0.0","rollup-plugin-sourcemaps":"^0.6.3","@typescript-eslint/parser":"^5.18.0","rollup-plugin-node-resolve":"^5.2.0","eslint-plugin-eslint-comments":"^3.2.0","@babel/plugin-syntax-decorators":"^7.16.0","@babel/plugin-syntax-typescript":"^7.16.0","eslint-plugin-node-dependencies":"^0.8.0","@typescript-eslint/eslint-plugin":"^5.18.0","@babel/plugin-syntax-pipeline-operator":"^7.16.0"},"peerDependencies":{"eslint":">=6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser_9.2.1_1683417666206_0.7048660720654245","host":"s3://npm-registry-packages"}},"9.3.0":{"name":"vue-eslint-parser","version":"9.3.0","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@9.3.0","maintainers":[{"name":"anonymous","email":"public@mysticatea.dev"},{"name":"anonymous","email":"otameshiyo23@gmail.com"}],"homepage":"https://github.com/vuejs/vue-eslint-parser#readme","bugs":{"url":"https://github.com/vuejs/vue-eslint-parser/issues"},"dist":{"shasum":"775a974a0603c9a73d85fed8958ed9e814a4a816","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-9.3.0.tgz","fileCount":6,"integrity":"sha512-48IxT9d0+wArT1+3wNIy0tascRoywqSUe2E1YalIC1L8jsUGe5aJQItWfRok7DVFGz3UYvzEI7n5wiTXsCMAcQ==","signatures":[{"sig":"MEYCIQDFeu6C2/npRCw69lTfF9gJQow8KW1WSUkXLEq07/j5mAIhAJhsgfW0nx3I9yIZltI1jXgAhiXwuw16dEUfr4VB98mt","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1120923},"main":"index.js","types":"./index.d.ts","engines":{"node":"^14.17.0 || >=16.0.0"},"funding":"https://github.com/sponsors/mysticatea","gitHead":"a2d5182ae1d37216f3b978131910b9de6369f05d","scripts":{"lint":"eslint src test package.json --ext .js,.ts","test":"npm run -s test:mocha","build":"tsc --module es2015 && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","codecov":"codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --module es2015 --watch","preversion":"npm test","test:cover":"nyc mocha \"test/*.js\" --reporter dot --timeout 60000","test:debug":"mocha --require ts-node/register/transpile-only \"test/*.js\" --reporter dot --timeout 60000","test:mocha":"mocha --require ts-node/register \"test/*.js\" --reporter dot --timeout 60000","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc mocha \"test/*.js\" --reporter dot --timeout 10000","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"ts-node --transpile-only scripts/update-fixtures-ast.js && ts-node --transpile-only scripts/update-fixtures-document-fragment.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node scripts/update-fixtures-ast.js","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"otameshiyo23@gmail.com"},"repository":{"url":"git+https://github.com/vuejs/vue-eslint-parser.git","type":"git"},"_npmVersion":"9.5.1","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"18.16.0","dependencies":{"debug":"^4.3.4","espree":"^9.3.1","lodash":"^4.17.21","semver":"^7.3.6","esquery":"^1.4.0","eslint-scope":"^7.1.1","eslint-visitor-keys":"^3.3.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","mocha":"^9.1.3","warun":"^1.0.0","eslint":"^8.12.0","opener":"^1.5.2","rimraf":"^3.0.2","rollup":"^2.60.0","codecov":"^3.8.3","ts-node":"^10.4.0","wait-on":"^6.0.0","chokidar":"^3.5.2","fs-extra":"^10.0.0","prettier":"^2.4.1","dts-bundle":"^0.7.3","typescript":"~4.8.4","@babel/core":"^7.16.0","@types/node":"^18.8.4","cross-spawn":"^7.0.3","npm-run-all":"^4.1.5","@types/debug":"^4.1.7","@types/mocha":"^9.0.0","@types/eslint":"^8.4.6","@types/estree":"^1.0.0","@types/lodash":"^4.14.186","@types/semver":"^7.3.12","eslint-plugin-node":"^11.1.0","eslint-plugin-jsonc":"^2.2.1","jsonc-eslint-parser":"^2.0.3","@babel/eslint-parser":"^7.16.3","rollup-plugin-replace":"^2.2.0","eslint-plugin-prettier":"^4.0.0","rollup-plugin-sourcemaps":"^0.6.3","@typescript-eslint/parser":"^5.18.0","rollup-plugin-node-resolve":"^5.2.0","eslint-plugin-eslint-comments":"^3.2.0","@babel/plugin-syntax-decorators":"^7.16.0","@babel/plugin-syntax-typescript":"^7.16.0","eslint-plugin-node-dependencies":"^0.8.0","@typescript-eslint/eslint-plugin":"^5.18.0","@babel/plugin-syntax-pipeline-operator":"^7.16.0"},"peerDependencies":{"eslint":">=6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser_9.3.0_1684026476079_0.33993137911764415","host":"s3://npm-registry-packages"}},"9.3.1":{"name":"vue-eslint-parser","version":"9.3.1","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@9.3.1","maintainers":[{"name":"anonymous","email":"public@mysticatea.dev"},{"name":"anonymous","email":"otameshiyo23@gmail.com"}],"homepage":"https://github.com/vuejs/vue-eslint-parser#readme","bugs":{"url":"https://github.com/vuejs/vue-eslint-parser/issues"},"dist":{"shasum":"429955e041ae5371df5f9e37ebc29ba046496182","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-9.3.1.tgz","fileCount":6,"integrity":"sha512-Clr85iD2XFZ3lJ52/ppmUDG/spxQu6+MAeHXjjyI4I1NUYZ9xmenQp4N0oaHJhrA8OOxltCVxMRfANGa70vU0g==","signatures":[{"sig":"MEUCIDYit4UWRrWejHV5vFIYYpq1lU6QwYNP7ZVIfUTEixf+AiEA1nknTjB3FvGhK+vEWUTdbdIZkX2Oqy63oYH21/EthtY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1121017},"main":"index.js","types":"./index.d.ts","engines":{"node":"^14.17.0 || >=16.0.0"},"funding":"https://github.com/sponsors/mysticatea","gitHead":"6aa8585df1722d6154890db9a820680f1b2ee61a","scripts":{"lint":"eslint src test package.json --ext .js,.ts","test":"npm run -s test:mocha","build":"tsc --module es2015 && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","codecov":"codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --module es2015 --watch","preversion":"npm test","test:cover":"nyc mocha \"test/*.js\" --reporter dot --timeout 60000","test:debug":"mocha --require ts-node/register/transpile-only \"test/*.js\" --reporter dot --timeout 60000","test:mocha":"mocha --require ts-node/register \"test/*.js\" --reporter dot --timeout 60000","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc mocha \"test/*.js\" --reporter dot --timeout 10000","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"ts-node --transpile-only scripts/update-fixtures-ast.js && ts-node --transpile-only scripts/update-fixtures-document-fragment.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node scripts/update-fixtures-ast.js","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"otameshiyo23@gmail.com"},"repository":{"url":"git+https://github.com/vuejs/vue-eslint-parser.git","type":"git"},"_npmVersion":"9.5.1","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"18.16.0","dependencies":{"debug":"^4.3.4","espree":"^9.3.1","lodash":"^4.17.21","semver":"^7.3.6","esquery":"^1.4.0","eslint-scope":"^7.1.1","eslint-visitor-keys":"^3.3.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","mocha":"^9.1.3","warun":"^1.0.0","eslint":"^8.12.0","opener":"^1.5.2","rimraf":"^3.0.2","rollup":"^2.60.0","codecov":"^3.8.3","ts-node":"^10.4.0","wait-on":"^6.0.0","chokidar":"^3.5.2","fs-extra":"^10.0.0","prettier":"^2.4.1","dts-bundle":"^0.7.3","typescript":"~4.8.4","@babel/core":"^7.16.0","@types/node":"^18.8.4","cross-spawn":"^7.0.3","npm-run-all":"^4.1.5","@types/debug":"^4.1.7","@types/mocha":"^9.0.0","@types/eslint":"^8.4.6","@types/estree":"^1.0.0","@types/lodash":"^4.14.186","@types/semver":"^7.3.12","eslint-plugin-node":"^11.1.0","eslint-plugin-jsonc":"^2.2.1","jsonc-eslint-parser":"^2.0.3","@babel/eslint-parser":"^7.16.3","rollup-plugin-replace":"^2.2.0","eslint-plugin-prettier":"^4.0.0","rollup-plugin-sourcemaps":"^0.6.3","@typescript-eslint/parser":"^5.18.0","rollup-plugin-node-resolve":"^5.2.0","eslint-plugin-eslint-comments":"^3.2.0","@babel/plugin-syntax-decorators":"^7.16.0","@babel/plugin-syntax-typescript":"^7.16.0","eslint-plugin-node-dependencies":"^0.8.0","@typescript-eslint/eslint-plugin":"^5.18.0","@babel/plugin-syntax-pipeline-operator":"^7.16.0"},"peerDependencies":{"eslint":">=6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser_9.3.1_1686473097693_0.7631747205987551","host":"s3://npm-registry-packages"}},"9.3.2":{"name":"vue-eslint-parser","version":"9.3.2","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@9.3.2","maintainers":[{"name":"anonymous","email":"public@mysticatea.dev"},{"name":"anonymous","email":"otameshiyo23@gmail.com"}],"homepage":"https://github.com/vuejs/vue-eslint-parser#readme","bugs":{"url":"https://github.com/vuejs/vue-eslint-parser/issues"},"dist":{"shasum":"6f9638e55703f1c77875a19026347548d93fd499","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-9.3.2.tgz","fileCount":6,"integrity":"sha512-q7tWyCVaV9f8iQyIA5Mkj/S6AoJ9KBN8IeUSf3XEmBrOtxOZnfTg5s4KClbZBCK3GtnT/+RyCLZyDHuZwTuBjg==","signatures":[{"sig":"MEUCIQCfa4nDQb/z4l8j06hgsIWnwykXI1vfIEw2+PMnZzClPwIgKzaLaahNGn0pC1kR8yZf7vwMTsLuO5ktB27d2ZXInlQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1124097},"main":"index.js","types":"./index.d.ts","engines":{"node":"^14.17.0 || >=16.0.0"},"funding":"https://github.com/sponsors/mysticatea","gitHead":"92dd3f306c30b3991a81eaca519286bc97b5f7ba","scripts":{"lint":"eslint src test package.json --ext .js,.ts","test":"npm run -s test:mocha","build":"tsc --module es2015 && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","codecov":"codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --module es2015 --watch","preversion":"npm test","test:cover":"nyc mocha \"test/*.js\" --reporter dot --timeout 60000","test:debug":"mocha --require ts-node/register/transpile-only \"test/*.js\" --reporter dot --timeout 60000","test:mocha":"mocha --require ts-node/register \"test/*.js\" --reporter dot --timeout 60000","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc mocha \"test/*.js\" --reporter dot --timeout 10000","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"ts-node --transpile-only scripts/update-fixtures-ast.js && ts-node --transpile-only scripts/update-fixtures-document-fragment.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node scripts/update-fixtures-ast.js","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"otameshiyo23@gmail.com"},"repository":{"url":"git+https://github.com/vuejs/vue-eslint-parser.git","type":"git"},"_npmVersion":"9.5.1","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"18.16.0","dependencies":{"debug":"^4.3.4","espree":"^9.3.1","lodash":"^4.17.21","semver":"^7.3.6","esquery":"^1.4.0","eslint-scope":"^7.1.1","eslint-visitor-keys":"^3.3.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","mocha":"^9.1.3","warun":"^1.0.0","eslint":"^8.12.0","opener":"^1.5.2","rimraf":"^3.0.2","rollup":"^2.60.0","codecov":"^3.8.3","ts-node":"^10.4.0","wait-on":"^6.0.0","chokidar":"^3.5.2","fs-extra":"^10.0.0","prettier":"^2.4.1","dts-bundle":"^0.7.3","typescript":"~4.8.4","@babel/core":"^7.16.0","@types/node":"^18.8.4","cross-spawn":"^7.0.3","npm-run-all":"^4.1.5","@types/debug":"^4.1.7","@types/mocha":"^9.0.0","@types/eslint":"^8.4.6","@types/estree":"^1.0.0","@types/lodash":"^4.14.186","@types/semver":"^7.3.12","eslint-plugin-node":"^11.1.0","eslint-plugin-jsonc":"^2.2.1","jsonc-eslint-parser":"^2.0.3","@babel/eslint-parser":"^7.16.3","rollup-plugin-replace":"^2.2.0","eslint-plugin-prettier":"^4.0.0","rollup-plugin-sourcemaps":"^0.6.3","@typescript-eslint/parser":"^5.18.0","rollup-plugin-node-resolve":"^5.2.0","eslint-plugin-eslint-comments":"^3.2.0","@babel/plugin-syntax-decorators":"^7.16.0","@babel/plugin-syntax-typescript":"^7.16.0","eslint-plugin-node-dependencies":"^0.8.0","@typescript-eslint/eslint-plugin":"^5.18.0","@babel/plugin-syntax-pipeline-operator":"^7.16.0"},"peerDependencies":{"eslint":">=6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser_9.3.2_1696768614812_0.908934719688766","host":"s3://npm-registry-packages"}},"9.4.0":{"name":"vue-eslint-parser","version":"9.4.0","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@9.4.0","maintainers":[{"name":"anonymous","email":"public@mysticatea.dev"},{"name":"anonymous","email":"otameshiyo23@gmail.com"}],"homepage":"https://github.com/vuejs/vue-eslint-parser#readme","bugs":{"url":"https://github.com/vuejs/vue-eslint-parser/issues"},"dist":{"shasum":"dfd22302e2992fe45748a76553cef7afa5bdde27","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-9.4.0.tgz","fileCount":6,"integrity":"sha512-7KsNBb6gHFA75BtneJsoK/dbZ281whUIwFYdQxA68QrCrGMXYzUMbPDHGcOQ0OocIVKrWSKWXZ4mL7tonCXoUw==","signatures":[{"sig":"MEUCIEaLx8Ir/LOtjS6OOC6mHTvZbLV6ZmbqdOJRsXgwk+kyAiEAnYOBMnoYps2U+Y2uRCSM578ox7xuvol5GjwMgx+LxxA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1129625},"main":"index.js","types":"./index.d.ts","engines":{"node":"^14.17.0 || >=16.0.0"},"funding":"https://github.com/sponsors/mysticatea","gitHead":"4587eef81a037ae5e48ec96de34f3adffa1d4151","scripts":{"lint":"eslint src test package.json --ext .js,.ts","test":"npm run -s test:mocha","build":"tsc --module es2015 && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","codecov":"codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --module es2015 --watch","preversion":"npm test","test:cover":"nyc mocha \"test/*.js\" --reporter dot --timeout 60000","test:debug":"mocha --require ts-node/register/transpile-only \"test/*.js\" --reporter dot --timeout 60000","test:mocha":"mocha --require ts-node/register \"test/*.js\" --reporter dot --timeout 60000","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc mocha \"test/*.js\" --reporter dot --timeout 10000","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"ts-node --transpile-only scripts/update-fixtures-ast.js && ts-node --transpile-only scripts/update-fixtures-document-fragment.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node scripts/update-fixtures-ast.js","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"otameshiyo23@gmail.com"},"repository":{"url":"git+https://github.com/vuejs/vue-eslint-parser.git","type":"git"},"_npmVersion":"9.5.1","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"18.16.0","dependencies":{"debug":"^4.3.4","espree":"^9.3.1","lodash":"^4.17.21","semver":"^7.3.6","esquery":"^1.4.0","eslint-scope":"^7.1.1","eslint-visitor-keys":"^3.3.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","mocha":"^9.1.3","warun":"^1.0.0","eslint":"^8.12.0","opener":"^1.5.2","rimraf":"^3.0.2","rollup":"^2.60.0","codecov":"^3.8.3","ts-node":"^10.4.0","wait-on":"^6.0.0","chokidar":"^3.5.2","fs-extra":"^10.0.0","prettier":"^2.4.1","dts-bundle":"^0.7.3","typescript":"~4.8.4","@babel/core":"^7.16.0","@types/node":"^18.8.4","cross-spawn":"^7.0.3","npm-run-all":"^4.1.5","@types/debug":"^4.1.7","@types/mocha":"^9.0.0","@types/eslint":"^8.4.6","@types/estree":"^1.0.0","@types/lodash":"^4.14.186","@types/semver":"^7.3.12","eslint-plugin-node":"^11.1.0","eslint-plugin-jsonc":"^2.2.1","jsonc-eslint-parser":"^2.0.3","@babel/eslint-parser":"^7.16.3","rollup-plugin-replace":"^2.2.0","eslint-plugin-prettier":"^4.0.0","rollup-plugin-sourcemaps":"^0.6.3","@typescript-eslint/parser":"^5.18.0","rollup-plugin-node-resolve":"^5.2.0","eslint-plugin-eslint-comments":"^3.2.0","@babel/plugin-syntax-decorators":"^7.16.0","@babel/plugin-syntax-typescript":"^7.16.0","eslint-plugin-node-dependencies":"^0.8.0","@typescript-eslint/eslint-plugin":"^5.18.0","@babel/plugin-syntax-pipeline-operator":"^7.16.0"},"peerDependencies":{"eslint":">=6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser_9.4.0_1704724413745_0.06982296039559288","host":"s3://npm-registry-packages"}},"9.4.1":{"name":"vue-eslint-parser","version":"9.4.1","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@9.4.1","maintainers":[{"name":"anonymous","email":"public@mysticatea.dev"},{"name":"anonymous","email":"otameshiyo23@gmail.com"}],"homepage":"https://github.com/vuejs/vue-eslint-parser#readme","bugs":{"url":"https://github.com/vuejs/vue-eslint-parser/issues"},"dist":{"shasum":"3375106ba45f65c4d6f59ec6635a1f51d0726fa2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-9.4.1.tgz","fileCount":6,"integrity":"sha512-EmIbJ5cCI/E06SlI8K5sldVZ+Ef5vy26Ck0lNALxgY7FEAMOjNR32qcsVM3FUJUbvVWTBEiOy5lQvbhPK/ynBw==","signatures":[{"sig":"MEUCIEy5eDtXkv93bUvtNQU5pHwNOOsyQECLpLc23DEepGy4AiEA0WboPnxglzVWYShsUQnod2Z45oTGGMmNtHzrGF8iw3Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1134269},"main":"index.js","types":"./index.d.ts","engines":{"node":"^14.17.0 || >=16.0.0"},"funding":"https://github.com/sponsors/mysticatea","gitHead":"7c9c24bdf7c36a035d324608b2809c7f2ef0fc3f","scripts":{"lint":"eslint src test package.json --ext .js,.ts","test":"npm run -s test:mocha","build":"tsc --module es2015 && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","codecov":"codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --module es2015 --watch","preversion":"npm test","test:cover":"nyc mocha \"test/*.js\" --reporter dot --timeout 60000","test:debug":"mocha --require ts-node/register/transpile-only \"test/*.js\" --reporter dot --timeout 60000","test:mocha":"mocha --require ts-node/register \"test/*.js\" --reporter dot --timeout 60000","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc mocha \"test/*.js\" --reporter dot --timeout 10000","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"ts-node --transpile-only scripts/update-fixtures-ast.js && ts-node --transpile-only scripts/update-fixtures-document-fragment.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node scripts/update-fixtures-ast.js","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"otameshiyo23@gmail.com"},"repository":{"url":"git+https://github.com/vuejs/vue-eslint-parser.git","type":"git"},"_npmVersion":"9.5.1","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"18.16.0","dependencies":{"debug":"^4.3.4","espree":"^9.3.1","lodash":"^4.17.21","semver":"^7.3.6","esquery":"^1.4.0","eslint-scope":"^7.1.1","eslint-visitor-keys":"^3.3.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","mocha":"^9.1.3","warun":"^1.0.0","eslint":"^8.12.0","opener":"^1.5.2","rimraf":"^3.0.2","rollup":"^2.60.0","codecov":"^3.8.3","ts-node":"^10.4.0","wait-on":"^6.0.0","chokidar":"^3.5.2","fs-extra":"^10.0.0","prettier":"^2.4.1","dts-bundle":"^0.7.3","typescript":"~4.8.4","@babel/core":"^7.16.0","@types/node":"^18.8.4","cross-spawn":"^7.0.3","npm-run-all":"^4.1.5","@types/debug":"^4.1.7","@types/mocha":"^9.0.0","@types/eslint":"^8.4.6","@types/estree":"^1.0.0","@types/lodash":"^4.14.186","@types/semver":"^7.3.12","eslint-plugin-node":"^11.1.0","eslint-plugin-jsonc":"^2.2.1","jsonc-eslint-parser":"^2.0.3","@babel/eslint-parser":"^7.16.3","rollup-plugin-replace":"^2.2.0","eslint-plugin-prettier":"^4.0.0","rollup-plugin-sourcemaps":"^0.6.3","@typescript-eslint/parser":"^5.18.0","rollup-plugin-node-resolve":"^5.2.0","eslint-plugin-eslint-comments":"^3.2.0","@babel/plugin-syntax-decorators":"^7.16.0","@babel/plugin-syntax-typescript":"^7.16.0","eslint-plugin-node-dependencies":"^0.8.0","@typescript-eslint/eslint-plugin":"^5.18.0","@babel/plugin-syntax-pipeline-operator":"^7.16.0"},"peerDependencies":{"eslint":">=6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser_9.4.1_1705909022590_0.41369196182129864","host":"s3://npm-registry-packages"}},"9.4.2":{"name":"vue-eslint-parser","version":"9.4.2","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@9.4.2","maintainers":[{"name":"anonymous","email":"public@mysticatea.dev"},{"name":"anonymous","email":"otameshiyo23@gmail.com"}],"homepage":"https://github.com/vuejs/vue-eslint-parser#readme","bugs":{"url":"https://github.com/vuejs/vue-eslint-parser/issues"},"dist":{"shasum":"02ffcce82042b082292f2d1672514615f0d95b6d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-9.4.2.tgz","fileCount":6,"integrity":"sha512-Ry9oiGmCAK91HrKMtCrKFWmSFWvYkpGglCeFAIqDdr9zdXmMMpJOmUJS7WWsW7fX81h6mwHmUZCQQ1E0PkSwYQ==","signatures":[{"sig":"MEUCIQCI+WdzNd0t+/c1tRj0D04loSjFD/9mwPtvx0uH+VtrcwIgNhIjX/sWVKG3Kzc51gdXaiqhQ1WerMPz4hlHezBGJaA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1135050},"main":"index.js","types":"./index.d.ts","engines":{"node":"^14.17.0 || >=16.0.0"},"funding":"https://github.com/sponsors/mysticatea","gitHead":"d79bcad8fba6f9e8cc4f7282a130a2a34f646267","scripts":{"lint":"eslint src test package.json --ext .js,.ts","test":"npm run -s test:mocha","build":"tsc --module es2015 && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","codecov":"codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --module es2015 --watch","preversion":"npm test","test:cover":"nyc mocha \"test/*.js\" --reporter dot --timeout 60000","test:debug":"mocha --require ts-node/register/transpile-only \"test/*.js\" --reporter dot --timeout 60000","test:mocha":"mocha --require ts-node/register \"test/*.js\" --reporter dot --timeout 60000","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc mocha \"test/*.js\" --reporter dot --timeout 10000","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"ts-node --transpile-only scripts/update-fixtures-ast.js && ts-node --transpile-only scripts/update-fixtures-document-fragment.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node scripts/update-fixtures-ast.js","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"otameshiyo23@gmail.com"},"repository":{"url":"git+https://github.com/vuejs/vue-eslint-parser.git","type":"git"},"_npmVersion":"9.5.1","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"18.16.0","dependencies":{"debug":"^4.3.4","espree":"^9.3.1","lodash":"^4.17.21","semver":"^7.3.6","esquery":"^1.4.0","eslint-scope":"^7.1.1","eslint-visitor-keys":"^3.3.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","mocha":"^9.1.3","warun":"^1.0.0","eslint":"^8.12.0","opener":"^1.5.2","rimraf":"^3.0.2","rollup":"^2.60.0","codecov":"^3.8.3","ts-node":"^10.4.0","wait-on":"^6.0.0","chokidar":"^3.5.2","fs-extra":"^10.0.0","prettier":"^2.4.1","dts-bundle":"^0.7.3","typescript":"~4.8.4","@babel/core":"^7.16.0","@types/node":"^18.8.4","cross-spawn":"^7.0.3","npm-run-all":"^4.1.5","@types/debug":"^4.1.7","@types/mocha":"^9.0.0","@types/eslint":"^8.4.6","@types/estree":"^1.0.0","@types/lodash":"^4.14.186","@types/semver":"^7.3.12","eslint-plugin-node":"^11.1.0","eslint-plugin-jsonc":"^2.2.1","jsonc-eslint-parser":"^2.0.3","@babel/eslint-parser":"^7.16.3","rollup-plugin-replace":"^2.2.0","eslint-plugin-prettier":"^4.0.0","rollup-plugin-sourcemaps":"^0.6.3","@typescript-eslint/parser":"^5.18.0","rollup-plugin-node-resolve":"^5.2.0","eslint-plugin-eslint-comments":"^3.2.0","@babel/plugin-syntax-decorators":"^7.16.0","@babel/plugin-syntax-typescript":"^7.16.0","eslint-plugin-node-dependencies":"^0.8.0","@typescript-eslint/eslint-plugin":"^5.18.0","@babel/plugin-syntax-pipeline-operator":"^7.16.0"},"peerDependencies":{"eslint":">=6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser_9.4.2_1705966159832_0.1419322871457407","host":"s3://npm-registry-packages"}},"9.4.3":{"name":"vue-eslint-parser","version":"9.4.3","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@9.4.3","maintainers":[{"name":"anonymous","email":"public@mysticatea.dev"},{"name":"anonymous","email":"otameshiyo23@gmail.com"}],"homepage":"https://github.com/vuejs/vue-eslint-parser#readme","bugs":{"url":"https://github.com/vuejs/vue-eslint-parser/issues"},"dist":{"shasum":"9b04b22c71401f1e8bca9be7c3e3416a4bde76a8","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-9.4.3.tgz","fileCount":6,"integrity":"sha512-2rYRLWlIpaiN8xbPiDyXZXRgLGOtWxERV7ND5fFAv5qo1D2N9Fu9MNajBNc6o13lZ+24DAWCkQCvj4klgmcITg==","signatures":[{"sig":"MEQCID0ZsWQaA2ZHrPUI2m/UKxRzDD2qVmSwJtff1xgWkoIBAiBoqOW0J2hV3M6Q18rvU6USnP9pYq0o/BiWmS8LDIgrEw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1136110},"main":"index.js","types":"./index.d.ts","engines":{"node":"^14.17.0 || >=16.0.0"},"funding":"https://github.com/sponsors/mysticatea","gitHead":"b0e0ccc6d302bb40c5cb496528536bd355ee5151","scripts":{"lint":"eslint src test package.json --ext .js,.ts","test":"npm run -s test:mocha","build":"tsc --module es2015 && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","setup":"git submodule update --init && cd test/fixtures/eslint && npm install","watch":"run-p watch:*","codecov":"codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --module es2015 --watch","preversion":"npm test","test:cover":"nyc mocha \"test/*.js\" --reporter dot --timeout 60000","test:debug":"mocha --require ts-node/register/transpile-only \"test/*.js\" --reporter dot --timeout 60000","test:mocha":"mocha --require ts-node/register \"test/*.js\" --reporter dot --timeout 60000","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc mocha \"test/*.js\" --reporter dot --timeout 10000","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"ts-node --transpile-only scripts/update-fixtures-ast.js && ts-node --transpile-only scripts/update-fixtures-document-fragment.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node scripts/update-fixtures-ast.js","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"otameshiyo23@gmail.com"},"repository":{"url":"git+https://github.com/vuejs/vue-eslint-parser.git","type":"git"},"_npmVersion":"10.5.2","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"20.13.0","dependencies":{"debug":"^4.3.4","espree":"^9.3.1","lodash":"^4.17.21","semver":"^7.3.6","esquery":"^1.4.0","eslint-scope":"^7.1.1","eslint-visitor-keys":"^3.3.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","mocha":"^9.1.3","warun":"^1.0.0","eslint":"^8.12.0","opener":"^1.5.2","rimraf":"^3.0.2","rollup":"^2.60.0","codecov":"^3.8.3","ts-node":"^10.4.0","wait-on":"^6.0.0","chokidar":"^3.5.2","fs-extra":"^10.0.0","prettier":"^2.4.1","dts-bundle":"^0.7.3","typescript":"~4.8.4","@babel/core":"^7.16.0","@types/node":"^18.8.4","cross-spawn":"^7.0.3","npm-run-all":"^4.1.5","@types/debug":"^4.1.7","@types/mocha":"^9.0.0","@types/eslint":"^8.4.6","@types/estree":"^1.0.0","@types/lodash":"^4.14.186","@types/semver":"^7.3.12","eslint-plugin-node":"^11.1.0","eslint-plugin-jsonc":"^2.2.1","jsonc-eslint-parser":"^2.0.3","@babel/eslint-parser":"^7.16.3","rollup-plugin-replace":"^2.2.0","eslint-plugin-prettier":"^4.0.0","rollup-plugin-sourcemaps":"^0.6.3","@typescript-eslint/parser":"^5.18.0","rollup-plugin-node-resolve":"^5.2.0","eslint-plugin-eslint-comments":"^3.2.0","@babel/plugin-syntax-decorators":"^7.16.0","@babel/plugin-syntax-typescript":"^7.16.0","eslint-plugin-node-dependencies":"^0.8.0","@typescript-eslint/eslint-plugin":"^5.18.0","@babel/plugin-syntax-pipeline-operator":"^7.16.0"},"peerDependencies":{"eslint":">=6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser_9.4.3_1717204333294_0.9929571997977744","host":"s3://npm-registry-packages"}},"10.0.0":{"name":"vue-eslint-parser","version":"10.0.0","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@10.0.0","maintainers":[{"name":"anonymous","email":"public@mysticatea.dev"},{"name":"anonymous","email":"otameshiyo23@gmail.com"}],"homepage":"https://github.com/vuejs/vue-eslint-parser#readme","bugs":{"url":"https://github.com/vuejs/vue-eslint-parser/issues"},"dist":{"shasum":"a3a4e9c7fa76f01e0801e36dd41b67870a7c055d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-10.0.0.tgz","fileCount":6,"integrity":"sha512-xGtmOQJzWUIi6opA7CfJTJsJyCRjibJKHNzq39yqJ/f4AJ+N7Ngr7lDZMl/9ePaobBnsZgifu+7G6bST+gaYJA==","signatures":[{"sig":"MEQCIF4yBAmqRTB88oj0u5dHQ6lrCGb3QVM2ASFIk7/6ElJXAiAKlGWniqTJlTgnNiIkv95Tm2FD0ivU28EeZySXONs0KA==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":1125679},"main":"index.js","types":"./index.d.ts","engines":{"node":"^18.18.0 || ^20.9.0 || >=21.1.0"},"funding":"https://github.com/sponsors/mysticatea","gitHead":"7b006255972609abadf02b4b7358f3f6f80ead92","scripts":{"lint":"eslint src test package.json","test":"npm run -s test:mocha","build":"tsc --module es2015 && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","watch":"run-p watch:*","codecov":"codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --module es2015 --watch","preversion":"npm test","test:cover":"nyc mocha \"test/*.js\" --reporter dot --timeout 60000","test:debug":"mocha --require ts-node/register/transpile-only \"test/*.js\" --reporter dot --timeout 60000","test:mocha":"mocha --require ts-node/register \"test/*.js\" --reporter dot --timeout 60000","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc mocha \"test/*.js\" --reporter dot --timeout 10000","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"ts-node --transpile-only scripts/update-fixtures-ast.js && ts-node --transpile-only scripts/update-fixtures-document-fragment.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node scripts/update-fixtures-ast.js","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"otameshiyo23@gmail.com"},"repository":{"url":"git+https://github.com/vuejs/vue-eslint-parser.git","type":"git"},"_npmVersion":"10.8.1","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"22.4.1","dependencies":{"debug":"^4.4.0","espree":"^10.3.0","lodash":"^4.17.21","semver":"^7.6.3","esquery":"^1.6.0","eslint-scope":"^8.2.0","eslint-visitor-keys":"^4.2.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","mocha":"^9.1.3","warun":"^1.0.0","eslint":"^9.19.0","opener":"^1.5.2","rimraf":"^3.0.2","rollup":"^2.60.0","codecov":"^3.8.3","ts-node":"^10.9.2","wait-on":"^6.0.0","chokidar":"^3.5.2","fs-extra":"^10.0.0","prettier":"^3.4.2","@eslint/js":"^9.19.0","dts-bundle":"^0.7.3","typescript":"~5.7.3","@babel/core":"^7.26.7","@types/node":"^18.8.4","cross-spawn":"^7.0.3","npm-run-all":"^4.1.5","@types/debug":"^4.1.7","@types/mocha":"^9.0.0","@types/estree":"^1.0.0","@types/lodash":"^4.14.186","@types/semver":"^7.3.12","eslint-plugin-n":"^17.15.1","@eslint/eslintrc":"^3.2.0","eslint-plugin-jsonc":"^2.19.1","jsonc-eslint-parser":"^2.0.3","@babel/eslint-parser":"^7.26.5","eslint-plugin-unicorn":"^57.0.0","rollup-plugin-replace":"^2.2.0","eslint-plugin-prettier":"^5.2.3","rollup-plugin-sourcemaps":"^0.6.3","@typescript-eslint/parser":"^8.22.0","rollup-plugin-node-resolve":"^5.2.0","eslint-plugin-eslint-comments":"^3.2.0","@babel/plugin-syntax-decorators":"^7.25.9","@babel/plugin-syntax-typescript":"^7.25.9","eslint-plugin-node-dependencies":"^0.12.0","@typescript-eslint/eslint-plugin":"^8.22.0","@babel/plugin-syntax-pipeline-operator":"^7.26.7"},"peerDependencies":{"eslint":"^8.57.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser_10.0.0_1741147025411_0.6110751624325994","host":"s3://npm-registry-packages-npm-production"}},"10.1.0":{"name":"vue-eslint-parser","version":"10.1.0","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@10.1.0","maintainers":[{"name":"anonymous","email":"public@mysticatea.dev"},{"name":"anonymous","email":"otameshiyo23@gmail.com"}],"homepage":"https://github.com/vuejs/vue-eslint-parser#readme","bugs":{"url":"https://github.com/vuejs/vue-eslint-parser/issues"},"dist":{"shasum":"2c8977f894afea9c8a65c876459e403350b81899","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-10.1.0.tgz","fileCount":6,"integrity":"sha512-ZlBmdu5DorbpnKQpVUBAuxNkyZmaK8vTc+849e+CtozTtnjsfigCmauQaBMP5ARYVXnaq7b87G+n4bMwrusF2w==","signatures":[{"sig":"MEUCIQD5VIl6ZFVDgSWxGfTNlT32xDZCyrj7fMwEi6zDpRV3QAIga46B8hMsEXlT4E8p/bxWrnvNV0KBUkNKbw0iB2e6clU=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":1126622},"main":"index.js","types":"./index.d.ts","engines":{"node":"^18.18.0 || ^20.9.0 || >=21.1.0"},"funding":"https://github.com/sponsors/mysticatea","gitHead":"2af97668c8c783f4614928d1779cc07df9fbed67","scripts":{"lint":"eslint src test package.json","test":"npm run -s test:mocha","build":"tsc --module es2015 && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","watch":"run-p watch:*","codecov":"codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --module es2015 --watch","preversion":"npm test","test:cover":"nyc mocha \"test/*.js\" --reporter dot --timeout 60000","test:debug":"mocha --require ts-node/register/transpile-only \"test/*.js\" --reporter dot --timeout 60000","test:mocha":"mocha --require ts-node/register \"test/*.js\" --reporter dot --timeout 60000","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc mocha \"test/*.js\" --reporter dot --timeout 10000","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"ts-node --transpile-only scripts/update-fixtures-ast.js && ts-node --transpile-only scripts/update-fixtures-document-fragment.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node scripts/update-fixtures-ast.js","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"otameshiyo23@gmail.com"},"repository":{"url":"git+https://github.com/vuejs/vue-eslint-parser.git","type":"git"},"_npmVersion":"10.8.1","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"22.4.1","dependencies":{"debug":"^4.4.0","espree":"^10.3.0","lodash":"^4.17.21","semver":"^7.6.3","esquery":"^1.6.0","eslint-scope":"^8.2.0","eslint-visitor-keys":"^4.2.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","mocha":"^9.1.3","warun":"^1.0.0","eslint":"^9.19.0","opener":"^1.5.2","rimraf":"^3.0.2","rollup":"^2.60.0","codecov":"^3.8.3","ts-node":"^10.9.2","wait-on":"^6.0.0","chokidar":"^3.5.2","fs-extra":"^10.0.0","prettier":"^3.4.2","@eslint/js":"^9.19.0","dts-bundle":"^0.7.3","typescript":"~5.7.3","@babel/core":"^7.26.7","@types/node":"^18.8.4","cross-spawn":"^7.0.3","npm-run-all":"^4.1.5","@types/debug":"^4.1.7","@types/mocha":"^9.0.0","@types/estree":"^1.0.0","@types/lodash":"^4.14.186","@types/semver":"^7.3.12","eslint-plugin-n":"^17.15.1","@eslint/eslintrc":"^3.2.0","eslint-plugin-jsonc":"^2.19.1","jsonc-eslint-parser":"^2.0.3","@babel/eslint-parser":"^7.26.5","eslint-plugin-unicorn":"^57.0.0","rollup-plugin-replace":"^2.2.0","eslint-plugin-prettier":"^5.2.3","rollup-plugin-sourcemaps":"^0.6.3","@typescript-eslint/parser":"^8.22.0","rollup-plugin-node-resolve":"^5.2.0","eslint-plugin-eslint-comments":"^3.2.0","@babel/plugin-syntax-decorators":"^7.25.9","@babel/plugin-syntax-typescript":"^7.25.9","eslint-plugin-node-dependencies":"^0.12.0","@typescript-eslint/eslint-plugin":"^8.22.0","@babel/plugin-syntax-pipeline-operator":"^7.26.7"},"peerDependencies":{"eslint":"^8.57.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser_10.1.0_1741159888024_0.42805005792151896","host":"s3://npm-registry-packages-npm-production"}},"10.1.1":{"name":"vue-eslint-parser","version":"10.1.1","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@10.1.1","maintainers":[{"name":"anonymous","email":"public@mysticatea.dev"},{"name":"anonymous","email":"otameshiyo23@gmail.com"}],"homepage":"https://github.com/vuejs/vue-eslint-parser#readme","bugs":{"url":"https://github.com/vuejs/vue-eslint-parser/issues"},"dist":{"shasum":"0d56d17a8e64cda088c8601dcbfc2ea51548e3d2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-10.1.1.tgz","fileCount":6,"integrity":"sha512-bh2Z/Au5slro9QJ3neFYLanZtb1jH+W2bKqGHXAoYD4vZgNG3KeotL7JpPv5xzY4UXUXJl7TrIsnzECH63kd3Q==","signatures":[{"sig":"MEUCIQCsvrR/43ly3NxYfrti9B+Ieia06hLlknhDG6z/jU5+iQIgBXb4Fg6IAxdHrz9FmNSCYlZj54nz/wwvy3andZcxe7o=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":1126970},"main":"index.js","types":"./index.d.ts","engines":{"node":"^18.18.0 || ^20.9.0 || >=21.1.0"},"funding":"https://github.com/sponsors/mysticatea","gitHead":"9574d91be036d050f058485a8a73fd2eea17b5fe","scripts":{"lint":"eslint src test package.json","test":"npm run -s test:mocha","build":"tsc --module es2015 && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","watch":"run-p watch:*","codecov":"codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --module es2015 --watch","preversion":"npm test","test:cover":"nyc mocha \"test/*.js\" --reporter dot --timeout 60000","test:debug":"mocha --require ts-node/register/transpile-only \"test/*.js\" --reporter dot --timeout 60000","test:mocha":"mocha --require ts-node/register \"test/*.js\" --reporter dot --timeout 60000","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc mocha \"test/*.js\" --reporter dot --timeout 10000","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"ts-node --transpile-only scripts/update-fixtures-ast.js && ts-node --transpile-only scripts/update-fixtures-document-fragment.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node scripts/update-fixtures-ast.js","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"otameshiyo23@gmail.com"},"repository":{"url":"git+https://github.com/vuejs/vue-eslint-parser.git","type":"git"},"_npmVersion":"10.8.1","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"22.4.1","dependencies":{"debug":"^4.4.0","espree":"^10.3.0","lodash":"^4.17.21","semver":"^7.6.3","esquery":"^1.6.0","eslint-scope":"^8.2.0","eslint-visitor-keys":"^4.2.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","mocha":"^9.1.3","warun":"^1.0.0","eslint":"^9.19.0","opener":"^1.5.2","rimraf":"^3.0.2","rollup":"^2.60.0","codecov":"^3.8.3","ts-node":"^10.9.2","wait-on":"^6.0.0","chokidar":"^3.5.2","fs-extra":"^10.0.0","prettier":"^3.4.2","@eslint/js":"^9.19.0","dts-bundle":"^0.7.3","typescript":"~5.7.3","@babel/core":"^7.26.7","@types/node":"^18.8.4","cross-spawn":"^7.0.3","npm-run-all":"^4.1.5","@types/debug":"^4.1.7","@types/mocha":"^9.0.0","@types/estree":"^1.0.0","@types/lodash":"^4.14.186","@types/semver":"^7.3.12","eslint-plugin-n":"^17.15.1","@eslint/eslintrc":"^3.2.0","eslint-plugin-jsonc":"^2.19.1","jsonc-eslint-parser":"^2.0.3","@babel/eslint-parser":"^7.26.5","eslint-plugin-unicorn":"^57.0.0","rollup-plugin-replace":"^2.2.0","eslint-plugin-prettier":"^5.2.3","rollup-plugin-sourcemaps":"^0.6.3","@typescript-eslint/parser":"^8.22.0","rollup-plugin-node-resolve":"^5.2.0","eslint-plugin-eslint-comments":"^3.2.0","@babel/plugin-syntax-decorators":"^7.25.9","@babel/plugin-syntax-typescript":"^7.25.9","eslint-plugin-node-dependencies":"^0.12.0","@typescript-eslint/eslint-plugin":"^8.22.0","@babel/plugin-syntax-pipeline-operator":"^7.26.7"},"peerDependencies":{"eslint":"^8.57.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser_10.1.1_1741183166082_0.8019037341585031","host":"s3://npm-registry-packages-npm-production"}},"10.1.2":{"name":"vue-eslint-parser","version":"10.1.2","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@10.1.2","maintainers":[{"name":"anonymous","email":"public@mysticatea.dev"},{"name":"anonymous","email":"otameshiyo23@gmail.com"}],"homepage":"https://github.com/vuejs/vue-eslint-parser#readme","bugs":{"url":"https://github.com/vuejs/vue-eslint-parser/issues"},"dist":{"shasum":"dd52eaa6873301c934256122b9578007f4df7898","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-10.1.2.tgz","fileCount":6,"integrity":"sha512-1guOfYgNlD7JH2popr/bt5vc7Mzt6quRCnEbqLgpMHvoHEGV1oImzdqrLd+oMD76cHt8ilBP4cda9WA72TLFDQ==","signatures":[{"sig":"MEYCIQC+/ObD6Xj/yA9R5YW1QAXl1BCkhL4qmop0Yrbmaf5L6gIhAPhB0ADg4iO2QXwdCdoTlLKph3QGWTUryvECl15QOOyn","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":1127458},"main":"index.js","types":"./index.d.ts","engines":{"node":"^18.18.0 || ^20.9.0 || >=21.1.0"},"funding":"https://github.com/sponsors/mysticatea","gitHead":"4ddeeef46545eaac8eef35de14d5b26202cdd4bb","scripts":{"lint":"eslint src test package.json","test":"npm run -s test:mocha","build":"tsc --module es2015 && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","watch":"run-p watch:*","codecov":"codecov","pretest":"run-s build lint","version":"npm run -s build","coverage":"opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --module es2015 --watch","preversion":"npm test","test:cover":"nyc mocha \"test/*.js\" --reporter dot --timeout 60000","test:debug":"mocha --require ts-node/register/transpile-only \"test/*.js\" --reporter dot --timeout 60000","test:mocha":"mocha --require ts-node/register \"test/*.js\" --reporter dot --timeout 60000","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc mocha \"test/*.js\" --reporter dot --timeout 10000","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"ts-node --transpile-only scripts/update-fixtures-ast.js && ts-node --transpile-only scripts/update-fixtures-document-fragment.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node scripts/update-fixtures-ast.js","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"otameshiyo23@gmail.com"},"repository":{"url":"git+https://github.com/vuejs/vue-eslint-parser.git","type":"git"},"_npmVersion":"10.9.2","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"22.14.0","dependencies":{"debug":"^4.4.0","espree":"^10.3.0","lodash":"^4.17.21","semver":"^7.6.3","esquery":"^1.6.0","eslint-scope":"^8.2.0","eslint-visitor-keys":"^4.2.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","mocha":"^9.1.3","warun":"^1.0.0","eslint":"^9.19.0","opener":"^1.5.2","rimraf":"^3.0.2","rollup":"^2.60.0","codecov":"^3.8.3","ts-node":"^10.9.2","wait-on":"^6.0.0","chokidar":"^3.5.2","fs-extra":"^10.0.0","prettier":"^3.4.2","@eslint/js":"^9.19.0","dts-bundle":"^0.7.3","typescript":"~5.7.3","@babel/core":"^7.26.7","@types/node":"^18.8.4","cross-spawn":"^7.0.3","npm-run-all":"^4.1.5","@types/debug":"^4.1.7","@types/mocha":"^9.0.0","@types/estree":"^1.0.0","@types/lodash":"^4.14.186","@types/semver":"^7.3.12","eslint-plugin-n":"^17.15.1","@eslint/eslintrc":"^3.2.0","eslint-plugin-jsonc":"^2.19.1","jsonc-eslint-parser":"^2.0.3","@babel/eslint-parser":"^7.26.5","eslint-plugin-unicorn":"^57.0.0","rollup-plugin-replace":"^2.2.0","eslint-plugin-prettier":"^5.2.3","rollup-plugin-sourcemaps":"^0.6.3","@typescript-eslint/parser":"^8.22.0","rollup-plugin-node-resolve":"^5.2.0","eslint-plugin-eslint-comments":"^3.2.0","@babel/plugin-syntax-decorators":"^7.25.9","@babel/plugin-syntax-typescript":"^7.25.9","eslint-plugin-node-dependencies":"^0.12.0","@typescript-eslint/eslint-plugin":"^8.22.0","@babel/plugin-syntax-pipeline-operator":"^7.26.7"},"peerDependencies":{"eslint":"^8.57.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser_10.1.2_1743728639372_0.5497623642141218","host":"s3://npm-registry-packages-npm-production"}},"10.1.3":{"name":"vue-eslint-parser","version":"10.1.3","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@10.1.3","maintainers":[{"name":"anonymous","email":"public@mysticatea.dev"},{"name":"anonymous","email":"otameshiyo23@gmail.com"}],"homepage":"https://github.com/vuejs/vue-eslint-parser#readme","bugs":{"url":"https://github.com/vuejs/vue-eslint-parser/issues"},"dist":{"shasum":"96457823a5915a62001798cfd9cc15a89067bf81","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-10.1.3.tgz","fileCount":6,"integrity":"sha512-dbCBnd2e02dYWsXoqX5yKUZlOt+ExIpq7hmHKPb5ZqKcjf++Eo0hMseFTZMLKThrUk61m+Uv6A2YSBve6ZvuDQ==","signatures":[{"sig":"MEYCIQC0O6+XMlEO5xR8i8CNbtUEbeHsm02j36ct2U55zGWHCgIhANc+44H1RN6+wJMFrWXczBilX0ulBxekTeNf4zkgIKYm","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":1127262},"main":"index.js","types":"./index.d.ts","engines":{"node":"^18.18.0 || ^20.9.0 || >=21.1.0"},"funding":"https://github.com/sponsors/mysticatea","gitHead":"01ed265959a71d6ca819830529021e1f2e261e1b","scripts":{"lint":"eslint src test package.json","test":"npm run -s test:mocha","build":"tsc --module es2015 && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","watch":"run-p watch:*","pretest":"run-s build lint","version":"npm run -s build","coverage":"opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --module es2015 --watch","preversion":"npm test","test:cover":"nyc mocha \"test/*.js\" --reporter dot --timeout 60000","test:debug":"mocha --require ts-node/register/transpile-only \"test/*.js\" --reporter dot --timeout 60000","test:mocha":"mocha --require ts-node/register \"test/*.js\" --reporter dot --timeout 60000","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc mocha \"test/*.js\" --reporter dot --timeout 10000","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"ts-node --transpile-only scripts/update-fixtures-ast.js && ts-node --transpile-only scripts/update-fixtures-document-fragment.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node scripts/update-fixtures-ast.js","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","email":"otameshiyo23@gmail.com"},"repository":{"url":"git+https://github.com/vuejs/vue-eslint-parser.git","type":"git"},"_npmVersion":"10.9.2","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"22.14.0","dependencies":{"debug":"^4.4.0","espree":"^10.3.0","lodash":"^4.17.21","semver":"^7.6.3","esquery":"^1.6.0","eslint-scope":"^8.2.0","eslint-visitor-keys":"^4.2.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","mocha":"^9.1.3","warun":"^1.0.0","eslint":"^9.19.0","opener":"^1.5.2","rimraf":"^3.0.2","rollup":"^2.60.0","ts-node":"^10.9.2","wait-on":"^6.0.0","chokidar":"^3.5.2","fs-extra":"^10.0.0","prettier":"^3.4.2","@eslint/js":"^9.19.0","dts-bundle":"^0.7.3","typescript":"~5.7.3","@babel/core":"^7.26.7","@types/node":"^18.8.4","cross-spawn":"^7.0.3","npm-run-all":"^4.1.5","@types/debug":"^4.1.7","@types/mocha":"^9.0.0","@types/estree":"^1.0.0","@types/lodash":"^4.14.186","@types/semver":"^7.3.12","eslint-plugin-n":"^17.15.1","@eslint/eslintrc":"^3.2.0","eslint-plugin-jsonc":"^2.19.1","jsonc-eslint-parser":"^2.0.3","@babel/eslint-parser":"^7.26.5","eslint-plugin-unicorn":"^57.0.0","rollup-plugin-replace":"^2.2.0","eslint-plugin-prettier":"^5.2.3","rollup-plugin-sourcemaps":"^0.6.3","@typescript-eslint/parser":"^8.22.0","rollup-plugin-node-resolve":"^5.2.0","eslint-plugin-eslint-comments":"^3.2.0","@babel/plugin-syntax-decorators":"^7.25.9","@babel/plugin-syntax-typescript":"^7.25.9","eslint-plugin-node-dependencies":"^0.12.0","@typescript-eslint/eslint-plugin":"^8.22.0","@babel/plugin-syntax-pipeline-operator":"^7.26.7"},"peerDependencies":{"eslint":"^8.57.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser_10.1.3_1743822945191_0.2367899161823026","host":"s3://npm-registry-packages-npm-production"}},"10.1.4":{"name":"vue-eslint-parser","version":"10.1.4","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@10.1.4","maintainers":[{"name":"anonymous","email":"public@mysticatea.dev"},{"name":"anonymous","email":"otameshiyo23@gmail.com"}],"homepage":"https://github.com/vuejs/vue-eslint-parser#readme","bugs":{"url":"https://github.com/vuejs/vue-eslint-parser/issues"},"dist":{"shasum":"3992b13d30df4639f07c32ddb384a1232bf91145","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-10.1.4.tgz","fileCount":6,"integrity":"sha512-EIZvCukIEMHEb3mxOKemtvWR1fcUAdWWAgkfyjmRHzvyhrZvBvH9oz69+thDIWhGiIQjZnPkCn8yHqvjM+a9eg==","signatures":[{"sig":"MEUCIGknCYeOHjw2N3mIrs8weWaJs2dzIYjqWyVau9I+VgEAAiEAzq5/YJ6DLrYgdR8v0BED75xRql8vQkNRjUIsJ0ZqsF8=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":1127636},"main":"index.js","types":"./index.d.ts","engines":{"node":"^18.18.0 || ^20.9.0 || >=21.1.0"},"funding":"https://github.com/sponsors/mysticatea","gitHead":"73dcb3e4b06b2a9e8aaf035751540da0d36c06e5","scripts":{"lint":"eslint src test package.json","test":"npm run -s test:mocha","build":"tsc --module es2015 && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","watch":"run-p watch:*","pretest":"run-s build lint","version":"npm run -s build","coverage":"opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --module es2015 --watch","preversion":"npm test","test:cover":"nyc mocha \"test/*.js\" --reporter dot --timeout 60000","test:debug":"mocha --require ts-node/register/transpile-only \"test/*.js\" --reporter dot --timeout 60000","test:mocha":"mocha --require ts-node/register \"test/*.js\" --reporter dot --timeout 60000","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc mocha \"test/*.js\" --reporter dot --timeout 10000","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"ts-node --transpile-only scripts/update-fixtures-ast.js && ts-node --transpile-only scripts/update-fixtures-document-fragment.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node scripts/update-fixtures-ast.js","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","actor":{"name":"ota-meshi","type":"user","email":"otameshiyo23@gmail.com"},"email":"otameshiyo23@gmail.com"},"repository":{"url":"git+https://github.com/vuejs/vue-eslint-parser.git","type":"git"},"_npmVersion":"11.3.0","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"24.2.0","dependencies":{"debug":"^4.4.0","espree":"^10.3.0","lodash":"^4.17.21","semver":"^7.6.3","esquery":"^1.6.0","eslint-scope":"^8.2.0","eslint-visitor-keys":"^4.2.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","mocha":"^9.1.3","warun":"^1.0.0","eslint":"^9.19.0","opener":"^1.5.2","rimraf":"^3.0.2","rollup":"^2.60.0","ts-node":"^10.9.2","wait-on":"^6.0.0","chokidar":"^3.5.2","fs-extra":"^10.0.0","prettier":"^3.4.2","@eslint/js":"^9.19.0","dts-bundle":"^0.7.3","typescript":"~5.7.3","@babel/core":"^7.26.7","@types/node":"^18.8.4","cross-spawn":"^7.0.3","npm-run-all":"^4.1.5","@types/debug":"^4.1.7","@types/mocha":"^9.0.0","@types/estree":"^1.0.0","@types/lodash":"^4.14.186","@types/semver":"^7.3.12","eslint-plugin-n":"^17.15.1","@eslint/eslintrc":"^3.2.0","eslint-plugin-jsonc":"^2.19.1","jsonc-eslint-parser":"^2.0.3","@babel/eslint-parser":"^7.26.5","eslint-plugin-unicorn":"^57.0.0","rollup-plugin-replace":"^2.2.0","eslint-plugin-prettier":"^5.2.3","rollup-plugin-sourcemaps":"^0.6.3","@typescript-eslint/parser":"^8.22.0","rollup-plugin-node-resolve":"^5.2.0","eslint-plugin-eslint-comments":"^3.2.0","@babel/plugin-syntax-decorators":"^7.25.9","@babel/plugin-syntax-typescript":"^7.25.9","eslint-plugin-node-dependencies":"^0.12.0","@typescript-eslint/eslint-plugin":"^8.22.0","@babel/plugin-syntax-pipeline-operator":"^7.26.7"},"peerDependencies":{"eslint":"^8.57.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser_10.1.4_1750728596997_0.34813995258439534","host":"s3://npm-registry-packages-npm-production"}},"10.2.0":{"name":"vue-eslint-parser","version":"10.2.0","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@10.2.0","maintainers":[{"name":"anonymous","email":"public@mysticatea.dev"},{"name":"anonymous","email":"otameshiyo23@gmail.com"}],"homepage":"https://github.com/vuejs/vue-eslint-parser#readme","bugs":{"url":"https://github.com/vuejs/vue-eslint-parser/issues"},"dist":{"shasum":"cb53f89b14c7f5bf6a95c9532e3b2961ab619d61","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-10.2.0.tgz","fileCount":6,"integrity":"sha512-CydUvFOQKD928UzZhTp4pr2vWz1L+H99t7Pkln2QSPdvmURT0MoC4wUccfCnuEaihNsu9aYYyk+bep8rlfkUXw==","signatures":[{"sig":"MEUCIQDGOFu7Ka4dLbJHV0VSdTDkb+vzADCRTDWS2xwbdfL8OQIgeSY2iYXduf4EC6rALBWVtL1FHD7UzA0d9iMzY79z2Pg=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":1146032},"main":"index.js","types":"./index.d.ts","engines":{"node":"^18.18.0 || ^20.9.0 || >=21.1.0"},"funding":"https://github.com/sponsors/mysticatea","gitHead":"62321dbd75a5b962400c0f1201c1a61a0917e765","scripts":{"lint":"eslint src test package.json","test":"npm run -s test:mocha","build":"tsc --module es2015 && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts","clean":"rimraf .nyc_output .temp coverage index.*","watch":"run-p watch:*","pretest":"run-s build lint","version":"npm run -s build","coverage":"opener ./coverage/lcov-report/index.html","prebuild":"npm run -s clean","prewatch":"npm run -s clean","watch:tsc":"tsc --module es2015 --watch","preversion":"npm test","test:cover":"nyc mocha \"test/*.js\" --reporter dot --timeout 60000","test:debug":"mocha --require ts-node/register/transpile-only \"test/*.js\" --reporter dot --timeout 60000","test:mocha":"mocha --require ts-node/register \"test/*.js\" --reporter dot --timeout 60000","watch:test":"wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc mocha \"test/*.js\" --reporter dot --timeout 10000","postversion":"git push && git push --tags","watch:rollup":"wait-on .temp/index.js && rollup -c -o index.js --watch","update-fixtures":"ts-node --transpile-only scripts/update-fixtures-ast.js && ts-node --transpile-only scripts/update-fixtures-document-fragment.js","watch:update-ast":"wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- ts-node scripts/update-fixtures-ast.js","watch:coverage-report":"wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"},"_npmUser":{"name":"anonymous","actor":{"name":"ota-meshi","type":"user","email":"otameshiyo23@gmail.com"},"email":"otameshiyo23@gmail.com"},"repository":{"url":"git+https://github.com/vuejs/vue-eslint-parser.git","type":"git"},"_npmVersion":"11.3.0","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"24.2.0","dependencies":{"debug":"^4.4.0","espree":"^10.3.0","semver":"^7.6.3","esquery":"^1.6.0","eslint-scope":"^8.2.0","eslint-visitor-keys":"^4.2.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","mocha":"^9.1.3","warun":"^1.0.0","eslint":"^9.19.0","opener":"^1.5.2","rimraf":"^3.0.2","rollup":"^2.60.0","ts-node":"^10.9.2","wait-on":"^6.0.0","chokidar":"^3.5.2","fs-extra":"^10.0.0","prettier":"^3.4.2","@eslint/js":"^9.19.0","dts-bundle":"^0.7.3","typescript":"~5.7.3","@babel/core":"^7.26.7","@types/node":"^18.8.4","cross-spawn":"^7.0.3","npm-run-all":"^4.1.5","@types/debug":"^4.1.7","@types/mocha":"^9.0.0","@types/estree":"^1.0.0","@types/semver":"^7.3.12","eslint-plugin-n":"^17.15.1","@eslint/eslintrc":"^3.2.0","eslint-plugin-jsonc":"^2.19.1","jsonc-eslint-parser":"^2.0.3","@babel/eslint-parser":"^7.26.5","eslint-plugin-unicorn":"^57.0.0","rollup-plugin-replace":"^2.2.0","eslint-plugin-prettier":"^5.2.3","rollup-plugin-sourcemaps":"^0.6.3","@typescript-eslint/parser":"^8.22.0","rollup-plugin-node-resolve":"^5.2.0","eslint-plugin-eslint-comments":"^3.2.0","@babel/plugin-syntax-decorators":"^7.25.9","@babel/plugin-syntax-typescript":"^7.25.9","eslint-plugin-node-dependencies":"^0.12.0","@typescript-eslint/eslint-plugin":"^8.22.0","@babel/plugin-syntax-pipeline-operator":"^7.26.7"},"peerDependencies":{"eslint":"^8.57.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser_10.2.0_1751371013571_0.9679888612441481","host":"s3://npm-registry-packages-npm-production"}},"10.3.0":{"name":"vue-eslint-parser","version":"10.3.0","keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","_id":"vue-eslint-parser@10.3.0","maintainers":[{"name":"anonymous","email":"public@mysticatea.dev"},{"name":"anonymous","email":"otameshiyo23@gmail.com"}],"homepage":"https://github.com/vuejs/vue-eslint-parser#readme","bugs":{"url":"https://github.com/vuejs/vue-eslint-parser/issues"},"dist":{"shasum":"581eef6b67504b4e1efb9208febc9cda52cadd6b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-10.3.0.tgz","fileCount":6,"integrity":"sha512-Aj1cCjD3HQjp5B8cLr6zJjISEOkr0MCrqvwLg3MeyGDjKlL8uMFLKfVbP7Te09cG9Y9KmzJwwnD7hf884CpcOg==","signatures":[{"sig":"MEUCIQDbcQoM06hnDwFY7Nx+v1D8JsBEhlnHCocRC+nCANqN9wIgGW5WtLkXmURypJ8LirSK3sSTtHphUQZRG1Xn92vs8bI=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":1048090},"main":"./dist/index.cjs","types":"./dist/index.d.cts","engines":{"node":"^18.18.0 || ^20.9.0 || >=21.1.0"},"exports":{".":"./dist/index.cjs","./package.json":"./package.json"},"funding":"https://github.com/sponsors/mysticatea","gitHead":"fb0c8c6332a5ee9f8e793d67a90ad4c95f3817f1","scripts":{"dev":"tsdown --watch","lint":"eslint src test package.json","test":"vitest","build":"tsdown","version":"npm run -s build","coverage":"vitest --coverage --ui","preversion":"npm test -- run","test:cover":"vitest --coverage","postversion":"git push && git push --tags"},"_npmUser":{"name":"anonymous","email":"otameshiyo23@gmail.com"},"repository":{"url":"git+https://github.com/vuejs/vue-eslint-parser.git","type":"git"},"_npmVersion":"11.6.2","description":"The ESLint custom parser for `.vue` files.","directories":{},"_nodeVersion":"24.13.0","dependencies":{"debug":"^4.4.0","espree":"^10.3.0 || ^11.0.0","semver":"^7.6.3","esquery":"^1.6.0","eslint-scope":"^8.2.0 || ^9.0.0","eslint-visitor-keys":"^4.2.0 || ^5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"vite":"^6.3.5","eslint":"^10.0.0","tsdown":"^0.20.3","vitest":"^3.2.4","ts-node":"^10.9.2","prettier":"^3.4.2","@eslint/js":"^9.19.0","@vitest/ui":"^3.2.4","typescript":"~5.7.3","@babel/core":"^7.26.7","@types/node":"^18.8.4","@types/debug":"^4.1.7","@types/estree":"^1.0.0","@types/semver":"^7.3.12","eslint-plugin-n":"^17.15.1","@eslint/eslintrc":"^3.2.0","@vitest/coverage-v8":"^3.2.4","eslint-plugin-jsonc":"^2.19.1","jsonc-eslint-parser":"^2.0.3","@babel/eslint-parser":"^7.28.6","eslint-plugin-unicorn":"^57.0.0","eslint-plugin-prettier":"^5.2.3","@typescript-eslint/parser":"^8.55.0","@babel/plugin-syntax-decorators":"^7.25.9","@babel/plugin-syntax-typescript":"^7.25.9","eslint-plugin-node-dependencies":"^1.3.0","@typescript-eslint/eslint-plugin":"^8.55.0","@babel/plugin-syntax-pipeline-operator":"^7.26.7","@eslint-community/eslint-plugin-eslint-comments":"^4.6.0"},"peerDependencies":{"eslint":"^8.57.0 || ^9.0.0 || ^10.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-eslint-parser_10.3.0_1770978303360_0.6511376645884788","host":"s3://npm-registry-packages-npm-production"}},"10.4.0":{"name":"vue-eslint-parser","version":"10.4.0","description":"The ESLint custom parser for `.vue` files.","main":"./dist/index.cjs","types":"./dist/index.d.cts","exports":{".":"./dist/index.cjs","./package.json":"./package.json"},"engines":{"node":"^18.18.0 || ^20.9.0 || >=21.1.0"},"peerDependencies":{"eslint":"^8.57.0 || ^9.0.0 || ^10.0.0"},"dependencies":{"debug":"^4.4.0","eslint-scope":"^8.2.0 || ^9.0.0","eslint-visitor-keys":"^4.2.0 || ^5.0.0","espree":"^10.3.0 || ^11.0.0","esquery":"^1.6.0","semver":"^7.6.3"},"devDependencies":{"@babel/core":"^7.26.7","@babel/eslint-parser":"^7.28.6","@babel/plugin-syntax-decorators":"^7.25.9","@babel/plugin-syntax-pipeline-operator":"^7.26.7","@babel/plugin-syntax-typescript":"^7.25.9","@eslint/eslintrc":"^3.2.0","@eslint/js":"^9.19.0","@types/debug":"^4.1.7","@types/estree":"^1.0.0","@types/node":"^18.8.4","@types/semver":"^7.3.12","@typescript-eslint/eslint-plugin":"^8.55.0","@typescript-eslint/parser":"^8.55.0","@vitest/coverage-v8":"^3.2.4","@vitest/ui":"^3.2.4","eslint":"^10.0.0","@eslint-community/eslint-plugin-eslint-comments":"^4.6.0","eslint-plugin-jsonc":"^2.19.1","eslint-plugin-n":"^17.15.1","eslint-plugin-node-dependencies":"^1.3.0","eslint-plugin-prettier":"^5.2.3","eslint-plugin-unicorn":"^57.0.0","jsonc-eslint-parser":"^2.0.3","prettier":"^3.4.2","ts-node":"^10.9.2","tsdown":"^0.20.3","typescript":"~5.7.3","vite":"^6.3.5","vitest":"^3.2.4"},"scripts":{"dev":"tsdown --watch","build":"tsdown","coverage":"vitest --coverage --ui","lint":"eslint src test package.json","test":"vitest","test:cover":"vitest --coverage","preversion":"npm test -- run","version":"npm run -s build","postversion":"git push && git push --tags"},"repository":{"type":"git","url":"git+https://github.com/vuejs/vue-eslint-parser.git"},"keywords":[],"author":{"name":"Toru Nagashima"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue-eslint-parser/issues"},"homepage":"https://github.com/vuejs/vue-eslint-parser#readme","funding":"https://github.com/sponsors/mysticatea","gitHead":"199607f8c93b5d13e17a28c05c7b287620466c22","_id":"vue-eslint-parser@10.4.0","_nodeVersion":"24.13.0","_npmVersion":"11.6.2","dist":{"integrity":"sha512-Vxi9pJdbN3ZnVGLODVtZ7y4Y2kzAAE2Cm0CZ3ZDRvydVYxZ6VrnBhLikBsRS+dpwj4Jv4UCv21PTEwF5rQ9WXg==","shasum":"fd7251d0e710a88a6618f50e8a27973bc3c8d69c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vue-eslint-parser/-/vue-eslint-parser-10.4.0.tgz","fileCount":6,"unpackedSize":1047932,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIEq59HnTAjPp11DM/ojRB7FVDHHneRvs2UO1Wi9y7JusAiEAwztRxznly9uS+Zebi01kmm+DmBpo7/1LcmcC0ZWUfTc="}]},"_npmUser":{"name":"anonymous","email":"otameshiyo23@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"public@mysticatea.dev"},{"name":"anonymous","email":"otameshiyo23@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/vue-eslint-parser_10.4.0_1771034500722_0.8835937655036135"},"_hasShrinkwrap":false}},"name":"vue-eslint-parser","time":{"created":"2016-12-15T04:09:42.084Z","modified":"2026-02-14T02:01:41.058Z","0.1.0":"2016-12-15T04:09:42.084Z","0.1.1":"2016-12-16T04:21:25.017Z","0.1.2":"2016-12-17T06:10:51.114Z","0.1.3":"2016-12-17T12:31:26.936Z","0.1.4":"2016-12-19T01:51:22.490Z","0.2.0":"2016-12-22T04:13:30.894Z","1.0.0":"2016-12-29T14:32:38.569Z","1.1.0-6":"2017-06-18T11:16:56.605Z","1.1.0-7":"2017-06-27T10:08:08.319Z","1.1.0-8":"2017-07-30T02:18:37.036Z","1.1.0-9":"2017-07-30T06:08:56.564Z","2.0.0-beta.0":"2017-07-30T07:57:07.917Z","2.0.0-beta.1":"2017-07-31T12:23:04.969Z","2.0.0-beta.2":"2017-07-31T12:44:45.040Z","2.0.0-beta.3":"2017-08-02T22:25:18.188Z","2.0.0-beta.4":"2017-08-03T21:47:38.540Z","2.0.0-beta.5":"2017-08-04T10:52:28.757Z","2.0.0-beta.6":"2017-08-07T03:57:59.917Z","2.0.0-beta.7":"2017-08-08T08:37:55.309Z","2.0.0-beta.8":"2017-08-17T23:16:16.336Z","2.0.0-beta.9":"2017-08-19T06:00:31.116Z","2.0.0-beta.10":"2017-08-19T06:48:55.929Z","2.0.1-beta.0":"2017-09-01T13:31:58.570Z","2.0.1-beta.1":"2017-09-07T10:22:37.833Z","2.0.1-beta.2":"2017-11-07T06:54:15.409Z","2.0.1-beta.3":"2017-12-25T10:10:40.909Z","2.0.1":"2017-12-31T04:06:24.376Z","2.0.2":"2018-01-07T12:05:28.949Z","2.0.3":"2018-02-17T09:51:15.903Z","3.0.0":"2018-07-03T05:28:12.145Z","3.1.0":"2018-07-09T10:09:55.846Z","3.1.1":"2018-07-20T07:38:49.531Z","3.2.0":"2018-07-24T06:23:20.558Z","3.2.1":"2018-07-24T08:12:12.778Z","3.2.2":"2018-07-25T07:09:13.003Z","3.3.0":"2018-11-24T06:47:44.095Z","4.0.0":"2018-12-01T08:54:41.895Z","4.0.1":"2018-12-01T09:36:14.361Z","4.0.2":"2018-12-01T10:41:50.658Z","4.0.3":"2018-12-05T19:00:10.369Z","5.0.0":"2019-01-04T17:17:39.365Z","6.0.0-beta.0":"2019-02-07T20:47:39.261Z","6.0.0":"2019-02-07T22:01:56.534Z","6.0.1":"2019-02-09T17:11:38.068Z","6.0.2":"2019-02-10T08:05:59.574Z","6.0.3":"2019-02-28T08:55:58.438Z","6.0.4":"2019-04-21T08:33:14.456Z","6.0.5":"2019-11-09T11:09:57.677Z","7.0.0":"2019-11-09T13:31:37.547Z","7.1.0":"2020-05-15T10:40:00.538Z","7.1.1":"2020-10-12T10:35:31.208Z","7.2.0":"2020-12-03T03:04:07.228Z","7.3.0":"2020-12-14T13:09:25.824Z","7.4.0":"2021-01-21T11:07:43.666Z","7.4.1":"2021-01-21T12:18:56.716Z","7.5.0":"2021-02-14T00:37:25.968Z","7.6.0":"2021-03-02T10:05:23.567Z","7.7.0":"2021-07-02T00:12:45.477Z","7.7.1":"2021-07-02T02:42:24.689Z","7.7.2":"2021-07-02T10:33:08.648Z","7.8.0":"2021-07-06T10:25:43.089Z","7.9.0":"2021-07-18T00:41:59.145Z","7.10.0":"2021-07-28T06:09:41.370Z","7.11.0":"2021-09-05T23:01:27.459Z","8.0.0":"2021-10-19T00:21:19.395Z","8.0.1":"2021-10-30T04:01:40.387Z","8.1.0":"2022-01-21T00:51:43.655Z","8.2.0":"2022-01-24T05:30:49.555Z","8.3.0":"2022-02-22T08:51:28.420Z","9.0.0-alpha.0":"2022-04-14T08:53:13.515Z","9.0.0":"2022-05-11T23:31:29.063Z","9.0.1":"2022-05-11T23:39:48.529Z","9.0.2":"2022-05-17T10:11:47.214Z","9.0.3":"2022-06-23T07:43:39.367Z","9.1.0":"2022-09-09T03:18:07.353Z","9.1.1":"2023-03-30T06:39:34.986Z","9.2.0":"2023-05-03T00:36:36.287Z","9.2.1":"2023-05-07T00:01:06.400Z","9.3.0":"2023-05-14T01:07:56.324Z","9.3.1":"2023-06-11T08:44:57.926Z","9.3.2":"2023-10-08T12:36:55.038Z","9.4.0":"2024-01-08T14:33:33.964Z","9.4.1":"2024-01-22T07:37:02.795Z","9.4.2":"2024-01-22T23:29:20.055Z","9.4.3":"2024-06-01T01:12:13.486Z","10.0.0":"2025-03-05T03:57:05.621Z","10.1.0":"2025-03-05T07:31:28.216Z","10.1.1":"2025-03-05T13:59:26.369Z","10.1.2":"2025-04-04T01:03:59.958Z","10.1.3":"2025-04-05T03:15:45.498Z","10.1.4":"2025-06-24T01:29:57.192Z","10.2.0":"2025-07-01T11:56:53.814Z","10.3.0":"2026-02-13T10:25:03.584Z","10.4.0":"2026-02-14T02:01:40.884Z"},"readmeFilename":"README.md","homepage":"https://github.com/vuejs/vue-eslint-parser#readme"}