{"_attachments":{},"_id":"vue-template-compiler","_rev":"7758-61f16141b77ea98a7494aaad","author":{"name":"Evan You"},"description":"template compiler for Vue 2.0","dist-tags":{"alpha":"2.7.0-alpha.12","beta":"2.7.16-beta.2","latest":"2.7.16"},"license":"MIT","maintainers":[{"name":"posva","email":"posva13@gmail.com"},{"name":"yyx990803","email":"yyx990803@gmail.com"}],"name":"vue-template-compiler","readme":"# vue-template-compiler\n\n> This package is auto-generated. For pull requests please see [src/platforms/web/entry-compiler.js](https://github.com/vuejs/vue/tree/dev/src/platforms/web/entry-compiler.js).\n\nThis package can be used to pre-compile Vue 2.0 templates into render functions to avoid runtime-compilation overhead and CSP restrictions. In most cases you should be using it with [`vue-loader`](https://github.com/vuejs/vue-loader), you will only need it separately if you are writing build tools with very specific needs.\n\n## Installation\n\n``` bash\nnpm install vue-template-compiler\n```\n\n``` js\nconst compiler = require('vue-template-compiler')\n```\n\n## API\n\n### compiler.compile(template, [options])\n\nCompiles a template string and returns compiled JavaScript code. The returned result is an object of the following format:\n\n``` js\n{\n  ast: ?ASTElement, // parsed template elements to AST\n  render: string, // main render function code\n  staticRenderFns: Array<string>, // render code for static sub trees, if any\n  errors: Array<string> // template syntax errors, if any\n}\n```\n\nNote the returned function code uses `with` and thus cannot be used in strict mode code.\n\n#### Options\n\n- `outputSourceRange` *new in 2.6*\n  - Type: `boolean`\n  - Default: `false`\n\n  Set this to true will cause the `errors` returned in the compiled result become objects in the form of `{ msg, start, end }`. The `start` and `end` properties are numbers that mark the code range of the error source in the template. This can be passed on to the `compiler.generateCodeFrame` API to generate a code frame for the error.\n\n- `whitespace`\n  - Type: `string`\n  - Valid values: `'preserve' | 'condense'`\n  - Default: `'preserve'`\n\n  The default value `'preserve'` handles whitespaces as follows:\n\n  - A whitespace-only text node between element tags is condensed into a single space.\n  - All other whitespaces are preserved as-is.\n\n  If set to `'condense'`:\n\n  - A whitespace-only text node between element tags is removed if it contains new lines. Otherwise, it is condensed into a single space.\n  - Consecutive whitespaces inside a non-whitespace-only text node are condensed into a single space.\n\n  Using condense mode will result in smaller compiled code size and slightly improved performance. However, it will produce minor visual layout differences compared to plain HTML in certain cases.\n\n  **This option does not affect the `<pre>` tag.**\n\n  Example:\n\n  ``` html\n  <!-- source -->\n  <div>\n    <span>\n      foo\n    </span>   <span>bar</span>\n  </div>\n\n  <!-- whitespace: 'preserve' -->\n  <div> <span>\n    foo\n    </span> <span>bar</span> </div>\n\n  <!-- whitespace: 'condense' -->\n  <div><span> foo </span> <span>bar</span></div>\n  ```\n\n- `modules`\n\n  It's possible to hook into the compilation process to support custom template features. **However, beware that by injecting custom compile-time modules, your templates will not work with other build tools built on standard built-in modules, e.g `vue-loader` and `vueify`.**\n\n  An array of compiler modules. For details on compiler modules, refer to the `ModuleOptions` type in [flow declarations](https://github.com/vuejs/vue/blob/dev/flow/compiler.js#L47-L59) and the [built-in modules](https://github.com/vuejs/vue/tree/dev/src/platforms/web/compiler/modules).\n\n- `directives`\n\n  An object where the key is the directive name and the value is a function that transforms an template AST node. For example:\n\n  ``` js\n  compiler.compile('<div v-test></div>', {\n    directives: {\n      test (node, directiveMeta) {\n        // transform node based on directiveMeta\n      }\n    }\n  })\n  ```\n\n  By default, a compile-time directive will extract the directive and the directive will not be present at runtime. If you want the directive to also be handled by a runtime definition, return `true` in the transform function.\n\n  Refer to the implementation of some [built-in compile-time directives](https://github.com/vuejs/vue/tree/dev/src/platforms/web/compiler/directives).\n\n- `preserveWhitespace` **Deprecated since 2.6**\n  - Type: `boolean`\n  - Default: `true`\n\n  By default, the compiled render function preserves all whitespace characters between HTML tags. If set to `false`, whitespace between tags will be ignored. This can result in slightly better performance but may affect layout for inline elements.\n\n---\n\n### compiler.compileToFunctions(template)\n\nSimilar to `compiler.compile`, but directly returns instantiated functions:\n\n``` js\n{\n  render: Function,\n  staticRenderFns: Array<Function>\n}\n```\n\nThis is only useful at runtime with pre-configured builds, so it doesn't accept any compile-time options. In addition, this method uses `new Function()` so it is not CSP-compliant.\n\n---\n\n### compiler.ssrCompile(template, [options])\n\n> 2.4.0+\n\nSame as `compiler.compile` but generates SSR-specific render function code by optimizing parts of the template into string concatenation in order to improve SSR performance.\n\nThis is used by default in `vue-loader@>=12` and can be disabled using the [`optimizeSSR`](https://vue-loader.vuejs.org/en/options.html#optimizessr) option.\n\n---\n\n### compiler.ssrCompileToFunctions(template)\n\n> 2.4.0+\n\nSame as `compiler.compileToFunction` but generates SSR-specific render function code by optimizing parts of the template into string concatenation in order to improve SSR performance.\n\n---\n\n### compiler.parseComponent(file, [options])\n\nParse a SFC (single-file component, or `*.vue` file) into a descriptor (refer to the `SFCDescriptor` type in [flow declarations](https://github.com/vuejs/vue/blob/dev/flow/compiler.js)). This is used in SFC build tools like `vue-loader` and `vueify`.\n\n---\n\n### compiler.generateCodeFrame(template, start, end)\n\nGenerate a code frame that highlights the part in `template` defined by `start` and `end`. Useful for error reporting in higher-level tooling.\n\n#### Options\n\n#### `pad`\n\n`pad` is useful when you are piping the extracted content into other pre-processors, as you will get correct line numbers or character indices if there are any syntax errors.\n\n- with `{ pad: \"line\" }`, the extracted content for each block will be prefixed with one newline for each line in the leading content from the original file to ensure that the line numbers align with the original file.\n- with `{ pad: \"space\" }`, the extracted content for each block will be prefixed with one space for each character in the leading content from the original file to ensure that the character count remains the same as the original file.\n","time":{"created":"2022-01-26T14:57:05.493Z","modified":"2025-12-06T20:08:31.547Z","2.6.14":"2021-06-07T09:55:20.240Z","2.6.13":"2021-06-01T14:28:37.672Z","2.6.12":"2020-08-20T13:10:35.585Z","2.6.11":"2019-12-13T19:58:29.159Z","2.6.10":"2019-03-20T06:26:44.153Z","2.6.9":"2019-03-14T09:01:52.188Z","2.6.8":"2019-03-01T15:03:25.452Z","2.6.7":"2019-02-21T22:06:07.521Z","2.6.6":"2019-02-12T04:19:56.436Z","2.6.5":"2019-02-11T05:14:22.429Z","2.6.4":"2019-02-08T21:44:36.923Z","2.6.3":"2019-02-06T21:51:52.674Z","2.6.2":"2019-02-05T03:52:31.842Z","2.6.1":"2019-02-04T22:51:22.664Z","2.6.0":"2019-02-04T15:56:51.772Z","2.6.0-beta.3":"2019-01-30T14:59:12.272Z","2.6.0-beta.2":"2019-01-26T04:38:27.657Z","2.6.0-beta.1":"2019-01-16T16:18:28.250Z","2.5.22":"2019-01-11T23:18:16.704Z","2.5.21":"2018-12-11T22:52:07.931Z","2.5.20":"2018-12-10T16:56:52.472Z","2.5.19":"2018-12-09T21:24:39.984Z","2.5.18":"2018-12-07T21:08:56.863Z","2.5.18-beta.0":"2018-12-02T21:10:29.761Z","2.5.17":"2018-08-01T19:29:06.678Z","2.5.17-beta.0":"2018-03-23T23:28:55.636Z","2.5.16":"2018-03-13T22:14:12.071Z","2.5.15":"2018-03-10T23:36:33.494Z","2.5.14":"2018-03-09T21:40:18.942Z","2.5.13":"2017-12-19T19:06:49.424Z","2.5.12":"2017-12-19T14:54:13.620Z","2.5.11":"2017-12-14T16:55:55.885Z","2.5.10":"2017-12-12T23:16:36.305Z","2.5.9":"2017-11-27T17:43:26.543Z","2.5.8":"2017-11-21T14:42:13.212Z","2.5.7":"2017-11-20T19:49:20.317Z","2.5.6":"2017-11-18T19:43:53.979Z","2.5.5":"2017-11-17T16:36:49.330Z","2.5.4":"2017-11-16T19:53:17.519Z","2.5.3":"2017-11-03T21:11:25.816Z","2.5.2":"2017-10-13T20:20:54.468Z","2.5.1":"2017-10-13T14:14:26.382Z","2.5.0":"2017-10-13T03:04:30.026Z","2.4.4":"2017-09-14T15:32:36.725Z","2.4.3":"2017-09-13T07:57:24.928Z","2.4.2":"2017-07-21T04:28:28.366Z","2.4.1":"2017-07-13T06:40:14.455Z","2.4.0":"2017-07-13T05:52:49.585Z","2.3.4":"2017-06-08T04:53:26.574Z","2.3.3":"2017-05-09T16:57:04.720Z","2.3.2":"2017-05-02T10:29:53.734Z","2.3.1":"2017-05-02T07:57:32.854Z","2.3.0":"2017-04-27T06:22:02.445Z","2.3.0-beta.1":"2017-04-26T10:32:26.908Z","2.2.6":"2017-03-27T02:46:02.193Z","2.2.5":"2017-03-24T04:53:25.305Z","2.2.4":"2017-03-13T15:08:05.946Z","2.2.3":"2017-03-13T08:07:55.424Z","2.2.2":"2017-03-09T02:32:35.226Z","2.2.1":"2017-02-26T13:10:45.467Z","2.2.0":"2017-02-26T04:28:11.670Z","2.2.0-beta.2":"2017-02-25T00:01:06.539Z","2.2.0-beta.1":"2017-02-24T04:22:17.417Z","2.1.10":"2017-01-17T17:17:07.192Z","2.1.9":"2017-01-16T23:48:02.573Z","2.1.8":"2016-12-28T05:54:31.533Z","2.1.7":"2016-12-24T16:36:10.421Z","2.1.6":"2016-12-13T17:22:24.686Z","2.1.5":"2016-12-13T03:09:24.368Z","2.1.4":"2016-12-02T03:01:15.152Z","2.1.3":"2016-11-24T00:21:12.848Z","2.1.2":"2016-11-23T23:41:21.564Z","2.1.1":"2016-11-23T21:00:38.410Z","2.1.0":"2016-11-22T16:15:02.605Z","2.0.8":"2016-11-20T03:14:55.846Z","2.0.7":"2016-11-16T21:54:20.675Z","2.0.6":"2016-11-15T23:04:59.183Z","2.0.5":"2016-11-05T03:47:23.261Z","2.0.4":"2016-11-04T20:46:59.814Z","2.0.3":"2016-10-13T09:27:23.552Z","2.0.2":"2016-10-12T04:54:02.591Z","2.0.1":"2016-09-30T21:11:56.222Z","2.0.0":"2016-09-30T18:31:55.901Z","2.0.0-rc.8":"2016-09-27T21:08:24.459Z","2.0.0-rc.7":"2016-09-23T22:24:45.382Z","2.0.0-rc.6":"2016-09-13T13:20:57.312Z","2.0.0-rc.5":"2016-09-08T11:29:43.352Z","2.0.0-rc.4":"2016-08-29T19:48:56.796Z","2.0.0-rc.3":"2016-08-20T18:04:49.454Z","2.0.0-rc.2":"2016-08-16T03:39:02.125Z","2.0.0-rc.1":"2016-08-11T05:43:04.364Z","2.0.0-beta.8":"2016-08-10T04:55:24.490Z","2.0.0-beta.7":"2016-08-05T22:10:21.736Z","2.0.0-beta.6":"2016-08-01T19:27:28.778Z","2.0.0-beta.5":"2016-07-27T04:25:34.705Z","2.0.0-beta.4":"2016-07-26T02:04:18.753Z","2.0.0-beta.3":"2016-07-24T02:45:10.680Z","2.0.0-beta.2":"2016-07-17T05:51:17.599Z","2.0.0-beta.1":"2016-07-07T21:51:36.515Z","2.0.0-alpha.8":"2016-06-28T09:02:05.303Z","2.0.0-alpha.7":"2016-06-28T02:24:08.315Z","2.0.0-alpha.6":"2016-06-22T19:33:15.168Z","2.0.0-alpha.5":"2016-06-17T18:22:33.997Z","2.0.0-alpha.4":"2016-06-16T17:00:42.859Z","2.0.0-alpha.3":"2016-06-15T18:22:31.815Z","2.0.0-alpha.2":"2016-06-13T23:36:41.487Z","2.0.0-alpha.1":"2016-06-10T23:23:27.189Z","0.1.0":"2016-06-10T15:47:48.751Z","2.7.0-alpha.1":"2022-05-31T09:57:43.883Z","2.7.0-alpha.2":"2022-06-01T02:37:24.323Z","2.7.0-alpha.3":"2022-06-01T03:13:36.547Z","2.7.0-alpha.4":"2022-06-01T14:19:38.595Z","2.7.0-alpha.5":"2022-06-06T07:33:26.540Z","2.7.0-alpha.6":"2022-06-09T06:47:07.517Z","2.7.0-alpha.7":"2022-06-14T15:29:08.098Z","2.7.0-alpha.8":"2022-06-14T15:46:52.915Z","2.7.0-alpha.9":"2022-06-16T02:36:26.245Z","2.7.0-alpha.10":"2022-06-16T09:18:35.876Z","2.7.0-alpha.11":"2022-06-16T09:53:48.318Z","2.7.0-alpha.12":"2022-06-16T13:53:06.281Z","2.7.0-beta.1":"2022-06-17T01:57:58.465Z","2.7.0-beta.2":"2022-06-17T02:57:18.070Z","2.7.0-beta.3":"2022-06-20T08:34:30.623Z","2.7.0-beta.4":"2022-06-21T02:51:26.233Z","2.7.0-beta.5":"2022-06-22T02:22:55.952Z","2.7.0-beta.6":"2022-06-26T08:42:02.871Z","2.7.0-beta.7":"2022-06-27T07:00:38.052Z","2.7.0-beta.8":"2022-06-28T02:00:15.679Z","2.7.0":"2022-07-01T04:22:36.530Z","2.7.1":"2022-07-04T10:38:41.925Z","2.7.2":"2022-07-05T02:54:53.627Z","2.7.3":"2022-07-06T05:16:28.938Z","2.7.4":"2022-07-08T07:46:28.152Z","2.7.5":"2022-07-13T03:08:45.163Z","2.7.6":"2022-07-15T09:12:35.579Z","2.7.7":"2022-07-16T14:45:38.637Z","2.7.8":"2022-07-22T03:24:45.827Z","2.7.9":"2022-08-19T04:27:22.610Z","2.7.10":"2022-08-23T01:29:49.543Z","2.7.11":"2022-10-11T11:13:14.338Z","2.7.12":"2022-10-12T13:41:43.564Z","2.7.13":"2022-10-14T03:42:03.316Z","2.7.14":"2022-11-09T12:39:59.679Z","2.7.15":"2023-10-23T07:55:47.286Z","2.7.16-beta.1":"2023-12-08T01:42:10.700Z","2.7.16-beta.2":"2023-12-14T01:28:16.137Z","2.7.16":"2023-12-24T15:02:16.927Z"},"versions":{"2.6.14":{"name":"vue-template-compiler","version":"2.6.14","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","types":"types/index.d.ts","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"devDependencies":{"vue":"file:../.."},"_id":"vue-template-compiler@2.6.14","_nodeVersion":"14.16.1","_npmVersion":"6.14.12","dist":{"shasum":"a2f0e7d985670d42c9c9ee0d044fed7690f4f763","size":120669,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.6.14.tgz","integrity":"sha512-ODQS1SyMbjKoO1JBJZojSw6FE4qnh9rIpUZn2EUT86FKizx9uH5z6uXiIrm4/Nb/gwxTi/o17ZDEGWAXHvtC7g=="},"_npmUser":{"name":"posva","email":"posva13@gmail.com"},"directories":{},"maintainers":[{"name":"posva","email":"posva13@gmail.com"},{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler_2.6.14_1623059720048_0.3166971041825588"},"_hasShrinkwrap":false,"publish_time":1623059720240,"_cnpm_publish_time":1623059720240,"_cnpmcore_publish_time":"2021-12-14T04:13:27.770Z"},"2.6.13":{"name":"vue-template-compiler","version":"2.6.13","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","types":"types/index.d.ts","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"devDependencies":{"vue":"file:../.."},"_id":"vue-template-compiler@2.6.13","_nodeVersion":"14.16.1","_npmVersion":"6.14.12","dist":{"shasum":"a735b8974e013ce829e7f77e08e4ee5aecbd3005","size":120669,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.6.13.tgz","integrity":"sha512-latKAqpUjCkovB8XppW5gnZbSdYQzkf8pavsMBZYZrQcG6lAnj0EH4Ty7jMwAwFw5Cf4mybKBHlp1UTjnLPOWw=="},"_npmUser":{"name":"posva","email":"posva13@gmail.com"},"directories":{},"maintainers":[{"name":"posva","email":"posva13@gmail.com"},{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler_2.6.13_1622557717422_0.9124089404125506"},"_hasShrinkwrap":false,"publish_time":1622557717672,"_cnpm_publish_time":1622557717672,"_cnpmcore_publish_time":"2021-12-14T04:13:28.071Z"},"2.6.12":{"name":"vue-template-compiler","version":"2.6.12","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","types":"types/index.d.ts","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"devDependencies":{"vue":"file:../.."},"_id":"vue-template-compiler@2.6.12","_nodeVersion":"12.13.1","_npmVersion":"6.12.1","dist":{"shasum":"947ed7196744c8a5285ebe1233fe960437fcc57e","size":120567,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.6.12.tgz","integrity":"sha512-OzzZ52zS41YUbkCBfdXShQTe69j1gQDZ9HIX8miuC9C3rBCk9wIRjLiZZLrmX9V+Ftq/YEyv1JaVr5Y/hNtByg=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler_2.6.12_1597929035391_0.750787698730794"},"_hasShrinkwrap":false,"publish_time":1597929035585,"_cnpm_publish_time":1597929035585,"_cnpmcore_publish_time":"2021-12-14T04:13:28.358Z"},"2.6.11":{"name":"vue-template-compiler","version":"2.6.11","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","types":"types/index.d.ts","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"devDependencies":{"vue":"file:../.."},"_id":"vue-template-compiler@2.6.11","_nodeVersion":"12.13.1","_npmVersion":"6.12.1","dist":{"shasum":"c04704ef8f498b153130018993e56309d4698080","size":120578,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.6.11.tgz","integrity":"sha512-KIq15bvQDrcCjpGjrAhx4mUlyyHfdmTaoNfeoATHLAiWB+MU3cx4lOzMwrnUh9cCxy0Lt1T11hAFY6TQgroUAA=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler_2.6.11_1576267108975_0.15093629724972546"},"_hasShrinkwrap":false,"publish_time":1576267109159,"_cnpm_publish_time":1576267109159,"_cnpmcore_publish_time":"2021-12-14T04:13:28.614Z"},"2.6.10":{"name":"vue-template-compiler","version":"2.6.10","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","types":"types/index.d.ts","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"devDependencies":{"vue":"file:../.."},"_id":"vue-template-compiler@2.6.10","_npmVersion":"6.4.1","_nodeVersion":"10.14.1","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"323b4f3495f04faa3503337a82f5d6507799c9cc","size":120407,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.6.10.tgz","integrity":"sha512-jVZkw4/I/HT5ZMvRnhv78okGusqe0+qH2A0Em0Cp8aq78+NK9TII263CDVz2QXZsIT+yyV/gZc/j/vlwa+Epyg=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler_2.6.10_1553063203998_0.1336925348689575"},"_hasShrinkwrap":false,"publish_time":1553063204153,"_cnpm_publish_time":1553063204153,"_cnpmcore_publish_time":"2021-12-14T04:13:29.170Z"},"2.6.9":{"name":"vue-template-compiler","version":"2.6.9","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","types":"types/index.d.ts","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"devDependencies":{"vue":"file:../.."},"_id":"vue-template-compiler@2.6.9","_npmVersion":"6.4.1","_nodeVersion":"10.14.1","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"26600415ff81a7a241aebc2d4e0abaa0f1a07915","size":120356,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.6.9.tgz","integrity":"sha512-QgO0LSCdeH6zUMSgtqel+yDWsZWQPXiWBdFg9qzOhWfQL8vZ+ywinAzE04rm1XrWc+3SU0YAdWISlEgs/i8WWA=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler_2.6.9_1552554112006_0.653504651635163"},"_hasShrinkwrap":false,"publish_time":1552554112188,"_cnpm_publish_time":1552554112188,"_cnpmcore_publish_time":"2021-12-14T04:13:29.495Z"},"2.6.8":{"name":"vue-template-compiler","version":"2.6.8","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","types":"types/index.d.ts","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"devDependencies":{"vue":"file:../.."},"_id":"vue-template-compiler@2.6.8","_npmVersion":"6.4.1","_nodeVersion":"10.14.1","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"750802604595134775b9c53141b9850b35255e1c","size":120341,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.6.8.tgz","integrity":"sha512-SwWKANE5ee+oJg+dEJmsdxsxWYICPsNwk68+1AFjOS8l0O/Yz2845afuJtFqf3UjS/vXG7ECsPeHHEAD65Cjng=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler_2.6.8_1551452605339_0.8038022050292914"},"_hasShrinkwrap":false,"publish_time":1551452605452,"_cnpm_publish_time":1551452605452,"_cnpmcore_publish_time":"2021-12-14T04:13:29.785Z"},"2.6.7":{"name":"vue-template-compiler","version":"2.6.7","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","types":"types/index.d.ts","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"devDependencies":{"vue":"file:../.."},"_id":"vue-template-compiler@2.6.7","_npmVersion":"6.4.1","_nodeVersion":"10.14.1","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"7f6c14eacf3c912d28d33b029cde706d9756e00c","size":120328,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.6.7.tgz","integrity":"sha512-ZjxJLr6Lw2gj6aQGKwBWTxVNNd28/qggIdwvr5ushrUHUvqgbHD0xusOVP2yRxT4pX3wRIJ2LfxjgFT41dEtoQ=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler_2.6.7_1550786767393_0.7257869678095399"},"_hasShrinkwrap":false,"publish_time":1550786767521,"_cnpm_publish_time":1550786767521,"_cnpmcore_publish_time":"2021-12-14T04:13:30.069Z"},"2.6.6":{"name":"vue-template-compiler","version":"2.6.6","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","types":"types/index.d.ts","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"devDependencies":{"vue":"file:../.."},"_id":"vue-template-compiler@2.6.6","_npmVersion":"6.4.1","_nodeVersion":"10.14.1","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"a807acbf3d51971d3721d75ecb1b927b517c1a02","size":119608,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.6.6.tgz","integrity":"sha512-OakxDGyrmMQViCjkakQFbDZlG0NibiOzpLauOfyCUVRQc9yPmTqpiz9nF0VeA+dFkXegetw0E5x65BFhhLXO0A=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler_2.6.6_1549945196261_0.802915826916226"},"_hasShrinkwrap":false,"publish_time":1549945196436,"_cnpm_publish_time":1549945196436,"_cnpmcore_publish_time":"2021-12-14T04:13:30.358Z"},"2.6.5":{"name":"vue-template-compiler","version":"2.6.5","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","types":"types/index.d.ts","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"devDependencies":{"vue":"file:../.."},"_id":"vue-template-compiler@2.6.5","_npmVersion":"6.4.1","_nodeVersion":"10.14.1","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"2e3b4f20cdfa2a54a48895d97a5b711d0e7ad81c","size":119283,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.6.5.tgz","integrity":"sha512-7X/KZCqGulQ8KbysFd46cUnVzwvba7JxoPKA2TvVrO61/x0pIBqR17raV+ycnfUI4NYshhiNqH/3Db5NXErSdg=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler_2.6.5_1549862062255_0.4764883326357372"},"_hasShrinkwrap":false,"publish_time":1549862062429,"_cnpm_publish_time":1549862062429,"_cnpmcore_publish_time":"2021-12-14T04:13:30.655Z"},"2.6.4":{"name":"vue-template-compiler","version":"2.6.4","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","types":"types/index.d.ts","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"devDependencies":{"vue":"file:../.."},"_id":"vue-template-compiler@2.6.4","_npmVersion":"6.4.1","_nodeVersion":"10.14.1","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"0feacfe35e3386033bf4fe31ab4ff1dc1a0c5dec","size":119283,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.6.4.tgz","integrity":"sha512-RJePeQrGrSKDt2sfYRZ1DwnBuVMZDCMX6q5NTLZH6fs4RjXIxRE93wGOO2wKd3ebJEl9eKnPO6GpobNJGA7e3w=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler_2.6.4_1549662276796_0.9717318122574714"},"_hasShrinkwrap":false,"publish_time":1549662276923,"_cnpm_publish_time":1549662276923,"_cnpmcore_publish_time":"2021-12-14T04:13:31.072Z"},"2.6.3":{"name":"vue-template-compiler","version":"2.6.3","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","types":"types/index.d.ts","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"devDependencies":{"vue":"file:../.."},"_id":"vue-template-compiler@2.6.3","_npmVersion":"6.4.1","_nodeVersion":"10.14.1","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"fe76b7755b038889f5e887895745f0d2bce3f778","size":119140,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.6.3.tgz","integrity":"sha512-SQ3lJk7fwquz8fGac7MwvP9cEBZntokTWITaDrLC0zmyBKjcOfJtWZkMsv+2uSUBDD8kwz8Bsad9xmBWaNULhg=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler_2.6.3_1549489912456_0.008695431170993473"},"_hasShrinkwrap":false,"publish_time":1549489912674,"_cnpm_publish_time":1549489912674,"_cnpmcore_publish_time":"2021-12-14T04:13:31.441Z"},"2.6.2":{"name":"vue-template-compiler","version":"2.6.2","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","types":"types/index.d.ts","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"devDependencies":{"vue":"file:../.."},"_id":"vue-template-compiler@2.6.2","_npmVersion":"6.4.1","_nodeVersion":"10.14.1","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"6230abf7ca92d565b7471c0cc3f54d5b12aa48e7","size":118405,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.6.2.tgz","integrity":"sha512-2dBKNCtBPdx1TFef7T4zwF8IjOx2xbMNryCtFzneP+XIonJwOtnkq4s1mhKv8W79gXcGINQWtuaxituGAcuSnA=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler_2.6.2_1549338751706_0.746933031498404"},"_hasShrinkwrap":false,"publish_time":1549338751842,"_cnpm_publish_time":1549338751842,"_cnpmcore_publish_time":"2021-12-14T04:13:31.782Z"},"2.6.1":{"name":"vue-template-compiler","version":"2.6.1","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","types":"types/index.d.ts","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"devDependencies":{"vue":"file:../.."},"_id":"vue-template-compiler@2.6.1","_npmVersion":"6.4.1","_nodeVersion":"10.14.1","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"b6a1b622acc602a556dcca2c1bf5d05afc7ac077","size":118312,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.6.1.tgz","integrity":"sha512-lHEnUkFcTPd99CprdTdA43hj29V1UlJiefCXWP3jJMjrz6wD1FQWEOCiCjwMXDEBstCWYscVjERtwzL0mJ1lJA=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler_2.6.1_1549320682553_0.2500543017103143"},"_hasShrinkwrap":false,"publish_time":1549320682664,"_cnpm_publish_time":1549320682664,"_cnpmcore_publish_time":"2021-12-14T04:13:32.078Z"},"2.6.0":{"name":"vue-template-compiler","version":"2.6.0","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","types":"types/index.d.ts","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"devDependencies":{"vue":"file:../.."},"_id":"vue-template-compiler@2.6.0","_npmVersion":"6.4.1","_nodeVersion":"10.14.1","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"02bb9a7c0cc88721c8dc0580bdf15f0588149d4a","size":118161,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.6.0.tgz","integrity":"sha512-rHay+P7aUNm75R7SaXvWFWWI6IB3sq9BX+n7awQSYXFXHUpaCOtlrkrfJomIxBvG2f96eIFQOexslvKxPy5l4g=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler_2.6.0_1549295811675_0.08413785468097679"},"_hasShrinkwrap":false,"publish_time":1549295811772,"_cnpm_publish_time":1549295811772,"_cnpmcore_publish_time":"2021-12-14T04:13:32.404Z"},"2.6.0-beta.3":{"name":"vue-template-compiler","version":"2.6.0-beta.3","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","types":"types/index.d.ts","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"devDependencies":{"vue":"file:../.."},"readmeFilename":"README.md","_id":"vue-template-compiler@2.6.0-beta.3","_npmVersion":"6.4.1","_nodeVersion":"10.14.1","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"4091985b7c1e1817b0e08ebbafc00c2ccefbb366","size":117868,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.6.0-beta.3.tgz","integrity":"sha512-UNA5zZxrG6gKtuiGFbMuisKhcSSJruZqA7Q2zyWyhcLZEMzTC8BsWzKGXTm2IvnnTajHoTXPlKFWnL84E85exg=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler_2.6.0-beta.3_1548860352068_0.6734113184373554"},"_hasShrinkwrap":false,"publish_time":1548860352272,"_cnpm_publish_time":1548860352272,"_cnpmcore_publish_time":"2021-12-14T04:13:32.694Z"},"2.6.0-beta.2":{"name":"vue-template-compiler","version":"2.6.0-beta.2","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","types":"types/index.d.ts","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"devDependencies":{"vue":"file:../.."},"readmeFilename":"README.md","_id":"vue-template-compiler@2.6.0-beta.2","_npmVersion":"6.4.1","_nodeVersion":"10.14.1","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"03381bef8bf9e863f033e726f95b0c23c639ad45","size":117484,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.6.0-beta.2.tgz","integrity":"sha512-lzUEWAl5pVsnGmtBi2R31kZCfnazqDR85hLPowWB6qnsuI/NvzfpXpBDyptsKTCtdaL6YVXA0TNArw9u/q2Nbg=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler_2.6.0-beta.2_1548477507483_0.2167356411621426"},"_hasShrinkwrap":false,"publish_time":1548477507657,"_cnpm_publish_time":1548477507657,"_cnpmcore_publish_time":"2021-12-14T04:13:32.999Z"},"2.6.0-beta.1":{"name":"vue-template-compiler","version":"2.6.0-beta.1","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","types":"types/index.d.ts","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"devDependencies":{"vue":"file:../.."},"readmeFilename":"README.md","_id":"vue-template-compiler@2.6.0-beta.1","_npmVersion":"6.4.1","_nodeVersion":"10.14.1","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"3ba82e95cb8fbfe15dd5832e4bd9063a9f331853","size":115453,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.6.0-beta.1.tgz","integrity":"sha512-d8GmkrB9Sd0aIJNGSMFrChwhDUuw9kZ7SK3ltp8aysOfJMrthUPYBXtg0fWeBOF4ObnE327z6afTMfqI8I6BLQ=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler_2.6.0-beta.1_1547655508012_0.9208359257607679"},"_hasShrinkwrap":false,"publish_time":1547655508250,"_cnpm_publish_time":1547655508250,"_cnpmcore_publish_time":"2021-12-14T04:13:33.320Z"},"2.5.22":{"name":"vue-template-compiler","version":"2.5.22","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"_id":"vue-template-compiler@2.5.22","_npmVersion":"6.4.1","_nodeVersion":"10.14.1","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"c3d3c02c65f1908205c4fbd3b0ef579e51239955","size":107359,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.5.22.tgz","integrity":"sha512-1VTw/NPTUeHNiwhkq6NkFzO7gYLjFCueBN0FX8NEiQIemd5EUMQ5hxrF7O0zCPo5tae+U9S/scETPea+hIz8Eg=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler_2.5.22_1547248696611_0.9211281946374419"},"_hasShrinkwrap":false,"publish_time":1547248696704,"_cnpm_publish_time":1547248696704,"_cnpmcore_publish_time":"2021-12-14T04:13:33.565Z"},"2.5.21":{"name":"vue-template-compiler","version":"2.5.21","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"_id":"vue-template-compiler@2.5.21","_npmVersion":"6.4.1","_nodeVersion":"10.14.1","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"a57ceb903177e8f643560a8d639a0f8db647054a","size":107185,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.5.21.tgz","integrity":"sha512-Vmk5Cv7UcmI99B9nXJEkaK262IQNnHp5rJYo+EwYpe2epTAXqcVyExhV6pk8jTkxQK2vRc8v8KmZBAwdmUZvvw=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler_2.5.21_1544568727808_0.33589135671502923"},"_hasShrinkwrap":false,"publish_time":1544568727931,"_cnpm_publish_time":1544568727931,"_cnpmcore_publish_time":"2021-12-14T04:13:33.798Z"},"2.5.20":{"name":"vue-template-compiler","version":"2.5.20","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"_id":"vue-template-compiler@2.5.20","_npmVersion":"6.4.1","_nodeVersion":"10.14.1","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"b9c01741b7e0261d1c5aac5937c93bde98f880f0","size":107173,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.5.20.tgz","integrity":"sha512-aGJRLd1bJZi6oerGwCQVaDqvQ1T3dhCbNg9C2gNwzoKnyA3BmYfAWy8OQ3OhOebTri8o4YcLeXfwOOxtOKFfmA=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler_2.5.20_1544461012245_0.27095133286288564"},"_hasShrinkwrap":false,"publish_time":1544461012472,"_cnpm_publish_time":1544461012472,"_cnpmcore_publish_time":"2021-12-14T04:13:34.041Z"},"2.5.19":{"name":"vue-template-compiler","version":"2.5.19","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"_id":"vue-template-compiler@2.5.17","_npmVersion":"6.2.0","_nodeVersion":"8.11.3","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"52a4a078c327deb937482a509ae85c06f346c3cb","size":101452,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.5.17.tgz","integrity":"sha512-63uI4syCwtGR5IJvZM0LN5tVsahrelomHtCxvRkZPJ/Tf3ADm1U1wG6KWycK3qCfqR+ygM5vewUvmJ0REAYksg=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler_2.5.17_1533151746557_0.3575059884052376"},"_hasShrinkwrap":false,"publish_time":1533151746678,"_cnpm_publish_time":1533151746678,"_cnpmcore_publish_time":"2021-12-14T04:13:34.842Z","deprecated":"[WARNING] Use 2.5.17 instead of 2.5.19, reason: https://github.com/vuejs/vue/pull/9173"},"2.5.18":{"name":"vue-template-compiler","version":"2.5.18","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"_id":"vue-template-compiler@2.5.17","_npmVersion":"6.2.0","_nodeVersion":"8.11.3","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"52a4a078c327deb937482a509ae85c06f346c3cb","size":101452,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.5.17.tgz","integrity":"sha512-63uI4syCwtGR5IJvZM0LN5tVsahrelomHtCxvRkZPJ/Tf3ADm1U1wG6KWycK3qCfqR+ygM5vewUvmJ0REAYksg=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler_2.5.17_1533151746557_0.3575059884052376"},"_hasShrinkwrap":false,"publish_time":1533151746678,"_cnpm_publish_time":1533151746678,"_cnpmcore_publish_time":"2021-12-14T04:13:34.842Z","deprecated":"[WARNING] Use 2.5.17 instead of 2.5.18, reason: https://github.com/vuejs/vue/pull/9173"},"2.5.18-beta.0":{"name":"vue-template-compiler","version":"2.5.18-beta.0","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"readmeFilename":"README.md","_id":"vue-template-compiler@2.5.18-beta.0","_npmVersion":"6.4.1","_nodeVersion":"10.14.1","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"29da5c41e51e914668e5de30911e8f481b2675ac","size":107267,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.5.18-beta.0.tgz","integrity":"sha512-8D5iZ02GlXi38veoQutYObGvYd5az/Xor6qII0U/2IdPYwGZi5hTBlR6m+14co5P9rIUusTX4cXuBS8vni5zlg=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler_2.5.18-beta.0_1543785029668_0.2507815591391793"},"_hasShrinkwrap":false,"publish_time":1543785029761,"_cnpm_publish_time":1543785029761,"_cnpmcore_publish_time":"2021-12-14T04:13:34.693Z"},"2.5.17":{"name":"vue-template-compiler","version":"2.5.17","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"_id":"vue-template-compiler@2.5.17","_npmVersion":"6.2.0","_nodeVersion":"8.11.3","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"52a4a078c327deb937482a509ae85c06f346c3cb","size":101452,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.5.17.tgz","integrity":"sha512-63uI4syCwtGR5IJvZM0LN5tVsahrelomHtCxvRkZPJ/Tf3ADm1U1wG6KWycK3qCfqR+ygM5vewUvmJ0REAYksg=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler_2.5.17_1533151746557_0.3575059884052376"},"_hasShrinkwrap":false,"publish_time":1533151746678,"_cnpm_publish_time":1533151746678,"_cnpmcore_publish_time":"2021-12-14T04:13:34.842Z"},"2.5.17-beta.0":{"name":"vue-template-compiler","version":"2.5.17-beta.0","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"readmeFilename":"README.md","_id":"vue-template-compiler@2.5.17-beta.0","_npmVersion":"5.6.0","_nodeVersion":"8.9.1","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"6653d4029bd6fc427de616ce626e7f1db63e615c","size":101566,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.5.17-beta.0.tgz","integrity":"sha512-EPfe4BPJAYjjvmYpzYh2Fjugi5Zr4UVessbNOZlCmC9QLpHgRPMirXdP1YVHEV5Drl48sv9v4uNmeVsNaFyyVw=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler_2.5.17-beta.0_1521847735556_0.9934028880315522"},"_hasShrinkwrap":false,"publish_time":1521847735636,"_cnpm_publish_time":1521847735636,"_cnpmcore_publish_time":"2021-12-14T04:13:35.032Z"},"2.5.16":{"name":"vue-template-compiler","version":"2.5.16","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"_id":"vue-template-compiler@2.5.16","_npmVersion":"5.6.0","_nodeVersion":"8.9.1","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"93b48570e56c720cdf3f051cc15287c26fbd04cb","size":101474,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.5.16.tgz","integrity":"sha512-ZbuhCcF/hTYmldoUOVcu2fcbeSAZnfzwDskGduOrnjBiIWHgELAd+R8nAtX80aZkceWDKGQ6N9/0/EUpt+l22A=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler_2.5.16_1520979251894_0.08613384352062536"},"_hasShrinkwrap":false,"publish_time":1520979252071,"_cnpm_publish_time":1520979252071,"_cnpmcore_publish_time":"2021-12-14T04:13:35.237Z"},"2.5.15":{"name":"vue-template-compiler","version":"2.5.15","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"_id":"vue-template-compiler@2.5.15","_npmVersion":"5.6.0","_nodeVersion":"8.9.1","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"cc004097e37167be8b85ea22ab2840d8e8cca1c0","size":101180,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.5.15.tgz","integrity":"sha512-v3GRVovW8fWO01SAJ+1MbdzbCN+hVBusoqUOBE5FR9dVMGo3p/WDO2gRS/+gEgAALtL7i5pxi+V2l6EauM3XDA=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler_2.5.15_1520724993387_0.5633020616747069"},"_hasShrinkwrap":false,"publish_time":1520724993494,"_cnpm_publish_time":1520724993494,"_cnpmcore_publish_time":"2021-12-14T04:13:35.512Z"},"2.5.14":{"name":"vue-template-compiler","version":"2.5.14","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"_id":"vue-template-compiler@2.5.14","_npmVersion":"5.6.0","_nodeVersion":"8.9.1","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"ba058359d4bd5ba0807fbc8adfc98065d7dbfebd","size":101181,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.5.14.tgz","integrity":"sha512-jN1JGEtm3TAvnARlbReKsHdu++jgj0H9lK5nv/p5nRXR3acej9PFmgrAmZ2LrdNRBZnWyHoSdkYKnEBxeex+rQ=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler_2.5.14_1520631618809_0.7652027026265398"},"_hasShrinkwrap":false,"publish_time":1520631618942,"_cnpm_publish_time":1520631618942,"_cnpmcore_publish_time":"2021-12-14T04:13:35.705Z"},"2.5.13":{"name":"vue-template-compiler","version":"2.5.13","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"_id":"vue-template-compiler@2.5.13","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"12a2aa0ecd6158ac5e5f14d294b0993f399c3d38","size":99908,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.5.13.tgz","integrity":"sha512-15HWSgIxrGUcV0v7QRen2Y3fQsbgxXwMvjT/5XKMO0ANmaCcNh7y2OeIDTAuSGeosjb9+E1Pn2PHZ61VQWEgBQ=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler-2.5.13.tgz_1513710408240_0.44011022592894733"},"directories":{},"publish_time":1513710409424,"_hasShrinkwrap":false,"_cnpm_publish_time":1513710409424,"_cnpmcore_publish_time":"2021-12-14T04:13:35.937Z"},"2.5.12":{"name":"vue-template-compiler","version":"2.5.12","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"_id":"vue-template-compiler@2.5.12","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"c3fbf60eaecdef06f20f51ed24bc178e3dda57b1","size":100210,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.5.12.tgz","integrity":"sha512-abXVzvxvUMv24e28QlkhghThWCnaJzfs1fba1VnGJ5F4QD+dbt0zXoU867XmUE/fZFFdkvkqLGE1W6umgX18HQ=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler-2.5.12.tgz_1513695252588_0.926331032300368"},"directories":{},"publish_time":1513695253620,"_hasShrinkwrap":false,"_cnpm_publish_time":1513695253620,"_cnpmcore_publish_time":"2021-12-14T04:13:36.125Z"},"2.5.11":{"name":"vue-template-compiler","version":"2.5.11","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"_id":"vue-template-compiler@2.5.11","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"7dda6905e464ff173c8e70e1dfd1769a7888b7e8","size":99639,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.5.11.tgz","integrity":"sha512-tlEyfeK1TkoO/+w7QIYP1fjYEuJSf60XchxYH3gUSYKeW4blPqM2BtA29y50fU6Tjm9eLUgUy8qGMA2euOr4Qw=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler-2.5.11.tgz_1513270554469_0.09964596852660179"},"directories":{},"publish_time":1513270555885,"_hasShrinkwrap":false,"_cnpm_publish_time":1513270555885,"_cnpmcore_publish_time":"2021-12-14T04:13:36.315Z"},"2.5.10":{"name":"vue-template-compiler","version":"2.5.10","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"_id":"vue-template-compiler@2.5.10","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"8d2754677430bf520650a7e2aee9070635158fc5","size":99891,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.5.10.tgz","integrity":"sha512-vVpOik9YOCmtQCGhOmse+bepA6bbNLBkWYG8GJfWpZdOFfyq11zL7WiU6PnUl1P09XX0ZTyj44bT5IZn3La0ww=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler-2.5.10.tgz_1513120595130_0.143366408534348"},"directories":{},"publish_time":1513120596305,"_hasShrinkwrap":false,"_cnpm_publish_time":1513120596305,"_cnpmcore_publish_time":"2021-12-14T04:13:36.517Z"},"2.5.9":{"name":"vue-template-compiler","version":"2.5.9","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"_id":"vue-template-compiler@2.5.9","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"7fabc73c8d3d12d32340cd86c5fc33e00e86d686","size":99925,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.5.9.tgz","integrity":"sha512-Icev7QPuQ3flpOvxMe09irgXPklBi/VpiveUDs5nRVH5GA8R9asLBlahsA7AuRZQbaty0cGKm6kh/icDLcr93w=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler-2.5.9.tgz_1511804605231_0.5643487758934498"},"directories":{},"publish_time":1511804606543,"_hasShrinkwrap":false,"_cnpm_publish_time":1511804606543,"_cnpmcore_publish_time":"2021-12-14T04:13:36.721Z"},"2.5.8":{"name":"vue-template-compiler","version":"2.5.8","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"_id":"vue-template-compiler@2.5.8","_npmVersion":"5.4.2","_nodeVersion":"8.4.0","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"826ae77e1d5faa7fa5fca554f33872dde38de674","size":99889,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.5.8.tgz","integrity":"sha512-mghHWel7P8MZNWRCnuS01HSG/rsTt2iRztSpKImbEdvHJo1KxIy7QxbDjEPcStK+A0gTHHHWrjHuvkvREY2iwQ=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler-2.5.8.tgz_1511275332068_0.5769521517213434"},"directories":{},"publish_time":1511275333212,"_hasShrinkwrap":false,"_cnpm_publish_time":1511275333212,"_cnpmcore_publish_time":"2021-12-14T04:13:36.991Z"},"2.5.7":{"name":"vue-template-compiler","version":"2.5.7","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"_id":"vue-template-compiler@2.5.7","_npmVersion":"5.4.2","_nodeVersion":"8.4.0","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"21467d78b20a932ad7b89d98b54171a039111a7e","size":99879,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.5.7.tgz","integrity":"sha512-XS17M9Sebm0vwD54rX2ziKSqFrUlWywKPU7rmekCU0m6trBjLfztbSOnms8mbW1AyaqIAE6aLmjGzAUf1QHJag=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler-2.5.7.tgz_1511207359067_0.3623162468429655"},"directories":{},"publish_time":1511207360317,"_hasShrinkwrap":false,"_cnpm_publish_time":1511207360317,"_cnpmcore_publish_time":"2021-12-14T04:13:37.260Z"},"2.5.6":{"name":"vue-template-compiler","version":"2.5.6","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"_id":"vue-template-compiler@2.5.6","_npmVersion":"5.4.2","_nodeVersion":"8.4.0","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"93f062a230a4437ef16064f1eef9cf3797d34bb4","size":99682,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.5.6.tgz","integrity":"sha512-YjjYpDHzZfKDRvufLPTgL33tRoTuRllnck99tzkBAu1cjdDqBsdUH5Zd9cX8Q16m4liyIRXa+L6UHp/MNxPMbw=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler-2.5.6.tgz_1511034232869_0.7405535557772964"},"directories":{},"publish_time":1511034233979,"_hasShrinkwrap":false,"_cnpm_publish_time":1511034233979,"_cnpmcore_publish_time":"2021-12-14T04:13:37.534Z"},"2.5.5":{"name":"vue-template-compiler","version":"2.5.5","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"_id":"vue-template-compiler@2.5.5","_npmVersion":"5.4.2","_nodeVersion":"8.4.0","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"0cfb47c784f75500d94aa57d2220bb324b59fae0","size":99716,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.5.5.tgz","integrity":"sha512-KsVEmJhz7KbagsY5Nm4ai5n0j/NX+xouP1Y/t5obtWVdD5OfG7gZKUU9SOaI6N+k5q4obQoLKUxYsH23QMjmpA=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler-2.5.5.tgz_1510936608143_0.4366464097984135"},"directories":{},"publish_time":1510936609330,"_hasShrinkwrap":false,"_cnpm_publish_time":1510936609330,"_cnpmcore_publish_time":"2021-12-14T04:13:37.757Z"},"2.5.4":{"name":"vue-template-compiler","version":"2.5.4","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"_id":"vue-template-compiler@2.5.4","_npmVersion":"5.4.2","_nodeVersion":"8.4.0","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"e104a80b69afbf37b56e0f2f91ff2037976e6d06","size":99438,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.5.4.tgz","integrity":"sha512-EOKW96eTxlcVAooCAYMLjuFZEcKXj7abCWjQaRJtcSApJEtBmo7ShmyBnJhYCpSSKzB9Fd6cXhvKmbLz2FZxsA=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler-2.5.4.tgz_1510861996425_0.5580066703259945"},"directories":{},"publish_time":1510861997519,"_hasShrinkwrap":false,"_cnpm_publish_time":1510861997519,"_cnpmcore_publish_time":"2021-12-14T04:13:37.967Z"},"2.5.3":{"name":"vue-template-compiler","version":"2.5.3","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"_id":"vue-template-compiler@2.5.3","_npmVersion":"5.4.2","_nodeVersion":"8.4.0","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"ab631b0694e211a6aaf0d800102b37836aae36a4","size":99241,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.5.3.tgz","integrity":"sha512-C7yWPyT8ZPyXv9AL1eZEZSp72qDHGSgfD80Rf2A9s2vKmMbUuRInfsDsOfYtoiN2hK4hMGMQ71xaZs2e8RnucQ=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler-2.5.3.tgz_1509743484540_0.8031881826464087"},"directories":{},"publish_time":1509743485816,"_hasShrinkwrap":false,"_cnpm_publish_time":1509743485816,"_cnpmcore_publish_time":"2021-12-14T04:13:38.200Z"},"2.5.2":{"name":"vue-template-compiler","version":"2.5.2","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"_id":"vue-template-compiler@2.5.2","_npmVersion":"5.4.2","_nodeVersion":"8.4.0","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"6f198ebc677b8f804315cd33b91e849315ae7177","size":98408,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.5.2.tgz","integrity":"sha512-FtbqBWvEANPZaeRo09VKEF7tET4kPMtJYqwsy/Nm1fdr1zIcwcTI7CXqeraXMviczho5IjtxZ6Fab1Enm4rHmA=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler-2.5.2.tgz_1507926053338_0.7780654591042548"},"directories":{},"publish_time":1507926054468,"_hasShrinkwrap":false,"_cnpm_publish_time":1507926054468,"_cnpmcore_publish_time":"2021-12-14T04:13:38.420Z"},"2.5.1":{"name":"vue-template-compiler","version":"2.5.1","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"_id":"vue-template-compiler@2.5.1","_npmVersion":"5.4.2","_nodeVersion":"8.4.0","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"d62e1655970c17c97278d52c9e2809d1a4b39e17","size":99584,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.5.1.tgz","integrity":"sha512-8SPZmb2qrF/QmDfNzTkPW1SzFVRiizIdtZyMsDnZ/MCx4eTWt6xAQXGTrmFypc+uQ7M64whs4+i3mNpnKw/q4A=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler-2.5.1.tgz_1507904065224_0.5822479287162423"},"directories":{},"publish_time":1507904066382,"_hasShrinkwrap":false,"_cnpm_publish_time":1507904066382,"_cnpmcore_publish_time":"2021-12-14T04:13:38.635Z"},"2.5.0":{"name":"vue-template-compiler","version":"2.5.0","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"_id":"vue-template-compiler@2.5.0","_npmVersion":"5.4.2","_nodeVersion":"8.4.0","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"2e138f1643e131f24f6e19733690713b7543a937","size":99588,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.5.0.tgz","integrity":"sha512-W4hDoXXpCwfilO1MRTDM4EHm1DC1mU1wS8WyvEo119cUtxdaPuq/dD0OJbSEIkeW8fdT07qGCSnLOfPlmrKRqw=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler-2.5.0.tgz_1507863868844_0.015611472073942423"},"directories":{},"publish_time":1507863870026,"_hasShrinkwrap":false,"_cnpm_publish_time":1507863870026,"_cnpmcore_publish_time":"2021-12-14T04:13:38.856Z"},"2.4.4":{"name":"vue-template-compiler","version":"2.4.4","description":"template compiler for Vue 2.0","main":"index.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"_id":"vue-template-compiler@2.4.4","_npmVersion":"5.4.1","_nodeVersion":"8.4.0","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"2cde3b704124985c27d50b5387c9691ba515fb57","size":35750,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.4.4.tgz","integrity":"sha512-XdHsNi8Z5WqwuFl/Z5eLKgE2DOEEOdMk1aA459uSgvwyy+pjKLBlQWsUpAtoR6o6Wmpujw6NtinAUGuqSTituQ=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler-2.4.4.tgz_1505403155687_0.500732000451535"},"directories":{},"publish_time":1505403156725,"_hasShrinkwrap":false,"_cnpm_publish_time":1505403156725,"_cnpmcore_publish_time":"2021-12-14T04:13:39.044Z"},"2.4.3":{"name":"vue-template-compiler","version":"2.4.3","description":"template compiler for Vue 2.0","main":"index.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"_id":"vue-template-compiler@2.4.3","_npmVersion":"5.4.1","_nodeVersion":"8.4.0","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"ecf25f1f076d765de55789c124321fd8db042204","size":35749,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.4.3.tgz","integrity":"sha512-rtHVKIFjd3Ynb+9FSoA64m2h2SPTEVKk6PywkqbugpM0nxT3ykLFyhbLTdSX1qV5wI9h5DAR4ib4RubEFfyiBQ=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler-2.4.3.tgz_1505289443869_0.8663575437385589"},"directories":{},"publish_time":1505289444928,"_hasShrinkwrap":false,"_cnpm_publish_time":1505289444928,"_cnpmcore_publish_time":"2021-12-14T04:13:39.236Z"},"2.4.2":{"name":"vue-template-compiler","version":"2.4.2","description":"template compiler for Vue 2.0","main":"index.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"_id":"vue-template-compiler@2.4.2","_npmVersion":"5.0.3","_nodeVersion":"8.1.4","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"5a45d843f148b098f6c1d1e35ac20c4956d30ad1","size":35569,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.4.2.tgz","integrity":"sha512-sKa2Bdvh+j6V9eQSyJRxsf8fak0FtQkCZ145aYFDVwZBhHOTt1vKrODLo4RelI1dUczKlDCp5aZ9MD7uJOZwvw=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler-2.4.2.tgz_1500611307316_0.17308465274982154"},"directories":{},"publish_time":1500611308366,"_hasShrinkwrap":false,"_cnpm_publish_time":1500611308366,"_cnpmcore_publish_time":"2021-12-14T04:13:39.450Z"},"2.4.1":{"name":"vue-template-compiler","version":"2.4.1","description":"template compiler for Vue 2.0","main":"index.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"_id":"vue-template-compiler@2.4.1","_npmVersion":"5.0.0","_nodeVersion":"8.0.0","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"20115cf8714f222f9be4111ec75b079a1c9b8197","size":35557,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.4.1.tgz","integrity":"sha512-DE7D9qpgT8ExbWwnzDeakZjmi2tEP1auxq4sD1R2L10A6PFTvo+R0r3bpxPAReGJBqxS4qrjw3kGFzT6Jvb3YQ=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler-2.4.1.tgz_1499928014282_0.13857468427158892"},"directories":{},"publish_time":1499928014455,"_hasShrinkwrap":false,"_cnpm_publish_time":1499928014455,"_cnpmcore_publish_time":"2021-12-14T04:13:39.656Z"},"2.4.0":{"name":"vue-template-compiler","version":"2.4.0","description":"template compiler for Vue 2.0","main":"index.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"_id":"vue-template-compiler@2.4.0","_npmVersion":"5.0.0","_nodeVersion":"8.0.0","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"17a84f575794637f9ca701f769f1fa498e6b9942","size":35559,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.4.0.tgz","integrity":"sha512-iXoj4qzGnM4XYvIy/PcDqKgpq/AAnjFvwMdLva00gA21YKXBKYwCtP49OH8oq6NA+OYktDc6Cdkl5Zdqt/kkGw=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler-2.4.0.tgz_1499925169482_0.07369869202375412"},"directories":{},"publish_time":1499925169585,"_hasShrinkwrap":false,"_cnpm_publish_time":1499925169585,"_cnpmcore_publish_time":"2021-12-14T04:13:39.859Z"},"2.3.4":{"name":"vue-template-compiler","version":"2.3.4","description":"template compiler for Vue 2.0","main":"index.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"_id":"vue-template-compiler@2.3.4","_npmVersion":"5.0.0","_nodeVersion":"8.0.0","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"5a88ac2c5e4d5d6218e6aa80e7e221fb7e67894c","size":31327,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.3.4.tgz","integrity":"sha512-GezvHn6bw053zIo0TQIjimRpyELjCEOrc5hGHtHUeadbVSdKB9yqY6By9WiYvbFwOZiuMmFpSfjD8VzVibWGtQ=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler-2.3.4.tgz_1496897606486_0.6805336789693683"},"directories":{},"publish_time":1496897606574,"_hasShrinkwrap":false,"_cnpm_publish_time":1496897606574,"_cnpmcore_publish_time":"2021-12-14T04:13:40.043Z"},"2.3.3":{"name":"vue-template-compiler","version":"2.3.3","description":"template compiler for Vue 2.0","main":"index.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"_id":"vue-template-compiler@2.3.3","scripts":{},"_shasum":"b5bab9ec57309c906b82a78c81a02179dbc2f470","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.8.0","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"b5bab9ec57309c906b82a78c81a02179dbc2f470","size":31321,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.3.3.tgz","integrity":"sha512-FxDzGhMM4m6W6wVOJ1Qat4dZV6uK5cLFpn/qsy8yvMvs2mXYd2PBTu8Nrz5cElcL/WKyt7ixwk5mZwp6P2Hv9w=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.3.3.tgz_1494349021428_0.2648846849333495"},"directories":{},"publish_time":1494349024720,"_hasShrinkwrap":false,"_cnpm_publish_time":1494349024720,"_cnpmcore_publish_time":"2021-12-14T04:13:40.277Z"},"2.3.2":{"name":"vue-template-compiler","version":"2.3.2","description":"template compiler for Vue 2.0","main":"index.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"_id":"vue-template-compiler@2.3.2","scripts":{},"_shasum":"d48a7f53df5f497033827182ceb4f0d340803017","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.8.0","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"d48a7f53df5f497033827182ceb4f0d340803017","size":31258,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.3.2.tgz","integrity":"sha512-ffLGp1PfJWyEVwDx3b1opTlkJkxEEb7cyKH1i+ai4JTqFgoBJ4DwpohuDEoTvbZeJiMZy/P2k9DZQ5NEVpgCtg=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.3.2.tgz_1493720991975_0.5621456524822861"},"directories":{},"publish_time":1493720993734,"_hasShrinkwrap":false,"_cnpm_publish_time":1493720993734,"_cnpmcore_publish_time":"2021-12-14T04:13:40.509Z"},"2.3.1":{"name":"vue-template-compiler","version":"2.3.1","description":"template compiler for Vue 2.0","main":"index.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"_id":"vue-template-compiler@2.3.1","scripts":{},"_shasum":"8bb63e10aca7b04ab31574bde11ed4b54516c711","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.8.0","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"8bb63e10aca7b04ab31574bde11ed4b54516c711","size":31262,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.3.1.tgz","integrity":"sha512-Fkb3MWB+5hv6fMY2HqF0Oyz/JbouwwoTQ4sNYaL2MpkHSUG7oawLXFQ/sistPauX/nYuAe5M0Mxni2WKPX6H5Q=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.3.1.tgz_1493711852600_0.01449577184394002"},"directories":{},"publish_time":1493711852854,"_hasShrinkwrap":false,"_cnpm_publish_time":1493711852854,"_cnpmcore_publish_time":"2021-12-14T04:13:40.703Z"},"2.3.0":{"name":"vue-template-compiler","version":"2.3.0","description":"template compiler for Vue 2.0","main":"index.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"_id":"vue-template-compiler@2.3.0","scripts":{},"_shasum":"a89a17064b68e182569da51ebbedd71ce57f93bf","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.8.0","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"a89a17064b68e182569da51ebbedd71ce57f93bf","size":31241,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.3.0.tgz","integrity":"sha512-hpuIjuVhZI9tDlk1Yb+m5AtxfZ96L58XrdNOm3ntkXQMn7jyGN7WaP7/nSkDV8Q7t79YdT0VniL3OuAK8t9zmA=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.3.0.tgz_1493274119218_0.2161815227009356"},"directories":{},"publish_time":1493274122445,"_hasShrinkwrap":false,"_cnpm_publish_time":1493274122445,"_cnpmcore_publish_time":"2021-12-14T04:13:40.912Z"},"2.3.0-beta.1":{"name":"vue-template-compiler","version":"2.3.0-beta.1","description":"template compiler for Vue 2.0","main":"index.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"_id":"vue-template-compiler@2.3.0-beta.1","scripts":{},"_shasum":"7eba99ce9e47870cd31c8978781b84d1682b6edc","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.8.0","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"7eba99ce9e47870cd31c8978781b84d1682b6edc","size":31178,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.3.0-beta.1.tgz","integrity":"sha512-K+A3hCZZHSqEXz8JRKDlVYro+KJCxHj+Dwu4bXpDtSB58vt0QlV+rYSsjCNf/EeQjcsAmeY4H5LnUy5dLlqL+A=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.3.0-beta.1.tgz_1493202746669_0.23542477609589696"},"directories":{},"publish_time":1493202746908,"_hasShrinkwrap":false,"_cnpm_publish_time":1493202746908,"_cnpmcore_publish_time":"2021-12-14T04:13:41.091Z"},"2.2.6":{"name":"vue-template-compiler","version":"2.2.6","description":"template compiler for Vue 2.0","main":"index.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"_id":"vue-template-compiler@2.2.6","scripts":{},"_shasum":"2e2928daf0cd0feca9dfc35a9729adeae173ec68","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"2e2928daf0cd0feca9dfc35a9729adeae173ec68","size":48822,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.2.6.tgz","integrity":"sha512-LKRkiLEBTbcuiIQ0Hois282x2PdiMjiW2tWJGGjsHRXYn1I9wkJP+PwGvm+LXjR0v0F2rIW7Ka2MTIDc6JHzPw=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.2.6.tgz_1490582760033_0.6941290076356381"},"directories":{},"publish_time":1490582762193,"_hasShrinkwrap":false,"_cnpm_publish_time":1490582762193,"_cnpmcore_publish_time":"2021-12-14T04:13:41.333Z"},"2.2.5":{"name":"vue-template-compiler","version":"2.2.5","description":"template compiler for Vue 2.0","main":"index.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"_id":"vue-template-compiler@2.2.5","scripts":{},"_shasum":"71b1366c3f716e8137a87f82591de9f816609b57","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"71b1366c3f716e8137a87f82591de9f816609b57","size":48757,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.2.5.tgz","integrity":"sha512-Th/UqOa6Qu8Ufs2ljfpD827dqfws02Dm3PionJREYpbEIW+7psYg3f2fEuC6oM6nN9lW+RIqqyCNfQVmUdhS2g=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.2.5.tgz_1490331205058_0.1326495127286762"},"directories":{},"publish_time":1490331205305,"_hasShrinkwrap":false,"_cnpm_publish_time":1490331205305,"_cnpmcore_publish_time":"2021-12-14T04:13:41.535Z"},"2.2.4":{"name":"vue-template-compiler","version":"2.2.4","description":"template compiler for Vue 2.0","main":"index.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"_id":"vue-template-compiler@2.2.4","scripts":{},"_shasum":"2856fb09f1571e9098872bf3c512d670eeeafba9","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"2856fb09f1571e9098872bf3c512d670eeeafba9","size":48337,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.2.4.tgz","integrity":"sha512-gjECYEJU8pgGETu3UM1ch4/DwzLwMITSzRnpzhdASBuGLBGUtbMAunQ4ByrhRp1F/9cMGIZ2ZAEc5tOTwlgpLw=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.2.4.tgz_1489417683896_0.9300020763184875"},"directories":{},"publish_time":1489417685946,"_hasShrinkwrap":false,"_cnpm_publish_time":1489417685946,"_cnpmcore_publish_time":"2021-12-14T04:13:41.784Z"},"2.2.3":{"name":"vue-template-compiler","version":"2.2.3","description":"template compiler for Vue 2.0","main":"index.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"_id":"vue-template-compiler@2.2.3","scripts":{},"_shasum":"7414dae6a0b0aaab8883beaddf84e2eed0efbd4d","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"7414dae6a0b0aaab8883beaddf84e2eed0efbd4d","size":48330,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.2.3.tgz","integrity":"sha512-ZBxlNO/FdiWfwcLKj/xmQwpDJaYMi5RlVx2hONRtLKkH0Jn6VlGNv2XLsSTVnYKhBoc+0piOY8U/D16iZUSxvA=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.2.3.tgz_1489392473320_0.315404535504058"},"directories":{},"publish_time":1489392475424,"_hasShrinkwrap":false,"_cnpm_publish_time":1489392475424,"_cnpmcore_publish_time":"2021-12-14T04:13:41.998Z"},"2.2.2":{"name":"vue-template-compiler","version":"2.2.2","description":"template compiler for Vue 2.0","main":"index.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"_id":"vue-template-compiler@2.2.2","scripts":{},"_shasum":"0f5fd742ce19e24a92370cc7a46b02a6f4852152","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"0f5fd742ce19e24a92370cc7a46b02a6f4852152","size":47880,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.2.2.tgz","integrity":"sha512-Zh47XGeH4LlX/GLYk+MJVYraTzTJHJZ0F//w8Ndoj+luEIdVhVvIPGuKiP9O+tttlrzQ+8C5ZowXLlCBcGa5YQ=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.2.2.tgz_1489026754953_0.07284713024273515"},"directories":{},"publish_time":1489026755226,"_hasShrinkwrap":false,"_cnpm_publish_time":1489026755226,"_cnpmcore_publish_time":"2021-12-14T04:13:42.202Z"},"2.2.1":{"name":"vue-template-compiler","version":"2.2.1","description":"template compiler for Vue 2.0","main":"index.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"_id":"vue-template-compiler@2.2.1","scripts":{},"_shasum":"ca5e43db50dc6e761e3c1296313de33091783511","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"ca5e43db50dc6e761e3c1296313de33091783511","size":47558,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.2.1.tgz","integrity":"sha512-uxmv8XHM+P4pvA/bADfqNp/ugPMfJQVglcdaKPPBwm9lbFRogoZc6xCuqaH7zMPDW4kTiCxVRz4SciA5NurWew=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.2.1.tgz_1488114644902_0.003929657628759742"},"directories":{},"publish_time":1488114645467,"_hasShrinkwrap":false,"_cnpm_publish_time":1488114645467,"_cnpmcore_publish_time":"2021-12-14T04:13:42.384Z"},"2.2.0":{"name":"vue-template-compiler","version":"2.2.0","description":"template compiler for Vue 2.0","main":"index.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"_id":"vue-template-compiler@2.2.0","scripts":{},"_shasum":"bdede1b931c7d2e8df3257011205e90afb1d86c9","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"bdede1b931c7d2e8df3257011205e90afb1d86c9","size":47552,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.2.0.tgz","integrity":"sha512-GQEA/9s5s+BtuvyX6nn7DHfuuMJ81/o1/p9N1JZYQSLKlrfv93s+i5jfM5SYtLdaYc9yiGC6fUuVv0xFZ8PDyQ=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.2.0.tgz_1488083291124_0.08075056504458189"},"directories":{},"publish_time":1488083291670,"_hasShrinkwrap":false,"_cnpm_publish_time":1488083291670,"_cnpmcore_publish_time":"2021-12-14T04:13:42.618Z"},"2.2.0-beta.2":{"name":"vue-template-compiler","version":"2.2.0-beta.2","description":"template compiler for Vue 2.0","main":"index.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"_id":"vue-template-compiler@2.2.0-beta.2","scripts":{},"_shasum":"eebd30a8c9408559dd6841caf9b963d9d27479de","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"eebd30a8c9408559dd6841caf9b963d9d27479de","size":47495,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.2.0-beta.2.tgz","integrity":"sha512-Wduc2rA8QtLnPC1WFFm/LnVvZ1s+qCNItvLexoYA0cMQuxZu0o65sQDo4rpC5CwptxErl2k23IOvgps+QGqi6Q=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.2.0-beta.2.tgz_1487980865969_0.251719186315313"},"directories":{},"publish_time":1487980866539,"_hasShrinkwrap":false,"_cnpm_publish_time":1487980866539,"_cnpmcore_publish_time":"2021-12-14T04:13:42.812Z"},"2.2.0-beta.1":{"name":"vue-template-compiler","version":"2.2.0-beta.1","description":"template compiler for Vue 2.0","main":"index.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"_id":"vue-template-compiler@2.2.0-beta.1","scripts":{},"_shasum":"0c7de534c0b34405035c37c2f3e03efb75860d57","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"0c7de534c0b34405035c37c2f3e03efb75860d57","size":47295,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.2.0-beta.1.tgz","integrity":"sha512-0wQLJfxk5Rv8U1bMgCgS3LRyhzZIlNjVApbM1DIRzDr6H5UGW9Ar5F8zrXKxz9ay8DBRMt14CC2KAcDhLeXWsA=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.2.0-beta.1.tgz_1487910135333_0.9822736119385809"},"directories":{},"publish_time":1487910137417,"_hasShrinkwrap":false,"_cnpm_publish_time":1487910137417,"_cnpmcore_publish_time":"2021-12-14T04:13:43.009Z"},"2.1.10":{"name":"vue-template-compiler","version":"2.1.10","description":"template compiler for Vue 2.0","main":"index.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"_id":"vue-template-compiler@2.1.10","scripts":{},"_shasum":"cb89643adc395e97435585522e43d0a9b1913257","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"cb89643adc395e97435585522e43d0a9b1913257","size":45421,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.1.10.tgz","integrity":"sha512-PyCJI7JiNwUoU82s9JtC+npzO9IAjpLu0qfQ54484kQ5e4oHgbatHdgqiewGUdrpxxekwyjJbE9wDCnUGob8KA=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.1.10.tgz_1484673425336_0.7574099285993725"},"directories":{},"publish_time":1484673427192,"_hasShrinkwrap":false,"_cnpm_publish_time":1484673427192,"_cnpmcore_publish_time":"2021-12-14T04:13:43.223Z"},"2.1.9":{"name":"vue-template-compiler","version":"2.1.9","description":"template compiler for Vue 2.0","main":"index.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"_id":"vue-template-compiler@2.1.9","scripts":{},"_shasum":"240d99868b03dcc45eb3a638b96fb792707f3082","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"240d99868b03dcc45eb3a638b96fb792707f3082","size":45423,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.1.9.tgz","integrity":"sha512-pkLkkSbvE7SSWOL5z/B4erU6KelPiVRa8OaJneIWMBk6BezJlk3qt26ZClOcS7sDcC51QEOCv5iVYlY1iECUDA=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.1.9.tgz_1484610481989_0.2465969081968069"},"directories":{},"publish_time":1484610482573,"_hasShrinkwrap":false,"_cnpm_publish_time":1484610482573,"_cnpmcore_publish_time":"2021-12-14T04:13:43.412Z"},"2.1.8":{"name":"vue-template-compiler","version":"2.1.8","description":"template compiler for Vue 2.0","main":"index.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"_id":"vue-template-compiler@2.1.8","scripts":{},"_shasum":"12dd1cc63793f59be580c694a61610cb9369d629","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"12dd1cc63793f59be580c694a61610cb9369d629","size":45319,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.1.8.tgz","integrity":"sha512-UoCPmjZgFyllYp2p8WPuzPFedPXNIivGRiF7JYSNYtZu8MTTi8+hB7FRKqk1wFsaqSTUxz2F+qgKdsTqwxM7qg=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.1.8.tgz_1482904470835_0.8223959286697209"},"directories":{},"publish_time":1482904471533,"_hasShrinkwrap":false,"_cnpm_publish_time":1482904471533,"_cnpmcore_publish_time":"2021-12-14T04:13:43.614Z"},"2.1.7":{"name":"vue-template-compiler","version":"2.1.7","description":"template compiler for Vue 2.0","main":"index.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"_id":"vue-template-compiler@2.1.7","scripts":{},"_shasum":"5e1fc983271d3ac24c79abb64b71383357e2cea5","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"5e1fc983271d3ac24c79abb64b71383357e2cea5","size":45283,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.1.7.tgz","integrity":"sha512-/CMz2byCv0JNeihm0ACMLSd2kQhTu9Qz3ZXuAn89GtwYepXKSbPzp5sL0YUFC+EO4NOD4VG1IySFb/exbxgj8Q=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.1.7.tgz_1482597369837_0.6365264630876482"},"directories":{},"publish_time":1482597370421,"_hasShrinkwrap":false,"_cnpm_publish_time":1482597370421,"_cnpmcore_publish_time":"2021-12-14T04:13:43.821Z"},"2.1.6":{"name":"vue-template-compiler","version":"2.1.6","description":"template compiler for Vue 2.0","main":"index.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"_id":"vue-template-compiler@2.1.6","scripts":{},"_shasum":"f96f968652fc1e861bb0052f61993ba1fdc18ad3","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"f96f968652fc1e861bb0052f61993ba1fdc18ad3","size":44145,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.1.6.tgz","integrity":"sha512-GzQhIwEm7XQi+MIDptrI4UJYDptr5ablK+nZRVI9UHs20DarsaqEBe4mSNcFn34XFL5HMF9Fu6vnS8+4sjwU5g=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.1.6.tgz_1481649744042_0.625743999145925"},"directories":{},"publish_time":1481649744686,"_hasShrinkwrap":false,"_cnpm_publish_time":1481649744686,"_cnpmcore_publish_time":"2021-12-14T04:13:44.045Z"},"2.1.5":{"name":"vue-template-compiler","version":"2.1.5","description":"template compiler for Vue 2.0","main":"index.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"_id":"vue-template-compiler@2.1.5","scripts":{},"_shasum":"9555412e47b795fffdb9445c5b1645f9195b1f68","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"9555412e47b795fffdb9445c5b1645f9195b1f68","size":44122,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.1.5.tgz","integrity":"sha512-lOy0z0/jfFWmD3bGHeEwwK/OicKLiiutV796gWsKzIqouQ1FgnMkffEcByFKmspBIRb+nhBc763BM9zsyXRsQg=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.1.5.tgz_1481598562129_0.844346736324951"},"directories":{},"publish_time":1481598564368,"_hasShrinkwrap":false,"_cnpm_publish_time":1481598564368,"_cnpmcore_publish_time":"2021-12-14T04:13:44.275Z"},"2.1.4":{"name":"vue-template-compiler","version":"2.1.4","description":"template compiler for Vue 2.0","main":"index.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"_id":"vue-template-compiler@2.1.4","scripts":{},"_shasum":"ce99cb9c2f5842062d3b744c716224b613f198d4","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"ce99cb9c2f5842062d3b744c716224b613f198d4","size":43565,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.1.4.tgz","integrity":"sha512-UnLlVQ8AAn2b+3DaOn/ZNUsmKYUc3T7On8cKus/he7AWFtr3MKfpp9+cI5ksGAR3ILqCOPQJb39KJTOYjjOwRg=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.1.4.tgz_1480647673030_0.4441324279177934"},"directories":{},"publish_time":1480647675152,"_hasShrinkwrap":false,"_cnpm_publish_time":1480647675152,"_cnpmcore_publish_time":"2021-12-14T04:13:44.508Z"},"2.1.3":{"name":"vue-template-compiler","version":"2.1.3","description":"template compiler for Vue 2.0","main":"index.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"_id":"vue-template-compiler@2.1.3","scripts":{},"_shasum":"af252df5848c15980cbf32d88a253db053290949","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"af252df5848c15980cbf32d88a253db053290949","size":43585,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.1.3.tgz","integrity":"sha512-9pmXbsYdaT4V709PEc8WQQF4biVzkhHiJn+Bjrjfp76xB4Jl5PKlr13W/HVMGnp/+4dRVNwR4t3U9qpIC+o3lQ=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.1.3.tgz_1479946870860_0.7439249947201461"},"directories":{},"publish_time":1479946872848,"_hasShrinkwrap":false,"_cnpm_publish_time":1479946872848,"_cnpmcore_publish_time":"2021-12-14T04:13:44.753Z"},"2.1.2":{"name":"vue-template-compiler","version":"2.1.2","description":"template compiler for Vue 2.0","main":"index.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"_id":"vue-template-compiler@2.1.2","scripts":{},"_shasum":"c16c9faec5099594a45244acf814747001164ab7","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"c16c9faec5099594a45244acf814747001164ab7","size":43586,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.1.2.tgz","integrity":"sha512-f6sFMteb8rd34c2TYXMcfwp/MUi/Nkc+aMUT3u3UHQrjNwvW4zbPUAC/2mxUvG2UpQ2o/9LhOZQCFcA8ql3CcQ=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.1.2.tgz_1479944479583_0.11908129346556962"},"directories":{},"publish_time":1479944481564,"_hasShrinkwrap":false,"_cnpm_publish_time":1479944481564,"_cnpmcore_publish_time":"2021-12-14T04:13:44.960Z"},"2.1.1":{"name":"vue-template-compiler","version":"2.1.1","description":"template compiler for Vue 2.0","main":"index.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"_id":"vue-template-compiler@2.1.1","scripts":{},"_shasum":"d7aba6375c8f4ac4242a7e874d30a10cfdf199bd","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"d7aba6375c8f4ac4242a7e874d30a10cfdf199bd","size":43532,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.1.1.tgz","integrity":"sha512-fQEnb7iVHm/y7YbtCydL6c/G5TS4QY/MrN1+hRiEWYWvIJ9kDc0N3NARBbSszWXCNSDHQZAjEFTpj+lVU2esfQ=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.1.1.tgz_1479934837859_0.4980195634998381"},"directories":{},"publish_time":1479934838410,"_hasShrinkwrap":false,"_cnpm_publish_time":1479934838410,"_cnpmcore_publish_time":"2021-12-14T04:13:45.174Z"},"2.1.0":{"name":"vue-template-compiler","version":"2.1.0","description":"template compiler for Vue 2.0","main":"index.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"_id":"vue-template-compiler@2.1.0","scripts":{},"_shasum":"b920111b239b2c4234a5ffd78ca42cb664f06559","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"b920111b239b2c4234a5ffd78ca42cb664f06559","size":43475,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.1.0.tgz","integrity":"sha512-W3NYDmaY89QTKf1LhsoZ1XkFFHckpjhhSy0w05MPETC9GiAGh7e7ap6hD5BrewZfF5qqJRwzh7mKuQpT4lIy9Q=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.1.0.tgz_1479831301966_0.03232819214463234"},"directories":{},"publish_time":1479831302605,"_hasShrinkwrap":false,"_cnpm_publish_time":1479831302605,"_cnpmcore_publish_time":"2021-12-14T04:13:45.386Z"},"2.0.8":{"name":"vue-template-compiler","version":"2.0.8","description":"template compiler for Vue 2.0","main":"index.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"_id":"vue-template-compiler@2.0.8","scripts":{},"_shasum":"e91e1ed6b9b7404f8394166cfeb53eb8b620329a","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"e91e1ed6b9b7404f8394166cfeb53eb8b620329a","size":42098,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.0.8.tgz","integrity":"sha512-0oDfZxEKHTjbt9SRymoZrzMe6EA9jQY8i31HZQlrHDXkK8WMV/AZZfidFtGKij6DWJMeDiVgNKYkuC5BDljqDg=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.0.8.tgz_1479611695312_0.7384220785461366"},"directories":{},"publish_time":1479611695846,"_hasShrinkwrap":false,"_cnpm_publish_time":1479611695846,"_cnpmcore_publish_time":"2021-12-14T04:13:45.611Z"},"2.0.7":{"name":"vue-template-compiler","version":"2.0.7","description":"template compiler for Vue 2.0","main":"index.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"_id":"vue-template-compiler@2.0.7","scripts":{},"_shasum":"8750875530826cf3e4f6d1a38d4e9fb9000fcacc","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"8750875530826cf3e4f6d1a38d4e9fb9000fcacc","size":41713,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.0.7.tgz","integrity":"sha512-O5dy48iFlOxXlrzk4mLMzug4phRvfU6++PhbRfg1BFAf9sq8wp4fuYp4G5eg2QgGNFnF80ROawIMjq3Hn9Mwvg=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.0.7.tgz_1479333258744_0.6008374257944524"},"directories":{},"publish_time":1479333260675,"_hasShrinkwrap":false,"_cnpm_publish_time":1479333260675,"_cnpmcore_publish_time":"2021-12-14T04:13:45.897Z"},"2.0.6":{"name":"vue-template-compiler","version":"2.0.6","description":"template compiler for Vue 2.0","main":"index.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"_id":"vue-template-compiler@2.0.6","scripts":{},"_shasum":"7f2b21bbb2e9a1e4141079d95b3920a603cde346","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"7f2b21bbb2e9a1e4141079d95b3920a603cde346","size":41767,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.0.6.tgz","integrity":"sha512-WOxuRSVkh6L5bHHH8PYHBTQU+S+2/vsK1ggGD8I9KFc1fdypy1LrrtFzqH1vmjSG2zfpG8qB53FD288Fm0v/ew=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.0.6.tgz_1479251097235_0.20378840994089842"},"directories":{},"publish_time":1479251099183,"_hasShrinkwrap":false,"_cnpm_publish_time":1479251099183,"_cnpmcore_publish_time":"2021-12-14T04:13:46.099Z"},"2.0.5":{"name":"vue-template-compiler","version":"2.0.5","description":"template compiler for Vue 2.0","main":"index.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"_id":"vue-template-compiler@2.0.5","scripts":{},"_shasum":"6a8c454e7d4ed03cc295ae9733a432e31df25ea3","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"6a8c454e7d4ed03cc295ae9733a432e31df25ea3","size":42737,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.0.5.tgz","integrity":"sha512-HxbaIOnj2VWj3uTMn/dKXgCjmiYW+sNolxAfIuNfPaLTSCXxTf0AjtbqfNejiJHL1ku93oArayg3qVLnlKB3ZA=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.0.5.tgz_1478317642754_0.8964751057792455"},"directories":{},"publish_time":1478317643261,"_hasShrinkwrap":false,"_cnpm_publish_time":1478317643261,"_cnpmcore_publish_time":"2021-12-14T04:13:46.319Z"},"2.0.4":{"name":"vue-template-compiler","version":"2.0.4","description":"template compiler for Vue 2.0","main":"index.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"_id":"vue-template-compiler@2.0.4","scripts":{},"_shasum":"89d144c07ffcf6a67607dcdde37a21d535280d04","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"dist":{"shasum":"89d144c07ffcf6a67607dcdde37a21d535280d04","size":42628,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.0.4.tgz","integrity":"sha512-uJ4gIV8I7H3mMN/98eGd3m3YsOCzS+LpnuxyHYwZRHBj8pZZxrwdI/UmJgZ8KoVmvZmNsNGgaXsyp1wgfoGAPw=="},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.0.4.tgz_1478292418151_0.9763727760873735"},"directories":{},"publish_time":1478292419814,"_hasShrinkwrap":false,"_cnpm_publish_time":1478292419814,"_cnpmcore_publish_time":"2021-12-14T04:13:46.619Z"},"2.0.3":{"name":"vue-template-compiler","version":"2.0.3","description":"template compiler for Vue 2.0","main":"index.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue#readme","dependencies":{"he":"^1.1.0","de-indent":"^1.0.2"},"_id":"vue-template-compiler@2.0.3","scripts":{},"_shasum":"da1462e7c95afb2daa20065e97589d8125226027","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.1","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"dist":{"shasum":"da1462e7c95afb2daa20065e97589d8125226027","size":39329,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.0.3.tgz","integrity":"sha512-dZc3TltB6S1inI/8o6kYVJM9LuUTBVzebi8Sg1oJ4UNvuvDWDLTcK+482X/msVorKKgWNBRDDWFznmDI4rb/4A=="},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.0.3.tgz_1476350841568_0.07474172697402537"},"directories":{},"publish_time":1476350843552,"_hasShrinkwrap":false,"_cnpm_publish_time":1476350843552,"_cnpmcore_publish_time":"2021-12-14T04:13:46.845Z"},"2.0.2":{"name":"vue-template-compiler","version":"2.0.2","description":"template compiler for Vue 2.0","main":"index.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue#readme","dependencies":{"de-indent":"^1.0.2","entities":"^1.1.1"},"_id":"vue-template-compiler@2.0.2","scripts":{},"_shasum":"4343f80fe7dde9ea1bd8887d2708e219f1530095","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.1","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"dist":{"shasum":"4343f80fe7dde9ea1bd8887d2708e219f1530095","size":39146,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.0.2.tgz","integrity":"sha512-JpwQRXmeB9K90X7WHI/M1/FpXjLUqj2rdsmUHiETJ0mr6i3KQ6d0/jqFTp42TG9DREjc53dFc6m7mDBvScHiDA=="},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.0.2.tgz_1476248040485_0.37699406826868653"},"directories":{},"publish_time":1476248042591,"_hasShrinkwrap":false,"_cnpm_publish_time":1476248042591,"_cnpmcore_publish_time":"2021-12-14T04:13:47.047Z"},"2.0.1":{"name":"vue-template-compiler","version":"2.0.1","description":"template compiler for Vue 2.0","main":"index.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue#readme","dependencies":{"de-indent":"^1.0.2","entities":"^1.1.1"},"_id":"vue-template-compiler@2.0.1","scripts":{},"_shasum":"7418c8c089eab1ca9756fcced4e43a9f1197bcaf","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.1","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"dist":{"shasum":"7418c8c089eab1ca9756fcced4e43a9f1197bcaf","size":38254,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.0.1.tgz","integrity":"sha512-avwxWzLY3koRMYjCaeUIWcPnpUsr2ou7mU8/drm7UnAZcMQeq2fEkc0JXyTN+FlMV1OWo0PgjfgrF0CPkdFy7Q=="},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.0.1.tgz_1475269914672_0.6228187016677111"},"directories":{},"publish_time":1475269916222,"_hasShrinkwrap":false,"_cnpm_publish_time":1475269916222,"_cnpmcore_publish_time":"2021-12-14T04:13:47.246Z"},"2.0.0":{"name":"vue-template-compiler","version":"2.0.0","description":"template compiler for Vue 2.0","main":"index.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue#readme","dependencies":{"de-indent":"^1.0.2","entities":"^1.1.1"},"_id":"vue-template-compiler@2.0.0","scripts":{},"_shasum":"0f4ffcf615f507ccd421eaa72b03063732818a3d","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.1","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"dist":{"shasum":"0f4ffcf615f507ccd421eaa72b03063732818a3d","size":38261,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.0.0.tgz","integrity":"sha512-GQaTZxk1L1SFlkB2edMYFKlM8V7IYrcRF1gcCGycbtZKhoNrxfcDslPePvSpc3onWlsRGf2X3Am1k7WmbA9gBQ=="},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.0.0.tgz_1475260314258_0.4241835630964488"},"directories":{},"publish_time":1475260315901,"_hasShrinkwrap":false,"_cnpm_publish_time":1475260315901,"_cnpmcore_publish_time":"2021-12-14T04:13:47.470Z"},"2.0.0-rc.8":{"name":"vue-template-compiler","version":"2.0.0-rc.8","description":"template compiler for Vue 2.0","main":"index.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue#readme","dependencies":{"de-indent":"^1.0.2","entities":"^1.1.1"},"_id":"vue-template-compiler@2.0.0-rc.8","scripts":{},"_shasum":"d3725fc97bf4f4849fb29331f77a876222ac3f47","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.1","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"dist":{"shasum":"d3725fc97bf4f4849fb29331f77a876222ac3f47","size":37679,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.0.0-rc.8.tgz","integrity":"sha512-rpAWAB9mZN/9zsKabLApJPN6d70MDFdWVTdk7ZpZlED468XKpwnDnRlyHwRfgdVQmo3BZTkhUG5c+aagQyp4wQ=="},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.0.0-rc.8.tgz_1475010503863_0.20440068026073277"},"directories":{},"publish_time":1475010504459,"_hasShrinkwrap":false,"_cnpm_publish_time":1475010504459,"_cnpmcore_publish_time":"2021-12-14T04:13:47.718Z"},"2.0.0-rc.7":{"name":"vue-template-compiler","version":"2.0.0-rc.7","description":"template compiler for Vue 2.0","main":"index.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue#readme","dependencies":{"de-indent":"^1.0.2","entities":"^1.1.1"},"_id":"vue-template-compiler@2.0.0-rc.7","scripts":{},"_shasum":"d9e56ff681c7744b5c2551b8c8327f8f352b97f4","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.1","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"dist":{"shasum":"d9e56ff681c7744b5c2551b8c8327f8f352b97f4","size":37200,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.0.0-rc.7.tgz","integrity":"sha512-ZTVmZ/HcrmBB3seQ9LeOqtAKPs/GHdD5sYwAnYz9vQoyeRlptzXYhJ4SsatnxGnpSo/gMdx4pzd+7VJese2g8A=="},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.0.0-rc.7.tgz_1474669483328_0.9301417889073491"},"directories":{},"publish_time":1474669485382,"_hasShrinkwrap":false,"_cnpm_publish_time":1474669485382,"_cnpmcore_publish_time":"2021-12-14T04:13:47.922Z"},"2.0.0-rc.6":{"name":"vue-template-compiler","version":"2.0.0-rc.6","description":"template compiler for Vue 2.0","main":"index.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue#readme","dependencies":{"de-indent":"^1.0.2","entities":"^1.1.1"},"_id":"vue-template-compiler@2.0.0-rc.6","scripts":{},"_shasum":"616a717bd8eed5eeadc0475c7bd03759183e0d2c","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.1","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"dist":{"shasum":"616a717bd8eed5eeadc0475c7bd03759183e0d2c","size":37421,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.0.0-rc.6.tgz","integrity":"sha512-tsmqMnq1smA3lpO90eEvijuAm3VC7mHhag3hq+XOW3mCPo16HnMRvEHJLbxjkPCjlHgqthukQ5avtYPsDLWVpg=="},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.0.0-rc.6.tgz_1473772855552_0.1562834254000336"},"directories":{},"publish_time":1473772857312,"_hasShrinkwrap":false,"_cnpm_publish_time":1473772857312,"_cnpmcore_publish_time":"2021-12-14T04:13:48.175Z"},"2.0.0-rc.5":{"name":"vue-template-compiler","version":"2.0.0-rc.5","description":"template compiler for Vue 2.0","main":"index.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue#readme","dependencies":{"de-indent":"^1.0.2","entities":"^1.1.1"},"_id":"vue-template-compiler@2.0.0-rc.5","scripts":{},"_shasum":"7a48d0ba8c11f12ec88a5f77b323deec95cec413","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"dist":{"shasum":"7a48d0ba8c11f12ec88a5f77b323deec95cec413","size":37556,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.0.0-rc.5.tgz","integrity":"sha512-FOP3f8paFUiSjOzWAMqVQcmdoAMuZrqXazZZY7DYbQUszianUUeWWBbLMVEPGwbL8drbRDPS29dMF7XM2eZFlQ=="},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.0.0-rc.5.tgz_1473334182187_0.8258694319520146"},"directories":{},"publish_time":1473334183352,"_hasShrinkwrap":false,"_cnpm_publish_time":1473334183352,"_cnpmcore_publish_time":"2021-12-14T04:13:48.370Z"},"2.0.0-rc.4":{"name":"vue-template-compiler","version":"2.0.0-rc.4","description":"template compiler for Vue 2.0","main":"index.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue#readme","dependencies":{"de-indent":"^1.0.2","entities":"^1.1.1"},"_id":"vue-template-compiler@2.0.0-rc.4","scripts":{},"_shasum":"780c38ced0cb3bca0918653ab9ef460a4d021f9f","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.1","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"dist":{"shasum":"780c38ced0cb3bca0918653ab9ef460a4d021f9f","size":37521,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.0.0-rc.4.tgz","integrity":"sha512-ZITkzISwV7fo/yA8h+yzmRT8nmu0nj4I5XexQuWd9OT2OEJWmPn/D24H1l1ZZRFDXhhRXS3IUvaya2xyBqtnMg=="},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.0.0-rc.4.tgz_1472500135015_0.06218302855268121"},"directories":{},"publish_time":1472500136796,"_hasShrinkwrap":false,"_cnpm_publish_time":1472500136796,"_cnpmcore_publish_time":"2021-12-14T04:13:48.619Z"},"2.0.0-rc.3":{"name":"vue-template-compiler","version":"2.0.0-rc.3","description":"template compiler for Vue 2.0","main":"index.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue#readme","dependencies":{"de-indent":"^1.0.2","entities":"^1.1.1"},"_id":"vue-template-compiler@2.0.0-rc.3","scripts":{},"_shasum":"b68788fbd040d244544e1eac40a2acb7baa79809","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.1","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"dist":{"shasum":"b68788fbd040d244544e1eac40a2acb7baa79809","size":36417,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.0.0-rc.3.tgz","integrity":"sha512-vzo+LuLI6QgTOBr57+nLW7RDYAEJVt4KEj67sPoqQfWD7CGmLsXhzaZxVSrs9hbbLcXEUKDvX2IU7TIlMOkh9g=="},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.0.0-rc.3.tgz_1471716287809_0.5007426112424582"},"directories":{},"publish_time":1471716289454,"_hasShrinkwrap":false,"_cnpm_publish_time":1471716289454,"_cnpmcore_publish_time":"2021-12-14T04:13:48.831Z"},"2.0.0-rc.2":{"name":"vue-template-compiler","version":"2.0.0-rc.2","description":"template compiler for Vue 2.0","main":"index.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue#readme","dependencies":{"de-indent":"^1.0.2","entities":"^1.1.1"},"_id":"vue-template-compiler@2.0.0-rc.2","scripts":{},"_shasum":"6f964520c144519ee2d5ef61c716d4a6304e5283","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.1","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"dist":{"shasum":"6f964520c144519ee2d5ef61c716d4a6304e5283","size":36244,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.0.0-rc.2.tgz","integrity":"sha512-iIO2oyJQxX6LiLkXE/sCVNy3D2IMzieYsN/+eAxYIZAVYERbccE68EA+u9QOVog9qXFEUJ0+CPdDd+mpqpAZSw=="},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.0.0-rc.2.tgz_1471318740368_0.930863729910925"},"directories":{},"publish_time":1471318742125,"_hasShrinkwrap":false,"_cnpm_publish_time":1471318742125,"_cnpmcore_publish_time":"2021-12-14T04:13:49.073Z"},"2.0.0-rc.1":{"name":"vue-template-compiler","version":"2.0.0-rc.1","description":"template compiler for Vue 2.0","main":"index.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue#readme","dependencies":{"de-indent":"^1.0.2","entities":"^1.1.1"},"_id":"vue-template-compiler@2.0.0-rc.1","scripts":{},"_shasum":"d114829dcf12e111247136e5e6b20ec279ac3812","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"dist":{"shasum":"d114829dcf12e111247136e5e6b20ec279ac3812","size":36047,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.0.0-rc.1.tgz","integrity":"sha512-fzUv28EV6+oiymEAc8TNsoWj2i4s0weOSvCr/9AJdVAH1dpVAw9zwoQg2qIe94Ol3Ai6+7SQxB6Ozjn9bUycKQ=="},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.0.0-rc.1.tgz_1470894183531_0.2927602673880756"},"directories":{},"publish_time":1470894184364,"_hasShrinkwrap":false,"_cnpm_publish_time":1470894184364,"_cnpmcore_publish_time":"2021-12-14T04:13:49.367Z"},"2.0.0-beta.8":{"name":"vue-template-compiler","version":"2.0.0-beta.8","description":"template compiler for Vue 2.0","main":"index.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue#readme","dependencies":{"de-indent":"^1.0.2","entities":"^1.1.1"},"_id":"vue-template-compiler@2.0.0-beta.8","scripts":{},"_shasum":"fb9566c91a31e03e1525ac2fdbb3793d8cccd7b3","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.1","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"dist":{"shasum":"fb9566c91a31e03e1525ac2fdbb3793d8cccd7b3","size":35945,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.0.0-beta.8.tgz","integrity":"sha512-jthz7JgaywcrFxiDBe/92Ppu1dyd4TcHC4MIlE96Y/y6KMrg/mCSIZkZXwa4ULWW9tbS9O0i62K4XoF5h7SrIw=="},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.0.0-beta.8.tgz_1470804921815_0.8382573898416013"},"directories":{},"publish_time":1470804924490,"_hasShrinkwrap":false,"_cnpm_publish_time":1470804924490,"_cnpmcore_publish_time":"2021-12-14T04:13:49.554Z"},"2.0.0-beta.7":{"name":"vue-template-compiler","version":"2.0.0-beta.7","description":"template compiler for Vue 2.0","main":"index.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue#readme","dependencies":{"de-indent":"^1.0.2","entities":"^1.1.1"},"_id":"vue-template-compiler@2.0.0-beta.7","scripts":{},"_shasum":"b7e6ef2b7e098e3d7df224b1c8beba300efdaa36","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.1","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"dist":{"shasum":"b7e6ef2b7e098e3d7df224b1c8beba300efdaa36","size":35809,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.0.0-beta.7.tgz","integrity":"sha512-ZXrBn8ElTTG+1himKXzBRZkOp7kz8iteuTtARY91k+aDt7yW7WmyRCfB2rtEjalTKS80j3vnA6Ipm0dpOCkflg=="},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.0.0-beta.7.tgz_1470435019691_0.23125209426507354"},"directories":{},"publish_time":1470435021736,"_hasShrinkwrap":false,"_cnpm_publish_time":1470435021736,"_cnpmcore_publish_time":"2021-12-14T04:13:49.743Z"},"2.0.0-beta.6":{"name":"vue-template-compiler","version":"2.0.0-beta.6","description":"template compiler for Vue 2.0","main":"index.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue#readme","dependencies":{"de-indent":"^1.0.2","entities":"^1.1.1"},"_id":"vue-template-compiler@2.0.0-beta.6","scripts":{},"_shasum":"e6197acc61e45ef246c2d0f5f6df2fdead9fa42f","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.1","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"dist":{"shasum":"e6197acc61e45ef246c2d0f5f6df2fdead9fa42f","size":36104,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.0.0-beta.6.tgz","integrity":"sha512-E2VjbhmDL7tLpvHNFN7mDjv1PtZz6rIInNI5Yd1A6cPtcF77wThwRPoLFD6sT0jZqCoBhvhay8O+Zupu8TvRzg=="},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.0.0-beta.6.tgz_1470079646981_0.9989801840856671"},"directories":{},"publish_time":1470079648778,"_hasShrinkwrap":false,"_cnpm_publish_time":1470079648778,"_cnpmcore_publish_time":"2021-12-14T04:13:49.992Z"},"2.0.0-beta.5":{"name":"vue-template-compiler","version":"2.0.0-beta.5","description":"template compiler for Vue 2.0","main":"index.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue#readme","dependencies":{"de-indent":"^1.0.2","entities":"^1.1.1"},"_id":"vue-template-compiler@2.0.0-beta.5","scripts":{},"_shasum":"d97482c16901ee30124782c4bbae467e625df779","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"dist":{"shasum":"d97482c16901ee30124782c4bbae467e625df779","size":35907,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.0.0-beta.5.tgz","integrity":"sha512-GlS6bHmBcK5Jdt2gGqaWplQjGICeDbyxWNh6f2KNPI2zSi9BLE+htPr3ps9eht8Aj+Dff0D6h5hWn89eXOWmsA=="},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.0.0-beta.5.tgz_1469593532280_0.8089908831752837"},"directories":{},"publish_time":1469593534705,"_hasShrinkwrap":false,"_cnpm_publish_time":1469593534705,"_cnpmcore_publish_time":"2021-12-14T04:13:50.236Z"},"2.0.0-beta.4":{"name":"vue-template-compiler","version":"2.0.0-beta.4","description":"template compiler for Vue 2.0","main":"index.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue#readme","dependencies":{"de-indent":"^1.0.2","entities":"^1.1.1"},"_id":"vue-template-compiler@2.0.0-beta.4","scripts":{},"_shasum":"1a44bb19f5eabe9084f92a119725d4cce5de8922","_from":".","_npmVersion":"3.9.5","_nodeVersion":"6.2.2","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"dist":{"shasum":"1a44bb19f5eabe9084f92a119725d4cce5de8922","size":35280,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.0.0-beta.4.tgz","integrity":"sha512-j24AuWh9s4dZLfwnhNy8ofJn4Lmk+yyityGvYEfTBjPfCOi66owCz8hdK+Hr5p7OxoaH5QdpfH0RT+zwsyVPGg=="},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.0.0-beta.4.tgz_1469498656925_0.1254767740610987"},"directories":{},"publish_time":1469498658753,"_hasShrinkwrap":false,"_cnpm_publish_time":1469498658753,"_cnpmcore_publish_time":"2021-12-14T04:13:50.433Z"},"2.0.0-beta.3":{"name":"vue-template-compiler","version":"2.0.0-beta.3","description":"template compiler for Vue 2.0","main":"index.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue#readme","dependencies":{"de-indent":"^1.0.2","entities":"^1.1.1"},"_id":"vue-template-compiler@2.0.0-beta.3","scripts":{},"_shasum":"dc79e0832c5cdc35563d0b39db3b7251e253ac2a","_from":".","_npmVersion":"3.9.5","_nodeVersion":"6.2.2","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"dist":{"shasum":"dc79e0832c5cdc35563d0b39db3b7251e253ac2a","size":35338,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.0.0-beta.3.tgz","integrity":"sha512-9zVnj1Whqeeu+wdywlXl9GEjyy+Fb6E140vprm7S12zmQ7kZdPziiMfN0mJCmmYc4YpAPb+CiQC5YsE9FSFbkw=="},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.0.0-beta.3.tgz_1469328308727_0.6214165429119021"},"directories":{},"publish_time":1469328310680,"_hasShrinkwrap":false,"_cnpm_publish_time":1469328310680,"_cnpmcore_publish_time":"2021-12-14T04:13:50.619Z"},"2.0.0-beta.2":{"name":"vue-template-compiler","version":"2.0.0-beta.2","description":"template compiler for Vue 2.0","main":"index.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue#readme","dependencies":{"de-indent":"^1.0.2","entities":"^1.1.1"},"_id":"vue-template-compiler@2.0.0-beta.2","scripts":{},"_shasum":"3315597cdf178ca9405204c8d90e7ea014b93347","_from":".","_npmVersion":"3.9.5","_nodeVersion":"6.2.2","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"dist":{"shasum":"3315597cdf178ca9405204c8d90e7ea014b93347","size":35143,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.0.0-beta.2.tgz","integrity":"sha512-K1XiaVCBLW+778VgZYIc6a8z6Ojo9FsxMdsZMUtUP8V1thkHLGimA2wN5J8CIAKpIdiNodjI8MZ6uaa6/PMCDg=="},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.0.0-beta.2.tgz_1468734676537_0.14196887519210577"},"directories":{},"publish_time":1468734677599,"_hasShrinkwrap":false,"_cnpm_publish_time":1468734677599,"_cnpmcore_publish_time":"2021-12-14T04:13:50.822Z"},"2.0.0-beta.1":{"name":"vue-template-compiler","version":"2.0.0-beta.1","description":"template compiler for Vue 2.0","main":"index.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue#readme","dependencies":{"de-indent":"^1.0.2","entities":"^1.1.1"},"_id":"vue-template-compiler@2.0.0-beta.1","scripts":{},"_shasum":"e606eef3299523b47232161c731334f84323f478","_from":".","_npmVersion":"3.9.5","_nodeVersion":"6.2.2","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"dist":{"shasum":"e606eef3299523b47232161c731334f84323f478","size":34924,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.0.0-beta.1.tgz","integrity":"sha512-iAtI7TC4KQph0Ehw3xrfG0W8kO1RlK74Au+tsOtv0jESGWDunkWSGhE7JhCBp+Mlli7lKIml66/ZYCsn3EVY4w=="},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.0.0-beta.1.tgz_1467928293956_0.9618666989263147"},"directories":{},"publish_time":1467928296515,"_hasShrinkwrap":false,"_cnpm_publish_time":1467928296515,"_cnpmcore_publish_time":"2021-12-14T04:13:51.000Z"},"2.0.0-alpha.8":{"name":"vue-template-compiler","version":"2.0.0-alpha.8","description":"template compiler for Vue 2.0","main":"index.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue#readme","dependencies":{"de-indent":"^1.0.2","entities":"^1.1.1"},"_id":"vue-template-compiler@2.0.0-alpha.8","scripts":{},"_shasum":"283a953544afac1dbe4cb81cc4dbe76824a7aa81","_from":".","_npmVersion":"3.9.5","_nodeVersion":"6.2.2","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"dist":{"shasum":"283a953544afac1dbe4cb81cc4dbe76824a7aa81","size":34855,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.0.0-alpha.8.tgz","integrity":"sha512-uToXkVd49pNBNj2v5/b31QdqN03FBUia3EXLQkWGqVLekLEHhoD472xA0KMPNPSEUmH/vraZdXgh4eCVJbA/kg=="},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.0.0-alpha.8.tgz_1467104522891_0.7414562308695167"},"directories":{},"publish_time":1467104525303,"_hasShrinkwrap":false,"_cnpm_publish_time":1467104525303,"_cnpmcore_publish_time":"2021-12-14T04:13:51.184Z"},"2.0.0-alpha.7":{"name":"vue-template-compiler","version":"2.0.0-alpha.7","description":"template compiler for Vue 2.0","main":"index.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue#readme","dependencies":{"de-indent":"^1.0.2","entities":"^1.1.1","source-map":"^0.5.6"},"_id":"vue-template-compiler@2.0.0-alpha.7","scripts":{},"_shasum":"f332a44c6ae3473a9ec812ae276aecfd3a755170","_from":".","_npmVersion":"3.9.5","_nodeVersion":"6.2.2","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"dist":{"shasum":"f332a44c6ae3473a9ec812ae276aecfd3a755170","size":33921,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.0.0-alpha.7.tgz","integrity":"sha512-J4/SvVFdV/hObYt12CVZwQ/fd7sobPa/q2kUVTpen/qbTTHKPY0EV8OM95JnvcUu+5Vhwp71mpdHXpjTCqo6MA=="},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.0.0-alpha.7.tgz_1467080647270_0.06711079413071275"},"directories":{},"publish_time":1467080648315,"_hasShrinkwrap":false,"_cnpm_publish_time":1467080648315,"_cnpmcore_publish_time":"2021-12-14T04:13:51.566Z"},"2.0.0-alpha.6":{"name":"vue-template-compiler","version":"2.0.0-alpha.6","description":"template compiler for Vue 2.0","main":"index.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue#readme","dependencies":{"de-indent":"^1.0.2","entities":"^1.1.1","source-map":"^0.5.6"},"_id":"vue-template-compiler@2.0.0-alpha.6","scripts":{},"_shasum":"ff644dd2f64926a351fa803c580da95572ebdd3c","_from":".","_npmVersion":"3.8.6","_nodeVersion":"6.0.0","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"dist":{"shasum":"ff644dd2f64926a351fa803c580da95572ebdd3c","size":33629,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.0.0-alpha.6.tgz","integrity":"sha512-kDIOsSeIdubGSIWz/qi8GIVGY/Ho9YyUiBxWJyHJNwXAKxfjhIpNR6nwCGwEdJY5Tw0IrrgpAFUOpU9+QVTmBA=="},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.0.0-alpha.6.tgz_1466623992689_0.7907917378470302"},"directories":{},"publish_time":1466623995168,"_hasShrinkwrap":false,"_cnpm_publish_time":1466623995168,"_cnpmcore_publish_time":"2021-12-14T04:13:51.866Z"},"2.0.0-alpha.5":{"name":"vue-template-compiler","version":"2.0.0-alpha.5","description":"template compiler for Vue 2.0","main":"index.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue#readme","dependencies":{"de-indent":"^1.0.2","entities":"^1.1.1","source-map":"^0.5.6"},"_id":"vue-template-compiler@2.0.0-alpha.5","scripts":{},"_shasum":"1b193b108b6317dc8e4ed046944e334832e0f231","_from":".","_npmVersion":"3.8.6","_nodeVersion":"6.0.0","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"dist":{"shasum":"1b193b108b6317dc8e4ed046944e334832e0f231","size":33400,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.0.0-alpha.5.tgz","integrity":"sha512-KKL1BNLKhV4aI/eGjMMuNTubTYJTNapv17c4g58ZZbOCwqGLVIao7VvSg1FyoxvBzP6dRxW5fvaL9ctkyYvCDA=="},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.0.0-alpha.5.tgz_1466187751691_0.82523313164711"},"directories":{},"publish_time":1466187753997,"_hasShrinkwrap":false,"_cnpm_publish_time":1466187753997,"_cnpmcore_publish_time":"2021-12-14T04:13:52.055Z"},"2.0.0-alpha.4":{"name":"vue-template-compiler","version":"2.0.0-alpha.4","description":"template compiler for Vue 2.0","main":"index.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue#readme","dependencies":{"de-indent":"^1.0.2","entities":"^1.1.1","source-map":"^0.5.6"},"_id":"vue-template-compiler@2.0.0-alpha.4","scripts":{},"_shasum":"b7f70f581749123cd67dd3dabdbefb8dbfffdf78","_from":".","_npmVersion":"3.8.6","_nodeVersion":"6.0.0","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"dist":{"shasum":"b7f70f581749123cd67dd3dabdbefb8dbfffdf78","size":33702,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.0.0-alpha.4.tgz","integrity":"sha512-M4OOmEiEmvaHWxu7W46cbMN6NdrgGG/nD3hjQnMU1sp3FbzEaCAbCPGY+xOWfBwIEiOw/Sn4QvABKurdfPgY+A=="},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.0.0-alpha.4.tgz_1466096441856_0.7140775457955897"},"directories":{},"publish_time":1466096442859,"_hasShrinkwrap":false,"_cnpm_publish_time":1466096442859,"_cnpmcore_publish_time":"2021-12-14T04:13:52.290Z"},"2.0.0-alpha.3":{"name":"vue-template-compiler","version":"2.0.0-alpha.3","description":"template compiler for Vue 2.0","main":"index.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue#readme","dependencies":{"de-indent":"^1.0.2","entities":"^1.1.1","source-map":"^0.5.6"},"_id":"vue-template-compiler@2.0.0-alpha.3","scripts":{},"_shasum":"0baac0f4bf594253eb7897880006829f22a79dee","_from":".","_npmVersion":"3.8.6","_nodeVersion":"6.0.0","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"dist":{"shasum":"0baac0f4bf594253eb7897880006829f22a79dee","size":33670,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.0.0-alpha.3.tgz","integrity":"sha512-tzKZgTO5nWEJB5krjbR+zjuTSISaPVC9pi8eGdQH8dNzL9CczJNTvcRHktm0cZSmtJFeQgspdSapR8JhuzZFlg=="},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.0.0-alpha.3.tgz_1466014948337_0.5379339947830886"},"directories":{},"publish_time":1466014951815,"_hasShrinkwrap":false,"_cnpm_publish_time":1466014951815,"_cnpmcore_publish_time":"2021-12-14T04:13:52.486Z"},"2.0.0-alpha.2":{"name":"vue-template-compiler","version":"2.0.0-alpha.2","description":"template compiler for Vue 2.0","main":"index.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue#readme","dependencies":{"de-indent":"^1.0.2","entities":"^1.1.1","source-map":"^0.5.6"},"_id":"vue-template-compiler@2.0.0-alpha.2","scripts":{},"_shasum":"441010add8ed18b2f140959b5cd83577eccaaed8","_from":".","_npmVersion":"3.8.6","_nodeVersion":"6.0.0","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"dist":{"shasum":"441010add8ed18b2f140959b5cd83577eccaaed8","size":33058,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.0.0-alpha.2.tgz","integrity":"sha512-SgB0UxnWuArjOKRUYGTzEgVsXM3Z3T2MEJYycm3iLm7scNlfpIIIoLHYnQo0rh1ZEgE4f/nMIfJ3BKb/gRb43Q=="},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.0.0-alpha.2.tgz_1465860998802_0.6736660019960254"},"directories":{},"publish_time":1465861001487,"_hasShrinkwrap":false,"_cnpm_publish_time":1465861001487,"_cnpmcore_publish_time":"2021-12-14T04:13:52.692Z"},"2.0.0-alpha.1":{"name":"vue-template-compiler","version":"2.0.0-alpha.1","description":"template compiler for Vue 2.0","main":"index.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue#readme","dependencies":{"de-indent":"^1.0.2","entities":"^1.1.1","source-map":"^0.5.6"},"_id":"vue-template-compiler@2.0.0-alpha.1","scripts":{},"_shasum":"6bdd707b8874b7b8d93430862cb0f98ce5365a50","_from":".","_npmVersion":"3.8.6","_nodeVersion":"6.0.0","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"dist":{"shasum":"6bdd707b8874b7b8d93430862cb0f98ce5365a50","size":32936,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.0.0-alpha.1.tgz","integrity":"sha512-/StewwQw3xob2PpfSHOr1KfD6VpDv1nCul+U30hbCvjBtNO9SPrneIqpmROvKW+FmrMMnMcI8PY1+Vwl2ivA0w=="},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.0.0-alpha.1.tgz_1465601004271_0.7862520646303892"},"directories":{},"publish_time":1465601007189,"_hasShrinkwrap":false,"_cnpm_publish_time":1465601007189,"_cnpmcore_publish_time":"2021-12-14T04:13:52.873Z"},"0.1.0":{"name":"vue-template-compiler","version":"0.1.0","description":"template compiler for Vue 2.0","main":"index.js","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue#readme","dependencies":{"de-indent":"^1.0.2","entities":"^1.1.1"},"_id":"vue-template-compiler@0.1.0","scripts":{},"_shasum":"8cc1c2fc14ceac3a4649ac5126f9103eeaf48622","_from":".","_npmVersion":"3.8.6","_nodeVersion":"6.0.0","_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"dist":{"shasum":"8cc1c2fc14ceac3a4649ac5126f9103eeaf48622","size":32429,"noattachment":false,"tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-0.1.0.tgz","integrity":"sha512-Y/kgG0p3Co10OEjlhAtHrEzPFgJvWqkMm0xqFsjFpytZ499Q/KqkkYTfeB7ghty+nEdrzOXd++glw3CyxGnmYg=="},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/vue-template-compiler-0.1.0.tgz_1465573666173_0.632203227840364"},"directories":{},"publish_time":1465573668751,"_hasShrinkwrap":false,"_cnpm_publish_time":1465573668751,"_cnpmcore_publish_time":"2021-12-14T04:13:53.083Z"},"2.7.0-alpha.1":{"name":"vue-template-compiler","version":"2.7.0-alpha.1","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","types":"types/index.d.ts","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":"Evan You","license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.2.0","de-indent":"^1.0.2"},"devDependencies":{"vue":"file:../.."},"_id":"vue-template-compiler@2.7.0-alpha.1","_integrity":"sha512-Nm2t6a+wSthJnB5cKgbc5LSPIe0pJVBiCcAGFDQQFVDFWjJsztjenYIsxvTpYHn3NJFqL788pqa759CpPyVqgw==","_resolved":"/private/var/folders/pj/3mm2hm5x6qq4mf8y8p7h3rvh0000gn/T/7f7f8eb97b896982c3b334157efa277f/vue-template-compiler-2.7.0-alpha.1.tgz","_from":"file:vue-template-compiler-2.7.0-alpha.1.tgz","_nodeVersion":"16.13.2","_npmVersion":"8.4.1","dist":{"integrity":"sha512-Nm2t6a+wSthJnB5cKgbc5LSPIe0pJVBiCcAGFDQQFVDFWjJsztjenYIsxvTpYHn3NJFqL788pqa759CpPyVqgw==","shasum":"288daa7a8049cdcca5951cde3c69c10e6e4dd8de","tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.7.0-alpha.1.tgz","fileCount":7,"unpackedSize":596286,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDPL3gJTdBDu6/v2K2zgfbFROiKH7khxZPrQMAmx05/GgIhAOCIkZdGj1NmTh8ih1XRvirkxBIeYCjsKqzndLyZ9+jp"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJileaXACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrQkw//Sez47sxFCQ+WKwA3mttv6PH3/cFBaUtDmPA34LTg9SUA9Xce\r\nflttYoHbFyC311ger38vrKp0qskRXINdZaPOYdJbFPIdl5QlNzLKRGk4k7yp\r\nKMkiiAL92ToBAv8P3/gbFKeiLUJMukw7jGSmE4XU/shnoEwq/HmDRMgFSDxd\r\nvN+zT1g2whnVKCXpdEVUq9+DOFf1H4KbwkEmfX/kUER/Cl6trvhsKkaZdvol\r\nqTku8VFo0xGO4LUu3tVvHn6Xr1vqeURahwSVyOaiUU4p2CIDTy7QvJXnBS7D\r\nq4M4LzJzz2UNuBPl1Nuhia4voZ50NSGVvEunhGQHHCs27ZDkjtCXTfRvtXP8\r\nfPQwr3jg8dowUGdJL1eoFbzhE/DxZQj/ZEjqHra27GW5lnjf6+H4a9G2ES1I\r\n0ZD596dE1tGggYcyg8gbr05IxISxgVm5PW2hkqxU4bJJLV/VYCbS1T7g1JWU\r\nExtlruM9Yu+S3kMuBr3ApfvxgmfuHQicrpvKVN3HlJW5HZBzOpgAKU3+Ahrr\r\n74XZoOlTqrTFEklxP8NqHeVFj4xyZelR+yckHlelbpBBcudp1eDhoNLzVdW/\r\nEPQ7MbHwQK3OlTroi+fTooNlxEf2NC083B1HBeuAR61Bn4VMKd6qKuiRGsK6\r\nEoJqyVXmTMYRJSi5aKS8TVxfvLMqGg1rsaU=\r\n=p+8N\r\n-----END PGP SIGNATURE-----\r\n","size":158172},"_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"directories":{},"maintainers":[{"name":"posva","email":"posva13@gmail.com"},{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler_2.7.0-alpha.1_1653991063728_0.5444368724829285"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-05-31T11:52:51.537Z"},"2.7.0-alpha.2":{"name":"vue-template-compiler","version":"2.7.0-alpha.2","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","types":"types/index.d.ts","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":"Evan You","license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.2.0","de-indent":"^1.0.2"},"devDependencies":{"vue":"file:../.."},"_id":"vue-template-compiler@2.7.0-alpha.2","_integrity":"sha512-8cm6f8Qrn5UOyVnpW25QzHmxShUM8JjBnpv5laxOVw5M0gWURYl3l5hXHoWv7fhc5BF3/N+M23EECXW7r6d/Kg==","_resolved":"/private/var/folders/pj/3mm2hm5x6qq4mf8y8p7h3rvh0000gn/T/b140c5ee81f17878548de45b54d825b7/vue-template-compiler-2.7.0-alpha.2.tgz","_from":"file:vue-template-compiler-2.7.0-alpha.2.tgz","_nodeVersion":"16.13.2","_npmVersion":"8.4.1","dist":{"integrity":"sha512-8cm6f8Qrn5UOyVnpW25QzHmxShUM8JjBnpv5laxOVw5M0gWURYl3l5hXHoWv7fhc5BF3/N+M23EECXW7r6d/Kg==","shasum":"12e7294d006e93fad24751d631bef0376de49ab6","tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.7.0-alpha.2.tgz","fileCount":7,"unpackedSize":595991,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD1+4VGzp1SS00KjvAqV7UvxlHr33HCumxl/WrZiGcNfQIgKjJ2xUOWwiMe6xUXEJYQe0z8yME3Etn15iRK3Zq2Fh8="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiltDkACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp2YhAAg8OkcRTDAsNSMROrCVlhIwms68GhiR5/jp93nXhi7F6wjINz\r\nWSmi9VicbLH0YfVWqeZeX3S/xnyfqzriJhaKVfKgw5KG5dsUiYGMUvimXKln\r\nekABjR8UX/SscYNC8DzvCoVWIM6o14zywDnkLSDY7WLeQPkkcBiB+zfQezWR\r\nPzLcE7kUf2/7aeyYTct+E4fuf2Q8mrtK3N7wPcQ4CO/vPJRoDrHBP8EADVHJ\r\n94YD1cftfgpX4mcaOPXCNXMWtWiyXqF5zRWmgceghg9C65dkEkSm6WlKi0g8\r\nUpPhPE/siBs6jYj3wXKYM/m+OFrqRd6eWcR+OsSeVUE1GNYYPXMteZ+9KnzW\r\n0zmK8Zx7bjxMgSV06AAwJ27gub0bB0ZygthwtEJidH8jdwjnHpA3AzqUzc14\r\n2EeVXjTiGXW23DVbTEe+xaz7vA7z8mHo8UfiXZdQv5JNv72qnVOql64fHGUH\r\nbwX329+0PzS0Ab5dOHOetOi4iYoAW/Wll0/QWlGn+MmxX+XdywDOQGVB5t6z\r\neqpni9vcs5aKdjuiiipo8PdXES/iaw1wK5800DedW95vu4vwur2tTBiWeI92\r\nT5oOpNvmgOtUrt1EwPVmGNpzUTIppELZP9xaFOWre9pvSeG6DhUuB43aSRmt\r\nEN1l9t3JvtkmzFJolwWYRzaxOvLnlBbiuuA=\r\n=NrTE\r\n-----END PGP SIGNATURE-----\r\n","size":158084},"_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"directories":{},"maintainers":[{"name":"posva","email":"posva13@gmail.com"},{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler_2.7.0-alpha.2_1654051044138_0.8997366250874337"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-06-01T02:58:01.563Z"},"2.7.0-alpha.3":{"name":"vue-template-compiler","version":"2.7.0-alpha.3","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","types":"types/index.d.ts","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":"Evan You","license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.2.0","de-indent":"^1.0.2"},"devDependencies":{"vue":"file:../.."},"_id":"vue-template-compiler@2.7.0-alpha.3","_integrity":"sha512-RKulQhRegysluW0LS6Xo5YwGgaGPmF3iHjyWwqIMbSbHw7Zk8/BzGncAI7+JDA1/bk2veLHqzlF+01T41bc9UA==","_resolved":"/private/var/folders/pj/3mm2hm5x6qq4mf8y8p7h3rvh0000gn/T/9cdd01883dc0f0928cd4cc6a6b02ea47/vue-template-compiler-2.7.0-alpha.3.tgz","_from":"file:vue-template-compiler-2.7.0-alpha.3.tgz","_nodeVersion":"16.13.2","_npmVersion":"8.4.1","dist":{"integrity":"sha512-RKulQhRegysluW0LS6Xo5YwGgaGPmF3iHjyWwqIMbSbHw7Zk8/BzGncAI7+JDA1/bk2veLHqzlF+01T41bc9UA==","shasum":"fadaad041eae6dbc620e9080c4c9e7eeb0959bc1","tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.7.0-alpha.3.tgz","fileCount":7,"unpackedSize":595991,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCyghBjhbCybs+7HtSZmZYj7u0vY4DJPPO2Wt5+BWmgLAIgUvvOSrDkDdTCgvkiXXWP45Tat/hRNCDmR3nXJE1lJ14="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiltlgACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmpp4g//RbGVzbEzSDKrSiCyG5rxe6AgluCrV2bR1SoxiNOj+4jyax1s\r\nfPI3+C8Nua2M/U0ckHiM1kAR8PM0zDWMSYhA+kuEkI3USeliBNbrlRVmW1gf\r\njV4hUjCczCisNi0XEyj94tpoBHh5W1z6SNX+v95dxFmRwtbPaKr3h+Ck1hNY\r\n6gCCRIMeGGE/XEt2MQd5KBfW/5G/BwAtZfzwpNK2kWR6jF4mUrU3xQG9kZex\r\nTNAdTkrp9la7IPRpTs35FxmR1f++GbOUrd0XImkTbb/bs/ZMD3ZoCIHHA0uq\r\nwPw3O1enZW/f/RJVdRgZIZfEzNybkN52/tPeqbvqf0IN/qxw7f+pIUIgqIuT\r\noIUm8+lIqDX7hnvY6o63ZK9DWyhiwDwtH9NPQa+D/t1fjNE7Obobl/Arqa0J\r\nw5ZhJy6RZPJtBstpJlh6aKqVTlgtSBtBIwuYs1HQZK6N+1TX+bBbs0/s5Day\r\nHD09HuKJ0AVoeqF9uHk85HcFeA9lrwjfEp1rvxN36o6wHlmDvV3VqBKTW1Cf\r\njbLKXZtuqWW9ARP/NuHEpgUtVb+oxEcJiNhhmnKHdTWzaBTPtmfV9LrwdYd2\r\nks15iV7xZC1MIVKd50qQzIVjrniE5gCw1vwG0G9PjaDlDy3mEN1dhpNo53J/\r\n/vfC0Oi9rkMi6sjiFClyVq0PwQHguYaAUTo=\r\n=ZmRT\r\n-----END PGP SIGNATURE-----\r\n","size":158084},"_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"directories":{},"maintainers":[{"name":"posva","email":"posva13@gmail.com"},{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler_2.7.0-alpha.3_1654053216296_0.6658769780900107"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-06-01T04:04:49.648Z"},"2.7.0-alpha.4":{"name":"vue-template-compiler","version":"2.7.0-alpha.4","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","types":"types/index.d.ts","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":"Evan You","license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.2.0","de-indent":"^1.0.2"},"devDependencies":{"vue":"file:../.."},"_id":"vue-template-compiler@2.7.0-alpha.4","_integrity":"sha512-j20mqOdZwBWmlwHbfdOcrba011o9lSeGuk9yv/i1zUontU6vcCzoU2DZi5rdXU5rQUh5Xo234VtYg8MTQIUGGw==","_resolved":"/private/var/folders/pj/3mm2hm5x6qq4mf8y8p7h3rvh0000gn/T/ca56c11f4616a4ad74306cec08da3c55/vue-template-compiler-2.7.0-alpha.4.tgz","_from":"file:vue-template-compiler-2.7.0-alpha.4.tgz","_nodeVersion":"16.13.2","_npmVersion":"8.4.1","dist":{"integrity":"sha512-j20mqOdZwBWmlwHbfdOcrba011o9lSeGuk9yv/i1zUontU6vcCzoU2DZi5rdXU5rQUh5Xo234VtYg8MTQIUGGw==","shasum":"0d21882e87fb5816c8043187cc60f75656ba7ac8","tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.7.0-alpha.4.tgz","fileCount":7,"unpackedSize":595991,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCQjIYFo2xFc6t6SJTw1uspp8PhnGOOnIBdyB5xoIS8cwIhAIPvWRd3pPQk9OEDCBTo+3kgtNR95n5UpviPg3Hpvaqq"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJil3V6ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoE2Q/+P7MknMlSjsAUc+1lGp5x0jULwudWQ+l+LbrvQRBM7+GQ+8uR\r\ncDCckEEt55YKRTDal25l1FrcyjMB5ofBSIne2BUHLRir6GQbEFPdcBuMy95H\r\naSW4UBjj8LgFD+LHPSJtvX2pMZZ/qSXGNLQm1Cr/8csGYhEoNqmTD8wkdxjY\r\n9Q2LYkGOeGq2U7sQaqHF3OGilCp3wszzYzxT41q42sU96zeRDzbDRsJG4sik\r\naPjRUJhp76ceSS1e0JEEyy04S2NX5vMTARR08N3Edn1qhtEad7rJHCRH3axX\r\n70AQJt5Pu2EEl6SOgeUemP6rrs4y793i/YuBvxYhS9pQQmJmtLd+lYj0MjII\r\nsIlXCAYcoeJ0hNsfnNOlO9bxWF1xpvJLsbn+UCgzpQNBJlExCbbPKe6Sobt6\r\nR7ojd4OC4gamvhzOyKKNC/+aLiY9Tz0ruUnhc2dlv9+MremR3FWsOZEfF5Ld\r\nxU4zaezZlsl/Cf3NYzk+YiiOCqgB9Q29Z5Y0Fj4Ibqo+f0NqYcrXpaRE7oIe\r\nSGvKDIYb8N+aLfMEGtNvOO9Hn5MF3g5lKKPcGPxZYZYgLJKCmRAZdc7S/5ok\r\ng7tJAgLG7D5zh19hbFZxjVCc3M+t/D2GCc56OmO//R4mfB7Pf/gyiLz19Azl\r\nOYMh5jSwTVVM7VS6yb5bSQNYGhLdGiFv7mI=\r\n=M82e\r\n-----END PGP SIGNATURE-----\r\n","size":158084},"_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"directories":{},"maintainers":[{"name":"posva","email":"posva13@gmail.com"},{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler_2.7.0-alpha.4_1654093178370_0.8702534521568417"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-06-01T14:41:11.269Z"},"2.7.0-alpha.5":{"name":"vue-template-compiler","version":"2.7.0-alpha.5","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","types":"types/index.d.ts","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":"Evan You","license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.2.0","de-indent":"^1.0.2"},"devDependencies":{"vue":"file:../.."},"_id":"vue-template-compiler@2.7.0-alpha.5","_integrity":"sha512-73SUSvJEiGVUb8x6dX/3KXIS8MZ2AuYhADbBntQA/AXO1+33DwTU8kNKnFqU0UJhCRVOi0PpXra0XyXlJ8+EIQ==","_resolved":"/private/var/folders/pj/3mm2hm5x6qq4mf8y8p7h3rvh0000gn/T/7adf7612f9dc71cebd58d4a34dac3cdb/vue-template-compiler-2.7.0-alpha.5.tgz","_from":"file:vue-template-compiler-2.7.0-alpha.5.tgz","_nodeVersion":"16.13.2","_npmVersion":"8.4.1","dist":{"integrity":"sha512-73SUSvJEiGVUb8x6dX/3KXIS8MZ2AuYhADbBntQA/AXO1+33DwTU8kNKnFqU0UJhCRVOi0PpXra0XyXlJ8+EIQ==","shasum":"c10969da76e3878170b4e0066309fe865271c31e","tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.7.0-alpha.5.tgz","fileCount":7,"unpackedSize":595991,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAP5GKF5jpvGWGTdphqx6Gz+ilbNhl8PEXMmXSHJbtaXAiEArB7vb7v2MurYnm1vGV6jwjn7b+udmmpmqpjNGZVw9pc="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJina3GACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrWTw/9HN4QfPihQOaoBWyQQYsWINgb9AFLHFKSN6xKoUIGOniFCnjq\r\nxo+n8/m+DUNF8knILYofCMalM+DW8/xGAHBHg3OwDho7zWwNClMTFCiZRctL\r\ntm7yf3rfhBJDv4NWxQhmbUihxG34C9nPPmztwrx6itOzfX1zdwx0h1vHHaAq\r\nLE+e2BFwK7bnqb9OiNP3wcPzjLzMIopQ1W3h5+Zkcu7AdzxteWDyQrWe/wKo\r\nFNkJFmwRyw0P+7vRllDqWy3lg3BeR8mSLMF1/hJxgVsyT/x3zPYxtoSKfpsj\r\nv97sNtKQNa84PrJOSGkjy15C55+sIpuUE06JubRAJ3W8x3JDNk+cU1CLKSCR\r\nNz94CXWtcNGu7HizWH1DhkPmOIBqeU8zDERs3BWmQqx6nZ//BjfZ1ym5vzsr\r\nQRHdnwbMWvVsJ7p3Q7fp6L1Yre+4VS6zQ+Aom2A+6YntZyCKnBrcWICNn4M4\r\nbWyXpiBu3+Bh1vEksNoANA+ZDMgKTPKaZ67nA5PFehRNkQDSkO52lRwu4bXl\r\nzBKi6IqGH92hVmyR+c7U2pPQra0KOHJafmanbKg6SIFFxAiB20/mSDNbENmO\r\nunXqVBtp0Qv94XUOqFQaXC8iX84gwEfffmYj/dVkr+qmMSVm+J2yL/Uve7wi\r\nOg1vQiclxlapPY3Xqx/qeXjY4Q9WCnuvj7o=\r\n=Z250\r\n-----END PGP SIGNATURE-----\r\n","size":158084},"_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"directories":{},"maintainers":[{"name":"posva","email":"posva13@gmail.com"},{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler_2.7.0-alpha.5_1654500806331_0.9336471143323473"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-06-06T08:09:25.920Z"},"2.7.0-alpha.6":{"name":"vue-template-compiler","version":"2.7.0-alpha.6","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","types":"types/index.d.ts","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":"Evan You","license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"he":"^1.2.0","de-indent":"^1.0.2"},"devDependencies":{"vue":"file:../.."},"_id":"vue-template-compiler@2.7.0-alpha.6","_integrity":"sha512-JDCP08Q5FW5Uvalk1TSQPVaVXgqnM7tvDZWpNuv38hy7MemdOglY+mp5NcX516BHo4kk2ImULpeDXlMFTupajw==","_resolved":"/private/var/folders/pj/3mm2hm5x6qq4mf8y8p7h3rvh0000gn/T/01af794fff4ac9cdd02ed1d97992da5f/vue-template-compiler-2.7.0-alpha.6.tgz","_from":"file:vue-template-compiler-2.7.0-alpha.6.tgz","_nodeVersion":"16.13.2","_npmVersion":"8.4.1","dist":{"integrity":"sha512-JDCP08Q5FW5Uvalk1TSQPVaVXgqnM7tvDZWpNuv38hy7MemdOglY+mp5NcX516BHo4kk2ImULpeDXlMFTupajw==","shasum":"1a93d03e789fdb553b20f3e216990a6addfcae99","tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.7.0-alpha.6.tgz","fileCount":7,"unpackedSize":596166,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHbnO+q/SV9oEAWbN/J9elTh+rjUI3FqI8hLTCeVCMLzAiEAg7iLotxyU9k/qwDfEz6YsVtMsUpJT+bh4Z5QKd3rRbc="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJioZdrACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmoz5w//dgebwOWyFUk4Nojqni6iY+DHj8EXROKnBaNihn1qzdXnGCQF\r\nVPUIlPf2tQlsqxuoiXNS5AZYByUFcA9fyVcXM+S4zejOGkfcpdsaVqAzj3WL\r\nqQAzaSOYQtciAcjoTknUIZzzmrlX00CUYTKtqJciTgLKOTg80RYNzE0Pp5V5\r\n1vOGK16g4j8kvtBjeLOEyhPeguYH6VzzJ467EIwGCjj9lXTpwxmzTEyDmMxk\r\n09ooWPxp9xpK95z8TP8WLI9O5iuDFQeVb+gZBq2I5XbvRx1znRb1GXKKvgMs\r\noBWZkfW8ImQDJK4Oxz5eYE3IR26SKKhtW+npgL+NSBL+FLXye/M/LkXitkFd\r\n3Uzo8aGoMP5FBNIGlZcMVaxJsdZ+nIQo0BmS9PhsUpsVXYDyfItI9A8YN7ju\r\nmklFnkdQ+ld6R9kQtYGZBbpkCRV9KIsL5QuBJHdcW0T8C/Iwr6z68wCudFNd\r\nEc3F8MdDsr96akr/GYwPx0DOR/uws11eJ4djUHPAMnNPa1KTzSIKsWkjD/0u\r\npx4TO3tiI+z82Sy3OH7VZWjNEHBTQzSkcHGQ8bK9uryVhiwu6SgBMsMAtq/V\r\nwVd1NmnOoirLm5yJNTirJ5Jjdr36APmpKGXvt3OgtZFv2rcMJi61utrPx3hA\r\nZ1JiKcJmeVCEdlHP2ZWjYRBn/vtS7fhSWnw=\r\n=vLZR\r\n-----END PGP SIGNATURE-----\r\n","size":158081},"_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"directories":{},"maintainers":[{"name":"posva","email":"posva13@gmail.com"},{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler_2.7.0-alpha.6_1654757227367_0.2490631354986501"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-06-09T08:08:09.027Z"},"2.7.0-alpha.7":{"name":"vue-template-compiler","version":"2.7.0-alpha.7","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","types":"types/index.d.ts","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":"Evan You","license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"de-indent":"^1.0.2","he":"^1.2.0"},"devDependencies":{"vue":"file:../.."},"_id":"vue-template-compiler@2.7.0-alpha.7","_integrity":"sha512-pKEuZIpuDHGzowV8v7V6rZrvDVKIUZAuuDFURyqsrBHBSlo3U8s9/N9SWAMkTAmL445e4v1xbwZEQtlnDJLWlA==","_resolved":"/private/var/folders/pj/3mm2hm5x6qq4mf8y8p7h3rvh0000gn/T/7ff7cec47b77a7dfa0695f94804f3b67/vue-template-compiler-2.7.0-alpha.7.tgz","_from":"file:vue-template-compiler-2.7.0-alpha.7.tgz","_nodeVersion":"16.13.2","_npmVersion":"8.4.1","dist":{"integrity":"sha512-pKEuZIpuDHGzowV8v7V6rZrvDVKIUZAuuDFURyqsrBHBSlo3U8s9/N9SWAMkTAmL445e4v1xbwZEQtlnDJLWlA==","shasum":"f8cda4db0d25863efcb1477e961587c661ddeae6","tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.7.0-alpha.7.tgz","fileCount":7,"unpackedSize":596166,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC4PB8j/kVi9laYDwV9vau6FIs4gXK1LGc9opxFqWZOXAIgM9JUu5VAHRzSKBAbvfAMmluH0v+r3cWmtMuUt887YoI="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiqKlEACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrEtw//eiBWLaauk/pUshK7mN5Dx3VU1E4USwIBPL01FxqTeSyh8dLV\r\n9pE1QL1Z6NZnd3GLIn7UgCTmFFKZCp2uSnSXnZskhHZvzJNqEzQWFcXa4kDz\r\nL4XY5UH46FYog4j1ZaQP3FnpTXvkxNNRPiRU8/LE/diFR78a2hTvhSK8tywP\r\n/92Zd0qFo8TyF8E/5QWna4+6a4XcRPMBau6YUs+s4nfGMhGd7wlncTf8x1uu\r\n9uF5BeGlEJlPcfBQMCsaqlK8J8AejOCJZ8cTxWSF4nwe2KFgXgjygTnylTol\r\n09sSMnu1VfCXo/x1+559LOeLg+5YJdpHiN9O+4KQRluyQ8kjCz+2bB5DEVd0\r\nfnyCacsg7bXK5Y7biaDZpKIaQJ+By+KmGR3DiT7+o8jNwlYKQD+5UwZK7Unw\r\n6NWbWgTTdYSfcjdA0JcljLWq6JoqXR2K+IyLF048qmNRP5YTi0sOC32UJjrc\r\n/hIRIxynzY/857QgfqfJ5XREGY/NRbq3O0Qk5/N80VsOjjVf0jVC2C48xrAZ\r\nmpmM5f3t72g0mgh0VK8dN0G18tIZ+CC4uqT/QGVVIbB5ufecq4FNZBaMMeuo\r\np8xkZ/wa6/wePvExir+UAqEZbf3+4JyPU1CchsToOHCKJPg0zTL4BEpof3xY\r\nZQvyWg45RJGxoPqwtf/vl4yRGbhS65+xaO0=\r\n=tMwa\r\n-----END PGP SIGNATURE-----\r\n","size":158083},"_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"directories":{},"maintainers":[{"name":"posva","email":"posva13@gmail.com"},{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler_2.7.0-alpha.7_1655220547852_0.9918975443096063"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-06-14T16:31:05.719Z"},"2.7.0-alpha.8":{"name":"vue-template-compiler","version":"2.7.0-alpha.8","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","types":"types/index.d.ts","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":"Evan You","license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"de-indent":"^1.0.2","he":"^1.2.0"},"devDependencies":{"vue":"file:../.."},"_id":"vue-template-compiler@2.7.0-alpha.8","_integrity":"sha512-4OyGzGEQylXTOrA0EOLgUoI45WCTX9qTPrkUIQbLjONLunF55fY8SKnD89JaJsXnkZtQsBU+3Pxo19lewhEUVg==","_resolved":"/private/var/folders/pj/3mm2hm5x6qq4mf8y8p7h3rvh0000gn/T/b15bb03584cb079fb06b9cf09be24910/vue-template-compiler-2.7.0-alpha.8.tgz","_from":"file:vue-template-compiler-2.7.0-alpha.8.tgz","_nodeVersion":"16.13.2","_npmVersion":"8.4.1","dist":{"integrity":"sha512-4OyGzGEQylXTOrA0EOLgUoI45WCTX9qTPrkUIQbLjONLunF55fY8SKnD89JaJsXnkZtQsBU+3Pxo19lewhEUVg==","shasum":"ce649b48cebdbf943eea98d36f8a047b136a6551","tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.7.0-alpha.8.tgz","fileCount":7,"unpackedSize":589638,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDcIvPqz1RGNg0RXmd7SxZHK2hOBONsmF6Sc4MXsTLsnwIgBFFM6ig+vIJGt3UFoAys5ie6Fue0w1XyzCnUqJAKzEQ="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiqK1sACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqnIw//baQWwsDbBVZDe10kl1SEGvvPHGHnXFXz08acqKv+qEOLUP8v\r\nu/G39x5jInOzl4hdYJ24oVOUwn6wVt6scWNCIFgEbPIuhMEhpEVP63fJEhA1\r\ny5RqQSD+gYMZXcz1ejcBTwp3U2EBLfY9uy5CT/tEo2jpGEJ0Vi2SXbiDEXgl\r\nSrX1N6iTE/Hhw9yLzm+MiJPUAVp2X35fEs9EIyCsPh1lniizcE+Mfi0TbQ5B\r\nUEzgBMolsT5YAZt5CEt8Qr0LvlYX7JkDgtG25hVtBf+xSLfPbv+x+DcbNvSc\r\nz6/af/DOIjCkZbZsFREinS4799k1wIW3TwEMVi9nIexB6+4/kDdtYkKPkAR+\r\nDKE6noGZlcr/lEfE8uEAhJDL3u397GRXALn8Thez1qy5Pyt0k25oU9iviORv\r\n5O5Yay/NNtjxmrJc+aR9Dqk/toHZY+VzIFTCJJoTwMz5mOT0fpFXIbGdw4gj\r\ncxJ/03q628VLGm68UiwToOnyPR0nt2cBKc0t8F2PJ4VJwWoBLFlkcZOZCyQm\r\n5rqNaHHWZR+6Vo9XoYU/OCf0AjB4Bi/7MDndPUOzdnCzzwlfrOub1w4D8q5s\r\nbrtxnuRsHOGp+TD3tGvuqxPaGPtlt+voo14gNDlLyCVSegUmtdBhdxWmglsB\r\naPnIG9ct2m4gdxcIqC7w2/kqNrafdSr+I8k=\r\n=tvgm\r\n-----END PGP SIGNATURE-----\r\n","size":156803},"_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"directories":{},"maintainers":[{"name":"posva","email":"posva13@gmail.com"},{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler_2.7.0-alpha.8_1655221612448_0.6656011228499341"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-06-14T16:31:07.076Z"},"2.7.0-alpha.9":{"name":"vue-template-compiler","version":"2.7.0-alpha.9","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","types":"types/index.d.ts","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":"Evan You","license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"de-indent":"^1.0.2","he":"^1.2.0"},"devDependencies":{"vue":"file:../.."},"_id":"vue-template-compiler@2.7.0-alpha.9","_integrity":"sha512-pTSQdE3dhHYckc3HnVOUmj5IP10yjMe3ZxhjoSlEvFaeGp+oRXPpOOF+6k/1whH0mjFSD61jMPFUuGSFJn1Ylg==","_resolved":"/private/var/folders/pj/3mm2hm5x6qq4mf8y8p7h3rvh0000gn/T/8ed622047abe2d5e130a1d29b30262cd/vue-template-compiler-2.7.0-alpha.9.tgz","_from":"file:vue-template-compiler-2.7.0-alpha.9.tgz","_nodeVersion":"16.13.2","_npmVersion":"8.4.1","dist":{"integrity":"sha512-pTSQdE3dhHYckc3HnVOUmj5IP10yjMe3ZxhjoSlEvFaeGp+oRXPpOOF+6k/1whH0mjFSD61jMPFUuGSFJn1Ylg==","shasum":"f41eed4ca813874b56b2169dd8b8f4d30f7f158f","tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.7.0-alpha.9.tgz","fileCount":7,"unpackedSize":591063,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCwc/IMtp6IRi97NHhBRUVfmSdL9geNIHjRb1DRIx47tAIgTYnyFp6L9bus54HFmYhVmTEbRsCkw7Ijqw5ezSiZ1S8="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiqpcqACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoD1Q//YsLK6GTD+ojWwp6G9bsfON8DzH5IuOBimeGOqZb/Wka2aWpq\r\ntIUAnNRG+D3Z/eY9gwKk+omCuwxEfws3h/bVDp23ggh3+/Y1OjOIBkRnrW/5\r\n32tQH3kBoty3SSKS2UHcCGWZ2ie/CJzSX09Q5+8qQdlFLhI7kEL09f1X0ARI\r\nsUhzNx9Ylf1KMjBsdPXFLnxVC/IrK3HImYDCgXWnVEaProAn5PezJ4+d7fEM\r\ngkEtCXL3Gf+n3mIcMY26iR740xSsb7vwcfLnZvmIxdsg0slkcgGBx9kGFIQA\r\nFLmIQvMaLOYx9qQN/gzF1sj8pMDljDc3ps7cUAsX+AuJXHW67LBdamYeuouq\r\nyr+8+2HzIzcQN1LYxF8wX60LsHyjB6Ld9dA2tuqj8x/TmAG/zxJ0r57LrN3N\r\n1op5GuTzJaHpC6+6UDVtEYhr/8JdY6OE+bFg8l08LaVZJUxVuwJ3jnWdsOLE\r\nwPf1Slm5jHlkrfjBb3lGpCqEi9pauPXKgP9Iy2++0vrscVNAnWBlw8AvuN99\r\n5GnOmrHBxYU0TdTyVT0SirJOndAcgVqP7Ga8+CdRIOKd/pNd4rILNeTQWQfm\r\n9OEEVOBt5QLb/adI56t4IZurIunTaGVC8nxEmW60s5HwRxAmanFix04XlCVR\r\nNek3zfn+UsF/i/wp0p9GmD/G6TUq3m1hrW8=\r\n=f0D6\r\n-----END PGP SIGNATURE-----\r\n","size":157119},"_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"directories":{},"maintainers":[{"name":"posva","email":"posva13@gmail.com"},{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler_2.7.0-alpha.9_1655346986031_0.06641774699187297"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-06-16T02:39:03.282Z"},"2.7.0-alpha.10":{"name":"vue-template-compiler","version":"2.7.0-alpha.10","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","types":"types/index.d.ts","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":"Evan You","license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"de-indent":"^1.0.2","he":"^1.2.0"},"devDependencies":{"vue":"file:../.."},"_id":"vue-template-compiler@2.7.0-alpha.10","_integrity":"sha512-wJj/3/87pZ5gdJ9TJCmEpsjwuLkr2aPygkm8oqTcc5p2+i06mOZl9FixZHnLTRiiHJFq980aPGfj36qGCAa57g==","_resolved":"/private/var/folders/pj/3mm2hm5x6qq4mf8y8p7h3rvh0000gn/T/f2435118bf34fd8108525c002beb2355/vue-template-compiler-2.7.0-alpha.10.tgz","_from":"file:vue-template-compiler-2.7.0-alpha.10.tgz","_nodeVersion":"16.13.2","_npmVersion":"8.4.1","dist":{"integrity":"sha512-wJj/3/87pZ5gdJ9TJCmEpsjwuLkr2aPygkm8oqTcc5p2+i06mOZl9FixZHnLTRiiHJFq980aPGfj36qGCAa57g==","shasum":"1fe433fe95f8edd8d8da41feb557b9faa006bac8","tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.7.0-alpha.10.tgz","fileCount":7,"unpackedSize":591064,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDvXOwCjeiEDPY4AKW1u62XXi7lFqDpVPY2glBHSTCEIAIhAJI97icuGvuzR5riTrEGN5KcHOxC0EIsoAgxE9pcgBU5"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiqvVrACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmopKA//agS4xjktzSWfASSpNSpCJRd0d+s+C5i9iCogolk42g2SF3tK\r\n+7eMV/3cjFNp/EUXfJjtPvBg/Uc7Z+gw+mQ05A2gASjcGrcf/4c7gCdx67D3\r\nsZFd4rq+JjQPXpumnBDzqIyxrhlLzzlzRqzhnTNRx9GiQs70rjPEyk4I73Vf\r\naWQG+J2T+xvhAWINr2nhCIrBgk13FDWUrV/Zjw0Va9Vw0I5JkWefLHO2myzX\r\nbawQ/4D+psZ2MhpQZyf/sSXaCpdYc2tYoaH0BcD7B/EDy1cI2MCPzpdxHpLt\r\nq9xMndUjheSaL+RLpn/5hQ5jNKFHg7AJ7TwvKJp1eQzGZ6VPz3f3q70AczVx\r\nUu8DAAWv28MAD8WjYUhKxdk9wRlJUjnMwmkZfQP6zvivGYuvCAXX5DqYhI11\r\n8hJLJ3BC2GzfOcGwqZbDLRleEdoy5EnkduTedE+YhWPQCN+pFAUzn/XxIJkU\r\nmyLJJA64Kc5unAhGuflsK1qOB4ZE2nVJywfUC7hIwUY2qK07gCdm8i2pNyQU\r\nV6xQQQw0SCvGgEiqBSn7mQP7wEWymP5RXflNY5c58cpcvuCVTJgRZHicWFyW\r\n5tB6utWYONemGLEySUjvy+A07WvEASWKW9+uUpUwqlCNR4SygeTqH4ZyHIvh\r\nn+KzYpICxLQX3S/fyplBNFDURUbwTTabZh0=\r\n=JaUS\r\n-----END PGP SIGNATURE-----\r\n","size":157121},"_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"directories":{},"maintainers":[{"name":"posva","email":"posva13@gmail.com"},{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler_2.7.0-alpha.10_1655371115687_0.5321514281900732"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-06-16T11:43:15.709Z"},"2.7.0-alpha.11":{"name":"vue-template-compiler","version":"2.7.0-alpha.11","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","types":"types/index.d.ts","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":"Evan You","license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"de-indent":"^1.0.2","he":"^1.2.0"},"devDependencies":{"vue":"file:../.."},"_id":"vue-template-compiler@2.7.0-alpha.11","_integrity":"sha512-ifyqTTYOwBMsdKwwytD0XuKfrZc+UNnglEHLd20OuO611mNTI47fJp7zje9mi3//qLaXFCXjuXs6qpVHuCbFUg==","_resolved":"/private/var/folders/pj/3mm2hm5x6qq4mf8y8p7h3rvh0000gn/T/206d84a95776601c360f69fa5b61214f/vue-template-compiler-2.7.0-alpha.11.tgz","_from":"file:vue-template-compiler-2.7.0-alpha.11.tgz","_nodeVersion":"16.13.2","_npmVersion":"8.4.1","dist":{"integrity":"sha512-ifyqTTYOwBMsdKwwytD0XuKfrZc+UNnglEHLd20OuO611mNTI47fJp7zje9mi3//qLaXFCXjuXs6qpVHuCbFUg==","shasum":"9b15533faa9923344f165dcbd2a823dd7cd4aed0","tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.7.0-alpha.11.tgz","fileCount":7,"unpackedSize":591064,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCpvyTzawlSvBOQbGR7f/26b0SPx+trMlegme3VdAWs3QIgX3H2+DXNQ/vn99VOXyda98c88TWNOtj4kX3+Y2fL06o="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiqv2sACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrZBA/8DdrcHt/TLp2vJeqKTjccPJJ177mKEOmY4jmk8VzAxsencrx5\r\nBGi8sRW/f9MNPWWgIkQdmQJNVQfTFh0VujX0/3Vt6CT5s8vr9dB00p2duflT\r\nUr+x3/eQENi7L4/I7pI9LN2DuSvIAj3pQmYUUqbfVfCrCEV3NT9ewq+/bx5y\r\nC1cC0zHoKg22yRBLwtAUqRWUPXVkaEIH/jqLzV+TUE804pBspOgowOFwNk9B\r\n8YDrVijAUjvsmqCzclrz7xvtwDSfTdT0yAXYPy+ShNehgc9raXRazRtkO3OD\r\n4QdirgNONqDzQIUcgZW4wy5/mR812pSC8u0qPQxr52WCKSzX+aSET+7kAR1K\r\nVSkxHQvQ3sa472sJLnHfSDnMQsovJSAjQeJw2i42oF5JVG05Ez/WgAM4Unn5\r\n0uaD4T7BDvW3KNCaZrnrug9QHXetUaWrcOx33hPGhdiRjGmbzgofPBFaRB2l\r\nEik+dNxB3AZJXs7/vcFwkyxbmlGf/6bCjMNRpsWB3KvCDmIeTpfpK1fl6MVU\r\nayFx9hfJNFuypXXqrfzlMA5egc46LZHMRWTfpdrnv/osIF90BeLqCPFyV3SL\r\nAZM4lWX1usiW78YKWX0lhchC9yP9muOUBEGXfx00zIbxEfaqHvsvs/4HR2WZ\r\naWvsw0lnEyil35qe1QsuwX8P6FI+Xww9XYg=\r\n=mP+P\r\n-----END PGP SIGNATURE-----\r\n","size":157122},"_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"directories":{},"maintainers":[{"name":"posva","email":"posva13@gmail.com"},{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler_2.7.0-alpha.11_1655373228151_0.1680887779852287"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-06-16T11:43:15.803Z"},"2.7.0-alpha.12":{"name":"vue-template-compiler","version":"2.7.0-alpha.12","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","types":"types/index.d.ts","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":"Evan You","license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"de-indent":"^1.0.2","he":"^1.2.0"},"devDependencies":{"vue":"file:../.."},"_id":"vue-template-compiler@2.7.0-alpha.12","_integrity":"sha512-AhRpXMKT6WWoSWL1uD8kvT68qHV16u/jVABzbLCvFv+KhhYHoZ9PyGd1pH4gDq7CbV36dmIV5YCAnolccYavFQ==","_resolved":"/private/var/folders/pj/3mm2hm5x6qq4mf8y8p7h3rvh0000gn/T/0b0be4b10e4cbb3b4123883a19fefff7/vue-template-compiler-2.7.0-alpha.12.tgz","_from":"file:vue-template-compiler-2.7.0-alpha.12.tgz","_nodeVersion":"16.13.2","_npmVersion":"8.4.1","dist":{"integrity":"sha512-AhRpXMKT6WWoSWL1uD8kvT68qHV16u/jVABzbLCvFv+KhhYHoZ9PyGd1pH4gDq7CbV36dmIV5YCAnolccYavFQ==","shasum":"4e771dd4631e271cec3e9e2addadf5a650c74cb3","tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.7.0-alpha.12.tgz","fileCount":7,"unpackedSize":591064,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCID8QwdLVI1roFa9z4T+ZX3XEwUXOhMn9o6Ut1+GvMuZ9AiEApBCqlvqPOJttp/HFhuILLlx0ODFwQtoN4eJdB45lL5g="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiqzXCACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrHyBAAmEHUogQe351ysGLeFX+jKe50Z4EPktyl5WALoJOPboRFqUYT\r\nkL/dB9oF60QEpOUD3MaMu4AERvxMEoG6y5Ul5ekUE7JuWnXMUALRD7a6jb7H\r\nbsSd0Ym2UTkMB6mxHbNPv+a4iAdnYDMQM0P7EqKfALrcwDAr5w7FKdwS9RSJ\r\nH6Y1KySAA+XOHqoUSpmQay5IzmBPhz4TFoXjIEypkJl0Ny981YRXFOj/8YOs\r\nN6oSwo8FBzRlFOK8/hFKPIrJIfjrE8NBu/4AmxLFNO3SZAYC5ITu9A68oR9n\r\nkmBTvPINQfKPdY/28a9VlvolRH2MRMZXGyfTN2YsPXwDGoEjRe8jKzS7pnJg\r\no9Z9ADqwQ4qbTuKb73M21ET/FCHGCW0s1JMVnRQgCBnq1rjPGzn8puG6GNkt\r\n28Xl5HXe5+BL30szpQFOfUDasggSOjv3QiRXm6NKGChS7Rx98cUExNguZySY\r\nmedG5CZJSPCJZ+fgTt5MvZRyipFXatj0lJUsy/wgLVVnggEifbyCgMUXZ6I7\r\naumruJeE2XYm3xYNfPiXtQMYoTVrF8KliwwvP2vlIyZI7HDRSqn52MvXByNA\r\nxkyiszUp25lDpO2zs6NYfISJoa0cqeRsl1zLArD3sD42gzprechFw5lu+5W8\r\nSTQlzgEqpd1sIkgO8qBGTiyvfjnRjqq3waw=\r\n=ftz2\r\n-----END PGP SIGNATURE-----\r\n","size":157122},"_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"directories":{},"maintainers":[{"name":"posva","email":"posva13@gmail.com"},{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler_2.7.0-alpha.12_1655387586069_0.00714002518948198"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-06-16T14:24:46.489Z"},"2.7.0-beta.1":{"name":"vue-template-compiler","version":"2.7.0-beta.1","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","types":"types/index.d.ts","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":"Evan You","license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"de-indent":"^1.0.2","he":"^1.2.0"},"devDependencies":{"vue":"file:../.."},"_id":"vue-template-compiler@2.7.0-beta.1","_integrity":"sha512-wucDIyE1J2VJnAgQVJTBDhdRZE8B/A5p70NtsTFbTasW02l6ZMvXMDGaJ3Qon24xsEjREKy52ra2h0jqlGn4Lw==","_resolved":"/private/var/folders/pj/3mm2hm5x6qq4mf8y8p7h3rvh0000gn/T/4fc5de32333c485812cbee8c12ab0d5b/vue-template-compiler-2.7.0-beta.1.tgz","_from":"file:vue-template-compiler-2.7.0-beta.1.tgz","_nodeVersion":"16.13.2","_npmVersion":"8.4.1","dist":{"integrity":"sha512-wucDIyE1J2VJnAgQVJTBDhdRZE8B/A5p70NtsTFbTasW02l6ZMvXMDGaJ3Qon24xsEjREKy52ra2h0jqlGn4Lw==","shasum":"eb45e949c8ab290296eaee6a6d42c5780717e762","tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.7.0-beta.1.tgz","fileCount":7,"unpackedSize":591146,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIE3ga3aX51cmhhKXjmBEvAp14RmzdoU1b6g2Xx/NN7wyAiEAk486r8aC4MvXC58BGJW2YiOf2eQSR1R1Z+G66UyTLtA="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiq9+mACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrOqg//Xn3CdQ490W/tkaIbO5DZK70tEl5mmWeltfLPv/kOpIurnVID\r\nqULESCbb27UNlT31MR93xs1wfEhDTFHhFzwaMvTt7tmNujQ8lqW5BOAimNGi\r\nxKxUKzPPIJU+AhuoglJT2KAY5t/9/pYj1uy3lLKn3rlw/ZkhI2SNIPPy/SxN\r\nVOZe+hIH0Y3TbrEJ0reWuUB+HIRAuig5fKIHfVk+n370FbtUZlhJHtf4U8DO\r\nhw2pJnTgcYax/KBGY10kjBZbuT3Mct1jW7F8cHWiC/H71Ip3YJqs63opu0br\r\nCQSR8gUjmVE3EDQ4ByV3dgCZe4Et76LLqwXmp7Ob8VyCrCfc2kIpG0Y0PmEl\r\nyqObJ0zqNz2xGQpgtSTrwlPCDwpGhkxhhhJH5lIlz2KhBD2HepXlACG0O858\r\n5NmWoVQOCwt1S1O+TFxZKKAI6a3f4nMZFf1T96u9gy4l5VtkHShdzLvDxlz9\r\nPvhuGhQpugJ2cGL49jRLKqMuSAHN0PHidGFN67MmKGuWoOj2EFMF+p+F3e1Z\r\nllwFyT2xZ9kToLZ+ru/dBWAngL/PoMXooaFFC199bo9MWmhGePlX3wgpw26h\r\n3lRFxQAU42l9zjuJBbS79Y1ddiIWgcwokFW/0E8IK+mQwvzP4Ppf+jAlJuDF\r\nLzGNugz3Yf0ajxw6tIBv7rB3ZM+0GiYd+w0=\r\n=iXDh\r\n-----END PGP SIGNATURE-----\r\n","size":157130},"_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"directories":{},"maintainers":[{"name":"posva","email":"posva13@gmail.com"},{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler_2.7.0-beta.1_1655431078218_0.5325730206878889"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-06-17T02:03:35.070Z"},"2.7.0-beta.2":{"name":"vue-template-compiler","version":"2.7.0-beta.2","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","types":"types/index.d.ts","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":"Evan You","license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"de-indent":"^1.0.2","he":"^1.2.0"},"devDependencies":{"vue":"file:../.."},"_id":"vue-template-compiler@2.7.0-beta.2","_integrity":"sha512-CG0oQI87Rsw9iCd33npVRuqEpUgXHk3SQnlVe/rO6w5VjM2tmQR4YKmbBlkKa5Ko4eIe2BrxBiyNYk/ztFM+rg==","_resolved":"/private/var/folders/pj/3mm2hm5x6qq4mf8y8p7h3rvh0000gn/T/a5c5ceb2e2230ce3098b6fbf7aacacb2/vue-template-compiler-2.7.0-beta.2.tgz","_from":"file:vue-template-compiler-2.7.0-beta.2.tgz","_nodeVersion":"16.13.2","_npmVersion":"8.4.1","dist":{"integrity":"sha512-CG0oQI87Rsw9iCd33npVRuqEpUgXHk3SQnlVe/rO6w5VjM2tmQR4YKmbBlkKa5Ko4eIe2BrxBiyNYk/ztFM+rg==","shasum":"7e4308900f324a1295a3fab68e902ee5811c3587","tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.7.0-beta.2.tgz","fileCount":7,"unpackedSize":591146,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDpVVEXlqxnGRP5lnoNxdobDzYGmKFDSw54ykOhkO+IRAIgG9cJJdwdxP1/pUk6z1tGe7cqXZ9WQSRsnNLn5LYytpg="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiq+2OACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr8oQ/+NbulXzs5GDz6pjZROqx9KyjAKAMAJRob36CzYUvpH96bCcrH\r\nB78F/T/egl3cbbN3O0nq256AzlqOu3XUm81M5E+lXczDppl00Nx5idOmDJc0\r\nKlCot/ozN8IhYqfdhcgnHD8mjI8LRkWj5Q/6338wpLmWl3OpJkyLkOTTYEkW\r\n/DcY2Hbt9FLzm5qw+wonBHsF2crN2JTOMvz+53aW5kaD+DJkcVsNDNrGlOJE\r\nNUSdkL+pLCT10cdVkWIyq9luaIwsmirTxq9pOcjy20N3DIalhfmXgvHoCr2x\r\nQiMS3HwttkaMAIxsEQtnmKx37OVJoWw6cJ6mveqsLZRb40PjMQuthjjv07Z6\r\nxZ6E5UvhUiyIue3L7gbMHOkbw2E68XNY6E1FbwoQbs/0aGRz4yD4QClCcSza\r\nBiz7+vRZexS3G/WT/nJk06qPijO2v2hK4vh23hwP3/voK26m/ggLLYqvE9E1\r\nFNcMPBOdIx32kNUpavo6bFnf+utP/EYiV7admCtNrMdVngi4d+jdtumxUG8w\r\nZ5SJpFnFJAs3hLXDXxdTBt6+vyyJVT/r08Vhsxk9JXBaw8bpw/3B3ETYKAiY\r\n9imB8d2Id8mfZ1uVc8YmSRMpmQo76g6L8teTIZHw2FQqSls8Mww6/x2IvM9x\r\nD4MUDr4+BKta5fkV3sufO+fnbbLpmhXFHTw=\r\n=xTS+\r\n-----END PGP SIGNATURE-----\r\n","size":157129},"_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"directories":{},"maintainers":[{"name":"posva","email":"posva13@gmail.com"},{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler_2.7.0-beta.2_1655434637838_0.1333399280425298"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-06-17T02:57:30.066Z"},"2.7.0-beta.3":{"name":"vue-template-compiler","version":"2.7.0-beta.3","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","types":"types/index.d.ts","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":"Evan You","license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"de-indent":"^1.0.2","he":"^1.2.0"},"devDependencies":{"vue":"file:../.."},"_id":"vue-template-compiler@2.7.0-beta.3","_integrity":"sha512-X706nkiC3LA9g0SzHuXTfFSg5QkDXswmScHgR/1gJ+DpGu0OPJJLEMfEYWWnu0NzJTZtPOzepOcY91vSdL9oxw==","_resolved":"/private/var/folders/pj/3mm2hm5x6qq4mf8y8p7h3rvh0000gn/T/4645860c809b1c0e93a6503c02489092/vue-template-compiler-2.7.0-beta.3.tgz","_from":"file:vue-template-compiler-2.7.0-beta.3.tgz","_nodeVersion":"16.13.2","_npmVersion":"8.4.1","dist":{"integrity":"sha512-X706nkiC3LA9g0SzHuXTfFSg5QkDXswmScHgR/1gJ+DpGu0OPJJLEMfEYWWnu0NzJTZtPOzepOcY91vSdL9oxw==","shasum":"c3d7687910fdb6ed7ea096dc307497662195d1f3","tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.7.0-beta.3.tgz","fileCount":7,"unpackedSize":591191,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGMFso/YU9nkamWCTRIu3skrk46QaWjnOQ+BPm4Yt3w4AiAZHSO5/kVZFwwy5+aSEAXrZgYFkwVto1VJtaX+v6Iixw=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJisDEWACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqdpA//VysRyZ1KKSHL2dUyBYBm2tDGfXpEIPh3Xhdnzr/vPYmWSysw\r\ndhncK7tBQtGdi2HJ4/xCbpkhOCYtPzT+MP6uL7IqnMB8Sg+7A0ao1fcLZFB2\r\n4MnDhijV9XSofsNFtDD3nJnGJzgtp/MvyOR6GM0Kpb9A981g8KPHWNZbzhvy\r\nBR1vM+6LqY0moYKjmZzWPPDa5ZUoqJpKv++4FQZu2tidL+jhyGtIJhLucRvf\r\nnY3gATVOWINhchkrBDvb0VweHoKooigNnqtDSpXB50M1jLoP1hUhEHHQb+Z5\r\nCUsg2DQACDrEx8iG9W0/xJfpiCzdAJHJ7XmzXfNBDXxuPoo4exJl+PNYu0zc\r\nhUI1kSzj7FkDkDtE92nZwluOjzFwSIc3DIcvawtIntpy+PKWjGRPyJKZaoEM\r\nrELF8HJjwNBgqtUnvVilEKgafqHZ+Z3seml9WZTuKb18tjIDNCjOCCFbM0bo\r\no/g2vMCGJLC/5ar5VkwFrwH39J7yu4USnU5F97ZVraZ5kGGrR2FX4GQttkku\r\nyaauA6OOXdHeFzuuyyC2lEHrHEB/Y3zr71sYeg+AXguO95zVoIzwHS/3ErjZ\r\nrD89wAQDQByUIQoV4a1n3n/ZTpA4Xqqtq4blypl97IhfzrXEIVM/atPr6/0U\r\nXcitSi0RO81n8SYIENscPqZMR4dVOgAWN/s=\r\n=ql/L\r\n-----END PGP SIGNATURE-----\r\n","size":157146},"_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"directories":{},"maintainers":[{"name":"posva","email":"posva13@gmail.com"},{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler_2.7.0-beta.3_1655714070370_0.6204097638557096"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-06-20T09:17:24.023Z"},"2.7.0-beta.4":{"name":"vue-template-compiler","version":"2.7.0-beta.4","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","types":"types/index.d.ts","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":"Evan You","license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"de-indent":"^1.0.2","he":"^1.2.0"},"devDependencies":{"vue":"file:../.."},"_id":"vue-template-compiler@2.7.0-beta.4","_integrity":"sha512-+GqZM0b0l/XVDCMWCsG867Dfoe+VcEm6aQauorE12MTRUviV28nyVOgqfegCahUV6Erd336Su/JjOtBWZTAqNA==","_resolved":"/private/var/folders/pj/3mm2hm5x6qq4mf8y8p7h3rvh0000gn/T/2be3b06a3297d908f17303edf551e790/vue-template-compiler-2.7.0-beta.4.tgz","_from":"file:vue-template-compiler-2.7.0-beta.4.tgz","_nodeVersion":"16.13.2","_npmVersion":"8.4.1","dist":{"integrity":"sha512-+GqZM0b0l/XVDCMWCsG867Dfoe+VcEm6aQauorE12MTRUviV28nyVOgqfegCahUV6Erd336Su/JjOtBWZTAqNA==","shasum":"c8e8d2f01ae26ea7efeb84d4bce533d9f1ff0257","tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.7.0-beta.4.tgz","fileCount":7,"unpackedSize":591191,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFKPp6lnLzL5ZkAcTkSGSR6Z4o7c7ohrwEQnKJWtT93xAiEAoi6hbTfn4knPEVgkhzvvn0B+xc1xlLZRLTArO3yrBNk="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJisTIuACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpS5w//SjVszEXwOssKSEL8Y78Oi6ILfysRndNdNCrHEDJdGQxNPzwJ\r\n+VDy483/o54IkkVebtineYnFsHwwCLyf1Q5ENxIMAm0MIbA8AmaLvWaVkOb8\r\nD7nuomhhceE9fSAIdJN1+GlRuY4vV3ROwLovhiTuvydzVW9xb5ZBscsBleON\r\nORWDrroZ+g4Es0A/QS5qKMioTtpseZOIijsfJ36J54ZrRT5Y9q7fuRwaalnr\r\nBfRHWfNpEPusOUkD9eFN8zQ7OEX+BiCVPSABzbFpP+lEVcD6vjsnn0RXFA2B\r\n/g59oPoJY2NBzQiMW4Az8iWtlRD4A2eFp4/Ne4w5qStORoc7c1ntTsHGwyUC\r\nXNZhioK4Yj6EzG1FakPNdwh4aunjn2NevM10AOGNn8YtO/mMmOK3+6YWHURq\r\nkZJuqADNIq8dvD/dLdPb7HDKNlo0Nn8sSIEpOKFruOBG0qkNzJoldHq++gRO\r\nQgoDDJs4Uvo38kE/Fa6M52e4UW5K95s6PAkiDwqepxniDxG7jq/PXtF7TPxP\r\nY5mrPIkLfnovkz2eYbhUEs2Afrxpqm8+eWJNxrUxX4SzBeVCB1U0OukyszdU\r\nYc+KPAH27mvBcSquSBGelo92XhvGLMVCkKiudMndxQF0Ys30nt5cdtwOJ22G\r\nbFotAdAXhBx6sJskDI8+wRTr/NrSly+oM9o=\r\n=JUzk\r\n-----END PGP SIGNATURE-----\r\n","size":157146},"_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"directories":{},"maintainers":[{"name":"posva","email":"posva13@gmail.com"},{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler_2.7.0-beta.4_1655779886003_0.8670217953051902"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-06-21T03:02:39.651Z"},"2.7.0-beta.5":{"name":"vue-template-compiler","version":"2.7.0-beta.5","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","types":"types/index.d.ts","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":"Evan You","license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"de-indent":"^1.0.2","he":"^1.2.0"},"devDependencies":{"vue":"file:../.."},"_id":"vue-template-compiler@2.7.0-beta.5","_integrity":"sha512-Y1d6ka01PKEX7GXtAGjutq5vFDLOcJV1kVXpSdn9e+hD1WDpBMQj+PAzuzDg/STOSCWdinlKKDOgtwaYzeUwqQ==","_resolved":"/private/var/folders/pj/3mm2hm5x6qq4mf8y8p7h3rvh0000gn/T/e8c2007e5589c77999830ba240e404c2/vue-template-compiler-2.7.0-beta.5.tgz","_from":"file:vue-template-compiler-2.7.0-beta.5.tgz","_nodeVersion":"16.13.2","_npmVersion":"8.4.1","dist":{"integrity":"sha512-Y1d6ka01PKEX7GXtAGjutq5vFDLOcJV1kVXpSdn9e+hD1WDpBMQj+PAzuzDg/STOSCWdinlKKDOgtwaYzeUwqQ==","shasum":"f6caa483eeb46aedd66b7e3b1bb752df866bc7aa","tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.7.0-beta.5.tgz","fileCount":7,"unpackedSize":591191,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIB/O+i9Ip+Yw5Y7Gyx/ztgy7Ml7bS5F5xD8nl/nspU7qAiEAtq9E3gjdAt17lcbaDBJONJkvewlITlKXd3h4VvPFwR8="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJisnz/ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmryfQ//dVwqJjgBjw+nZ5ko+S24hO1xXjtIWioP6rF/JW3jdL96+gle\r\n2Ql93EV1GXlXBNYZtWDZruXbXXU0Nw4rk1BMtusdDfLy7ZeOkIA7NHhVEA/O\r\nS5w3mKK8K3n9Mfa0FhgOoD77wFq2HttslZLnIlkYBQa5tNQkcxJiDJeoX9zD\r\nnxH5Lv8pjU+OR0fl6NCGoBK0n8L5LNAHHmlTRhQ7Nvikh8lWikv+so6DAcLX\r\nLLTieZtxvX8AMnkY1IOijJyiVugxMZZ3Mx3KxkinQQqhge3CeuPs826htPJG\r\n7yUMXNF4n+2uYFLfLQ5Wzaz6WWSMJ6ahakUa+GuHL6qHgC5KsmMQ34J+/vrp\r\ncQ6Dz+WrdNmB2JUsVZwufZzYkcrJPOIrvTDQpW0KeSNraL5Zsyg+N5Kw9Y8O\r\nYxMTycc5nUm0VbDSxPXlk8/sjlpinleJG27A6nAfINmvnUWatdm8WdB5sWLe\r\nBpBtlnpw0IRQh9wAat71diVikTxg1Kl1y7KnB0HXw7E7wzekxysw0ymW0USv\r\nsU/4L/Act9BKH8vV0bbFlqu7c1YEGMY+F0gbKnVpzWOBU8pa0qx1G5qhBh9Q\r\nt53LxFDrPjn7QiUbMGJ7WTiGKIPGUPlrhHHakVZEGqoPSa0e7G0Nzea7Ukqf\r\ncRoS7iSRS+/mQtRQJwuYq7aZudG7mPXr5ck=\r\n=gwzP\r\n-----END PGP SIGNATURE-----\r\n","size":157146},"_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"directories":{},"maintainers":[{"name":"posva","email":"posva13@gmail.com"},{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler_2.7.0-beta.5_1655864575782_0.7058781381832704"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-06-22T02:23:31.157Z"},"2.7.0-beta.6":{"name":"vue-template-compiler","version":"2.7.0-beta.6","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","types":"types/index.d.ts","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":"Evan You","license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"de-indent":"^1.0.2","he":"^1.2.0"},"devDependencies":{"vue":"file:../.."},"_id":"vue-template-compiler@2.7.0-beta.6","_integrity":"sha512-+DKgmiI/VS+cRQhPtrMVXM6canIEeDMJSppT11x0TdR5cV7fj1ZBKgN3tRBp9jHmNrK5UfdYAgRLFObqbolF1g==","_resolved":"/private/var/folders/pj/3mm2hm5x6qq4mf8y8p7h3rvh0000gn/T/68af1dfd7f52b58f3e9f5943d07c4f63/vue-template-compiler-2.7.0-beta.6.tgz","_from":"file:vue-template-compiler-2.7.0-beta.6.tgz","_nodeVersion":"16.13.2","_npmVersion":"8.4.1","dist":{"integrity":"sha512-+DKgmiI/VS+cRQhPtrMVXM6canIEeDMJSppT11x0TdR5cV7fj1ZBKgN3tRBp9jHmNrK5UfdYAgRLFObqbolF1g==","shasum":"b6dae3061adb084ab49a169240316e74b7fdd31f","tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.7.0-beta.6.tgz","fileCount":7,"unpackedSize":591191,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFVgb/T3smorBuODfwP7RhTLU9lC0Doh1/jxOs3hao8gAiAmRq5oMGmYs0p67kIHxQ5lHxW4Rns+hdt9ntJZl/ZnYQ=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiuBvaACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrrjQ/8C1ScMrAC6bmezrTBQ5OxEOwQudMxO8vWwJo/EzOFjjsKQ+jn\r\nx/SJp0CkEiF3KaKA7a4Lde5SDlv8SRw4J8I+hQguJ3dTRGnHw/8kv3oP5LD5\r\nJbJG8dv9TJ+XVE9SrHY5/eGL6SBMONta+jOFzUVOnq6LNz7kTd2tahzfBv27\r\nqIU37x0fyChTHogOH8UiV1KzU8NTBFvq2Fins+vazRkwcQd9EmQwiFv4Y+fo\r\nC0q8Gh86XXB8kY4B3kIm0b0t1b4nYBez1ZQhr8ubCAVfjwHh9TbeVxY8HYiT\r\nPCGtSk4kXxtBvQqd8pIL8oS/UY6Xa+KrR7pgIsm1tzLuwyO+9nq3nf4kHBlE\r\nnMqQcAeaVAexuW/5cPhIoimRsrJZsluPSKo/G/IUfSVk0Qs1bJ18xQth/TKo\r\n1TCUZRZiAaoObjx1pzRvxadw3SYwhPPmu4wdDgBpThv5hEBi388pupNN6+iH\r\nJsNGlzZu12yClD4gNa+IribwlCdIoCPrGnk5rUS/zKTLFo2VAFiNloBzIbAX\r\nkxiS73YoSYyDCog7phoUPckNtNy3IRJsDJ0xjC2naKL9QCv+3L+hmKkHOK2Z\r\nTBLVsZwee/K5GzJJ41IbbMVc+fGqoXKbt+mal6dKiO/eUfSrWyU8tScvdj6P\r\npunWe02JM3vq0qL3EBkFBKDBnxHHhrBp8wQ=\r\n=5NDb\r\n-----END PGP SIGNATURE-----\r\n","size":157146},"_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"directories":{},"maintainers":[{"name":"posva","email":"posva13@gmail.com"},{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler_2.7.0-beta.6_1656232922641_0.03016934880536959"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-06-26T08:42:08.842Z"},"2.7.0-beta.7":{"name":"vue-template-compiler","version":"2.7.0-beta.7","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","types":"types/index.d.ts","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":"Evan You","license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"de-indent":"^1.0.2","he":"^1.2.0"},"devDependencies":{"vue":"file:../.."},"_id":"vue-template-compiler@2.7.0-beta.7","_integrity":"sha512-fuWqoVnMTXcGXfYp1MqIfTEoH4CGX3xpJigLNM5BG5ETjDAm58QTZW7A34V7S3eGKYdx51Mx83UcxTeeJIIo1w==","_resolved":"/private/var/folders/pj/3mm2hm5x6qq4mf8y8p7h3rvh0000gn/T/1d21b01aaf5ea13de856e85ce5a1c7da/vue-template-compiler-2.7.0-beta.7.tgz","_from":"file:vue-template-compiler-2.7.0-beta.7.tgz","_nodeVersion":"16.13.2","_npmVersion":"8.4.1","dist":{"integrity":"sha512-fuWqoVnMTXcGXfYp1MqIfTEoH4CGX3xpJigLNM5BG5ETjDAm58QTZW7A34V7S3eGKYdx51Mx83UcxTeeJIIo1w==","shasum":"fcfbe248c6c36053eccd687140bb3ee3999133ee","tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.7.0-beta.7.tgz","fileCount":7,"unpackedSize":591191,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEMKmpjTiUW1PzlF60Bojpv3PEkVfK+/rJwbilEx75FlAiAvSv8bI/cT+3+D9f9TU9XqDUgMmMHeXJI2Wa72mSptMQ=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiuVWWACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoTCRAAg5HT7gvQ6dVCC6MiuDsWAd7PJXOEBXmA9m6nAciC4NcRjQvY\r\nobdUPqC4VWBu5klD/UvD9XCF7Mw1tSOCxSnJ3aNcH05+Y089utTC1iz9Qzo/\r\nXtemjAb2a9JxdoFDk4KuYOfMMQuupP219LZ0i4xvTowSFFtMnbN0iZVLTNXj\r\n+ghjDOfgw83i9vpUeIxbmAla8+Rj7XX6ziqSPFXUGA5U6dv5LD+L7OuH1sdi\r\nrx3hoGl0sa/FZCBe6Y53EAtDmv1vkUl4PhKerms/V6DS29432tidQ5wy5ujm\r\nypgrSjwxPsUV69/nEOdb0bpW5Q3kJWUJvr+rE2pRiDm79qrMTgbTRjZb0H17\r\nHe1mpOduJtICy5EYfFExk/DCZCLIddj25Hbyj0I76QFoZY4IfCzH8pO1U9nM\r\nTyZe9EhkvhZb7hV7P0lt7zp3bfZALGiCAHfW6HhNukenp2sO3jjPBwntQGkm\r\nixGvnHZh4T3v0KvZi0pzkcHXHA1I+zzwJ3X8L/aQ41XwY3opz+IpYEiefW3a\r\nqbXTKbJhoyoPCAiVykzEY/ePzE4SQQsNG0LipIJAJk1zdXGZL7wVM43uDMad\r\n+zNSO2K1/APxv1xTEjchGz45OEGvPOmzRwjchhyhhseHJMacaJ+TZcTEAOS4\r\ncpbFf/WMvO6uculvbH3lTic2J9Ns7ZbIUSw=\r\n=5n7G\r\n-----END PGP SIGNATURE-----\r\n","size":157146},"_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"directories":{},"maintainers":[{"name":"posva","email":"posva13@gmail.com"},{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler_2.7.0-beta.7_1656313237051_0.2010345660227899"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-06-27T07:05:31.664Z"},"2.7.0-beta.8":{"name":"vue-template-compiler","version":"2.7.0-beta.8","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","types":"types/index.d.ts","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":"Evan You","license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"de-indent":"^1.0.2","he":"^1.2.0"},"devDependencies":{"vue":"file:../.."},"_id":"vue-template-compiler@2.7.0-beta.8","_integrity":"sha512-tQm27vsjE5QZYkCUG40k4+WoS665IS7a9lvC1EI4RmkOXfIlbwLP5+PitK92dgHU5dcP3BXFjjGKBpF2kYdMZQ==","_resolved":"/private/var/folders/pj/3mm2hm5x6qq4mf8y8p7h3rvh0000gn/T/727a9e84481bac20642ae1104e5c752c/vue-template-compiler-2.7.0-beta.8.tgz","_from":"file:vue-template-compiler-2.7.0-beta.8.tgz","_nodeVersion":"16.13.2","_npmVersion":"8.4.1","dist":{"integrity":"sha512-tQm27vsjE5QZYkCUG40k4+WoS665IS7a9lvC1EI4RmkOXfIlbwLP5+PitK92dgHU5dcP3BXFjjGKBpF2kYdMZQ==","shasum":"11e993aa1b27c8234f6a01cc43bcdd9629e664e0","tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.7.0-beta.8.tgz","fileCount":7,"unpackedSize":591191,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEmNm82Rm6IGgGBJtY2oVLtXKL/AHLsfxOmzzvTlQNEdAiEAwCO1q8fExlyG3//CAA70oyJ2qOvvfAX2uJ/ghMdHoRg="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiumCvACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo50A/+KBPiP0Bj82P1d4gjhx5Vszh3+S921ZElg06RudKfAdbdEWnn\r\nFgsa4mbjVrO6MKB9nM4OS0NAgaTmw38p6gaKqYe5e0gM6qv1ziwV4ftd0Zks\r\nFt1JVySWvdKWQKntkjVF+UorjPUoCFo66NhDN0Y1KJ8nGe6q3iv9tQOIoIew\r\nW5hg4xSIZogtELsxAqCO8r0UDTXSuj1N6nnlXZQ+zwxtBDwS0zLSpgruhdY4\r\nO1+96FT6e1DNiI7QFjSvxucLMyonkRCeli0dI6rD8rzKx0ZKmiOkRX3HPIKi\r\nxNJrJiNI8/A/hYfl1vaSgDqaRMRv/GNXjGzfNDSv5IzgmZfZm05e0JyM6usx\r\nNRGr5ljWxcno0lXNBsExEUNzgXxYxZ0t3SJ3ArtzDJ8dVqk1z7DplVGn5tYL\r\n2/RgjzVjvJ9C31eL+qIqpaop7hmtRDtnaK56GtwSFioKxuiMyz80YhVV1bxs\r\nhRuZGVfbGSwt7HcqxJMoR+6bxgrGybw8o1QxrEpJSiUNGAR7J1dqr5qx4fUe\r\nyfKFc8A/xlWWAqILusxyLAQAE/eZUAVhKNDofdaDbCov0LZN5oyNxn8WSfwn\r\n7oVfK6gwv1SmtGq2d3UoKs/F0n0v+NuehBF5FOeiI/uPIF79+AdOWunPuxdD\r\npm/DjYtbHJOA7cFKBHG5TJYh3UVj5PhAUUM=\r\n=kaV6\r\n-----END PGP SIGNATURE-----\r\n","size":157146},"_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"directories":{},"maintainers":[{"name":"posva","email":"posva13@gmail.com"},{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler_2.7.0-beta.8_1656381615425_0.8365223513037023"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-06-28T02:09:33.766Z"},"2.7.0":{"name":"vue-template-compiler","version":"2.7.0","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","types":"types/index.d.ts","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":"Evan You","license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"de-indent":"^1.0.2","he":"^1.2.0"},"devDependencies":{"vue":"file:../.."},"_id":"vue-template-compiler@2.7.0","_integrity":"sha512-b9kKOPNS6J2BVf9skXkKsUwQLP3Bjfb/gG6UoBt3fn4xUVEDko5TSWmkPGW6dSSeAOOvYEMALdouv9caKlTq0Q==","_resolved":"/private/var/folders/pj/3mm2hm5x6qq4mf8y8p7h3rvh0000gn/T/11176ce67a08bdeb0d1102ae0da93ace/vue-template-compiler-2.7.0.tgz","_from":"file:vue-template-compiler-2.7.0.tgz","_nodeVersion":"16.13.2","_npmVersion":"8.4.1","dist":{"integrity":"sha512-b9kKOPNS6J2BVf9skXkKsUwQLP3Bjfb/gG6UoBt3fn4xUVEDko5TSWmkPGW6dSSeAOOvYEMALdouv9caKlTq0Q==","shasum":"b8ec6b9eb8ca99f20534ac75f0f374d3e48347cf","tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.7.0.tgz","fileCount":7,"unpackedSize":591184,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDC3t2bMpF25RIqAodxIHVOnyILLQT6KgI7rsDkH0RqBAiBiOXzzFnEN+iu8Drw9ZBF3TJHL/7OtiljivND2+vnkZw=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJivnaMACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoQNA//fWLmO1T4vNB8o7363mPkd82bzBzDBAfG/OY3qJ9RcWUVVHIR\r\n4fhXSEKjkxV6uPjx/WiSdZcgW0ULTx/DoaKp7jy3vbaJED2DySKu1Ibah+Zb\r\nYwLQ4oRWkj1/n0yS3iKa8+hV1QO0JLkfHWN9xLvn2RRJ8ite55BRdIrlosJY\r\nK6S89zsIlcfRmMqchSVbXIbJjdqMI3gfPaHkJboZPmRAzuXUvsn3hQkh51oa\r\nJMTrXs8cWWoB4SYEkN5eP3LBdNzrtRVEEVeCWfkyog3/lDvNu3HHCz2+n5lk\r\n1345X+dZc4GtmEy8JT/8uhqqQFeoEUFQxyuiZRqfcq9B2H9b+9tSNlIz0FZV\r\nso0cxL/yhe5LPwBG8ZX5c4/r2seOIU72b5FG3eNd+ECtjVUw/U+Xn829YPPd\r\nHVS7BgBpzNEWP3P9QOPfmUEHKp1Fwj/OIxtJfgYl3BZ4PDyn0sTxMp6S5VmV\r\ndVvFnqMrpwNRbNFMhgwWN6LP7LTivAVVVbhx0RAkoM0FDnVS3Tu1Hmpmws+h\r\nEcWJsm6m08ak3q9ctfB27Jeh+JoaZ79JS2vKeHrGTRGPgfzekpe9hk6/fp8c\r\ngFthBuyWpJK3RENhv+/kPCVuBaW9p7GXxmnSScGvwHkBCqFPWHdwhGBX2TxZ\r\nmoNRRAaMOeF+jIi3y+cN+URr3KTFP915GIU=\r\n=NeMT\r\n-----END PGP SIGNATURE-----\r\n","size":157139},"_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"directories":{},"maintainers":[{"name":"posva","email":"posva13@gmail.com"},{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler_2.7.0_1656649356278_0.7893811757263696"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-07-01T05:20:59.018Z"},"2.7.1":{"name":"vue-template-compiler","version":"2.7.1","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","types":"types/index.d.ts","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":"Evan You","license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"de-indent":"^1.0.2","he":"^1.2.0"},"devDependencies":{"vue":"file:../.."},"_id":"vue-template-compiler@2.7.1","_integrity":"sha512-ku/H1k1yHAgY0BEdoXVj7xZIjuFSwB2IV3nQWnmUMJ6U1jzK56LPHLWzEe5bTzt0WR0b/rJRkuiig44SUoaBoQ==","_resolved":"/private/var/folders/pj/3mm2hm5x6qq4mf8y8p7h3rvh0000gn/T/d3c5c475cc57c5c8575e06429de06826/vue-template-compiler-2.7.1.tgz","_from":"file:vue-template-compiler-2.7.1.tgz","_nodeVersion":"16.13.2","_npmVersion":"8.4.1","dist":{"integrity":"sha512-ku/H1k1yHAgY0BEdoXVj7xZIjuFSwB2IV3nQWnmUMJ6U1jzK56LPHLWzEe5bTzt0WR0b/rJRkuiig44SUoaBoQ==","shasum":"ebbefd9cc9a7b9ee9ee6862fa1ec3a9bf3959963","tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.7.1.tgz","fileCount":7,"unpackedSize":591208,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC7b5MtxxtM6Qd1aZBl1x77EjF87sMhbAKXtPlTMf8MrgIgR5ldBKYiD7i+skOIxu/X/hrJ+3PDPZWdDLnH9//wFpg="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiwsMxACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrSDg//ebll5WVFn0+fYq4nlrrKDT/DJyHX46UbcU5ieGWBKLPRXKgV\r\n6ce+4HWRfR75l6+Rc735SzdAe8kkqswQQVxGx8qBV/dz7DYR6+2DMI7rD1Cw\r\nls80CHXiS/viCcoybIj9GJNXulgPcMXbDM294Gva+SqKQj1aBkSOgBfq73Pn\r\nr0SuqgkxnDp2UPdDhWbGGt0CY9j/sljxON0eiL10RdxsxXb/2uHV98O1jmk2\r\n07NV6WjbfYDz1u0sb2zgv6AaotoyNOLinA90QtOGF5wp6sziannJ23YJ9Mai\r\nkC1TBajl0Ntsqml4QM14M6h9FEgduN0LVd9WqVOXQcTioAbSugOVJIY7DOSP\r\nidMQVkRB2fPNoonkHBLR0mns4B43ZW+H04uAijv36b9rB2sGRtjIJm0sulU7\r\nVUcTKaVCA2ayUKgVd5dmSFhUzLmZSG4nCiTb7bhGsMf3HX6mDvfGlEH6o2ut\r\n4je/f+dJxaUW3JPR276m9A1HCrrnqoWfHYpopI/6up092aQUkaECa5f4+FS3\r\n4tkNLHHiRF37WP2XCTvt+UdrLnfZVK6cr6BdDWGsfuOKgEzkbdH8onJSJQSo\r\nbYoHXUXstEGyyvuxGiLISo/Q63S8Rfw9q3buRFMztylOom+HfFs4JXrDw93S\r\nrl7+AEKYtvjorRAxPtd1PCnOmhf8NS8fyuw=\r\n=dcqu\r\n-----END PGP SIGNATURE-----\r\n","size":157147},"_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"directories":{},"maintainers":[{"name":"posva","email":"posva13@gmail.com"},{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler_2.7.1_1656931121716_0.029988851636672198"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-07-04T11:02:57.448Z"},"2.7.2":{"name":"vue-template-compiler","version":"2.7.2","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","types":"types/index.d.ts","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":"Evan You","license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"de-indent":"^1.0.2","he":"^1.2.0"},"devDependencies":{"vue":"file:../.."},"_id":"vue-template-compiler@2.7.2","_integrity":"sha512-3PDLIPankm7b1YZHk6/mTz9kMZaDSd1Vhp1tFPITot5uW9WjnIyv6zRax3+j1kwF0DHmvfIVXMX8G+Rn/BHfaQ==","_resolved":"/private/var/folders/pj/3mm2hm5x6qq4mf8y8p7h3rvh0000gn/T/835aa7e4ff35f7473034132e5878afbe/vue-template-compiler-2.7.2.tgz","_from":"file:vue-template-compiler-2.7.2.tgz","_nodeVersion":"16.13.2","_npmVersion":"8.4.1","dist":{"integrity":"sha512-3PDLIPankm7b1YZHk6/mTz9kMZaDSd1Vhp1tFPITot5uW9WjnIyv6zRax3+j1kwF0DHmvfIVXMX8G+Rn/BHfaQ==","shasum":"656c2ccfd53696c52a9740645b7a9fda421d84e6","tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.7.2.tgz","fileCount":7,"unpackedSize":591635,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD4Tfsb4kxBm006lrlNolRBXQYn4VhXeWy6TGIaqFkWLgIgYOh+gVOIp4ebmSwtCIAmyZMThTRx0sH+TShSFOMgQUE="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiw6f9ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo9iQ/8D+aygBYfqP0Q5pxzrogXgDsfAoWWnsjowd6H2Giy2rqRm/2W\r\nFR2T9I6VkGQueXTMHvtSPmY7OppWcF+vqCtA7BvNhTwewUuYSruibe5Sh0EL\r\nXKNPT+n/7S2pWrNUx4ZqI4uUmCHnPjcpT6RznzcumPgHOMej/ml2pYyVLvJy\r\n+SsRORjV1COQgxmp5LNNxDU/bCbBDrsk3e5AiycxD7T9+8o/+KUWhG+nC+6e\r\nWub19jQl9vHq7CeDzRhgVaaCTTNmkAXNMyZ+publ1mukXEIQgV8pQtA/595Z\r\ngzWoMSBoVlUOYUtIkIn/CHwNQS/ANFw3G1t6/twWwDA/jIZz/xv+oTs/CbPB\r\nLpSgjDvI46f2RLJwstBExJz8n58KfWgQ5oEY3te+2HVrGIwMza/BL1Ohq5U4\r\nAedd5kJ5S71IPT63eeDuYb6Kf4Yr/VGMc6D6aUahvc95FxMj1dIMrlZkVPAz\r\n+9LBA5jb8IlmUwxva4Oe8kiv6tzYu8s32/DLKauwRMKUCSDVQ4PlSidKi5zS\r\nsduCKW+o8yIoQVGAXg+2BhN43Oxp/Rc4EuYId2jJkY/yFUwhWKZBjJK7AXY4\r\nb0USrGNoP/ZCeFN8GIxgbW9KX0CTGfqZahCHFDq+DrllQVpi97keRZ33P3CO\r\njWFXEsFPPVi9KpM6n978m3nvPGZmiGuy1k8=\r\n=t6CU\r\n-----END PGP SIGNATURE-----\r\n","size":157297},"_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"directories":{},"maintainers":[{"name":"posva","email":"posva13@gmail.com"},{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler_2.7.2_1656989693449_0.20094303442838224"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-07-05T02:56:18.813Z"},"2.7.3":{"name":"vue-template-compiler","version":"2.7.3","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","types":"types/index.d.ts","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":"Evan You","license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"de-indent":"^1.0.2","he":"^1.2.0"},"devDependencies":{"vue":"file:../.."},"_id":"vue-template-compiler@2.7.3","_integrity":"sha512-QKcV4vj9akZ2zSD1+F7tci3aXpRe5DXU3TZ/ZWJPE9gInXD5UoV+Q2PrCaplj4IGIK8JXRHYaSvOXkOn7tg9Og==","_resolved":"/private/var/folders/pj/3mm2hm5x6qq4mf8y8p7h3rvh0000gn/T/0b4af87ebf7298e01f09efc4e10ad720/vue-template-compiler-2.7.3.tgz","_from":"file:vue-template-compiler-2.7.3.tgz","_nodeVersion":"16.13.2","_npmVersion":"8.4.1","dist":{"integrity":"sha512-QKcV4vj9akZ2zSD1+F7tci3aXpRe5DXU3TZ/ZWJPE9gInXD5UoV+Q2PrCaplj4IGIK8JXRHYaSvOXkOn7tg9Og==","shasum":"3ca434a5898ef4eed6122101066e416dae1aefd8","tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.7.3.tgz","fileCount":7,"unpackedSize":592183,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD+46kiTOdhrYrXQfQ34q8QXW8BcqNQ66cmr0r2JnvedwIgXaZ+8smDtbAGCkbRcuxU97o11JFYVvpH4sV9S8eAE7E="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJixRqsACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqeWhAAma47isEmpLS3UucuC7s1GdiusMxljoX3LNniYAuCn16qzocJ\r\nX/efzhP9MFqLYgCRIRp5U9ZcHNM1tyscnjwoBCmjgjAbJsbgh367hDDVvF+D\r\nmRNZfT3J1BzL6Mf93Ev6gRI7Yha+dTce38UouT+2iRFx7b4RbISEpZqBp04N\r\nt7AzSi62cgieCTEsaJA148ylmyrlwpu2iN2eCcaqEHiLH2EMvEVwudMPtKAN\r\nk7X31Ig1+4dUHlllqIrNxI8+p7TZdD2Tg0xkLudOhCMYJu07EWTwyedj3MiB\r\nxjq1ghp1L6Do3ZX4hMEJCGdK2FAQKCOHt6Y59McAXUchuzt0DxczCbIbfU/D\r\nzJ2hy4T4Iib7eg5txe6+rQJ7r/ibAzJbhJU9rHzNxe1zOpF89ovNzydEQcsr\r\nzFQNw5qwQjXKI7Q1+3NdsQYvcZjKyqymNmgOa6haXe6BeWewxJTlLw2Qa4ss\r\nMgPAVfVfY4HDOyYdnlWlKlvpsLBaVGZZoOilQT8ooYiomtpydHSE9ks/jMMs\r\nNj/zA2xEPIjC3iLO5jR+mJQjRKL6LsKsa3gJcYpip8UagQ/8waaq6ahgmrXk\r\n20ypXaVawNOZmn2JA+yji4iwMue/vWazThqgQCEHmEosbATWmlWVUztOlHkt\r\n7Th0Hs2wDtgjlZTt4FXXWzaPqPPYzQnrMzU=\r\n=Cz2D\r\n-----END PGP SIGNATURE-----\r\n","size":157515},"_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"directories":{},"maintainers":[{"name":"posva","email":"posva13@gmail.com"},{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler_2.7.3_1657084588695_0.8986351224939935"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-07-06T05:16:37.492Z"},"2.7.4":{"name":"vue-template-compiler","version":"2.7.4","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","types":"types/index.d.ts","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":"Evan You","license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"de-indent":"^1.0.2","he":"^1.2.0"},"devDependencies":{"vue":"file:../.."},"_id":"vue-template-compiler@2.7.4","_integrity":"sha512-FgaeXI80FzhtDEsixq3WBrHLWpU2gzLb2DFusm62TrmCQyETsnUp0kTLpbExrTUw7g5YOnRf+xkh73nuEX+jGQ==","_resolved":"/private/var/folders/pj/3mm2hm5x6qq4mf8y8p7h3rvh0000gn/T/399719392f6ba5e00131d0b334bdec4d/vue-template-compiler-2.7.4.tgz","_from":"file:vue-template-compiler-2.7.4.tgz","_nodeVersion":"16.13.2","_npmVersion":"8.4.1","dist":{"integrity":"sha512-FgaeXI80FzhtDEsixq3WBrHLWpU2gzLb2DFusm62TrmCQyETsnUp0kTLpbExrTUw7g5YOnRf+xkh73nuEX+jGQ==","shasum":"5c21ff12dbd8f53ac14b42a6d89e77b55a1c5dd7","tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.7.4.tgz","fileCount":7,"unpackedSize":592336,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCemoC39OBX+jS2pL3uIzvWAe98f2+/FnpWMgexqXAnRwIhAJOj8yu3ME5jnyPKlJL4GoddA80ovTa3ouR5TyUPZOkj"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJix+DUACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpNRQ/9GYgOkLoB+KvTAoZaOuZwPjrXHIcdX++HuT20TsuQ9V8BbS0K\r\n4Snge1TYzaZzwlovrvazHwkkXzBuTivQJaUzKoFBiyXWv/hniEp+L4vTu+17\r\nEK2FP7k0ofPyzuV9i2lkMuDjoIjHuPYox7tErmf5Fo1crGqM+BgTIxWDW2JZ\r\nQ3eLI4E0xEKmGn/xZfpOtDusj5EdchWrzNyRvnkhvnIvbKV39xW3GondDgD5\r\nuotFCTPeFE6v6PCf9GM5ZcGMqV4RRKAtf+BdxtpkvyGR+JOZ5A0kVC69GBLp\r\ntDuyNBTIvhHw/HFCm49yStk2wlyBbZnL+ywH+0BxePAPxCKZ+LfibbZ3CBKe\r\n9AQTdWnxMI5HSkt/BZTxjA0Z3LCikjUB+UYM6emXBpgiCIN44Wig7yLoMScp\r\nstIab+WNqv6769TINXsN1JpzEzHEgirXRlkRUVlUe1VXnbiJsMQs0S1J4nbv\r\nAnBiX0+KGX8MShloBl/Y3LKzEVaAMDiEfWhpRvdusfT72hux8D2I8KnstiZg\r\nE9QwMlop76u9nbLwCWKF4WL6B9hvY6Hyx1RCfoZHEQ2c8Z7xNMSGRSWh8mMS\r\nrdpDhL5N6F3FhRP5+H4o+xhh3jTC74fNvyOlegJewjG1hcELnyhJM21iXDnp\r\nrgi0PFQozKXD1y42hNYGSfGLiMX7/zg9Gio=\r\n=HFId\r\n-----END PGP SIGNATURE-----\r\n","size":157494},"_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"directories":{},"maintainers":[{"name":"posva","email":"posva13@gmail.com"},{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler_2.7.4_1657266387906_0.47740821450968274"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-07-08T07:56:41.770Z"},"2.7.5":{"name":"vue-template-compiler","version":"2.7.5","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","types":"types/index.d.ts","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":"Evan You","license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"de-indent":"^1.0.2","he":"^1.2.0"},"devDependencies":{"vue":"file:../.."},"_id":"vue-template-compiler@2.7.5","_integrity":"sha512-f5aofPdhOtoCW2jnK+iehkfVizDSrLuiyHcgIlGrXlkBXpIDfvm3HNX8emrhEduj5o5NyVulVbwpXW+zpRZQNg==","_resolved":"/private/var/folders/pj/3mm2hm5x6qq4mf8y8p7h3rvh0000gn/T/e7ce25c30a80c78aac0751fea374b96c/vue-template-compiler-2.7.5.tgz","_from":"file:vue-template-compiler-2.7.5.tgz","_nodeVersion":"16.13.2","_npmVersion":"8.4.1","dist":{"integrity":"sha512-f5aofPdhOtoCW2jnK+iehkfVizDSrLuiyHcgIlGrXlkBXpIDfvm3HNX8emrhEduj5o5NyVulVbwpXW+zpRZQNg==","shasum":"f3f1c559bfceb7e953fdc9a5b42602026becec87","tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.7.5.tgz","fileCount":7,"unpackedSize":592851,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBLXWEBl41cAkPf6Qi0l/CIa8sqCWQt53lWOWJhl8YToAiEApH8v3/uXynRQ6jwKKf1S8yv5p7LQqRu+WfpG6nofzD4="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJizjc9ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo8Jw//Z5VK8lA5xO23ugoCDbtfy2NdF1f3SBcKUjcSn6v5dpQJA9gt\r\nv3WrItImQGHE4dRSR1DZ89o/qufzQ9Ga8VEo37b5FTnMQvo+GoFN1JJBNg2U\r\nAu86CfRvyHLM8VAsPd3AFyDMMdxwMLYGZnkk8ZaqvptV81zSZsQvP0Aebcb9\r\n7Q7qJ8yZTVkGgE4fHg8/Nejlktpsl0mje1Bnaxi7EY+hHLRBbtToGge8Rq/t\r\nr2Jfvf+RsvSq04Fm7N5Y3nSVOS5pvGCQtpYoHpHjBMUP050qxgx5mAvvADWG\r\nah453LDQmaK78KRuojSy5Zk6sFXsjS/fh2rJHTDKd0a+9AF1Q9u0vJYKJHTO\r\nj8AwKoE7/GfHyNvyU47zPsQd2Jm3VkX6QyK6nZdm3NHhnq9yrGqzkPeRaWrt\r\n0OJ3P+caIJxTXVxXucR83fXpxfP4ENEpi0eDPgn/G36P0NuGI2Cr33Ov7vVx\r\nW1hRl0G322JRlhoMZeva9zPRufnI3YoHwaz2iMLWclO/oU+Zmkkv/4OLC8K0\r\niUvRrQQ2m82GhfdTOdaldfSzDjJFIvsj+k0VuqjtziD+yczUSrgh5qYeU/Wy\r\nvuVlgzZukJFTelMkWzmVFlJoxwA9zM4DjCBdfJGfn2byD6fShm413wpypIX9\r\nQGelIhOj3zJjCrMX0q0CgnlZbmSUL5a/afA=\r\n=LtM3\r\n-----END PGP SIGNATURE-----\r\n","size":157398},"_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"directories":{},"maintainers":[{"name":"posva","email":"posva13@gmail.com"},{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler_2.7.5_1657681724888_0.5415470344757531"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-07-13T03:11:40.777Z"},"2.7.6":{"name":"vue-template-compiler","version":"2.7.6","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","types":"types/index.d.ts","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":"Evan You","license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"de-indent":"^1.0.2","he":"^1.2.0"},"devDependencies":{"vue":"file:../.."},"_id":"vue-template-compiler@2.7.6","_integrity":"sha512-z0xCDI/4eRTI6NihqDrxGNMkiH6XnUZ7Uh8UPwKRYYPxHyRHCqNuBQVf96+YYExPsJkLABZfexFHz9DClyfoXQ==","_resolved":"/private/var/folders/pj/3mm2hm5x6qq4mf8y8p7h3rvh0000gn/T/68d3d491bacb1fd6f16b4d16c25979e2/vue-template-compiler-2.7.6.tgz","_from":"file:vue-template-compiler-2.7.6.tgz","_nodeVersion":"16.13.2","_npmVersion":"8.4.1","dist":{"integrity":"sha512-z0xCDI/4eRTI6NihqDrxGNMkiH6XnUZ7Uh8UPwKRYYPxHyRHCqNuBQVf96+YYExPsJkLABZfexFHz9DClyfoXQ==","shasum":"5f49cf2d24b3e3a84d55128845cb299d5ea20727","tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.7.6.tgz","fileCount":7,"unpackedSize":592851,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD8Y62vCErBxBqaUWyijbyJm/Y/MdcUXJ/W8QSBerr7TQIgWmWtWZ4JfmOXlDTyyQUHo/ZxoFFUsdvuAxA3YcXh4jY="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi0S+DACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmqtcg//fd+Yd6YAgs0FOsIrQLLUFGPKm5nJOV1RrELDaAPwaMHY3c4P\r\n09qMyyJYJKYx/gFhKa4bc9s8YWneU7REsJrGLTCtc2b02zcBUgPOy45CIS3W\r\n9xi5EnKOIxuNvrotbDhMc4INRyp/mM09e/SeXp0LlXp3stO10Ekji+qNuR6n\r\nq72ojSHSd0/n8V7q1E8zPAqd/6b8hiB3/YIIv/TUy7iYy0aVvrz9Tg8ChXe3\r\n1ijW5OQ6oJBAxLX5Lw4xGhrI9GX/E+oAoTUCPCX44SSACRfOM0mXWHQecL1C\r\nuP3EpsFykfG0MlATYgjawh8HcbRb+X8Q/UB0R56jDREHDTtJKQtrwGbuB3n7\r\nnZBRFkjn6kGjpF/yckp3D1DThBTM3gtSTq0wK3RSpUSaatO2tIa4F3mWykaN\r\nXctpspZ1ybQFUz2WlTDFD6zUSK2DoaxJSOabn5F/qNmZqveXpfrAeM3QO748\r\nbStt0WPaENgevbavxkPE4Idwu0J0c0sKgJSUYwxzdnVyXWjYt7/5GjNWSC1I\r\nkEZeeUuDrrYguQj38YrtYYCjLOtHQM6Vgl6SR/O+5/bWwB5SOaOF2l9jKwNu\r\nRCR2dMuIHCh3Ni3ulFjUovMVCWEsuN0YkXNlFbG4BgUU1/47J42uL+8xzLbL\r\nQcChYBsKYhlSdKNJLy5rWmCQ+Zsjbm4RbAg=\r\n=+wxT\r\n-----END PGP SIGNATURE-----\r\n","size":157398},"_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"directories":{},"maintainers":[{"name":"posva","email":"posva13@gmail.com"},{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler_2.7.6_1657876355400_0.8610997977825008"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-07-15T09:58:26.163Z"},"2.7.7":{"name":"vue-template-compiler","version":"2.7.7","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","types":"types/index.d.ts","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":"Evan You","license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"de-indent":"^1.0.2","he":"^1.2.0"},"devDependencies":{"vue":"file:../.."},"_id":"vue-template-compiler@2.7.7","_integrity":"sha512-vxOsjWhvDPyMW7QwXPecNmTNwKyXiF+j4KjBFjDxYPuY0xvqCT5o9WrapVItR/Nrh0XThfBaL19kXFSNYtbKmw==","_resolved":"/private/var/folders/pj/3mm2hm5x6qq4mf8y8p7h3rvh0000gn/T/d68e8f9ee39dff0bc794fb14262bedad/vue-template-compiler-2.7.7.tgz","_from":"file:vue-template-compiler-2.7.7.tgz","_nodeVersion":"16.13.2","_npmVersion":"8.4.1","dist":{"integrity":"sha512-vxOsjWhvDPyMW7QwXPecNmTNwKyXiF+j4KjBFjDxYPuY0xvqCT5o9WrapVItR/Nrh0XThfBaL19kXFSNYtbKmw==","shasum":"9ac85dc50216d01fb5e2fb16b6c3f5ed11b4b104","tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.7.7.tgz","fileCount":7,"unpackedSize":592990,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDBix4A2lE6bhSI0QXO1d4/ETv19KawgmFGSVSg8IC5QAIgTnhpbvzCOugU7fU9pcprXreiq/lFI7K+p8a34SygP1Y="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi0s8SACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrDSg/+JzMKuUAZhiJ2cM1on0Zw3hxTM5TVlYxWy5WprxditLoB+6TE\r\nA+BzopJ24UoLvCxCgc+LmQ946JeXbnFfKgaMYGQcFQkE02LePL4yOiwDVo0V\r\nx1VttemYphobaKQe4F5LGhblsBsQt2WIOU4M89QULwqkIbtTGZF7XxxKDjMZ\r\nt2SdDF3Cic5N7klj1LQ0VbfA8+NL5y/TJ2auBZJ7rRQKF6fozpMhYhSk3D66\r\nMD/JS3zJby4pkhQMM3bmctBejH3eCmJJw/Xabv1HUm2ehq2EClvNqLZWGM4B\r\nEgnBOtKBPnQnwQM6rCgiK+Z469XOtIRD9v9b5GpJCmyC1AqHYEXB6FINuXN5\r\naCaxsbZdCZCYZV6gbgvKLjEXMWMTETF3mKbX9E84ybKWxmfY/EZ7ePgHp4aq\r\n0rRji4yi42tE08R/Zt3rg40nv3qEURPZMooejQLYap2XDd9/GTg8b8Ewpbr1\r\n1QFe6hELEKxH3C60KudAC3vlHwHbarY7rZJw8IhBh7pN13zVYCxWQwqNLxgn\r\nviJAARLNmbFCfu4Ol4Rp6B12WeBT7rZs/dNbC81rnDx96Ya2TNH4uoPImz1a\r\ns/rk+i6lzfKQF7izSMFYRAepyzFzsD5fHZ0UHEF0sgJAx7qEReMfsY69pthP\r\nrvu01Y5cfBdRUhUNSUjzKeUCO6EhT4k2SK8=\r\n=A0Hp\r\n-----END PGP SIGNATURE-----\r\n","size":157424},"_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"directories":{},"maintainers":[{"name":"posva","email":"posva13@gmail.com"},{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler_2.7.7_1657982738356_0.26522041004881314"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-07-16T14:45:43.837Z"},"2.7.8":{"name":"vue-template-compiler","version":"2.7.8","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","types":"types/index.d.ts","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":"Evan You","license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"de-indent":"^1.0.2","he":"^1.2.0"},"devDependencies":{"vue":"file:../.."},"_id":"vue-template-compiler@2.7.8","_integrity":"sha512-eQqdcUpJKJpBRPDdxCNsqUoT0edNvdt1jFjtVnVS/LPPmr0BU2jWzXlrf6BVMeODtdLewB3j8j3WjNiB+V+giw==","_resolved":"/private/var/folders/pj/3mm2hm5x6qq4mf8y8p7h3rvh0000gn/T/e186f332efb4defd351ce97909f13969/vue-template-compiler-2.7.8.tgz","_from":"file:vue-template-compiler-2.7.8.tgz","_nodeVersion":"16.13.2","_npmVersion":"8.4.1","dist":{"integrity":"sha512-eQqdcUpJKJpBRPDdxCNsqUoT0edNvdt1jFjtVnVS/LPPmr0BU2jWzXlrf6BVMeODtdLewB3j8j3WjNiB+V+giw==","shasum":"eadd54ed8fbff55b7deb07093a976c07f451a1dc","tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.7.8.tgz","fileCount":7,"unpackedSize":594505,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDyNpoD/iIpORfL1Hulu+zJD9SATxaiNlUS3ptoY9ps7wIhAK9cAmJF00Sdw0CcUGSjM7C71Mt5pLwG4odiNUSsohQC"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi2hh9ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmreBw//VAJQzXq75SClXgE2jbn6ARu8mj3d6qRxzmgjSK81MIgHB6Ei\r\nyKw82UtUQZuE9kAzQr5MwBbM5oSX8gEYHQ6KS2+8hVPNg7IPidi8yIiUFWf5\r\n6V88ljf4DbsypvEWNZhKJ5TfTlOGb1ldkQwZgN7ldIML/SZuk5Xx64Jfm0DR\r\nmlC0Pam6/gP9z082SY9L4hUaLvsSeecCtWyHopsi1U6QBS8tYDG1tpP+wDkt\r\n0jFZxxKMeluOVDE395PBmLf7E9MhFO1KkFdSjVLI/RmD5tDKftH0vmZr4SlS\r\nTx2dc33q0K86XH+WIKiqAIDCXFdYSBpJ1w8pohPta87JdVKBzupUpxbTOwnx\r\nVLXkSqRnIIF/vbWxx6KXNj67XVXNWdE4JcuKu1T2PNBb1+0OKEud6obdzvMA\r\nVawB19VdKTD3clhM349Z/YyUbEw/+1/BwmSiFLY0wCO2EoXtXgtPWTX0a3C0\r\nQeO/6Fqc2iesiqnpYBnfWSuLRC7BSfgGYTg4zQYQhNy4wZLeMS6HFWVCWJDr\r\nSPTkq6gnGd5x66uUeqKf63Oln7sm+oeDEHVUctN9Gp56b70RG6ac1yDhlaEg\r\ntUsPXut9F7ZFPlqxDmjhTsGUDVf1jCAXIaSI/xG8yu73nd2H3fCRd1IR2chT\r\n7bhN9A0zXaajS2xQyKabV0/lF6vWA8dEnFA=\r\n=3XPn\r\n-----END PGP SIGNATURE-----\r\n","size":157790},"_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"directories":{},"maintainers":[{"name":"posva","email":"posva13@gmail.com"},{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler_2.7.8_1658460285585_0.929651013320097"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-07-22T03:28:46.702Z"},"2.7.9":{"name":"vue-template-compiler","version":"2.7.9","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","types":"types/index.d.ts","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":"Evan You","license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"de-indent":"^1.0.2","he":"^1.2.0"},"devDependencies":{"vue":"file:../.."},"_id":"vue-template-compiler@2.7.9","_integrity":"sha512-NPJxt6OjVlzmkixYg0SdIN2Lw/rMryQskObY89uAMcM9flS/HrmLK5LaN1ReBTuhBgnYuagZZEkSS6FESATQUQ==","_resolved":"/private/var/folders/pj/3mm2hm5x6qq4mf8y8p7h3rvh0000gn/T/3ca764d25f7c54e119f62e0a113b67a9/vue-template-compiler-2.7.9.tgz","_from":"file:vue-template-compiler-2.7.9.tgz","_nodeVersion":"16.13.2","_npmVersion":"8.4.1","dist":{"integrity":"sha512-NPJxt6OjVlzmkixYg0SdIN2Lw/rMryQskObY89uAMcM9flS/HrmLK5LaN1ReBTuhBgnYuagZZEkSS6FESATQUQ==","shasum":"ffbeb1769ae6af65cd405a6513df6b1e20e33616","tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.7.9.tgz","fileCount":7,"unpackedSize":594505,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQChFlSN8LhWzqG/W3ys4oxtlPXBp5TkamEGepl/w/mlvAIhAIxYkgQXBP6ALOTVp3HidRcOTHhxyTnLeIe+N5LXnAWP"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi/xEqACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpNgQ/+N03+IaIWBvEnH7H0zk0suW8vVqCxNYHM5NPnEPbHdYRy8zjE\r\nMsy5fGQvPkT/tmD0EPDYgBj4ft/v3ago5VKzBcJ3dpOSt3Xvi72UyveBTv9q\r\n4noelwSlCJOeroG+TwSutFy/cb2NrgHEDzpA5GGO+7Wh2zqvSiEZKJ1jk8Fy\r\nlVjqposfejl28Jx54F2XmuUzszmbAMdBJ1yqbrJTQCqur2O1tPL9xoN4MXvO\r\nHNOb1UFD+hBeEUlwCt/nrcneVYmt6H5Iq58u/9I47RCbAwcUadK9HWSIQdLf\r\n7/UhibZ5gMa9jJy5YFMjzSyLuiZseKOgrhrlCEhYvci/+ql75qS1zsXOw8FV\r\nzgI2RqXF3nRRHHda/qmSsF9Pxvz8xoHRWDaTAV5ju2S8oFmckjJunH76kzUM\r\nIqaUfChcO+9XhGsv59sIDGOp35WVDqd1pt7JYxkzKt+t53NB18XU5OWIYma4\r\n5GLVsvbquwQRkAqEEDn6SDY8sowaaeqxgccSGD4BL2HMEiRz0jhYHa4E3lEq\r\nXqmPT+6dyIktntlHT7PGrloHDJ0g+r9TdMHxOaLKec/2WnWfUoyHW6mjIyzm\r\nEVYRyo/LXqqaih4LWChGqW2h09Y1BUfdYG6fXLkc5b7vPeGvbsdUp3dE4zh2\r\nYJAZ0ZCvg10cE76++M2oy5mebGiH96OE124=\r\n=G5ir\r\n-----END PGP SIGNATURE-----\r\n","size":157790},"_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"directories":{},"maintainers":[{"name":"posva","email":"posva13@gmail.com"},{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler_2.7.9_1660883242351_0.8081265090025296"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-08-19T04:28:03.421Z"},"2.7.10":{"name":"vue-template-compiler","version":"2.7.10","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","types":"types/index.d.ts","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":"Evan You","license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"de-indent":"^1.0.2","he":"^1.2.0"},"devDependencies":{"vue":"file:../.."},"_id":"vue-template-compiler@2.7.10","_integrity":"sha512-QO+8R9YRq1Gudm8ZMdo/lImZLJVUIAM8c07Vp84ojdDAf8HmPJc7XB556PcXV218k2AkKznsRz6xB5uOjAC4EQ==","_resolved":"/private/var/folders/pj/3mm2hm5x6qq4mf8y8p7h3rvh0000gn/T/b617fec712359492dcca001b1c2065a9/vue-template-compiler-2.7.10.tgz","_from":"file:vue-template-compiler-2.7.10.tgz","_nodeVersion":"16.13.2","_npmVersion":"8.4.1","dist":{"integrity":"sha512-QO+8R9YRq1Gudm8ZMdo/lImZLJVUIAM8c07Vp84ojdDAf8HmPJc7XB556PcXV218k2AkKznsRz6xB5uOjAC4EQ==","shasum":"9e20f35b2fdccacacf732dd7dedb49bf65f4556b","tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.7.10.tgz","fileCount":7,"unpackedSize":594538,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDG3js8VudNJuG0HuKjRqlyS4uGZBBP13ITnCtuA2PZJwIgf/W7vHSyCbdffbSjCbYXkKAXh4WxiCaY0TkUbPatctg="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjBC2NACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoVXA//VKRfXraaApe2EP0YtE/g2UqnvBPZXzm3cCC21z7M+JTQj82a\r\n7UBBHBdAEsuQaChu2ULveyotRQzwn47075ErGxtQnBXr2hELpzeuLOY/HGr7\r\n7bVZ4Cdug93UObekUJg6xTflhKzz+B/J6VTphUk6Pimm5GpUOLDRUzu+93og\r\njcTQ9VoM9jaRwCQWSFUkMeI+6YVZCnEz125VWFvG6rhjcsLGzWeoIpNvw4CT\r\nOOseGZ9uvT6APPrztTXan97dAl9SnC+438DN8f2VsCC5M51Onda0LElK1wTN\r\nTqpON49vapHb/wFn8SPlVBac+1p6VyduR+QNBFYGgd7NTtSjDcOEz8BGmaaD\r\n1yy1ozFynqAJ8XndpQsdXhENDf/vkNg4hrkGy3O8Scthy1ZyrpzvIDVmn3Cq\r\n1jS61MXcP8EJNmduOrmSb+DD+m2vGFsOoOv06XGe1HjXNWyiH/oo/nVAiCm4\r\n+WgQTeX+p+RNO6dOrh+f8dlleuL5FX2OprJNa4IQFt8v2LXHgCcBO8bDHUUc\r\nfzddPWWJP5BsMCYxk1iAh40m5OCNBrAwgfTxiD0eZUfgdu9YE0Whv9g/0mi4\r\nwB0Joi541LWnVIWGecn4b5+QWyea7dXmF9K5eibGlZuFR1xZRE15TW26vXDr\r\nbQ8zJ55tE9D6rPNKJdn/Rn3WvMuJYwEXOfw=\r\n=1xWn\r\n-----END PGP SIGNATURE-----\r\n","size":157821},"_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"directories":{},"maintainers":[{"name":"posva","email":"posva13@gmail.com"},{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler_2.7.10_1661218189260_0.9351286790914342"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-08-23T01:29:59.142Z"},"2.7.11":{"name":"vue-template-compiler","version":"2.7.11","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","types":"types/index.d.ts","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":"Evan You","license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"de-indent":"^1.0.2","he":"^1.2.0"},"devDependencies":{"vue":"file:../.."},"_id":"vue-template-compiler@2.7.11","_integrity":"sha512-17QnXkFiBLOH3gGCA3nWAWpmdlTjOWLyP/2eg5ptgY1OvDBuIDGOW9FZ7ZSKmF1UFyf56mLR3/E1SlCTml1LWQ==","_resolved":"/private/var/folders/pj/3mm2hm5x6qq4mf8y8p7h3rvh0000gn/T/4d82402864b2e9fb110d006902b38f6b/vue-template-compiler-2.7.11.tgz","_from":"file:vue-template-compiler-2.7.11.tgz","_nodeVersion":"16.13.2","_npmVersion":"8.4.1","dist":{"integrity":"sha512-17QnXkFiBLOH3gGCA3nWAWpmdlTjOWLyP/2eg5ptgY1OvDBuIDGOW9FZ7ZSKmF1UFyf56mLR3/E1SlCTml1LWQ==","shasum":"e18e8e0dcb2647e8d6ff2ede8a3a92e677ff8dea","tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.7.11.tgz","fileCount":7,"unpackedSize":581897,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCeD8mKvA9jc/CdNtv33olcRmyHPYb8WLwlIlj1CAJ0mgIhAODIvra8DK54jY+oP5+r+wGlyJufqBV5ISyqPba4d3t2"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjRU/KACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq6EA//XyphthDolJ03dM3b0+iLIMnx7FnH4ynl0gAlQ2vPHxwfzmqP\r\nHwGrI8x5lvs2szw2qynoLXjz2PbF8gmOUrpvhaoQZAsYkmsmpNrDFKIAcsUc\r\nZZsWjDDnhiHUx4J1Y3KCbg4zIHEy+r70Tcg2XaR8MC+t5TZ9D4zSa7FVzu84\r\nSeVk7wB6ySsjNO48zd6FTkjKGHJ8bmOtZhSeb/3B6nmTw4rGh0X7g8hEWyVn\r\nocyW+70Pf6nzCuJUDhlVTjfptiirUjuMTcicNu/Km2VfnCDwtRIkmito19/x\r\n5Xh9YjNc5LxZwGBhiz5UyeIQntrVj6J/EbEiUBD0IRMMd3Q3V+QyfjjOjC/j\r\nY8FdEViIWpyHh69rDWepU9IhpNE+yAj+WsVBZkzB+R9UUpbTXz8NGSOaRVg4\r\nLQF4v4IThToIbuLTCx3lucXShN3NK7imklztIJXUAEBdFePk85BKuV56Zra8\r\nF+i+PKDSOLWoAywuKpsuLrw9XOUApGYdT5uXld53e41S1+kyumoCgh3WDBn2\r\nAobcdcGlHWy56bMZ7ao7q4Bv2oRPFdcf1SEBU0a9wVjcdyhUTy8u8SvqhLzD\r\nTP/4NcISxmmd3/Hqlsy1yq9s1xmkfBM4jrEDM3fA8r5+95GNpP7VCUM5MDPT\r\nG3aJuaWdedrT80gBkUJ82pfJH0n/wdhI+OM=\r\n=hrny\r\n-----END PGP SIGNATURE-----\r\n","size":157205},"_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"directories":{},"maintainers":[{"name":"posva","email":"posva13@gmail.com"},{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler_2.7.11_1665486794107_0.6055726452710084"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-10-11T15:07:03.727Z"},"2.7.12":{"name":"vue-template-compiler","version":"2.7.12","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","types":"types/index.d.ts","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"de-indent":"^1.0.2","he":"^1.2.0"},"devDependencies":{"vue":"file:../.."},"_id":"vue-template-compiler@2.7.12","_integrity":"sha512-6rhJAuo2vRzJMs8X/pd9yqtsJmnPEnv4E0cb9KCu0sfGhoDt8roCCa/6qbrvpc1b38zYgdmY/xrk4qfNWZIjwA==","_resolved":"/private/var/folders/pj/3mm2hm5x6qq4mf8y8p7h3rvh0000gn/T/70dfd6171f5ad0d05f19e85e68819afa/vue-template-compiler-2.7.12.tgz","_from":"file:vue-template-compiler-2.7.12.tgz","_nodeVersion":"16.17.1","_npmVersion":"8.15.0","dist":{"integrity":"sha512-6rhJAuo2vRzJMs8X/pd9yqtsJmnPEnv4E0cb9KCu0sfGhoDt8roCCa/6qbrvpc1b38zYgdmY/xrk4qfNWZIjwA==","shasum":"762476971b13eb5ea5c786886be28395f345c1e1","tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.7.12.tgz","fileCount":7,"unpackedSize":581897,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHZxW0jBz7UQKLBRdjeE/dSGEHNvj/aiwoIxXmyNLU+LAiB5ZQJ+qn1Ko3aHw0xBwZoPkBTZdUANJ2YlgpHyGfR64g=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjRsQXACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqqtQ//TPbCDk+xjSL0PjRwZp+liGTM6rhNoYCnJ0pJPkJpl/ntRxoN\r\nFM8Ay2TDe3xNOkRHKuHIzdfFXmgwfKdxNEbEPIxkjbc2ZEl6scWMeJrElqhu\r\nbZMwDhRTk/+zjoS4W9VFOuqNDcsXnrEt2AanQ5qKOTdjvUBXl3o8SR/XlGXW\r\nFgEpkh9zRzBteUzZIQ25Dx3BCGYHgf4xtaKl7WeFaGfjevkguzBV6fUImZxZ\r\nirU6dB7LeqwsbuuEdKWfeE2w71eVZohccC/mRENTmtbcMbM0y/fERTpu/1Cn\r\nzGnNCN5+Ks4DI2/5AYPHXYkV6hYCR+4Ae87PnrVGgHkJ1OQljsvg0+PbbP8M\r\nSrwLs9ZIQQ60fgyUO9Re7weslq0/Vy0yZpAFU0rTFoohmEE+0I3Gi9PaTlUw\r\nYvL6rZNtF8JLlvCkqQ8AJHP00QxrIneIs5ubF5RYLgnESsGskNdTck8FlYsS\r\nC8mJb2RwhBbqlO1brVj7v3BqCLBSriV/csbP1ecmAnh8youhVSPue0OhsLOw\r\n2UABqBqxYDPcBvaC2rjI9q8YKp8iJF25IEM89IOkkUZKLr7qZ7L9IXSohE7W\r\nxwqUOBtC5YO/guSt295Kbg4IhzTP96kU5mdovu8sPwIKuvc+AV8y5epcpuAn\r\n8tJbuDf32KiP87CkcNav1AG5PtnqMYIfM94=\r\n=fqqh\r\n-----END PGP SIGNATURE-----\r\n","size":157205},"_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"directories":{},"maintainers":[{"name":"posva","email":"posva13@gmail.com"},{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler_2.7.12_1665582103250_0.04359027642140445"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-10-12T14:11:46.068Z"},"2.7.13":{"name":"vue-template-compiler","version":"2.7.13","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","types":"types/index.d.ts","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"de-indent":"^1.0.2","he":"^1.2.0"},"devDependencies":{"vue":"file:../.."},"_id":"vue-template-compiler@2.7.13","_integrity":"sha512-jYM6TClwDS9YqP48gYrtAtaOhRKkbYmbzE+Q51gX5YDr777n7tNI/IZk4QV4l/PjQPNh/FVa/E92sh/RqKMrog==","_resolved":"/private/var/folders/pj/3mm2hm5x6qq4mf8y8p7h3rvh0000gn/T/904939035310ec9ba28fe2a53f2108b1/vue-template-compiler-2.7.13.tgz","_from":"file:vue-template-compiler-2.7.13.tgz","_nodeVersion":"16.17.1","_npmVersion":"8.15.0","dist":{"integrity":"sha512-jYM6TClwDS9YqP48gYrtAtaOhRKkbYmbzE+Q51gX5YDr777n7tNI/IZk4QV4l/PjQPNh/FVa/E92sh/RqKMrog==","shasum":"1520a5aa6d1af51dd0622824e79814f6e8cb7058","tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.7.13.tgz","fileCount":7,"unpackedSize":581996,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGJYMBSu/PdEgQ1R5fpypYFLXUqgeVvUvfEkA2YX+5ahAiBH471d4bQfDV+pKX36SKBajEo+IXqpeT+MTrn0xzmu2A=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjSNqLACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmrgnw/+K2abRlmt4h2jq0bocD5phkIIvqiHsRRTDqY2T5W2h0oKOf+j\r\nbssNdD7SJsOWawpwaurS1d2gtjMlfVF4SyN2ZzBnkbJNbLWr8Lsq4agzSLC2\r\nKU2KHauqmSahLFjHfmAGTW/K8V/JfoRxWaqxFgNj+vBbx6b3yuN3299lzUQV\r\no8EGfJMQFXTjlI5gWgnAz5dmUwq1oEZ03QJkgcQIwwwp4lS/LyZn1ZpZd26f\r\nO1WTBiGet2OeobqNVXR0Cdy8MdGaZVwkaVAeMeg4hKAMvN3NO33ILyk5kMqo\r\n2pjgmnKV+pe3yfKHKCWU8st5QSAzHcBCtBKbsuF2ndlKqxqygdhQkRNNWID5\r\n1tNyi/E7+N1IdIKSf+X9qv6y8VSsICkQ07wX30GEG1xgUK3M2IALDvXSzWUm\r\nyOg/hruOvrexAnzZlOiGOzIfT2emj3CGOsD/sGGJTnRgMePAKLvxjvFfXeMC\r\nNfZDE0ht9Zw7L1ZJJWwbSXykfHSRYDDYu9IIpYOhJLlP7EVrQGR14L415aep\r\n79e8NqMFfsdg4OtPqaBiyhVGf0npgUrhUSHMTx2yEpQ/Dm7RzXQ7QekKqep9\r\nCjGVGN/TXJPNOZAkA1B6SuNGCQREfK6KI2q7HD5KmrPeGpbEybS9velnfvSP\r\ngaOmRkRQuTMrZfT15k5TOIoDQeL/AcLxPo0=\r\n=S1VX\r\n-----END PGP SIGNATURE-----\r\n","size":157261},"_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"directories":{},"maintainers":[{"name":"posva","email":"posva13@gmail.com"},{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler_2.7.13_1665718923069_0.8350621938370817"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-10-14T03:46:39.513Z"},"2.7.14":{"name":"vue-template-compiler","version":"2.7.14","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","types":"types/index.d.ts","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"de-indent":"^1.0.2","he":"^1.2.0"},"devDependencies":{"vue":"file:../.."},"_id":"vue-template-compiler@2.7.14","_integrity":"sha512-zyA5Y3ArvVG0NacJDkkzJuPQDF8RFeRlzV2vLeSnhSpieO6LK2OVbdLPi5MPPs09Ii+gMO8nY4S3iKQxBxDmWQ==","_resolved":"/private/var/folders/pj/3mm2hm5x6qq4mf8y8p7h3rvh0000gn/T/0dff79c898bcd8bbbcde371b67f5bf5b/vue-template-compiler-2.7.14.tgz","_from":"file:vue-template-compiler-2.7.14.tgz","_nodeVersion":"18.12.1","_npmVersion":"8.19.2","dist":{"integrity":"sha512-zyA5Y3ArvVG0NacJDkkzJuPQDF8RFeRlzV2vLeSnhSpieO6LK2OVbdLPi5MPPs09Ii+gMO8nY4S3iKQxBxDmWQ==","shasum":"4545b7dfb88090744c1577ae5ac3f964e61634b1","tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.7.14.tgz","fileCount":7,"unpackedSize":582798,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAZxrXtygj307KHBD1J/SqtPUwXV2nqM//64yuE9GXqsAiAHnbpCbtRdP6MMkpnBKWNbwZz7MWQpaoO0NUhxzsm3tQ=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJja5+fACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr9jw//XA+PFlqUZ6mk2GtgV3VumLp3YqG3DHbdWsfgrPw/ykFeOJcN\r\nAJs0qBzxsE13Tu+QTJj4zeoH1upDSa3fKzLQyKVsUTs6V1aAFTjYPMYJhV6E\r\nv6Qh9xnn03tb7AcWHsCEk+m83gf0+FKZ1L6LQb3QEJUN56N3+7fTdha9B8cv\r\nd6PSSfyhN4Qm9sjdrPWFhtJj9eZwgubz05yUs97JFjED3Yz4h0sxPgiQ0ygD\r\nD58zmXIjeZSSMXIQnXnQNN0M2GOkinGb5aWFTFUUpfnjh319Ei1mKZg0x/F+\r\nBU+KIKLOxClAviWRJFVdq0fda2T0jAsrZ8Zznnn+s6sB2v1DyXm2KsItuAFA\r\n+v6cxzTyZb+09ET9C/KYfB+8EWA8Xgy1FxMr4zWEqqw8xfc808xPuZwHT8Ed\r\nDBV5nw2BoXxB8yhlG8vZQM06pNFYN/jAO9FjulUQvHpWdmhOWCtIQl8/pd1l\r\nqq0X098kUEnLxp5qHfJFgxjV9P0q5z/S9ye08VZguodC1NbAMTcjYvwIoUYJ\r\nFG1Y16aURaCnL7HYmRcM0MsRaGQyxz8VqpE5o1LaO/VjK7W0HGJFXAQVcIAR\r\nSWA12fqaA47F6eqBErLaOJYQ0+rcyF7woGVoeJmMbLHjrkanVArPMr6k96xD\r\nEdLio2UVGlnJK6y48ypelGtU+Yng3vJyZNM=\r\n=HlmF\r\n-----END PGP SIGNATURE-----\r\n","size":157345},"_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"directories":{},"maintainers":[{"name":"posva","email":"posva13@gmail.com"},{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler_2.7.14_1667997599485_0.6691975497176055"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-11-09T13:27:32.035Z"},"2.7.15":{"name":"vue-template-compiler","version":"2.7.15","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","types":"types/index.d.ts","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"de-indent":"^1.0.2","he":"^1.2.0"},"devDependencies":{"vue":"file:../.."},"_id":"vue-template-compiler@2.7.15","_integrity":"sha512-yQxjxMptBL7UAog00O8sANud99C6wJF+7kgbcwqkvA38vCGF7HWE66w0ZFnS/kX5gSoJr/PQ4/oS3Ne2pW37Og==","_resolved":"/private/var/folders/y4/6cp34gld0_s85nrqnzqvfh880000gn/T/e3f29716f6d480917640b2ac99472573/vue-template-compiler-2.7.15.tgz","_from":"file:vue-template-compiler-2.7.15.tgz","_nodeVersion":"20.8.1","_npmVersion":"10.1.0","dist":{"integrity":"sha512-yQxjxMptBL7UAog00O8sANud99C6wJF+7kgbcwqkvA38vCGF7HWE66w0ZFnS/kX5gSoJr/PQ4/oS3Ne2pW37Og==","shasum":"ec88ba8ceafe0f17a528b89c57e01e02da92b0de","tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.7.15.tgz","fileCount":7,"unpackedSize":582810,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCnVXDvi95JAgJXgqYEpirBpbTxymehPxYfp59CxzXwsgIhALUcha6BMS0QDuD6pLkITd3YgGRAtwy0WO0VNxwqdQOa"}],"size":157237},"_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"directories":{},"maintainers":[{"name":"posva","email":"posva13@gmail.com"},{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler_2.7.15_1698047747009_0.6713789678714965"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-10-23T07:55:47.286Z","publish_time":1698047747286,"_source_registry_name":"default"},"2.7.16-beta.1":{"name":"vue-template-compiler","version":"2.7.16-beta.1","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","types":"types/index.d.ts","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"de-indent":"^1.0.2","he":"^1.2.0"},"devDependencies":{"vue":"file:../.."},"readmeFilename":"README.md","_id":"vue-template-compiler@2.7.16-beta.1","_integrity":"sha512-QU2qMXcXlDp4UNQQwD2fL/3VquVcqgj/AiNSFGSmitQfv75k9uipPXaL31w9mF0ua2hu4+Y2NdH91fRNOAdJxQ==","_resolved":"/private/var/folders/y4/6cp34gld0_s85nrqnzqvfh880000gn/T/e6fa0f7d385f4e472827c0dfdab32d29/vue-template-compiler-2.7.16-beta.1.tgz","_from":"file:vue-template-compiler-2.7.16-beta.1.tgz","_nodeVersion":"20.10.0","_npmVersion":"10.2.3","dist":{"integrity":"sha512-QU2qMXcXlDp4UNQQwD2fL/3VquVcqgj/AiNSFGSmitQfv75k9uipPXaL31w9mF0ua2hu4+Y2NdH91fRNOAdJxQ==","shasum":"5c5fdc0f4dfd8346e3f51e0f719d1f0afe712fab","tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.7.16-beta.1.tgz","fileCount":7,"unpackedSize":583569,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCID34repMFe0c2U2JE8MupXcJKPpZCz0/ebAIWMEka9+GAiAkP+wXlOtyl/gO7j6QZ5d6/b08zc35gGQlO9eiucbU9Q=="}],"size":158061},"_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"directories":{},"maintainers":[{"name":"posva","email":"posva13@gmail.com"},{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler_2.7.16-beta.1_1701999730441_0.637915392813017"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-12-08T01:42:10.700Z","publish_time":1701999730700,"_source_registry_name":"default"},"2.7.16-beta.2":{"name":"vue-template-compiler","version":"2.7.16-beta.2","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","types":"types/index.d.ts","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"de-indent":"^1.0.2","he":"^1.2.0"},"devDependencies":{"vue":"file:../.."},"readmeFilename":"README.md","_id":"vue-template-compiler@2.7.16-beta.2","_integrity":"sha512-5diVe95LApLU7LIPT0LrOnmHBYynTGJZIH9WIr30Xx8Cg1UTiJK6H9bc7fT/oZl2Y+K8pT68+vHmsQXV3df/8g==","_resolved":"/private/var/folders/y4/6cp34gld0_s85nrqnzqvfh880000gn/T/5744f1348ed573c807613ab1c85e7316/vue-template-compiler-2.7.16-beta.2.tgz","_from":"file:vue-template-compiler-2.7.16-beta.2.tgz","_nodeVersion":"20.10.0","_npmVersion":"10.2.3","dist":{"integrity":"sha512-5diVe95LApLU7LIPT0LrOnmHBYynTGJZIH9WIr30Xx8Cg1UTiJK6H9bc7fT/oZl2Y+K8pT68+vHmsQXV3df/8g==","shasum":"21d00ebac7d740d7df0ed9b1effd17fc3c38a39a","tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.7.16-beta.2.tgz","fileCount":7,"unpackedSize":583569,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCSoLyw6ZYPXDoOmF9fXBVdiEU8aRNSwCYVp5/dNuDMFgIhAISQcMiK8CRCmc7VnHpoEptpPBhfWwH4tYA9LD2gzu0a"}],"size":158060},"_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"directories":{},"maintainers":[{"name":"posva","email":"posva13@gmail.com"},{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler_2.7.16-beta.2_1702517295754_0.9369363582399686"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-12-14T01:28:16.137Z","publish_time":1702517296137,"_source_registry_name":"default"},"2.7.16":{"name":"vue-template-compiler","version":"2.7.16","description":"template compiler for Vue 2.0","main":"index.js","unpkg":"browser.js","jsdelivr":"browser.js","browser":"browser.js","types":"types/index.d.ts","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"keywords":["vue","compiler"],"author":{"name":"Evan You"},"license":"MIT","bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","dependencies":{"de-indent":"^1.0.2","he":"^1.2.0"},"devDependencies":{"vue":"file:../.."},"_id":"vue-template-compiler@2.7.16","_integrity":"sha512-AYbUWAJHLGGQM7+cNTELw+KsOG9nl2CnSv467WobS5Cv9uk3wFcnr1Etsz2sEIHEZvw1U+o9mRlEO6QbZvUPGQ==","_resolved":"/private/var/folders/y4/6cp34gld0_s85nrqnzqvfh880000gn/T/231315b112ad7be7ebb1df8fa4033527/vue-template-compiler-2.7.16.tgz","_from":"file:vue-template-compiler-2.7.16.tgz","_nodeVersion":"20.10.0","_npmVersion":"10.2.3","dist":{"integrity":"sha512-AYbUWAJHLGGQM7+cNTELw+KsOG9nl2CnSv467WobS5Cv9uk3wFcnr1Etsz2sEIHEZvw1U+o9mRlEO6QbZvUPGQ==","shasum":"c81b2d47753264c77ac03b9966a46637482bb03b","tarball":"https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.7.16.tgz","fileCount":7,"unpackedSize":583562,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAHFL7tPzpZNjVoZdJSibs+g6htHSFIhLfkSVA+0GUSVAiEA7eB7GkNeG2rzIwg3aKfPuiJ3jYbZODG8TH70rdFjfpE="}],"size":158056},"_npmUser":{"name":"yyx990803","email":"yyx990803@gmail.com"},"directories":{},"maintainers":[{"name":"posva","email":"posva13@gmail.com"},{"name":"yyx990803","email":"yyx990803@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-template-compiler_2.7.16_1703430136689_0.024571880269102397"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-12-24T15:02:16.927Z","publish_time":1703430136927,"_source_registry_name":"default"}},"bugs":{"url":"https://github.com/vuejs/vue/issues"},"homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme","keywords":["vue","compiler"],"repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"_source_registry_name":"default"}