{"maintainers":[{"name":"danez","email":"daniel@tschinder.de"},{"name":"existentialism","email":"bng412@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"}],"dist-tags":{"latest":"1.4.0","prerelease":"1.1.2","next":"2.0.0-alpha.7"},"author":{"name":"Henry Zhu","email":"hi@henryzoo.com"},"description":"A Babel preset for each environment.","readme":"# babel-preset-env [![npm](https://img.shields.io/npm/v/babel-preset-env.svg)](https://www.npmjs.com/package/babel-preset-env) [![travis](https://img.shields.io/travis/babel/babel-preset-env/master.svg)](https://travis-ci.org/babel/babel-preset-env) [![npm-downloads](https://img.shields.io/npm/dm/babel-preset-env.svg)](https://www.npmjs.com/package/babel-preset-env) [![codecov](https://img.shields.io/codecov/c/github/babel/babel-preset-env/master.svg?maxAge=43200)](https://codecov.io/github/babel/babel-preset-env)\n\n> A Babel preset that can automatically determine the Babel plugins and polyfills you need based on your supported environments.\n\n```sh\nnpm install babel-preset-env --save-dev\n```\n\n```json\n{\n  \"presets\": [\n    [\"env\", {\n      \"targets\": {\n        \"browsers\": [\"last 2 versions\", \"safari >= 7\"]\n      }\n    }]\n  ]\n}\n```\n\nCheck out the many options (especially `useBuiltIns` to polyfill less)!\n\n- [How it Works](#how-it-works)\n- [Install](#install)\n- [Usage](#usage)\n- [Options](#options)\n- [Examples](#examples)\n- [Caveats](#caveats)\n- [Other Cool Projects](#other-cool-projects)\n\n## How it Works\n\n### Determine environment support for ECMAScript features\n\nUse external data such as [`compat-table`](https://github.com/kangax/compat-table) to determine browser support. (We should create PRs there when necessary)\n\n![](https://cloud.githubusercontent.com/assets/588473/19214029/58deebce-8d48-11e6-9004-ee3fbcb75d8b.png)\n\nWe can periodically run [build-data.js](https://github.com/babel/babel-preset-env/blob/master/scripts/build-data.js) which generates [plugins.json](https://github.com/babel/babel-preset-env/blob/master/data/plugins.json).\n\nRef: [#7](https://github.com/babel/babel-preset-env/issues/7)\n\n### Maintain a mapping between JavaScript features and Babel plugins\n\n> Currently located at [plugin-features.js](https://github.com/babel/babel-preset-env/blob/master/data/plugin-features.js).\n\nThis should be straightforward to do in most cases. There might be cases where plugins should be split up more or certain plugins aren't standalone enough (or impossible to do).\n\n### Support all plugins in Babel that are considered `latest`\n\n> Default behavior without options is the same as `babel-preset-latest`.\n\nIt won't include `stage-x` plugins. env will support all plugins in what we consider the latest version of Javascript (by matching what we do in [`babel-preset-latest`](http://babeljs.io/docs/plugins/preset-latest/)).\n\nRef: [#14](https://github.com/babel/babel-preset-env/issues/14)\n\n### Determine the lowest common denominator of plugins to be included in the preset\n\nIf you are targeting IE 8 and Chrome 55 it will include all plugins required by IE 8 since you would need to support both still.\n\n### Support a target option `\"node\": \"current\"` to compile for the currently running node version.\n\nFor example, if you are building on Node 4, arrow functions won't be converted, but they will if you build on Node 0.12.\n\n### Support a `browsers` option like autoprefixer\n\nUse [browserslist](https://github.com/ai/browserslist) to declare supported environments by performing queries like `> 1%, last 2 versions`.\n\nRef: [#19](https://github.com/babel/babel-preset-env/pull/19)\n\n## Install\n\nWith [npm](https://www.npmjs.com):\n\n```sh\nnpm install --save-dev babel-preset-env\n```\n\nOr [yarn](https://yarnpkg.com):\n\n```sh\nyarn add babel-preset-env --dev\n```\n\n## Usage\n\nThe default behavior without options runs all transforms (behaves the same as [babel-preset-latest](https://babeljs.io/docs/plugins/preset-latest/)).\n\n```json\n{\n  \"presets\": [\"env\"]\n}\n```\n\n## Options\n\nFor more information on setting options for a preset, refer to the [plugin/preset options](http://babeljs.io/docs/plugins/#plugin-preset-options) documentation.\n\n### `targets`\n\n`{ [string]: number }`, defaults to `{}`.\n\nTakes an object of environment versions to support.\n\nEach target environment takes a number (you can also specify a minor versions like `node: 6.5`)\n\nExample environments: `chrome`, `opera`, `edge`, `firefox`, `safari`, `ie`, `ios`, `android`, `node`, `electron`.\n\nThe [data](https://github.com/babel/babel-preset-env/blob/master/data/plugins.json) for this is generated by running the [build-data script](https://github.com/babel/babel-preset-env/blob/master/scripts/build-data.js) which pulls in data from [compat-table](https://kangax.github.io/compat-table).\n\n### `targets.node`\n\n`number | \"current\" | true`\n\nIf you want to compile against the current node version, you can specify `\"node\": true` or `\"node\": \"current\"`, which would be the same as `\"node\": parseFloat(process.versions.node)`.\n\n### `targets.browsers`\n\n`Array<string> | string`\n\nA query to select browsers (ex: last 2 versions, > 5%) using [browserslist](https://github.com/ai/browserslist).\n\nNote, browsers' results are overridden by explicit items from `targets`.\n\n### `targets.uglify`\n\n`number | true`\n\nUglifyJS does not currently support any ES6 syntax, so if you are using Uglify to minify your code, targeting later browsers may cause Uglify to throw syntax errors.\n\nTo prevent these errors - specify the uglify option, which will enable all plugins and, as a result, fully compile your code to ES5. However, the `useBuiltIns` option will still work as before, and only include the polyfills that your target(s) need.\n\n> NOTE: Uglify has a work-in-progress \"Harmony\" branch to address the lack of ES6 support, but it is not yet stable.  You can follow its progress in [UglifyJS2 issue #448](https://github.com/mishoo/UglifyJS2/issues/448).  If you require an alternative minifier which _does_ support ES6 syntax, we recommend using [Babili](https://github.com/babel/babili).\n\n### `spec`\n\n`boolean`, defaults to `false`.\n\nEnable more spec compliant, but potentially slower, transformations for any plugins in this preset that support them.\n\n### `loose`\n\n`boolean`, defaults to `false`.\n\nEnable \"loose\" transformations for any plugins in this preset that allow them.\n\n### `modules`\n\n`\"amd\" | \"umd\" | \"systemjs\" | \"commonjs\" | false`, defaults to `\"commonjs\"`.\n\nEnable transformation of ES6 module syntax to another module type.\n\nSetting this to `false` will not transform modules.\n\n### `debug`\n\n`boolean`, defaults to `false`.\n\nOutputs the targets/plugins used and the version specified in [plugin data version](https://github.com/babel/babel-preset-env/blob/master/data/plugins.json) to `console.log`.\n\n### `include`\n\n`Array<string>`, defaults to `[]`.\n\n> NOTE: `whitelist` is deprecated and will be removed in the next major in favor of this.\n\nAn array of plugins to always include.\n\nValid options include any:\n\n- [Babel plugins](https://github.com/babel/babel-preset-env/blob/master/data/plugin-features.js) - both with (`babel-plugin-transform-es2015-spread`) and without prefix (`transform-es2015-spread`) are supported.\n\n- [Built-ins](https://github.com/babel/babel-preset-env/blob/master/data/built-in-features.js), such as `map`, `set`, or `object.assign`.\n\nThis option is useful if there is a bug in a native implementation, or a combination of a non-supported feature + a supported one doesn't work.\n\nFor example, Node 4 supports native classes but not spread. If `super` is used with a spread argument, then the `transform-es2015-classes` transform needs to be `include`d, as it is not possible to transpile a spread with `super` otherwise.\n\n> NOTE: The `include` and `exclude` options _only_ work with the [plugins included with this preset](https://github.com/babel/babel-preset-env/blob/master/data/plugin-features.js); so, for example, including `transform-do-expressions` or excluding `transform-function-bind` will throw errors. To use a plugin _not_ included with this preset, add them to your [config](https://babeljs.io/docs/usage/babelrc/) directly.\n\n### `exclude`\n\n`Array<string>`, defaults to `[]`.\n\nAn array of plugins to always exclude/remove.\n\nThe possible options are the same as the `include` option.\n\nThis option is useful for \"blacklisting\" a transform like `transform-regenerator` if you don't use generators and don't want to include `regeneratorRuntime` (when using `useBuiltIns`) or for using another plugin like [fast-async](https://github.com/MatAtBread/fast-async) instead of [Babel's async-to-gen](http://babeljs.io/docs/plugins/transform-async-generator-functions/).\n\n### `useBuiltIns`\n\n`boolean`, defaults to `false`.\n\nA way to apply `babel-preset-env` for polyfills (via \"babel-polyfill\").\n\n> NOTE: This does not currently polyfill experimental/stage-x built-ins like the regular \"babel-polyfill\" does.\n> This will only work with npm >= 3 (which should be used with Babel 6 anyway)\n\n```\nnpm install babel-polyfill --save\n```\n\nThis option enables a new plugin that replaces the statement `import \"babel-polyfill\"` or `require(\"babel-polyfill\")` with individual requires for `babel-polyfill` based on environment.\n\n> NOTE: Only use `require(\"babel-polyfill\");` once in your whole app.\n> Multiple imports or requires of `babel-polyfill` will throw an error since it can cause global collisions and other issues that are hard to trace.\n> We recommend creating a single entry file that only contains the `require` statement.\n\n**In**\n\n```js\nimport \"babel-polyfill\";\n```\n\n**Out (different based on environment)**\n\n```js\nimport \"core-js/modules/es7.string.pad-start\";\nimport \"core-js/modules/es7.string.pad-end\";\nimport \"core-js/modules/web.timers\";\nimport \"core-js/modules/web.immediate\";\nimport \"core-js/modules/web.dom.iterable\";\n```\n\nThis will also work for `core-js` directly (`import \"core-js\";`)\n\n```\nnpm install core-js --save\n```\n\n---\n\n## Examples\n\n### Export with various targets\n\n```js\nexport class A {}\n```\n\n#### Target only Chrome 52\n\n**.babelrc**\n\n```json\n{\n  \"presets\": [\n    [\"env\", {\n      \"targets\": {\n        \"chrome\": 52\n      }\n    }]\n  ]\n}\n```\n\n**Out**\n\n```js\nclass A {}\nexports.A = A;\n```\n\n#### Target Chrome 52 with webpack 2/rollup and loose mode\n\n**.babelrc**\n\n```json\n{\n  \"presets\": [\n    [\"env\", {\n      \"targets\": {\n        \"chrome\": 52\n      },\n      \"modules\": false,\n      \"loose\": true\n    }]\n  ]\n}\n```\n\n**Out**\n\n```js\nexport class A {}\n```\n\n#### Target specific browsers via browserslist\n\n**.babelrc**\n\n```json\n{\n  \"presets\": [\n    [\"env\", {\n      \"targets\": {\n        \"chrome\": 52,\n        \"browsers\": [\"last 2 versions\", \"safari 7\"]\n      }\n    }]\n  ]\n}\n```\n\n**Out**\n\n```js\nexport var A = function A() {\n  _classCallCheck(this, A);\n};\n```\n\n#### Target latest node via `node: true` or `node: \"current\"`\n\n**.babelrc**\n\n```json\n{\n  \"presets\": [\n    [\"env\", {\n      \"targets\": {\n        \"node\": \"current\"\n      }\n    }]\n  ]\n}\n```\n\n**Out**\n\n```js\nclass A {}\nexports.A = A;\n```\n\n### Show debug output\n\n**.babelrc**\n\n```json\n{\n  \"presets\": [\n    [ \"env\", {\n      \"targets\": {\n        \"safari\": 10\n      },\n      \"modules\": false,\n      \"useBuiltIns\": true,\n      \"debug\": true\n    }]\n  ]\n}\n```\n\n**stdout**\n\n```sh\nUsing targets:\n{\n  \"safari\": 10\n}\n\nModules transform: false\n\nUsing plugins:\n  transform-exponentiation-operator {}\n  transform-async-to-generator {}\n\nUsing polyfills:\n  es7.object.values {}\n  es7.object.entries {}\n  es7.object.get-own-property-descriptors {}\n  web.timers {}\n  web.immediate {}\n  web.dom.iterable {}\n```\n\n### Include and exclude specific plugins/built-ins\n\n> always include arrow functions, explicitly exclude generators\n\n```json\n{\n  \"presets\": [\n    [\"env\", {\n      \"targets\": {\n        \"browsers\": [\"last 2 versions\", \"safari >= 7\"]\n      },\n      \"include\": [\"transform-es2015-arrow-functions\", \"es6.map\"],\n      \"exclude\": [\"transform-regenerator\", \"es6.set\"]\n    }]\n  ]\n}\n```\n\n## Caveats\n\nIf you get a `SyntaxError: Unexpected token ...` error when using the [object-rest-spread](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-object-rest-spread) transform then make sure the plugin has been updated to, at least, `v6.19.0`.\n\n## Other Cool Projects\n\n- [babel-preset-modern-browsers](https://github.com/christophehurpeau/babel-preset-modern-browsers)\n- ?\n","repository":{"type":"git","url":"git+https://github.com/babel/babel-preset-env.git"},"users":{"abhisekp":true,"agat":true,"isenricho":true,"ifeature":true,"mrzmmr":true,"zakuni":true,"itonyyo":true,"spences10":true,"shanewholloway":true,"xfloops":true,"oleg_tsyba":true,"danielbayley":true,"dbuggerx":true,"nonthasart":true,"modood":true},"bugs":{"url":"https://github.com/babel/babel-preset-env/issues"},"license":"MIT","versions":{"0.0.0":{"name":"babel-preset-env","version":"0.0.0","description":"","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"keywords":[],"author":"","license":"ISC","_id":"babel-preset-env@0.0.0","_shasum":"1227e8c4a4c163cf17f48a4dab4b2b2b54fadb40","_from":".","_npmVersion":"3.10.6","_nodeVersion":"5.11.1","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"1227e8c4a4c163cf17f48a4dab4b2b2b54fadb40","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-preset-env/-/babel-preset-env-0.0.0.tgz"},"maintainers":[{"name":"hzoo","email":"hi@henryzoo.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/babel-preset-env-0.0.0.tgz_1472701356629_0.2519715097732842"},"directories":{}},"0.0.1":{"name":"babel-preset-env","version":"0.0.1","description":"A Babel preset for each environment.","author":{"name":"Henry Zhu","email":"hi@henryzoo.com"},"homepage":"https://babeljs.io/","license":"MIT","repository":{"type":"git","url":"git+https://github.com/babel/babel-preset-env.git"},"main":"lib/index.js","scripts":{"build":"babel src -d lib","dev":"babel -w src -d lib","lint":"eslint src test","fix":"eslint src test --fix","ci":"npm run lint && npm run test","prepublish":"npm run build","test":"mocha ./test --compilers js:babel-register"},"dependencies":{"babel-plugin-check-es2015-constants":"^6.3.13","babel-plugin-syntax-trailing-function-commas":"^6.13.0","babel-plugin-transform-async-to-generator":"^6.8.0","babel-plugin-transform-class-properties":"^6.11.5","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-do-expressions":"^6.8.0","babel-plugin-transform-es2015-arrow-functions":"^6.3.13","babel-plugin-transform-es2015-block-scoped-functions":"^6.3.13","babel-plugin-transform-es2015-block-scoping":"^6.6.0","babel-plugin-transform-es2015-classes":"^6.6.0","babel-plugin-transform-es2015-computed-properties":"^6.3.13","babel-plugin-transform-es2015-destructuring":"^6.6.0","babel-plugin-transform-es2015-duplicate-keys":"^6.6.0","babel-plugin-transform-es2015-for-of":"^6.6.0","babel-plugin-transform-es2015-function-name":"^6.3.13","babel-plugin-transform-es2015-literals":"^6.3.13","babel-plugin-transform-es2015-modules-amd":"^6.8.0","babel-plugin-transform-es2015-modules-commonjs":"^6.6.0","babel-plugin-transform-es2015-modules-systemjs":"^6.12.0","babel-plugin-transform-es2015-modules-umd":"^6.12.0","babel-plugin-transform-es2015-object-super":"^6.3.13","babel-plugin-transform-es2015-parameters":"^6.6.0","babel-plugin-transform-es2015-shorthand-properties":"^6.3.13","babel-plugin-transform-es2015-spread":"^6.3.13","babel-plugin-transform-es2015-sticky-regex":"^6.3.13","babel-plugin-transform-es2015-template-literals":"^6.6.0","babel-plugin-transform-es2015-typeof-symbol":"^6.6.0","babel-plugin-transform-es2015-unicode-regex":"^6.3.13","babel-plugin-transform-es3-member-expression-literals":"^6.3.13","babel-plugin-transform-es3-property-literals":"^6.3.13","babel-plugin-transform-es5-property-mutators":"^6.3.13","babel-plugin-transform-exponentiation-operator":"^6.8.0","babel-plugin-transform-export-extensions":"^6.8.0","babel-plugin-transform-function-bind":"^6.8.0","babel-plugin-transform-object-rest-spread":"^6.8.0","babel-plugin-transform-proto-to-assign":"^6.9.0","babel-plugin-transform-regenerator":"^6.6.0"},"devDependencies":{"babel-cli":"^6.11.4","babel-eslint":"^6.1.2","babel-plugin-transform-flow-strip-types":"^6.8.0","babel-preset-es2015":"^6.14.0","babel-register":"^6.14.0","eslint":"^3.3.1","eslint-config-babel":"^1.0.1","eslint-plugin-babel":"^3.3.0","eslint-plugin-flow-vars":"^0.5.0","mocha":"^3.0.2"},"babel":{"presets":[["es2015",{"loose":true}]],"plugins":["transform-class-properties","transform-flow-strip-types"]},"eslint":{"extends":"babel","parserOptions":{"ecmaVersion":7,"sourceType":"module"},"rules":{"max-len":0}},"gitHead":"cec38664925a00949df2781e9798d5f9e4bbe58d","bugs":{"url":"https://github.com/babel/babel-preset-env/issues"},"_id":"babel-preset-env@0.0.1","_shasum":"641098a2bc56d28236bf702d6caf5a93e566fe7f","_from":".","_npmVersion":"3.10.6","_nodeVersion":"5.11.1","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"641098a2bc56d28236bf702d6caf5a93e566fe7f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-preset-env/-/babel-preset-env-0.0.1.tgz"},"maintainers":[{"name":"hzoo","email":"hi@henryzoo.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/babel-preset-env-0.0.1.tgz_1473133597617_0.43822177965193987"},"directories":{}},"0.0.2":{"name":"babel-preset-env","version":"0.0.2","description":"A Babel preset for each environment.","author":{"name":"Henry Zhu","email":"hi@henryzoo.com"},"homepage":"https://babeljs.io/","license":"MIT","repository":{"type":"git","url":"git+https://github.com/babel/babel-preset-env.git"},"main":"lib/index.js","scripts":{"build":"babel src -d lib","dev":"babel -w src -d lib","lint":"eslint src test","fix":"eslint src test --fix","ci":"npm run lint && npm run test","prepublish":"npm run build","test":"mocha ./test --compilers js:babel-register"},"dependencies":{"babel-plugin-check-es2015-constants":"^6.3.13","babel-plugin-syntax-trailing-function-commas":"^6.13.0","babel-plugin-transform-async-to-generator":"^6.8.0","babel-plugin-transform-class-properties":"^6.11.5","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-do-expressions":"^6.8.0","babel-plugin-transform-es2015-arrow-functions":"^6.3.13","babel-plugin-transform-es2015-block-scoped-functions":"^6.3.13","babel-plugin-transform-es2015-block-scoping":"^6.6.0","babel-plugin-transform-es2015-classes":"^6.6.0","babel-plugin-transform-es2015-computed-properties":"^6.3.13","babel-plugin-transform-es2015-destructuring":"^6.6.0","babel-plugin-transform-es2015-duplicate-keys":"^6.6.0","babel-plugin-transform-es2015-for-of":"^6.6.0","babel-plugin-transform-es2015-function-name":"^6.3.13","babel-plugin-transform-es2015-literals":"^6.3.13","babel-plugin-transform-es2015-modules-amd":"^6.8.0","babel-plugin-transform-es2015-modules-commonjs":"^6.6.0","babel-plugin-transform-es2015-modules-systemjs":"^6.12.0","babel-plugin-transform-es2015-modules-umd":"^6.12.0","babel-plugin-transform-es2015-object-super":"^6.3.13","babel-plugin-transform-es2015-parameters":"^6.6.0","babel-plugin-transform-es2015-shorthand-properties":"^6.3.13","babel-plugin-transform-es2015-spread":"^6.3.13","babel-plugin-transform-es2015-sticky-regex":"^6.3.13","babel-plugin-transform-es2015-template-literals":"^6.6.0","babel-plugin-transform-es2015-typeof-symbol":"^6.6.0","babel-plugin-transform-es2015-unicode-regex":"^6.3.13","babel-plugin-transform-es3-member-expression-literals":"^6.3.13","babel-plugin-transform-es3-property-literals":"^6.3.13","babel-plugin-transform-es5-property-mutators":"^6.3.13","babel-plugin-transform-exponentiation-operator":"^6.8.0","babel-plugin-transform-export-extensions":"^6.8.0","babel-plugin-transform-function-bind":"^6.8.0","babel-plugin-transform-object-rest-spread":"^6.8.0","babel-plugin-transform-proto-to-assign":"^6.9.0","babel-plugin-transform-regenerator":"^6.6.0"},"devDependencies":{"babel-cli":"^6.11.4","babel-eslint":"^6.1.2","babel-plugin-transform-flow-strip-types":"^6.8.0","babel-preset-es2015":"^6.14.0","babel-register":"^6.14.0","eslint":"^3.3.1","eslint-config-babel":"^1.0.1","eslint-plugin-babel":"^3.3.0","eslint-plugin-flow-vars":"^0.5.0","mocha":"^3.0.2"},"babel":{"presets":[["es2015",{"loose":true}]],"plugins":["transform-class-properties","transform-flow-strip-types"]},"eslint":{"extends":"babel","parserOptions":{"ecmaVersion":7,"sourceType":"module"},"rules":{"max-len":0}},"gitHead":"f8a2af13ec9c473ffdd215c6cc388e010c9acb77","bugs":{"url":"https://github.com/babel/babel-preset-env/issues"},"_id":"babel-preset-env@0.0.2","_shasum":"54b25e4a64b49bc01ba7e207232da57568ba3d13","_from":".","_npmVersion":"3.10.8","_nodeVersion":"5.11.1","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"54b25e4a64b49bc01ba7e207232da57568ba3d13","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-preset-env/-/babel-preset-env-0.0.2.tgz"},"maintainers":[{"name":"hzoo","email":"hi@henryzoo.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/babel-preset-env-0.0.2.tgz_1475271691760_0.5188503880053759"},"directories":{}},"0.0.3":{"name":"babel-preset-env","version":"0.0.3","description":"A Babel preset for each environment.","author":{"name":"Henry Zhu","email":"hi@henryzoo.com"},"homepage":"https://babeljs.io/","license":"MIT","repository":{"type":"git","url":"git+https://github.com/babel/babel-preset-env.git"},"main":"lib/index.js","scripts":{"build":"babel src -d lib","build-data":"babel-node ./scripts/build-data.js","dev":"babel -w src -d lib","lint":"eslint scripts src test","fix":"eslint scripts src test --fix","ci":"npm run lint && npm run test","prepublish":"npm run build","test":"mocha ./test --compilers js:babel-register"},"dependencies":{"babel-plugin-check-es2015-constants":"^6.3.13","babel-plugin-syntax-trailing-function-commas":"^6.13.0","babel-plugin-transform-async-to-generator":"^6.8.0","babel-plugin-transform-es2015-arrow-functions":"^6.3.13","babel-plugin-transform-es2015-block-scoped-functions":"^6.3.13","babel-plugin-transform-es2015-block-scoping":"^6.6.0","babel-plugin-transform-es2015-classes":"^6.6.0","babel-plugin-transform-es2015-computed-properties":"^6.3.13","babel-plugin-transform-es2015-destructuring":"^6.6.0","babel-plugin-transform-es2015-duplicate-keys":"^6.6.0","babel-plugin-transform-es2015-for-of":"^6.6.0","babel-plugin-transform-es2015-function-name":"^6.3.13","babel-plugin-transform-es2015-literals":"^6.3.13","babel-plugin-transform-es2015-modules-amd":"^6.8.0","babel-plugin-transform-es2015-modules-commonjs":"^6.6.0","babel-plugin-transform-es2015-modules-systemjs":"^6.12.0","babel-plugin-transform-es2015-modules-umd":"^6.12.0","babel-plugin-transform-es2015-object-super":"^6.3.13","babel-plugin-transform-es2015-parameters":"^6.6.0","babel-plugin-transform-es2015-shorthand-properties":"^6.3.13","babel-plugin-transform-es2015-spread":"^6.3.13","babel-plugin-transform-es2015-sticky-regex":"^6.3.13","babel-plugin-transform-es2015-template-literals":"^6.6.0","babel-plugin-transform-es2015-typeof-symbol":"^6.6.0","babel-plugin-transform-es2015-unicode-regex":"^6.3.13","babel-plugin-transform-exponentiation-operator":"^6.8.0","babel-plugin-transform-regenerator":"^6.6.0"},"devDependencies":{"babel-cli":"^6.11.4","babel-eslint":"^6.1.2","babel-plugin-transform-flow-strip-types":"^6.8.0","babel-preset-es2015":"^6.14.0","babel-register":"^6.14.0","compat-table":"github:hzoo/compat-table#node-fix","eslint":"^3.3.1","eslint-config-babel":"^1.0.1","eslint-plugin-babel":"^3.3.0","eslint-plugin-flow-vars":"^0.5.0","lodash":"^4.15.0","mocha":"^3.0.2","natural-compare":"^1.4.0"},"babel":{"presets":[["es2015",{"loose":true}]],"plugins":["transform-flow-strip-types"]},"eslintConfig":{"extends":"babel","parserOptions":{"ecmaVersion":7,"sourceType":"module"},"rules":{"max-len":0}},"gitHead":"de8a3fa760c5cf88aff9f85d33beb3e9411abc0c","bugs":{"url":"https://github.com/babel/babel-preset-env/issues"},"_id":"babel-preset-env@0.0.3","_shasum":"311955e9fa63237bbbd2d282995292b873bae2c5","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"311955e9fa63237bbbd2d282995292b873bae2c5","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-preset-env/-/babel-preset-env-0.0.3.tgz"},"maintainers":[{"name":"hzoo","email":"hi@henryzoo.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/babel-preset-env-0.0.3.tgz_1475809815001_0.5587761916685849"},"directories":{}},"0.0.4":{"name":"babel-preset-env","version":"0.0.4","description":"A Babel preset for each environment.","author":{"name":"Henry Zhu","email":"hi@henryzoo.com"},"homepage":"https://babeljs.io/","license":"MIT","repository":{"type":"git","url":"git+https://github.com/babel/babel-preset-env.git"},"main":"lib/index.js","scripts":{"build":"babel src -d lib","build-data":"babel-node ./scripts/build-data.js","dev":"babel -w src -d lib","lint":"eslint scripts src test","fix":"eslint scripts src test --fix","ci":"npm run lint && npm run test","prepublish":"npm run build","test":"mocha ./test --compilers js:babel-register"},"dependencies":{"babel-plugin-check-es2015-constants":"^6.3.13","babel-plugin-syntax-trailing-function-commas":"^6.13.0","babel-plugin-transform-async-to-generator":"^6.8.0","babel-plugin-transform-es2015-arrow-functions":"^6.3.13","babel-plugin-transform-es2015-block-scoped-functions":"^6.3.13","babel-plugin-transform-es2015-block-scoping":"^6.6.0","babel-plugin-transform-es2015-classes":"^6.6.0","babel-plugin-transform-es2015-computed-properties":"^6.3.13","babel-plugin-transform-es2015-destructuring":"^6.6.0","babel-plugin-transform-es2015-duplicate-keys":"^6.6.0","babel-plugin-transform-es2015-for-of":"^6.6.0","babel-plugin-transform-es2015-function-name":"^6.3.13","babel-plugin-transform-es2015-literals":"^6.3.13","babel-plugin-transform-es2015-modules-amd":"^6.8.0","babel-plugin-transform-es2015-modules-commonjs":"^6.6.0","babel-plugin-transform-es2015-modules-systemjs":"^6.12.0","babel-plugin-transform-es2015-modules-umd":"^6.12.0","babel-plugin-transform-es2015-object-super":"^6.3.13","babel-plugin-transform-es2015-parameters":"^6.6.0","babel-plugin-transform-es2015-shorthand-properties":"^6.3.13","babel-plugin-transform-es2015-spread":"^6.3.13","babel-plugin-transform-es2015-sticky-regex":"^6.3.13","babel-plugin-transform-es2015-template-literals":"^6.6.0","babel-plugin-transform-es2015-typeof-symbol":"^6.6.0","babel-plugin-transform-es2015-unicode-regex":"^6.3.13","babel-plugin-transform-exponentiation-operator":"^6.8.0","babel-plugin-transform-regenerator":"^6.6.0"},"devDependencies":{"babel-cli":"^6.11.4","babel-eslint":"^6.1.2","babel-plugin-transform-flow-strip-types":"^6.8.0","babel-preset-es2015":"^6.14.0","babel-register":"^6.14.0","compat-table":"github:hzoo/compat-table#node-fix","eslint":"^3.3.1","eslint-config-babel":"^1.0.1","eslint-plugin-babel":"^3.3.0","eslint-plugin-flow-vars":"^0.5.0","lodash":"^4.15.0","mocha":"^3.0.2","natural-compare":"^1.4.0"},"babel":{"presets":[["es2015",{"loose":true}]],"plugins":["transform-flow-strip-types"]},"eslintConfig":{"extends":"babel","parserOptions":{"ecmaVersion":7,"sourceType":"module"},"rules":{"max-len":0}},"gitHead":"c316c4d26a7ecd047df4c48aaa82d06e99e1ba13","bugs":{"url":"https://github.com/babel/babel-preset-env/issues"},"_id":"babel-preset-env@0.0.4","_shasum":"92443d18c882406588ad218fc585d7706a0bf32b","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"92443d18c882406588ad218fc585d7706a0bf32b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-preset-env/-/babel-preset-env-0.0.4.tgz"},"maintainers":[{"name":"hzoo","email":"hi@henryzoo.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/babel-preset-env-0.0.4.tgz_1475812563143_0.21367805148474872"},"directories":{}},"0.0.5":{"name":"babel-preset-env","version":"0.0.5","description":"A Babel preset for each environment.","author":{"name":"Henry Zhu","email":"hi@henryzoo.com"},"homepage":"https://babeljs.io/","license":"MIT","repository":{"type":"git","url":"git+https://github.com/babel/babel-preset-env.git"},"main":"lib/index.js","scripts":{"build":"babel src -d lib","build-data":"babel-node ./scripts/build-data.js","dev":"babel -w src -d lib","lint":"eslint scripts src test","fix":"eslint scripts src test --fix","ci":"npm run lint && npm run test","prepublish":"npm run build","test":"mocha ./test --compilers js:babel-register"},"dependencies":{"babel-plugin-check-es2015-constants":"^6.3.13","babel-plugin-syntax-trailing-function-commas":"^6.13.0","babel-plugin-transform-async-to-generator":"^6.8.0","babel-plugin-transform-es2015-arrow-functions":"^6.3.13","babel-plugin-transform-es2015-block-scoped-functions":"^6.3.13","babel-plugin-transform-es2015-block-scoping":"^6.6.0","babel-plugin-transform-es2015-classes":"^6.6.0","babel-plugin-transform-es2015-computed-properties":"^6.3.13","babel-plugin-transform-es2015-destructuring":"^6.6.0","babel-plugin-transform-es2015-duplicate-keys":"^6.6.0","babel-plugin-transform-es2015-for-of":"^6.6.0","babel-plugin-transform-es2015-function-name":"^6.3.13","babel-plugin-transform-es2015-literals":"^6.3.13","babel-plugin-transform-es2015-modules-amd":"^6.8.0","babel-plugin-transform-es2015-modules-commonjs":"^6.6.0","babel-plugin-transform-es2015-modules-systemjs":"^6.12.0","babel-plugin-transform-es2015-modules-umd":"^6.12.0","babel-plugin-transform-es2015-object-super":"^6.3.13","babel-plugin-transform-es2015-parameters":"^6.6.0","babel-plugin-transform-es2015-shorthand-properties":"^6.3.13","babel-plugin-transform-es2015-spread":"^6.3.13","babel-plugin-transform-es2015-sticky-regex":"^6.3.13","babel-plugin-transform-es2015-template-literals":"^6.6.0","babel-plugin-transform-es2015-typeof-symbol":"^6.6.0","babel-plugin-transform-es2015-unicode-regex":"^6.3.13","babel-plugin-transform-exponentiation-operator":"^6.8.0","babel-plugin-transform-regenerator":"^6.6.0","browserslist":"^1.4.0"},"devDependencies":{"babel-cli":"^6.11.4","babel-eslint":"^6.1.2","babel-plugin-transform-flow-strip-types":"^6.8.0","babel-preset-es2015":"^6.14.0","babel-register":"^6.14.0","compat-table":"github:kangax/compat-table#gh-pages","eslint":"^3.3.1","eslint-config-babel":"^1.0.1","eslint-plugin-babel":"^3.3.0","eslint-plugin-flow-vars":"^0.5.0","lodash":"^4.15.0","mocha":"^3.0.2","natural-compare":"^1.4.0"},"babel":{"presets":[["es2015",{"loose":true}]],"plugins":["transform-flow-strip-types"]},"eslintConfig":{"extends":"babel","parserOptions":{"ecmaVersion":7,"sourceType":"module"},"rules":{"max-len":0}},"gitHead":"f86a27a33ef9c17bd4946f49baffbc426ea53169","bugs":{"url":"https://github.com/babel/babel-preset-env/issues"},"_id":"babel-preset-env@0.0.5","_shasum":"b36f518d92f0a6c728eccbca7f6bcd828675357a","_from":".","_npmVersion":"3.10.8","_nodeVersion":"5.11.1","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"b36f518d92f0a6c728eccbca7f6bcd828675357a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-preset-env/-/babel-preset-env-0.0.5.tgz"},"maintainers":[{"name":"hzoo","email":"hi@henryzoo.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/babel-preset-env-0.0.5.tgz_1476325112863_0.1631905590184033"},"directories":{}},"0.0.6":{"name":"babel-preset-env","version":"0.0.6","description":"A Babel preset for each environment.","author":{"name":"Henry Zhu","email":"hi@henryzoo.com"},"homepage":"https://babeljs.io/","license":"MIT","repository":{"type":"git","url":"git+https://github.com/babel/babel-preset-env.git"},"main":"lib/index.js","scripts":{"build":"babel src -d lib","build-data":"babel-node ./scripts/build-data.js","dev":"babel -w src -d lib","lint":"eslint scripts src test","fix":"eslint scripts src test --fix","ci":"npm run lint && npm run test","prepublish":"npm run build","test":"mocha ./test --compilers js:babel-register"},"dependencies":{"babel-plugin-check-es2015-constants":"^6.3.13","babel-plugin-syntax-trailing-function-commas":"^6.13.0","babel-plugin-transform-async-to-generator":"^6.8.0","babel-plugin-transform-es2015-arrow-functions":"^6.3.13","babel-plugin-transform-es2015-block-scoped-functions":"^6.3.13","babel-plugin-transform-es2015-block-scoping":"^6.6.0","babel-plugin-transform-es2015-classes":"^6.6.0","babel-plugin-transform-es2015-computed-properties":"^6.3.13","babel-plugin-transform-es2015-destructuring":"^6.6.0","babel-plugin-transform-es2015-duplicate-keys":"^6.6.0","babel-plugin-transform-es2015-for-of":"^6.6.0","babel-plugin-transform-es2015-function-name":"^6.3.13","babel-plugin-transform-es2015-literals":"^6.3.13","babel-plugin-transform-es2015-modules-amd":"^6.8.0","babel-plugin-transform-es2015-modules-commonjs":"^6.6.0","babel-plugin-transform-es2015-modules-systemjs":"^6.12.0","babel-plugin-transform-es2015-modules-umd":"^6.12.0","babel-plugin-transform-es2015-object-super":"^6.3.13","babel-plugin-transform-es2015-parameters":"^6.6.0","babel-plugin-transform-es2015-shorthand-properties":"^6.3.13","babel-plugin-transform-es2015-spread":"^6.3.13","babel-plugin-transform-es2015-sticky-regex":"^6.3.13","babel-plugin-transform-es2015-template-literals":"^6.6.0","babel-plugin-transform-es2015-typeof-symbol":"^6.6.0","babel-plugin-transform-es2015-unicode-regex":"^6.3.13","babel-plugin-transform-exponentiation-operator":"^6.8.0","babel-plugin-transform-regenerator":"^6.6.0","browserslist":"^1.4.0"},"devDependencies":{"babel-cli":"^6.11.4","babel-eslint":"^6.1.2","babel-plugin-transform-flow-strip-types":"^6.8.0","babel-preset-es2015":"^6.14.0","babel-register":"^6.14.0","compat-table":"github:kangax/compat-table#gh-pages","eslint":"^3.3.1","eslint-config-babel":"^1.0.1","eslint-plugin-babel":"^3.3.0","eslint-plugin-flow-vars":"^0.5.0","lodash":"^4.15.0","mocha":"^3.0.2","natural-compare":"^1.4.0"},"babel":{"presets":[["es2015",{"loose":true}]],"plugins":["transform-flow-strip-types"]},"eslintConfig":{"extends":"babel","parserOptions":{"ecmaVersion":7,"sourceType":"module"},"rules":{"max-len":0}},"gitHead":"f578a857d1cae1526a93f027e212b7fa696cff1e","bugs":{"url":"https://github.com/babel/babel-preset-env/issues"},"_id":"babel-preset-env@0.0.6","_shasum":"cda63a020069098fad12272a7a447a7c5bafb3c8","_from":".","_npmVersion":"3.10.8","_nodeVersion":"5.11.1","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"cda63a020069098fad12272a7a447a7c5bafb3c8","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-preset-env/-/babel-preset-env-0.0.6.tgz"},"maintainers":[{"name":"hzoo","email":"hi@henryzoo.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/babel-preset-env-0.0.6.tgz_1476325291496_0.4476420951541513"},"directories":{}},"0.0.7":{"name":"babel-preset-env","version":"0.0.7","description":"A Babel preset for each environment.","author":{"name":"Henry Zhu","email":"hi@henryzoo.com"},"homepage":"https://babeljs.io/","license":"MIT","repository":{"type":"git","url":"git+https://github.com/babel/babel-preset-env.git"},"main":"lib/index.js","scripts":{"build":"babel src -d lib","build-data":"babel-node ./scripts/build-data.js","dev":"babel -w src -d lib","lint":"eslint scripts src test","fix":"eslint scripts src test --fix","ci":"npm run test","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","test":"npm run build && mocha ./test --compilers js:babel-register -t 5000"},"dependencies":{"babel-plugin-check-es2015-constants":"^6.3.13","babel-plugin-syntax-trailing-function-commas":"^6.13.0","babel-plugin-transform-async-to-generator":"^6.8.0","babel-plugin-transform-es2015-arrow-functions":"^6.3.13","babel-plugin-transform-es2015-block-scoped-functions":"^6.3.13","babel-plugin-transform-es2015-block-scoping":"^6.6.0","babel-plugin-transform-es2015-classes":"^6.6.0","babel-plugin-transform-es2015-computed-properties":"^6.3.13","babel-plugin-transform-es2015-destructuring":"^6.6.0","babel-plugin-transform-es2015-duplicate-keys":"^6.6.0","babel-plugin-transform-es2015-for-of":"^6.6.0","babel-plugin-transform-es2015-function-name":"^6.3.13","babel-plugin-transform-es2015-literals":"^6.3.13","babel-plugin-transform-es2015-modules-amd":"^6.8.0","babel-plugin-transform-es2015-modules-commonjs":"^6.6.0","babel-plugin-transform-es2015-modules-systemjs":"^6.12.0","babel-plugin-transform-es2015-modules-umd":"^6.12.0","babel-plugin-transform-es2015-object-super":"^6.3.13","babel-plugin-transform-es2015-parameters":"^6.6.0","babel-plugin-transform-es2015-shorthand-properties":"^6.3.13","babel-plugin-transform-es2015-spread":"^6.3.13","babel-plugin-transform-es2015-sticky-regex":"^6.3.13","babel-plugin-transform-es2015-template-literals":"^6.6.0","babel-plugin-transform-es2015-typeof-symbol":"^6.6.0","babel-plugin-transform-es2015-unicode-regex":"^6.3.13","babel-plugin-transform-exponentiation-operator":"^6.8.0","babel-plugin-transform-regenerator":"^6.6.0","browserslist":"^1.4.0"},"devDependencies":{"babel-cli":"^6.11.4","babel-eslint":"^6.1.2","babel-helper-plugin-test-runner":"^6.18.0","babel-plugin-transform-flow-strip-types":"^6.8.0","babel-preset-es2015":"^6.14.0","babel-register":"^6.14.0","compat-table":"github:kangax/compat-table#gh-pages","eslint":"^3.3.1","eslint-config-babel":"^1.0.1","eslint-plugin-babel":"^3.3.0","eslint-plugin-flow-vars":"^0.5.0","lodash":"^4.15.0","mocha":"^3.0.2"},"babel":{"presets":[["es2015",{"loose":true}]],"plugins":["transform-flow-strip-types"]},"eslintConfig":{"extends":"babel","parserOptions":{"ecmaVersion":7,"sourceType":"module"},"rules":{"max-len":0},"env":{"mocha":true}},"gitHead":"49229104e449455363d12d031ce81601aa6403b3","bugs":{"url":"https://github.com/babel/babel-preset-env/issues"},"_id":"babel-preset-env@0.0.7","_shasum":"c3026e3022f1014c400d6ae7fe002e0e1cdb8661","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"c3026e3022f1014c400d6ae7fe002e0e1cdb8661","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-preset-env/-/babel-preset-env-0.0.7.tgz"},"maintainers":[{"name":"hzoo","email":"hi@henryzoo.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/babel-preset-env-0.0.7.tgz_1478127651138_0.1458547890651971"},"directories":{}},"0.0.8":{"name":"babel-preset-env","version":"0.0.8","description":"A Babel preset for each environment.","author":{"name":"Henry Zhu","email":"hi@henryzoo.com"},"homepage":"https://babeljs.io/","license":"MIT","repository":{"type":"git","url":"git+https://github.com/babel/babel-preset-env.git"},"main":"lib/index.js","scripts":{"build":"babel src -d lib","build-data":"babel-node ./scripts/build-data.js","dev":"babel -w src -d lib","lint":"eslint scripts src test","fix":"eslint scripts src test --fix","ci":"npm run test","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","test":"npm run build && mocha ./test --compilers js:babel-register -t 5000"},"dependencies":{"babel-plugin-check-es2015-constants":"^6.3.13","babel-plugin-syntax-trailing-function-commas":"^6.13.0","babel-plugin-transform-async-to-generator":"^6.8.0","babel-plugin-transform-es2015-arrow-functions":"^6.3.13","babel-plugin-transform-es2015-block-scoped-functions":"^6.3.13","babel-plugin-transform-es2015-block-scoping":"^6.6.0","babel-plugin-transform-es2015-classes":"^6.6.0","babel-plugin-transform-es2015-computed-properties":"^6.3.13","babel-plugin-transform-es2015-destructuring":"^6.6.0","babel-plugin-transform-es2015-duplicate-keys":"^6.6.0","babel-plugin-transform-es2015-for-of":"^6.6.0","babel-plugin-transform-es2015-function-name":"^6.3.13","babel-plugin-transform-es2015-literals":"^6.3.13","babel-plugin-transform-es2015-modules-amd":"^6.8.0","babel-plugin-transform-es2015-modules-commonjs":"^6.6.0","babel-plugin-transform-es2015-modules-systemjs":"^6.12.0","babel-plugin-transform-es2015-modules-umd":"^6.12.0","babel-plugin-transform-es2015-object-super":"^6.3.13","babel-plugin-transform-es2015-parameters":"^6.6.0","babel-plugin-transform-es2015-shorthand-properties":"^6.3.13","babel-plugin-transform-es2015-spread":"^6.3.13","babel-plugin-transform-es2015-sticky-regex":"^6.3.13","babel-plugin-transform-es2015-template-literals":"^6.6.0","babel-plugin-transform-es2015-typeof-symbol":"^6.6.0","babel-plugin-transform-es2015-unicode-regex":"^6.3.13","babel-plugin-transform-exponentiation-operator":"^6.8.0","babel-plugin-transform-regenerator":"^6.6.0","browserslist":"^1.4.0"},"devDependencies":{"babel-cli":"^6.11.4","babel-eslint":"^6.1.2","babel-helper-plugin-test-runner":"^6.18.0","babel-plugin-transform-flow-strip-types":"^6.8.0","babel-preset-es2015":"^6.14.0","babel-register":"^6.14.0","compat-table":"github:kangax/compat-table#gh-pages","eslint":"^3.3.1","eslint-config-babel":"^1.0.1","eslint-plugin-babel":"^3.3.0","eslint-plugin-flow-vars":"^0.5.0","lodash":"^4.15.0","mocha":"^3.0.2"},"babel":{"presets":[["es2015",{"loose":true}]],"plugins":["transform-flow-strip-types"]},"eslintConfig":{"extends":"babel","parserOptions":{"ecmaVersion":7,"sourceType":"module"},"rules":{"max-len":0},"env":{"mocha":true}},"gitHead":"03a664d576c90fdd7633eb24b6f09394c2150824","bugs":{"url":"https://github.com/babel/babel-preset-env/issues"},"_id":"babel-preset-env@0.0.8","_shasum":"a7e37e4b345263d045cd29738a0aff1ce31f5b0e","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"a7e37e4b345263d045cd29738a0aff1ce31f5b0e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-preset-env/-/babel-preset-env-0.0.8.tgz"},"maintainers":[{"name":"hzoo","email":"hi@henryzoo.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/babel-preset-env-0.0.8.tgz_1479317314189_0.03786789043806493"},"directories":{}},"0.0.9":{"name":"babel-preset-env","version":"0.0.9","description":"A Babel preset for each environment.","author":{"name":"Henry Zhu","email":"hi@henryzoo.com"},"homepage":"https://babeljs.io/","license":"MIT","repository":{"type":"git","url":"git+https://github.com/babel/babel-preset-env.git"},"main":"lib/index.js","scripts":{"build":"babel src -d lib","build-data":"babel-node ./scripts/build-data.js","dev":"babel -w src -d lib","lint":"eslint scripts src test","fix":"eslint scripts src test --fix","ci":"npm run test","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","test":"npm run build && mocha ./test --compilers js:babel-register -t 5000"},"dependencies":{"babel-plugin-check-es2015-constants":"^6.3.13","babel-plugin-syntax-trailing-function-commas":"^6.13.0","babel-plugin-transform-async-to-generator":"^6.8.0","babel-plugin-transform-es2015-arrow-functions":"^6.3.13","babel-plugin-transform-es2015-block-scoped-functions":"^6.3.13","babel-plugin-transform-es2015-block-scoping":"^6.6.0","babel-plugin-transform-es2015-classes":"^6.6.0","babel-plugin-transform-es2015-computed-properties":"^6.3.13","babel-plugin-transform-es2015-destructuring":"^6.6.0","babel-plugin-transform-es2015-duplicate-keys":"^6.6.0","babel-plugin-transform-es2015-for-of":"^6.6.0","babel-plugin-transform-es2015-function-name":"^6.3.13","babel-plugin-transform-es2015-literals":"^6.3.13","babel-plugin-transform-es2015-modules-amd":"^6.8.0","babel-plugin-transform-es2015-modules-commonjs":"^6.6.0","babel-plugin-transform-es2015-modules-systemjs":"^6.12.0","babel-plugin-transform-es2015-modules-umd":"^6.12.0","babel-plugin-transform-es2015-object-super":"^6.3.13","babel-plugin-transform-es2015-parameters":"^6.6.0","babel-plugin-transform-es2015-shorthand-properties":"^6.3.13","babel-plugin-transform-es2015-spread":"^6.3.13","babel-plugin-transform-es2015-sticky-regex":"^6.3.13","babel-plugin-transform-es2015-template-literals":"^6.6.0","babel-plugin-transform-es2015-typeof-symbol":"^6.6.0","babel-plugin-transform-es2015-unicode-regex":"^6.3.13","babel-plugin-transform-exponentiation-operator":"^6.8.0","babel-plugin-transform-regenerator":"^6.6.0","browserslist":"^1.4.0"},"devDependencies":{"babel-cli":"^6.11.4","babel-eslint":"^6.1.2","babel-helper-plugin-test-runner":"^6.18.0","babel-plugin-transform-flow-strip-types":"^6.8.0","babel-preset-es2015":"^6.14.0","babel-register":"^6.14.0","compat-table":"github:kangax/compat-table#e732718eab42c6c83a364450f456474638d31f94","eslint":"^3.3.1","eslint-config-babel":"^1.0.1","eslint-plugin-babel":"^3.3.0","eslint-plugin-flow-vars":"^0.5.0","lodash":"^4.15.0","mocha":"^3.0.2"},"babel":{"presets":[["es2015",{"loose":true}]],"plugins":["transform-flow-strip-types"]},"eslintConfig":{"extends":"babel","parserOptions":{"ecmaVersion":7,"sourceType":"module"},"rules":{"max-len":0},"env":{"mocha":true}},"gitHead":"7b91dde37742c0b5b94b90c260214ac52e99ae04","bugs":{"url":"https://github.com/babel/babel-preset-env/issues"},"_id":"babel-preset-env@0.0.9","_shasum":"7ca6128a3c7ea1c839a535e6e98fa2f14557c349","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"7ca6128a3c7ea1c839a535e6e98fa2f14557c349","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-preset-env/-/babel-preset-env-0.0.9.tgz"},"maintainers":[{"name":"hzoo","email":"hi@henryzoo.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/babel-preset-env-0.0.9.tgz_1480020926523_0.46605116594582796"},"directories":{}},"1.0.0":{"name":"babel-preset-env","version":"1.0.0","description":"A Babel preset for each environment.","author":{"name":"Henry Zhu","email":"hi@henryzoo.com"},"homepage":"https://babeljs.io/","license":"MIT","repository":{"type":"git","url":"git+https://github.com/babel/babel-preset-env.git"},"main":"lib/index.js","scripts":{"build":"babel src -d lib","build-data":"babel-node ./scripts/build-data.js","dev":"babel -w src -d lib","lint":"eslint scripts src test","fix":"eslint scripts src test --fix","ci":"npm run test","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","test":"npm run build && mocha ./test --compilers js:babel-register -t 5000"},"dependencies":{"babel-plugin-check-es2015-constants":"^6.3.13","babel-plugin-syntax-trailing-function-commas":"^6.13.0","babel-plugin-transform-async-to-generator":"^6.8.0","babel-plugin-transform-es2015-arrow-functions":"^6.3.13","babel-plugin-transform-es2015-block-scoped-functions":"^6.3.13","babel-plugin-transform-es2015-block-scoping":"^6.6.0","babel-plugin-transform-es2015-classes":"^6.6.0","babel-plugin-transform-es2015-computed-properties":"^6.3.13","babel-plugin-transform-es2015-destructuring":"^6.6.0","babel-plugin-transform-es2015-duplicate-keys":"^6.6.0","babel-plugin-transform-es2015-for-of":"^6.6.0","babel-plugin-transform-es2015-function-name":"^6.3.13","babel-plugin-transform-es2015-literals":"^6.3.13","babel-plugin-transform-es2015-modules-amd":"^6.8.0","babel-plugin-transform-es2015-modules-commonjs":"^6.6.0","babel-plugin-transform-es2015-modules-systemjs":"^6.12.0","babel-plugin-transform-es2015-modules-umd":"^6.12.0","babel-plugin-transform-es2015-object-super":"^6.3.13","babel-plugin-transform-es2015-parameters":"^6.6.0","babel-plugin-transform-es2015-shorthand-properties":"^6.3.13","babel-plugin-transform-es2015-spread":"^6.3.13","babel-plugin-transform-es2015-sticky-regex":"^6.3.13","babel-plugin-transform-es2015-template-literals":"^6.6.0","babel-plugin-transform-es2015-typeof-symbol":"^6.6.0","babel-plugin-transform-es2015-unicode-regex":"^6.3.13","babel-plugin-transform-exponentiation-operator":"^6.8.0","babel-plugin-transform-regenerator":"^6.6.0","browserslist":"^1.4.0"},"devDependencies":{"babel-cli":"^6.11.4","babel-eslint":"^6.1.2","babel-helper-plugin-test-runner":"^6.18.0","babel-plugin-transform-flow-strip-types":"^6.8.0","babel-preset-es2015":"^6.14.0","babel-register":"^6.14.0","compat-table":"github:kangax/compat-table#e732718eab42c6c83a364450f456474638d31f94","eslint":"^3.3.1","eslint-config-babel":"^1.0.1","eslint-plugin-babel":"^3.3.0","eslint-plugin-flow-vars":"^0.5.0","lodash":"^4.15.0","mocha":"^3.0.2"},"babel":{"presets":[["es2015",{"loose":true}]],"plugins":["transform-flow-strip-types"]},"eslintConfig":{"extends":"babel","parserOptions":{"ecmaVersion":7,"sourceType":"module"},"rules":{"max-len":0,"quotes":["error","double",{"avoidEscape":true}]},"env":{"mocha":true}},"gitHead":"e07b2da36057d5a3e8f2afc400d3211a7b53a9b2","bugs":{"url":"https://github.com/babel/babel-preset-env/issues"},"_id":"babel-preset-env@1.0.0","_shasum":"e78c7624491debeca1fecd933d2c2b69fed0eee9","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"e78c7624491debeca1fecd933d2c2b69fed0eee9","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-preset-env/-/babel-preset-env-1.0.0.tgz"},"maintainers":[{"name":"hzoo","email":"hi@henryzoo.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/babel-preset-env-1.0.0.tgz_1481316731803_0.060275630094110966"},"directories":{}},"1.0.1":{"name":"babel-preset-env","version":"1.0.1","description":"A Babel preset for each environment.","author":{"name":"Henry Zhu","email":"hi@henryzoo.com"},"homepage":"https://babeljs.io/","license":"MIT","repository":{"type":"git","url":"git+https://github.com/babel/babel-preset-env.git"},"main":"lib/index.js","scripts":{"build":"babel src -d lib","build-data":"babel-node ./scripts/build-data.js","dev":"babel -w src -d lib","lint":"eslint scripts src test","fix":"eslint scripts src test --fix","ci":"npm run test","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","test":"npm run build && mocha ./test --compilers js:babel-register -t 5000"},"dependencies":{"babel-plugin-check-es2015-constants":"^6.3.13","babel-plugin-syntax-trailing-function-commas":"^6.13.0","babel-plugin-transform-async-to-generator":"^6.8.0","babel-plugin-transform-es2015-arrow-functions":"^6.3.13","babel-plugin-transform-es2015-block-scoped-functions":"^6.3.13","babel-plugin-transform-es2015-block-scoping":"^6.6.0","babel-plugin-transform-es2015-classes":"^6.6.0","babel-plugin-transform-es2015-computed-properties":"^6.3.13","babel-plugin-transform-es2015-destructuring":"^6.6.0","babel-plugin-transform-es2015-duplicate-keys":"^6.6.0","babel-plugin-transform-es2015-for-of":"^6.6.0","babel-plugin-transform-es2015-function-name":"^6.3.13","babel-plugin-transform-es2015-literals":"^6.3.13","babel-plugin-transform-es2015-modules-amd":"^6.8.0","babel-plugin-transform-es2015-modules-commonjs":"^6.6.0","babel-plugin-transform-es2015-modules-systemjs":"^6.12.0","babel-plugin-transform-es2015-modules-umd":"^6.12.0","babel-plugin-transform-es2015-object-super":"^6.3.13","babel-plugin-transform-es2015-parameters":"^6.6.0","babel-plugin-transform-es2015-shorthand-properties":"^6.3.13","babel-plugin-transform-es2015-spread":"^6.3.13","babel-plugin-transform-es2015-sticky-regex":"^6.3.13","babel-plugin-transform-es2015-template-literals":"^6.6.0","babel-plugin-transform-es2015-typeof-symbol":"^6.6.0","babel-plugin-transform-es2015-unicode-regex":"^6.3.13","babel-plugin-transform-exponentiation-operator":"^6.8.0","babel-plugin-transform-regenerator":"^6.6.0","browserslist":"^1.4.0"},"devDependencies":{"babel-cli":"^6.11.4","babel-eslint":"^6.1.2","babel-helper-plugin-test-runner":"^6.18.0","babel-plugin-transform-flow-strip-types":"^6.8.0","babel-preset-es2015":"^6.14.0","babel-register":"^6.14.0","compat-table":"github:kangax/compat-table#e732718eab42c6c83a364450f456474638d31f94","eslint":"^3.3.1","eslint-config-babel":"^1.0.1","eslint-plugin-babel":"^3.3.0","eslint-plugin-flow-vars":"^0.5.0","lodash":"^4.15.0","mocha":"^3.0.2"},"babel":{"presets":[["es2015",{"loose":true}]],"plugins":["transform-flow-strip-types"]},"eslintConfig":{"extends":"babel","parserOptions":{"ecmaVersion":7,"sourceType":"module"},"rules":{"max-len":0,"quotes":["error","double",{"avoidEscape":true}]},"env":{"mocha":true}},"gitHead":"5aee448b371150b4fdbbc7ea439e5cec57702b08","bugs":{"url":"https://github.com/babel/babel-preset-env/issues"},"_id":"babel-preset-env@1.0.1","_shasum":"1d1945b80008ca395b69de0c88702a873b2f572d","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"1d1945b80008ca395b69de0c88702a873b2f572d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-preset-env/-/babel-preset-env-1.0.1.tgz"},"maintainers":[{"name":"hzoo","email":"hi@henryzoo.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/babel-preset-env-1.0.1.tgz_1481383232424_0.3687811307609081"},"directories":{}},"1.0.2":{"name":"babel-preset-env","version":"1.0.2","description":"A Babel preset for each environment.","author":{"name":"Henry Zhu","email":"hi@henryzoo.com"},"homepage":"https://babeljs.io/","license":"MIT","repository":{"type":"git","url":"git+https://github.com/babel/babel-preset-env.git"},"main":"lib/index.js","scripts":{"build":"babel src -d lib","build-data":"babel-node ./scripts/build-data.js","dev":"babel -w src -d lib","lint":"eslint scripts src test","fix":"eslint scripts src test --fix","ci":"npm run test","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","test":"npm run build && mocha ./test --compilers js:babel-register -t 5000"},"dependencies":{"babel-plugin-check-es2015-constants":"^6.3.13","babel-plugin-syntax-trailing-function-commas":"^6.13.0","babel-plugin-transform-async-to-generator":"^6.8.0","babel-plugin-transform-es2015-arrow-functions":"^6.3.13","babel-plugin-transform-es2015-block-scoped-functions":"^6.3.13","babel-plugin-transform-es2015-block-scoping":"^6.6.0","babel-plugin-transform-es2015-classes":"^6.6.0","babel-plugin-transform-es2015-computed-properties":"^6.3.13","babel-plugin-transform-es2015-destructuring":"^6.6.0","babel-plugin-transform-es2015-duplicate-keys":"^6.6.0","babel-plugin-transform-es2015-for-of":"^6.6.0","babel-plugin-transform-es2015-function-name":"^6.3.13","babel-plugin-transform-es2015-literals":"^6.3.13","babel-plugin-transform-es2015-modules-amd":"^6.8.0","babel-plugin-transform-es2015-modules-commonjs":"^6.6.0","babel-plugin-transform-es2015-modules-systemjs":"^6.12.0","babel-plugin-transform-es2015-modules-umd":"^6.12.0","babel-plugin-transform-es2015-object-super":"^6.3.13","babel-plugin-transform-es2015-parameters":"^6.6.0","babel-plugin-transform-es2015-shorthand-properties":"^6.3.13","babel-plugin-transform-es2015-spread":"^6.3.13","babel-plugin-transform-es2015-sticky-regex":"^6.3.13","babel-plugin-transform-es2015-template-literals":"^6.6.0","babel-plugin-transform-es2015-typeof-symbol":"^6.6.0","babel-plugin-transform-es2015-unicode-regex":"^6.3.13","babel-plugin-transform-exponentiation-operator":"^6.8.0","babel-plugin-transform-regenerator":"^6.6.0","browserslist":"^1.4.0"},"devDependencies":{"babel-cli":"^6.11.4","babel-eslint":"^6.1.2","babel-helper-plugin-test-runner":"^6.18.0","babel-plugin-transform-flow-strip-types":"^6.8.0","babel-preset-es2015":"^6.14.0","babel-register":"^6.14.0","compat-table":"github:kangax/compat-table#e732718eab42c6c83a364450f456474638d31f94","eslint":"^3.3.1","eslint-config-babel":"^1.0.1","eslint-plugin-babel":"^3.3.0","eslint-plugin-flow-vars":"^0.5.0","lodash":"^4.15.0","mocha":"^3.0.2"},"babel":{"presets":[["es2015",{"loose":true}]],"plugins":["transform-flow-strip-types"]},"eslintConfig":{"extends":"babel","parserOptions":{"ecmaVersion":7,"sourceType":"module"},"rules":{"max-len":0,"quotes":["error","double",{"avoidEscape":true}]},"env":{"mocha":true}},"gitHead":"33f7f978fbb892794d50849cbed85810517b399e","bugs":{"url":"https://github.com/babel/babel-preset-env/issues"},"_id":"babel-preset-env@1.0.2","_shasum":"5db2cb17030d1ceac9c78f66ed5ccd1c284949fa","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"5db2cb17030d1ceac9c78f66ed5ccd1c284949fa","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-preset-env/-/babel-preset-env-1.0.2.tgz"},"maintainers":[{"name":"hzoo","email":"hi@henryzoo.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/babel-preset-env-1.0.2.tgz_1481387652640_0.2572534449864179"},"directories":{}},"1.1.0":{"name":"babel-preset-env","version":"1.1.0","description":"A Babel preset for each environment.","author":{"name":"Henry Zhu","email":"hi@henryzoo.com"},"homepage":"https://babeljs.io/","license":"MIT","repository":{"type":"git","url":"git+https://github.com/babel/babel-preset-env.git"},"main":"lib/index.js","scripts":{"build":"rimraf lib && babel src -d lib","build-data":"node ./scripts/build-data.js","dev":"babel -w src -d lib","lint":"eslint .","fix":"eslint . --fix","ci":"npm run test","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","test":"npm run build && mocha ./test --compilers js:babel-register -t 5000"},"dependencies":{"babel-plugin-check-es2015-constants":"^6.3.13","babel-plugin-syntax-trailing-function-commas":"^6.13.0","babel-plugin-transform-async-to-generator":"^6.8.0","babel-plugin-transform-es2015-arrow-functions":"^6.3.13","babel-plugin-transform-es2015-block-scoped-functions":"^6.3.13","babel-plugin-transform-es2015-block-scoping":"^6.6.0","babel-plugin-transform-es2015-classes":"^6.6.0","babel-plugin-transform-es2015-computed-properties":"^6.3.13","babel-plugin-transform-es2015-destructuring":"^6.6.0","babel-plugin-transform-es2015-duplicate-keys":"^6.6.0","babel-plugin-transform-es2015-for-of":"^6.6.0","babel-plugin-transform-es2015-function-name":"^6.3.13","babel-plugin-transform-es2015-literals":"^6.3.13","babel-plugin-transform-es2015-modules-amd":"^6.8.0","babel-plugin-transform-es2015-modules-commonjs":"^6.6.0","babel-plugin-transform-es2015-modules-systemjs":"^6.12.0","babel-plugin-transform-es2015-modules-umd":"^6.12.0","babel-plugin-transform-es2015-object-super":"^6.3.13","babel-plugin-transform-es2015-parameters":"^6.6.0","babel-plugin-transform-es2015-shorthand-properties":"^6.3.13","babel-plugin-transform-es2015-spread":"^6.3.13","babel-plugin-transform-es2015-sticky-regex":"^6.3.13","babel-plugin-transform-es2015-template-literals":"^6.6.0","babel-plugin-transform-es2015-typeof-symbol":"^6.6.0","babel-plugin-transform-es2015-unicode-regex":"^6.3.13","babel-plugin-transform-exponentiation-operator":"^6.8.0","babel-plugin-transform-regenerator":"^6.6.0","browserslist":"^1.4.0"},"devDependencies":{"babel-cli":"^6.11.4","babel-eslint":"^7.1.1","babel-helper-plugin-test-runner":"^6.18.0","babel-plugin-transform-flow-strip-types":"^6.8.0","babel-preset-es2015":"^6.14.0","babel-register":"^6.14.0","compat-table":"github:kangax/compat-table#e732718eab42c6c83a364450f456474638d31f94","eslint":"^3.3.1","eslint-config-babel":"^3.0.0","eslint-plugin-babel":"^4.0.0","eslint-plugin-flow-vars":"^0.5.0","eslint-plugin-flowtype":"^2.29.1","lodash":"^4.15.0","mocha":"^3.0.2","rimraf":"^2.5.4"},"babel":{"presets":[["es2015",{"loose":true}]],"plugins":["transform-flow-strip-types"]},"gitHead":"6412cd76135afd80b33fc6b03279c3f2a4e48c06","bugs":{"url":"https://github.com/babel/babel-preset-env/issues"},"_id":"babel-preset-env@1.1.0","_shasum":"83ad73661ae0f5ec3e0352fa2d6075f61822d513","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"83ad73661ae0f5ec3e0352fa2d6075f61822d513","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-preset-env/-/babel-preset-env-1.1.0.tgz"},"maintainers":[{"name":"hzoo","email":"hi@henryzoo.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/babel-preset-env-1.1.0.tgz_1481670097909_0.3217455130070448"},"deprecated":"Please install v1.1.1 instead of v1.1.0 due to a regression.","directories":{}},"1.1.1":{"name":"babel-preset-env","version":"1.1.1","description":"A Babel preset for each environment.","author":{"name":"Henry Zhu","email":"hi@henryzoo.com"},"homepage":"https://babeljs.io/","license":"MIT","repository":{"type":"git","url":"https://github.com/babel/babel-preset-env"},"main":"lib/index.js","scripts":{"build":"rimraf lib && babel src -d lib","build-data":"node ./scripts/build-data.js","dev":"babel -w src -d lib","lint":"eslint .","fix":"eslint . --fix","ci":"npm run test","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","test":"npm run build && mocha ./test --compilers js:babel-register -t 5000"},"dependencies":{"babel-plugin-check-es2015-constants":"^6.3.13","babel-plugin-syntax-trailing-function-commas":"^6.13.0","babel-plugin-transform-async-to-generator":"^6.8.0","babel-plugin-transform-es2015-arrow-functions":"^6.3.13","babel-plugin-transform-es2015-block-scoped-functions":"^6.3.13","babel-plugin-transform-es2015-block-scoping":"^6.6.0","babel-plugin-transform-es2015-classes":"^6.6.0","babel-plugin-transform-es2015-computed-properties":"^6.3.13","babel-plugin-transform-es2015-destructuring":"^6.6.0","babel-plugin-transform-es2015-duplicate-keys":"^6.6.0","babel-plugin-transform-es2015-for-of":"^6.6.0","babel-plugin-transform-es2015-function-name":"^6.3.13","babel-plugin-transform-es2015-literals":"^6.3.13","babel-plugin-transform-es2015-modules-amd":"^6.8.0","babel-plugin-transform-es2015-modules-commonjs":"^6.6.0","babel-plugin-transform-es2015-modules-systemjs":"^6.12.0","babel-plugin-transform-es2015-modules-umd":"^6.12.0","babel-plugin-transform-es2015-object-super":"^6.3.13","babel-plugin-transform-es2015-parameters":"^6.6.0","babel-plugin-transform-es2015-shorthand-properties":"^6.3.13","babel-plugin-transform-es2015-spread":"^6.3.13","babel-plugin-transform-es2015-sticky-regex":"^6.3.13","babel-plugin-transform-es2015-template-literals":"^6.6.0","babel-plugin-transform-es2015-typeof-symbol":"^6.6.0","babel-plugin-transform-es2015-unicode-regex":"^6.3.13","babel-plugin-transform-exponentiation-operator":"^6.8.0","babel-plugin-transform-regenerator":"^6.6.0","browserslist":"^1.4.0"},"devDependencies":{"babel-cli":"^6.11.4","babel-eslint":"^7.1.1","babel-helper-plugin-test-runner":"^6.18.0","babel-plugin-transform-flow-strip-types":"^6.8.0","babel-preset-es2015":"^6.14.0","babel-register":"^6.14.0","compat-table":"github:kangax/compat-table#e732718eab42c6c83a364450f456474638d31f94","eslint":"^3.3.1","eslint-config-babel":"^3.0.0","eslint-plugin-babel":"^4.0.0","eslint-plugin-flow-vars":"^0.5.0","eslint-plugin-flowtype":"^2.29.1","lodash":"^4.15.0","mocha":"^3.0.2","rimraf":"^2.5.4"},"babel":{"presets":[["es2015",{"loose":true}]],"plugins":["transform-flow-strip-types"]},"gitHead":"4b813fee69eecc15221c10c939af3c71ba31b020","bugs":{"url":"https://github.com/babel/babel-preset-env/issues"},"_id":"babel-preset-env@1.1.1","_shasum":"f7df25886d0f7299a3dd56b408696aeea79c79e9","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"maintainers":[{"name":"hzoo","email":"hi@henryzoo.com"}],"dist":{"shasum":"f7df25886d0f7299a3dd56b408696aeea79c79e9","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-preset-env/-/babel-preset-env-1.1.1.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/babel-preset-env-1.1.1.tgz_1481670718587_0.12081367429345846"},"directories":{}},"1.1.2":{"name":"babel-preset-env","version":"1.1.2","description":"A Babel preset for each environment.","author":{"name":"Henry Zhu","email":"hi@henryzoo.com"},"homepage":"https://babeljs.io/","license":"MIT","repository":{"type":"git","url":"git+https://github.com/babel/babel-preset-env.git"},"main":"lib/index.js","scripts":{"build":"rimraf lib && babel src -d lib","build-data":"node ./scripts/build-data.js","dev":"babel -w src -d lib","lint":"eslint .","fix":"eslint . --fix","ci":"npm run test","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","test":"npm run build && mocha ./test --compilers js:babel-register -t 5000"},"dependencies":{"babel-plugin-check-es2015-constants":"^6.3.13","babel-plugin-syntax-trailing-function-commas":"^6.13.0","babel-plugin-transform-async-to-generator":"^6.8.0","babel-plugin-transform-es2015-arrow-functions":"^6.3.13","babel-plugin-transform-es2015-block-scoped-functions":"^6.3.13","babel-plugin-transform-es2015-block-scoping":"^6.6.0","babel-plugin-transform-es2015-classes":"^6.6.0","babel-plugin-transform-es2015-computed-properties":"^6.3.13","babel-plugin-transform-es2015-destructuring":"^6.6.0","babel-plugin-transform-es2015-duplicate-keys":"^6.6.0","babel-plugin-transform-es2015-for-of":"^6.6.0","babel-plugin-transform-es2015-function-name":"^6.3.13","babel-plugin-transform-es2015-literals":"^6.3.13","babel-plugin-transform-es2015-modules-amd":"^6.8.0","babel-plugin-transform-es2015-modules-commonjs":"^6.6.0","babel-plugin-transform-es2015-modules-systemjs":"^6.12.0","babel-plugin-transform-es2015-modules-umd":"^6.12.0","babel-plugin-transform-es2015-object-super":"^6.3.13","babel-plugin-transform-es2015-parameters":"^6.6.0","babel-plugin-transform-es2015-shorthand-properties":"^6.3.13","babel-plugin-transform-es2015-spread":"^6.3.13","babel-plugin-transform-es2015-sticky-regex":"^6.3.13","babel-plugin-transform-es2015-template-literals":"^6.6.0","babel-plugin-transform-es2015-typeof-symbol":"^6.6.0","babel-plugin-transform-es2015-unicode-regex":"^6.3.13","babel-plugin-transform-exponentiation-operator":"^6.8.0","babel-plugin-transform-regenerator":"^6.6.0","browserslist":"^1.4.0"},"devDependencies":{"babel-cli":"^6.11.4","babel-eslint":"^7.1.1","babel-helper-plugin-test-runner":"^6.18.0","babel-plugin-transform-flow-strip-types":"^6.8.0","babel-preset-es2015":"^6.14.0","babel-register":"^6.14.0","compat-table":"github:kangax/compat-table#e732718eab42c6c83a364450f456474638d31f94","eslint":"^3.3.1","eslint-config-babel":"^3.0.0","eslint-plugin-babel":"^4.0.0","eslint-plugin-flow-vars":"^0.5.0","eslint-plugin-flowtype":"^2.29.1","lodash":"^4.15.0","mocha":"^3.0.2","rimraf":"^2.5.4"},"babel":{"presets":[["es2015",{"loose":true}]],"plugins":["transform-flow-strip-types"]},"gitHead":"a5241f7f201403d95693f6fd5f07c9354b18b9c1","bugs":{"url":"https://github.com/babel/babel-preset-env/issues"},"_id":"babel-preset-env@1.1.2","_shasum":"76dfa2dc709787e1fe22bd1a73809a0b7f99983b","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"76dfa2dc709787e1fe22bd1a73809a0b7f99983b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-preset-env/-/babel-preset-env-1.1.2.tgz"},"maintainers":[{"name":"hzoo","email":"hi@henryzoo.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/babel-preset-env-1.1.2.tgz_1481927471361_0.8065815051086247"},"directories":{}},"1.1.3":{"name":"babel-preset-env","version":"1.1.3","description":"A Babel preset for each environment.","author":{"name":"Henry Zhu","email":"hi@henryzoo.com"},"homepage":"https://babeljs.io/","license":"MIT","repository":{"type":"git","url":"git+https://github.com/babel/babel-preset-env.git"},"main":"lib/index.js","scripts":{"build":"rimraf lib && babel src -d lib","build-data":"node ./scripts/build-data.js","dev":"babel -w src -d lib","lint":"eslint .","fix":"eslint . --fix","ci":"npm run test","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","test":"npm run build && mocha ./test --compilers js:babel-register -t 5000"},"dependencies":{"babel-plugin-check-es2015-constants":"^6.3.13","babel-plugin-syntax-trailing-function-commas":"^6.13.0","babel-plugin-transform-async-to-generator":"^6.8.0","babel-plugin-transform-es2015-arrow-functions":"^6.3.13","babel-plugin-transform-es2015-block-scoped-functions":"^6.3.13","babel-plugin-transform-es2015-block-scoping":"^6.6.0","babel-plugin-transform-es2015-classes":"^6.6.0","babel-plugin-transform-es2015-computed-properties":"^6.3.13","babel-plugin-transform-es2015-destructuring":"^6.6.0","babel-plugin-transform-es2015-duplicate-keys":"^6.6.0","babel-plugin-transform-es2015-for-of":"^6.6.0","babel-plugin-transform-es2015-function-name":"^6.3.13","babel-plugin-transform-es2015-literals":"^6.3.13","babel-plugin-transform-es2015-modules-amd":"^6.8.0","babel-plugin-transform-es2015-modules-commonjs":"^6.6.0","babel-plugin-transform-es2015-modules-systemjs":"^6.12.0","babel-plugin-transform-es2015-modules-umd":"^6.12.0","babel-plugin-transform-es2015-object-super":"^6.3.13","babel-plugin-transform-es2015-parameters":"^6.6.0","babel-plugin-transform-es2015-shorthand-properties":"^6.3.13","babel-plugin-transform-es2015-spread":"^6.3.13","babel-plugin-transform-es2015-sticky-regex":"^6.3.13","babel-plugin-transform-es2015-template-literals":"^6.6.0","babel-plugin-transform-es2015-typeof-symbol":"^6.6.0","babel-plugin-transform-es2015-unicode-regex":"^6.3.13","babel-plugin-transform-exponentiation-operator":"^6.8.0","babel-plugin-transform-regenerator":"^6.6.0","browserslist":"^1.4.0"},"devDependencies":{"babel-cli":"^6.11.4","babel-eslint":"^7.1.1","babel-helper-plugin-test-runner":"^6.18.0","babel-plugin-transform-flow-strip-types":"^6.8.0","babel-preset-es2015":"^6.14.0","babel-register":"^6.14.0","compat-table":"github:kangax/compat-table#e732718eab42c6c83a364450f456474638d31f94","eslint":"^3.3.1","eslint-config-babel":"^3.0.0","eslint-plugin-babel":"^4.0.0","eslint-plugin-flow-vars":"^0.5.0","eslint-plugin-flowtype":"^2.29.1","lodash":"^4.15.0","mocha":"^3.0.2","rimraf":"^2.5.4"},"babel":{"presets":[["es2015",{"loose":true}]],"plugins":["transform-flow-strip-types"]},"gitHead":"d6822f58e95c532bbfe0afdd9b140bc3967859f9","bugs":{"url":"https://github.com/babel/babel-preset-env/issues"},"_id":"babel-preset-env@1.1.3","_shasum":"159e3eb7780b0dedcec04a76f1ded1c7f11a71da","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"159e3eb7780b0dedcec04a76f1ded1c7f11a71da","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-preset-env/-/babel-preset-env-1.1.3.tgz"},"maintainers":[{"name":"hzoo","email":"hi@henryzoo.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/babel-preset-env-1.1.3.tgz_1481929426812_0.8713603632058948"},"directories":{}},"1.1.4":{"name":"babel-preset-env","version":"1.1.4","description":"A Babel preset for each environment.","author":{"name":"Henry Zhu","email":"hi@henryzoo.com"},"homepage":"https://babeljs.io/","license":"MIT","repository":{"type":"git","url":"git+https://github.com/babel/babel-preset-env.git"},"main":"lib/index.js","scripts":{"build":"rimraf lib && babel src -d lib","build-data":"node ./scripts/build-data.js","dev":"babel -w src -d lib","lint":"eslint .","fix":"eslint . --fix","ci":"npm run test","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","test":"npm run build && mocha ./test --compilers js:babel-register -t 5000"},"dependencies":{"babel-plugin-check-es2015-constants":"^6.3.13","babel-plugin-syntax-trailing-function-commas":"^6.13.0","babel-plugin-transform-async-to-generator":"^6.8.0","babel-plugin-transform-es2015-arrow-functions":"^6.3.13","babel-plugin-transform-es2015-block-scoped-functions":"^6.3.13","babel-plugin-transform-es2015-block-scoping":"^6.6.0","babel-plugin-transform-es2015-classes":"^6.6.0","babel-plugin-transform-es2015-computed-properties":"^6.3.13","babel-plugin-transform-es2015-destructuring":"^6.6.0","babel-plugin-transform-es2015-duplicate-keys":"^6.6.0","babel-plugin-transform-es2015-for-of":"^6.6.0","babel-plugin-transform-es2015-function-name":"^6.3.13","babel-plugin-transform-es2015-literals":"^6.3.13","babel-plugin-transform-es2015-modules-amd":"^6.8.0","babel-plugin-transform-es2015-modules-commonjs":"^6.6.0","babel-plugin-transform-es2015-modules-systemjs":"^6.12.0","babel-plugin-transform-es2015-modules-umd":"^6.12.0","babel-plugin-transform-es2015-object-super":"^6.3.13","babel-plugin-transform-es2015-parameters":"^6.6.0","babel-plugin-transform-es2015-shorthand-properties":"^6.3.13","babel-plugin-transform-es2015-spread":"^6.3.13","babel-plugin-transform-es2015-sticky-regex":"^6.3.13","babel-plugin-transform-es2015-template-literals":"^6.6.0","babel-plugin-transform-es2015-typeof-symbol":"^6.6.0","babel-plugin-transform-es2015-unicode-regex":"^6.3.13","babel-plugin-transform-exponentiation-operator":"^6.8.0","babel-plugin-transform-regenerator":"^6.6.0","browserslist":"^1.4.0"},"devDependencies":{"babel-cli":"^6.11.4","babel-eslint":"^7.1.1","babel-helper-plugin-test-runner":"^6.18.0","babel-plugin-transform-flow-strip-types":"^6.8.0","babel-preset-es2015":"^6.14.0","babel-register":"^6.14.0","compat-table":"github:kangax/compat-table#e732718eab42c6c83a364450f456474638d31f94","eslint":"^3.3.1","eslint-config-babel":"^3.0.0","eslint-plugin-babel":"^4.0.0","eslint-plugin-flow-vars":"^0.5.0","eslint-plugin-flowtype":"^2.29.1","lodash":"^4.15.0","mocha":"^3.0.2","rimraf":"^2.5.4"},"babel":{"presets":[["es2015",{"loose":true}]],"plugins":["transform-flow-strip-types"]},"gitHead":"0886f1ad1c7455c9c471513f1322adae64bcbb2c","bugs":{"url":"https://github.com/babel/babel-preset-env/issues"},"_id":"babel-preset-env@1.1.4","_shasum":"d876f9fcff5fe0612db3dcbc0c87503b41d4873f","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"d876f9fcff5fe0612db3dcbc0c87503b41d4873f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-preset-env/-/babel-preset-env-1.1.4.tgz"},"maintainers":[{"name":"hzoo","email":"hi@henryzoo.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/babel-preset-env-1.1.4.tgz_1481929542243_0.9875406620558351"},"directories":{}},"1.1.5":{"name":"babel-preset-env","version":"1.1.5","description":"A Babel preset for each environment.","author":{"name":"Henry Zhu","email":"hi@henryzoo.com"},"homepage":"https://babeljs.io/","license":"MIT","repository":{"type":"git","url":"git+https://github.com/babel/babel-preset-env.git"},"main":"lib/index.js","scripts":{"build":"rimraf lib && babel src -d lib","build-data":"node ./scripts/build-data.js","dev":"babel -w src -d lib","lint":"eslint .","fix":"eslint . --fix","ci":"npm run test","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","test":"npm run build && mocha ./test --compilers js:babel-register -t 5000"},"dependencies":{"babel-plugin-check-es2015-constants":"^6.3.13","babel-plugin-syntax-trailing-function-commas":"^6.13.0","babel-plugin-transform-async-to-generator":"^6.8.0","babel-plugin-transform-es2015-arrow-functions":"^6.3.13","babel-plugin-transform-es2015-block-scoped-functions":"^6.3.13","babel-plugin-transform-es2015-block-scoping":"^6.6.0","babel-plugin-transform-es2015-classes":"^6.6.0","babel-plugin-transform-es2015-computed-properties":"^6.3.13","babel-plugin-transform-es2015-destructuring":"^6.6.0","babel-plugin-transform-es2015-duplicate-keys":"^6.6.0","babel-plugin-transform-es2015-for-of":"^6.6.0","babel-plugin-transform-es2015-function-name":"^6.3.13","babel-plugin-transform-es2015-literals":"^6.3.13","babel-plugin-transform-es2015-modules-amd":"^6.8.0","babel-plugin-transform-es2015-modules-commonjs":"^6.6.0","babel-plugin-transform-es2015-modules-systemjs":"^6.12.0","babel-plugin-transform-es2015-modules-umd":"^6.12.0","babel-plugin-transform-es2015-object-super":"^6.3.13","babel-plugin-transform-es2015-parameters":"^6.6.0","babel-plugin-transform-es2015-shorthand-properties":"^6.3.13","babel-plugin-transform-es2015-spread":"^6.3.13","babel-plugin-transform-es2015-sticky-regex":"^6.3.13","babel-plugin-transform-es2015-template-literals":"^6.6.0","babel-plugin-transform-es2015-typeof-symbol":"^6.6.0","babel-plugin-transform-es2015-unicode-regex":"^6.3.13","babel-plugin-transform-exponentiation-operator":"^6.8.0","babel-plugin-transform-regenerator":"^6.6.0","browserslist":"^1.4.0"},"devDependencies":{"babel-cli":"^6.11.4","babel-eslint":"^7.1.1","babel-helper-plugin-test-runner":"^6.18.0","babel-plugin-transform-flow-strip-types":"^6.8.0","babel-preset-es2015":"^6.14.0","babel-register":"^6.14.0","compat-table":"github:kangax/compat-table#e732718eab42c6c83a364450f456474638d31f94","eslint":"^3.3.1","eslint-config-babel":"^3.0.0","eslint-plugin-babel":"^4.0.0","eslint-plugin-flowtype":"^2.29.1","lodash":"^4.15.0","mocha":"^3.0.2","rimraf":"^2.5.4"},"babel":{"presets":[["es2015",{"loose":true}]],"plugins":["transform-flow-strip-types"]},"gitHead":"efefa058d93e6838c828e921d0b3a5d6c0be33c6","bugs":{"url":"https://github.com/babel/babel-preset-env/issues"},"_id":"babel-preset-env@1.1.5","_shasum":"2198935c5828603a54321170e4e726fb3309e505","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"2198935c5828603a54321170e4e726fb3309e505","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-preset-env/-/babel-preset-env-1.1.5.tgz"},"maintainers":[{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/babel-preset-env-1.1.5.tgz_1483571415684_0.45317299710586667"},"directories":{}},"1.1.6":{"name":"babel-preset-env","version":"1.1.6","description":"A Babel preset for each environment.","author":{"name":"Henry Zhu","email":"hi@henryzoo.com"},"homepage":"https://babeljs.io/","license":"MIT","repository":{"type":"git","url":"git+https://github.com/babel/babel-preset-env.git"},"main":"lib/index.js","scripts":{"build":"rimraf lib && babel src -d lib","build-data":"node ./scripts/build-data.js","dev":"babel -w src -d lib","lint":"eslint .","fix":"eslint . --fix","ci":"npm run test","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","test":"npm run build && mocha ./test --compilers js:babel-register -t 5000"},"dependencies":{"babel-plugin-check-es2015-constants":"^6.3.13","babel-plugin-syntax-trailing-function-commas":"^6.13.0","babel-plugin-transform-async-to-generator":"^6.8.0","babel-plugin-transform-es2015-arrow-functions":"^6.3.13","babel-plugin-transform-es2015-block-scoped-functions":"^6.3.13","babel-plugin-transform-es2015-block-scoping":"^6.6.0","babel-plugin-transform-es2015-classes":"^6.6.0","babel-plugin-transform-es2015-computed-properties":"^6.3.13","babel-plugin-transform-es2015-destructuring":"^6.6.0","babel-plugin-transform-es2015-duplicate-keys":"^6.6.0","babel-plugin-transform-es2015-for-of":"^6.6.0","babel-plugin-transform-es2015-function-name":"^6.3.13","babel-plugin-transform-es2015-literals":"^6.3.13","babel-plugin-transform-es2015-modules-amd":"^6.8.0","babel-plugin-transform-es2015-modules-commonjs":"^6.6.0","babel-plugin-transform-es2015-modules-systemjs":"^6.12.0","babel-plugin-transform-es2015-modules-umd":"^6.12.0","babel-plugin-transform-es2015-object-super":"^6.3.13","babel-plugin-transform-es2015-parameters":"^6.6.0","babel-plugin-transform-es2015-shorthand-properties":"^6.3.13","babel-plugin-transform-es2015-spread":"^6.3.13","babel-plugin-transform-es2015-sticky-regex":"^6.3.13","babel-plugin-transform-es2015-template-literals":"^6.6.0","babel-plugin-transform-es2015-typeof-symbol":"^6.6.0","babel-plugin-transform-es2015-unicode-regex":"^6.3.13","babel-plugin-transform-exponentiation-operator":"^6.8.0","babel-plugin-transform-regenerator":"^6.6.0","browserslist":"^1.4.0"},"devDependencies":{"babel-cli":"^6.11.4","babel-eslint":"^7.1.1","babel-helper-plugin-test-runner":"^6.18.0","babel-plugin-transform-flow-strip-types":"^6.8.0","babel-preset-es2015":"^6.14.0","babel-register":"^6.14.0","compat-table":"github:kangax/compat-table#e732718eab42c6c83a364450f456474638d31f94","eslint":"^3.3.1","eslint-config-babel":"^3.0.0","eslint-plugin-babel":"^4.0.0","eslint-plugin-flowtype":"^2.29.1","lodash":"^4.15.0","mocha":"^3.0.2","rimraf":"^2.5.4"},"babel":{"presets":[["es2015",{"loose":true}]],"plugins":["transform-flow-strip-types"]},"gitHead":"fdf3c3526b46b2a52dc6b8598cb94f498c4e106e","bugs":{"url":"https://github.com/babel/babel-preset-env/issues"},"_id":"babel-preset-env@1.1.6","_shasum":"83ce1402088e661cb5799e680d20c5a432b2873b","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"83ce1402088e661cb5799e680d20c5a432b2873b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-preset-env/-/babel-preset-env-1.1.6.tgz"},"maintainers":[{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/babel-preset-env-1.1.6.tgz_1483742168114_0.20133589999750257"},"directories":{}},"1.1.7":{"name":"babel-preset-env","version":"1.1.7","description":"A Babel preset for each environment.","author":{"name":"Henry Zhu","email":"hi@henryzoo.com"},"homepage":"https://babeljs.io/","license":"MIT","repository":{"type":"git","url":"git+https://github.com/babel/babel-preset-env.git"},"main":"lib/index.js","scripts":{"build":"rimraf lib && babel src -d lib","build-data":"node ./scripts/build-data.js","dev":"babel -w src -d lib","lint":"eslint .","fix":"eslint . --fix","ci":"npm run test","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","test":"npm run build && mocha ./test --compilers js:babel-register -t 5000"},"dependencies":{"babel-plugin-check-es2015-constants":"^6.3.13","babel-plugin-syntax-trailing-function-commas":"^6.13.0","babel-plugin-transform-async-to-generator":"^6.8.0","babel-plugin-transform-es2015-arrow-functions":"^6.3.13","babel-plugin-transform-es2015-block-scoped-functions":"^6.3.13","babel-plugin-transform-es2015-block-scoping":"^6.6.0","babel-plugin-transform-es2015-classes":"^6.6.0","babel-plugin-transform-es2015-computed-properties":"^6.3.13","babel-plugin-transform-es2015-destructuring":"^6.6.0","babel-plugin-transform-es2015-duplicate-keys":"^6.6.0","babel-plugin-transform-es2015-for-of":"^6.6.0","babel-plugin-transform-es2015-function-name":"^6.3.13","babel-plugin-transform-es2015-literals":"^6.3.13","babel-plugin-transform-es2015-modules-amd":"^6.8.0","babel-plugin-transform-es2015-modules-commonjs":"^6.6.0","babel-plugin-transform-es2015-modules-systemjs":"^6.12.0","babel-plugin-transform-es2015-modules-umd":"^6.12.0","babel-plugin-transform-es2015-object-super":"^6.3.13","babel-plugin-transform-es2015-parameters":"^6.6.0","babel-plugin-transform-es2015-shorthand-properties":"^6.3.13","babel-plugin-transform-es2015-spread":"^6.3.13","babel-plugin-transform-es2015-sticky-regex":"^6.3.13","babel-plugin-transform-es2015-template-literals":"^6.6.0","babel-plugin-transform-es2015-typeof-symbol":"^6.6.0","babel-plugin-transform-es2015-unicode-regex":"^6.3.13","babel-plugin-transform-exponentiation-operator":"^6.8.0","babel-plugin-transform-regenerator":"^6.6.0","browserslist":"^1.4.0"},"devDependencies":{"babel-cli":"^6.11.4","babel-eslint":"^7.1.1","babel-helper-plugin-test-runner":"^6.18.0","babel-plugin-transform-flow-strip-types":"^6.8.0","babel-preset-es2015":"^6.14.0","babel-register":"^6.14.0","compat-table":"github:kangax/compat-table#e732718eab42c6c83a364450f456474638d31f94","eslint":"^3.3.1","eslint-config-babel":"^3.0.0","eslint-plugin-babel":"^4.0.0","eslint-plugin-flowtype":"^2.29.1","lodash":"^4.15.0","mocha":"^3.0.2","rimraf":"^2.5.4"},"babel":{"presets":[["es2015",{"loose":true}]],"plugins":["transform-flow-strip-types"]},"gitHead":"00feed3ed3b684f4aff06b4182e9a0307c447621","bugs":{"url":"https://github.com/babel/babel-preset-env/issues"},"_id":"babel-preset-env@1.1.7","_shasum":"4ca8dd905056039c6788a0174bfac7b7bad89fbf","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"4ca8dd905056039c6788a0174bfac7b7bad89fbf","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-preset-env/-/babel-preset-env-1.1.7.tgz"},"maintainers":[{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/babel-preset-env-1.1.7.tgz_1483977960152_0.8811310273595154"},"directories":{}},"1.1.8":{"name":"babel-preset-env","version":"1.1.8","description":"A Babel preset for each environment.","author":{"name":"Henry Zhu","email":"hi@henryzoo.com"},"homepage":"https://babeljs.io/","license":"MIT","repository":{"type":"git","url":"git+https://github.com/babel/babel-preset-env.git"},"main":"lib/index.js","scripts":{"build":"rimraf lib && babel src -d lib","build-data":"node ./scripts/build-data.js","dev":"babel -w src -d lib","lint":"eslint .","fix":"eslint . --fix","ci":"npm run test","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","test":"npm run build && mocha ./test --compilers js:babel-register -t 5000"},"dependencies":{"babel-plugin-check-es2015-constants":"^6.3.13","babel-plugin-syntax-trailing-function-commas":"^6.13.0","babel-plugin-transform-async-to-generator":"^6.8.0","babel-plugin-transform-es2015-arrow-functions":"^6.3.13","babel-plugin-transform-es2015-block-scoped-functions":"^6.3.13","babel-plugin-transform-es2015-block-scoping":"^6.6.0","babel-plugin-transform-es2015-classes":"^6.6.0","babel-plugin-transform-es2015-computed-properties":"^6.3.13","babel-plugin-transform-es2015-destructuring":"^6.6.0","babel-plugin-transform-es2015-duplicate-keys":"^6.6.0","babel-plugin-transform-es2015-for-of":"^6.6.0","babel-plugin-transform-es2015-function-name":"^6.3.13","babel-plugin-transform-es2015-literals":"^6.3.13","babel-plugin-transform-es2015-modules-amd":"^6.8.0","babel-plugin-transform-es2015-modules-commonjs":"^6.6.0","babel-plugin-transform-es2015-modules-systemjs":"^6.12.0","babel-plugin-transform-es2015-modules-umd":"^6.12.0","babel-plugin-transform-es2015-object-super":"^6.3.13","babel-plugin-transform-es2015-parameters":"^6.6.0","babel-plugin-transform-es2015-shorthand-properties":"^6.3.13","babel-plugin-transform-es2015-spread":"^6.3.13","babel-plugin-transform-es2015-sticky-regex":"^6.3.13","babel-plugin-transform-es2015-template-literals":"^6.6.0","babel-plugin-transform-es2015-typeof-symbol":"^6.6.0","babel-plugin-transform-es2015-unicode-regex":"^6.3.13","babel-plugin-transform-exponentiation-operator":"^6.8.0","babel-plugin-transform-regenerator":"^6.6.0","browserslist":"^1.4.0"},"devDependencies":{"babel-cli":"^6.11.4","babel-eslint":"^7.1.1","babel-helper-plugin-test-runner":"^6.18.0","babel-plugin-transform-flow-strip-types":"^6.8.0","babel-preset-es2015":"^6.14.0","babel-register":"^6.14.0","compat-table":"github:kangax/compat-table#e732718eab42c6c83a364450f456474638d31f94","eslint":"^3.3.1","eslint-config-babel":"^3.0.0","eslint-plugin-babel":"^4.0.0","eslint-plugin-flowtype":"^2.29.1","lodash":"^4.15.0","mocha":"^3.0.2","rimraf":"^2.5.4"},"babel":{"presets":[["es2015",{"loose":true}]],"plugins":["transform-flow-strip-types"]},"gitHead":"df6ec0bfdd31f3005f29b534a589eb04bab917cb","bugs":{"url":"https://github.com/babel/babel-preset-env/issues"},"_id":"babel-preset-env@1.1.8","_shasum":"c46734c6233c3f87d177513773db3cf3c1758aaa","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"c46734c6233c3f87d177513773db3cf3c1758aaa","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-preset-env/-/babel-preset-env-1.1.8.tgz"},"maintainers":[{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/babel-preset-env-1.1.8.tgz_1484076862078_0.5506352125667036"},"directories":{}},"1.1.9":{"name":"babel-preset-env","version":"1.1.9","description":"A Babel preset for each environment.","author":{"name":"Henry Zhu","email":"hi@henryzoo.com"},"homepage":"https://babeljs.io/","license":"MIT","repository":{"type":"git","url":"git+https://github.com/babel/babel-preset-env.git"},"main":"lib/index.js","scripts":{"build":"rimraf lib && babel src -d lib","build-data":"node ./scripts/build-data.js","dev":"babel -w src -d lib","lint":"eslint .","fix":"eslint . --fix","ci":"npm run test","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","test":"npm run build && mocha ./test --compilers js:babel-register -t 5000"},"dependencies":{"babel-plugin-check-es2015-constants":"^6.3.13","babel-plugin-syntax-trailing-function-commas":"^6.13.0","babel-plugin-transform-async-to-generator":"^6.8.0","babel-plugin-transform-es2015-arrow-functions":"^6.3.13","babel-plugin-transform-es2015-block-scoped-functions":"^6.3.13","babel-plugin-transform-es2015-block-scoping":"^6.6.0","babel-plugin-transform-es2015-classes":"^6.6.0","babel-plugin-transform-es2015-computed-properties":"^6.3.13","babel-plugin-transform-es2015-destructuring":"^6.6.0","babel-plugin-transform-es2015-duplicate-keys":"^6.6.0","babel-plugin-transform-es2015-for-of":"^6.6.0","babel-plugin-transform-es2015-function-name":"^6.3.13","babel-plugin-transform-es2015-literals":"^6.3.13","babel-plugin-transform-es2015-modules-amd":"^6.8.0","babel-plugin-transform-es2015-modules-commonjs":"^6.6.0","babel-plugin-transform-es2015-modules-systemjs":"^6.12.0","babel-plugin-transform-es2015-modules-umd":"^6.12.0","babel-plugin-transform-es2015-object-super":"^6.3.13","babel-plugin-transform-es2015-parameters":"^6.6.0","babel-plugin-transform-es2015-shorthand-properties":"^6.3.13","babel-plugin-transform-es2015-spread":"^6.3.13","babel-plugin-transform-es2015-sticky-regex":"^6.3.13","babel-plugin-transform-es2015-template-literals":"^6.6.0","babel-plugin-transform-es2015-typeof-symbol":"^6.6.0","babel-plugin-transform-es2015-unicode-regex":"^6.3.13","babel-plugin-transform-exponentiation-operator":"^6.8.0","babel-plugin-transform-regenerator":"^6.6.0","browserslist":"^1.4.0","electron-to-chromium":"^1.1.0","invariant":"^2.2.2"},"devDependencies":{"babel-cli":"^6.11.4","babel-eslint":"^7.1.1","babel-helper-fixtures":"^6.22.0","babel-helper-plugin-test-runner":"^6.18.0","babel-plugin-transform-flow-strip-types":"^6.8.0","babel-preset-es2015":"^6.14.0","babel-register":"^6.14.0","chai":"^3.0.0","compat-table":"github:kangax/compat-table#688097f1ce623cb113640cc9108fe04fc418b823","eslint":"^3.13.1","eslint-config-babel":"^5.0.0","eslint-plugin-flowtype":"^2.29.1","fs-extra":"^2.0.0","lodash":"^4.15.0","mocha":"^3.0.2","rimraf":"^2.5.4"},"babel":{"presets":[["es2015",{"loose":true}]],"plugins":["transform-flow-strip-types"]},"gitHead":"846b7a20d7bd3cac9ae81babac85defb712774d7","bugs":{"url":"https://github.com/babel/babel-preset-env/issues"},"_id":"babel-preset-env@1.1.9","_shasum":"49443dcd6ef52b48b7191ea33869e24590a9eb4a","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"49443dcd6ef52b48b7191ea33869e24590a9eb4a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-preset-env/-/babel-preset-env-1.1.9.tgz"},"maintainers":[{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/babel-preset-env-1.1.9.tgz_1487943318773_0.3779753181152046"},"directories":{}},"1.1.10":{"name":"babel-preset-env","version":"1.1.10","description":"A Babel preset for each environment.","author":{"name":"Henry Zhu","email":"hi@henryzoo.com"},"homepage":"https://babeljs.io/","license":"MIT","repository":{"type":"git","url":"git+https://github.com/babel/babel-preset-env.git"},"main":"lib/index.js","scripts":{"build":"rimraf lib && babel src -d lib","build-data":"node ./scripts/build-data.js","dev":"babel -w src -d lib","lint":"eslint .","fix":"eslint . --fix","ci":"npm run test","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","test":"npm run build && mocha ./test --compilers js:babel-register -t 5000"},"dependencies":{"babel-plugin-check-es2015-constants":"^6.3.13","babel-plugin-syntax-trailing-function-commas":"^6.13.0","babel-plugin-transform-async-to-generator":"^6.8.0","babel-plugin-transform-es2015-arrow-functions":"^6.3.13","babel-plugin-transform-es2015-block-scoped-functions":"^6.3.13","babel-plugin-transform-es2015-block-scoping":"^6.6.0","babel-plugin-transform-es2015-classes":"^6.6.0","babel-plugin-transform-es2015-computed-properties":"^6.3.13","babel-plugin-transform-es2015-destructuring":"^6.6.0","babel-plugin-transform-es2015-duplicate-keys":"^6.6.0","babel-plugin-transform-es2015-for-of":"^6.6.0","babel-plugin-transform-es2015-function-name":"^6.3.13","babel-plugin-transform-es2015-literals":"^6.3.13","babel-plugin-transform-es2015-modules-amd":"^6.8.0","babel-plugin-transform-es2015-modules-commonjs":"^6.6.0","babel-plugin-transform-es2015-modules-systemjs":"^6.12.0","babel-plugin-transform-es2015-modules-umd":"^6.12.0","babel-plugin-transform-es2015-object-super":"^6.3.13","babel-plugin-transform-es2015-parameters":"^6.6.0","babel-plugin-transform-es2015-shorthand-properties":"^6.3.13","babel-plugin-transform-es2015-spread":"^6.3.13","babel-plugin-transform-es2015-sticky-regex":"^6.3.13","babel-plugin-transform-es2015-template-literals":"^6.6.0","babel-plugin-transform-es2015-typeof-symbol":"^6.6.0","babel-plugin-transform-es2015-unicode-regex":"^6.3.13","babel-plugin-transform-exponentiation-operator":"^6.8.0","babel-plugin-transform-regenerator":"^6.6.0","browserslist":"^1.4.0","electron-to-chromium":"^1.1.0","invariant":"^2.2.2"},"devDependencies":{"babel-cli":"^6.11.4","babel-eslint":"^7.1.1","babel-helper-fixtures":"^6.22.0","babel-helper-plugin-test-runner":"^6.18.0","babel-plugin-transform-flow-strip-types":"^6.8.0","babel-preset-es2015":"^6.14.0","babel-register":"^6.14.0","chai":"^3.0.0","compat-table":"github:kangax/compat-table#688097f1ce623cb113640cc9108fe04fc418b823","eslint":"^3.13.1","eslint-config-babel":"^5.0.0","eslint-plugin-flowtype":"^2.29.1","fs-extra":"^2.0.0","lodash":"^4.15.0","mocha":"^3.0.2","rimraf":"^2.5.4"},"babel":{"presets":[["es2015",{"loose":true}]],"plugins":["transform-flow-strip-types"]},"gitHead":"9f4b8bb7bfc34d2cbe84171df1dabf0fe228f51d","bugs":{"url":"https://github.com/babel/babel-preset-env/issues"},"_id":"babel-preset-env@1.1.10","_shasum":"c1055b69d25c3cf5383a925ee5c553c323558368","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"c1055b69d25c3cf5383a925ee5c553c323558368","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-preset-env/-/babel-preset-env-1.1.10.tgz"},"maintainers":[{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/babel-preset-env-1.1.10.tgz_1487969322313_0.46667851507663727"},"directories":{}},"1.1.11":{"name":"babel-preset-env","version":"1.1.11","description":"A Babel preset for each environment.","author":{"name":"Henry Zhu","email":"hi@henryzoo.com"},"homepage":"https://babeljs.io/","license":"MIT","repository":{"type":"git","url":"git+https://github.com/babel/babel-preset-env.git"},"main":"lib/index.js","scripts":{"build":"rimraf lib && babel src -d lib","build-data":"node ./scripts/build-data.js","dev":"babel -w src -d lib","lint":"eslint .","fix":"eslint . --fix","ci":"npm run test","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","test":"npm run build && mocha ./test --compilers js:babel-register -t 5000"},"dependencies":{"babel-plugin-check-es2015-constants":"^6.3.13","babel-plugin-syntax-trailing-function-commas":"^6.13.0","babel-plugin-transform-async-to-generator":"^6.8.0","babel-plugin-transform-es2015-arrow-functions":"^6.3.13","babel-plugin-transform-es2015-block-scoped-functions":"^6.3.13","babel-plugin-transform-es2015-block-scoping":"^6.6.0","babel-plugin-transform-es2015-classes":"^6.6.0","babel-plugin-transform-es2015-computed-properties":"^6.3.13","babel-plugin-transform-es2015-destructuring":"^6.6.0","babel-plugin-transform-es2015-duplicate-keys":"^6.6.0","babel-plugin-transform-es2015-for-of":"^6.6.0","babel-plugin-transform-es2015-function-name":"^6.3.13","babel-plugin-transform-es2015-literals":"^6.3.13","babel-plugin-transform-es2015-modules-amd":"^6.8.0","babel-plugin-transform-es2015-modules-commonjs":"^6.6.0","babel-plugin-transform-es2015-modules-systemjs":"^6.12.0","babel-plugin-transform-es2015-modules-umd":"^6.12.0","babel-plugin-transform-es2015-object-super":"^6.3.13","babel-plugin-transform-es2015-parameters":"^6.6.0","babel-plugin-transform-es2015-shorthand-properties":"^6.3.13","babel-plugin-transform-es2015-spread":"^6.3.13","babel-plugin-transform-es2015-sticky-regex":"^6.3.13","babel-plugin-transform-es2015-template-literals":"^6.6.0","babel-plugin-transform-es2015-typeof-symbol":"^6.6.0","babel-plugin-transform-es2015-unicode-regex":"^6.3.13","babel-plugin-transform-exponentiation-operator":"^6.8.0","babel-plugin-transform-regenerator":"^6.6.0","browserslist":"^1.4.0","electron-to-chromium":"^1.1.0","invariant":"^2.2.2"},"devDependencies":{"babel-cli":"^6.11.4","babel-eslint":"^7.1.1","babel-helper-fixtures":"^6.22.0","babel-helper-plugin-test-runner":"^6.18.0","babel-plugin-transform-flow-strip-types":"^6.8.0","babel-preset-es2015":"^6.14.0","babel-register":"^6.14.0","chai":"^3.0.0","compat-table":"github:kangax/compat-table#291c758ac618fff6bf5bb2113a5aa046189f93e2","eslint":"^3.13.1","eslint-config-babel":"^5.0.0","eslint-plugin-flowtype":"^2.29.1","fs-extra":"^2.0.0","lodash":"^4.15.0","mocha":"^3.0.2","rimraf":"^2.5.4"},"babel":{"presets":[["es2015",{"loose":true}]],"plugins":["transform-flow-strip-types"]},"gitHead":"dfc1cb62584cd78a4d6b899c22327c19ca03f366","bugs":{"url":"https://github.com/babel/babel-preset-env/issues"},"_id":"babel-preset-env@1.1.11","_shasum":"6aac8fc470ed2b38872f0b45b558e41125ea48a9","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.4","_npmUser":{"name":"existentialism","email":"bng412@gmail.com"},"dist":{"shasum":"6aac8fc470ed2b38872f0b45b558e41125ea48a9","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-preset-env/-/babel-preset-env-1.1.11.tgz"},"maintainers":[{"name":"existentialism","email":"bng412@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/babel-preset-env-1.1.11.tgz_1488399766433_0.3265872299671173"},"directories":{}},"2.0.0-alpha.1":{"name":"babel-preset-env","version":"2.0.0-alpha.1","description":"A Babel preset for each environment.","author":{"name":"Henry Zhu","email":"hi@henryzoo.com"},"homepage":"https://babeljs.io/","license":"MIT","repository":{"type":"git","url":"git+https://github.com/babel/babel-preset-env.git"},"main":"lib/index.js","scripts":{"build":"rimraf lib && babel src -d lib","build-data":"node ./scripts/build-data.js","dev":"babel -w src -d lib","lint":"eslint .","fix":"eslint . --fix","ci":"npm run test","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","test":"npm run build && mocha ./test --compilers js:babel-register -t 5000"},"dependencies":{"babel-plugin-check-es2015-constants":"7.0.0-alpha.1","babel-plugin-syntax-trailing-function-commas":"7.0.0-alpha.1","babel-plugin-transform-async-to-generator":"7.0.0-alpha.1","babel-plugin-transform-es2015-arrow-functions":"7.0.0-alpha.1","babel-plugin-transform-es2015-block-scoped-functions":"7.0.0-alpha.1","babel-plugin-transform-es2015-block-scoping":"7.0.0-alpha.1","babel-plugin-transform-es2015-classes":"7.0.0-alpha.1","babel-plugin-transform-es2015-computed-properties":"7.0.0-alpha.1","babel-plugin-transform-es2015-destructuring":"7.0.0-alpha.1","babel-plugin-transform-es2015-duplicate-keys":"7.0.0-alpha.1","babel-plugin-transform-es2015-for-of":"7.0.0-alpha.1","babel-plugin-transform-es2015-function-name":"7.0.0-alpha.1","babel-plugin-transform-es2015-literals":"7.0.0-alpha.1","babel-plugin-transform-es2015-modules-amd":"7.0.0-alpha.1","babel-plugin-transform-es2015-modules-commonjs":"7.0.0-alpha.1","babel-plugin-transform-es2015-modules-systemjs":"7.0.0-alpha.1","babel-plugin-transform-es2015-modules-umd":"7.0.0-alpha.1","babel-plugin-transform-es2015-object-super":"7.0.0-alpha.1","babel-plugin-transform-es2015-parameters":"7.0.0-alpha.1","babel-plugin-transform-es2015-shorthand-properties":"7.0.0-alpha.1","babel-plugin-transform-es2015-spread":"7.0.0-alpha.1","babel-plugin-transform-es2015-sticky-regex":"7.0.0-alpha.1","babel-plugin-transform-es2015-template-literals":"7.0.0-alpha.1","babel-plugin-transform-es2015-typeof-symbol":"7.0.0-alpha.1","babel-plugin-transform-es2015-unicode-regex":"7.0.0-alpha.1","babel-plugin-transform-exponentiation-operator":"7.0.0-alpha.1","babel-plugin-transform-regenerator":"7.0.0-alpha.1","browserslist":"^1.4.0","electron-to-chromium":"^1.1.0","invariant":"^2.2.2"},"devDependencies":{"babel-cli":"7.0.0-alpha.1","babel-eslint":"^7.1.1","babel-helper-fixtures":"7.0.0-alpha.1","babel-helper-plugin-test-runner":"7.0.0-alpha.1","babel-plugin-transform-flow-strip-types":"7.0.0-alpha.1","babel-preset-es2015":"7.0.0-alpha.1","babel-register":"7.0.0-alpha.1","chai":"^3.0.0","compat-table":"github:kangax/compat-table#291c758ac618fff6bf5bb2113a5aa046189f93e2","eslint":"^3.13.1","eslint-config-babel":"^5.0.0","eslint-plugin-flowtype":"^2.29.1","fs-extra":"^2.0.0","lodash":"^4.15.0","mocha":"^3.0.2","rimraf":"^2.5.4"},"babel":{"presets":[["es2015",{"loose":true}]],"plugins":["transform-flow-strip-types"]},"gitHead":"da943747209b9b6b033f745785def3df61ffff52","bugs":{"url":"https://github.com/babel/babel-preset-env/issues"},"_id":"babel-preset-env@2.0.0-alpha.1","_shasum":"5e7122a3851b7aa361124b3b6f2b6dba0b00d964","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"5e7122a3851b7aa361124b3b6f2b6dba0b00d964","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-preset-env/-/babel-preset-env-2.0.0-alpha.1.tgz"},"maintainers":[{"name":"existentialism","email":"bng412@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/babel-preset-env-2.0.0-alpha.1.tgz_1488492695909_0.9449279166292399"},"directories":{}},"1.2.0":{"name":"babel-preset-env","version":"1.2.0","description":"A Babel preset for each environment.","author":{"name":"Henry Zhu","email":"hi@henryzoo.com"},"homepage":"https://babeljs.io/","license":"MIT","repository":{"type":"git","url":"git+https://github.com/babel/babel-preset-env.git"},"main":"lib/index.js","scripts":{"build":"rimraf lib && babel src -d lib","build-data":"node ./scripts/build-data.js","dev":"babel -w src -d lib","lint":"eslint .","fix":"eslint . --fix","ci":"npm run test","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","test":"npm run build && mocha ./test --compilers js:babel-register -t 5000"},"dependencies":{"babel-plugin-check-es2015-constants":"^6.3.13","babel-plugin-syntax-trailing-function-commas":"^6.13.0","babel-plugin-transform-async-to-generator":"^6.8.0","babel-plugin-transform-es2015-arrow-functions":"^6.3.13","babel-plugin-transform-es2015-block-scoped-functions":"^6.3.13","babel-plugin-transform-es2015-block-scoping":"^6.6.0","babel-plugin-transform-es2015-classes":"^6.6.0","babel-plugin-transform-es2015-computed-properties":"^6.3.13","babel-plugin-transform-es2015-destructuring":"^6.6.0","babel-plugin-transform-es2015-duplicate-keys":"^6.6.0","babel-plugin-transform-es2015-for-of":"^6.6.0","babel-plugin-transform-es2015-function-name":"^6.3.13","babel-plugin-transform-es2015-literals":"^6.3.13","babel-plugin-transform-es2015-modules-amd":"^6.8.0","babel-plugin-transform-es2015-modules-commonjs":"^6.6.0","babel-plugin-transform-es2015-modules-systemjs":"^6.12.0","babel-plugin-transform-es2015-modules-umd":"^6.12.0","babel-plugin-transform-es2015-object-super":"^6.3.13","babel-plugin-transform-es2015-parameters":"^6.6.0","babel-plugin-transform-es2015-shorthand-properties":"^6.3.13","babel-plugin-transform-es2015-spread":"^6.3.13","babel-plugin-transform-es2015-sticky-regex":"^6.3.13","babel-plugin-transform-es2015-template-literals":"^6.6.0","babel-plugin-transform-es2015-typeof-symbol":"^6.6.0","babel-plugin-transform-es2015-unicode-regex":"^6.3.13","babel-plugin-transform-exponentiation-operator":"^6.8.0","babel-plugin-transform-regenerator":"^6.6.0","browserslist":"^1.4.0","electron-to-chromium":"^1.1.0","invariant":"^2.2.2"},"devDependencies":{"babel-cli":"^6.11.4","babel-eslint":"^7.1.1","babel-helper-fixtures":"^6.22.0","babel-helper-plugin-test-runner":"^6.18.0","babel-plugin-transform-flow-strip-types":"^6.8.0","babel-preset-es2015":"^6.14.0","babel-register":"^6.14.0","chai":"^3.0.0","compat-table":"github:kangax/compat-table#c38f039b8ea7fadf347d3e300fec3611645e31e9","eslint":"^3.13.1","eslint-config-babel":"^5.0.0","eslint-plugin-flowtype":"^2.29.1","fs-extra":"^2.0.0","lodash":"^4.15.0","mocha":"^3.0.2","rimraf":"^2.5.4"},"babel":{"presets":[["es2015",{"loose":true}]],"plugins":["transform-flow-strip-types"]},"gitHead":"82b62c9ed6be87dc1fe55d38c6ac3241f329358b","bugs":{"url":"https://github.com/babel/babel-preset-env/issues"},"_id":"babel-preset-env@1.2.0","_shasum":"c33f12ddd9c5b822ee47f6316de539ae8dc98e08","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.4","_npmUser":{"name":"existentialism","email":"bng412@gmail.com"},"dist":{"shasum":"c33f12ddd9c5b822ee47f6316de539ae8dc98e08","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-preset-env/-/babel-preset-env-1.2.0.tgz"},"maintainers":[{"name":"existentialism","email":"bng412@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/babel-preset-env-1.2.0.tgz_1488582397489_0.2164855431765318"},"directories":{}},"1.2.1":{"name":"babel-preset-env","version":"1.2.1","description":"A Babel preset for each environment.","author":{"name":"Henry Zhu","email":"hi@henryzoo.com"},"homepage":"https://babeljs.io/","license":"MIT","repository":{"type":"git","url":"git+https://github.com/babel/babel-preset-env.git"},"main":"lib/index.js","scripts":{"build":"rimraf lib && babel src -d lib","build-data":"node ./scripts/build-data.js","dev":"babel -w src -d lib","lint":"eslint .","fix":"eslint . --fix","ci":"npm run test","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","test":"npm run build && mocha ./test --compilers js:babel-register -t 5000"},"dependencies":{"babel-plugin-check-es2015-constants":"^6.3.13","babel-plugin-syntax-trailing-function-commas":"^6.13.0","babel-plugin-transform-async-to-generator":"^6.8.0","babel-plugin-transform-es2015-arrow-functions":"^6.3.13","babel-plugin-transform-es2015-block-scoped-functions":"^6.3.13","babel-plugin-transform-es2015-block-scoping":"^6.6.0","babel-plugin-transform-es2015-classes":"^6.6.0","babel-plugin-transform-es2015-computed-properties":"^6.3.13","babel-plugin-transform-es2015-destructuring":"^6.6.0","babel-plugin-transform-es2015-duplicate-keys":"^6.6.0","babel-plugin-transform-es2015-for-of":"^6.6.0","babel-plugin-transform-es2015-function-name":"^6.3.13","babel-plugin-transform-es2015-literals":"^6.3.13","babel-plugin-transform-es2015-modules-amd":"^6.8.0","babel-plugin-transform-es2015-modules-commonjs":"^6.6.0","babel-plugin-transform-es2015-modules-systemjs":"^6.12.0","babel-plugin-transform-es2015-modules-umd":"^6.12.0","babel-plugin-transform-es2015-object-super":"^6.3.13","babel-plugin-transform-es2015-parameters":"^6.6.0","babel-plugin-transform-es2015-shorthand-properties":"^6.3.13","babel-plugin-transform-es2015-spread":"^6.3.13","babel-plugin-transform-es2015-sticky-regex":"^6.3.13","babel-plugin-transform-es2015-template-literals":"^6.6.0","babel-plugin-transform-es2015-typeof-symbol":"^6.6.0","babel-plugin-transform-es2015-unicode-regex":"^6.3.13","babel-plugin-transform-exponentiation-operator":"^6.8.0","babel-plugin-transform-regenerator":"^6.6.0","browserslist":"^1.4.0","electron-to-chromium":"^1.1.0","invariant":"^2.2.2"},"devDependencies":{"babel-cli":"^6.11.4","babel-eslint":"^7.1.1","babel-helper-fixtures":"^6.22.0","babel-helper-plugin-test-runner":"^6.18.0","babel-plugin-transform-flow-strip-types":"^6.8.0","babel-preset-es2015":"^6.14.0","babel-register":"^6.14.0","chai":"^3.0.0","compat-table":"github:kangax/compat-table#c38f039b8ea7fadf347d3e300fec3611645e31e9","eslint":"^3.13.1","eslint-config-babel":"^5.0.0","eslint-plugin-flowtype":"^2.29.1","fs-extra":"^2.0.0","lodash":"^4.15.0","mocha":"^3.0.2","rimraf":"^2.5.4"},"babel":{"presets":[["es2015",{"loose":true}]],"plugins":["transform-flow-strip-types"]},"gitHead":"14b2e4fed8a2d504f0aaf24fad143f58e1cb3feb","bugs":{"url":"https://github.com/babel/babel-preset-env/issues"},"_id":"babel-preset-env@1.2.1","_shasum":"659178f54df74a74765f796be4d290b5beeb3f5f","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.4","_npmUser":{"name":"existentialism","email":"bng412@gmail.com"},"dist":{"shasum":"659178f54df74a74765f796be4d290b5beeb3f5f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-preset-env/-/babel-preset-env-1.2.1.tgz"},"maintainers":[{"name":"existentialism","email":"bng412@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/babel-preset-env-1.2.1.tgz_1488834097178_0.38937413203530014"},"directories":{}},"1.2.2":{"name":"babel-preset-env","version":"1.2.2","description":"A Babel preset for each environment.","author":{"name":"Henry Zhu","email":"hi@henryzoo.com"},"homepage":"https://babeljs.io/","license":"MIT","repository":{"type":"git","url":"git+https://github.com/babel/babel-preset-env.git"},"main":"lib/index.js","scripts":{"build":"rimraf lib && babel src -d lib","build-data":"node ./scripts/build-data.js","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","coverage":"BABEL_ENV=test nyc npm run test","coverage-ci":"nyc report --reporter=json && codecov -f coverage/coverage-final.json","dev":"babel -w src -d lib","fix":"eslint . --fix","lint":"eslint .","test":"npm run build && npm run test-only","test-ci":"nyc npm run test","test-only":"mocha ./test --compilers js:babel-register -t 10000"},"dependencies":{"babel-plugin-check-es2015-constants":"^6.22.0","babel-plugin-syntax-trailing-function-commas":"^6.22.0","babel-plugin-transform-async-to-generator":"^6.22.0","babel-plugin-transform-es2015-arrow-functions":"^6.22.0","babel-plugin-transform-es2015-block-scoped-functions":"^6.22.0","babel-plugin-transform-es2015-block-scoping":"^6.23.0","babel-plugin-transform-es2015-classes":"^6.23.0","babel-plugin-transform-es2015-computed-properties":"^6.22.0","babel-plugin-transform-es2015-destructuring":"^6.23.0","babel-plugin-transform-es2015-duplicate-keys":"^6.22.0","babel-plugin-transform-es2015-for-of":"^6.23.0","babel-plugin-transform-es2015-function-name":"^6.22.0","babel-plugin-transform-es2015-literals":"^6.22.0","babel-plugin-transform-es2015-modules-amd":"^6.22.0","babel-plugin-transform-es2015-modules-commonjs":"^6.23.0","babel-plugin-transform-es2015-modules-systemjs":"^6.23.0","babel-plugin-transform-es2015-modules-umd":"^6.23.0","babel-plugin-transform-es2015-object-super":"^6.22.0","babel-plugin-transform-es2015-parameters":"^6.23.0","babel-plugin-transform-es2015-shorthand-properties":"^6.22.0","babel-plugin-transform-es2015-spread":"^6.22.0","babel-plugin-transform-es2015-sticky-regex":"^6.22.0","babel-plugin-transform-es2015-template-literals":"^6.22.0","babel-plugin-transform-es2015-typeof-symbol":"^6.23.0","babel-plugin-transform-es2015-unicode-regex":"^6.22.0","babel-plugin-transform-exponentiation-operator":"^6.22.0","babel-plugin-transform-regenerator":"^6.22.0","browserslist":"^1.4.0","electron-to-chromium":"^1.2.6","invariant":"^2.2.2"},"devDependencies":{"babel-cli":"^6.23.0","babel-eslint":"^7.1.1","babel-helper-fixtures":"^6.22.0","babel-helper-plugin-test-runner":"^6.22.0","babel-plugin-istanbul":"^3.1.2","babel-plugin-transform-flow-strip-types":"^6.22.0","babel-preset-es2015":"^6.22.0","babel-register":"^6.23.0","chai":"^3.5.0","codecov":"^1.0.1","compat-table":"github:kangax/compat-table#c38f039b8ea7fadf347d3e300fec3611645e31e9","eslint":"^3.17.1","eslint-config-babel":"^6.0.0","eslint-plugin-flowtype":"^2.29.1","fs-extra":"^2.0.0","lodash":"^4.17.4","mocha":"^3.2.0","nyc":"^10.1.2","rimraf":"^2.6.1"},"babel":{"presets":[["es2015",{"loose":true}]],"plugins":["transform-flow-strip-types"],"env":{"test":{"plugins":["istanbul"]}}},"nyc":{"all":true,"include":["src/*.js"],"instrument":false,"sourceMap":false},"gitHead":"40c3a1f4d0ba4158eaf7b67c5ec2e056aad7ec80","bugs":{"url":"https://github.com/babel/babel-preset-env/issues"},"_id":"babel-preset-env@1.2.2","_shasum":"1dbc4d7f8a575691d301f45fa9b2f9698b1e3b92","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.4","_npmUser":{"name":"existentialism","email":"bng412@gmail.com"},"dist":{"shasum":"1dbc4d7f8a575691d301f45fa9b2f9698b1e3b92","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-preset-env/-/babel-preset-env-1.2.2.tgz"},"maintainers":[{"name":"existentialism","email":"bng412@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/babel-preset-env-1.2.2.tgz_1489596685262_0.25938815088011324"},"directories":{}},"2.0.0-alpha.3":{"name":"babel-preset-env","version":"2.0.0-alpha.3","description":"A Babel preset for each environment.","author":{"name":"Henry Zhu","email":"hi@henryzoo.com"},"homepage":"https://babeljs.io/","license":"MIT","repository":{"type":"git","url":"git+https://github.com/babel/babel-preset-env.git"},"main":"lib/index.js","scripts":{"build":"rimraf lib && babel src -d lib","build-data":"node ./scripts/build-data.js","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","coverage":"BABEL_ENV=test nyc npm run test","coverage-ci":"nyc report --reporter=json && codecov -f coverage/coverage-final.json","dev":"babel -w src -d lib","fix":"eslint . --fix","format":"prettier --trailing-comma all --write \"src/*.js\" \"test/*.js\" && prettier --trailing-comma es5 --write \"scripts/*.js\"","lint":"eslint .","precommit":"lint-staged","test":"npm run build && npm run test-only","test-ci":"nyc npm run test","test-only":"mocha ./test --compilers js:babel-register -t 10000"},"dependencies":{"babel-plugin-check-es2015-constants":"7.0.0-alpha.3","babel-plugin-syntax-trailing-function-commas":"7.0.0-alpha.3","babel-plugin-transform-async-to-generator":"7.0.0-alpha.3","babel-plugin-transform-es2015-arrow-functions":"7.0.0-alpha.3","babel-plugin-transform-es2015-block-scoped-functions":"7.0.0-alpha.3","babel-plugin-transform-es2015-block-scoping":"7.0.0-alpha.3","babel-plugin-transform-es2015-classes":"7.0.0-alpha.3","babel-plugin-transform-es2015-computed-properties":"7.0.0-alpha.3","babel-plugin-transform-es2015-destructuring":"7.0.0-alpha.3","babel-plugin-transform-es2015-duplicate-keys":"7.0.0-alpha.3","babel-plugin-transform-es2015-for-of":"7.0.0-alpha.3","babel-plugin-transform-es2015-function-name":"7.0.0-alpha.3","babel-plugin-transform-es2015-literals":"7.0.0-alpha.3","babel-plugin-transform-es2015-modules-amd":"7.0.0-alpha.3","babel-plugin-transform-es2015-modules-commonjs":"7.0.0-alpha.3","babel-plugin-transform-es2015-modules-systemjs":"7.0.0-alpha.3","babel-plugin-transform-es2015-modules-umd":"7.0.0-alpha.3","babel-plugin-transform-es2015-object-super":"7.0.0-alpha.3","babel-plugin-transform-es2015-parameters":"7.0.0-alpha.3","babel-plugin-transform-es2015-shorthand-properties":"7.0.0-alpha.3","babel-plugin-transform-es2015-spread":"7.0.0-alpha.3","babel-plugin-transform-es2015-sticky-regex":"7.0.0-alpha.3","babel-plugin-transform-es2015-template-literals":"7.0.0-alpha.3","babel-plugin-transform-es2015-typeof-symbol":"7.0.0-alpha.3","babel-plugin-transform-es2015-unicode-regex":"7.0.0-alpha.3","babel-plugin-transform-exponentiation-operator":"7.0.0-alpha.3","babel-plugin-transform-regenerator":"7.0.0-alpha.3","browserslist":"^1.4.0","electron-to-chromium":"^1.2.6","invariant":"^2.2.2"},"devDependencies":{"babel-cli":"7.0.0-alpha.3","babel-eslint":"^7.1.1","babel-helper-fixtures":"7.0.0-alpha.3","babel-helper-plugin-test-runner":"7.0.0-alpha.3","babel-plugin-istanbul":"^4.0.0","babel-plugin-transform-flow-strip-types":"7.0.0-alpha.3","babel-preset-env":"2.0.0-alpha.1","babel-register":"7.0.0-alpha.2","chai":"^3.5.0","codecov":"^2.0.1","compat-table":"github:kangax/compat-table#c38f039b8ea7fadf347d3e300fec3611645e31e9","eslint":"^3.17.1","eslint-config-babel":"^6.0.0","eslint-plugin-flowtype":"^2.29.1","fs-extra":"^2.0.0","husky":"^0.13.2","lint-staged":"^3.3.1","lodash":"^4.17.4","mocha":"^3.2.0","nyc":"^10.1.2","prettier":"^0.22.0","rimraf":"^2.6.1"},"babel":{"presets":[["env",{"targets":{"node":4},"loose":true}]],"plugins":["transform-flow-strip-types"],"env":{"test":{"plugins":["istanbul"]}}},"nyc":{"all":true,"include":["src/*.js"],"instrument":false,"sourceMap":false},"lint-staged":{"src/**/*.js":["prettier --trailing-comma all --write","git add"],"scripts/*.js":["prettier --trailing-comma es5 --write","git add"],"test/*.js":["prettier --trailing-comma all --write","git add"]},"gitHead":"c97424dd734b9a7f4c33500317c958cf4c72b166","bugs":{"url":"https://github.com/babel/babel-preset-env/issues"},"_id":"babel-preset-env@2.0.0-alpha.3","_shasum":"49a19552ed932af51faeb22ecb5b9c6dfad6bdbb","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"49a19552ed932af51faeb22ecb5b9c6dfad6bdbb","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-preset-env/-/babel-preset-env-2.0.0-alpha.3.tgz"},"maintainers":[{"name":"existentialism","email":"bng412@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/babel-preset-env-2.0.0-alpha.3.tgz_1490303022038_0.6713828623760492"},"directories":{}},"1.3.0":{"name":"babel-preset-env","version":"1.3.0","description":"A Babel preset for each environment.","author":{"name":"Henry Zhu","email":"hi@henryzoo.com"},"homepage":"https://babeljs.io/","license":"MIT","repository":{"type":"git","url":"git+https://github.com/babel/babel-preset-env.git"},"main":"lib/index.js","scripts":{"build":"rimraf lib && babel src -d lib","build-data":"node ./scripts/build-data.js","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","coverage":"BABEL_ENV=test nyc npm run test","coverage-ci":"nyc report --reporter=json && codecov -f coverage/coverage-final.json","dev":"babel -w src -d lib","fix":"eslint . --fix","lint":"eslint .","test":"npm run build && npm run test-only","test-ci":"nyc npm run test","test-only":"mocha ./test --compilers js:babel-register -t 10000"},"dependencies":{"babel-plugin-check-es2015-constants":"^6.22.0","babel-plugin-syntax-trailing-function-commas":"^6.22.0","babel-plugin-transform-async-to-generator":"^6.22.0","babel-plugin-transform-es2015-arrow-functions":"^6.22.0","babel-plugin-transform-es2015-block-scoped-functions":"^6.22.0","babel-plugin-transform-es2015-block-scoping":"^6.23.0","babel-plugin-transform-es2015-classes":"^6.23.0","babel-plugin-transform-es2015-computed-properties":"^6.22.0","babel-plugin-transform-es2015-destructuring":"^6.23.0","babel-plugin-transform-es2015-duplicate-keys":"^6.22.0","babel-plugin-transform-es2015-for-of":"^6.23.0","babel-plugin-transform-es2015-function-name":"^6.22.0","babel-plugin-transform-es2015-literals":"^6.22.0","babel-plugin-transform-es2015-modules-amd":"^6.22.0","babel-plugin-transform-es2015-modules-commonjs":"^6.23.0","babel-plugin-transform-es2015-modules-systemjs":"^6.23.0","babel-plugin-transform-es2015-modules-umd":"^6.23.0","babel-plugin-transform-es2015-object-super":"^6.22.0","babel-plugin-transform-es2015-parameters":"^6.23.0","babel-plugin-transform-es2015-shorthand-properties":"^6.22.0","babel-plugin-transform-es2015-spread":"^6.22.0","babel-plugin-transform-es2015-sticky-regex":"^6.22.0","babel-plugin-transform-es2015-template-literals":"^6.22.0","babel-plugin-transform-es2015-typeof-symbol":"^6.23.0","babel-plugin-transform-es2015-unicode-regex":"^6.22.0","babel-plugin-transform-exponentiation-operator":"^6.22.0","babel-plugin-transform-regenerator":"^6.22.0","browserslist":"^1.4.0","invariant":"^2.2.2"},"devDependencies":{"babel-cli":"^6.23.0","babel-eslint":"^7.1.1","babel-helper-fixtures":"^6.22.0","babel-helper-plugin-test-runner":"^6.22.0","babel-plugin-istanbul":"^3.1.2","babel-plugin-transform-flow-strip-types":"^6.22.0","babel-preset-es2015":"^6.22.0","babel-register":"^6.23.0","chai":"^3.5.0","codecov":"^1.0.1","compat-table":"github:kangax/compat-table#c38f039b8ea7fadf347d3e300fec3611645e31e9","eslint":"^3.17.1","eslint-config-babel":"^6.0.0","eslint-plugin-flowtype":"^2.29.1","fs-extra":"^2.0.0","lodash":"^4.17.4","mocha":"^3.2.0","nyc":"^10.1.2","electron-to-chromium":"^1.3.2","rimraf":"^2.6.1"},"babel":{"presets":[["es2015",{"loose":true}]],"plugins":["transform-flow-strip-types"],"env":{"test":{"plugins":["istanbul"]}}},"nyc":{"all":true,"include":["src/*.js"],"instrument":false,"sourceMap":false},"gitHead":"8b2dc4fbb983d9eed22263bcf15140cc31da8286","bugs":{"url":"https://github.com/babel/babel-preset-env/issues"},"_id":"babel-preset-env@1.3.0","_shasum":"c56676bee9a0762d9aa4612d6113b776f7179132","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.4","_npmUser":{"name":"existentialism","email":"bng412@gmail.com"},"dist":{"shasum":"c56676bee9a0762d9aa4612d6113b776f7179132","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-preset-env/-/babel-preset-env-1.3.0.tgz"},"maintainers":[{"name":"existentialism","email":"bng412@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/babel-preset-env-1.3.0.tgz_1490906501789_0.023368048248812556"},"directories":{}},"1.3.1":{"name":"babel-preset-env","version":"1.3.1","description":"A Babel preset for each environment.","author":{"name":"Henry Zhu","email":"hi@henryzoo.com"},"homepage":"https://babeljs.io/","license":"MIT","repository":{"type":"git","url":"git+https://github.com/babel/babel-preset-env.git"},"main":"lib/index.js","scripts":{"build":"rimraf lib && babel src -d lib","build-data":"node ./scripts/build-data.js","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","coverage":"BABEL_ENV=test nyc npm run test","coverage-ci":"nyc report --reporter=json && codecov -f coverage/coverage-final.json","dev":"babel -w src -d lib","fix":"eslint . --fix","lint":"eslint .","test":"npm run build && npm run test-only","test-ci":"nyc npm run test","test-only":"mocha ./test --compilers js:babel-register -t 10000"},"dependencies":{"babel-plugin-check-es2015-constants":"^6.22.0","babel-plugin-syntax-trailing-function-commas":"^6.22.0","babel-plugin-transform-async-to-generator":"^6.22.0","babel-plugin-transform-es2015-arrow-functions":"^6.22.0","babel-plugin-transform-es2015-block-scoped-functions":"^6.22.0","babel-plugin-transform-es2015-block-scoping":"^6.23.0","babel-plugin-transform-es2015-classes":"^6.23.0","babel-plugin-transform-es2015-computed-properties":"^6.22.0","babel-plugin-transform-es2015-destructuring":"^6.23.0","babel-plugin-transform-es2015-duplicate-keys":"^6.22.0","babel-plugin-transform-es2015-for-of":"^6.23.0","babel-plugin-transform-es2015-function-name":"^6.22.0","babel-plugin-transform-es2015-literals":"^6.22.0","babel-plugin-transform-es2015-modules-amd":"^6.22.0","babel-plugin-transform-es2015-modules-commonjs":"^6.23.0","babel-plugin-transform-es2015-modules-systemjs":"^6.23.0","babel-plugin-transform-es2015-modules-umd":"^6.23.0","babel-plugin-transform-es2015-object-super":"^6.22.0","babel-plugin-transform-es2015-parameters":"^6.23.0","babel-plugin-transform-es2015-shorthand-properties":"^6.22.0","babel-plugin-transform-es2015-spread":"^6.22.0","babel-plugin-transform-es2015-sticky-regex":"^6.22.0","babel-plugin-transform-es2015-template-literals":"^6.22.0","babel-plugin-transform-es2015-typeof-symbol":"^6.23.0","babel-plugin-transform-es2015-unicode-regex":"^6.22.0","babel-plugin-transform-exponentiation-operator":"^6.22.0","babel-plugin-transform-regenerator":"^6.22.0","browserslist":"^1.4.0","invariant":"^2.2.2"},"devDependencies":{"babel-cli":"^6.23.0","babel-eslint":"^7.1.1","babel-helper-fixtures":"^6.22.0","babel-helper-plugin-test-runner":"^6.22.0","babel-plugin-istanbul":"^3.1.2","babel-plugin-transform-flow-strip-types":"^6.22.0","babel-preset-es2015":"^6.22.0","babel-register":"^6.23.0","chai":"^3.5.0","codecov":"^1.0.1","compat-table":"github:kangax/compat-table#c38f039b8ea7fadf347d3e300fec3611645e31e9","eslint":"^3.17.1","eslint-config-babel":"^6.0.0","eslint-plugin-flowtype":"^2.29.1","fs-extra":"^2.0.0","lodash":"^4.17.4","mocha":"^3.2.0","nyc":"^10.1.2","electron-to-chromium":"^1.3.2","rimraf":"^2.6.1"},"babel":{"presets":[["es2015",{"loose":true}]],"plugins":["transform-flow-strip-types"],"env":{"test":{"plugins":["istanbul"]}}},"nyc":{"all":true,"include":["src/*.js"],"instrument":false,"sourceMap":false},"gitHead":"6e7b8d1e53434260620ab6f577e4297983f0a6b0","bugs":{"url":"https://github.com/babel/babel-preset-env/issues"},"_id":"babel-preset-env@1.3.1","_shasum":"2c60b961dfaaa867bb290d19a7f69aa705039d16","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.4","_npmUser":{"name":"existentialism","email":"bng412@gmail.com"},"dist":{"shasum":"2c60b961dfaaa867bb290d19a7f69aa705039d16","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-preset-env/-/babel-preset-env-1.3.1.tgz"},"maintainers":[{"name":"existentialism","email":"bng412@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/babel-preset-env-1.3.1.tgz_1490908114391_0.0474600272718817"},"directories":{}},"1.3.2":{"name":"babel-preset-env","version":"1.3.2","description":"A Babel preset for each environment.","author":{"name":"Henry Zhu","email":"hi@henryzoo.com"},"homepage":"https://babeljs.io/","license":"MIT","repository":{"type":"git","url":"git+https://github.com/babel/babel-preset-env.git"},"main":"lib/index.js","scripts":{"build":"rimraf lib && babel src -d lib","build-data":"node ./scripts/build-data.js","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","coverage":"BABEL_ENV=test nyc npm run test","coverage-ci":"nyc report --reporter=json && codecov -f coverage/coverage-final.json","dev":"babel -w src -d lib","fix":"eslint . --fix","lint":"eslint .","test":"npm run build && npm run test-only","test-ci":"nyc npm run test","test-only":"mocha ./test --compilers js:babel-register -t 10000"},"dependencies":{"babel-plugin-check-es2015-constants":"^6.22.0","babel-plugin-syntax-trailing-function-commas":"^6.22.0","babel-plugin-transform-async-to-generator":"^6.22.0","babel-plugin-transform-es2015-arrow-functions":"^6.22.0","babel-plugin-transform-es2015-block-scoped-functions":"^6.22.0","babel-plugin-transform-es2015-block-scoping":"^6.23.0","babel-plugin-transform-es2015-classes":"^6.23.0","babel-plugin-transform-es2015-computed-properties":"^6.22.0","babel-plugin-transform-es2015-destructuring":"^6.23.0","babel-plugin-transform-es2015-duplicate-keys":"^6.22.0","babel-plugin-transform-es2015-for-of":"^6.23.0","babel-plugin-transform-es2015-function-name":"^6.22.0","babel-plugin-transform-es2015-literals":"^6.22.0","babel-plugin-transform-es2015-modules-amd":"^6.22.0","babel-plugin-transform-es2015-modules-commonjs":"^6.23.0","babel-plugin-transform-es2015-modules-systemjs":"^6.23.0","babel-plugin-transform-es2015-modules-umd":"^6.23.0","babel-plugin-transform-es2015-object-super":"^6.22.0","babel-plugin-transform-es2015-parameters":"^6.23.0","babel-plugin-transform-es2015-shorthand-properties":"^6.22.0","babel-plugin-transform-es2015-spread":"^6.22.0","babel-plugin-transform-es2015-sticky-regex":"^6.22.0","babel-plugin-transform-es2015-template-literals":"^6.22.0","babel-plugin-transform-es2015-typeof-symbol":"^6.23.0","babel-plugin-transform-es2015-unicode-regex":"^6.22.0","babel-plugin-transform-exponentiation-operator":"^6.22.0","babel-plugin-transform-regenerator":"^6.22.0","browserslist":"^1.4.0","invariant":"^2.2.2"},"devDependencies":{"babel-cli":"^6.23.0","babel-eslint":"^7.1.1","babel-helper-fixtures":"^6.22.0","babel-helper-plugin-test-runner":"^6.22.0","babel-plugin-istanbul":"^3.1.2","babel-plugin-transform-flow-strip-types":"^6.22.0","babel-preset-es2015":"^6.22.0","babel-register":"^6.23.0","chai":"^3.5.0","codecov":"^1.0.1","compat-table":"github:kangax/compat-table#c38f039b8ea7fadf347d3e300fec3611645e31e9","eslint":"^3.17.1","eslint-config-babel":"^6.0.0","eslint-plugin-flowtype":"^2.29.1","fs-extra":"^2.0.0","lodash":"^4.17.4","mocha":"^3.2.0","nyc":"^10.1.2","electron-to-chromium":"^1.3.2","rimraf":"^2.6.1"},"babel":{"presets":[["es2015",{"loose":true}]],"plugins":["transform-flow-strip-types"],"env":{"test":{"plugins":["istanbul"]}}},"nyc":{"all":true,"include":["src/*.js"],"instrument":false,"sourceMap":false},"gitHead":"147a33b2aea076d89dc914e37767efcb09722b5c","bugs":{"url":"https://github.com/babel/babel-preset-env/issues"},"_id":"babel-preset-env@1.3.2","_shasum":"08eabd2bf810c3678069f7e052323419f1448749","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.4","_npmUser":{"name":"existentialism","email":"bng412@gmail.com"},"dist":{"shasum":"08eabd2bf810c3678069f7e052323419f1448749","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-preset-env/-/babel-preset-env-1.3.2.tgz"},"maintainers":[{"name":"existentialism","email":"bng412@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/babel-preset-env-1.3.2.tgz_1490912792708_0.26752590271644294"},"directories":{}},"2.0.0-alpha.4":{"name":"babel-preset-env","version":"2.0.0-alpha.4","description":"A Babel preset for each environment.","author":{"name":"Henry Zhu","email":"hi@henryzoo.com"},"homepage":"https://babeljs.io/","license":"MIT","repository":{"type":"git","url":"git+https://github.com/babel/babel-preset-env.git"},"main":"lib/index.js","scripts":{"build":"rimraf lib && babel src -d lib","build-data":"node ./scripts/build-data.js","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","coverage":"BABEL_ENV=test nyc npm run test","coverage-ci":"nyc report --reporter=json && codecov -f coverage/coverage-final.json","dev":"babel -w src -d lib","fix":"eslint . --fix","format":"prettier --trailing-comma all --write \"src/*.js\" \"test/*.js\" && prettier --trailing-comma es5 --write \"scripts/*.js\"","lint":"eslint .","precommit":"lint-staged","prepublish":"npm run build","test":"npm run build && npm run test-only","test-ci":"nyc npm run test","test-only":"mocha ./test --compilers js:babel-register -t 10000"},"dependencies":{"babel-plugin-check-es2015-constants":"7.0.0-alpha.7","babel-plugin-syntax-trailing-function-commas":"7.0.0-alpha.7","babel-plugin-transform-async-to-generator":"7.0.0-alpha.7","babel-plugin-transform-es2015-arrow-functions":"7.0.0-alpha.7","babel-plugin-transform-es2015-block-scoped-functions":"7.0.0-alpha.7","babel-plugin-transform-es2015-block-scoping":"7.0.0-alpha.7","babel-plugin-transform-es2015-classes":"7.0.0-alpha.7","babel-plugin-transform-es2015-computed-properties":"7.0.0-alpha.7","babel-plugin-transform-es2015-destructuring":"7.0.0-alpha.7","babel-plugin-transform-es2015-duplicate-keys":"7.0.0-alpha.7","babel-plugin-transform-es2015-for-of":"7.0.0-alpha.7","babel-plugin-transform-es2015-function-name":"7.0.0-alpha.7","babel-plugin-transform-es2015-literals":"7.0.0-alpha.7","babel-plugin-transform-es2015-modules-amd":"7.0.0-alpha.7","babel-plugin-transform-es2015-modules-commonjs":"7.0.0-alpha.7","babel-plugin-transform-es2015-modules-systemjs":"7.0.0-alpha.7","babel-plugin-transform-es2015-modules-umd":"7.0.0-alpha.7","babel-plugin-transform-es2015-object-super":"7.0.0-alpha.7","babel-plugin-transform-es2015-parameters":"7.0.0-alpha.7","babel-plugin-transform-es2015-shorthand-properties":"7.0.0-alpha.7","babel-plugin-transform-es2015-spread":"7.0.0-alpha.7","babel-plugin-transform-es2015-sticky-regex":"7.0.0-alpha.7","babel-plugin-transform-es2015-template-literals":"7.0.0-alpha.7","babel-plugin-transform-es2015-typeof-symbol":"7.0.0-alpha.7","babel-plugin-transform-es2015-unicode-regex":"7.0.0-alpha.7","babel-plugin-transform-exponentiation-operator":"7.0.0-alpha.7","babel-plugin-transform-regenerator":"7.0.0-alpha.7","browserslist":"^1.4.0","invariant":"^2.2.2"},"devDependencies":{"babel-cli":"7.0.0-alpha.6","babel-eslint":"^7.1.1","babel-helper-fixtures":"7.0.0-alpha.3","babel-helper-plugin-test-runner":"7.0.0-alpha.7","babel-plugin-istanbul":"^4.0.0","babel-plugin-transform-flow-strip-types":"7.0.0-alpha.7","babel-preset-env":"2.0.0-alpha.1","babel-register":"7.0.0-alpha.7","chai":"^3.5.0","codecov":"^2.0.1","compat-table":"github:kangax/compat-table#c38f039b8ea7fadf347d3e300fec3611645e31e9","electron-to-chromium":"^1.3.2","eslint":"^3.17.1","eslint-config-babel":"^6.0.0","eslint-plugin-flowtype":"^2.29.1","fs-extra":"^2.0.0","husky":"^0.13.2","lint-staged":"^3.3.1","lodash":"^4.17.4","mocha":"^3.2.0","nyc":"^10.1.2","prettier":"^0.22.0","rimraf":"^2.6.1"},"babel":{"presets":[["env",{"targets":{"node":4},"loose":true}]],"plugins":["transform-flow-strip-types"],"env":{"test":{"plugins":["istanbul"]}}},"nyc":{"all":true,"include":["src/*.js"],"instrument":false,"sourceMap":false},"lint-staged":{"src/**/*.js":["prettier --trailing-comma all --write","git add"],"scripts/*.js":["prettier --trailing-comma es5 --write","git add"],"test/*.js":["prettier --trailing-comma all --write","git add"],"package.json":["node ./scripts/yarn-install.js","git add yarn.lock"]},"gitHead":"4063949b3deaf92cb782cafc8622b32a18b0beb6","bugs":{"url":"https://github.com/babel/babel-preset-env/issues"},"_id":"babel-preset-env@2.0.0-alpha.4","_shasum":"2c3f3764eef3728cb2c36b71b605d3c0d90dbeab","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"2c3f3764eef3728cb2c36b71b605d3c0d90dbeab","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-preset-env/-/babel-preset-env-2.0.0-alpha.4.tgz"},"maintainers":[{"name":"existentialism","email":"bng412@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/babel-preset-env-2.0.0-alpha.4.tgz_1491583423123_0.18494040169753134"},"directories":{}},"1.3.3":{"name":"babel-preset-env","version":"1.3.3","description":"A Babel preset for each environment.","author":{"name":"Henry Zhu","email":"hi@henryzoo.com"},"homepage":"https://babeljs.io/","license":"MIT","repository":{"type":"git","url":"git+https://github.com/babel/babel-preset-env.git"},"main":"lib/index.js","scripts":{"build":"rimraf lib && babel src -d lib","build-data":"node ./scripts/build-data.js","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","coverage":"BABEL_ENV=test nyc npm run test","coverage-ci":"nyc report --reporter=json && codecov -f coverage/coverage-final.json","dev":"babel -w src -d lib","fix":"eslint . --fix","lint":"eslint .","prepublish":"npm run build","test":"npm run build && npm run test-only","test-ci":"nyc npm run test","test-only":"mocha ./test --compilers js:babel-register -t 10000"},"dependencies":{"babel-plugin-check-es2015-constants":"^6.22.0","babel-plugin-syntax-trailing-function-commas":"^6.22.0","babel-plugin-transform-async-to-generator":"^6.22.0","babel-plugin-transform-es2015-arrow-functions":"^6.22.0","babel-plugin-transform-es2015-block-scoped-functions":"^6.22.0","babel-plugin-transform-es2015-block-scoping":"^6.23.0","babel-plugin-transform-es2015-classes":"^6.23.0","babel-plugin-transform-es2015-computed-properties":"^6.22.0","babel-plugin-transform-es2015-destructuring":"^6.23.0","babel-plugin-transform-es2015-duplicate-keys":"^6.22.0","babel-plugin-transform-es2015-for-of":"^6.23.0","babel-plugin-transform-es2015-function-name":"^6.22.0","babel-plugin-transform-es2015-literals":"^6.22.0","babel-plugin-transform-es2015-modules-amd":"^6.22.0","babel-plugin-transform-es2015-modules-commonjs":"^6.23.0","babel-plugin-transform-es2015-modules-systemjs":"^6.23.0","babel-plugin-transform-es2015-modules-umd":"^6.23.0","babel-plugin-transform-es2015-object-super":"^6.22.0","babel-plugin-transform-es2015-parameters":"^6.23.0","babel-plugin-transform-es2015-shorthand-properties":"^6.22.0","babel-plugin-transform-es2015-spread":"^6.22.0","babel-plugin-transform-es2015-sticky-regex":"^6.22.0","babel-plugin-transform-es2015-template-literals":"^6.22.0","babel-plugin-transform-es2015-typeof-symbol":"^6.23.0","babel-plugin-transform-es2015-unicode-regex":"^6.22.0","babel-plugin-transform-exponentiation-operator":"^6.22.0","babel-plugin-transform-regenerator":"^6.22.0","browserslist":"^1.4.0","invariant":"^2.2.2"},"devDependencies":{"babel-cli":"^6.23.0","babel-eslint":"^7.1.1","babel-helper-fixtures":"^6.22.0","babel-helper-plugin-test-runner":"^6.22.0","babel-plugin-istanbul":"^3.1.2","babel-plugin-transform-flow-strip-types":"^6.22.0","babel-preset-es2015":"^6.22.0","babel-register":"^6.23.0","chai":"^3.5.0","codecov":"^1.0.1","compat-table":"github:kangax/compat-table#c38f039b8ea7fadf347d3e300fec3611645e31e9","eslint":"^3.17.1","eslint-config-babel":"^6.0.0","eslint-plugin-flowtype":"^2.29.1","fs-extra":"^2.0.0","lodash":"^4.17.4","mocha":"^3.2.0","nyc":"^10.1.2","electron-to-chromium":"^1.3.2","rimraf":"^2.6.1"},"babel":{"presets":[["es2015",{"loose":true}]],"plugins":["transform-flow-strip-types"],"env":{"test":{"plugins":["istanbul"]}}},"nyc":{"all":true,"include":["src/*.js"],"instrument":false,"sourceMap":false},"gitHead":"a222453adc475b3f1cc7d0366450b3475cc9174f","bugs":{"url":"https://github.com/babel/babel-preset-env/issues"},"_id":"babel-preset-env@1.3.3","_shasum":"5913407784e3d98de2aa814a3ef9059722b34e0b","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.4","_npmUser":{"name":"existentialism","email":"bng412@gmail.com"},"dist":{"shasum":"5913407784e3d98de2aa814a3ef9059722b34e0b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-preset-env/-/babel-preset-env-1.3.3.tgz"},"maintainers":[{"name":"existentialism","email":"bng412@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/babel-preset-env-1.3.3.tgz_1491601113559_0.7605082881636918"},"directories":{}},"2.0.0-alpha.5":{"name":"babel-preset-env","version":"2.0.0-alpha.5","description":"A Babel preset for each environment.","author":{"name":"Henry Zhu","email":"hi@henryzoo.com"},"homepage":"https://babeljs.io/","license":"MIT","repository":{"type":"git","url":"git+https://github.com/babel/babel-preset-env.git"},"main":"lib/index.js","scripts":{"build":"rimraf lib && babel src -d lib","build-data":"node ./scripts/build-data.js","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","coverage":"BABEL_ENV=test nyc npm run test","coverage-ci":"nyc report --reporter=json && codecov -f coverage/coverage-final.json","dev":"babel -w src -d lib","fix":"eslint . --fix","format":"prettier --trailing-comma all --write \"src/*.js\" \"test/*.js\" && prettier --trailing-comma es5 --write \"scripts/*.js\"","lint":"eslint .","precommit":"lint-staged","prepublish":"npm run build","test":"npm run build && npm run test-only","test-ci":"nyc npm run test","test-only":"mocha ./test --compilers js:babel-register -t 10000"},"dependencies":{"babel-plugin-check-es2015-constants":"7.0.0-alpha.7","babel-plugin-syntax-trailing-function-commas":"7.0.0-alpha.7","babel-plugin-transform-async-to-generator":"7.0.0-alpha.7","babel-plugin-transform-es2015-arrow-functions":"7.0.0-alpha.7","babel-plugin-transform-es2015-block-scoped-functions":"7.0.0-alpha.7","babel-plugin-transform-es2015-block-scoping":"7.0.0-alpha.7","babel-plugin-transform-es2015-classes":"7.0.0-alpha.7","babel-plugin-transform-es2015-computed-properties":"7.0.0-alpha.7","babel-plugin-transform-es2015-destructuring":"7.0.0-alpha.7","babel-plugin-transform-es2015-duplicate-keys":"7.0.0-alpha.7","babel-plugin-transform-es2015-for-of":"7.0.0-alpha.7","babel-plugin-transform-es2015-function-name":"7.0.0-alpha.7","babel-plugin-transform-es2015-literals":"7.0.0-alpha.7","babel-plugin-transform-es2015-modules-amd":"7.0.0-alpha.7","babel-plugin-transform-es2015-modules-commonjs":"7.0.0-alpha.7","babel-plugin-transform-es2015-modules-systemjs":"7.0.0-alpha.7","babel-plugin-transform-es2015-modules-umd":"7.0.0-alpha.7","babel-plugin-transform-es2015-object-super":"7.0.0-alpha.7","babel-plugin-transform-es2015-parameters":"7.0.0-alpha.7","babel-plugin-transform-es2015-shorthand-properties":"7.0.0-alpha.7","babel-plugin-transform-es2015-spread":"7.0.0-alpha.7","babel-plugin-transform-es2015-sticky-regex":"7.0.0-alpha.7","babel-plugin-transform-es2015-template-literals":"7.0.0-alpha.7","babel-plugin-transform-es2015-typeof-symbol":"7.0.0-alpha.7","babel-plugin-transform-es2015-unicode-regex":"7.0.0-alpha.7","babel-plugin-transform-exponentiation-operator":"7.0.0-alpha.7","babel-plugin-transform-regenerator":"7.0.0-alpha.7","browserslist":"^1.4.0","invariant":"^2.2.2","semver":"^5.3.0"},"devDependencies":{"babel-cli":"7.0.0-alpha.6","babel-eslint":"^7.1.1","babel-helper-fixtures":"7.0.0-alpha.3","babel-helper-plugin-test-runner":"7.0.0-alpha.7","babel-plugin-istanbul":"^4.0.0","babel-plugin-transform-flow-strip-types":"7.0.0-alpha.7","babel-preset-env":"2.0.0-alpha.1","babel-register":"7.0.0-alpha.7","chai":"^3.5.0","codecov":"^2.0.1","compat-table":"github:kangax/compat-table#c38f039b8ea7fadf347d3e300fec3611645e31e9","electron-to-chromium":"^1.3.2","eslint":"^3.17.1","eslint-config-babel":"^6.0.0","eslint-plugin-flowtype":"^2.29.1","fs-extra":"^2.0.0","husky":"^0.13.2","lint-staged":"^3.3.1","lodash":"^4.17.4","mocha":"^3.2.0","nyc":"^10.1.2","prettier":"^0.22.0","rimraf":"^2.6.1"},"babel":{"presets":[["env",{"targets":{"node":4},"loose":true}]],"plugins":["transform-flow-strip-types"],"env":{"test":{"plugins":["istanbul"]}}},"changelog":{"repo":"babel/babel-preset-env","labels":{"Tag: Breaking Change":":boom: Breaking Change","Tag: New Feature":":rocket: New Feature","Tag: Bug Fix":":bug: Bug Fix","Tag: Polish":":nail_care: Polish","Tag: Docs":":memo: Documentation","Tag: Internal":":house: Internal","Tag: Chore":"Chore","Tag: Deprecation":"Deprecation"}},"nyc":{"all":true,"include":["src/*.js"],"instrument":false,"sourceMap":false},"lint-staged":{"src/**/*.js":["prettier --trailing-comma all --write","git add"],"scripts/*.js":["prettier --trailing-comma es5 --write","git add"],"test/*.js":["prettier --trailing-comma all --write","git add"],"package.json":["node ./scripts/yarn-install.js","git add yarn.lock"]},"gitHead":"ca83bd07df734b8b33fd50201faea2843b892ae2","bugs":{"url":"https://github.com/babel/babel-preset-env/issues"},"_id":"babel-preset-env@2.0.0-alpha.5","_shasum":"9e82d10cdb1cd51b7ff9ab397082b2d66ab99a1d","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"9e82d10cdb1cd51b7ff9ab397082b2d66ab99a1d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-preset-env/-/babel-preset-env-2.0.0-alpha.5.tgz"},"maintainers":[{"name":"existentialism","email":"bng412@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/babel-preset-env-2.0.0-alpha.5.tgz_1491835236356_0.47710161260329187"},"directories":{}},"1.4.0":{"name":"babel-preset-env","version":"1.4.0","description":"A Babel preset for each environment.","author":{"name":"Henry Zhu","email":"hi@henryzoo.com"},"homepage":"https://babeljs.io/","license":"MIT","repository":{"type":"git","url":"git+https://github.com/babel/babel-preset-env.git"},"main":"lib/index.js","scripts":{"build":"rimraf lib && babel src -d lib","build-data":"node ./scripts/build-data.js","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","coverage":"BABEL_ENV=test nyc npm run test","coverage-ci":"nyc report --reporter=json && codecov -f coverage/coverage-final.json","dev":"babel -w src -d lib","fix":"eslint . --fix","lint":"eslint .","prepublish":"npm run build","test":"npm run build && npm run test-only","test-ci":"nyc npm run test","test-only":"mocha ./test --compilers js:babel-register -t 10000"},"dependencies":{"babel-plugin-check-es2015-constants":"^6.22.0","babel-plugin-syntax-trailing-function-commas":"^6.22.0","babel-plugin-transform-async-to-generator":"^6.22.0","babel-plugin-transform-es2015-arrow-functions":"^6.22.0","babel-plugin-transform-es2015-block-scoped-functions":"^6.22.0","babel-plugin-transform-es2015-block-scoping":"^6.23.0","babel-plugin-transform-es2015-classes":"^6.23.0","babel-plugin-transform-es2015-computed-properties":"^6.22.0","babel-plugin-transform-es2015-destructuring":"^6.23.0","babel-plugin-transform-es2015-duplicate-keys":"^6.22.0","babel-plugin-transform-es2015-for-of":"^6.23.0","babel-plugin-transform-es2015-function-name":"^6.22.0","babel-plugin-transform-es2015-literals":"^6.22.0","babel-plugin-transform-es2015-modules-amd":"^6.22.0","babel-plugin-transform-es2015-modules-commonjs":"^6.23.0","babel-plugin-transform-es2015-modules-systemjs":"^6.23.0","babel-plugin-transform-es2015-modules-umd":"^6.23.0","babel-plugin-transform-es2015-object-super":"^6.22.0","babel-plugin-transform-es2015-parameters":"^6.23.0","babel-plugin-transform-es2015-shorthand-properties":"^6.22.0","babel-plugin-transform-es2015-spread":"^6.22.0","babel-plugin-transform-es2015-sticky-regex":"^6.22.0","babel-plugin-transform-es2015-template-literals":"^6.22.0","babel-plugin-transform-es2015-typeof-symbol":"^6.23.0","babel-plugin-transform-es2015-unicode-regex":"^6.22.0","babel-plugin-transform-exponentiation-operator":"^6.22.0","babel-plugin-transform-regenerator":"^6.22.0","browserslist":"^1.4.0","invariant":"^2.2.2"},"devDependencies":{"babel-cli":"^6.23.0","babel-eslint":"^7.1.1","babel-helper-fixtures":"^6.22.0","babel-helper-plugin-test-runner":"^6.22.0","babel-plugin-istanbul":"^3.1.2","babel-plugin-transform-flow-strip-types":"^6.22.0","babel-preset-es2015":"^6.22.0","babel-register":"^6.23.0","chai":"^3.5.0","codecov":"^1.0.1","compat-table":"github:kangax/compat-table#861954b6e13d3eaa1ba9ef1a016906c0fc1072db","eslint":"^3.17.1","eslint-config-babel":"^6.0.0","eslint-plugin-flowtype":"^2.29.1","fs-extra":"^2.0.0","lodash":"^4.17.4","mocha":"^3.2.0","nyc":"^10.1.2","electron-to-chromium":"^1.3.2","rimraf":"^2.6.1"},"babel":{"presets":[["es2015",{"loose":true}]],"plugins":["transform-flow-strip-types"],"env":{"test":{"plugins":["istanbul"]}}},"nyc":{"all":true,"include":["src/*.js"],"instrument":false,"sourceMap":false},"gitHead":"125e9283cc70f6b2db15ccf864ff2ff4b3dd10ea","bugs":{"url":"https://github.com/babel/babel-preset-env/issues"},"_id":"babel-preset-env@1.4.0","_shasum":"c8e02a3bcc7792f23cded68e0355b9d4c28f0f7a","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.4","_npmUser":{"name":"existentialism","email":"bng412@gmail.com"},"dist":{"shasum":"c8e02a3bcc7792f23cded68e0355b9d4c28f0f7a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-preset-env/-/babel-preset-env-1.4.0.tgz"},"maintainers":[{"name":"danez","email":"daniel@tschinder.de"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/babel-preset-env-1.4.0.tgz_1492184990460_0.2432102463208139"},"directories":{}},"2.0.0-alpha.6":{"name":"babel-preset-env","version":"2.0.0-alpha.6","description":"A Babel preset for each environment.","author":{"name":"Henry Zhu","email":"hi@henryzoo.com"},"homepage":"https://babeljs.io/","license":"MIT","repository":{"type":"git","url":"git+https://github.com/babel/babel-preset-env.git"},"main":"lib/index.js","scripts":{"build":"rimraf lib && babel src -d lib","build-data":"node ./scripts/build-data.js","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","coverage":"BABEL_ENV=test nyc npm run test","coverage-ci":"nyc report --reporter=json && codecov -f coverage/coverage-final.json","dev":"babel -w src -d lib","fix":"eslint . --fix","flow":"flow","format":"prettier --trailing-comma all --write \"src/*.js\" \"test/*.js\" && prettier --trailing-comma es5 --write \"scripts/*.js\"","lint":"eslint .","precommit":"lint-staged","prepublish":"npm run build","test":"npm run build && npm run flow && npm run test-only","test-ci":"nyc npm run test","test-only":"mocha ./test --compilers js:babel-register -t 10000"},"dependencies":{"babel-plugin-check-es2015-constants":"7.0.0-alpha.8","babel-plugin-syntax-trailing-function-commas":"7.0.0-alpha.8","babel-plugin-transform-async-to-generator":"7.0.0-alpha.8","babel-plugin-transform-es2015-arrow-functions":"7.0.0-alpha.8","babel-plugin-transform-es2015-block-scoped-functions":"7.0.0-alpha.8","babel-plugin-transform-es2015-block-scoping":"7.0.0-alpha.8","babel-plugin-transform-es2015-classes":"7.0.0-alpha.8","babel-plugin-transform-es2015-computed-properties":"7.0.0-alpha.8","babel-plugin-transform-es2015-destructuring":"7.0.0-alpha.8","babel-plugin-transform-es2015-duplicate-keys":"7.0.0-alpha.8","babel-plugin-transform-es2015-for-of":"7.0.0-alpha.8","babel-plugin-transform-es2015-function-name":"7.0.0-alpha.8","babel-plugin-transform-es2015-literals":"7.0.0-alpha.8","babel-plugin-transform-es2015-modules-amd":"7.0.0-alpha.8","babel-plugin-transform-es2015-modules-commonjs":"7.0.0-alpha.8","babel-plugin-transform-es2015-modules-systemjs":"7.0.0-alpha.8","babel-plugin-transform-es2015-modules-umd":"7.0.0-alpha.8","babel-plugin-transform-es2015-object-super":"7.0.0-alpha.8","babel-plugin-transform-es2015-parameters":"7.0.0-alpha.8","babel-plugin-transform-es2015-shorthand-properties":"7.0.0-alpha.8","babel-plugin-transform-es2015-spread":"7.0.0-alpha.8","babel-plugin-transform-es2015-sticky-regex":"7.0.0-alpha.8","babel-plugin-transform-es2015-template-literals":"7.0.0-alpha.8","babel-plugin-transform-es2015-typeof-symbol":"7.0.0-alpha.8","babel-plugin-transform-es2015-unicode-regex":"7.0.0-alpha.8","babel-plugin-transform-exponentiation-operator":"7.0.0-alpha.8","babel-plugin-transform-regenerator":"7.0.0-alpha.8","browserslist":"^1.4.0","invariant":"^2.2.2","semver":"^5.3.0"},"devDependencies":{"babel-cli":"7.0.0-alpha.8","babel-eslint":"^7.1.1","babel-helper-fixtures":"7.0.0-alpha.3","babel-helper-plugin-test-runner":"7.0.0-alpha.8","babel-plugin-istanbul":"^4.0.0","babel-plugin-transform-flow-strip-types":"7.0.0-alpha.8","babel-preset-env":"2.0.0-alpha.1","babel-register":"7.0.0-alpha.8","chai":"^3.5.0","codecov":"^2.0.1","compat-table":"github:kangax/compat-table#c38f039b8ea7fadf347d3e300fec3611645e31e9","electron-to-chromium":"^1.3.2","eslint":"^3.17.1","eslint-config-babel":"^6.0.0","eslint-plugin-flowtype":"^2.29.1","flow-bin":"^0.43.0","fs-extra":"^2.0.0","husky":"^0.13.2","lint-staged":"^3.3.1","lodash":"^4.17.4","mocha":"^3.2.0","nyc":"^10.1.2","prettier":"^0.22.0","rimraf":"^2.6.1"},"babel":{"presets":[["env",{"targets":{"node":4},"loose":true}]],"plugins":["transform-flow-strip-types"],"env":{"test":{"plugins":["istanbul"]}}},"changelog":{"repo":"babel/babel-preset-env","labels":{"Tag: Breaking Change":":boom: Breaking Change","Tag: New Feature":":rocket: New Feature","Tag: Bug Fix":":bug: Bug Fix","Tag: Polish":":nail_care: Polish","Tag: Docs":":memo: Documentation","Tag: Internal":":house: Internal","Tag: Chore":"Chore","Tag: Deprecation":"Deprecation"}},"nyc":{"all":true,"include":["src/*.js"],"instrument":false,"sourceMap":false},"lint-staged":{"src/**/*.js":["prettier --trailing-comma all --write","git add"],"scripts/*.js":["prettier --trailing-comma es5 --write","git add"],"test/*.js":["prettier --trailing-comma all --write","git add"],"package.json":["node ./scripts/yarn-install.js","git add yarn.lock"]},"gitHead":"28e0ce22c818940c7045e8bb7e99c677dd0c0122","bugs":{"url":"https://github.com/babel/babel-preset-env/issues"},"_id":"babel-preset-env@2.0.0-alpha.6","_shasum":"d8ddd8d9c6028bdd219e7621a41eef520a04483d","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"d8ddd8d9c6028bdd219e7621a41eef520a04483d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-preset-env/-/babel-preset-env-2.0.0-alpha.6.tgz"},"maintainers":[{"name":"danez","email":"daniel@tschinder.de"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/babel-preset-env-2.0.0-alpha.6.tgz_1492462516119_0.2926053882110864"},"directories":{}},"2.0.0-alpha.7":{"name":"babel-preset-env","version":"2.0.0-alpha.7","description":"A Babel preset for each environment.","author":{"name":"Henry Zhu","email":"hi@henryzoo.com"},"homepage":"https://babeljs.io/","license":"MIT","repository":{"type":"git","url":"git+https://github.com/babel/babel-preset-env.git"},"main":"lib/index.js","scripts":{"build":"rimraf lib && babel src -d lib","build-data":"node ./scripts/build-data.js","changelog":"git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'","coverage":"BABEL_ENV=test nyc npm run test","coverage-ci":"nyc report --reporter=json && codecov -f coverage/coverage-final.json","dev":"babel -w src -d lib","fix":"eslint . --fix","flow":"flow","format":"prettier --trailing-comma all --write \"src/*.js\" \"test/*.js\" && prettier --trailing-comma es5 --write \"scripts/*.js\"","lint":"eslint .","precommit":"lint-staged","prepublish":"npm run build","test":"npm run build && npm run flow && npm run test-only","test-ci":"nyc npm run test","test-only":"mocha ./test --compilers js:babel-register -t 10000"},"dependencies":{"babel-plugin-check-es2015-constants":"7.0.0-alpha.8","babel-plugin-syntax-trailing-function-commas":"7.0.0-alpha.8","babel-plugin-transform-async-to-generator":"7.0.0-alpha.8","babel-plugin-transform-es2015-arrow-functions":"7.0.0-alpha.8","babel-plugin-transform-es2015-block-scoped-functions":"7.0.0-alpha.8","babel-plugin-transform-es2015-block-scoping":"7.0.0-alpha.8","babel-plugin-transform-es2015-classes":"7.0.0-alpha.8","babel-plugin-transform-es2015-computed-properties":"7.0.0-alpha.8","babel-plugin-transform-es2015-destructuring":"7.0.0-alpha.8","babel-plugin-transform-es2015-duplicate-keys":"7.0.0-alpha.8","babel-plugin-transform-es2015-for-of":"7.0.0-alpha.8","babel-plugin-transform-es2015-function-name":"7.0.0-alpha.8","babel-plugin-transform-es2015-literals":"7.0.0-alpha.8","babel-plugin-transform-es2015-modules-amd":"7.0.0-alpha.8","babel-plugin-transform-es2015-modules-commonjs":"7.0.0-alpha.8","babel-plugin-transform-es2015-modules-systemjs":"7.0.0-alpha.8","babel-plugin-transform-es2015-modules-umd":"7.0.0-alpha.8","babel-plugin-transform-es2015-object-super":"7.0.0-alpha.8","babel-plugin-transform-es2015-parameters":"7.0.0-alpha.8","babel-plugin-transform-es2015-shorthand-properties":"7.0.0-alpha.8","babel-plugin-transform-es2015-spread":"7.0.0-alpha.8","babel-plugin-transform-es2015-sticky-regex":"7.0.0-alpha.8","babel-plugin-transform-es2015-template-literals":"7.0.0-alpha.8","babel-plugin-transform-es2015-typeof-symbol":"7.0.0-alpha.8","babel-plugin-transform-es2015-unicode-regex":"7.0.0-alpha.8","babel-plugin-transform-exponentiation-operator":"7.0.0-alpha.8","babel-plugin-transform-regenerator":"7.0.0-alpha.8","browserslist":"^1.4.0","invariant":"^2.2.2","semver":"^5.3.0"},"devDependencies":{"babel-cli":"7.0.0-alpha.8","babel-eslint":"^7.1.1","babel-helper-fixtures":"7.0.0-alpha.3","babel-helper-plugin-test-runner":"7.0.0-alpha.8","babel-plugin-istanbul":"^4.0.0","babel-plugin-transform-flow-strip-types":"7.0.0-alpha.8","babel-preset-env":"2.0.0-alpha.1","babel-register":"7.0.0-alpha.8","chai":"^3.5.0","codecov":"^2.0.1","compat-table":"github:kangax/compat-table#c38f039b8ea7fadf347d3e300fec3611645e31e9","electron-to-chromium":"^1.3.2","eslint":"^3.17.1","eslint-config-babel":"^6.0.0","eslint-plugin-flowtype":"^2.29.1","flow-bin":"^0.43.0","fs-extra":"^2.0.0","husky":"^0.13.2","lint-staged":"^3.3.1","lodash":"^4.17.4","mocha":"^3.2.0","nyc":"^10.1.2","prettier":"^0.22.0","rimraf":"^2.6.1"},"babel":{"presets":[["env",{"targets":{"node":4},"loose":true}]],"plugins":["transform-flow-strip-types"],"env":{"test":{"plugins":["istanbul"]}}},"changelog":{"repo":"babel/babel-preset-env","labels":{"Tag: Breaking Change":":boom: Breaking Change","Tag: New Feature":":rocket: New Feature","Tag: Bug Fix":":bug: Bug Fix","Tag: Polish":":nail_care: Polish","Tag: Docs":":memo: Documentation","Tag: Internal":":house: Internal","Tag: Chore":"Chore","Tag: Deprecation":"Deprecation"}},"nyc":{"all":true,"include":["src/*.js"],"instrument":false,"sourceMap":false},"lint-staged":{"src/**/*.js":["prettier --trailing-comma all --write","git add"],"scripts/*.js":["prettier --trailing-comma es5 --write","git add"],"test/*.js":["prettier --trailing-comma all --write","git add"],"package.json":["node ./scripts/yarn-install.js","git add yarn.lock"]},"gitHead":"3d03d812875792b0ebecd8d6e17b4a6538f06b8e","bugs":{"url":"https://github.com/babel/babel-preset-env/issues"},"_id":"babel-preset-env@2.0.0-alpha.7","_shasum":"aa78a3ffe17eeb94de5d576cdfb6466ca8031fb0","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"aa78a3ffe17eeb94de5d576cdfb6466ca8031fb0","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/babel-preset-env/-/babel-preset-env-2.0.0-alpha.7.tgz"},"maintainers":[{"name":"danez","email":"daniel@tschinder.de"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/babel-preset-env-2.0.0-alpha.7.tgz_1492527560817_0.030412902124226093"},"directories":{}}},"name":"babel-preset-env","time":{"modified":"2017-04-25T07:04:44.872Z","created":"2016-09-01T03:42:38.596Z","0.0.0":"2016-09-01T03:42:38.596Z","0.0.1":"2016-09-06T03:46:39.618Z","0.0.2":"2016-09-30T21:41:32.929Z","0.0.3":"2016-10-07T03:10:17.531Z","0.0.4":"2016-10-07T03:56:06.355Z","0.0.5":"2016-10-13T02:18:33.864Z","0.0.6":"2016-10-13T02:21:33.212Z","0.0.7":"2016-11-02T23:00:53.100Z","0.0.8":"2016-11-16T17:28:35.187Z","0.0.9":"2016-11-24T20:55:28.469Z","1.0.0":"2016-12-09T20:52:12.469Z","1.0.1":"2016-12-10T15:20:33.112Z","1.0.2":"2016-12-10T16:34:13.319Z","1.1.0":"2016-12-13T23:01:38.673Z","1.1.1":"2016-12-13T23:11:59.393Z","1.1.2":"2016-12-16T22:31:12.094Z","1.1.3":"2016-12-16T23:03:48.605Z","1.1.4":"2016-12-16T23:05:44.282Z","1.1.5":"2017-01-04T23:10:17.799Z","1.1.6":"2017-01-06T22:36:08.868Z","1.1.7":"2017-01-09T16:06:00.792Z","1.1.8":"2017-01-10T19:34:22.785Z","1.1.9":"2017-02-24T13:35:19.444Z","1.1.10":"2017-02-24T20:48:42.994Z","1.1.11":"2017-03-01T20:22:48.468Z","2.0.0-alpha.1":"2017-03-02T22:11:36.632Z","1.2.0":"2017-03-03T23:06:39.595Z","1.2.1":"2017-03-06T21:01:39.336Z","1.2.2":"2017-03-15T16:51:25.917Z","2.0.0-alpha.3":"2017-03-23T21:03:44.048Z","1.3.0":"2017-03-30T20:41:44.009Z","1.3.1":"2017-03-30T21:08:36.561Z","1.3.2":"2017-03-30T22:26:35.038Z","2.0.0-alpha.4":"2017-04-07T16:43:43.441Z","1.3.3":"2017-04-07T21:38:34.193Z","2.0.0-alpha.5":"2017-04-10T14:40:38.157Z","1.4.0":"2017-04-14T15:49:52.768Z","2.0.0-alpha.6":"2017-04-17T20:55:18.273Z","2.0.0-alpha.7":"2017-04-18T14:59:22.888Z"},"readmeFilename":"README.md","homepage":"https://babeljs.io/"}