{"maintainers":[{"name":"yyx990803","email":"yyx990803@gmail.com"}],"keywords":["vue","compiler"],"dist-tags":{"latest":"2.4.2","beta":"2.3.0-beta.1"},"author":{"name":"Evan You"},"description":"template compiler for Vue 2.0","readme":"# vue-template-compiler\n\n> This package is auto-generated. For pull requests please see [src/entries/web-compiler.js](https://github.com/vuejs/vue/tree/dev/src/platforms/web/compiler).\n\nThis package can be used to pre-compile Vue 2.0 templates into render functions to avoid runtime-compilation overhead and CSP restrictions. You will only need it if you are writing build tools with very specific needs. In most cases you should be using [vue-loader](https://github.com/vuejs/vue-loader) or [vueify](https://github.com/vuejs/vueify) instead, both of which use this package internally.\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\nIt'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\nThe optional `options` object can contain the following:\n\n- `modules`\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) 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  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`\n\n  Defaults to `true`. This means the compiled render function respects all the whitespaces between HTML tags. If set to `false`, all whitespaces 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.ssrCompileToFunction(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#### 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","repository":{"type":"git","url":"git+https://github.com/vuejs/vue.git"},"users":{"tommyzzm":true,"yanlaichang":true,"edgardleal":true,"stone_breaker":true,"sibawite":true,"usex":true,"paulkolesnyk":true},"bugs":{"url":"https://github.com/vuejs/vue/issues"},"license":"MIT","versions":{"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","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-template-compiler/-/vue-template-compiler-0.1.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/vue-template-compiler-0.1.0.tgz_1465573666173_0.632203227840364"},"directories":{}},"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","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-template-compiler/-/vue-template-compiler-2.0.0-alpha.1.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.0.0-alpha.1.tgz_1465601004271_0.7862520646303892"},"directories":{}},"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","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-template-compiler/-/vue-template-compiler-2.0.0-alpha.2.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.0.0-alpha.2.tgz_1465860998802_0.6736660019960254"},"directories":{}},"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","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-template-compiler/-/vue-template-compiler-2.0.0-alpha.3.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.0.0-alpha.3.tgz_1466014948337_0.5379339947830886"},"directories":{}},"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","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-template-compiler/-/vue-template-compiler-2.0.0-alpha.4.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.0.0-alpha.4.tgz_1466096441856_0.7140775457955897"},"directories":{}},"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","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-template-compiler/-/vue-template-compiler-2.0.0-alpha.5.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.0.0-alpha.5.tgz_1466187751691_0.82523313164711"},"directories":{}},"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","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-template-compiler/-/vue-template-compiler-2.0.0-alpha.6.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.0.0-alpha.6.tgz_1466623992689_0.7907917378470302"},"directories":{}},"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","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-template-compiler/-/vue-template-compiler-2.0.0-alpha.7.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.0.0-alpha.7.tgz_1467080647270_0.06711079413071275"},"directories":{}},"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","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-template-compiler/-/vue-template-compiler-2.0.0-alpha.8.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.0.0-alpha.8.tgz_1467104522891_0.7414562308695167"},"directories":{}},"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","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-template-compiler/-/vue-template-compiler-2.0.0-beta.1.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.0.0-beta.1.tgz_1467928293956_0.9618666989263147"},"directories":{}},"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","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-template-compiler/-/vue-template-compiler-2.0.0-beta.2.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.0.0-beta.2.tgz_1468734676537_0.14196887519210577"},"directories":{}},"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","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-template-compiler/-/vue-template-compiler-2.0.0-beta.3.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.0.0-beta.3.tgz_1469328308727_0.6214165429119021"},"directories":{}},"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","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-template-compiler/-/vue-template-compiler-2.0.0-beta.4.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.0.0-beta.4.tgz_1469498656925_0.1254767740610987"},"directories":{}},"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","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-template-compiler/-/vue-template-compiler-2.0.0-beta.5.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.0.0-beta.5.tgz_1469593532280_0.8089908831752837"},"directories":{}},"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","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-template-compiler/-/vue-template-compiler-2.0.0-beta.6.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.0.0-beta.6.tgz_1470079646981_0.9989801840856671"},"directories":{}},"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","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-template-compiler/-/vue-template-compiler-2.0.0-beta.7.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.0.0-beta.7.tgz_1470435019691_0.23125209426507354"},"directories":{}},"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","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-template-compiler/-/vue-template-compiler-2.0.0-beta.8.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.0.0-beta.8.tgz_1470804921815_0.8382573898416013"},"directories":{}},"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","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-template-compiler/-/vue-template-compiler-2.0.0-rc.1.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.0.0-rc.1.tgz_1470894183531_0.2927602673880756"},"directories":{}},"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","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-template-compiler/-/vue-template-compiler-2.0.0-rc.2.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.0.0-rc.2.tgz_1471318740368_0.930863729910925"},"directories":{}},"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","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-template-compiler/-/vue-template-compiler-2.0.0-rc.3.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.0.0-rc.3.tgz_1471716287809_0.5007426112424582"},"directories":{}},"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","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-template-compiler/-/vue-template-compiler-2.0.0-rc.4.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.0.0-rc.4.tgz_1472500135015_0.06218302855268121"},"directories":{}},"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","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-template-compiler/-/vue-template-compiler-2.0.0-rc.5.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.0.0-rc.5.tgz_1473334182187_0.8258694319520146"},"directories":{}},"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","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-template-compiler/-/vue-template-compiler-2.0.0-rc.6.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.0.0-rc.6.tgz_1473772855552_0.1562834254000336"},"directories":{}},"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","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-template-compiler/-/vue-template-compiler-2.0.0-rc.7.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.0.0-rc.7.tgz_1474669483328_0.9301417889073491"},"directories":{}},"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","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-template-compiler/-/vue-template-compiler-2.0.0-rc.8.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.0.0-rc.8.tgz_1475010503863_0.20440068026073277"},"directories":{}},"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","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-template-compiler/-/vue-template-compiler-2.0.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.0.0.tgz_1475260314258_0.4241835630964488"},"directories":{}},"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","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-template-compiler/-/vue-template-compiler-2.0.1.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.0.1.tgz_1475269914672_0.6228187016677111"},"directories":{}},"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","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-template-compiler/-/vue-template-compiler-2.0.2.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.0.2.tgz_1476248040485_0.37699406826868653"},"directories":{}},"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","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-template-compiler/-/vue-template-compiler-2.0.3.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/vue-template-compiler-2.0.3.tgz_1476350841568_0.07474172697402537"},"directories":{}},"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","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-template-compiler/-/vue-template-compiler-2.0.4.tgz"},"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":{}},"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","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-template-compiler/-/vue-template-compiler-2.0.5.tgz"},"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":{}},"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","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-template-compiler/-/vue-template-compiler-2.0.6.tgz"},"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":{}},"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","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-template-compiler/-/vue-template-compiler-2.0.7.tgz"},"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":{}},"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","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-template-compiler/-/vue-template-compiler-2.0.8.tgz"},"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":{}},"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","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-template-compiler/-/vue-template-compiler-2.1.0.tgz"},"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":{}},"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","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-template-compiler/-/vue-template-compiler-2.1.1.tgz"},"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":{}},"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","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-template-compiler/-/vue-template-compiler-2.1.2.tgz"},"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":{}},"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","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-template-compiler/-/vue-template-compiler-2.1.3.tgz"},"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":{}},"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","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-template-compiler/-/vue-template-compiler-2.1.4.tgz"},"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":{}},"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","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-template-compiler/-/vue-template-compiler-2.1.5.tgz"},"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":{}},"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","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-template-compiler/-/vue-template-compiler-2.1.6.tgz"},"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":{}},"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","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-template-compiler/-/vue-template-compiler-2.1.7.tgz"},"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":{}},"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","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-template-compiler/-/vue-template-compiler-2.1.8.tgz"},"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":{}},"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","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-template-compiler/-/vue-template-compiler-2.1.9.tgz"},"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":{}},"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","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-template-compiler/-/vue-template-compiler-2.1.10.tgz"},"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":{}},"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","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-template-compiler/-/vue-template-compiler-2.2.0-beta.1.tgz"},"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":{}},"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","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-template-compiler/-/vue-template-compiler-2.2.0-beta.2.tgz"},"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":{}},"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","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-template-compiler/-/vue-template-compiler-2.2.0.tgz"},"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":{}},"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","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-template-compiler/-/vue-template-compiler-2.2.1.tgz"},"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":{}},"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","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-template-compiler/-/vue-template-compiler-2.2.2.tgz"},"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":{}},"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","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-template-compiler/-/vue-template-compiler-2.2.3.tgz"},"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":{}},"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","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-template-compiler/-/vue-template-compiler-2.2.4.tgz"},"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":{}},"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","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-template-compiler/-/vue-template-compiler-2.2.5.tgz"},"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":{}},"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","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-template-compiler/-/vue-template-compiler-2.2.6.tgz"},"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":{}},"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","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-template-compiler/-/vue-template-compiler-2.3.0-beta.1.tgz"},"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":{}},"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","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-template-compiler/-/vue-template-compiler-2.3.0.tgz"},"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":{}},"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","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-template-compiler/-/vue-template-compiler-2.3.1.tgz"},"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":{}},"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","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-template-compiler/-/vue-template-compiler-2.3.2.tgz"},"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":{}},"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","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-template-compiler/-/vue-template-compiler-2.3.3.tgz"},"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":{}},"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":{"integrity":"sha512-GezvHn6bw053zIo0TQIjimRpyELjCEOrc5hGHtHUeadbVSdKB9yqY6By9WiYvbFwOZiuMmFpSfjD8VzVibWGtQ==","shasum":"5a88ac2c5e4d5d6218e6aa80e7e221fb7e67894c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-template-compiler/-/vue-template-compiler-2.3.4.tgz"},"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":{}},"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":{"integrity":"sha512-iXoj4qzGnM4XYvIy/PcDqKgpq/AAnjFvwMdLva00gA21YKXBKYwCtP49OH8oq6NA+OYktDc6Cdkl5Zdqt/kkGw==","shasum":"17a84f575794637f9ca701f769f1fa498e6b9942","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-template-compiler/-/vue-template-compiler-2.4.0.tgz"},"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":{}},"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":{"integrity":"sha512-DE7D9qpgT8ExbWwnzDeakZjmi2tEP1auxq4sD1R2L10A6PFTvo+R0r3bpxPAReGJBqxS4qrjw3kGFzT6Jvb3YQ==","shasum":"20115cf8714f222f9be4111ec75b079a1c9b8197","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-template-compiler/-/vue-template-compiler-2.4.1.tgz"},"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":{}},"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":{"integrity":"sha512-sKa2Bdvh+j6V9eQSyJRxsf8fak0FtQkCZ145aYFDVwZBhHOTt1vKrODLo4RelI1dUczKlDCp5aZ9MD7uJOZwvw==","shasum":"5a45d843f148b098f6c1d1e35ac20c4956d30ad1","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/vue-template-compiler/-/vue-template-compiler-2.4.2.tgz"},"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":{}}},"name":"vue-template-compiler","time":{"modified":"2017-08-08T08:52:47.179Z","created":"2016-06-10T15:47:48.751Z","0.1.0":"2016-06-10T15:47:48.751Z","2.0.0-alpha.1":"2016-06-10T23:23:27.189Z","2.0.0-alpha.2":"2016-06-13T23:36:41.487Z","2.0.0-alpha.3":"2016-06-15T18:22:31.815Z","2.0.0-alpha.4":"2016-06-16T17:00:42.859Z","2.0.0-alpha.5":"2016-06-17T18:22:33.997Z","2.0.0-alpha.6":"2016-06-22T19:33:15.168Z","2.0.0-alpha.7":"2016-06-28T02:24:08.315Z","2.0.0-alpha.8":"2016-06-28T09:02:05.303Z","2.0.0-beta.1":"2016-07-07T21:51:36.515Z","2.0.0-beta.2":"2016-07-17T05:51:17.599Z","2.0.0-beta.3":"2016-07-24T02:45:10.680Z","2.0.0-beta.4":"2016-07-26T02:04:18.753Z","2.0.0-beta.5":"2016-07-27T04:25:34.705Z","2.0.0-beta.6":"2016-08-01T19:27:28.778Z","2.0.0-beta.7":"2016-08-05T22:10:21.736Z","2.0.0-beta.8":"2016-08-10T04:55:24.490Z","2.0.0-rc.1":"2016-08-11T05:43:04.364Z","2.0.0-rc.2":"2016-08-16T03:39:02.125Z","2.0.0-rc.3":"2016-08-20T18:04:49.454Z","2.0.0-rc.4":"2016-08-29T19:48:56.796Z","2.0.0-rc.5":"2016-09-08T11:29:43.352Z","2.0.0-rc.6":"2016-09-13T13:20:57.312Z","2.0.0-rc.7":"2016-09-23T22:24:45.382Z","2.0.0-rc.8":"2016-09-27T21:08:24.459Z","2.0.0":"2016-09-30T18:31:55.901Z","2.0.1":"2016-09-30T21:11:56.222Z","2.0.2":"2016-10-12T04:54:02.591Z","2.0.3":"2016-10-13T09:27:23.552Z","2.0.4":"2016-11-04T20:46:59.814Z","2.0.5":"2016-11-05T03:47:23.261Z","2.0.6":"2016-11-15T23:04:59.183Z","2.0.7":"2016-11-16T21:54:20.675Z","2.0.8":"2016-11-20T03:14:55.846Z","2.1.0":"2016-11-22T16:15:02.605Z","2.1.1":"2016-11-23T21:00:38.410Z","2.1.2":"2016-11-23T23:41:21.564Z","2.1.3":"2016-11-24T00:21:12.848Z","2.1.4":"2016-12-02T03:01:15.152Z","2.1.5":"2016-12-13T03:09:24.368Z","2.1.6":"2016-12-13T17:22:24.686Z","2.1.7":"2016-12-24T16:36:10.421Z","2.1.8":"2016-12-28T05:54:31.533Z","2.1.9":"2017-01-16T23:48:02.573Z","2.1.10":"2017-01-17T17:17:07.192Z","2.2.0-beta.1":"2017-02-24T04:22:17.417Z","2.2.0-beta.2":"2017-02-25T00:01:06.539Z","2.2.0":"2017-02-26T04:28:11.670Z","2.2.1":"2017-02-26T13:10:45.467Z","2.2.2":"2017-03-09T02:32:35.226Z","2.2.3":"2017-03-13T08:07:55.424Z","2.2.4":"2017-03-13T15:08:05.946Z","2.2.5":"2017-03-24T04:53:25.305Z","2.2.6":"2017-03-27T02:46:02.193Z","2.3.0-beta.1":"2017-04-26T10:32:26.908Z","2.3.0":"2017-04-27T06:22:02.445Z","2.3.1":"2017-05-02T07:57:32.854Z","2.3.2":"2017-05-02T10:29:53.734Z","2.3.3":"2017-05-09T16:57:04.720Z","2.3.4":"2017-06-08T04:53:26.574Z","2.4.0":"2017-07-13T05:52:49.585Z","2.4.1":"2017-07-13T06:40:14.455Z","2.4.2":"2017-07-21T04:28:28.366Z"},"readmeFilename":"README.md","homepage":"https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#readme"}