{"maintainers":[{"email":"me@thejameskyle.com","name":"thejameskyle"},{"email":"sebmck@gmail.com","name":"sebmck"},{"email":"daniel@tschinder.de","name":"danez"},{"email":"hi@henryzoo.com","name":"hzoo"},{"email":"loganfsmyth@gmail.com","name":"loganfsmyth"}],"keywords":["babel-plugin"],"dist-tags":{"latest":"6.24.1","next":"7.0.0-alpha.19"},"description":"This plugin transforms ES2015 modules to CommonJS","readme":"# babel-plugin-transform-es2015-modules-commonjs\n\n> This plugin transforms ES2015 modules to [CommonJS](http://wiki.commonjs.org/wiki/Modules/1.1).\n\n## Example\n\n**In**\n\n```javascript\nexport default 42;\n```\n\n**Out**\n\n```javascript\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n\nexports.default = 42;\n```\n\n## Installation\n\n```sh\nnpm install --save-dev babel-plugin-transform-es2015-modules-commonjs\n```\n\n## Usage\n\n### Via `.babelrc` (Recommended)\n\n**.babelrc**\n\n```js\n// without options\n{\n  \"plugins\": [\"transform-es2015-modules-commonjs\"]\n}\n\n// with options\n{\n  \"plugins\": [\n    [\"transform-es2015-modules-commonjs\", {\n      \"allowTopLevelThis\": true\n    }]\n  ]\n}\n```\n\n### Via CLI\n\n```sh\nbabel --plugins transform-es2015-modules-commonjs script.js\n```\n\n### Via Node API\n\n```javascript\nrequire(\"babel-core\").transform(\"code\", {\n  plugins: [\"transform-es2015-modules-commonjs\"]\n});\n```\n\n## Options\n\n### `loose`\n\n`boolean`, defaults to `false`.\n\nAs per the spec, `import` and `export` are only allowed to be used at the top\nlevel. When in loose mode these are allowed to be used anywhere.\n\nAnd by default, when using exports with babel a non-enumerable `__esModule` property\nis exported.\n\n```javascript\nvar foo = exports.foo = 5;\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n```\n\nIn environments that don't support this you can enable loose mode on `babel-plugin-transform-es20150-modules-commonjs`\nand instead of using `Object.defineProperty` an assignment will be used instead.\n\n```javascript\nvar foo = exports.foo = 5;\nexports.__esModule = true;\n```\n\n### `strict`\n\n`boolean`, defaults to `false`\n\nBy default, when using exports with babel a non-enumerable `__esModule` property\nis exported. In some cases this property is used to determine if the import _is_ the\ndefault export or if it _contains_ the default export.\n\n```javascript\nvar foo = exports.foo = 5;\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\n```\n\nIn order to prevent the `__esModule` property from being exported, you can set\nthe `strict` option to `true`.\n\n### `noInterop`\n\n`boolean`, defaults to `false`\n\nBy default, when using exports with babel a non-enumerable `__esModule` property\nis exported. This property is then used to determine if the import _is_ the default\nexport or if it _contains_ the default export.\n\n```javascript\n\"use strict\";\n\nvar _foo = require(\"foo\");\n\nvar _foo2 = _interopRequireDefault(_foo);\n\nfunction _interopRequireDefault(obj) {\n  return obj && obj.__esModule ? obj : { default: obj };\n}\n```\n\nIn cases where the auto-unwrapping of `default` is not needed, you can set the\n`noInterop` option to `true` to avoid the usage of the `interopRequireDefault`\nhelper (shown in inline form above).\n","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-commonjs"},"users":{"jamietre":true,"marcellodesales":true,"hedge":true,"laurentknauss":true,"klimnikita":true,"bapinney":true,"usex":true,"yonie":true},"license":"MIT","versions":{"6.0.2":{"name":"babel-plugin-transform-es2015-modules-commonjs","version":"6.0.2","description":"## Installation","repository":{"type":"git","url":"git+https://github.com/babel/babel.git"},"license":"MIT","main":"lib/index.js","dependencies":{"babel-types":"^6.0.2","babel-runtime":"^6.0.2","babel-template":"^6.0.2"},"keywords":["babel-plugin"],"bugs":{"url":"https://github.com/babel/babel/issues"},"homepage":"https://github.com/babel/babel#readme","_id":"babel-plugin-transform-es2015-modules-commonjs@6.0.2","scripts":{},"_shasum":"b126a81e7d2ac61172c664ce1a5f8592acab0c2b","_from":".","_npmVersion":"2.14.3","_nodeVersion":"4.1.0","_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"dist":{"shasum":"b126a81e7d2ac61172c664ce1a5f8592acab0c2b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.0.2.tgz"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"}],"directories":{}},"6.0.12":{"name":"babel-plugin-transform-es2015-modules-commonjs","version":"6.0.12","description":"## Installation","repository":{"type":"git","url":"git+https://github.com/babel/babel.git"},"license":"MIT","main":"lib/index.js","dependencies":{"babel-types":"^6.0.12","babel-runtime":"^6.0.12","babel-template":"^6.0.12","babel-plugin-transform-strict-mode":"^6.0.2"},"keywords":["babel-plugin"],"bugs":{"url":"https://github.com/babel/babel/issues"},"homepage":"https://github.com/babel/babel#readme","_id":"babel-plugin-transform-es2015-modules-commonjs@6.0.12","scripts":{},"_shasum":"835935d623f412b6e85cfa08323de5845b3e9c6b","_from":".","_npmVersion":"2.14.9","_nodeVersion":"4.1.0","_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"dist":{"shasum":"835935d623f412b6e85cfa08323de5845b3e9c6b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.0.12.tgz"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"}],"directories":{}},"6.0.14":{"name":"babel-plugin-transform-es2015-modules-commonjs","version":"6.0.14","description":"## Installation","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-commonjs"},"license":"MIT","main":"lib/index.js","dependencies":{"babel-types":"^6.0.14","babel-runtime":"^6.0.14","babel-template":"^6.0.14","babel-plugin-transform-strict-mode":"^6.0.14"},"keywords":["babel-plugin"],"_id":"babel-plugin-transform-es2015-modules-commonjs@6.0.14","scripts":{},"_shasum":"6a534e418c1af8b541fb3daf16c0acb7b6fb8fa7","_from":".","_npmVersion":"2.14.9","_nodeVersion":"4.1.0","_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"dist":{"shasum":"6a534e418c1af8b541fb3daf16c0acb7b6fb8fa7","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.0.14.tgz"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"}],"directories":{}},"6.0.15":{"name":"babel-plugin-transform-es2015-modules-commonjs","version":"6.0.15","description":"## Installation","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-commonjs"},"license":"MIT","main":"lib/index.js","dependencies":{"babel-types":"^6.0.15","babel-runtime":"^5.0.0","babel-template":"^6.0.15","babel-plugin-transform-strict-mode":"^6.0.15"},"keywords":["babel-plugin"],"_id":"babel-plugin-transform-es2015-modules-commonjs@6.0.15","scripts":{},"_shasum":"013d2d0e78b67381746514c711d98ee926b8eff5","_from":".","_npmVersion":"2.14.9","_nodeVersion":"4.1.0","_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"dist":{"shasum":"013d2d0e78b67381746514c711d98ee926b8eff5","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.0.15.tgz"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"}],"directories":{}},"6.0.18":{"name":"babel-plugin-transform-es2015-modules-commonjs","version":"6.0.18","description":"## Installation","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-commonjs"},"license":"MIT","main":"lib/index.js","dependencies":{"babel-types":"^6.0.18","babel-runtime":"^5.0.0","babel-template":"^6.0.15","babel-plugin-transform-strict-mode":"^6.0.15"},"keywords":["babel-plugin"],"_id":"babel-plugin-transform-es2015-modules-commonjs@6.0.18","scripts":{},"_shasum":"2fa29fa3379597cb6c70ce20dcf16bd7b23009e6","_from":".","_npmVersion":"2.14.9","_nodeVersion":"4.1.0","_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"dist":{"shasum":"2fa29fa3379597cb6c70ce20dcf16bd7b23009e6","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.0.18.tgz"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"}],"directories":{}},"6.1.3":{"name":"babel-plugin-transform-es2015-modules-commonjs","version":"6.1.3","description":"## Installation","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-commonjs"},"license":"MIT","main":"lib/index.js","dependencies":{"babel-types":"^6.0.18","babel-runtime":"^5.0.0","babel-template":"^6.0.15","babel-plugin-transform-strict-mode":"^6.0.15"},"keywords":["babel-plugin"],"_id":"babel-plugin-transform-es2015-modules-commonjs@6.1.3","scripts":{},"_shasum":"209af0b161b76968bb791a8c5daebbcca2a0c227","_from":".","_npmVersion":"2.14.9","_nodeVersion":"4.1.0","_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"dist":{"shasum":"209af0b161b76968bb791a8c5daebbcca2a0c227","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.1.3.tgz"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"}],"directories":{}},"6.1.4":{"name":"babel-plugin-transform-es2015-modules-commonjs","version":"6.1.4","description":"## Installation","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-commonjs"},"license":"MIT","main":"lib/index.js","dependencies":{"babel-types":"^6.1.4","babel-runtime":"^5.0.0","babel-template":"^6.0.15","babel-plugin-transform-strict-mode":"^6.1.4"},"keywords":["babel-plugin"],"devDependencies":{"babel-helper-plugin-test-runner":"^6.1.4"},"_id":"babel-plugin-transform-es2015-modules-commonjs@6.1.4","scripts":{},"_shasum":"6265cceb41c3273b989284311dedcf7236b8325b","_from":".","_npmVersion":"3.3.10","_nodeVersion":"4.1.0","_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"dist":{"shasum":"6265cceb41c3273b989284311dedcf7236b8325b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.1.4.tgz"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"}],"directories":{}},"6.1.5":{"name":"babel-plugin-transform-es2015-modules-commonjs","version":"6.1.5","description":"## Installation","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-commonjs"},"license":"MIT","main":"lib/index.js","dependencies":{"babel-types":"^6.1.5","babel-runtime":"^5.0.0","babel-template":"^6.1.5","babel-plugin-transform-strict-mode":"^6.1.5"},"keywords":["babel-plugin"],"devDependencies":{"babel-helper-plugin-test-runner":"^6.1.5"},"_id":"babel-plugin-transform-es2015-modules-commonjs@6.1.5","scripts":{},"_shasum":"f09187c0479cb4e03227e0159be39598797a5eca","_from":".","_npmVersion":"3.3.10","_nodeVersion":"4.1.0","_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"dist":{"shasum":"f09187c0479cb4e03227e0159be39598797a5eca","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.1.5.tgz"},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"}],"directories":{}},"6.1.17":{"name":"babel-plugin-transform-es2015-modules-commonjs","version":"6.1.17","description":"## Installation","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-commonjs"},"license":"MIT","main":"lib/index.js","dependencies":{"babel-types":"^6.1.17","babel-runtime":"^5.0.0","babel-template":"^6.1.17","babel-plugin-transform-strict-mode":"^6.1.17"},"keywords":["babel-plugin"],"devDependencies":{"babel-helper-plugin-test-runner":"^6.1.17"},"_id":"babel-plugin-transform-es2015-modules-commonjs@6.1.17","scripts":{},"_shasum":"254255d62920ee30ea1f20af807078f18c0fd113","_from":".","_npmVersion":"3.3.10","_nodeVersion":"4.1.0","_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"dist":{"shasum":"254255d62920ee30ea1f20af807078f18c0fd113","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.1.17.tgz"},"maintainers":[{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"thejameskyle","email":"me@thejameskyle.com"}],"directories":{}},"6.1.18":{"name":"babel-plugin-transform-es2015-modules-commonjs","version":"6.1.18","description":"## Installation","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-commonjs"},"license":"MIT","main":"lib/index.js","dependencies":{"babel-types":"^6.1.18","babel-runtime":"^5.0.0","babel-template":"^6.1.18","babel-plugin-transform-strict-mode":"^6.1.18"},"keywords":["babel-plugin"],"devDependencies":{"babel-helper-plugin-test-runner":"^6.1.18"},"_id":"babel-plugin-transform-es2015-modules-commonjs@6.1.18","scripts":{},"_shasum":"eac495b08b3e790fb6c6c15d745ca5c5ac4675e3","_from":".","_npmVersion":"3.3.10","_nodeVersion":"4.1.0","_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"dist":{"shasum":"eac495b08b3e790fb6c6c15d745ca5c5ac4675e3","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.1.18.tgz"},"maintainers":[{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"thejameskyle","email":"me@thejameskyle.com"}],"directories":{}},"6.1.20":{"name":"babel-plugin-transform-es2015-modules-commonjs","version":"6.1.20","description":"## Installation","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-commonjs"},"license":"MIT","main":"lib/index.js","dependencies":{"babel-types":"^6.1.18","babel-runtime":"^5.0.0","babel-template":"^6.1.18","babel-plugin-transform-strict-mode":"^6.1.18"},"keywords":["babel-plugin"],"devDependencies":{"babel-helper-plugin-test-runner":"^6.1.18"},"_id":"babel-plugin-transform-es2015-modules-commonjs@6.1.20","scripts":{},"_shasum":"146197f9c7d944b8b46cd136a7a4c3f5a25b6fdd","_from":".","_npmVersion":"3.3.10","_nodeVersion":"4.1.0","_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"dist":{"shasum":"146197f9c7d944b8b46cd136a7a4c3f5a25b6fdd","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.1.20.tgz"},"maintainers":[{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"thejameskyle","email":"me@thejameskyle.com"}],"directories":{}},"6.2.0":{"name":"babel-plugin-transform-es2015-modules-commonjs","version":"6.2.0","description":"## Installation","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-commonjs"},"license":"MIT","main":"lib/index.js","dependencies":{"babel-types":"^6.2.0","babel-runtime":"^5.0.0","babel-template":"^6.2.0","babel-plugin-transform-strict-mode":"^6.2.0"},"keywords":["babel-plugin"],"devDependencies":{"babel-helper-plugin-test-runner":"^6.1.18"},"_id":"babel-plugin-transform-es2015-modules-commonjs@6.2.0","scripts":{},"_shasum":"ab689c5c5a4cf8b25b9a07b4c048e5e37c086213","_from":".","_npmVersion":"3.3.10","_nodeVersion":"4.1.0","_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"dist":{"shasum":"ab689c5c5a4cf8b25b9a07b4c048e5e37c086213","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.2.0.tgz"},"maintainers":[{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"thejameskyle","email":"me@thejameskyle.com"}],"directories":{}},"6.2.4":{"name":"babel-plugin-transform-es2015-modules-commonjs","version":"6.2.4","description":"## Installation","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-commonjs"},"license":"MIT","main":"lib/index.js","dependencies":{"babel-types":"^6.2.4","babel-runtime":"^5.0.0","babel-template":"^6.2.4","babel-plugin-transform-strict-mode":"^6.2.4"},"keywords":["babel-plugin"],"devDependencies":{"babel-helper-plugin-test-runner":"^6.2.4"},"_id":"babel-plugin-transform-es2015-modules-commonjs@6.2.4","scripts":{},"_shasum":"2ca4ede7a6c28c9419442bde28c02ed3f9cd0d59","_from":".","_npmVersion":"3.3.10","_nodeVersion":"4.1.0","_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"dist":{"shasum":"2ca4ede7a6c28c9419442bde28c02ed3f9cd0d59","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.2.4.tgz"},"maintainers":[{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"thejameskyle","email":"me@thejameskyle.com"}],"directories":{}},"6.3.13":{"name":"babel-plugin-transform-es2015-modules-commonjs","version":"6.3.13","description":"## Installation","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-commonjs"},"license":"MIT","main":"lib/index.js","dependencies":{"babel-types":"^6.3.13","babel-runtime":"^5.0.0","babel-template":"^6.3.13","babel-plugin-transform-strict-mode":"^6.3.13"},"keywords":["babel-plugin"],"devDependencies":{"babel-helper-plugin-test-runner":"^6.3.13"},"_id":"babel-plugin-transform-es2015-modules-commonjs@6.3.13","scripts":{},"_shasum":"82e9430bf84fcc248d5404c0a8026e64d0e8aefb","_from":".","_npmVersion":"3.3.10","_nodeVersion":"4.1.0","_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"dist":{"shasum":"82e9430bf84fcc248d5404c0a8026e64d0e8aefb","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.3.13.tgz"},"maintainers":[{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"jmm","email":"npm-public@jessemccarthy.net"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"thejameskyle","email":"me@thejameskyle.com"}],"directories":{}},"6.3.16":{"name":"babel-plugin-transform-es2015-modules-commonjs","version":"6.3.16","description":"## Installation","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-commonjs"},"license":"MIT","main":"lib/index.js","dependencies":{"babel-types":"^6.3.13","babel-runtime":"^5.0.0","babel-template":"^6.3.13","babel-plugin-transform-strict-mode":"^6.3.13"},"keywords":["babel-plugin"],"devDependencies":{"babel-helper-plugin-test-runner":"^6.3.13"},"_id":"babel-plugin-transform-es2015-modules-commonjs@6.3.16","scripts":{},"_shasum":"f6a913e47392ea61d6fc573713916befb6784788","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"f6a913e47392ea61d6fc573713916befb6784788","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.3.16.tgz"},"maintainers":[{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"jmm","email":"npm-public@jessemccarthy.net"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"thejameskyle","email":"me@thejameskyle.com"}],"directories":{}},"6.4.0":{"name":"babel-plugin-transform-es2015-modules-commonjs","version":"6.4.0","description":"## Installation","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-commonjs"},"license":"MIT","main":"lib/index.js","dependencies":{"babel-types":"^6.4.0","babel-runtime":"^5.0.0","babel-template":"^6.3.13","babel-plugin-transform-strict-mode":"^6.3.13"},"keywords":["babel-plugin"],"devDependencies":{"babel-helper-plugin-test-runner":"^6.3.13"},"_id":"babel-plugin-transform-es2015-modules-commonjs@6.4.0","scripts":{},"_shasum":"5ecf6334dfaa232b4d091cf9511d68712447a637","_from":".","_npmVersion":"3.5.2","_nodeVersion":"5.1.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"5ecf6334dfaa232b4d091cf9511d68712447a637","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.4.0.tgz"},"maintainers":[{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"jmm","email":"npm-public@jessemccarthy.net"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"thejameskyle","email":"me@thejameskyle.com"}],"directories":{}},"6.4.5":{"name":"babel-plugin-transform-es2015-modules-commonjs","version":"6.4.5","description":"## Installation","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-commonjs"},"license":"MIT","main":"lib/index.js","dependencies":{"babel-types":"^6.4.5","babel-runtime":"^5.0.0","babel-template":"^6.3.13","babel-plugin-transform-strict-mode":"^6.3.13"},"keywords":["babel-plugin"],"devDependencies":{"babel-helper-plugin-test-runner":"^6.3.13"},"_id":"babel-plugin-transform-es2015-modules-commonjs@6.4.5","scripts":{},"_shasum":"6960ac14e0b2b1f22021d13c396f16cb6d0a82d8","_from":".","_npmVersion":"3.5.2","_nodeVersion":"5.1.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"6960ac14e0b2b1f22021d13c396f16cb6d0a82d8","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.4.5.tgz"},"maintainers":[{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"jmm","email":"npm-public@jessemccarthy.net"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"thejameskyle","email":"me@thejameskyle.com"}],"directories":{}},"6.5.0":{"name":"babel-plugin-transform-es2015-modules-commonjs","version":"6.5.0","description":"## Installation","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-commonjs"},"license":"MIT","main":"lib/index.js","dependencies":{"babel-types":"^6.4.5","babel-runtime":"^5.0.0","babel-template":"^6.3.13","babel-plugin-transform-strict-mode":"^6.3.13"},"keywords":["babel-plugin"],"devDependencies":{"babel-helper-plugin-test-runner":"^6.3.13"},"_id":"babel-plugin-transform-es2015-modules-commonjs@6.5.0","scripts":{},"_shasum":"45533db197836c55fa233d4b6350c07eb306007f","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.1.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"45533db197836c55fa233d4b6350c07eb306007f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.5.0.tgz"},"maintainers":[{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"jmm","email":"npm-public@jessemccarthy.net"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"thejameskyle","email":"me@thejameskyle.com"}],"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/babel-plugin-transform-es2015-modules-commonjs-6.5.0.tgz_1454803657620_0.9344581284094602"},"directories":{}},"6.5.0-1":{"name":"babel-plugin-transform-es2015-modules-commonjs","version":"6.5.0-1","description":"## Installation","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-commonjs"},"license":"MIT","main":"lib/index.js","dependencies":{"babel-types":"^6.5.0-1","babel-runtime":"^5.0.0","babel-template":"^6.5.0-1","babel-plugin-transform-strict-mode":"^6.5.0-1"},"keywords":["babel-plugin"],"devDependencies":{"babel-helper-plugin-test-runner":"^6.5.0-1"},"_id":"babel-plugin-transform-es2015-modules-commonjs@6.5.0-1","scripts":{},"_shasum":"92e63434093784fb2b4bcbc0ffce4eeb36d7f137","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.1.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"92e63434093784fb2b4bcbc0ffce4eeb36d7f137","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.5.0-1.tgz"},"maintainers":[{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"jmm","email":"npm-public@jessemccarthy.net"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"thejameskyle","email":"me@thejameskyle.com"}],"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/babel-plugin-transform-es2015-modules-commonjs-6.5.0-1.tgz_1454812847019_0.5571105084381998"},"directories":{}},"6.5.2":{"name":"babel-plugin-transform-es2015-modules-commonjs","version":"6.5.2","description":"## Installation","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-commonjs"},"license":"MIT","main":"lib/index.js","dependencies":{"babel-types":"^6.5.2","babel-runtime":"^5.0.0","babel-template":"^6.3.13","babel-plugin-transform-strict-mode":"^6.5.2"},"keywords":["babel-plugin"],"devDependencies":{"babel-helper-plugin-test-runner":"^6.3.13"},"_id":"babel-plugin-transform-es2015-modules-commonjs@6.5.2","scripts":{},"_shasum":"2f65e0d17ee006aa589bed06f0fc1ce06e4239e4","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.1.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"2f65e0d17ee006aa589bed06f0fc1ce06e4239e4","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.5.2.tgz"},"maintainers":[{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"jmm","email":"npm-public@jessemccarthy.net"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"thejameskyle","email":"me@thejameskyle.com"}],"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/babel-plugin-transform-es2015-modules-commonjs-6.5.2.tgz_1455294611047_0.824889381416142"},"directories":{}},"6.6.0":{"name":"babel-plugin-transform-es2015-modules-commonjs","version":"6.6.0","description":"## Installation","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-commonjs"},"license":"MIT","main":"lib/index.js","dependencies":{"babel-types":"^6.6.0","babel-runtime":"^5.0.0","babel-template":"^6.6.0","babel-plugin-transform-strict-mode":"^6.5.2"},"keywords":["babel-plugin"],"devDependencies":{"babel-helper-plugin-test-runner":"^6.3.13"},"_id":"babel-plugin-transform-es2015-modules-commonjs@6.6.0","scripts":{},"_shasum":"0079ca0e69a587dbfa5ddf9b4a9f887ff00b7bee","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.1.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"0079ca0e69a587dbfa5ddf9b4a9f887ff00b7bee","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.6.0.tgz"},"maintainers":[{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"jmm","email":"npm-public@jessemccarthy.net"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"thejameskyle","email":"me@thejameskyle.com"}],"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/babel-plugin-transform-es2015-modules-commonjs-6.6.0.tgz_1456780365047_0.6449868825729936"},"directories":{}},"6.6.2":{"name":"babel-plugin-transform-es2015-modules-commonjs","version":"6.6.2","description":"## Installation","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-commonjs"},"license":"MIT","main":"lib/index.js","dependencies":{"babel-types":"^6.6.0","babel-runtime":"^5.0.0","babel-template":"^6.6.0","babel-plugin-transform-strict-mode":"^6.5.2"},"keywords":["babel-plugin"],"devDependencies":{"babel-helper-plugin-test-runner":"^6.3.13"},"_id":"babel-plugin-transform-es2015-modules-commonjs@6.6.2","scripts":{},"_shasum":"6fe4abba8d0d7bc41fe25f0ccd18e8f26da70791","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.1.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"6fe4abba8d0d7bc41fe25f0ccd18e8f26da70791","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.6.2.tgz"},"maintainers":[{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"jmm","email":"npm-public@jessemccarthy.net"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"thejameskyle","email":"me@thejameskyle.com"}],"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/babel-plugin-transform-es2015-modules-commonjs-6.6.2.tgz_1456841317211_0.3891358715482056"},"directories":{}},"6.6.3":{"name":"babel-plugin-transform-es2015-modules-commonjs","version":"6.6.3","description":"## Installation","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-commonjs"},"license":"MIT","main":"lib/index.js","dependencies":{"babel-types":"^6.6.0","babel-runtime":"^5.0.0","babel-template":"^6.6.0","babel-plugin-transform-strict-mode":"^6.5.2"},"keywords":["babel-plugin"],"devDependencies":{"babel-helper-plugin-test-runner":"^6.3.13"},"_id":"babel-plugin-transform-es2015-modules-commonjs@6.6.3","scripts":{},"_shasum":"8da82c1688185638669fb520c9b91387a2ae414d","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.1.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"8da82c1688185638669fb520c9b91387a2ae414d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.6.3.tgz"},"maintainers":[{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"jmm","email":"npm-public@jessemccarthy.net"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"thejameskyle","email":"me@thejameskyle.com"}],"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/babel-plugin-transform-es2015-modules-commonjs-6.6.3.tgz_1456850450675_0.5643776727374643"},"directories":{}},"6.6.4":{"name":"babel-plugin-transform-es2015-modules-commonjs","version":"6.6.4","description":"## Installation","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-commonjs"},"license":"MIT","main":"lib/index.js","dependencies":{"babel-types":"^6.6.4","babel-runtime":"^5.0.0","babel-template":"^6.6.4","babel-plugin-transform-strict-mode":"^6.6.4"},"keywords":["babel-plugin"],"devDependencies":{"babel-helper-plugin-test-runner":"^6.3.13"},"_id":"babel-plugin-transform-es2015-modules-commonjs@6.6.4","scripts":{},"_shasum":"ab060326947dc32235b6b971ec08e1de06b3d0fc","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.1.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"ab060326947dc32235b6b971ec08e1de06b3d0fc","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.6.4.tgz"},"maintainers":[{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"jmm","email":"npm-public@jessemccarthy.net"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"thejameskyle","email":"me@thejameskyle.com"}],"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/babel-plugin-transform-es2015-modules-commonjs-6.6.4.tgz_1456954183275_0.3467087959870696"},"directories":{}},"6.6.5":{"name":"babel-plugin-transform-es2015-modules-commonjs","version":"6.6.5","description":"## Installation","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-commonjs"},"license":"MIT","main":"lib/index.js","dependencies":{"babel-types":"^6.6.5","babel-runtime":"^5.0.0","babel-template":"^6.6.5","babel-plugin-transform-strict-mode":"^6.6.5"},"keywords":["babel-plugin"],"devDependencies":{"babel-helper-plugin-test-runner":"^6.3.13"},"_id":"babel-plugin-transform-es2015-modules-commonjs@6.6.5","scripts":{},"_shasum":"83fd915305809b99627a7b98072b3cb700a41423","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.1.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"83fd915305809b99627a7b98072b3cb700a41423","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.6.5.tgz"},"maintainers":[{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"jmm","email":"npm-public@jessemccarthy.net"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"thejameskyle","email":"me@thejameskyle.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/babel-plugin-transform-es2015-modules-commonjs-6.6.5.tgz_1457133413922_0.6556892360094935"},"directories":{}},"6.7.0":{"name":"babel-plugin-transform-es2015-modules-commonjs","version":"6.7.0","description":"## Installation","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-commonjs"},"license":"MIT","main":"lib/index.js","dependencies":{"babel-types":"^6.7.0","babel-runtime":"^5.0.0","babel-template":"^6.7.0","babel-plugin-transform-strict-mode":"^6.6.5"},"keywords":["babel-plugin"],"devDependencies":{"babel-helper-plugin-test-runner":"^6.3.13"},"_id":"babel-plugin-transform-es2015-modules-commonjs@6.7.0","scripts":{},"_shasum":"6a141940c8e0c3fce7d010444b52c1a9753f6fdc","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.5.0","_npmUser":{"name":"amasad","email":"amjad.masad@gmail.com"},"maintainers":[{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"jmm","email":"npm-public@jessemccarthy.net"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"thejameskyle","email":"me@thejameskyle.com"}],"dist":{"shasum":"6a141940c8e0c3fce7d010444b52c1a9753f6fdc","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.7.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/babel-plugin-transform-es2015-modules-commonjs-6.7.0.tgz_1457484781500_0.6568124517798424"},"directories":{}},"6.7.4":{"name":"babel-plugin-transform-es2015-modules-commonjs","version":"6.7.4","description":"## Installation","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-commonjs"},"license":"MIT","main":"lib/index.js","dependencies":{"babel-types":"^6.7.0","babel-runtime":"^5.0.0","babel-template":"^6.7.0","babel-plugin-transform-strict-mode":"^6.6.5"},"keywords":["babel-plugin"],"devDependencies":{"babel-helper-plugin-test-runner":"^6.3.13"},"_id":"babel-plugin-transform-es2015-modules-commonjs@6.7.4","scripts":{},"_shasum":"df65f39cdd1f5ce442cee63e676467a6e5916e46","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.9.0","_npmUser":{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},"dist":{"shasum":"df65f39cdd1f5ce442cee63e676467a6e5916e46","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.7.4.tgz"},"maintainers":[{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"jmm","email":"npm-public@jessemccarthy.net"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"thejameskyle","email":"me@thejameskyle.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/babel-plugin-transform-es2015-modules-commonjs-6.7.4.tgz_1458704268265_0.5137617473956198"},"directories":{}},"6.7.7":{"name":"babel-plugin-transform-es2015-modules-commonjs","version":"6.7.7","description":"## Installation","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-commonjs"},"license":"MIT","main":"lib/index.js","dependencies":{"babel-types":"^6.7.7","babel-runtime":"^5.0.0","babel-template":"^6.7.0","babel-plugin-transform-strict-mode":"^6.6.5"},"keywords":["babel-plugin"],"devDependencies":{"babel-helper-plugin-test-runner":"^6.3.13"},"_id":"babel-plugin-transform-es2015-modules-commonjs@6.7.7","scripts":{},"_shasum":"fa5ca2016617c4d712123d8cfc15787fcaa83f33","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.9.0","_npmUser":{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},"dist":{"shasum":"fa5ca2016617c4d712123d8cfc15787fcaa83f33","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.7.7.tgz"},"maintainers":[{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"jmm","email":"npm-public@jessemccarthy.net"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"thejameskyle","email":"me@thejameskyle.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/babel-plugin-transform-es2015-modules-commonjs-6.7.7.tgz_1461208166258_0.6353275619912893"},"directories":{}},"6.8.0":{"name":"babel-plugin-transform-es2015-modules-commonjs","version":"6.8.0","description":"## Installation","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-commonjs"},"license":"MIT","main":"lib/index.js","dependencies":{"babel-types":"^6.8.0","babel-runtime":"^6.0.0","babel-template":"^6.8.0","babel-plugin-transform-strict-mode":"^6.8.0"},"keywords":["babel-plugin"],"devDependencies":{"babel-helper-plugin-test-runner":"^6.8.0"},"_id":"babel-plugin-transform-es2015-modules-commonjs@6.8.0","scripts":{},"_shasum":"69cf172ae5169004212c470d119dc846c8417111","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.1.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"maintainers":[{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"jmm","email":"npm-public@jessemccarthy.net"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"thejameskyle","email":"me@thejameskyle.com"}],"dist":{"shasum":"69cf172ae5169004212c470d119dc846c8417111","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.8.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/babel-plugin-transform-es2015-modules-commonjs-6.8.0.tgz_1462232683505_0.571571517502889"},"directories":{}},"6.10.3":{"name":"babel-plugin-transform-es2015-modules-commonjs","version":"6.10.3","description":"## Installation","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-commonjs"},"license":"MIT","main":"lib/index.js","dependencies":{"babel-types":"^6.8.0","babel-runtime":"^6.0.0","babel-template":"^6.8.0","babel-plugin-transform-strict-mode":"^6.8.0"},"keywords":["babel-plugin"],"devDependencies":{"babel-helper-plugin-test-runner":"^6.8.0"},"_id":"babel-plugin-transform-es2015-modules-commonjs@6.10.3","scripts":{},"_shasum":"e4993a455518ca1a3c580bfda35c074e40659c5f","_from":".","_npmVersion":"3.9.3","_nodeVersion":"5.9.0","_npmUser":{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},"dist":{"shasum":"e4993a455518ca1a3c580bfda35c074e40659c5f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.10.3.tgz"},"maintainers":[{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"jmm","email":"npm-public@jessemccarthy.net"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"thejameskyle","email":"me@thejameskyle.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/babel-plugin-transform-es2015-modules-commonjs-6.10.3.tgz_1466294123652_0.026213242206722498"},"directories":{}},"6.11.5":{"name":"babel-plugin-transform-es2015-modules-commonjs","version":"6.11.5","description":"## Installation","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-commonjs"},"license":"MIT","main":"lib/index.js","dependencies":{"babel-types":"^6.8.0","babel-runtime":"^6.0.0","babel-template":"^6.8.0","babel-plugin-transform-strict-mode":"^6.8.0"},"keywords":["babel-plugin"],"devDependencies":{"babel-helper-plugin-test-runner":"^6.8.0"},"_id":"babel-plugin-transform-es2015-modules-commonjs@6.11.5","scripts":{},"_shasum":"202580c24f286359eade67685bef6e2c6416558a","_from":".","_npmVersion":"3.10.3","_nodeVersion":"5.11.1","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"202580c24f286359eade67685bef6e2c6416558a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.11.5.tgz"},"maintainers":[{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"jmm","email":"npm-public@jessemccarthy.net"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"thejameskyle","email":"me@thejameskyle.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/babel-plugin-transform-es2015-modules-commonjs-6.11.5.tgz_1469297376676_0.24791962816379964"},"directories":{}},"6.14.0":{"name":"babel-plugin-transform-es2015-modules-commonjs","version":"6.14.0","description":"## Installation","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-commonjs"},"license":"MIT","main":"lib/index.js","dependencies":{"babel-types":"^6.14.0","babel-runtime":"^6.0.0","babel-template":"^6.14.0","babel-plugin-transform-strict-mode":"^6.8.0"},"keywords":["babel-plugin"],"devDependencies":{"babel-helper-plugin-test-runner":"^6.8.0"},"_id":"babel-plugin-transform-es2015-modules-commonjs@6.14.0","scripts":{},"_shasum":"db731640c67ea6ebaecf90eb9cdabddb584aeb36","_from":".","_npmVersion":"3.10.6","_nodeVersion":"5.11.1","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"db731640c67ea6ebaecf90eb9cdabddb584aeb36","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.14.0.tgz"},"maintainers":[{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"jmm","email":"npm-public@jessemccarthy.net"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"thejameskyle","email":"me@thejameskyle.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/babel-plugin-transform-es2015-modules-commonjs-6.14.0.tgz_1472082052198_0.9494435493834317"},"directories":{}},"6.16.0":{"name":"babel-plugin-transform-es2015-modules-commonjs","version":"6.16.0","description":"## Installation","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-commonjs"},"license":"MIT","main":"lib/index.js","dependencies":{"babel-types":"^6.16.0","babel-runtime":"^6.0.0","babel-template":"^6.16.0","babel-plugin-transform-strict-mode":"^6.8.0"},"keywords":["babel-plugin"],"devDependencies":{"babel-helper-plugin-test-runner":"^6.8.0"},"_id":"babel-plugin-transform-es2015-modules-commonjs@6.16.0","scripts":{},"_shasum":"0a34b447bc88ad1a70988b6d199cca6d0b96c892","_from":".","_npmVersion":"3.10.8","_nodeVersion":"5.11.1","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"0a34b447bc88ad1a70988b6d199cca6d0b96c892","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.16.0.tgz"},"maintainers":[{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"jmm","email":"npm-public@jessemccarthy.net"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"thejameskyle","email":"me@thejameskyle.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/babel-plugin-transform-es2015-modules-commonjs-6.16.0.tgz_1475091535069_0.8150298991240561"},"directories":{}},"6.18.0":{"name":"babel-plugin-transform-es2015-modules-commonjs","version":"6.18.0","description":"This plugin transforms ES2015 modules to CommonJS","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-commonjs"},"license":"MIT","main":"lib/index.js","dependencies":{"babel-types":"^6.18.0","babel-runtime":"^6.0.0","babel-template":"^6.16.0","babel-plugin-transform-strict-mode":"^6.18.0"},"keywords":["babel-plugin"],"devDependencies":{"babel-helper-plugin-test-runner":"^6.18.0"},"_id":"babel-plugin-transform-es2015-modules-commonjs@6.18.0","scripts":{},"_shasum":"c15ae5bb11b32a0abdcc98a5837baa4ee8d67bcc","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"c15ae5bb11b32a0abdcc98a5837baa4ee8d67bcc","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.18.0.tgz"},"maintainers":[{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"jmm","email":"npm-public@jessemccarthy.net"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"thejameskyle","email":"me@thejameskyle.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/babel-plugin-transform-es2015-modules-commonjs-6.18.0.tgz_1477343943859_0.9435359409544617"},"directories":{}},"6.22.0":{"name":"babel-plugin-transform-es2015-modules-commonjs","version":"6.22.0","description":"This plugin transforms ES2015 modules to CommonJS","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-commonjs"},"license":"MIT","main":"lib/index.js","dependencies":{"babel-types":"^6.22.0","babel-runtime":"^6.22.0","babel-template":"^6.22.0","babel-plugin-transform-strict-mode":"^6.22.0"},"keywords":["babel-plugin"],"devDependencies":{"babel-helper-plugin-test-runner":"^6.22.0"},"_id":"babel-plugin-transform-es2015-modules-commonjs@6.22.0","scripts":{},"_shasum":"6ca04e22b8e214fb50169730657e7a07dc941145","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"6ca04e22b8e214fb50169730657e7a07dc941145","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.22.0.tgz"},"maintainers":[{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"jmm","email":"npm-public@jessemccarthy.net"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"thejameskyle","email":"me@thejameskyle.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/babel-plugin-transform-es2015-modules-commonjs-6.22.0.tgz_1484872435488_0.1972669877577573"},"directories":{}},"6.23.0":{"name":"babel-plugin-transform-es2015-modules-commonjs","version":"6.23.0","description":"This plugin transforms ES2015 modules to CommonJS","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-commonjs"},"license":"MIT","main":"lib/index.js","dependencies":{"babel-types":"^6.23.0","babel-runtime":"^6.22.0","babel-template":"^6.23.0","babel-plugin-transform-strict-mode":"^6.22.0"},"keywords":["babel-plugin"],"devDependencies":{"babel-helper-plugin-test-runner":"^6.22.0"},"_id":"babel-plugin-transform-es2015-modules-commonjs@6.23.0","scripts":{},"_shasum":"cba7aa6379fb7ec99250e6d46de2973aaffa7b92","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},"dist":{"shasum":"cba7aa6379fb7ec99250e6d46de2973aaffa7b92","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.23.0.tgz"},"maintainers":[{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"jmm","email":"npm-public@jessemccarthy.net"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"thejameskyle","email":"me@thejameskyle.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/babel-plugin-transform-es2015-modules-commonjs-6.23.0.tgz_1487034864942_0.8048613369464874"},"directories":{}},"7.0.0-alpha.1":{"name":"babel-plugin-transform-es2015-modules-commonjs","version":"7.0.0-alpha.1","description":"This plugin transforms ES2015 modules to CommonJS","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-commonjs"},"license":"MIT","main":"lib/index.js","dependencies":{"babel-types":"7.0.0-alpha.1","babel-template":"7.0.0-alpha.1","babel-plugin-transform-strict-mode":"7.0.0-alpha.1"},"keywords":["babel-plugin"],"devDependencies":{"babel-helper-plugin-test-runner":"7.0.0-alpha.1"},"_id":"babel-plugin-transform-es2015-modules-commonjs@7.0.0-alpha.1","scripts":{},"_shasum":"ff6f036af74337cc64a9bb661e16563d551c9cd8","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"ff6f036af74337cc64a9bb661e16563d551c9cd8","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-7.0.0-alpha.1.tgz"},"maintainers":[{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"jmm","email":"npm-public@jessemccarthy.net"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"thejameskyle","email":"me@thejameskyle.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/babel-plugin-transform-es2015-modules-commonjs-7.0.0-alpha.1.tgz_1488488747672_0.6992042113561183"},"directories":{}},"6.24.0":{"name":"babel-plugin-transform-es2015-modules-commonjs","version":"6.24.0","description":"This plugin transforms ES2015 modules to CommonJS","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-commonjs"},"license":"MIT","main":"lib/index.js","dependencies":{"babel-types":"^6.23.0","babel-runtime":"^6.22.0","babel-template":"^6.23.0","babel-plugin-transform-strict-mode":"^6.22.0"},"keywords":["babel-plugin"],"devDependencies":{"babel-helper-plugin-test-runner":"^6.24.0"},"_id":"babel-plugin-transform-es2015-modules-commonjs@6.24.0","scripts":{},"_shasum":"e921aefb72c2cc26cb03d107626156413222134f","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"e921aefb72c2cc26cb03d107626156413222134f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.24.0.tgz"},"maintainers":[{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"jmm","email":"npm-public@jessemccarthy.net"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"thejameskyle","email":"me@thejameskyle.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/babel-plugin-transform-es2015-modules-commonjs-6.24.0.tgz_1489371493383_0.6962805707007647"},"directories":{}},"7.0.0-alpha.3":{"name":"babel-plugin-transform-es2015-modules-commonjs","version":"7.0.0-alpha.3","description":"This plugin transforms ES2015 modules to CommonJS","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-commonjs"},"license":"MIT","main":"lib/index.js","dependencies":{"babel-types":"7.0.0-alpha.3","babel-template":"7.0.0-alpha.3","babel-plugin-transform-strict-mode":"7.0.0-alpha.3"},"keywords":["babel-plugin"],"devDependencies":{"babel-helper-plugin-test-runner":"7.0.0-alpha.3"},"_id":"babel-plugin-transform-es2015-modules-commonjs@7.0.0-alpha.3","scripts":{},"_shasum":"9d5b06621da4f6f665345d4ecc86084f74f608ce","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"9d5b06621da4f6f665345d4ecc86084f74f608ce","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-7.0.0-alpha.3.tgz"},"maintainers":[{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"jmm","email":"npm-public@jessemccarthy.net"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"thejameskyle","email":"me@thejameskyle.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/babel-plugin-transform-es2015-modules-commonjs-7.0.0-alpha.3.tgz_1490298586842_0.671215936075896"},"directories":{}},"7.0.0-alpha.7":{"name":"babel-plugin-transform-es2015-modules-commonjs","version":"7.0.0-alpha.7","description":"This plugin transforms ES2015 modules to CommonJS","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-commonjs"},"license":"MIT","main":"lib/index.js","dependencies":{"babel-types":"7.0.0-alpha.7","babel-template":"7.0.0-alpha.7","babel-plugin-transform-strict-mode":"7.0.0-alpha.7"},"keywords":["babel-plugin"],"devDependencies":{"babel-helper-plugin-test-runner":"7.0.0-alpha.7"},"_id":"babel-plugin-transform-es2015-modules-commonjs@7.0.0-alpha.7","scripts":{},"_shasum":"8980ff65ada36f8853950878c80e1ca4d1188e90","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"8980ff65ada36f8853950878c80e1ca4d1188e90","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-7.0.0-alpha.7.tgz"},"maintainers":[{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"jmm","email":"npm-public@jessemccarthy.net"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"thejameskyle","email":"me@thejameskyle.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/babel-plugin-transform-es2015-modules-commonjs-7.0.0-alpha.7.tgz_1491426859173_0.9871676738839597"},"directories":{}},"6.24.1":{"name":"babel-plugin-transform-es2015-modules-commonjs","version":"6.24.1","description":"This plugin transforms ES2015 modules to CommonJS","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-commonjs"},"license":"MIT","main":"lib/index.js","dependencies":{"babel-types":"^6.24.1","babel-runtime":"^6.22.0","babel-template":"^6.24.1","babel-plugin-transform-strict-mode":"^6.24.1"},"keywords":["babel-plugin"],"devDependencies":{"babel-helper-plugin-test-runner":"^6.24.1"},"_id":"babel-plugin-transform-es2015-modules-commonjs@6.24.1","scripts":{},"_shasum":"d3e310b40ef664a36622200097c6d440298f2bfe","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"d3e310b40ef664a36622200097c6d440298f2bfe","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.24.1.tgz"},"maintainers":[{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"jmm","email":"npm-public@jessemccarthy.net"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"thejameskyle","email":"me@thejameskyle.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/babel-plugin-transform-es2015-modules-commonjs-6.24.1.tgz_1491578363633_0.09244706737808883"},"directories":{}},"7.0.0-alpha.8":{"name":"babel-plugin-transform-es2015-modules-commonjs","version":"7.0.0-alpha.8","description":"This plugin transforms ES2015 modules to CommonJS","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-commonjs"},"license":"MIT","main":"lib/index.js","dependencies":{"babel-types":"7.0.0-alpha.7","babel-template":"7.0.0-alpha.8","babel-plugin-transform-strict-mode":"7.0.0-alpha.8"},"keywords":["babel-plugin"],"devDependencies":{"babel-helper-plugin-test-runner":"7.0.0-alpha.8"},"_id":"babel-plugin-transform-es2015-modules-commonjs@7.0.0-alpha.8","scripts":{},"_shasum":"e86f997a8c36fb2d2f6641fd20903087929d5e91","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"e86f997a8c36fb2d2f6641fd20903087929d5e91","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-7.0.0-alpha.8.tgz"},"maintainers":[{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"jmm","email":"npm-public@jessemccarthy.net"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"thejameskyle","email":"me@thejameskyle.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/babel-plugin-transform-es2015-modules-commonjs-7.0.0-alpha.8.tgz_1492456394420_0.12713758880272508"},"directories":{}},"7.0.0-alpha.9":{"name":"babel-plugin-transform-es2015-modules-commonjs","version":"7.0.0-alpha.9","description":"This plugin transforms ES2015 modules to CommonJS","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-commonjs"},"license":"MIT","main":"lib/index.js","dependencies":{"babel-types":"7.0.0-alpha.9","babel-template":"7.0.0-alpha.9","babel-plugin-transform-strict-mode":"7.0.0-alpha.9"},"keywords":["babel-plugin"],"devDependencies":{"babel-helper-plugin-test-runner":"7.0.0-alpha.9"},"_id":"babel-plugin-transform-es2015-modules-commonjs@7.0.0-alpha.9","scripts":{},"_shasum":"590b1461aadbe0247498f93185f54e1ac4914a0a","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"590b1461aadbe0247498f93185f54e1ac4914a0a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-7.0.0-alpha.9.tgz"},"maintainers":[{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"jmm","email":"npm-public@jessemccarthy.net"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"thejameskyle","email":"me@thejameskyle.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/babel-plugin-transform-es2015-modules-commonjs-7.0.0-alpha.9.tgz_1492526540412_0.8503708995413035"},"directories":{}},"7.0.0-alpha.10":{"name":"babel-plugin-transform-es2015-modules-commonjs","version":"7.0.0-alpha.10","description":"This plugin transforms ES2015 modules to CommonJS","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-commonjs"},"license":"MIT","main":"lib/index.js","dependencies":{"babel-types":"7.0.0-alpha.10","babel-template":"7.0.0-alpha.10","babel-plugin-transform-strict-mode":"7.0.0-alpha.10"},"keywords":["babel-plugin"],"devDependencies":{"babel-helper-plugin-test-runner":"7.0.0-alpha.10"},"_id":"babel-plugin-transform-es2015-modules-commonjs@7.0.0-alpha.10","scripts":{},"_shasum":"df396b09d461730ecb71ec17786430752f927043","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"df396b09d461730ecb71ec17786430752f927043","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-7.0.0-alpha.10.tgz"},"maintainers":[{"email":"daniel@tschinder.de","name":"danez"},{"email":"hi@henryzoo.com","name":"hzoo"},{"email":"loganfsmyth@gmail.com","name":"loganfsmyth"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/babel-plugin-transform-es2015-modules-commonjs-7.0.0-alpha.10.tgz_1495739865302_0.21141674113459885"},"directories":{}},"7.0.0-alpha.11":{"name":"babel-plugin-transform-es2015-modules-commonjs","version":"7.0.0-alpha.11","description":"This plugin transforms ES2015 modules to CommonJS","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-commonjs"},"license":"MIT","main":"lib/index.js","dependencies":{"babel-plugin-transform-strict-mode":"7.0.0-alpha.11","babel-template":"7.0.0-alpha.11","babel-types":"7.0.0-alpha.11"},"keywords":["babel-plugin"],"devDependencies":{"babel-helper-plugin-test-runner":"7.0.0-alpha.11"},"_id":"babel-plugin-transform-es2015-modules-commonjs@7.0.0-alpha.11","_npmVersion":"5.0.0","_nodeVersion":"6.9.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"integrity":"sha512-0nTBGaWRFyrVpoaSknheKVYn4qt5RE+K0vDqMJwP8fFPumntR8mvBCMRbOIyv08P2oCguLghn+KXe115ZHkUeg==","shasum":"e3748c25e0c282a6a2aad4b06b748924658c4ff0","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-7.0.0-alpha.11.tgz"},"maintainers":[{"email":"sebmck@gmail.com","name":"sebmck"},{"email":"daniel@tschinder.de","name":"danez"},{"email":"hi@henryzoo.com","name":"hzoo"},{"email":"loganfsmyth@gmail.com","name":"loganfsmyth"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/babel-plugin-transform-es2015-modules-commonjs-7.0.0-alpha.11.tgz_1496263435314_0.6661128480918705"},"directories":{}},"7.0.0-alpha.12":{"name":"babel-plugin-transform-es2015-modules-commonjs","version":"7.0.0-alpha.12","description":"This plugin transforms ES2015 modules to CommonJS","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-commonjs"},"license":"MIT","main":"lib/index.js","dependencies":{"babel-plugin-transform-strict-mode":"7.0.0-alpha.12","babel-template":"7.0.0-alpha.12","babel-types":"7.0.0-alpha.12"},"keywords":["babel-plugin"],"devDependencies":{"babel-helper-plugin-test-runner":"7.0.0-alpha.12"},"_id":"babel-plugin-transform-es2015-modules-commonjs@7.0.0-alpha.12","_npmVersion":"5.0.0","_nodeVersion":"6.9.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"integrity":"sha512-HfR1Ajesv1dY7L6XRtC/7m95hgoYaYVMkq2aUcdJK9HTq0opfp9gwxIuBcoy7fLE03cHPRIMg3V8wkAqiCYGFQ==","shasum":"73441a8dfa0e48c17ce02afae95444d996dde2cb","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-7.0.0-alpha.12.tgz"},"maintainers":[{"email":"sebmck@gmail.com","name":"sebmck"},{"email":"daniel@tschinder.de","name":"danez"},{"email":"hi@henryzoo.com","name":"hzoo"},{"email":"loganfsmyth@gmail.com","name":"loganfsmyth"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/babel-plugin-transform-es2015-modules-commonjs-7.0.0-alpha.12.tgz_1496265131257_0.39762512035667896"},"directories":{}},"7.0.0-alpha.14":{"name":"babel-plugin-transform-es2015-modules-commonjs","version":"7.0.0-alpha.14","description":"This plugin transforms ES2015 modules to CommonJS","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-commonjs"},"license":"MIT","main":"lib/index.js","dependencies":{"babel-plugin-transform-strict-mode":"7.0.0-alpha.14","babel-template":"7.0.0-alpha.14","babel-types":"7.0.0-alpha.14"},"keywords":["babel-plugin"],"devDependencies":{"babel-helper-plugin-test-runner":"7.0.0-alpha.14","babel-plugin-syntax-object-rest-spread":"7.0.0-alpha.14"},"_id":"babel-plugin-transform-es2015-modules-commonjs@7.0.0-alpha.14","scripts":{},"_shasum":"1cd9341139da25e71ed71a88f84080a362b45871","_from":".","_npmVersion":"4.6.1","_nodeVersion":"6.9.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"1cd9341139da25e71ed71a88f84080a362b45871","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-7.0.0-alpha.14.tgz"},"maintainers":[{"email":"sebmck@gmail.com","name":"sebmck"},{"email":"daniel@tschinder.de","name":"danez"},{"email":"hi@henryzoo.com","name":"hzoo"},{"email":"loganfsmyth@gmail.com","name":"loganfsmyth"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/babel-plugin-transform-es2015-modules-commonjs-7.0.0-alpha.14.tgz_1499828044165_0.44070198852568865"},"directories":{}},"7.0.0-alpha.15":{"name":"babel-plugin-transform-es2015-modules-commonjs","version":"7.0.0-alpha.15","description":"This plugin transforms ES2015 modules to CommonJS","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-commonjs"},"license":"MIT","main":"lib/index.js","dependencies":{"babel-plugin-transform-strict-mode":"7.0.0-alpha.15","babel-template":"7.0.0-alpha.15","babel-types":"7.0.0-alpha.15"},"keywords":["babel-plugin"],"devDependencies":{"babel-helper-plugin-test-runner":"7.0.0-alpha.15","babel-plugin-syntax-object-rest-spread":"7.0.0-alpha.15"},"_id":"babel-plugin-transform-es2015-modules-commonjs@7.0.0-alpha.15","scripts":{},"_shasum":"6d65506527ea239ab8447629fdd57fb14b061775","_from":".","_npmVersion":"4.6.1","_nodeVersion":"6.9.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"6d65506527ea239ab8447629fdd57fb14b061775","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-7.0.0-alpha.15.tgz"},"maintainers":[{"email":"sebmck@gmail.com","name":"sebmck"},{"email":"daniel@tschinder.de","name":"danez"},{"email":"hi@henryzoo.com","name":"hzoo"},{"email":"loganfsmyth@gmail.com","name":"loganfsmyth"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/babel-plugin-transform-es2015-modules-commonjs-7.0.0-alpha.15.tgz_1499830579085_0.8490814415272325"},"directories":{}},"7.0.0-alpha.16":{"name":"babel-plugin-transform-es2015-modules-commonjs","version":"7.0.0-alpha.16","description":"This plugin transforms ES2015 modules to CommonJS","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-commonjs"},"license":"MIT","main":"lib/index.js","dependencies":{"babel-plugin-transform-strict-mode":"7.0.0-alpha.16","babel-template":"7.0.0-alpha.16","babel-types":"7.0.0-alpha.16"},"keywords":["babel-plugin"],"devDependencies":{"babel-helper-plugin-test-runner":"7.0.0-alpha.16","babel-plugin-syntax-object-rest-spread":"7.0.0-alpha.16"},"_id":"babel-plugin-transform-es2015-modules-commonjs@7.0.0-alpha.16","scripts":{},"_shasum":"e5467bab7fa802224901a7b12baafac9b2f88f29","_from":".","_npmVersion":"4.6.1","_nodeVersion":"6.9.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"e5467bab7fa802224901a7b12baafac9b2f88f29","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-7.0.0-alpha.16.tgz"},"maintainers":[{"email":"sebmck@gmail.com","name":"sebmck"},{"email":"daniel@tschinder.de","name":"danez"},{"email":"hi@henryzoo.com","name":"hzoo"},{"email":"loganfsmyth@gmail.com","name":"loganfsmyth"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/babel-plugin-transform-es2015-modules-commonjs-7.0.0-alpha.16.tgz_1501017494108_0.02537794760428369"},"directories":{}},"7.0.0-alpha.17":{"name":"babel-plugin-transform-es2015-modules-commonjs","version":"7.0.0-alpha.17","description":"This plugin transforms ES2015 modules to CommonJS","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-commonjs"},"license":"MIT","main":"lib/index.js","dependencies":{"babel-plugin-transform-strict-mode":"7.0.0-alpha.17","babel-template":"7.0.0-alpha.17","babel-types":"7.0.0-alpha.17"},"keywords":["babel-plugin"],"devDependencies":{"babel-helper-plugin-test-runner":"7.0.0-alpha.17","babel-plugin-syntax-object-rest-spread":"7.0.0-alpha.17"},"_id":"babel-plugin-transform-es2015-modules-commonjs@7.0.0-alpha.17","scripts":{},"_shasum":"b32f5f18fb6ab249f7207e129d05499990f93000","_from":".","_npmVersion":"4.6.1","_nodeVersion":"6.9.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"b32f5f18fb6ab249f7207e129d05499990f93000","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-7.0.0-alpha.17.tgz"},"maintainers":[{"email":"sebmck@gmail.com","name":"sebmck"},{"email":"daniel@tschinder.de","name":"danez"},{"email":"hi@henryzoo.com","name":"hzoo"},{"email":"loganfsmyth@gmail.com","name":"loganfsmyth"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/babel-plugin-transform-es2015-modules-commonjs-7.0.0-alpha.17.tgz_1501072786180_0.9841387167107314"},"directories":{}},"7.0.0-alpha.18":{"name":"babel-plugin-transform-es2015-modules-commonjs","version":"7.0.0-alpha.18","description":"This plugin transforms ES2015 modules to CommonJS","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-commonjs"},"license":"MIT","main":"lib/index.js","dependencies":{"babel-plugin-transform-strict-mode":"7.0.0-alpha.18","babel-template":"7.0.0-alpha.18","babel-types":"7.0.0-alpha.18"},"keywords":["babel-plugin"],"devDependencies":{"babel-helper-plugin-test-runner":"7.0.0-alpha.18","babel-plugin-syntax-object-rest-spread":"7.0.0-alpha.18"},"_id":"babel-plugin-transform-es2015-modules-commonjs@7.0.0-alpha.18","_npmVersion":"5.3.0","_nodeVersion":"8.1.4","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"integrity":"sha512-POpX8WQPHsLLzMT7z6C9kUm/PGS4ir6WEgckF9hl6vXMdQQQiB5Mkt2UDNVQODNHipnKeVDsSv/jEdu4lZacrQ==","shasum":"86548d8aaf15ee5b1bdb489df04591921c8ee7eb","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-7.0.0-alpha.18.tgz"},"maintainers":[{"email":"me@thejameskyle.com","name":"thejameskyle"},{"email":"sebmck@gmail.com","name":"sebmck"},{"email":"daniel@tschinder.de","name":"danez"},{"email":"hi@henryzoo.com","name":"hzoo"},{"email":"loganfsmyth@gmail.com","name":"loganfsmyth"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/babel-plugin-transform-es2015-modules-commonjs-7.0.0-alpha.18.tgz_1501798882892_0.2881762266624719"},"directories":{}},"7.0.0-alpha.19":{"name":"babel-plugin-transform-es2015-modules-commonjs","version":"7.0.0-alpha.19","description":"This plugin transforms ES2015 modules to CommonJS","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-commonjs"},"license":"MIT","main":"lib/index.js","dependencies":{"babel-plugin-transform-strict-mode":"7.0.0-alpha.19","babel-template":"7.0.0-alpha.19","babel-types":"7.0.0-alpha.19"},"keywords":["babel-plugin"],"devDependencies":{"babel-helper-plugin-test-runner":"7.0.0-alpha.19","babel-plugin-syntax-object-rest-spread":"7.0.0-alpha.19"},"_id":"babel-plugin-transform-es2015-modules-commonjs@7.0.0-alpha.19","_npmVersion":"5.3.0","_nodeVersion":"8.1.4","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"integrity":"sha512-DIRp/vKPxcQiVhxcsWKjBtag3weJl9wanliUNdNqTyCD0+5fLAIKLqONU8CasPr5OH2uSfCMRo6w7BF3bzO7Dg==","shasum":"7c3fe8db55592995ceb17260a650640c22f8847d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-7.0.0-alpha.19.tgz"},"maintainers":[{"email":"me@thejameskyle.com","name":"thejameskyle"},{"email":"sebmck@gmail.com","name":"sebmck"},{"email":"daniel@tschinder.de","name":"danez"},{"email":"hi@henryzoo.com","name":"hzoo"},{"email":"loganfsmyth@gmail.com","name":"loganfsmyth"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/babel-plugin-transform-es2015-modules-commonjs-7.0.0-alpha.19.tgz_1502144524410_0.395866556558758"},"directories":{}}},"name":"babel-plugin-transform-es2015-modules-commonjs","time":{"modified":"2017-08-07T22:22:04.500Z","created":"2015-10-29T18:14:41.905Z","6.0.2":"2015-10-29T18:14:41.905Z","6.0.12":"2015-10-30T04:55:30.324Z","6.0.14":"2015-10-30T23:37:55.487Z","6.0.15":"2015-11-01T22:10:16.334Z","6.0.18":"2015-11-03T01:24:44.934Z","6.1.3":"2015-11-05T11:31:38.220Z","6.1.4":"2015-11-11T10:23:47.685Z","6.1.5":"2015-11-12T07:00:15.205Z","6.1.17":"2015-11-12T21:42:14.609Z","6.1.18":"2015-11-12T21:50:09.877Z","6.1.20":"2015-11-13T11:39:21.637Z","6.2.0":"2015-11-19T04:34:23.173Z","6.2.4":"2015-11-25T03:14:28.533Z","6.3.13":"2015-12-04T11:59:16.317Z","6.3.16":"2015-12-09T04:10:48.158Z","6.4.0":"2016-01-06T20:34:48.107Z","6.4.5":"2016-01-19T23:02:58.267Z","6.5.0":"2016-02-07T00:07:40.279Z","6.5.0-1":"2016-02-07T02:40:49.519Z","6.5.2":"2016-02-12T16:30:15.426Z","6.6.0":"2016-02-29T21:12:48.344Z","6.6.2":"2016-03-01T14:08:39.106Z","6.6.3":"2016-03-01T16:40:54.212Z","6.6.4":"2016-03-02T21:29:45.835Z","6.6.5":"2016-03-04T23:16:57.391Z","6.7.0":"2016-03-09T00:53:04.416Z","6.7.4":"2016-03-23T03:37:49.097Z","6.7.7":"2016-04-21T03:09:29.081Z","6.8.0":"2016-05-02T23:44:45.783Z","6.10.3":"2016-06-18T23:55:24.086Z","6.11.5":"2016-07-23T18:09:39.217Z","6.14.0":"2016-08-24T23:40:55.077Z","6.16.0":"2016-09-28T19:38:55.700Z","6.18.0":"2016-10-24T21:19:05.433Z","6.22.0":"2017-01-20T00:33:56.292Z","6.23.0":"2017-02-14T01:14:25.159Z","7.0.0-alpha.1":"2017-03-02T21:05:48.308Z","6.24.0":"2017-03-13T02:18:15.221Z","7.0.0-alpha.3":"2017-03-23T19:49:48.414Z","7.0.0-alpha.7":"2017-04-05T21:14:21.172Z","6.24.1":"2017-04-07T15:19:23.876Z","7.0.0-alpha.8":"2017-04-17T19:13:16.231Z","7.0.0-alpha.9":"2017-04-18T14:42:22.453Z","7.0.0-alpha.10":"2017-05-25T19:17:46.154Z","7.0.0-alpha.11":"2017-05-31T20:43:55.433Z","7.0.0-alpha.12":"2017-05-31T21:12:11.338Z","7.0.0-alpha.14":"2017-07-12T02:54:05.152Z","7.0.0-alpha.15":"2017-07-12T03:36:20.044Z","7.0.0-alpha.16":"2017-07-25T21:18:15.036Z","7.0.0-alpha.17":"2017-07-26T12:39:47.131Z","7.0.0-alpha.18":"2017-08-03T22:21:22.996Z","7.0.0-alpha.19":"2017-08-07T22:22:04.500Z"},"readmeFilename":"README.md"}