{"maintainers":[{"name":"59naga","email":"i59naga@icloud.com"},{"name":"lijunle","email":"lijunle@gmail.com"}],"keywords":["babel-plugin","module.exports"],"dist-tags":{"latest":"0.2.1"},"author":{"name":"59naga","email":"i59naga@icloud.com","url":"http://berabou.me"},"description":"Fix babel/babel#2212","readme":"babel-plugin-add-module-exports\n---\n\n<p align=\"right\">\n  <a href=\"https://npmjs.org/package/babel-plugin-add-module-exports\">\n    <img src=\"https://img.shields.io/npm/v/babel-plugin-add-module-exports.svg?style=flat-square\">\n  </a>\n  <a href=\"https://travis-ci.org/59naga/babel-plugin-add-module-exports\">\n    <img src=\"http://img.shields.io/travis/59naga/babel-plugin-add-module-exports.svg?style=flat-square\">\n  </a>\n  <a href=\"https://codeclimate.com/github/59naga/babel-plugin-add-module-exports/coverage\">\n    <img src=\"https://img.shields.io/codeclimate/github/59naga/babel-plugin-add-module-exports.svg?style=flat-square\">\n  </a>\n  <a href=\"https://codeclimate.com/github/59naga/babel-plugin-add-module-exports\">\n    <img src=\"https://img.shields.io/codeclimate/coverage/github/59naga/babel-plugin-add-module-exports.svg?style=flat-square\">\n  </a>\n</p>\n\nInstallation\n---\n\n```bash\nnpm install babel-plugin-add-module-exports --save-dev\n```\n\nWhy?\n---\n\nBabel@6 doesn't export default `module.exports` any more - [T2212 *Kill CommonJS default export behavior*](https://phabricator.babeljs.io/T2212).\n\nBabel@6 transforms the following file\n\n```js\n// index.js\nexport default 'foo'\n```\n\ninto\n\n```js\n'use strict';\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\nexports.default = 'foo';\n```\n\nTherefore, it is a need to use the ugly `.default` in node.js.\n\n```js\nrequire('./bundle.js') // { default: 'foo' }\nrequire('./bundle.js').default // 'foo'\n```\n\nThis plugin follows the babel@5 behavior - add the `module.exports` if **only** the `export default` declaration exists.\n\n```js\n'use strict';\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\nexports.default = 'foo';\nmodule.exports = exports['default'];\n```\n\nTherefore, our old codes still work fine - the `.default` goes away. :wink:\n\n```js\nrequire('./bundle.js') // foo\n```\n\nUsage\n---\n\nInstall this plugin from npm:\n\n```sh\nnpm install babel-plugin-add-module-exports --save-dev\n```\n\nWrite the name to [babelrc](https://babeljs.io/docs/usage/babelrc/). It works with [preset-es2015](http://babeljs.io/docs/plugins/preset-es2015/) to output CommonJS code:\n\n```json\n{\n  \"presets\": [\"es2015\"],\n  \"plugins\": [\n    \"add-module-exports\"\n  ]\n}\n```\n\nIt also works with [transform-es2015-modules-umd](http://babeljs.io/docs/plugins/transform-es2015-modules-umd/) plugin to output UMD code: (It is a *must* to place UMD plugin *after* this plugin.)\n\n```json\n{\n  \"presets\": [\"es2015\"],\n  \"plugins\": [\n    \"add-module-exports\",\n    \"transform-es2015-modules-umd\"\n  ]\n}\n```\n\nLicense\n---\n[MIT](http://59naga.mit-license.org/)\n","repository":{"type":"git","url":"git+https://github.com/59naga/babel-plugin-add-module-exports.git"},"users":{"lijunle":true,"preco21":true,"wuwenbin":true,"silentcloud":true,"shipengyan":true,"timdp":true,"cheapsteak":true,"iamale":true,"nskazki":true,"hal9zillion":true,"moimikey":true,"codedsignal":true,"alastair":true,"vladimirkazan":true,"nelix":true,"flynntsc":true,"wenbing":true,"vbv":true,"slurm":true,"shawndsouza":true,"blade254353074":true,"r3nya":true,"guidoschmidt":true,"lestad":true,"diegorbaquero":true,"gusgarcia":true,"guzgarcia":true,"jherax":true,"tomekf":true,"scconway8":true,"bapinney":true,"nice_body":true,"jhanstra":true,"fengmiaosen":true,"tommyzzm":true,"rajikaimal":true,"trusktr":true,"ghettovoice":true,"shuoshubao":true},"bugs":{"url":"https://github.com/59naga/babel-plugin-add-module-exports/issues"},"license":"MIT","versions":{"0.0.0":{"name":"babel-plugin-add-module-exports","version":"0.0.0","description":"Fix babel/babel#2212","engines":{"npm":"^3.3.9"},"main":"lib","files":["lib"],"scripts":{"start":"mocha --bail --watch --require intelli-espower-loader","test":"istanbul cover _mocha --report text --report html --report lcov -- -R spec","posttest":"npm run lint","lint":"eslint lib test --config 59naga"},"config":{"ghooks":{"pre-commit":"npm test"}},"devDependencies":{"babel-core":"^6.1.2","babel-plugin-transform-es2015-modules-commonjs":"^6.1.3","babel-preset-es2015":"^6.1.2","babel-template":"^6.0.16","eslint":"^1.9.0","eslint-config-59naga":"0.0.5","espower-loader":"^1.0.0","ghooks":"^0.3.2","intelli-espower-loader":"^1.0.0","istanbul":"^0.4.0","mocha":"^2.3.3","power-assert":"^1.1.0"},"keywords":["babel-plugin","module.exports"],"author":{"name":"59naga","email":"i59naga@icloud.com","url":"http://berabou.me"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/59naga/babel-plugin-add-module-exports.git"},"bugs":{"url":"https://github.com/59naga/babel-plugin-add-module-exports/issues"},"homepage":"https://github.com/59naga/babel-plugin-add-module-exports#readme","gitHead":"2ff94f50a1c0e28589dc6525dcd636bed5f74d98","_id":"babel-plugin-add-module-exports@0.0.0","_shasum":"8e09e91d5f25312c99f0b70319877d95763b6d6e","_from":".","_npmVersion":"3.3.12","_nodeVersion":"4.1.2","_npmUser":{"name":"59naga","email":"i59naga@icloud.com"},"dist":{"shasum":"8e09e91d5f25312c99f0b70319877d95763b6d6e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/babel-plugin-add-module-exports/-/babel-plugin-add-module-exports-0.0.0.tgz"},"maintainers":[{"name":"59naga","email":"i59naga@icloud.com"}],"directories":{}},"0.0.1":{"name":"babel-plugin-add-module-exports","version":"0.0.1","description":"Fix babel/babel#2212","engines":{"npm":"^3.3.9"},"main":"lib","files":["lib"],"scripts":{"start":"mocha --bail --watch --require intelli-espower-loader","test":"istanbul cover _mocha --report text --report html --report lcov -- -R spec","posttest":"npm run lint","lint":"eslint lib test --config 59naga"},"config":{"ghooks":{"pre-commit":"npm test"}},"devDependencies":{"babel-core":"^6.1.2","babel-plugin-transform-es2015-modules-commonjs":"^6.1.3","babel-preset-es2015":"^6.1.2","babel-template":"^6.0.16","eslint":"^1.9.0","eslint-config-59naga":"0.0.5","espower-loader":"^1.0.0","ghooks":"^0.3.2","intelli-espower-loader":"^1.0.0","istanbul":"^0.4.0","mocha":"^2.3.3","power-assert":"^1.1.0"},"keywords":["babel-plugin","module.exports"],"author":{"name":"59naga","email":"i59naga@icloud.com","url":"http://berabou.me"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/59naga/babel-plugin-add-module-exports.git"},"bugs":{"url":"https://github.com/59naga/babel-plugin-add-module-exports/issues"},"homepage":"https://github.com/59naga/babel-plugin-add-module-exports#readme","gitHead":"6d98943921707c3cf62f7ff0a7466694f082bd5e","_id":"babel-plugin-add-module-exports@0.0.1","_shasum":"a0527d47727bdf3b852b6c57da209fbd486e0412","_from":".","_npmVersion":"3.3.12","_nodeVersion":"4.1.2","_npmUser":{"name":"59naga","email":"i59naga@icloud.com"},"dist":{"shasum":"a0527d47727bdf3b852b6c57da209fbd486e0412","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/babel-plugin-add-module-exports/-/babel-plugin-add-module-exports-0.0.1.tgz"},"maintainers":[{"name":"59naga","email":"i59naga@icloud.com"}],"directories":{}},"0.0.2":{"name":"babel-plugin-add-module-exports","version":"0.0.2","description":"Fix babel/babel#2212","engines":{"npm":"^3.3.9"},"main":"lib","files":["lib"],"scripts":{"start":"mocha --bail --watch --require intelli-espower-loader","test":"istanbul cover _mocha --report text --report html --report lcov -- -R spec","posttest":"npm run lint","lint":"eslint lib test --config 59naga"},"config":{"ghooks":{"pre-commit":"npm test"}},"devDependencies":{"babel-core":"^6.1.2","babel-plugin-transform-es2015-modules-commonjs":"^6.1.3","babel-preset-es2015":"^6.1.2","babel-template":"^6.0.16","eslint":"^1.9.0","eslint-config-59naga":"0.0.5","espower-loader":"^1.0.0","ghooks":"^0.3.2","intelli-espower-loader":"^1.0.0","istanbul":"^0.4.0","mocha":"^2.3.3","power-assert":"^1.1.0"},"keywords":["babel-plugin","module.exports"],"author":{"name":"59naga","email":"i59naga@icloud.com","url":"http://berabou.me"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/59naga/babel-plugin-add-module-exports.git"},"bugs":{"url":"https://github.com/59naga/babel-plugin-add-module-exports/issues"},"homepage":"https://github.com/59naga/babel-plugin-add-module-exports#readme","gitHead":"8806baef030a51464caceab9444f2a638eb09300","_id":"babel-plugin-add-module-exports@0.0.2","_shasum":"1b52874f67164b57eae8ef3af7b52de937d9a028","_from":".","_npmVersion":"3.3.12","_nodeVersion":"4.1.2","_npmUser":{"name":"59naga","email":"i59naga@icloud.com"},"dist":{"shasum":"1b52874f67164b57eae8ef3af7b52de937d9a028","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/babel-plugin-add-module-exports/-/babel-plugin-add-module-exports-0.0.2.tgz"},"maintainers":[{"name":"59naga","email":"i59naga@icloud.com"}],"directories":{}},"0.0.3":{"name":"babel-plugin-add-module-exports","version":"0.0.3","description":"Fix babel/babel#2212","engines":{"npm":"^3.3.9"},"main":"lib","files":["lib"],"scripts":{"start":"mocha --bail --watch --require intelli-espower-loader","test":"istanbul cover _mocha --report text --report html --report lcov -- -R spec","posttest":"npm run lint","lint":"eslint lib test --config 59naga"},"config":{"ghooks":{"pre-commit":"npm test"}},"dependencies":{"babel-template":"^6.0.16"},"devDependencies":{"babel-core":"^6.1.2","babel-plugin-transform-es2015-modules-commonjs":"^6.1.3","babel-preset-es2015":"^6.1.2","eslint":"^1.9.0","eslint-config-59naga":"0.0.5","espower-loader":"^1.0.0","ghooks":"^0.3.2","intelli-espower-loader":"^1.0.0","istanbul":"^0.4.0","mocha":"^2.3.3","power-assert":"^1.1.0"},"keywords":["babel-plugin","module.exports"],"author":{"name":"59naga","email":"i59naga@icloud.com","url":"http://berabou.me"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/59naga/babel-plugin-add-module-exports.git"},"bugs":{"url":"https://github.com/59naga/babel-plugin-add-module-exports/issues"},"homepage":"https://github.com/59naga/babel-plugin-add-module-exports#readme","gitHead":"465b516593e88f3e9746c51a4d518dc5812c067f","_id":"babel-plugin-add-module-exports@0.0.3","_shasum":"22ffc6302edcfc46ad4b050d4ec56cc2cb3e86fc","_from":".","_npmVersion":"3.3.12","_nodeVersion":"4.1.2","_npmUser":{"name":"59naga","email":"i59naga@icloud.com"},"dist":{"shasum":"22ffc6302edcfc46ad4b050d4ec56cc2cb3e86fc","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/babel-plugin-add-module-exports/-/babel-plugin-add-module-exports-0.0.3.tgz"},"maintainers":[{"name":"59naga","email":"i59naga@icloud.com"}],"directories":{}},"0.0.4":{"name":"babel-plugin-add-module-exports","version":"0.0.4","description":"Fix babel/babel#2212","engines":{"npm":"^3.3.9"},"main":"lib","files":["lib"],"scripts":{"start":"mocha --bail --watch --require intelli-espower-loader","test":"istanbul cover _mocha --report text --report html --report lcov -- -R spec","posttest":"npm run lint","lint":"eslint lib test --config 59naga"},"config":{"ghooks":{"pre-commit":"npm test"}},"dependencies":{"babel-template":"^6.0.16"},"devDependencies":{"babel-core":"^6.1.2","babel-plugin-transform-es2015-modules-commonjs":"^6.1.3","babel-preset-es2015":"^6.1.2","eslint":"^1.9.0","eslint-config-59naga":"0.0.5","espower-loader":"^1.0.0","ghooks":"^0.3.2","intelli-espower-loader":"^1.0.0","istanbul":"^0.4.0","mocha":"^2.3.3","power-assert":"^1.1.0"},"keywords":["babel-plugin","module.exports"],"author":{"name":"59naga","email":"i59naga@icloud.com","url":"http://berabou.me"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/59naga/babel-plugin-add-module-exports.git"},"bugs":{"url":"https://github.com/59naga/babel-plugin-add-module-exports/issues"},"homepage":"https://github.com/59naga/babel-plugin-add-module-exports#readme","gitHead":"00042ccada436086b59187608ac953e1a8d53492","_id":"babel-plugin-add-module-exports@0.0.4","_shasum":"8e53aab8758cfaa347bc8cd80f08d0f8a217e2ca","_from":".","_npmVersion":"3.3.12","_nodeVersion":"4.1.2","_npmUser":{"name":"59naga","email":"i59naga@icloud.com"},"dist":{"shasum":"8e53aab8758cfaa347bc8cd80f08d0f8a217e2ca","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/babel-plugin-add-module-exports/-/babel-plugin-add-module-exports-0.0.4.tgz"},"maintainers":[{"name":"59naga","email":"i59naga@icloud.com"}],"directories":{}},"0.1.0":{"name":"babel-plugin-add-module-exports","version":"0.1.0","description":"Fix babel/babel#2212","engines":{"npm":"^3.3.9"},"main":"lib","files":["lib"],"scripts":{"start":"mocha --bail --watch --require intelli-espower-loader","test":"istanbul cover _mocha --report text --report html --report lcov -- -R spec --timeout 30000","posttest":"npm run lint","lint":"eslint lib test"},"dependencies":{"babel-template":"^6.0.16"},"devDependencies":{"babel-core":"^6.1.2","babel-preset-es2015":"^6.1.2","eslint":"^1.9.0","eslint-config-standard":"^4.4.0","eslint-plugin-mocha":"^1.1.0","eslint-plugin-standard":"^1.3.1","espower-loader":"^1.0.0","intelli-espower-loader":"^1.0.0","istanbul":"^0.4.0","mocha":"^2.3.3","power-assert":"^1.1.0"},"keywords":["babel-plugin","module.exports"],"author":{"name":"59naga","email":"i59naga@icloud.com","url":"http://berabou.me"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/59naga/babel-plugin-add-module-exports.git"},"bugs":{"url":"https://github.com/59naga/babel-plugin-add-module-exports/issues"},"homepage":"https://github.com/59naga/babel-plugin-add-module-exports#readme","gitHead":"e9a1fbf59fa694da7bedbb2eaa6902a85fa4046e","_id":"babel-plugin-add-module-exports@0.1.0","_shasum":"8456c5b480f2fcea53fa84ba2c62c00f6fd34d69","_from":".","_npmVersion":"3.4.0","_nodeVersion":"4.1.2","_npmUser":{"name":"59naga","email":"i59naga@icloud.com"},"dist":{"shasum":"8456c5b480f2fcea53fa84ba2c62c00f6fd34d69","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/babel-plugin-add-module-exports/-/babel-plugin-add-module-exports-0.1.0.tgz"},"maintainers":[{"name":"59naga","email":"i59naga@icloud.com"}],"directories":{}},"0.1.1":{"name":"babel-plugin-add-module-exports","version":"0.1.1","description":"Fix babel/babel#2212","engines":{"npm":"^3.3.9"},"main":"lib","files":["lib"],"scripts":{"start":"mocha --bail --watch --require intelli-espower-loader","test":"istanbul cover _mocha --report text --report html --report lcov -- -R spec --timeout 30000","posttest":"npm run lint","lint":"eslint lib test"},"dependencies":{"babel-template":"^6.0.16","lodash":"^3.10.1"},"devDependencies":{"babel-core":"^6.1.2","babel-plugin-transform-export-extensions":"^6.1.18","babel-preset-es2015":"^6.1.2","eslint":"^1.9.0","eslint-config-standard":"^4.4.0","eslint-plugin-mocha":"^1.1.0","eslint-plugin-standard":"^1.3.1","espower-loader":"^1.0.0","intelli-espower-loader":"^1.0.0","istanbul":"^0.4.0","mocha":"^2.3.3","power-assert":"^1.1.0"},"keywords":["babel-plugin","module.exports"],"author":{"name":"59naga","email":"i59naga@icloud.com","url":"http://berabou.me"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/59naga/babel-plugin-add-module-exports.git"},"bugs":{"url":"https://github.com/59naga/babel-plugin-add-module-exports/issues"},"homepage":"https://github.com/59naga/babel-plugin-add-module-exports#readme","gitHead":"6f536d273daaa3cdf8197e1c2199dc0d787c3c74","_id":"babel-plugin-add-module-exports@0.1.1","_shasum":"daebdbe8ebdaa817385f44f0068602a6bf7f75c6","_from":".","_npmVersion":"3.4.0","_nodeVersion":"4.1.2","_npmUser":{"name":"59naga","email":"i59naga@icloud.com"},"dist":{"shasum":"daebdbe8ebdaa817385f44f0068602a6bf7f75c6","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/babel-plugin-add-module-exports/-/babel-plugin-add-module-exports-0.1.1.tgz"},"maintainers":[{"name":"59naga","email":"i59naga@icloud.com"}],"directories":{}},"0.1.2":{"name":"babel-plugin-add-module-exports","version":"0.1.2","description":"Fix babel/babel#2212","main":"lib","files":["lib"],"scripts":{"start":"mocha --bail --watch --require intelli-espower-loader","test":"istanbul cover _mocha --report text --report html --report lcov -- -R spec --timeout 30000","posttest":"npm run lint","lint":"eslint lib test"},"dependencies":{"babel-template":"^6.0.16","lodash":"^3.10.1"},"devDependencies":{"babel-core":"^6.1.2","babel-plugin-transform-export-extensions":"^6.1.18","babel-preset-es2015":"^6.1.2","eslint":"^1.9.0","eslint-config-standard":"^4.4.0","eslint-plugin-mocha":"^1.1.0","eslint-plugin-standard":"^1.3.1","espower-loader":"^1.0.0","intelli-espower-loader":"^1.0.0","istanbul":"^0.4.0","mocha":"^2.3.3","power-assert":"^1.1.0"},"keywords":["babel-plugin","module.exports"],"author":{"name":"59naga","email":"i59naga@icloud.com","url":"http://berabou.me"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/59naga/babel-plugin-add-module-exports.git"},"bugs":{"url":"https://github.com/59naga/babel-plugin-add-module-exports/issues"},"homepage":"https://github.com/59naga/babel-plugin-add-module-exports#readme","gitHead":"ba5ffdc86b35d95c7471278f4c9d6a98e89941a1","_id":"babel-plugin-add-module-exports@0.1.2","_shasum":"4d389000c9dd3c988b3ed23004eb95e27b42de59","_from":".","_npmVersion":"3.5.2","_nodeVersion":"5.3.0","_npmUser":{"name":"59naga","email":"i59naga@icloud.com"},"dist":{"shasum":"4d389000c9dd3c988b3ed23004eb95e27b42de59","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/babel-plugin-add-module-exports/-/babel-plugin-add-module-exports-0.1.2.tgz"},"maintainers":[{"name":"59naga","email":"i59naga@icloud.com"}],"directories":{}},"0.1.3":{"name":"babel-plugin-add-module-exports","version":"0.1.3","description":"Fix babel/babel#2212","main":"lib","files":["lib"],"scripts":{"start":"abby compile, watch:*","watch:src":"babel src --out-dir lib --watch","watch:test":"babel test --out-dir spec --ignore test/spec.js --watch","watch:copy":"abby compile:copy --watch test/spec.js","watch:mocha":"abby mocha --log --watch lib/**/*.js,spec/**/*.js","compile":"abby compile:* --parse serial","compile:version":"babel -V","compile:src":"babel src --out-dir lib --source-maps","compile:test":"babel test --out-dir spec --ignore test/spec.js","compile:copy":"cp test/spec.js spec/spec.js","test":"abby compile, mocha.","mocha":"mocha spec/index.js","cover":"abby cover:* --parse serial --launch force","cover:test":"nyc --reporter=lcov --reporter=text npm test","cover:report":"npm-if TRAVIS \"codeclimate-test-reporter < coverage/lcov.info\"","lint":"eslint src test","version":"node changelog.js > CHANGELOG.md && git add CHANGELOG.md","postversion":"git push --follow-tags","build":"abby compile --log --env"},"nyc":{"exclude":["spec"]},"abigail":{"plugins":{"log":false,"parse":"raw","watch":false}},"dependencies":{"babel-template":"^6.5.0","lodash.get":"^4.2.1"},"devDependencies":{"abigail":"^1.6.1","babel-cli":"^6.5.1","babel-core":"^6.5.1","babel-plugin-transform-export-extensions":"^6.5.0","babel-preset-es2015":"^6.5.0","babel-preset-power-assert":"^1.0.0","chokidar":"^1.4.3","codeclimate-test-reporter":"^0.3.1","eslint":"^2.8.0","eslint-config-standard":"^5.1.0","eslint-plugin-mocha":"^2.2.0","eslint-plugin-promise":"^1.1.0","eslint-plugin-standard":"^1.3.1","mocha":"^2.4.5","npm-statement":"^0.0.0","nyc":"^6.4.0","power-assert":"^1.2.0"},"keywords":["babel-plugin","module.exports"],"author":{"name":"59naga","email":"i59naga@icloud.com","url":"http://berabou.me"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/59naga/babel-plugin-add-module-exports.git"},"bugs":{"url":"https://github.com/59naga/babel-plugin-add-module-exports/issues"},"homepage":"https://github.com/59naga/babel-plugin-add-module-exports#readme","gitHead":"e90ed8e8f5f71a465dfd07e35861d456b503d1e0","_id":"babel-plugin-add-module-exports@0.1.3","_shasum":"ea59963ee8caf97e98ad6de1314e24739f81cf7e","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.11.0","_npmUser":{"name":"59naga","email":"i59naga@icloud.com"},"dist":{"shasum":"ea59963ee8caf97e98ad6de1314e24739f81cf7e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/babel-plugin-add-module-exports/-/babel-plugin-add-module-exports-0.1.3.tgz"},"maintainers":[{"name":"59naga","email":"i59naga@icloud.com"},{"name":"lijunle","email":"lijunle@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/babel-plugin-add-module-exports-0.1.3.tgz_1461611660224_0.6603827811777592"},"directories":{}},"0.1.4":{"name":"babel-plugin-add-module-exports","version":"0.1.4","description":"Fix babel/babel#2212","main":"lib","files":["lib"],"scripts":{"start":"abby compile, watch:*","watch:src":"babel src --out-dir lib --watch","watch:test":"babel test --out-dir spec --ignore test/spec.js --watch","watch:copy":"abby compile:copy --watch test/spec.js","watch:mocha":"abby mocha --log --watch lib/**/*.js,spec/**/*.js","compile":"abby compile:* --parse serial","compile:version":"babel -V","compile:src":"babel src --out-dir lib --source-maps","compile:test":"babel test --out-dir spec --ignore test/spec.js","compile:copy":"cp test/spec.js spec/spec.js","test":"abby compile, mocha.","mocha":"mocha spec/index.js","cover":"abby cover:* --parse serial --launch force","cover:test":"nyc --reporter=lcov --reporter=text npm test","cover:report":"npm-if TRAVIS \"codeclimate-test-reporter < coverage/lcov.info\"","lint":"eslint src test","postversion":"node changelog.js > CHANGELOG.md && git add CHANGELOG.md && echo ':wq' | git commit --amend && git push --follow-tags","build":"abby compile --log --env"},"nyc":{"exclude":["spec"]},"abigail":{"plugins":{"log":false,"parse":"raw","watch":false}},"dependencies":{"babel-template":"^6.5.0"},"devDependencies":{"abigail":"^1.6.1","babel-cli":"^6.5.1","babel-core":"^6.5.1","babel-plugin-transform-export-extensions":"^6.5.0","babel-preset-es2015":"^6.5.0","babel-preset-power-assert":"^1.0.0","chokidar":"^1.4.3","codeclimate-test-reporter":"^0.3.1","eslint":"^2.8.0","eslint-config-standard":"^5.1.0","eslint-plugin-mocha":"^2.2.0","eslint-plugin-promise":"^1.1.0","eslint-plugin-standard":"^1.3.1","mocha":"^2.4.5","npm-statement":"^0.0.0","nyc":"^6.4.0","power-assert":"^1.2.0"},"keywords":["babel-plugin","module.exports"],"author":{"name":"59naga","email":"i59naga@icloud.com","url":"http://berabou.me"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/59naga/babel-plugin-add-module-exports.git"},"bugs":{"url":"https://github.com/59naga/babel-plugin-add-module-exports/issues"},"homepage":"https://github.com/59naga/babel-plugin-add-module-exports#readme","gitHead":"f8d4a507209403f4e60d73de93a4824c13b54240","_id":"babel-plugin-add-module-exports@0.1.4","_shasum":"1a5b6d761ee1f663d845b4ea6878712de31c107a","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.11.0","_npmUser":{"name":"59naga","email":"i59naga@icloud.com"},"dist":{"shasum":"1a5b6d761ee1f663d845b4ea6878712de31c107a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/babel-plugin-add-module-exports/-/babel-plugin-add-module-exports-0.1.4.tgz"},"maintainers":[{"name":"59naga","email":"i59naga@icloud.com"},{"name":"lijunle","email":"lijunle@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/babel-plugin-add-module-exports-0.1.4.tgz_1461690922982_0.7582801608368754"},"directories":{}},"0.2.0":{"name":"babel-plugin-add-module-exports","version":"0.2.0","description":"Fix babel/babel#2212","main":"lib","files":["lib"],"scripts":{"start":"abby compile, watch:*","watch:src":"babel src --out-dir lib --watch","watch:test":"babel test --out-dir spec --ignore test/spec.js --watch","watch:copy":"abby compile:copy --watch test/spec.js","watch:mocha":"abby mocha --log --watch lib/**/*.js,spec/**/*.js","compile":"abby compile:* --parse serial","compile:version":"babel -V","compile:src":"babel src --out-dir lib --source-maps","compile:test":"babel test --out-dir spec --ignore test/spec.js","compile:copy":"cp test/spec.js spec/spec.js","test":"abby compile, mocha.","mocha":"mocha spec/index.js","cover":"abby cover:* --parse serial --launch force","cover:test":"nyc --reporter=lcov --reporter=text npm test","cover:report":"npm-if TRAVIS \"codeclimate-test-reporter < coverage/lcov.info\"","lint":"eslint src test","postversion":"node changelog.js > CHANGELOG.md && git add CHANGELOG.md && echo ':wq' | git commit --amend && git push --follow-tags","build":"abby compile --log --env"},"nyc":{"exclude":["spec"]},"abigail":{"plugins":{"log":false,"parse":"raw","watch":false}},"devDependencies":{"abigail":"^1.6.1","babel-cli":"^6.5.1","babel-core":"^6.5.1","babel-plugin-transform-export-extensions":"^6.5.0","babel-preset-es2015":"^6.5.0","babel-preset-power-assert":"^1.0.0","chokidar":"^1.4.3","codeclimate-test-reporter":"^0.3.1","eslint":"^2.8.0","eslint-config-standard":"^5.1.0","eslint-plugin-mocha":"^2.2.0","eslint-plugin-promise":"^1.1.0","eslint-plugin-standard":"^1.3.1","mocha":"^2.4.5","npm-statement":"^0.0.0","nyc":"^6.4.0","power-assert":"^1.2.0"},"keywords":["babel-plugin","module.exports"],"author":{"name":"59naga","email":"i59naga@icloud.com","url":"http://berabou.me"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/59naga/babel-plugin-add-module-exports.git"},"bugs":{"url":"https://github.com/59naga/babel-plugin-add-module-exports/issues"},"homepage":"https://github.com/59naga/babel-plugin-add-module-exports#readme","gitHead":"cf8cedd239ebce774536fe7baec732a3b405c298","_id":"babel-plugin-add-module-exports@0.2.0","_shasum":"a636dae6fa076f9361b3164e46a611414a32b0ea","_from":".","_npmVersion":"3.8.6","_nodeVersion":"6.1.0","_npmUser":{"name":"59naga","email":"i59naga@icloud.com"},"dist":{"shasum":"a636dae6fa076f9361b3164e46a611414a32b0ea","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/babel-plugin-add-module-exports/-/babel-plugin-add-module-exports-0.2.0.tgz"},"maintainers":[{"name":"59naga","email":"i59naga@icloud.com"},{"name":"lijunle","email":"lijunle@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/babel-plugin-add-module-exports-0.2.0.tgz_1462531763193_0.009498273255303502"},"directories":{}},"0.2.1":{"name":"babel-plugin-add-module-exports","version":"0.2.1","description":"Fix babel/babel#2212","main":"lib","files":["lib"],"scripts":{"start":"abby compile, watch:*","watch:src":"babel src --out-dir lib --watch","watch:test":"babel test --out-dir spec --ignore test/spec.js --watch","watch:copy":"abby compile:copy --watch test/spec.js","watch:mocha":"abby mocha --log --watch lib/**/*.js,spec/**/*.js","compile":"abby compile:* --parse serial","compile:version":"babel -V","compile:src":"babel src --out-dir lib --source-maps","compile:test":"babel test --out-dir spec --ignore test/spec.js","compile:copy":"cp test/spec.js spec/spec.js","test":"abby compile, mocha.","mocha":"mocha spec/index.js","cover":"abby cover:* --parse serial --launch force","cover:test":"nyc --reporter=lcov --reporter=text npm test","cover:report":"npm-if TRAVIS \"codeclimate-test-reporter < coverage/lcov.info\"","lint":"eslint src test","postversion":"node changelog.js > CHANGELOG.md && git add CHANGELOG.md && echo ':wq' | git commit --amend && git push --follow-tags","build":"abby compile --log --env"},"nyc":{"exclude":["spec"]},"abigail":{"plugins":{"log":false,"parse":"raw","watch":false}},"devDependencies":{"abigail":"^1.6.1","babel-cli":"^6.5.1","babel-core":"^6.5.1","babel-plugin-transform-export-extensions":"^6.5.0","babel-preset-es2015":"^6.5.0","babel-preset-power-assert":"^1.0.0","chokidar":"^1.4.3","codeclimate-test-reporter":"^0.3.1","eslint":"^2.8.0","eslint-config-standard":"^5.1.0","eslint-plugin-mocha":"^2.2.0","eslint-plugin-promise":"^1.1.0","eslint-plugin-standard":"^1.3.1","mocha":"^2.4.5","npm-statement":"^0.0.0","nyc":"^6.4.0","power-assert":"^1.2.0"},"keywords":["babel-plugin","module.exports"],"author":{"name":"59naga","email":"i59naga@icloud.com","url":"http://berabou.me"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/59naga/babel-plugin-add-module-exports.git"},"bugs":{"url":"https://github.com/59naga/babel-plugin-add-module-exports/issues"},"homepage":"https://github.com/59naga/babel-plugin-add-module-exports#readme","gitHead":"aa37f68bb570042f57e7213c014fa04e8ff5e59b","_id":"babel-plugin-add-module-exports@0.2.1","_shasum":"9ae9a1f4a8dc67f0cdec4f4aeda1e43a5ff65e25","_from":".","_npmVersion":"3.8.6","_nodeVersion":"6.1.0","_npmUser":{"name":"59naga","email":"i59naga@icloud.com"},"dist":{"shasum":"9ae9a1f4a8dc67f0cdec4f4aeda1e43a5ff65e25","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/babel-plugin-add-module-exports/-/babel-plugin-add-module-exports-0.2.1.tgz"},"maintainers":[{"name":"59naga","email":"i59naga@icloud.com"},{"name":"lijunle","email":"lijunle@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/babel-plugin-add-module-exports-0.2.1.tgz_1463038066899_0.045453027822077274"},"directories":{}}},"name":"babel-plugin-add-module-exports","time":{"modified":"2017-04-08T17:46:22.080Z","created":"2015-11-10T21:39:38.859Z","0.0.0":"2015-11-10T21:39:38.859Z","0.0.1":"2015-11-10T22:17:58.868Z","0.0.2":"2015-11-10T23:13:05.673Z","0.0.3":"2015-11-10T23:55:43.718Z","0.0.4":"2015-11-11T08:59:56.459Z","0.1.0":"2015-11-15T07:46:34.283Z","0.1.1":"2015-11-15T09:26:32.077Z","0.1.2":"2015-12-18T15:50:27.811Z","0.1.3-alpha":"2016-01-14T19:50:38.826Z","0.1.3":"2016-04-25T19:14:22.757Z","0.1.4":"2016-04-26T17:15:24.903Z","0.2.0":"2016-05-06T10:49:25.725Z","0.2.1":"2016-05-12T07:27:49.462Z"},"readmeFilename":"README.md","homepage":"https://github.com/59naga/babel-plugin-add-module-exports#readme"}