{"_id":"regularjs","_rev":"46-f5621904cf8cc951de45012a32776ac3","name":"regularjs","time":{"modified":"2022-06-26T10:48:26.779Z","created":"2014-08-19T08:49:43.879Z","0.2.4":"2014-08-19T08:49:43.879Z","0.2.5":"2014-08-19T09:00:09.713Z","0.2.12":"2014-10-18T07:25:12.715Z","0.2.13":"2014-10-24T08:19:17.161Z","0.2.14":"2014-12-05T02:08:22.456Z","0.2.15-alpha":"2014-12-05T03:11:27.756Z","0.3.0":"2015-01-27T06:49:31.905Z","0.3.1":"2015-07-17T03:01:49.346Z","0.3.2":"2015-09-23T10:17:51.867Z","0.4.0":"2015-09-29T07:22:25.675Z","0.4.1":"2015-10-30T10:55:30.016Z","0.4.2":"2015-11-20T07:38:12.298Z","0.4.3":"2015-12-08T03:36:40.016Z","0.4.4":"2016-05-27T03:21:39.329Z","0.5.0":"2016-08-25T09:46:05.361Z","0.5.1":"2016-08-29T08:31:28.839Z","0.5.2":"2016-09-26T03:45:23.744Z","0.6.0-beta.1":"2017-02-09T08:22:53.238Z","0.6.0-beta.2":"2017-04-05T02:15:15.216Z","0.6.0-beta.3":"2017-05-17T07:15:50.048Z","0.6.0-beta.4":"2017-06-10T03:13:12.321Z","0.6.0-beta.5":"2017-06-14T01:47:56.397Z","0.6.0-beta.6":"2017-06-14T06:14:00.260Z","0.6.0-beta.7":"2017-10-16T06:04:11.548Z","0.6.0-beta.8":"2017-11-15T03:03:59.392Z","0.6.0-beta.9":"2018-01-23T08:29:14.523Z","0.6.0-beta.10":"2018-02-11T12:56:39.832Z","0.6.0-beta.11":"2018-07-18T07:53:59.655Z","0.6.0":"2018-08-17T08:44:06.379Z","0.6.1":"2019-01-09T06:28:19.972Z","0.6.2":"2019-01-09T14:42:52.131Z"},"maintainers":[{"email":"fengzilong1992@gmail.com","name":"fengzilong"},{"email":"87399126@163.com","name":"leeluolee"}],"dist-tags":{"latest":"0.6.2"},"description":"[![regularjs](http://regularjs.github.io/image/regular-icon-100.png)](http://regularjs.github.io)","readme":"[![regularjs](http://regularjs.github.io/image/regular-icon-100.png)](http://regularjs.github.io)\n\n# Regularjs\n\n\n[![Build Status](http://img.shields.io/travis/regularjs/regular/master.svg?style=flat-square)](http://travis-ci.org/regularjs/regular)\n\n> Regularjs is a __living template engine__ that helps us to create data-driven components.\n\n\n* __[✨中文指南 ](http://regularjs.github.io/guide/zh/index.html)__\n* __[✨中文API ](http://regularjs.github.io/reference/?api-zh)__\n\n\n## Features\n\n- __String-based template__ makes it flexible to write your component;\n- __data-binding__ based on dirty-check: experience from AngularJS-like frameworks also makes sense to regularjs;\n- __self-contained and well-defined encapsulation__ makes it more easily integrated with other frameworks;\n- __composite components__: components can be used as \"custom elements\";\n- __directive, filter, event and animation...__  all you need is provided out of the box with __concise API__.\n\n\n\n## Quick Start\n\n### Example 1: __define a simple Note Component__\n\n```javascript\nvar Note = Regular.extend({\n  template:\n    \"<input {#if !disabled} r-model='hello' {#else} disabled {/if} > {hello} \\\n    <button on-click={disabled = !disabled}>{disabled? 'active': 'disable'} it</button>\"\n});\n\n// inject component into #app , you can also inject at 'before' , 'after', 'top'.\nvar note = new Note().$inject(\"#app\");\n\n```\n\n__[Example1 on codepen.io](http://codepen.io/leeluolee/pen/JqAaH)__\n\nThis example is dead simple, but you can find the directive and attribute is easily switched by statement 'if', which is difficult with other mvvm frameworks.\n\n\n### Example 2: __define a List Component__\n\n```javascript\nvar NoteList = Regular.extend({\n  template:\n    \"<ul>{#list notes as nt}\" +\n      \"<li class={nt.done? 'done': ''} on-click={nt.done= !nt.done}>{{nt.content}}</li>\" +\n    \"{/list}</ul>\"\n});\n\nvar list = new NoteList({\n  data: {\n    notes: [\n      {content: 'playgame'},\n      {content: 'homework'}\n    ]\n  }\n}).$inject(\"#app\");\n\n```\n\nIn this Example, we create a ListView with the statement `list`.\n\n__[Example2 on codepen.io](http://codepen.io/leeluolee/pen/mAKlL)__\n\n\n### Example 3: combine Note with NoteList\n\nWe need to refactor Note to make it composable.\n\n```javascript\nvar Note = Regular.extend({\n  name: 'note',  // register component during the definition of Component\n  template:\n   \"<input r-model={draft}> <button on-click={this.post()}> post</button>\",\n  post: function(){\n    var data = this.data;\n    this.$emit('post', data.draft);\n    data.draft = \"\"; //clear the draft\n  }\n});\n\nRegular.component('list', NoteList);  // manual register a component\n\n```\n\nWhen 'Enter' is pressed, `Note` will emit a 'post' event with `draft` as the $event object.\n\n> The keyword `this` in the template refers to the component itself.\n\nThen, let's define the core component: NoteApp.\n\n```javascript\nvar NoteApp = Regular.extend({\n  template:\n    \"<note on-post={notes.push({ content: $event} )}/>\"+\n    \"<list notes ={notes}></list>\"\n});\n\nvar noteapp = new NoteApp({\n    data: {notes:[]}\n});\n\nnoteapp.$inject('#app');\n\n```\n\nyou can register a component (via attribute `name` or method `Component.component`) to make it composable in other components.\n\n__[Example3 on codepen.io](http://codepen.io/leeluolee/pen/bqkLp)__\n\n\nSee more on [Guide: Quick Start](http://regularjs.github.io/guide/en/getting-start/README.html)\n\n## Resources\n\n* __[Official Site ](http://regularjs.github.io)__\n* __[Reference ](http://regularjs.github.io/reference)__\n\n\n## Browser Compatibility\n\nIE7+ and other modern browsers.\n\n\n## Installation\n\n### bower\n\n```javascript\nbower install regularjs\n```\n\n`dist/regular.js` has been packaged as a standard UMD, and therefore you can use it in AMD, commonjs or global.\n\n### npm (browserify or other based on commonjs)\n\n```bash\n$ npm install regularjs\n```\n\nuse\n\n```js\nvar Regular = require('regularjs');\n```\n\n\n### component\n\n```bash\n$ component install regularjs/regular\n```\nuse\n\n```js\nvar Regular = require('regularjs/regular');\n```\n\n\n\n### Direct download\n\n1. [regular.js](https://rawgit.com/regularjs/regular/master/dist/regular.js)\n2. [regular.min.js](https://rawgit.com/regularjs/regular/master/dist/regular.min.js)\n\n\n## Who are using?\n\n1. [NetEase](https://github.com/NetEase): the operator of the famous website [www.163.com](http://www.163.com).\n\n\n\n## Community\n\n* If you find any bug or have any suggestion, please feel free to [open an issue](https://github.com/regularjs/regular/issues)\n\n* Ask any question on [Stack Overflow](http://stackoverflow.com/questions/tagged/regularjs) with tag `regularjs`.\n\n* Social\n  1. twitter: follow the [@regularjs](https://twitter.com/regularjs)\n  1. gitter: join chat at [![Gitter chat](https://badges.gitter.im/regularjs/regular.png)](https://gitter.im/regularjs/regular)\n  1. weibo: [@拴萝卜的棍子](http://weibo.com/luobolee)\n\n## Contributing\n\n__regularjs is still under heavy development__, and please help us with feedback. Contributing to this project is also welcome.\n\n* Please [open an issue](https://github.com/regularjs/regular/issues) before sending pull request\n* if needed, add your testcase in `test/specs` folder. Always make sure the `gulp test` is passed, and the `test/runner/index.html` is passed in every target browser (if a certain browser is not installed, list that in [gulpfile's karmaConfig](https://github.com/regularjs/regular/blob/master/gulpfile.js#L30))\n\n\n\n## LICENSE\n\n[MIT](https://github.com/regularjs/regular/blob/master/LICENSE).\n\n## TODO\n\nremove log code in production mode;","versions":{"0.2.5":{"name":"regularjs","version":"0.2.5","author":{"name":"leeluolee"},"description":"![logo](http://regularjs.github.io//asserts/image/regular-icon-100.png)","license":"MIT","keywords":["template","data-binding"],"main":"src/node.js","repository":{"type":"git","url":"https://github.com/regularjs"},"homepage":"http://regularjs.github.io","scripts":{"test":"gulp travis --phantomjs"},"bin":{"regular":"./bin/regular"},"devDependencies":{"gulp":"3.6.x","gulp-component":"~0.1.8","gulp-uglify":"~0.2.1","gulp-jshint":"~1.5.3","gulp-mocha":"~0.4.1","gulp-istanbul":"~0.1.1","gulp-util":"~2.2.14","through2":"~0.4.1","mocha":"~1.18.2","expect.js":"~0.3.1","karma":"~0.12.6","karma-mocha":"~0.1.3","karma-phantomjs-launcher":"~0.1.4","karma-coverage":"~0.2.4","karma-ie-launcher":"~0.1.5","karma-chrome-launcher":"~0.1.4","karma-firefox-launcher":"~0.1.3"},"gitHead":"7a5c74ccfb7adfda4dda76b48916ad5e4a0392fb","_id":"regularjs@0.2.5","_shasum":"7f4c92109becb0d8894f22e10064833b20e930e2","_from":".","_npmVersion":"1.4.16","_npmUser":{"name":"leeluolee","email":"87399126@163.com"},"maintainers":[{"name":"leeluolee","email":"87399126@163.com"}],"dist":{"shasum":"7f4c92109becb0d8894f22e10064833b20e930e2","tarball":"https://registry.npmjs.org/regularjs/-/regularjs-0.2.5.tgz","integrity":"sha512-fmQNKNMDSgjQ+CHN1VJbaOcTxCFOcXd/n8zg/f6g14yEf364cm148YIMvo2C8QUiNuCX1hpEXdZyCTznYskjZg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHG0lP1RTuDZ3AdD5Qp6rvhFouk9Yl8q8+F4MCsEbwcDAiEAkehSqum1unc6ep2ioFf+wbYrFRHRuykVrkbLWRLC5b0="}]},"directories":{}},"0.2.12":{"name":"regularjs","version":"0.2.12","author":{"name":"leeluolee"},"description":"<a href=\"http://regularjs.github.io\">   ![regularjs](http://regularjs.github.io/image/regular-icon-100.png) </a>","license":"MIT","keywords":["template","data-binding"],"main":"src/index.js","repository":{"type":"git","url":"https://github.com/regularjs/regular"},"homepage":"http://regularjs.github.io","scripts":{"test":"gulp travis --phantomjs"},"bin":{"regular":"./bin/regular"},"devDependencies":{"gulp":"3.6.x","gulp-component":"~0.1.8","gulp-uglify":"~0.2.1","gulp-jshint":"~1.5.3","gulp-mocha":"~0.4.1","gulp-istanbul":"~0.1.1","gulp-util":"~2.2.14","through2":"~0.4.1","mocha":"~1.18.2","expect.js":"~0.3.1","karma":"~0.12.6","karma-mocha":"~0.1.3","karma-phantomjs-launcher":"~0.1.4","karma-coverage":"~0.2.4","karma-ie-launcher":"~0.1.5","karma-chrome-launcher":"~0.1.4","karma-firefox-launcher":"~0.1.3"},"dependencies":{"gulp-shell":"^0.2.9","gulp-webpack":"^1.0.0"},"gitHead":"07c17a81dd59f9a157e11dd045277b3731cbb545","bugs":{"url":"https://github.com/regularjs/regular/issues"},"_id":"regularjs@0.2.12","_shasum":"d1dc32e53a2d463267efbbc6d13c832e0c6d8d2d","_from":".","_npmVersion":"1.4.16","_npmUser":{"name":"leeluolee","email":"87399126@163.com"},"maintainers":[{"name":"leeluolee","email":"87399126@163.com"}],"dist":{"shasum":"d1dc32e53a2d463267efbbc6d13c832e0c6d8d2d","tarball":"https://registry.npmjs.org/regularjs/-/regularjs-0.2.12.tgz","integrity":"sha512-9Q3xoi00rxzTmjgBtKxdi0kzIbMVu5BZSziU+hVufwXuGZpqziZJQvOM9HK1SmnFRtsEXCs40rcB/AHu7G69ww==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGQg5+SBw3uxx6EmoJk450g4I69ZcSN1iHSbtIxeJMXTAiBzJ7jQrQ+Nazpe5XX2VFLT4BLoB9a3De+fNj1SYoJuHg=="}]},"directories":{}},"0.2.13":{"name":"regularjs","version":"0.2.13","author":{"name":"leeluolee"},"description":"<a href=\"http://regularjs.github.io\">   ![regularjs](http://regularjs.github.io/image/regular-icon-100.png) </a>","license":"MIT","keywords":["template","data-binding"],"main":"src/node.js","repository":{"type":"git","url":"https://github.com/regularjs/regular"},"homepage":"http://regularjs.github.io","scripts":{"test":"gulp travis --phantomjs"},"bin":{"regular":"./bin/regular"},"devDependencies":{"gulp":"3.6.x","gulp-component":"~0.1.8","gulp-uglify":"~0.2.1","gulp-jshint":"~1.5.3","gulp-mocha":"~0.4.1","gulp-istanbul":"~0.1.1","gulp-util":"~2.2.14","through2":"~0.4.1","mocha":"~1.18.2","expect.js":"~0.3.1","karma":"~0.12.6","karma-mocha":"~0.1.3","karma-phantomjs-launcher":"~0.1.4","karma-coverage":"~0.2.4","karma-ie-launcher":"~0.1.5","karma-chrome-launcher":"~0.1.4","karma-firefox-launcher":"~0.1.3"},"dependencies":{"gulp-shell":"^0.2.9","gulp-webpack":"^1.0.0"},"gitHead":"4be84d8ddc8109bc1bc23f0eac9b652b58c1c5b3","bugs":{"url":"https://github.com/regularjs/regular/issues"},"_id":"regularjs@0.2.13","_shasum":"2f3cdf5eeefcb35b483c96516dd716e1f9b5b040","_from":".","_npmVersion":"1.4.16","_npmUser":{"name":"leeluolee","email":"87399126@163.com"},"maintainers":[{"name":"leeluolee","email":"87399126@163.com"}],"dist":{"shasum":"2f3cdf5eeefcb35b483c96516dd716e1f9b5b040","tarball":"https://registry.npmjs.org/regularjs/-/regularjs-0.2.13.tgz","integrity":"sha512-hXmBXGxluQHmMaCfZL6fsH/YrlIFKnAuIBa5pnLcySSJVWGtBHD7Fhr0ShC6VONgbyY9BI+EIg9PzmOZX6sugQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDTI/NjzYAzpw3hZdBAeEcROlWBruDHLPFvDYrYpCQSbgIhAL1zadlUBbNfClcs7HnTATwwZWN/eRnWJ6SU+pbdNvvN"}]},"directories":{}},"0.2.15-alpha":{"name":"regularjs","version":"0.2.15-alpha","author":{"name":"leeluolee"},"description":"<a href=\"http://regularjs.github.io\">   ![regularjs](http://regularjs.github.io/image/regular-icon-100.png) </a>","license":"MIT","keywords":["template","data-binding"],"main":"src/node.js","repository":{"type":"git","url":"https://github.com/regularjs/regular"},"homepage":"http://regularjs.github.io","scripts":{"test":"gulp travis --phantomjs"},"bin":{"regular":"./bin/regular"},"devDependencies":{"gulp-shell":"^0.2.9","gulp-webpack":"^1.0.0","gulp":"3.6.x","gulp-component":"~0.1.8","gulp-uglify":"~0.2.1","gulp-jshint":"~1.5.3","gulp-mocha":"~0.4.1","gulp-istanbul":"~0.1.1","gulp-util":"~2.2.14","through2":"~0.4.1","mocha":"~1.18.2","expect.js":"~0.3.1","karma":"~0.12.6","karma-mocha":"~0.1.3","karma-phantomjs-launcher":"~0.1.4","karma-coverage":"~0.2.4","karma-ie-launcher":"~0.1.5","karma-chrome-launcher":"~0.1.4","karma-firefox-launcher":"~0.1.3"},"gitHead":"34d1e6bf7ce31bda630fbc261c37a12c7547e1b3","bugs":{"url":"https://github.com/regularjs/regular/issues"},"_id":"regularjs@0.2.15-alpha","_shasum":"3b714cdf68c166fe9af04560d4d8ae97945742d1","_from":".","_npmVersion":"1.4.16","_npmUser":{"name":"leeluolee","email":"87399126@163.com"},"maintainers":[{"name":"leeluolee","email":"87399126@163.com"}],"dist":{"shasum":"3b714cdf68c166fe9af04560d4d8ae97945742d1","tarball":"https://registry.npmjs.org/regularjs/-/regularjs-0.2.15-alpha.tgz","integrity":"sha512-wDPwvSaDs8hjxCcfZDtconDzJqqXuYbBV5mUDx7eh3Gcvp4UsahfB7bCP3ER/zEDSDRGiLhgE+Ty+wt0zFFKAQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHXx1GA123DuEldrgCLdikScUaUtmcnt+pPbOrEarc7kAiAFqQoDxGpHhQGDZWIgNhEXpWg5nVKgJvYScjO9H+paHw=="}]},"directories":{}},"0.3.0":{"name":"regularjs","version":"0.3.0","author":{"name":"leeluolee"},"description":"<a href=\"http://regularjs.github.io\">   ![regularjs](http://regularjs.github.io/image/regular-icon-100.png) </a>","license":"MIT","keywords":["template","data-binding"],"main":"src/index.js","repository":{"type":"git","url":"https://github.com/regularjs/regular"},"homepage":"http://regularjs.github.io","scripts":{"test":"gulp travis --phantomjs"},"bin":{"regular":"./bin/regular"},"devDependencies":{"gulp-shell":"^0.2.9","gulp-webpack":"^1.0.0","gulp":"3.6.x","gulp-component":"~0.1.8","gulp-uglify":"~0.2.1","gulp-jshint":"~1.5.3","gulp-mocha":"~0.4.1","gulp-istanbul":"~0.1.1","gulp-util":"~2.2.14","through2":"~0.4.1","mocha":"~1.18.2","expect.js":"~0.3.1","karma":"~0.12.6","karma-mocha":"~0.1.3","karma-phantomjs-launcher":"~0.1.4","karma-coverage":"~0.2.4","karma-ie-launcher":"~0.1.5","karma-chrome-launcher":"~0.1.4","karma-firefox-launcher":"~0.1.3"},"gitHead":"feb48dc38828219f89706d3003ebc795f4920ca6","bugs":{"url":"https://github.com/regularjs/regular/issues"},"_id":"regularjs@0.3.0","_shasum":"0a5548198b7bea52acbeeb931be4ba60bd4732ab","_from":".","_npmVersion":"1.4.16","_npmUser":{"name":"leeluolee","email":"87399126@163.com"},"maintainers":[{"name":"leeluolee","email":"87399126@163.com"}],"dist":{"shasum":"0a5548198b7bea52acbeeb931be4ba60bd4732ab","tarball":"https://registry.npmjs.org/regularjs/-/regularjs-0.3.0.tgz","integrity":"sha512-XGGKyupqoY7o39/QQOcQ3fwHs8l9TyGf5aSpIBWTkk5i+7JriUxpYArsIvv3jgiBwW0TmuSM9cUXf5OiH3MiOg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCp1zFq/4jkZM+GqyaN/3oYbaqwEEREItDi3FITB1qQpQIhAOdz36TSWRjpiNW9AoVfhaSp0nqC7S8lyUHHDYwuw7Vn"}]},"directories":{}},"0.3.1":{"name":"regularjs","version":"0.3.1","author":{"name":"leeluolee"},"description":"<a href=\"http://regularjs.github.io\">   ![regularjs](http://regularjs.github.io/image/regular-icon-100.png) </a>","license":"MIT","keywords":["template","data-binding"],"main":"src/index.js","repository":{"type":"git","url":"https://github.com/regularjs/regular"},"homepage":"http://regularjs.github.io","scripts":{"test":"gulp travis --phantomjs"},"bin":{"regular":"./bin/regular"},"devDependencies":{"gulp-shell":"^0.2.9","gulp-webpack":"^1.0.0","gulp":"3.6.x","gulp-component":"~0.1.8","gulp-uglify":"~0.2.1","gulp-jshint":"~1.5.3","gulp-mocha":"~0.4.1","gulp-istanbul":"~0.1.1","gulp-util":"~2.2.14","through2":"~0.4.1","mocha":"~1.18.2","expect.js":"~0.3.1","karma":"~0.12.6","karma-mocha":"~0.1.3","karma-phantomjs-launcher":"~0.1.4","karma-coverage":"~0.2.4","karma-ie-launcher":"~0.1.5","karma-chrome-launcher":"~0.1.4","karma-firefox-launcher":"~0.1.3"},"gitHead":"c4006ecfacb60fe93c9a3d6d7fd309dcca7148e8","bugs":{"url":"https://github.com/regularjs/regular/issues"},"_id":"regularjs@0.3.1","_shasum":"bbd529b1c5201de603c4cc33ceef31bee4a2a9b1","_from":".","_npmVersion":"2.3.0","_nodeVersion":"0.10.36","_npmUser":{"name":"leeluolee","email":"87399126@163.com"},"maintainers":[{"name":"leeluolee","email":"87399126@163.com"}],"dist":{"shasum":"bbd529b1c5201de603c4cc33ceef31bee4a2a9b1","tarball":"https://registry.npmjs.org/regularjs/-/regularjs-0.3.1.tgz","integrity":"sha512-0RVk7yFrBdeBqIhLuuqz37ivAW+38n1tV0FyrfcSIrOk4LXJzJct7Ka2GsWcLtKdPCxELke7ghnRVGHh/lCGiA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDazE8IFlSPKsYLDENFVn8IM3tQZaGyEBDnDfGIpGq+aAiBQQnml85cHTNbx3ACg8He44WnsfCwOjiCG9DjPPV/ygQ=="}]},"directories":{}},"0.3.2":{"name":"regularjs","version":"0.3.2","author":{"name":"leeluolee"},"description":"<a href=\"http://regularjs.github.io\">   ![regularjs](http://regularjs.github.io/image/regular-icon-100.png) </a>","license":"MIT","keywords":["template","data-binding"],"main":"src/index.js","repository":{"type":"git","url":"git+https://github.com/regularjs/regular.git"},"homepage":"http://regularjs.github.io","scripts":{"test":"gulp travis --phantomjs"},"bin":{"regular":"./bin/regular"},"devDependencies":{"gulp-shell":"^0.2.9","gulp-webpack":"^1.0.0","gulp":"3.6.x","gulp-component":"~0.1.8","gulp-uglify":"~0.2.1","gulp-jshint":"~1.5.3","gulp-mocha":"~0.4.1","gulp-istanbul":"~0.1.1","gulp-util":"~2.2.14","through2":"~0.4.1","mocha":"~1.18.2","expect.js":"~0.3.1","karma":"~0.12.6","karma-mocha":"~0.1.3","karma-phantomjs-launcher":"~0.1.4","karma-coverage":"~0.2.4","karma-ie-launcher":"~0.1.5","karma-chrome-launcher":"~0.1.4","karma-firefox-launcher":"~0.1.3"},"gitHead":"c4006ecfacb60fe93c9a3d6d7fd309dcca7148e8","bugs":{"url":"https://github.com/regularjs/regular/issues"},"_id":"regularjs@0.3.2","_shasum":"3af604254c3dba9873b38d38cf3b60384a384411","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"leeluolee","email":"87399126@163.com"},"maintainers":[{"name":"leeluolee","email":"87399126@163.com"}],"dist":{"shasum":"3af604254c3dba9873b38d38cf3b60384a384411","tarball":"https://registry.npmjs.org/regularjs/-/regularjs-0.3.2.tgz","integrity":"sha512-0Vxqds/ffmSsRQhOWmoCkBtZRwOBo9B+GFmdbDCOFmSLlumyikDOhKfZ7hH4JHK+ad06hii3+6/0BU5O7Hj2CA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCcFb8dwsiNHIflkECoGzfTcaLjalK0v7J1r6xym/3YmwIgeyscKEXDFq9spVLkjAlH2JjAc18/CFjLVpoYtT3NR24="}]},"directories":{}},"0.4.0":{"name":"regularjs","version":"0.4.0","author":{"name":"leeluolee"},"description":"<a href=\"http://regularjs.github.io\">   ![regularjs](http://regularjs.github.io/image/regular-icon-100.png) </a>","license":"MIT","keywords":["template","data-binding"],"main":"src/index.js","repository":{"type":"git","url":"git+https://github.com/regularjs/regular.git"},"homepage":"http://regularjs.github.io","scripts":{"test":"gulp travis --phantomjs"},"bin":{"regular":"./bin/regular"},"devDependencies":{"expect.js":"~0.3.1","gulp":"3.6.x","gulp-bump":"^1.0.0","gulp-component":"~0.1.8","gulp-git":"^1.4.0","gulp-istanbul":"~0.1.1","gulp-jshint":"~1.5.3","gulp-mocha":"~0.4.1","gulp-run-sequence":"^0.3.2","gulp-shell":"^0.2.9","gulp-tag-version":"^1.3.0","gulp-uglify":"~0.2.1","gulp-util":"~2.2.14","gulp-webpack":"^1.0.0","karma":"~0.12.6","karma-chrome-launcher":"~0.1.4","karma-coverage":"~0.2.4","karma-firefox-launcher":"~0.1.3","karma-ie-launcher":"~0.1.5","karma-mocha":"~0.1.3","karma-phantomjs-launcher":"~0.1.4","mocha":"~1.18.2","through2":"~0.4.1","yargs":"^3.26.0"},"gitHead":"bde8ca2401037d0c01c248e233834d512c0a4e8b","bugs":{"url":"https://github.com/regularjs/regular/issues"},"_id":"regularjs@0.4.0","_shasum":"5b288e6046e8405547ff38fb94d87000b226c1fc","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"leeluolee","email":"87399126@163.com"},"maintainers":[{"name":"leeluolee","email":"87399126@163.com"}],"dist":{"shasum":"5b288e6046e8405547ff38fb94d87000b226c1fc","tarball":"https://registry.npmjs.org/regularjs/-/regularjs-0.4.0.tgz","integrity":"sha512-NthPIG5MqrH14TP+N7hcSiotcMSMBFs+cWFnytVgfLLy5qpxwl8TPm9Oh8ijSGDqDzd6Ij/VsRuPAQNfbEJsOw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCZjgnoxt/NqY3mS3JGCCgVLvgerEwYfmbUKlHwfFfXCgIhAIRZDO595FHsLBjoHMksm8OMzACqZn0mSNQCt1W9/A9w"}]},"directories":{}},"0.4.1":{"name":"regularjs","version":"0.4.1","author":{"name":"leeluolee"},"description":"<a href=\"http://regularjs.github.io\">   ![regularjs](http://regularjs.github.io/image/regular-icon-100.png) </a>","license":"MIT","keywords":["template","data-binding"],"main":"src/index.js","repository":{"type":"git","url":"git+https://github.com/regularjs/regular.git"},"homepage":"http://regularjs.github.io","scripts":{"test":"gulp travis --phantomjs"},"bin":{"regular":"./bin/regular"},"devDependencies":{"expect.js":"~0.3.1","gulp":"3.6.x","gulp-bump":"^1.0.0","gulp-component":"~0.1.8","gulp-git":"^1.4.0","gulp-istanbul":"~0.1.1","gulp-jshint":"~1.5.3","gulp-mocha":"~0.4.1","gulp-run-sequence":"^0.3.2","gulp-shell":"^0.2.9","gulp-tag-version":"^1.3.0","gulp-uglify":"~0.2.1","gulp-util":"~2.2.14","gulp-webpack":"^1.0.0","karma":"~0.12.6","karma-chrome-launcher":"~0.1.4","karma-coverage":"~0.2.4","karma-firefox-launcher":"~0.1.3","karma-ie-launcher":"~0.1.5","karma-mocha":"~0.1.3","karma-phantomjs-launcher":"~0.1.4","mocha":"~1.18.2","through2":"~0.4.1","yargs":"^3.26.0"},"gitHead":"c72dbea44b734c7213d93a5c6b8de1dcf4b6531a","bugs":{"url":"https://github.com/regularjs/regular/issues"},"_id":"regularjs@0.4.1","_shasum":"6f9af0adc8d2a7fd947b2c32ac1454ac99306790","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"leeluolee","email":"87399126@163.com"},"maintainers":[{"name":"leeluolee","email":"87399126@163.com"}],"dist":{"shasum":"6f9af0adc8d2a7fd947b2c32ac1454ac99306790","tarball":"https://registry.npmjs.org/regularjs/-/regularjs-0.4.1.tgz","integrity":"sha512-jtmAjlpUNCT+lIA1xg1gkuLom4ntpJvzqS3vU8QR3zcg66cLPyjaFbpeEXCJLuqwOLTMa0WKKpkJ+3TTPvLmVQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHCVDnDEPVM9PNlkWuU0cHGHhBiZTXJozhEDDVGIqoSLAiBBjSAIrnIzdxgPtCdAFn4jdNgTBu3KM4o60j14wYBxNQ=="}]},"directories":{}},"0.4.2":{"name":"regularjs","version":"0.4.2","author":{"name":"leeluolee"},"description":"<a href=\"http://regularjs.github.io\">   ![regularjs](http://regularjs.github.io/image/regular-icon-100.png) </a>","license":"MIT","keywords":["template","data-binding"],"main":"src/index.js","repository":{"type":"git","url":"git+https://github.com/regularjs/regular.git"},"homepage":"http://regularjs.github.io","scripts":{"test":"gulp travis --phantomjs"},"bin":{"regular":"./bin/regular"},"devDependencies":{"expect.js":"~0.3.1","gulp":"3.6.x","gulp-bump":"^1.0.0","gulp-git":"^1.4.0","gulp-istanbul":"~0.1.1","gulp-jshint":"~1.5.3","gulp-mocha":"~0.4.1","gulp-run-sequence":"^0.3.2","gulp-shell":"^0.2.9","gulp-tag-version":"^1.3.0","gulp-uglify":"~0.2.1","gulp-util":"~2.2.14","gulp-webpack":"^1.0.0","karma":"~0.12.6","karma-chrome-launcher":"~0.1.4","karma-coverage":"~0.2.4","karma-firefox-launcher":"~0.1.3","karma-ie-launcher":"~0.1.5","karma-mocha":"~0.1.3","karma-phantomjs-launcher":"~0.1.4","mocha":"~1.18.2","through2":"~0.4.1","yargs":"^3.26.0"},"gitHead":"9c4090792f0364f2104cc9ee37a8888759949ffe","bugs":{"url":"https://github.com/regularjs/regular/issues"},"_id":"regularjs@0.4.2","_shasum":"ecead11b1724d3c849ff9cebfde2b93a74d77638","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"leeluolee","email":"87399126@163.com"},"maintainers":[{"name":"leeluolee","email":"87399126@163.com"}],"dist":{"shasum":"ecead11b1724d3c849ff9cebfde2b93a74d77638","tarball":"https://registry.npmjs.org/regularjs/-/regularjs-0.4.2.tgz","integrity":"sha512-XOs0HaqEbq9o0yuXPknTiu/8THI+DX5xo322OPv/sBKUM0rNL1TvPh7r+cBF7HUx5kOHLP7ZkywvxtwPGfa98Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCymdcHJwd3RlH/QQMM2xnXbxkFL64TqjQ+psTorYvPIQIhAI5xXc+K6LyLmj98x7uN+THYJwE5tKe+MLUv3qEqGix+"}]},"directories":{}},"0.4.3":{"name":"regularjs","version":"0.4.3","author":{"name":"leeluolee"},"description":"<a href=\"http://regularjs.github.io\">   ![regularjs](http://regularjs.github.io/image/regular-icon-100.png) </a>","license":"MIT","keywords":["template","data-binding"],"main":"src/index.js","repository":{"type":"git","url":"git+https://github.com/regularjs/regular.git"},"homepage":"http://regularjs.github.io","scripts":{"test":"gulp travis --phantomjs"},"bin":{"regular":"./bin/regular"},"devDependencies":{"expect.js":"~0.3.1","gulp":"3.6.x","gulp-bump":"^1.0.0","gulp-git":"^1.4.0","gulp-istanbul":"~0.1.1","gulp-jshint":"~1.5.3","gulp-mocha":"~0.4.1","gulp-run-sequence":"^0.3.2","gulp-shell":"^0.2.9","gulp-tag-version":"^1.3.0","gulp-uglify":"~0.2.1","gulp-util":"~2.2.14","gulp-webpack":"^1.0.0","karma":"~0.12.6","karma-chrome-launcher":"~0.1.4","karma-coverage":"~0.2.4","karma-firefox-launcher":"~0.1.3","karma-ie-launcher":"~0.1.5","karma-mocha":"~0.1.3","karma-phantomjs-launcher":"~0.1.4","mocha":"~1.18.2","through2":"~0.4.1","yargs":"^3.26.0"},"gitHead":"df60cbccef37aeeaba44270d0d2b91fd5eeb2831","bugs":{"url":"https://github.com/regularjs/regular/issues"},"_id":"regularjs@0.4.3","_shasum":"8e99479c0836ac61a3ba66cbf6158d8d84a26901","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"leeluolee","email":"87399126@163.com"},"maintainers":[{"name":"leeluolee","email":"87399126@163.com"}],"dist":{"shasum":"8e99479c0836ac61a3ba66cbf6158d8d84a26901","tarball":"https://registry.npmjs.org/regularjs/-/regularjs-0.4.3.tgz","integrity":"sha512-WqJ8c/+VDQl9zlVWr0FMQSBdI5ogBA2N7Fj0xstjvEL9FuD1jYXUM7VNtGJRREm3+9edfHFeXDRPV0MBZC97Cg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD0RZxJZJNnDoFVXfXRDCE8NfT6thw8EGYiT/MjirYGXwIhAPd+hloLz3xNHsYcJ3xdJMjz9y95kUkwfhqmO+s0OG4H"}]},"directories":{}},"0.4.4":{"name":"regularjs","version":"0.4.4","author":{"name":"leeluolee"},"description":"<a href=\"http://regularjs.github.io\">   ![regularjs](http://regularjs.github.io/image/regular-icon-100.png) </a>","license":"MIT","keywords":["template","data-binding"],"main":"src/index.js","repository":{"type":"git","url":"git+https://github.com/regularjs/regular.git"},"homepage":"http://regularjs.github.io","scripts":{"test":"gulp travis --phantomjs"},"bin":{"regular":"./bin/regular"},"devDependencies":{"expect.js":"~0.3.1","gulp":"3.6.x","gulp-bump":"^1.0.0","gulp-git":"^1.4.0","gulp-istanbul":"~0.1.1","gulp-jshint":"~1.5.3","gulp-mocha":"~0.4.1","gulp-run-sequence":"^0.3.2","gulp-shell":"^0.2.9","gulp-tag-version":"^1.3.0","gulp-uglify":"~0.2.1","gulp-util":"~2.2.14","gulp-webpack":"^1.0.0","karma":"~0.12.6","karma-chrome-launcher":"~0.1.4","karma-coverage":"~0.2.4","karma-firefox-launcher":"~0.1.3","karma-ie-launcher":"~0.1.5","karma-mocha":"~0.1.3","karma-phantomjs-launcher":"~0.1.4","mocha":"~1.18.2","through2":"~0.4.1","yargs":"^3.26.0"},"gitHead":"baa599694ab31fca5ad781ca53e157bdbdcc7341","bugs":{"url":"https://github.com/regularjs/regular/issues"},"_id":"regularjs@0.4.4","_shasum":"af4b8498f65c04db73c12485e2da2e694f2dae72","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.4","_npmUser":{"name":"leeluolee","email":"87399126@163.com"},"maintainers":[{"name":"leeluolee","email":"87399126@163.com"}],"dist":{"shasum":"af4b8498f65c04db73c12485e2da2e694f2dae72","tarball":"https://registry.npmjs.org/regularjs/-/regularjs-0.4.4.tgz","integrity":"sha512-8BoPQo0MkaLCmhJN0msm3Fl6Fag1zao+7IUFfz/d5IfE7L3utWH8suGv6fm65lMu3AxmOV27s7lTa3aRv+tITw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD8FyyM9zIR1vzh6cGtPhgcmrTKx6WUJCQuJ7AFL8o6gwIhANV10AAX7O3eryosup/AnX3yTHZhMWl6YqZuaTOLsdRB"}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/regularjs-0.4.4.tgz_1464319298845_0.22181796468794346"},"directories":{}},"0.5.0":{"name":"regularjs","version":"0.5.0","author":{"name":"leeluolee"},"description":"<a href=\"http://regularjs.github.io\">   ![regularjs](http://regularjs.github.io/image/regular-icon-100.png) </a>","license":"MIT","keywords":["template","data-binding"],"main":"src/index.js","repository":{"type":"git","url":"git+https://github.com/regularjs/regular.git"},"homepage":"http://regularjs.github.io","scripts":{"test":"gulp travis --phantomjs","prepublish":"gulp build"},"bin":{"regular":"./bin/regular"},"devDependencies":{"expect.js":"~0.3.1","gulp":"3.6.x","gulp-bump":"^1.0.0","gulp-git":"^1.4.0","gulp-istanbul":"~0.1.1","gulp-jshint":"~1.5.3","gulp-mocha":"~0.4.1","gulp-shell":"^0.2.9","gulp-tag-version":"^1.3.0","gulp-uglify":"~0.2.1","gulp-util":"~2.2.14","gulp-webpack":"^1.0.0","karma":"~0.12.6","karma-chrome-launcher":"~0.1.4","karma-coverage":"~0.2.4","karma-firefox-launcher":"~0.1.3","karma-ie-launcher":"~0.1.5","karma-mocha":"~0.1.3","karma-phantomjs-launcher":"~0.1.4","mocha":"~1.18.2","run-sequence":"^1.2.2","through2":"~0.4.1","yargs":"^3.26.0"},"gitHead":"f657ed5f622a19f842efc37818b9657fa4a59f92","bugs":{"url":"https://github.com/regularjs/regular/issues"},"_id":"regularjs@0.5.0","_shasum":"baa32539b3e2ed94ad032e11c0ae8aa67f366281","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.4","_npmUser":{"name":"leeluolee","email":"87399126@163.com"},"maintainers":[{"name":"leeluolee","email":"87399126@163.com"}],"dist":{"shasum":"baa32539b3e2ed94ad032e11c0ae8aa67f366281","tarball":"https://registry.npmjs.org/regularjs/-/regularjs-0.5.0.tgz","integrity":"sha512-NXn01KkdHF6qeAhBI35lVK2CqHDLMICf0TBTZ5IYpLaulypl/ZqWVNyuhUJ5Enm3ouIFGjV7AnCriOBhapELXQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFZBFBipuhyBY6N1/0bQ/vi5EeLlSnTVmoF8XJwEROPAAiBwaR3d7sLyN0kYja4WB0OT3KbjKy/QyN4YiVjaVAIRhg=="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/regularjs-0.5.0.tgz_1472118365080_0.3632462804671377"},"directories":{}},"0.5.1":{"name":"regularjs","version":"0.5.1","author":{"name":"leeluolee"},"description":"<a href=\"http://regularjs.github.io\">   ![regularjs](http://regularjs.github.io/image/regular-icon-100.png) </a>","license":"MIT","keywords":["template","data-binding"],"main":"src/index.js","repository":{"type":"git","url":"git+https://github.com/regularjs/regular.git"},"homepage":"http://regularjs.github.io","scripts":{"test":"gulp travis --phantomjs","prepublish":"gulp build"},"bin":{"regular":"./bin/regular"},"devDependencies":{"expect.js":"~0.3.1","gulp":"3.6.x","gulp-bump":"^1.0.0","gulp-git":"^1.4.0","gulp-istanbul":"~0.1.1","gulp-jshint":"~1.5.3","gulp-mocha":"~0.4.1","gulp-shell":"^0.2.9","gulp-tag-version":"^1.3.0","gulp-uglify":"~0.2.1","gulp-util":"~2.2.14","gulp-webpack":"^1.0.0","karma":"~0.12.6","karma-chrome-launcher":"~0.1.4","karma-coverage":"~0.2.4","karma-firefox-launcher":"~0.1.3","karma-ie-launcher":"~0.1.5","karma-mocha":"~0.1.3","karma-phantomjs-launcher":"~0.1.4","mocha":"~1.18.2","run-sequence":"^1.2.2","through2":"~0.4.1","yargs":"^3.26.0"},"gitHead":"4ddf49ef6f378354de29093e528a48102025011b","bugs":{"url":"https://github.com/regularjs/regular/issues"},"_id":"regularjs@0.5.1","_shasum":"ffd323f6d7d9d25c4fd8e1415a2bc8ecf0686f87","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.4","_npmUser":{"name":"leeluolee","email":"87399126@163.com"},"maintainers":[{"name":"leeluolee","email":"87399126@163.com"}],"dist":{"shasum":"ffd323f6d7d9d25c4fd8e1415a2bc8ecf0686f87","tarball":"https://registry.npmjs.org/regularjs/-/regularjs-0.5.1.tgz","integrity":"sha512-JWZj7wc9BVkS/FwxTWuKgKADqIftvwdHhIlGBZQLC+I9bMBHmr5qcq6LXJQo38efdWiB5f25i7X5T1lKumqZoA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBptvaP64snozPiZakPO1BcmwXVJoHzy5ZasyJoldaK/AiAnpenOQyFxVbEarv7SPnx1DXJYmxoi5cFMMdtWuJvyCA=="}]},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/regularjs-0.5.1.tgz_1472459487751_0.7453416434582323"},"directories":{}},"0.5.2":{"name":"regularjs","version":"0.5.2","author":{"name":"leeluolee"},"description":"<a href=\"http://regularjs.github.io\">   ![regularjs](http://regularjs.github.io/image/regular-icon-100.png) </a>","license":"MIT","keywords":["template","data-binding"],"main":"src/index.js","repository":{"type":"git","url":"git+https://github.com/regularjs/regular.git"},"homepage":"http://regularjs.github.io","scripts":{"test":"gulp travis --phantomjs","prepublish":"gulp build"},"bin":{"regular":"./bin/regular"},"devDependencies":{"expect.js":"~0.3.1","gulp":"3.6.x","gulp-bump":"^1.0.0","gulp-git":"^1.4.0","gulp-istanbul":"~0.1.1","gulp-jshint":"~1.5.3","gulp-mocha":"~0.4.1","gulp-shell":"^0.2.9","gulp-tag-version":"^1.3.0","gulp-uglify":"~0.2.1","gulp-util":"~2.2.14","gulp-webpack":"^1.0.0","karma":"~0.12.6","karma-chrome-launcher":"~0.1.4","karma-coverage":"~0.2.4","karma-firefox-launcher":"~0.1.3","karma-ie-launcher":"~0.1.5","karma-mocha":"~0.1.3","karma-phantomjs-launcher":"~0.1.4","mocha":"~1.18.2","run-sequence":"^1.2.2","through2":"~0.4.1","yargs":"^3.26.0"},"gitHead":"98840bce66276b613181db73f769197302b34390","bugs":{"url":"https://github.com/regularjs/regular/issues"},"_id":"regularjs@0.5.2","_shasum":"6a5f71390431f0e346a235d4b623f6f685c85b44","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.4","_npmUser":{"name":"leeluolee","email":"87399126@163.com"},"maintainers":[{"name":"leeluolee","email":"87399126@163.com"}],"dist":{"shasum":"6a5f71390431f0e346a235d4b623f6f685c85b44","tarball":"https://registry.npmjs.org/regularjs/-/regularjs-0.5.2.tgz","integrity":"sha512-HuP8htZFEM8S9YYvaWLGzQjFMs6tS7XOUnvbrrczD1rZHvbXgVlcmdEZqZ7ljOnP/Mhu3JWprMje0exEFA31HQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCwG8jLtTRY5fM3xN0kyB8AVmcuAOMw/IdehH+Qmid+YwIhAIDGztWJMmCl6vWoiVW0xC+KH3Hnw+V8sKW1ZB1+cGk4"}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/regularjs-0.5.2.tgz_1474861521761_0.8000214430503547"},"directories":{}},"0.6.0-beta.1":{"name":"regularjs","version":"0.6.0-beta.1","author":{"name":"leeluolee"},"description":"<a href=\"http://regularjs.github.io\">   ![regularjs](http://regularjs.github.io/image/regular-icon-100.png) </a>","license":"MIT","keywords":["template","data-binding"],"main":"lib/index.js","repository":{"type":"git","url":"git+https://github.com/regularjs/regular.git"},"homepage":"http://regularjs.github.io","scripts":{"test":"gulp travis --phantomjs","prepublish":"gulp build"},"bin":{"regular":"./bin/regular"},"devDependencies":{"expect.js":"~0.3.1","gulp":"3.6.x","gulp-bump":"^1.0.0","gulp-git":"^1.4.0","gulp-istanbul":"~0.1.1","gulp-jshint":"~1.5.3","gulp-mocha":"~0.4.1","gulp-shell":"^0.2.9","gulp-tag-version":"^1.3.0","gulp-uglify":"~0.2.1","gulp-util":"~2.2.14","gulp-webpack":"^1.0.0","karma":"~0.12.6","karma-chrome-launcher":"~0.1.4","karma-coverage":"~0.2.4","karma-firefox-launcher":"~0.1.3","karma-ie-launcher":"~0.1.5","karma-mocha":"~0.1.3","karma-phantomjs-launcher":"~0.1.4","mocha":"~1.18.2","run-sequence":"^1.2.2","through2":"~0.4.1","yargs":"^3.26.0"},"gitHead":"be424740a36dbc28cfd9dcc6ea692d68e14dcbb5","bugs":{"url":"https://github.com/regularjs/regular/issues"},"_id":"regularjs@0.6.0-beta.1","_shasum":"a6314d6f92c262ff87895637f5bf5dc849ebfeec","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.8.0","_npmUser":{"name":"leeluolee","email":"87399126@163.com"},"dist":{"shasum":"a6314d6f92c262ff87895637f5bf5dc849ebfeec","tarball":"https://registry.npmjs.org/regularjs/-/regularjs-0.6.0-beta.1.tgz","integrity":"sha512-9SYJrIB54TWHi846HXS/uH3y8e1YMq1EgaqT6VPftZguOT4O3xC+6ezHI14MUgkMsIcfWUnZl8QjklO2UwhbvA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD1b0b/8m0FAXamUF4vEh2Pp4Cu0Mxct/js1UoVVqiOLAIgStd2c9aDBmHOhwjTkONRqbtqj6ldfsvoVDzsc2TDEzA="}]},"maintainers":[{"name":"leeluolee","email":"87399126@163.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/regularjs-0.6.0-beta.1.tgz_1486628571128_0.7772176014259458"},"directories":{}},"0.6.0-beta.2":{"name":"regularjs","version":"0.6.0-beta.2","author":{"name":"leeluolee"},"description":"<a href=\"http://regularjs.github.io\">   ![regularjs](http://regularjs.github.io/image/regular-icon-100.png) </a>","license":"MIT","keywords":["template","data-binding"],"main":"lib/index.js","repository":{"type":"git","url":"git+https://github.com/regularjs/regular.git"},"homepage":"http://regularjs.github.io","scripts":{"test":"gulp travis --phantomjs","prepublish":"gulp build"},"bin":{"regular":"./bin/regular"},"devDependencies":{"expect.js":"~0.3.1","gulp":"3.6.x","gulp-bump":"^1.0.0","gulp-git":"^1.4.0","gulp-istanbul":"~0.1.1","gulp-jshint":"~1.5.3","gulp-mocha":"~0.4.1","gulp-shell":"^0.2.9","gulp-tag-version":"^1.3.0","gulp-uglify":"~0.2.1","gulp-util":"~2.2.14","gulp-webpack":"^1.0.0","karma":"^1.3.0","karma-chrome-launcher":"~0.1.4","karma-coverage":"~0.2.4","karma-firefox-launcher":"~0.1.3","karma-ie-launcher":"~0.1.5","karma-mocha":"~0.1.3","karma-phantomjs-launcher":"~0.1.4","mocha":"~1.18.2","run-sequence":"^1.2.2","through2":"~0.4.1","yargs":"^3.26.0"},"gitHead":"5bf0a203f33f55d9e7351b296d076144a8d5c159","bugs":{"url":"https://github.com/regularjs/regular/issues"},"_id":"regularjs@0.6.0-beta.2","_shasum":"9c9575fa18b9fcb36187b15ab539275cee96c076","_from":".","_npmVersion":"4.1.2","_nodeVersion":"6.8.0","_npmUser":{"name":"leeluolee","email":"87399126@163.com"},"dist":{"shasum":"9c9575fa18b9fcb36187b15ab539275cee96c076","tarball":"https://registry.npmjs.org/regularjs/-/regularjs-0.6.0-beta.2.tgz","integrity":"sha512-wD16ZueJoRPEY03gCCvc6b8laISTDIFefR603Br53xffzBJbCpyRhk28ZdAWFlUzusuis1jB6QCFGSa4Ga6oVw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAz5o/X/dX1GxidSu8gyRvr9cXm1RKl/0+S0oa4fS5JNAiAKLFg4A44zAASJprILKBjEBbRtclf82YcCP4T5cPvSiQ=="}]},"maintainers":[{"name":"leeluolee","email":"87399126@163.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/regularjs-0.6.0-beta.2.tgz_1491358513144_0.6533378157764673"},"directories":{}},"0.6.0-beta.3":{"name":"regularjs","version":"0.6.0-beta.3","author":{"name":"leeluolee"},"description":"<a href=\"http://regularjs.github.io\">   ![regularjs](http://regularjs.github.io/image/regular-icon-100.png) </a>","license":"MIT","keywords":["template","data-binding"],"main":"lib/index.js","repository":{"type":"git","url":"git+https://github.com/regularjs/regular.git"},"homepage":"http://regularjs.github.io","scripts":{"test":"gulp travis --phantomjs","prepublish":"gulp build"},"bin":{"regular":"./bin/regular"},"devDependencies":{"expect.js":"~0.3.1","gulp":"3.6.x","gulp-bump":"^1.0.0","gulp-git":"^1.4.0","gulp-istanbul":"~0.1.1","gulp-jshint":"~1.5.3","gulp-mocha":"~0.4.1","gulp-shell":"^0.2.9","gulp-tag-version":"^1.3.0","gulp-uglify":"~0.2.1","gulp-util":"~2.2.14","gulp-webpack":"^1.0.0","karma":"^1.3.0","karma-chrome-launcher":"~0.1.4","karma-coverage":"~0.2.4","karma-firefox-launcher":"~0.1.3","karma-ie-launcher":"~0.1.5","karma-mocha":"~0.1.3","karma-phantomjs-launcher":"~0.1.4","mocha":"~1.18.2","run-sequence":"^1.2.2","through2":"~0.4.1","yargs":"^3.26.0"},"gitHead":"36381b708dddfc004958e012efd22883b0563898","bugs":{"url":"https://github.com/regularjs/regular/issues"},"_id":"regularjs@0.6.0-beta.3","_shasum":"367bb98c4340eb09f9aaa7e1d880674cbf1f56a6","_from":".","_npmVersion":"4.1.2","_nodeVersion":"6.8.0","_npmUser":{"name":"leeluolee","email":"87399126@163.com"},"dist":{"shasum":"367bb98c4340eb09f9aaa7e1d880674cbf1f56a6","tarball":"https://registry.npmjs.org/regularjs/-/regularjs-0.6.0-beta.3.tgz","integrity":"sha512-pVm7wD/wB47LCM6NANeSsTHx3Y+WuNCvst7r70vt09fZBjLeU02ajaqZH6sMnshZ8eYZVC/bFw197n3dFSeiKw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDh1l1ZAN21J6QRui6JJeogNpVJA91HFHzvduOSp8vJ7gIhAPdml6p1Bmh+39hQbT3Fa9pCZ0BRxtYdESoO5msfGcPk"}]},"maintainers":[{"name":"leeluolee","email":"87399126@163.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/regularjs-0.6.0-beta.3.tgz_1495005349774_0.6235138839110732"},"directories":{}},"0.6.0-beta.4":{"name":"regularjs","version":"0.6.0-beta.4","author":{"name":"leeluolee"},"description":"<a href=\"http://regularjs.github.io\">   ![regularjs](http://regularjs.github.io/image/regular-icon-100.png) </a>","license":"MIT","keywords":["template","data-binding"],"main":"lib/index.js","repository":{"type":"git","url":"git+https://github.com/regularjs/regular.git"},"homepage":"http://regularjs.github.io","scripts":{"test":"gulp travis --phantomjs","prepublish":"gulp build"},"bin":{"regular":"./bin/regular"},"devDependencies":{"expect.js":"~0.3.1","gulp":"3.6.x","gulp-bump":"^1.0.0","gulp-git":"^1.4.0","gulp-istanbul":"~0.1.1","gulp-jshint":"~1.5.3","gulp-mocha":"~0.4.1","gulp-shell":"^0.2.9","gulp-tag-version":"^1.3.0","gulp-uglify":"~0.2.1","gulp-util":"~2.2.14","gulp-webpack":"^1.0.0","karma":"^1.3.0","karma-chrome-launcher":"~0.1.4","karma-coverage":"~0.2.4","karma-firefox-launcher":"~0.1.3","karma-ie-launcher":"~0.1.5","karma-mocha":"~0.1.3","karma-phantomjs-launcher":"~0.1.4","mocha":"~1.18.2","run-sequence":"^1.2.2","through2":"~0.4.1","yargs":"^3.26.0"},"gitHead":"18fa4583f426381e1bceceef8c84c23aff5863e5","bugs":{"url":"https://github.com/regularjs/regular/issues"},"_id":"regularjs@0.6.0-beta.4","_shasum":"cf008e309e4b3f3b77685b1076d92894ef868b36","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.11.0","_npmUser":{"name":"leeluolee","email":"87399126@163.com"},"dist":{"shasum":"cf008e309e4b3f3b77685b1076d92894ef868b36","tarball":"https://registry.npmjs.org/regularjs/-/regularjs-0.6.0-beta.4.tgz","integrity":"sha512-01N9Z4bNObfehv/D7wql+lC10xHuQX1B2DurkpPDnciSUgkOykWGy5YcryEpnexBzTTmdY3sSrxoNKnz69hpHw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDcWnh/4O7Q2U1gIssvL1SL+CmTe+OarIiyxdzRiHIyrQIhAK7NU0I0j8mV3vpR5hzu+EQ4TY7FviJ/Um/10hZCnEMD"}]},"maintainers":[{"name":"leeluolee","email":"87399126@163.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/regularjs-0.6.0-beta.4.tgz_1497064392217_0.7276416625827551"},"directories":{}},"0.6.0-beta.5":{"name":"regularjs","version":"0.6.0-beta.5","author":{"name":"leeluolee"},"description":"<a href=\"http://regularjs.github.io\">   ![regularjs](http://regularjs.github.io/image/regular-icon-100.png) </a>","license":"MIT","keywords":["template","data-binding"],"main":"lib/index.js","repository":{"type":"git","url":"git+https://github.com/regularjs/regular.git"},"homepage":"http://regularjs.github.io","scripts":{"test":"gulp travis --phantomjs","prepublish":"gulp build"},"bin":{"regular":"./bin/regular"},"devDependencies":{"expect.js":"~0.3.1","gulp":"3.6.x","gulp-bump":"^1.0.0","gulp-git":"^1.4.0","gulp-istanbul":"~0.1.1","gulp-jshint":"~1.5.3","gulp-mocha":"~0.4.1","gulp-shell":"^0.2.9","gulp-tag-version":"^1.3.0","gulp-uglify":"~0.2.1","gulp-util":"~2.2.14","gulp-webpack":"^1.0.0","karma":"^1.3.0","karma-chrome-launcher":"~0.1.4","karma-coverage":"~0.2.4","karma-firefox-launcher":"~0.1.3","karma-ie-launcher":"~0.1.5","karma-mocha":"~0.1.3","karma-phantomjs-launcher":"~0.1.4","mocha":"~1.18.2","run-sequence":"^1.2.2","through2":"~0.4.1","yargs":"^3.26.0"},"gitHead":"2cd91a135309189c66a40bbcca5dc00ea885f654","bugs":{"url":"https://github.com/regularjs/regular/issues"},"_id":"regularjs@0.6.0-beta.5","_shasum":"28fce57e68f2ee5b691f80ec024020b17032b540","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.11.0","_npmUser":{"name":"leeluolee","email":"87399126@163.com"},"dist":{"shasum":"28fce57e68f2ee5b691f80ec024020b17032b540","tarball":"https://registry.npmjs.org/regularjs/-/regularjs-0.6.0-beta.5.tgz","integrity":"sha512-crq7nHmtyK1OXQ4PpESnMPR6Chp9e9r+PjF9GjvB1w4diCMyXwAa5OgeZBWxHd3AkQAcfkqNBbrMhGGtL3QZUA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFnhVv+CUnMCmBO/6aU/FcXvyDwROm5/g6C9tN4rN/k0AiASRZSquJe8UFPpxfPdWUkSP1f5+Dq04LmBn5q0nzd3WA=="}]},"maintainers":[{"name":"leeluolee","email":"87399126@163.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/regularjs-0.6.0-beta.5.tgz_1497404876234_0.9203739210497588"},"directories":{}},"0.6.0-beta.6":{"name":"regularjs","version":"0.6.0-beta.6","author":{"name":"leeluolee"},"description":"<a href=\"http://regularjs.github.io\">   ![regularjs](http://regularjs.github.io/image/regular-icon-100.png) </a>","license":"MIT","keywords":["template","data-binding"],"main":"lib/index.js","repository":{"type":"git","url":"git+https://github.com/regularjs/regular.git"},"homepage":"http://regularjs.github.io","scripts":{"test":"gulp travis --phantomjs","prepublish":"gulp build"},"bin":{"regular":"./bin/regular"},"devDependencies":{"expect.js":"~0.3.1","gulp":"3.6.x","gulp-bump":"^1.0.0","gulp-git":"^1.4.0","gulp-istanbul":"~0.1.1","gulp-jshint":"~1.5.3","gulp-mocha":"~0.4.1","gulp-shell":"^0.2.9","gulp-tag-version":"^1.3.0","gulp-uglify":"~0.2.1","gulp-util":"~2.2.14","gulp-webpack":"^1.0.0","karma":"^1.3.0","karma-chrome-launcher":"~0.1.4","karma-coverage":"~0.2.4","karma-firefox-launcher":"~0.1.3","karma-ie-launcher":"~0.1.5","karma-mocha":"~0.1.3","karma-phantomjs-launcher":"~0.1.4","mocha":"~1.18.2","run-sequence":"^1.2.2","through2":"~0.4.1","yargs":"^3.26.0"},"gitHead":"697b120f44915b396f281132704685e626c0d26b","bugs":{"url":"https://github.com/regularjs/regular/issues"},"_id":"regularjs@0.6.0-beta.6","_shasum":"649dabc67f43b1968200580c6709cea9a25c95f2","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.11.0","_npmUser":{"name":"leeluolee","email":"87399126@163.com"},"dist":{"shasum":"649dabc67f43b1968200580c6709cea9a25c95f2","tarball":"https://registry.npmjs.org/regularjs/-/regularjs-0.6.0-beta.6.tgz","integrity":"sha512-scce+GKJ56OXOBmOAgi6pjEMS+usprWdyB8uzXzkHYuDz+YM88oyC3UaSWfB7P+6uiJzhzrKl2oFty+nGx4Czg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBnfjj3cVm4u4Xn4wRcvUQICbZLj9rAcqtPUyVNFirs6AiEAuKKbyyRpPRP3bSdmc4XDMnbs2VS0mwOLTzrOjAu2N3c="}]},"maintainers":[{"name":"leeluolee","email":"87399126@163.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/regularjs-0.6.0-beta.6.tgz_1497420840112_0.22778705856762826"},"directories":{}},"0.6.0-beta.7":{"name":"regularjs","version":"0.6.0-beta.7","author":{"name":"leeluolee"},"description":"<a href=\"http://regularjs.github.io\">   ![regularjs](http://regularjs.github.io/image/regular-icon-100.png) </a>","license":"MIT","keywords":["template","data-binding"],"main":"lib/index.js","unpkg":"dist/regular.js","jsdelivr":"dist/regular.js","repository":{"type":"git","url":"git+https://github.com/regularjs/regular.git"},"homepage":"http://regularjs.github.io","scripts":{"test":"gulp travis --phantomjs","prepublish":"gulp build"},"bin":{"regular":"./bin/regular"},"devDependencies":{"expect.js":"~0.3.1","gulp":"3.6.x","gulp-bump":"^1.0.0","gulp-git":"^1.4.0","gulp-istanbul":"~0.1.1","gulp-jshint":"~1.5.3","gulp-mocha":"~0.4.1","gulp-shell":"^0.2.9","gulp-tag-version":"^1.3.0","gulp-uglify":"~0.2.1","gulp-util":"~2.2.14","gulp-webpack":"^1.0.0","karma":"^1.3.0","karma-chrome-launcher":"~0.1.4","karma-coverage":"~0.2.4","karma-firefox-launcher":"~0.1.3","karma-ie-launcher":"~0.1.5","karma-mocha":"~0.1.3","karma-phantomjs-launcher":"~0.1.4","mocha":"~1.18.2","run-sequence":"^1.2.2","through2":"~0.4.1","yargs":"^3.26.0"},"gitHead":"c05b6a22da82792e28d8f5b4c0363a458e049e15","bugs":{"url":"https://github.com/regularjs/regular/issues"},"_id":"regularjs@0.6.0-beta.7","_shasum":"21ed188d26e8433f80fe6d264cca51f3829e1d8b","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.11.0","_npmUser":{"name":"leeluolee","email":"87399126@163.com"},"dist":{"shasum":"21ed188d26e8433f80fe6d264cca51f3829e1d8b","tarball":"https://registry.npmjs.org/regularjs/-/regularjs-0.6.0-beta.7.tgz","integrity":"sha512-M1h06MMBR29DcfWhGDT5qL3WDrmxfJA4hsn/uRcOfv6UdcRXyYbuVO++BQFM/xC/C6/PDv0lHZ0GlkveusAdgQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCp/cTuqsNU8D5rpsmQYytbzSTr/SgPzYo0atKVTemJeAIhAIwMI8tR173RdckqrZAqb+JBK0NoxctYeGSlKlBmL8G/"}]},"maintainers":[{"name":"leeluolee","email":"87399126@163.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/regularjs-0.6.0-beta.7.tgz_1508133851454_0.2436306735035032"},"directories":{}},"0.6.0-beta.8":{"name":"regularjs","version":"0.6.0-beta.8","author":{"name":"leeluolee"},"description":"<a href=\"http://regularjs.github.io\">   ![regularjs](http://regularjs.github.io/image/regular-icon-100.png) </a>","license":"MIT","keywords":["template","data-binding"],"main":"lib/index.js","unpkg":"dist/regular.js","jsdelivr":"dist/regular.js","repository":{"type":"git","url":"git+https://github.com/regularjs/regular.git"},"homepage":"http://regularjs.github.io","scripts":{"watch":"gulp watch","test":"gulp travis --chromeHeadless","prepublish":"gulp build --production"},"bin":{"regular":"./bin/regular"},"devDependencies":{"expect.js":"~0.3.1","gulp":"3.6.x","gulp-better-rollup":"^2.0.0","gulp-bump":"^1.0.0","gulp-git":"^1.4.0","gulp-istanbul":"~0.1.1","gulp-jshint":"~1.5.3","gulp-mocha":"~0.4.1","gulp-shell":"^0.2.9","gulp-tag-version":"^1.3.0","gulp-uglify":"~0.2.1","gulp-util":"~2.2.14","karma":"^1.7.1","karma-chrome-launcher":"^2.2.0","karma-coverage":"~0.2.4","karma-firefox-launcher":"~0.1.3","karma-ie-launcher":"~0.1.5","karma-mocha":"~0.1.3","mocha":"~1.18.2","puppeteer":"^0.12.0","rollup-plugin-commonjs":"^8.2.6","rollup-plugin-node-resolve":"^3.0.0","rollup-plugin-replace":"^2.0.0","rollup-stream":"^1.24.1","run-sequence":"^1.2.2","through2":"~0.4.1","vinyl-buffer":"^1.0.0","vinyl-source-stream":"^1.1.0","webpack-stream":"^4.0.0","yargs":"^3.26.0"},"gitHead":"365e8c109d7e0025c2cb46671742609c897851c0","bugs":{"url":"https://github.com/regularjs/regular/issues"},"_id":"regularjs@0.6.0-beta.8","_shasum":"5e70b443114bbc583b8ae3230c143661dd3a97e0","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.11.0","_npmUser":{"name":"leeluolee","email":"87399126@163.com"},"dist":{"shasum":"5e70b443114bbc583b8ae3230c143661dd3a97e0","tarball":"https://registry.npmjs.org/regularjs/-/regularjs-0.6.0-beta.8.tgz","integrity":"sha512-zM8dwP5wVSKbad3C7anTXYmGYMzj27tlG/GvynN9tG32R1W7MLXkLw4WtbKjZPyzqfMsmjbiITi4/q6HCDhj/g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCfiQBCLi3Ycht7JA4nR1S64Tn9G5sqBgM00mrWr1t7UAIgIREm8vGrOSLCmm7nIHJhxP/z9A+GrQQXEiCGQrjnKgA="}]},"maintainers":[{"name":"leeluolee","email":"87399126@163.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/regularjs-0.6.0-beta.8.tgz_1510715039258_0.0957833060529083"},"directories":{}},"0.6.0-beta.9":{"name":"regularjs","version":"0.6.0-beta.9","author":{"name":"leeluolee"},"description":"<a href=\"http://regularjs.github.io\">   ![regularjs](http://regularjs.github.io/image/regular-icon-100.png) </a>","license":"MIT","keywords":["template","data-binding"],"main":"lib/index.js","unpkg":"dist/regular.js","jsdelivr":"dist/regular.js","repository":{"type":"git","url":"git+https://github.com/regularjs/regular.git"},"homepage":"http://regularjs.github.io","scripts":{"watch":"gulp watch","test":"gulp travis --phantomjs","prepublish":"gulp build"},"bin":{"regular":"./bin/regular"},"devDependencies":{"expect.js":"~0.3.1","gulp":"3.6.x","gulp-bump":"^1.0.0","gulp-git":"^1.4.0","gulp-istanbul":"~0.1.1","gulp-jshint":"~1.5.3","gulp-mocha":"~0.4.1","gulp-shell":"^0.2.9","gulp-tag-version":"^1.3.0","gulp-uglify":"~0.2.1","gulp-util":"~2.2.14","gulp-webpack":"^1.0.0","karma":"^1.3.0","karma-chrome-launcher":"~0.1.4","karma-coverage":"~0.2.4","karma-firefox-launcher":"~0.1.3","karma-ie-launcher":"~0.1.5","karma-mocha":"~0.1.3","karma-phantomjs-launcher":"~0.1.4","mocha":"~1.18.2","run-sequence":"^1.2.2","through2":"~0.4.1","yargs":"^3.26.0"},"gitHead":"f0d9fb2ec8d50c1fc3a15147a85ecfd9b6406c7a","bugs":{"url":"https://github.com/regularjs/regular/issues"},"_id":"regularjs@0.6.0-beta.9","_npmVersion":"5.6.0","_nodeVersion":"6.11.0","_npmUser":{"name":"leeluolee","email":"87399126@163.com"},"dist":{"integrity":"sha512-YaQapoPakQKeDv1qkB6xPWFlwfqI/4v0NHZ6KaLzyflb3Ljv+Ib6d67eoAteNmI9NQTeAjoUJC9AGV9uhVghwg==","shasum":"c1aa4a892a901b00c53edafac499b0b24d8f4a9b","tarball":"https://registry.npmjs.org/regularjs/-/regularjs-0.6.0-beta.9.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIB1pKmquhP+m4Rz2Dk5sAvkY6YN3kXV5/eXHKV2C/F9TAiEA7u5Kvr6aVaejn1sJduIw+09WnoLdNrM697M5SpokP/A="}]},"maintainers":[{"name":"leeluolee","email":"87399126@163.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/regularjs-0.6.0-beta.9.tgz_1516696153867_0.9245977723039687"},"directories":{}},"0.6.0-beta.10":{"name":"regularjs","version":"0.6.0-beta.10","author":{"name":"leeluolee"},"description":"<a href=\"http://regularjs.github.io\">   ![regularjs](http://regularjs.github.io/image/regular-icon-100.png) </a>","license":"MIT","keywords":["template","data-binding"],"main":"lib/index.js","unpkg":"dist/regular.js","jsdelivr":"dist/regular.js","repository":{"type":"git","url":"git+https://github.com/regularjs/regular.git"},"homepage":"http://regularjs.github.io","scripts":{"watch":"gulp watch","test":"gulp travis --phantomjs","prepublish":"gulp build"},"bin":{"regular":"./bin/regular"},"devDependencies":{"expect.js":"~0.3.1","gulp":"3.6.x","gulp-bump":"^1.0.0","gulp-git":"^1.4.0","gulp-istanbul":"~0.1.1","gulp-jshint":"~1.5.3","gulp-mocha":"~0.4.1","gulp-shell":"^0.2.9","gulp-tag-version":"^1.3.0","gulp-uglify":"~0.2.1","gulp-util":"~2.2.14","gulp-webpack":"^1.0.0","karma":"^1.3.0","karma-chrome-launcher":"~0.1.4","karma-coverage":"~0.2.4","karma-firefox-launcher":"~0.1.3","karma-ie-launcher":"~0.1.5","karma-mocha":"~0.1.3","karma-phantomjs-launcher":"~1.0.2","mocha":"~1.18.2","run-sequence":"^1.2.2","through2":"~0.4.1","yargs":"^3.26.0"},"gitHead":"bc02b82106b322dd0079be9b27a43d23b5324874","bugs":{"url":"https://github.com/regularjs/regular/issues"},"_id":"regularjs@0.6.0-beta.10","_npmVersion":"5.6.0","_nodeVersion":"6.11.0","_npmUser":{"name":"leeluolee","email":"87399126@163.com"},"dist":{"integrity":"sha512-UZUc7O9didb6tWhNrwrhpEbxFX0Z9mgx2BDDQRCCEofgDY+fngwVLGPYEitiauBA67w7asvb2leCEJRK+ht42w==","shasum":"efe565441b65e61f1b26a024c0360a1fc1d77695","tarball":"https://registry.npmjs.org/regularjs/-/regularjs-0.6.0-beta.10.tgz","fileCount":43,"unpackedSize":456369,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDeRT6ekFZGY22cgD+/xNonn3DxbxiYIKe1D35sCz9NYwIhAITrvJhZq7dXTQkerIMdR8jmoEEKseSd9gUy5cUNrUX8"}]},"maintainers":[{"name":"leeluolee","email":"87399126@163.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/regularjs_0.6.0-beta.10_1518353799728_0.9895722990732074"},"_hasShrinkwrap":false},"0.6.0-beta.11":{"name":"regularjs","version":"0.6.0-beta.11","author":{"name":"leeluolee"},"description":"[![regularjs](http://regularjs.github.io/image/regular-icon-100.png)](http://regularjs.github.io)","license":"MIT","keywords":["template","data-binding"],"main":"lib/index.js","unpkg":"dist/regular.js","jsdelivr":"dist/regular.js","repository":{"type":"git","url":"git+https://github.com/regularjs/regular.git"},"homepage":"http://regularjs.github.io","scripts":{"watch":"gulp watch","test":"gulp travis --phantomjs","prepublish":"gulp build"},"bin":{"regular":"./bin/regular"},"devDependencies":{"expect.js":"~0.3.1","gulp":"3.6.x","gulp-bump":"^1.0.0","gulp-git":"^1.4.0","gulp-istanbul":"~0.1.1","gulp-jshint":"~1.5.3","gulp-mocha":"~0.4.1","gulp-shell":"^0.2.9","gulp-tag-version":"^1.3.0","gulp-uglify":"~0.2.1","gulp-util":"~2.2.14","gulp-webpack":"^1.0.0","karma":"^1.3.0","karma-chrome-launcher":"~0.1.4","karma-coverage":"~0.2.4","karma-firefox-launcher":"~0.1.3","karma-ie-launcher":"~0.1.5","karma-mocha":"~0.1.3","karma-phantomjs-launcher":"~1.0.2","mocha":"~1.18.2","run-sequence":"^1.2.2","through2":"~0.4.1","yargs":"^3.26.0"},"gitHead":"d83109b5242f0d9e7a361cafd9f402165fabe820","bugs":{"url":"https://github.com/regularjs/regular/issues"},"_id":"regularjs@0.6.0-beta.11","_npmVersion":"6.0.0","_nodeVersion":"8.3.0","_npmUser":{"name":"leeluolee","email":"87399126@163.com"},"dist":{"integrity":"sha512-A+sG20JzzGL83mym0owggUZuY3zA2HNRv8vPYQ/Fz0xBlVAC+5M8nkK0Mg4O+RIkodDA2XECvOAIaLunK8P3Ng==","shasum":"4c6857539535455eef22f00683c9c10d1b82f3ed","tarball":"https://registry.npmjs.org/regularjs/-/regularjs-0.6.0-beta.11.tgz","fileCount":44,"unpackedSize":461543,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbTvIXCRA9TVsSAnZWagAAQN0P/1wG0AglGg+/czDCwLB3\nbtTDdeJ5Gqp7FbFgcIu3y/jBLefvT684RowMpCG9a1p+UnwF/eNzPlg6mdwm\nv+JKcTzsiYE28iSwFooJBt+sdEfL2+PPD435aTbiupdBxXPcqnE3rvNvPhhN\nY8JBBotXZ44FtB5EM/bGgX/GHieS54NKJYXeezFbZE+GiyBlm6QqjHi0xR3y\nOQclrNncCzo9wVvcqKIrmMQ3xNkTcj4MGDTsqCh0tXMcryxGG2Ea5P2OjXtZ\ndYxYMgla6C2CESqx876236ZqqG+wfdysKlGvFyAGluKNSK+dusLVEp2cMrrQ\nd0UMD2e9RcF33YwWhZuXQRvbspaOVDMWJO2EJla0M7VHODlqHwUQdRlMvyNt\nRW1ARb1u9z5TB93vNg9hBeSAVz9oWiDvH+xOD3cRgNaT/Kciiedex0VGm9rQ\nUWlrxpQOMjFm+iJiyzPjf5PqmnclmvfXrJgfLrQ1D1A4ZWucZBDh7dkF+kRe\nD6fFtEuh3tg1U3KjB0w4Au08ExiTMxXQ8foeScBQK5HueXn89nToLZsjK4mI\noCe6tDUK07vqcug3T+X6ylhpqt8aqiSa0wpnUPwPmNcloPEps/x3br0TcRAk\nPQH1fh2IA9nixHQwRWjjtOHjIyCCBDAukNgX+DzRu9+kFSucKQ+HzsJOlxQ1\npRjM\r\n=DCen\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDdjk1h/Uf48a5641BSTf1MSuq6Ud1YZZlqbhPlwT94OAIhALlNdRqe7qSr1nOXW/oPpJI0tLhVQQ6P/vDw4ZqxSjPz"}]},"maintainers":[{"name":"leeluolee","email":"87399126@163.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/regularjs_0.6.0-beta.11_1531900439488_0.178073953950854"},"_hasShrinkwrap":false},"0.6.0":{"name":"regularjs","version":"0.6.0","author":{"name":"leeluolee"},"description":"[![regularjs](http://regularjs.github.io/image/regular-icon-100.png)](http://regularjs.github.io)","license":"MIT","keywords":["template","data-binding"],"main":"lib/index.js","unpkg":"dist/regular.js","jsdelivr":"dist/regular.js","repository":{"type":"git","url":"git+https://github.com/regularjs/regular.git"},"homepage":"http://regularjs.github.io","scripts":{"watch":"gulp watch","test":"gulp travis --phantomjs","prepublish":"gulp build"},"bin":{"regular":"./bin/regular"},"devDependencies":{"expect.js":"~0.3.1","gulp":"3.6.x","gulp-bump":"^1.0.0","gulp-git":"^1.4.0","gulp-istanbul":"~0.1.1","gulp-jshint":"~1.5.3","gulp-mocha":"~0.4.1","gulp-shell":"^0.2.9","gulp-tag-version":"^1.3.0","gulp-uglify":"~0.2.1","gulp-util":"~2.2.14","gulp-webpack":"^1.0.0","karma":"^1.3.0","karma-chrome-launcher":"~0.1.4","karma-coverage":"~0.2.4","karma-firefox-launcher":"~0.1.3","karma-ie-launcher":"~0.1.5","karma-mocha":"~0.1.3","karma-phantomjs-launcher":"~1.0.2","mocha":"~1.18.2","run-sequence":"^1.2.2","through2":"~0.4.1","yargs":"^3.26.0"},"gitHead":"a1c1e0fd915706fc381d6cd7b55e0e2cade65b3f","bugs":{"url":"https://github.com/regularjs/regular/issues"},"_id":"regularjs@0.6.0","_npmVersion":"5.6.0","_nodeVersion":"8.9.4","_npmUser":{"name":"leeluolee","email":"87399126@163.com"},"dist":{"integrity":"sha512-FfIdorp73a4om5CEOUuCxsQaABiu7384PYPt1e3Ih20Z8+OqALcOxfjwERhf8tpracYFDARjHq0qfBrPrgDaSg==","shasum":"71b3d6f99cba49a70c8663abda59042a3fcba0c7","tarball":"https://registry.npmjs.org/regularjs/-/regularjs-0.6.0.tgz","fileCount":43,"unpackedSize":431727,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbdorWCRA9TVsSAnZWagAARbgP/1pCdOcTyT0wlRTRmY2c\nZpX/3Ac641J0++frwuhvfvS9cem1Zc2Ard79LjxJ0AIJ/FNDOePwaEVQ41+A\npgwLVjlsB3A7dz37lDGTpCSQdR5u7miC1e/TsIZUGtb0KYCpuPq/Ha2kYWkh\noVoZiVCDUM54qlOa2ThdbTRphCnn9stg3StnKF6d9mz3Ffkd17+D+CKMMg3y\nP/MY5UmNgsnAHev/iLBaScdlb8uNTZ1mXM7QD3RNN2f3BQBgOxFQ+EkJKWAN\ngxIYwkAn3GLTxHXMO0TkQNPUdqZH5Inwplf608OTf19/BUdqLHLhPofQvaA4\nsRLEeyF/rgjD5Ehku5V11m2ZywS5J5JmdwwWzr7oLgYvxBfnpSL9OWa0t1EQ\nh7cNkAP8Yh+zJYj8jrjTs9UJiJS0xp6WTTGlJokOvCjpQtpcdn1B2bQXCMuD\nkHkxPK8adFWHwfJhJzWQtKv/sujO8KdDEmWjcOJ/ZtZ2i3vf0sYytKFNR/XO\niwvwE0PEEmSmxbN7gY/NibXTgDuyZ22IFYtHOZuFCSSaWLpuEOODAsGlPxI2\nCPdEIVQNw1ecWnsYDDcWErYEyDASnCexEMf+luk1ULj+uFMoeXqQsiM9ZsZL\nlu8ylwpi7Zr91NCoZxmtUr0o8+zvhpvjD5k7xYVmQ1AdtVuN9CbeBO3sZ6F/\nz2Xf\r\n=PQDv\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDZpc6uB6Y1E5Y3Uf0vs2aG/DLxMJXSTbJSo4flpJllDQIhAPOKDjzTO8ZoFf9IQHQcD9vOLofxu+XjhhVmIR12TDZ7"}]},"maintainers":[{"name":"leeluolee","email":"87399126@163.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/regularjs_0.6.0_1534495446222_0.27472560039258886"},"_hasShrinkwrap":false},"0.6.1":{"name":"regularjs","version":"0.6.1","author":{"name":"leeluolee"},"description":"[![regularjs](http://regularjs.github.io/image/regular-icon-100.png)](http://regularjs.github.io)","license":"MIT","keywords":["template","data-binding"],"main":"lib/index.js","unpkg":"dist/regular.js","jsdelivr":"dist/regular.js","repository":{"type":"git","url":"git+https://github.com/regularjs/regular.git"},"homepage":"http://regularjs.github.io","scripts":{"watch":"gulp watch","test":"gulp travis --phantomjs","prepublish":"gulp build"},"bin":{"regular":"./bin/regular"},"devDependencies":{"expect.js":"~0.3.1","gulp":"3.6.x","gulp-bump":"^1.0.0","gulp-git":"^1.4.0","gulp-istanbul":"~0.1.1","gulp-jshint":"~1.5.3","gulp-mocha":"~0.4.1","gulp-shell":"^0.2.9","gulp-tag-version":"^1.3.0","gulp-uglify":"~0.2.1","gulp-util":"~2.2.14","gulp-webpack":"^1.0.0","karma":"^1.3.0","karma-chrome-launcher":"~0.1.4","karma-coverage":"~0.2.4","karma-firefox-launcher":"~0.1.3","karma-ie-launcher":"~0.1.5","karma-mocha":"~0.1.3","karma-phantomjs-launcher":"~1.0.2","mocha":"~1.18.2","run-sequence":"^1.2.2","through2":"~0.4.1","yargs":"^3.26.0"},"gitHead":"89b567d7eeff85578bbaf2e461aae0b10c2d1053","bugs":{"url":"https://github.com/regularjs/regular/issues"},"_id":"regularjs@0.6.1","_npmVersion":"5.6.0","_nodeVersion":"8.9.4","_npmUser":{"name":"leeluolee","email":"87399126@163.com"},"dist":{"integrity":"sha512-g7bTpj46JqgeU4tIuSmTXqXng/pI6gtIHGOtUWwTCoI1WRRg/ohPDQA0LLLk+89KKVn/d8KbHv6pzhq4vpVitQ==","shasum":"388f0fc52236e5fe9b0c9f35175512ec45f57ba0","tarball":"https://registry.npmjs.org/regularjs/-/regularjs-0.6.1.tgz","fileCount":43,"unpackedSize":434181,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcNZSECRA9TVsSAnZWagAAhy4P/Ra0xxeZUxt8UEGy1JiG\nXphILA42ElLTgdu27nFNoS69mZ1AHLWimi6PV+Qzf8U3WOZMYnXg1ySpiYZ0\nRNJFRyA8x9FQDIYtum5MjrKDghfvReSluVqGmDi28PGzm/5xcX6kzNPgD8Be\nEZaEZbIDVXZ8lvrSIAqFwSz3fYpyawdZoEk9Z9/pkWURn1Z/VXd1RQ6GOlbA\nSiHdfamrPNus2u31yOpo2BfIiVCK+EFN97EuxR8/or16YmzYoUtwk0t9PjFn\nMQa81V7wu1B5Z7t9wRi9C2v5EOmOdUgfYAX8rc3JUeSTUoIRM6K4qii+dMYt\neyBBy+LMUCIN3vDcgmRQjtmQS5kTPSFjekCm2IXDUxCoPwf9ru/14ikdvZtd\nZ4+UqmLRZ8SyOsIk5IyRtU9V9fv97M1Jgmg6X0Be0c/xqBPD52d1P/BuTsWY\nrSWa1D5VZBTONGF0HQLVyTPyDXJ0bL3Aet47kxLHsCAEPBz4hrwlDZymJohD\nD2TynrMKvgcaFZ80uOFRMdpaeNI9eV5CeAkCvnSE14hkkwwCA9fIps2LEQbA\nq3pKj/m9d2KgZYmeZiSvyUga07k22AJF95PoYW8ssdvx7zBmj6igEsx8SZws\nKS+ypf3lEMgW8rVlHgloWIa4ZSprYTIYMPLl8ixXK6IZMZBSv5X1yP6wkrI0\nyzf6\r\n=P7Fm\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGxgIrXBYvgPFj8fEjqFdQwCDJuod6FR0hIKsblU4GJ0AiB8dcM3z9d/cpOHeEPar7Ccv3HIsBtBt8vV3EBVSthWHw=="}]},"maintainers":[{"name":"leeluolee","email":"87399126@163.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/regularjs_0.6.1_1547015299490_0.4482246049775238"},"_hasShrinkwrap":false,"deprecated":"critical bug fixed in v0.6.1"},"0.6.2":{"name":"regularjs","version":"0.6.2","author":{"name":"leeluolee"},"description":"[![regularjs](http://regularjs.github.io/image/regular-icon-100.png)](http://regularjs.github.io)","license":"MIT","keywords":["template","data-binding"],"main":"lib/index.js","unpkg":"dist/regular.js","jsdelivr":"dist/regular.js","repository":{"type":"git","url":"git+https://github.com/regularjs/regular.git"},"homepage":"http://regularjs.github.io","scripts":{"watch":"gulp watch","test":"gulp travis --phantomjs","prepublish":"gulp build"},"bin":{"regular":"./bin/regular"},"devDependencies":{"expect.js":"~0.3.1","gulp":"3.6.x","gulp-bump":"^1.0.0","gulp-git":"^1.4.0","gulp-istanbul":"~0.1.1","gulp-jshint":"~1.5.3","gulp-mocha":"~0.4.1","gulp-shell":"^0.2.9","gulp-tag-version":"^1.3.0","gulp-uglify":"~0.2.1","gulp-util":"~2.2.14","gulp-webpack":"^1.0.0","karma":"^1.3.0","karma-chrome-launcher":"~0.1.4","karma-coverage":"~0.2.4","karma-firefox-launcher":"~0.1.3","karma-ie-launcher":"~0.1.5","karma-mocha":"~0.1.3","karma-phantomjs-launcher":"~1.0.2","mocha":"~1.18.2","run-sequence":"^1.2.2","through2":"~0.4.1","yargs":"^3.26.0"},"gitHead":"bdb9d43034c1310c3bc8179c1d3a240e22802fba","bugs":{"url":"https://github.com/regularjs/regular/issues"},"_id":"regularjs@0.6.2","_npmVersion":"5.6.0","_nodeVersion":"8.9.4","_npmUser":{"name":"leeluolee","email":"87399126@163.com"},"dist":{"integrity":"sha512-MA9vUwTQVxDF7E3/uO0oRCS6ZCfeQ6hMu5rh+/vzJkKFyLDfq1QgKHUPxY9hkKV4f9IJkyv6sCz/MCjLMO73Cg==","shasum":"2a2fe25d403c10a1c6b5f459ffef28a81b3a7d64","tarball":"https://registry.npmjs.org/regularjs/-/regularjs-0.6.2.tgz","fileCount":43,"unpackedSize":434290,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcNghsCRA9TVsSAnZWagAAXOUQAILgyTmL6iHaONaAIDt7\nLIhMjfkRxMSQQfMVimSdN4wVUEKI21/aqqoDJCUQVXi2yQE5U0NkcvuKMiGj\n9+eS6mCe+2mSDYYDweyxlA8qgsc5Ub2uMueEDOJMlsGV60rQ12VkL5SxHiwi\nBtVX17Bx9RG1YclTbOsVlurH9iQt6OfRLoSHtW5GkUyTKk9+1qyNfCnP00TX\nilgh8lQ6PB5TLehTINh8nQQRPlUcDpAD6sd6pnGlLlFfzFnInFF+rE4TJQes\n3+6bqtaqlYASoChzZ9GM6am6KgiX151eDPPqoA5tAYU72j8yU5EO5bYAPy+j\n97FmNfieJyOUA1vQ+DFRr56a3QpvhZFjB6GJMRTcVfe9AihJPzoAHyj2gMdL\nT8zS/QUOMTVvnOP6whmtYLskZr4iA5RfGFF9eeVmkgNNIoyAgagCEsUT6w4I\n4c+PTNT9F8s6dSWOhUWGj8acYnNE8UJP6Q2S9fpzqkHxEZ3kjef77tFrRSOM\n2hk9QR7tcdUy9w9Bo9Hly34lMhZZppqqIjq/nhxeTnTiq89Z7QYt7d9222RQ\nqny76RGj5+2jVXHPqDKv92S1LRBO/FkV1FvGk+EH+5szNtZAOzr6KkLHqkx0\n/zhi/JSp/ZCT2X/thiiSqFT4l8ptLRc5sDhBatyMH/k/kmYBNVJvUms/45W5\nPjBa\r\n=zbPt\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD57Vk2m8iqFF3IJEZFcrIyogKYS7t5UyHdh4i4qUi/oAIgbfo27guqnwzWGD+k9Bk33r9/nbH/q1HQO1kOOtSglFo="}]},"maintainers":[{"email":"fengzilong1992@gmail.com","name":"fengzilong"},{"email":"87399126@163.com","name":"leeluolee"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/regularjs_0.6.2_1547044971907_0.867711612507998"},"_hasShrinkwrap":false}},"homepage":"http://regularjs.github.io","keywords":["template","data-binding"],"repository":{"type":"git","url":"git+https://github.com/regularjs/regular.git"},"author":{"name":"leeluolee"},"license":"MIT","readmeFilename":"README.md","bugs":{"url":"https://github.com/regularjs/regular/issues"}}