{"_id":"babel-plugin-transform-object-rest-spread","maintainers":[{"email":"hi@henryzoo.com","name":"hzoo"},{"email":"loganfsmyth@gmail.com","name":"loganfsmyth"},{"email":"bng412@gmail.com","name":"existentialism"}],"keywords":["babel-plugin"],"dist-tags":{"next":"7.0.0-beta.3","latest":"6.26.0"},"description":"Compile object rest and spread to ES5","readme":"# babel-plugin-transform-object-rest-spread\n\n> This plugin allows Babel to transform rest properties for object destructuring assignment and spread properties for object literals.\n\n## Example\n\n### Rest Properties\n\n```js\nlet { x, y, ...z } = { x: 1, y: 2, a: 3, b: 4 };\nconsole.log(x); // 1\nconsole.log(y); // 2\nconsole.log(z); // { a: 3, b: 4 }\n```\n\n### Spread Properties\n\n```js\nlet n = { x, y, ...z };\nconsole.log(n); // { x: 1, y: 2, a: 3, b: 4 }\n```\n\n## Installation\n\n```sh\nnpm install --save-dev babel-plugin-transform-object-rest-spread\n```\n\n## Usage\n\n### Via `.babelrc` (Recommended)\n\n**.babelrc**\n\n```json\n{\n  \"plugins\": [\"transform-object-rest-spread\"]\n}\n```\n\n### Via CLI\n\n```sh\nbabel --plugins transform-object-rest-spread script.js\n```\n\n### Via Node API\n\n```javascript\nrequire(\"babel-core\").transform(\"code\", {\n  plugins: [\"transform-object-rest-spread\"]\n});\n```\n\n## Options\n\n### `useBuiltIns`\n\n`boolean`, defaults to `false`.\n\nBy default, this plugin uses Babel's `extends` helper which polyfills `Object.assign`. Enabling this option will use `Object.assign` directly.\n\n**.babelrc**\n\n```json\n{\n  \"plugins\": [\n    [\"transform-object-rest-spread\", { \"useBuiltIns\": true }]\n  ]\n}\n```\n\n**In**\n\n```js\nz = { x, ...y };\n```\n\n**Out**\n\n```js\nz = Object.assign({ x }, y);\n```\n\n## References\n\n* [Proposal: Object Rest/Spread Properties for ECMAScript](https://github.com/sebmarkbage/ecmascript-rest-spread)\n* [Spec](http://sebmarkbage.github.io/ecmascript-rest-spread)\n","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-object-rest-spread"},"users":{"maddas":true,"therufa":true,"tiendq":true,"heartnett":true,"fearnbuster":true,"wangweianger":true,"muroc":true,"erictreacy":true,"serge-nikitin":true,"sunzhixun":true,"hugojosefson":true,"tomekf":true,"cherng":true,"geofftech":true,"ohar":true,"marcellodesales":true},"license":"MIT","versions":{"7.0.0-beta.1":{"name":"babel-plugin-transform-object-rest-spread","version":"7.0.0-beta.1","description":"Compile object rest and spread to ES5","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-object-rest-spread"},"license":"MIT","main":"lib/index.js","keywords":["babel-plugin"],"dependencies":{"babel-plugin-syntax-object-rest-spread":"7.0.0-beta.1"},"devDependencies":{"babel-helper-plugin-test-runner":"7.0.0-beta.1"},"_id":"babel-plugin-transform-object-rest-spread@7.0.0-beta.1","_npmVersion":"5.4.1","_nodeVersion":"8.1.4","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"integrity":"sha512-PVih9XS8xUQET68alf3iDusBNyDgrCrrCU6c//9LXGtCj/Up6h3HFldOlVxaU++so736RsxUkfMHp2XXEBD1Lw==","shasum":"511d8b156b86f2a40ed7e91d9f0edbe485a265fb","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-7.0.0-beta.1.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCpRlBn8NKEhUxJOq/C4WKYVI3QiG8IRLK2Y4VaF/WzKgIgLdQtwvQ44MuGLHq/xpOJVlJ98bCn1DmjXai9Oe2uFIM="}]},"maintainers":[{"email":"me@thejameskyle.com","name":"thejameskyle"},{"email":"sebmck@gmail.com","name":"sebmck"},{"email":"daniel@tschinder.de","name":"danez"},{"email":"hi@henryzoo.com","name":"hzoo"},{"email":"loganfsmyth@gmail.com","name":"loganfsmyth"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/babel-plugin-transform-object-rest-spread-7.0.0-beta.1.tgz_1505851800829_0.7762415781617165"},"directories":{}},"7.0.0-beta.0":{"name":"babel-plugin-transform-object-rest-spread","version":"7.0.0-beta.0","description":"Compile object rest and spread to ES5","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-object-rest-spread"},"license":"MIT","main":"lib/index.js","keywords":["babel-plugin"],"dependencies":{"babel-plugin-syntax-object-rest-spread":"7.0.0-beta.0"},"devDependencies":{"babel-helper-plugin-test-runner":"7.0.0-beta.0"},"_id":"babel-plugin-transform-object-rest-spread@7.0.0-beta.0","_npmVersion":"5.3.0","_nodeVersion":"8.1.4","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"integrity":"sha512-FyF2nRFBDML/ZAKpzIsPBSOg965FNVxl32u3D/ITECVr2VrLcBz1Kf1nhOWqErW8DuzQNU6dLqFSh9tOxdvZEg==","shasum":"51b6cabe5b55dc63d4fe0287b3df23a7691b11d4","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-7.0.0-beta.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDEH6kXF7eFdLIR1RUjnMmEM+nRhRoMeYO542Mo7YA7iQIhAM2bft8atBYXdHGml/NPlhjVZGZCB+FNdjSXrQyacoqf"}]},"maintainers":[{"email":"me@thejameskyle.com","name":"thejameskyle"},{"email":"sebmck@gmail.com","name":"sebmck"},{"email":"daniel@tschinder.de","name":"danez"},{"email":"hi@henryzoo.com","name":"hzoo"},{"email":"loganfsmyth@gmail.com","name":"loganfsmyth"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/babel-plugin-transform-object-rest-spread-7.0.0-beta.0.tgz_1505185351127_0.04390588076785207"},"directories":{}},"7.0.0-beta.3":{"name":"babel-plugin-transform-object-rest-spread","version":"7.0.0-beta.3","description":"Compile object rest and spread to ES5","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-object-rest-spread"},"license":"MIT","main":"lib/index.js","keywords":["babel-plugin"],"dependencies":{"babel-plugin-syntax-object-rest-spread":"7.0.0-beta.3"},"devDependencies":{"babel-helper-plugin-test-runner":"7.0.0-beta.3"},"_id":"babel-plugin-transform-object-rest-spread@7.0.0-beta.3","_npmVersion":"5.5.1","_nodeVersion":"8.1.4","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"integrity":"sha512-NOlhrq1CmxyuI94vNsqMhRPMuL5VG2EKUOIJQ0bwNiXBiwWRLdPoWyPT+Irrx5g4g0PkFgA46tnRj7Dc4ZGsxg==","shasum":"5c409f3cd70819dbb3382d2056971c5ebe01393a","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-7.0.0-beta.3.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDZQLGqMUHkaN7Uve5lFDolsKjxAzmPECQIkWz+/7RSmgIhAIhGPq7qQQZTYA9hRw1Z7mLyivdVqiY6DMNInjx6DpWw"}]},"maintainers":[{"email":"bng412@gmail.com","name":"existentialism"},{"email":"me@thejameskyle.com","name":"thejameskyle"},{"email":"sebmck@gmail.com","name":"sebmck"},{"email":"daniel@tschinder.de","name":"danez"},{"email":"hi@henryzoo.com","name":"hzoo"},{"email":"loganfsmyth@gmail.com","name":"loganfsmyth"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/babel-plugin-transform-object-rest-spread-7.0.0-beta.3.tgz_1508073116433_0.9154305451083928"},"directories":{}},"7.0.0-beta.2":{"name":"babel-plugin-transform-object-rest-spread","version":"7.0.0-beta.2","description":"Compile object rest and spread to ES5","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-object-rest-spread"},"license":"MIT","main":"lib/index.js","keywords":["babel-plugin"],"dependencies":{"babel-plugin-syntax-object-rest-spread":"7.0.0-beta.2"},"devDependencies":{"babel-helper-plugin-test-runner":"7.0.0-beta.2"},"_id":"babel-plugin-transform-object-rest-spread@7.0.0-beta.2","_npmVersion":"5.4.1","_nodeVersion":"8.1.4","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"integrity":"sha512-nX6PUh9W0K31C5I30TMBj12C2Fr5E/TiCoprkdDobz34PA9qUf6W0X8r/A75ca+e0OXAZKHr8GSqEqNEX80NXw==","shasum":"57b1c4346646d483d1ac8dc608c5c3870620ac7e","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-7.0.0-beta.2.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIE2/Wx/cYgx81sdj3XZyTyP11YpoaP2S4tKl4gIETVWiAiB2bw8mcVoyAb+6prFYlqM6m474IWw0texHite1csRfCQ=="}]},"maintainers":[{"email":"bng412@gmail.com","name":"existentialism"},{"email":"me@thejameskyle.com","name":"thejameskyle"},{"email":"sebmck@gmail.com","name":"sebmck"},{"email":"daniel@tschinder.de","name":"danez"},{"email":"hi@henryzoo.com","name":"hzoo"},{"email":"loganfsmyth@gmail.com","name":"loganfsmyth"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/babel-plugin-transform-object-rest-spread-7.0.0-beta.2.tgz_1506438930228_0.4828476554248482"},"directories":{}},"6.6.4":{"name":"babel-plugin-transform-object-rest-spread","version":"6.6.4","description":"Compile object rest and spread to ES5","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-object-rest-spread"},"license":"MIT","main":"lib/index.js","keywords":["babel-plugin"],"dependencies":{"babel-plugin-syntax-object-rest-spread":"^6.3.13","babel-runtime":"^5.0.0"},"devDependencies":{"babel-helper-plugin-test-runner":"^6.3.13"},"_id":"babel-plugin-transform-object-rest-spread@6.6.4","scripts":{},"_shasum":"ded45155634d92733d214bbb5e8b5f0d147bee62","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.1.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"ded45155634d92733d214bbb5e8b5f0d147bee62","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.6.4.tgz","integrity":"sha512-3+lfelI8CMak/QpmDBU+DZYy7f1TeMFkPv2mEyfs4jI4gOpUfa0vr5HbY3K9zY0wpDPbQvjcF7CasPRsWFIvrQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHzIM9P6Es8BcC3SQbNdfRxPF/Zu/QIVzZzrRnsBT/hoAiAujhInXRrZiT9ymWjly0NLzMn1LG7SM3qV2I2SQ5Pmug=="}]},"maintainers":[{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"jmm","email":"npm-public@jessemccarthy.net"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"thejameskyle","email":"me@thejameskyle.com"}],"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/babel-plugin-transform-object-rest-spread-6.6.4.tgz_1456954191759_0.1324249990284443"},"directories":{}},"6.6.5":{"name":"babel-plugin-transform-object-rest-spread","version":"6.6.5","description":"Compile object rest and spread to ES5","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-object-rest-spread"},"license":"MIT","main":"lib/index.js","keywords":["babel-plugin"],"dependencies":{"babel-plugin-syntax-object-rest-spread":"^6.3.13","babel-runtime":"^5.0.0"},"devDependencies":{"babel-helper-plugin-test-runner":"^6.3.13"},"_id":"babel-plugin-transform-object-rest-spread@6.6.5","scripts":{},"_shasum":"b93bd9b10950e77d1953e9bbd44980cc49157f1f","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.1.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"b93bd9b10950e77d1953e9bbd44980cc49157f1f","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.6.5.tgz","integrity":"sha512-Xk+iA1DF+UCjlCfIlYLWv9jHvG8VAyJgNUWpfRvqGUATv/LalSR+LMq1VRFg/o1NSdXrul3MsuSsE0yBHWQcRA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCT3I0Lh4Y8X/ppt5ReLUlEDpbDIDMzWQn8BtE3eOjkHgIhAMtOawX28GuMUnTUt9EdSqBqKN0tMiXLEDI4koidYPHK"}]},"maintainers":[{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"jmm","email":"npm-public@jessemccarthy.net"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"thejameskyle","email":"me@thejameskyle.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/babel-plugin-transform-object-rest-spread-6.6.5.tgz_1457133424758_0.27868871693499386"},"directories":{}},"6.8.0":{"name":"babel-plugin-transform-object-rest-spread","version":"6.8.0","description":"Compile object rest and spread to ES5","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-object-rest-spread"},"license":"MIT","main":"lib/index.js","keywords":["babel-plugin"],"dependencies":{"babel-plugin-syntax-object-rest-spread":"^6.8.0","babel-runtime":"^6.0.0"},"devDependencies":{"babel-helper-plugin-test-runner":"^6.8.0"},"_id":"babel-plugin-transform-object-rest-spread@6.8.0","scripts":{},"_shasum":"03d1308e257a9d8e1a815ae1fd3db21bdebf08d9","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.1.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"maintainers":[{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"jmm","email":"npm-public@jessemccarthy.net"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"thejameskyle","email":"me@thejameskyle.com"}],"dist":{"shasum":"03d1308e257a9d8e1a815ae1fd3db21bdebf08d9","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.8.0.tgz","integrity":"sha512-YcCpxEqn0qJXr00wvX4ux4B+sm+3GdjtpIv/itJ2ky3vfNVMNOMmlojrzHzgbMWeD8BAqyE9BBvrwhpJaNizug==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIA4EmQ+Lkg7bWDxLbjk4+b1NKRYmEtJJs3zk1bTgSpk5AiEA7RySSTGpsV6uziKv6YVimmPt06Shmjb+Kv1ICT42dDY="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/babel-plugin-transform-object-rest-spread-6.8.0.tgz_1462232706092_0.0903656764421612"},"directories":{}},"6.2.4":{"name":"babel-plugin-transform-object-rest-spread","version":"6.2.4","description":"Compile object rest and spread to ES5","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-object-rest-spread"},"license":"MIT","main":"lib/index.js","keywords":["babel-plugin"],"dependencies":{"babel-plugin-syntax-object-rest-spread":"^6.2.4","babel-runtime":"^5.0.0"},"devDependencies":{"babel-helper-plugin-test-runner":"^6.2.4"},"_id":"babel-plugin-transform-object-rest-spread@6.2.4","scripts":{},"_shasum":"7fb9d40d80fda33a6a11d047e238d8f30b8ad559","_from":".","_npmVersion":"3.3.10","_nodeVersion":"4.1.0","_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"dist":{"shasum":"7fb9d40d80fda33a6a11d047e238d8f30b8ad559","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.2.4.tgz","integrity":"sha512-wagd6SL7rt2F2RtKDFbJtstFQ2slhk5kSYnF/PTvqpcnr0v+UWdCWNfWEtVkRBm2MTNF7K3pLbqnRoQS/9ih0w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDYszDB4YG7WeZj10dwrr7ETsC3k0vgbLcry7kLGOJZ0wIgfAzA9gqvxOwsSCS0JK0VziqFSGl1LEAR7hflK2ccGgE="}]},"maintainers":[{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"thejameskyle","email":"me@thejameskyle.com"}],"directories":{}},"7.0.0-alpha.18":{"name":"babel-plugin-transform-object-rest-spread","version":"7.0.0-alpha.18","description":"Compile object rest and spread to ES5","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-object-rest-spread"},"license":"MIT","main":"lib/index.js","keywords":["babel-plugin"],"dependencies":{"babel-plugin-syntax-object-rest-spread":"7.0.0-alpha.18"},"devDependencies":{"babel-helper-plugin-test-runner":"7.0.0-alpha.18"},"_id":"babel-plugin-transform-object-rest-spread@7.0.0-alpha.18","_npmVersion":"5.3.0","_nodeVersion":"8.1.4","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"integrity":"sha512-iOzJsnribUdXXVdmPxYuTyNyTV+DUQ97enJ2wVqSyO7AMLHzxY8yg8jayrnuZ6BqaGp0CrH8RJSHRqsYPdUcow==","shasum":"67bc9209102ece0ccfd528e0fa0ca6ecebbf7c13","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-7.0.0-alpha.18.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIA64m3YQ/3LSXuCGDzC3uukbl/2lX80DQT2yyfPBmW5VAiEA9OVHDEfwXsWuQi29WHVQ82JhpuOt/vgmK6eKBWdNA3E="}]},"maintainers":[{"email":"me@thejameskyle.com","name":"thejameskyle"},{"email":"sebmck@gmail.com","name":"sebmck"},{"email":"daniel@tschinder.de","name":"danez"},{"email":"hi@henryzoo.com","name":"hzoo"},{"email":"loganfsmyth@gmail.com","name":"loganfsmyth"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/babel-plugin-transform-object-rest-spread-7.0.0-alpha.18.tgz_1501798869938_0.7829387777019292"},"directories":{}},"7.0.0-alpha.17":{"name":"babel-plugin-transform-object-rest-spread","version":"7.0.0-alpha.17","description":"Compile object rest and spread to ES5","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-object-rest-spread"},"license":"MIT","main":"lib/index.js","keywords":["babel-plugin"],"dependencies":{"babel-plugin-syntax-object-rest-spread":"7.0.0-alpha.17"},"devDependencies":{"babel-helper-plugin-test-runner":"7.0.0-alpha.17"},"_id":"babel-plugin-transform-object-rest-spread@7.0.0-alpha.17","scripts":{},"_shasum":"f609447e5d193ed4d750ba89232b93f1ba3f3452","_from":".","_npmVersion":"4.6.1","_nodeVersion":"6.9.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"f609447e5d193ed4d750ba89232b93f1ba3f3452","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-7.0.0-alpha.17.tgz","integrity":"sha512-QGMSo75r6tlY1LHCZ7PXPUPfZpd2FZf7hY6kWL0r9rLidmGEufBte1RY+oXNvxN5HT81qIiWKCVoxqp/u7IegQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCaFPw2uwE8O7PhCJThAm8ClPHRqhi80KEAdA/oHspo4wIhAM+wzeUcOpY9gOPe7gJNI33lWrA1hnbIfdXEA/aa25mP"}]},"maintainers":[{"email":"sebmck@gmail.com","name":"sebmck"},{"email":"daniel@tschinder.de","name":"danez"},{"email":"hi@henryzoo.com","name":"hzoo"},{"email":"loganfsmyth@gmail.com","name":"loganfsmyth"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/babel-plugin-transform-object-rest-spread-7.0.0-alpha.17.tgz_1501072767931_0.9857946576084942"},"directories":{}},"7.0.0-alpha.19":{"name":"babel-plugin-transform-object-rest-spread","version":"7.0.0-alpha.19","description":"Compile object rest and spread to ES5","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-object-rest-spread"},"license":"MIT","main":"lib/index.js","keywords":["babel-plugin"],"dependencies":{"babel-plugin-syntax-object-rest-spread":"7.0.0-alpha.19"},"devDependencies":{"babel-helper-plugin-test-runner":"7.0.0-alpha.19"},"_id":"babel-plugin-transform-object-rest-spread@7.0.0-alpha.19","_npmVersion":"5.3.0","_nodeVersion":"8.1.4","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"integrity":"sha512-2qNW0p2agGtSIGTFaZo50hK5ZSRRCBn5iwz3NFI/CdRk4KQIyaJOsJ3HGRZK8aPpjjXYSuil2FTSc3JciN90ww==","shasum":"fcb509f8a005c8b2587e41a8f733e203a35fcbc5","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-7.0.0-alpha.19.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHmaMFK4m655fY+uizQDq7XLqOOA3Nwsambltokoqg4dAiAyHKFGQRf1ln/m04GCENTr3WQPjVouU1Foz7MJ+GWFtA=="}]},"maintainers":[{"email":"me@thejameskyle.com","name":"thejameskyle"},{"email":"sebmck@gmail.com","name":"sebmck"},{"email":"daniel@tschinder.de","name":"danez"},{"email":"hi@henryzoo.com","name":"hzoo"},{"email":"loganfsmyth@gmail.com","name":"loganfsmyth"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/babel-plugin-transform-object-rest-spread-7.0.0-alpha.19.tgz_1502144509270_0.6613589660264552"},"directories":{}},"7.0.0-alpha.14":{"name":"babel-plugin-transform-object-rest-spread","version":"7.0.0-alpha.14","description":"Compile object rest and spread to ES5","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-object-rest-spread"},"license":"MIT","main":"lib/index.js","keywords":["babel-plugin"],"dependencies":{"babel-plugin-syntax-object-rest-spread":"7.0.0-alpha.14"},"devDependencies":{"babel-helper-plugin-test-runner":"7.0.0-alpha.14"},"_id":"babel-plugin-transform-object-rest-spread@7.0.0-alpha.14","scripts":{},"_shasum":"239228aaa0bb33582c67c8b2c4bcfed70f771b84","_from":".","_npmVersion":"4.6.1","_nodeVersion":"6.9.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"239228aaa0bb33582c67c8b2c4bcfed70f771b84","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-7.0.0-alpha.14.tgz","integrity":"sha512-Ragx/gyc3Trj5DMe0m6s4PN7VFhpWc4Vb6cKIxri6vPKXpgmGv0zkZu0445y0mNgBiidRuPQchceWiYutu0fPQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCID/loPklGwBt1nt0c330nAa0iTAV1cTsHQTHjB5N0HjdAiEAgFnMs8LRjfLbMU4JF4QwZDLP5BJhj52qsHsNVSR3/U0="}]},"maintainers":[{"email":"sebmck@gmail.com","name":"sebmck"},{"email":"daniel@tschinder.de","name":"danez"},{"email":"hi@henryzoo.com","name":"hzoo"},{"email":"loganfsmyth@gmail.com","name":"loganfsmyth"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/babel-plugin-transform-object-rest-spread-7.0.0-alpha.14.tgz_1499828028638_0.425991183379665"},"directories":{}},"6.16.0":{"name":"babel-plugin-transform-object-rest-spread","version":"6.16.0","description":"Compile object rest and spread to ES5","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-object-rest-spread"},"license":"MIT","main":"lib/index.js","keywords":["babel-plugin"],"dependencies":{"babel-plugin-syntax-object-rest-spread":"^6.8.0","babel-runtime":"^6.0.0"},"devDependencies":{"babel-helper-plugin-test-runner":"^6.8.0"},"_id":"babel-plugin-transform-object-rest-spread@6.16.0","scripts":{},"_shasum":"db441d56fffc1999052fdebe2e2f25ebd28e36a9","_from":".","_npmVersion":"3.10.8","_nodeVersion":"5.11.1","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"db441d56fffc1999052fdebe2e2f25ebd28e36a9","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.16.0.tgz","integrity":"sha512-rHGFHpgBfhDviegOiDMzwNfEnOifs2kgQf0pLdfjyfMcuQATJL6+FyQdI55Oq/N/v+l7MY3mXcRq+OF83VLaRA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDi9QoRsTdxQo4O/19sqLhc2784Iz0PvAPDVgXUZtp4uQIgU8QlGqmvw7/7QeX+EZr73inEzbhNTee1XqNkyCQ0aFU="}]},"maintainers":[{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"jmm","email":"npm-public@jessemccarthy.net"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"thejameskyle","email":"me@thejameskyle.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/babel-plugin-transform-object-rest-spread-6.16.0.tgz_1475091536448_0.3588850318919867"},"directories":{}},"7.0.0-alpha.16":{"name":"babel-plugin-transform-object-rest-spread","version":"7.0.0-alpha.16","description":"Compile object rest and spread to ES5","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-object-rest-spread"},"license":"MIT","main":"lib/index.js","keywords":["babel-plugin"],"dependencies":{"babel-plugin-syntax-object-rest-spread":"7.0.0-alpha.16"},"devDependencies":{"babel-helper-plugin-test-runner":"7.0.0-alpha.16"},"_id":"babel-plugin-transform-object-rest-spread@7.0.0-alpha.16","scripts":{},"_shasum":"e1b447c8963b8b1d315ac56b584f2d3038ffe7d3","_from":".","_npmVersion":"4.6.1","_nodeVersion":"6.9.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"e1b447c8963b8b1d315ac56b584f2d3038ffe7d3","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-7.0.0-alpha.16.tgz","integrity":"sha512-dqd2NzSLZI/gB3tAbas7FMBDxteeipbUfGCJ6DQmTgH0kVOfOnH5XrmBDrLGLkxnIvs+mX+Ase84kE+808R08Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDiFeHpbk3XH1xxzBSFWJxUzNp2UOKTX2eFvmZ9LsXa2AiEA/iakMzHdzo9BcBzJjlzIlQGozyeVw1Ufds7Yv/XQo3E="}]},"maintainers":[{"email":"sebmck@gmail.com","name":"sebmck"},{"email":"daniel@tschinder.de","name":"danez"},{"email":"hi@henryzoo.com","name":"hzoo"},{"email":"loganfsmyth@gmail.com","name":"loganfsmyth"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/babel-plugin-transform-object-rest-spread-7.0.0-alpha.16.tgz_1501017476878_0.8376233128365129"},"directories":{}},"7.0.0-alpha.15":{"name":"babel-plugin-transform-object-rest-spread","version":"7.0.0-alpha.15","description":"Compile object rest and spread to ES5","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-object-rest-spread"},"license":"MIT","main":"lib/index.js","keywords":["babel-plugin"],"dependencies":{"babel-plugin-syntax-object-rest-spread":"7.0.0-alpha.15"},"devDependencies":{"babel-helper-plugin-test-runner":"7.0.0-alpha.15"},"_id":"babel-plugin-transform-object-rest-spread@7.0.0-alpha.15","scripts":{},"_shasum":"fa9369567e95915efa54f355cc524c70dab14d4b","_from":".","_npmVersion":"4.6.1","_nodeVersion":"6.9.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"fa9369567e95915efa54f355cc524c70dab14d4b","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-7.0.0-alpha.15.tgz","integrity":"sha512-cOncpPn0qAJW8t/6uWDzc5YvNAQO8u/aPP1y9ac10SqVBw7//rHqAGW6bXAp5ejd6p37yMXsRh8nIz9GadnrHw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAKDiqhHLTIA4DeiL1ic50SIb/9f6UEEl6Vt8Kp3KGwBAiEAxUgjaeHQCyLVgzDUrkgXhSp9ImX9a0MwRfnH1/DuC0M="}]},"maintainers":[{"email":"sebmck@gmail.com","name":"sebmck"},{"email":"daniel@tschinder.de","name":"danez"},{"email":"hi@henryzoo.com","name":"hzoo"},{"email":"loganfsmyth@gmail.com","name":"loganfsmyth"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/babel-plugin-transform-object-rest-spread-7.0.0-alpha.15.tgz_1499830563571_0.2716744365170598"},"directories":{}},"7.0.0-alpha.10":{"name":"babel-plugin-transform-object-rest-spread","version":"7.0.0-alpha.10","description":"Compile object rest and spread to ES5","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-object-rest-spread"},"license":"MIT","main":"lib/index.js","keywords":["babel-plugin"],"dependencies":{"babel-plugin-syntax-object-rest-spread":"7.0.0-alpha.9"},"devDependencies":{"babel-helper-plugin-test-runner":"7.0.0-alpha.10"},"_id":"babel-plugin-transform-object-rest-spread@7.0.0-alpha.10","scripts":{},"_shasum":"ed425bdabc46a29ced3ccb0788d18abf8ed12be9","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"ed425bdabc46a29ced3ccb0788d18abf8ed12be9","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-7.0.0-alpha.10.tgz","integrity":"sha512-geV6Wvho5aOQDi4jsVlEZbt7UNmY8890bx6HJ5Mdx71b41ul9DlgUAXPChuI7QPkL92+KWrvjy093PQNP3xMSQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBbVZULdS2/w05M5+8RL5flKGUYpopwGO76/BeJ2S49QAiAPVVcrJH/d+d3UI7SAMwEsgaEX2yvl1aoj8mgWpWSwEg=="}]},"maintainers":[{"email":"daniel@tschinder.de","name":"danez"},{"email":"hi@henryzoo.com","name":"hzoo"},{"email":"loganfsmyth@gmail.com","name":"loganfsmyth"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/babel-plugin-transform-object-rest-spread-7.0.0-alpha.10.tgz_1495739841993_0.8936864859424531"},"directories":{}},"6.0.14":{"name":"babel-plugin-transform-object-rest-spread","version":"6.0.14","description":"Compile object rest and spread to ES5","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-object-rest-spread"},"license":"MIT","main":"lib/index.js","keywords":["babel-plugin"],"dependencies":{"babel-plugin-syntax-object-rest-spread":"^6.0.14","babel-runtime":"^5.0.0"},"_id":"babel-plugin-transform-object-rest-spread@6.0.14","scripts":{},"_shasum":"8d58b41e4e25950cb49d49dd1d71912274ca51f2","_from":".","_npmVersion":"2.14.9","_nodeVersion":"4.1.0","_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"dist":{"shasum":"8d58b41e4e25950cb49d49dd1d71912274ca51f2","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.0.14.tgz","integrity":"sha512-Gmv2TJuCweC3pYFbkMvG2h64vEITWWiLxKMB/T9JZdTekoJFyutR3OhpgqJtsRLXFUeH1h2S2xMfWXYgMM2tTg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIB5UGz/jQEu2qlmO+/E6n6JboCL6Wfnz7uGFyNU7PHtdAiBtXg90AMXUd/Ln9IZn2FIS8rPanU7gdoo6l7N1lmLYMg=="}]},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"}],"directories":{}},"7.0.0-alpha.12":{"name":"babel-plugin-transform-object-rest-spread","version":"7.0.0-alpha.12","description":"Compile object rest and spread to ES5","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-object-rest-spread"},"license":"MIT","main":"lib/index.js","keywords":["babel-plugin"],"dependencies":{"babel-plugin-syntax-object-rest-spread":"7.0.0-alpha.12"},"devDependencies":{"babel-helper-plugin-test-runner":"7.0.0-alpha.12"},"_id":"babel-plugin-transform-object-rest-spread@7.0.0-alpha.12","_npmVersion":"5.0.0","_nodeVersion":"6.9.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"integrity":"sha512-DDIkmEiM1+fZXTsWFNes59m7CmG/2Zf11MCCwDnfHbLeurHwwi6BhfY6dlyTJksqy4+7UXleizrt36gQWDbFTA==","shasum":"a90231e13377e623f1dc440cdbc800ea9da7a81d","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-7.0.0-alpha.12.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFf+msqTxv++Su2iuGlb3dAy9EyVCfF06Po+Y0h9dOKVAiB189maA9j6mawd0bg+MkKR+pC3tkiG2NW/GaZ0TMXVgw=="}]},"maintainers":[{"email":"sebmck@gmail.com","name":"sebmck"},{"email":"daniel@tschinder.de","name":"danez"},{"email":"hi@henryzoo.com","name":"hzoo"},{"email":"loganfsmyth@gmail.com","name":"loganfsmyth"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/babel-plugin-transform-object-rest-spread-7.0.0-alpha.12.tgz_1496265121418_0.23912242148071527"},"directories":{}},"7.0.0-alpha.11":{"name":"babel-plugin-transform-object-rest-spread","version":"7.0.0-alpha.11","description":"Compile object rest and spread to ES5","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-object-rest-spread"},"license":"MIT","main":"lib/index.js","keywords":["babel-plugin"],"dependencies":{"babel-plugin-syntax-object-rest-spread":"7.0.0-alpha.9"},"devDependencies":{"babel-helper-plugin-test-runner":"7.0.0-alpha.11"},"_id":"babel-plugin-transform-object-rest-spread@7.0.0-alpha.11","_npmVersion":"5.0.0","_nodeVersion":"6.9.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"integrity":"sha512-AE9Uwr4e0Wp6q6zh2MHBIOIh0ZDHmnQ1rOLJ3arj6MU6o2LgxAj4eBFGxAkcXfIrrmu5kIRFWOnxQkv5RC4UBQ==","shasum":"689afa4623b605ed2845eedfed2810f7d67b4256","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-7.0.0-alpha.11.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEF1IJs8b9kvorgIBxMt1U/TDkD6arO6Jk8KaLjuLi8NAiBNWOVcvFSVkKtT0PpgFvBDDRwPoTIs8z5LgesfOs7Yrg=="}]},"maintainers":[{"email":"sebmck@gmail.com","name":"sebmck"},{"email":"daniel@tschinder.de","name":"danez"},{"email":"hi@henryzoo.com","name":"hzoo"},{"email":"loganfsmyth@gmail.com","name":"loganfsmyth"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/babel-plugin-transform-object-rest-spread-7.0.0-alpha.11.tgz_1496263419455_0.578603956848383"},"directories":{}},"7.0.0-alpha.3":{"name":"babel-plugin-transform-object-rest-spread","version":"7.0.0-alpha.3","description":"Compile object rest and spread to ES5","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-object-rest-spread"},"license":"MIT","main":"lib/index.js","keywords":["babel-plugin"],"dependencies":{"babel-plugin-syntax-object-rest-spread":"7.0.0-alpha.3"},"devDependencies":{"babel-helper-plugin-test-runner":"7.0.0-alpha.3"},"_id":"babel-plugin-transform-object-rest-spread@7.0.0-alpha.3","scripts":{},"_shasum":"111a7e158ee02adf212933d9ad829f3d63eff207","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"111a7e158ee02adf212933d9ad829f3d63eff207","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-7.0.0-alpha.3.tgz","integrity":"sha512-T0O8jMENhNCUKzfiZtRyCRdMcBcWMkzE0lnUeoOQGgphe3RDP0dGprs5rS+BdegwhZAW3FSmYn2VpPeO039chQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCjOXlIgWXuqGzLfG563r0cW8Ma2OVad3qKY17YbkdEjwIgCEUZTGfVSYInmAXEHSa0guIFGf4llm/IrWlVtWqmLLA="}]},"maintainers":[{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"jmm","email":"npm-public@jessemccarthy.net"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"thejameskyle","email":"me@thejameskyle.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/babel-plugin-transform-object-rest-spread-7.0.0-alpha.3.tgz_1490298573175_0.6487818812020123"},"directories":{}},"7.0.0-alpha.8":{"name":"babel-plugin-transform-object-rest-spread","version":"7.0.0-alpha.8","description":"Compile object rest and spread to ES5","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-object-rest-spread"},"license":"MIT","main":"lib/index.js","keywords":["babel-plugin"],"dependencies":{"babel-plugin-syntax-object-rest-spread":"7.0.0-alpha.3"},"devDependencies":{"babel-helper-plugin-test-runner":"7.0.0-alpha.8"},"_id":"babel-plugin-transform-object-rest-spread@7.0.0-alpha.8","scripts":{},"_shasum":"481222175e83e171e6001065468be4b64d6d2d8f","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"481222175e83e171e6001065468be4b64d6d2d8f","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-7.0.0-alpha.8.tgz","integrity":"sha512-B9hopsqwcvVw+9u1nw22gP0SNEJMgQdwvBVpLVW03cRsLyqMFupYPR8vP00YtNAKOEM7O2OPvYIHe+HzdrOs5g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCh7sYCMDbhPsWILNC3g6wmNgSSv34xpp789cxTA2aUoQIgBpMqRN5imexWqY9GxXsLYM3ycE5Pn2U/EF2Srx8+bR8="}]},"maintainers":[{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"jmm","email":"npm-public@jessemccarthy.net"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"thejameskyle","email":"me@thejameskyle.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/babel-plugin-transform-object-rest-spread-7.0.0-alpha.8.tgz_1492456368521_0.7227733940817416"},"directories":{}},"7.0.0-alpha.9":{"name":"babel-plugin-transform-object-rest-spread","version":"7.0.0-alpha.9","description":"Compile object rest and spread to ES5","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-object-rest-spread"},"license":"MIT","main":"lib/index.js","keywords":["babel-plugin"],"dependencies":{"babel-plugin-syntax-object-rest-spread":"7.0.0-alpha.9"},"devDependencies":{"babel-helper-plugin-test-runner":"7.0.0-alpha.9"},"_id":"babel-plugin-transform-object-rest-spread@7.0.0-alpha.9","scripts":{},"_shasum":"3a87b7cd92e3e33e42135777ab6148ee2b035cd7","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"3a87b7cd92e3e33e42135777ab6148ee2b035cd7","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-7.0.0-alpha.9.tgz","integrity":"sha512-4mYccdROJRvxW2kV1/wpQ9e4nE3g1RjCNK8Eqs1Pm2B4mlzJEFfbGnls13by+HZoXZSyGmmozgixg36OrYsQvg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBtNrnu8iVvWSbQ8cfRC8j4Ea4lQEMBhxVpS5dqngff8AiAorU8n64bDtRV30QY0tUi/L06AoanV/Vz2GpZv97c2bA=="}]},"maintainers":[{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"jmm","email":"npm-public@jessemccarthy.net"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"thejameskyle","email":"me@thejameskyle.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/babel-plugin-transform-object-rest-spread-7.0.0-alpha.9.tgz_1492526524868_0.561258245492354"},"directories":{}},"6.19.0":{"name":"babel-plugin-transform-object-rest-spread","version":"6.19.0","description":"Compile object rest and spread to ES5","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-object-rest-spread"},"license":"MIT","main":"lib/index.js","keywords":["babel-plugin"],"dependencies":{"babel-plugin-syntax-object-rest-spread":"^6.8.0","babel-runtime":"^6.0.0"},"devDependencies":{"babel-helper-plugin-test-runner":"^6.8.0"},"_id":"babel-plugin-transform-object-rest-spread@6.19.0","scripts":{},"_shasum":"f6ac428ee3cb4c6aa00943ed1422ce813603b34c","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"f6ac428ee3cb4c6aa00943ed1422ce813603b34c","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.19.0.tgz","integrity":"sha512-yHB/FQCyWA/iW//h0vPTcHI1tLKERwRsv6mtZkz8dK/rVuWaukF0h2a39wkhpfxRmHi/HowAjA8eycxm8J3kKA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIE2hwtv64gXRwlljwxVMPdDxnEsNtadqW730OwyNJHlXAiEArBEiWe+FOKwGcsTpWTwIM3Ugpftb0zZay8emX/2qjrc="}]},"maintainers":[{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"jmm","email":"npm-public@jessemccarthy.net"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"thejameskyle","email":"me@thejameskyle.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/babel-plugin-transform-object-rest-spread-6.19.0.tgz_1479312927668_0.7797193515580148"},"directories":{}},"7.0.0-alpha.7":{"name":"babel-plugin-transform-object-rest-spread","version":"7.0.0-alpha.7","description":"Compile object rest and spread to ES5","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-object-rest-spread"},"license":"MIT","main":"lib/index.js","keywords":["babel-plugin"],"dependencies":{"babel-plugin-syntax-object-rest-spread":"7.0.0-alpha.3"},"devDependencies":{"babel-helper-plugin-test-runner":"7.0.0-alpha.7"},"_id":"babel-plugin-transform-object-rest-spread@7.0.0-alpha.7","scripts":{},"_shasum":"90f09ea7b9f078fc9e333bbe144aac176eeee970","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"90f09ea7b9f078fc9e333bbe144aac176eeee970","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-7.0.0-alpha.7.tgz","integrity":"sha512-v4eEMhZdZPdpWVxSxpdtKC3XOc6/DEu5Q4V7J9sQsapFBxEp2sijAM5eALjUwWzerwegaox90ZC/l10y9ghPyQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICjw17QKKBZZrgiv8A+y+HPeO2RYjlgddTL/+j6tQKj+AiBpcY7oavsTjkR4AXXgM1YYRmipcEr2fTOk/4NZuMXe5g=="}]},"maintainers":[{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"jmm","email":"npm-public@jessemccarthy.net"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"thejameskyle","email":"me@thejameskyle.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/babel-plugin-transform-object-rest-spread-7.0.0-alpha.7.tgz_1491426828256_0.5028634639456868"},"directories":{}},"6.5.0-1":{"name":"babel-plugin-transform-object-rest-spread","version":"6.5.0-1","description":"Compile object rest and spread to ES5","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-object-rest-spread"},"license":"MIT","main":"lib/index.js","keywords":["babel-plugin"],"dependencies":{"babel-plugin-syntax-object-rest-spread":"^6.5.0-1","babel-runtime":"^5.0.0"},"devDependencies":{"babel-helper-plugin-test-runner":"^6.5.0-1"},"_id":"babel-plugin-transform-object-rest-spread@6.5.0-1","scripts":{},"_shasum":"880e9800f6f948868a790b9ca7fa2eeacf3cdb13","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.1.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"880e9800f6f948868a790b9ca7fa2eeacf3cdb13","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.5.0-1.tgz","integrity":"sha512-sutB27u41MpG3PFmglsTQ4AUhsFrRDovC2xoG/DiJlmpf8YNpQAn3PDWNTOwsJ0MOgGUe1eJ9QnCcffYWkSZEA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDYUGtKCBhNygetXhlJlOfW5TBttRhnEKaqAQyzA+yLZAIhALEi9mQiwWdxJIEqSZ15SjHJQpZTAYYaJEHGrcUa4Ag5"}]},"maintainers":[{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"jmm","email":"npm-public@jessemccarthy.net"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"thejameskyle","email":"me@thejameskyle.com"}],"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/babel-plugin-transform-object-rest-spread-6.5.0-1.tgz_1454812883587_0.58417949359864"},"directories":{}},"6.3.13":{"name":"babel-plugin-transform-object-rest-spread","version":"6.3.13","description":"Compile object rest and spread to ES5","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-object-rest-spread"},"license":"MIT","main":"lib/index.js","keywords":["babel-plugin"],"dependencies":{"babel-plugin-syntax-object-rest-spread":"^6.3.13","babel-runtime":"^5.0.0"},"devDependencies":{"babel-helper-plugin-test-runner":"^6.3.13"},"_id":"babel-plugin-transform-object-rest-spread@6.3.13","scripts":{},"_shasum":"10c55bab8a002bab0f04c2fad2b9feab247f8cfb","_from":".","_npmVersion":"3.3.10","_nodeVersion":"4.1.0","_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"dist":{"shasum":"10c55bab8a002bab0f04c2fad2b9feab247f8cfb","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.3.13.tgz","integrity":"sha512-aNpaXFS0MA/NUSvG6Qpmu2bYIto2e1zDYK/YFDACW2tw0Bdbcvo6KgxEQO09tuQKScU6roqnczrdS06cEJbKaQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIF8M1WT4sEPwWSCjy7xWHWqx85LBV4m9Vckm1GoD2aRrAiBSj3NzN6n88hfvwuZglEfR2SqIA3RRvJv12NNKxTS/Mw=="}]},"maintainers":[{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"jmm","email":"npm-public@jessemccarthy.net"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"thejameskyle","email":"me@thejameskyle.com"}],"directories":{}},"6.1.4":{"name":"babel-plugin-transform-object-rest-spread","version":"6.1.4","description":"Compile object rest and spread to ES5","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-object-rest-spread"},"license":"MIT","main":"lib/index.js","keywords":["babel-plugin"],"dependencies":{"babel-plugin-syntax-object-rest-spread":"^6.1.4","babel-runtime":"^5.0.0"},"devDependencies":{"babel-helper-plugin-test-runner":"^6.1.4"},"_id":"babel-plugin-transform-object-rest-spread@6.1.4","scripts":{},"_shasum":"f054965ec3102d520ebda0858e5cce63e6c1253e","_from":".","_npmVersion":"3.3.10","_nodeVersion":"4.1.0","_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"dist":{"shasum":"f054965ec3102d520ebda0858e5cce63e6c1253e","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.1.4.tgz","integrity":"sha512-PJGq5jCXPl1pIfJOCGVBGAAc0EinLGcc3N5ANWmQuOCjBY+w9iJK/UlBUxNXC3o3d7Ef1Vx5OeRgm8jVDgMXyA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBXwrmJ1SdEFqwu/UhqtiOjkmjOvksGQTS0s3eGHCBp1AiEA/KrHvU6g4sgNZ3I8NRv/oOYnzpYDeHvuzVHXgmQpw3M="}]},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"}],"directories":{}},"6.5.0":{"name":"babel-plugin-transform-object-rest-spread","version":"6.5.0","description":"Compile object rest and spread to ES5","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-object-rest-spread"},"license":"MIT","main":"lib/index.js","keywords":["babel-plugin"],"dependencies":{"babel-plugin-syntax-object-rest-spread":"^6.3.13","babel-runtime":"^5.0.0"},"devDependencies":{"babel-helper-plugin-test-runner":"^6.3.13"},"_id":"babel-plugin-transform-object-rest-spread@6.5.0","scripts":{},"_shasum":"e8bc4a36e7242d5e2bbc3def82fdc10fe5fe266e","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.1.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"e8bc4a36e7242d5e2bbc3def82fdc10fe5fe266e","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.5.0.tgz","integrity":"sha512-qD/fmzkhYl8Jiwz14nWk1HcHfOZCai+Q7lXRjVSnFbud80l9VNAJo+zCydRdyWdbzRzZsGTjlGjZ0BrPGOoWUw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDhU8rJ3gF7VkHFedadvTAV/1DyUAkBthXnLUHLii9B9wIhAMp3m6MLpAoXoekhrQhMqblnmcgRwOzKRhrs7aPeSrZU"}]},"maintainers":[{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"jmm","email":"npm-public@jessemccarthy.net"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"thejameskyle","email":"me@thejameskyle.com"}],"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/babel-plugin-transform-object-rest-spread-6.5.0.tgz_1454803681921_0.6248658217955381"},"directories":{}},"6.0.2":{"name":"babel-plugin-transform-object-rest-spread","version":"6.0.2","description":"Compile object rest and spread to ES5","repository":{"type":"git","url":"git+https://github.com/babel/babel.git"},"license":"MIT","main":"lib/index.js","keywords":["babel-plugin"],"dependencies":{"babel-plugin-syntax-object-rest-spread":"^6.0.2","babel-runtime":"^6.0.2"},"bugs":{"url":"https://github.com/babel/babel/issues"},"homepage":"https://github.com/babel/babel#readme","_id":"babel-plugin-transform-object-rest-spread@6.0.2","scripts":{},"_shasum":"2a46acb31903c577483e7173a9ce99c484972465","_from":".","_npmVersion":"2.14.3","_nodeVersion":"4.1.0","_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"dist":{"shasum":"2a46acb31903c577483e7173a9ce99c484972465","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.0.2.tgz","integrity":"sha512-rZaa7zesD6wbLWBQA3M6SB8E+uR4QxMPqnp9Dp1OFu/B24U9a3OUrmwPDgTMH/nCu/LGz+QRmDuTLcGriWDYbA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDQRlIcjsSqvKMNdzszxLOP1mtl/yiuRHnfTrPG4TGfiAIhAJu3E+7GAhI8XK97knHaLmstKlz+p2SRYpxw3bUt73pw"}]},"maintainers":[{"name":"sebmck","email":"sebmck@gmail.com"}],"directories":{}},"6.1.18":{"name":"babel-plugin-transform-object-rest-spread","version":"6.1.18","description":"Compile object rest and spread to ES5","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-object-rest-spread"},"license":"MIT","main":"lib/index.js","keywords":["babel-plugin"],"dependencies":{"babel-plugin-syntax-object-rest-spread":"^6.1.18","babel-runtime":"^5.0.0"},"devDependencies":{"babel-helper-plugin-test-runner":"^6.1.18"},"_id":"babel-plugin-transform-object-rest-spread@6.1.18","scripts":{},"_shasum":"e8013762cb9c2a1eea0f7b5e4c2260a0e6f0c19c","_from":".","_npmVersion":"3.3.10","_nodeVersion":"4.1.0","_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"dist":{"shasum":"e8013762cb9c2a1eea0f7b5e4c2260a0e6f0c19c","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.1.18.tgz","integrity":"sha512-2HjMptwYEJ92Z+N77rYRBsqXHmPKgpLrLJDXe/AJXCR4Q+N0kSbxRSs1/1tKeI6HwNOnxLmgpmMWKDtkTq8N/Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDjA/Zt7iMRJF6eOg83hT6SiEw5AK2cNwkb1yl4+HL72gIhAN33LPR3a93L1+4fBbQeL1HumBPdPbK6fyPGLX38+YW3"}]},"maintainers":[{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"thejameskyle","email":"me@thejameskyle.com"}],"directories":{}},"6.26.0":{"name":"babel-plugin-transform-object-rest-spread","version":"6.26.0","description":"Compile object rest and spread to ES5","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-object-rest-spread"},"license":"MIT","main":"lib/index.js","keywords":["babel-plugin"],"dependencies":{"babel-plugin-syntax-object-rest-spread":"^6.8.0","babel-runtime":"^6.26.0"},"devDependencies":{"babel-helper-plugin-test-runner":"^6.22.0"},"_id":"babel-plugin-transform-object-rest-spread@6.26.0","scripts":{},"_shasum":"0f36692d50fef6b7e2d4b3ac1478137a963b7b06","_from":".","_npmVersion":"4.6.1","_nodeVersion":"6.9.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"0f36692d50fef6b7e2d4b3ac1478137a963b7b06","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz","integrity":"sha512-ocgA9VJvyxwt+qJB0ncxV8kb/CjfTcECUY4tQ5VT7nP6Aohzobm8CDFaQ5FHdvZQzLmf0sgDxB8iRXZXxwZcyA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBvRVSl5IYtTyMPZbLgSk7O6+J3MaQWcKVpuk3JjDbphAiEAuoO6qFUe5G3RkhdgqdYg1oI2Xr9rrRh1rhNwIjAD2EI="}]},"maintainers":[{"email":"me@thejameskyle.com","name":"thejameskyle"},{"email":"sebmck@gmail.com","name":"sebmck"},{"email":"daniel@tschinder.de","name":"danez"},{"email":"hi@henryzoo.com","name":"hzoo"},{"email":"loganfsmyth@gmail.com","name":"loganfsmyth"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/babel-plugin-transform-object-rest-spread-6.26.0.tgz_1502898851290_0.09631218598224223"},"directories":{}},"6.20.1":{"name":"babel-plugin-transform-object-rest-spread","version":"6.20.1","description":"Compile object rest and spread to ES5","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-object-rest-spread"},"license":"MIT","main":"lib/index.js","keywords":["babel-plugin"],"dependencies":{"babel-plugin-syntax-object-rest-spread":"^6.8.0","babel-runtime":"^6.20.0"},"devDependencies":{"babel-helper-plugin-test-runner":"^6.8.0"},"_id":"babel-plugin-transform-object-rest-spread@6.20.1","scripts":{},"_shasum":"78005752b9214074c71152c6d4835868817583c7","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"78005752b9214074c71152c6d4835868817583c7","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.20.1.tgz","integrity":"sha512-sL9BYMqjGvvu6C8ovYOFzaT6RBmgdfkS7pQ3G0vhup+ljg6ECAQo5UP/vRH8+lylPRzGuQ2bDSNc5+VNg4+Rvw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEISqDTTi5/ZGvOq2fb8oUG1ZfwkwoMDd8zXloW7tXL6AiAmhh/Kit2XjFKtIwwWH9M4GwRGfRxv/5W29TOiSh1DIA=="}]},"maintainers":[{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"jmm","email":"npm-public@jessemccarthy.net"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"thejameskyle","email":"me@thejameskyle.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/babel-plugin-transform-object-rest-spread-6.20.1.tgz_1481243548810_0.6080071532633156"},"directories":{}},"6.20.0":{"name":"babel-plugin-transform-object-rest-spread","version":"6.20.0","description":"Compile object rest and spread to ES5","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-object-rest-spread"},"license":"MIT","main":"lib/index.js","keywords":["babel-plugin"],"dependencies":{"babel-plugin-syntax-object-rest-spread":"^6.8.0","babel-runtime":"^6.20.0"},"devDependencies":{"babel-helper-plugin-test-runner":"^6.8.0"},"_id":"babel-plugin-transform-object-rest-spread@6.20.0","scripts":{},"_shasum":"a7d96bfbdc984ae73cd8cb5f196abb52afa25da7","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"a7d96bfbdc984ae73cd8cb5f196abb52afa25da7","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.20.0.tgz","integrity":"sha512-fD3eetKzqMdNdYkt+Mp/1m1OI6KDCW+1cKD9Uq8tmYQnW0Wm3bGrycOVHRQpjuJs6Xp4yHk1inzv8v+wspSdnA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAXbyaXsMp5ESGEfidIOUIxL9dXjZjaeZTGQwsRPHEmlAiAHgv6C91GYdcSAaH8PlE2HJvtlUi/FvapVvc7SdXw5Ww=="}]},"maintainers":[{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"jmm","email":"npm-public@jessemccarthy.net"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"thejameskyle","email":"me@thejameskyle.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/babel-plugin-transform-object-rest-spread-6.20.0.tgz_1481239545054_0.8821488078683615"},"directories":{}},"7.0.0-alpha.1":{"name":"babel-plugin-transform-object-rest-spread","version":"7.0.0-alpha.1","description":"Compile object rest and spread to ES5","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-object-rest-spread"},"license":"MIT","main":"lib/index.js","keywords":["babel-plugin"],"dependencies":{"babel-plugin-syntax-object-rest-spread":"7.0.0-alpha.1"},"devDependencies":{"babel-helper-plugin-test-runner":"7.0.0-alpha.1"},"_id":"babel-plugin-transform-object-rest-spread@7.0.0-alpha.1","scripts":{},"_shasum":"4e077e01457be2e70088ce314d3c5b0bd8cb8e44","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"4e077e01457be2e70088ce314d3c5b0bd8cb8e44","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-7.0.0-alpha.1.tgz","integrity":"sha512-BTpkNxuPTqskvvJo/ULdO6eXWmnV7hMY7qQn1K73OiVlpzAs2sEzK34K+Mb9zkAf2rcRTmr1TyVtWC5YJWhaMA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCgbKzYIS8OA89iO4mroiYbcw8o3CMEDHAtexVeb1vlcgIhALfIQ8/osfgcNF9LBehdkbIh9V37ISAMN330+sGfM6Qh"}]},"maintainers":[{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"jmm","email":"npm-public@jessemccarthy.net"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"thejameskyle","email":"me@thejameskyle.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/babel-plugin-transform-object-rest-spread-7.0.0-alpha.1.tgz_1488488727368_0.0441435226239264"},"directories":{}},"7.0.0-alpha.20":{"name":"babel-plugin-transform-object-rest-spread","version":"7.0.0-alpha.20","description":"Compile object rest and spread to ES5","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-object-rest-spread"},"license":"MIT","main":"lib/index.js","keywords":["babel-plugin"],"dependencies":{"babel-plugin-syntax-object-rest-spread":"7.0.0-alpha.20"},"devDependencies":{"babel-helper-plugin-test-runner":"7.0.0-alpha.20"},"_id":"babel-plugin-transform-object-rest-spread@7.0.0-alpha.20","_npmVersion":"5.3.0","_nodeVersion":"8.1.4","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"integrity":"sha512-O+X1b5hDy40DAVyJG2liEcB9q1pQclhceDyj7ZYh7XALKYi4XUEIcld10CyhX8G63bYOP0RpIWOq7cU4dk2NbA==","shasum":"ef3b3a463fa28df20476e9332a546f34929465ea","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-7.0.0-alpha.20.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICWj2tgnsOsSB6Hnx+ST3oiVBr08eoLSBD2qQX2AQ2rPAiEAqvOqj9sqXbnR2WlW8a03lfilJCk1pPSuNU356KjcDmA="}]},"maintainers":[{"email":"me@thejameskyle.com","name":"thejameskyle"},{"email":"sebmck@gmail.com","name":"sebmck"},{"email":"daniel@tschinder.de","name":"danez"},{"email":"hi@henryzoo.com","name":"hzoo"},{"email":"loganfsmyth@gmail.com","name":"loganfsmyth"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/babel-plugin-transform-object-rest-spread-7.0.0-alpha.20.tgz_1504119836266_0.6309051078278571"},"directories":{}},"6.23.0":{"name":"babel-plugin-transform-object-rest-spread","version":"6.23.0","description":"Compile object rest and spread to ES5","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-object-rest-spread"},"license":"MIT","main":"lib/index.js","keywords":["babel-plugin"],"dependencies":{"babel-plugin-syntax-object-rest-spread":"^6.8.0","babel-runtime":"^6.22.0"},"devDependencies":{"babel-helper-plugin-test-runner":"^6.22.0"},"_id":"babel-plugin-transform-object-rest-spread@6.23.0","scripts":{},"_shasum":"875d6bc9be761c58a2ae3feee5dc4895d8c7f921","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},"dist":{"shasum":"875d6bc9be761c58a2ae3feee5dc4895d8c7f921","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.23.0.tgz","integrity":"sha512-d765TwySvTEWS8a31U/Z0GWwr702U61+W2UQMCYepibSLamxKjHuITdTYl5gYZ3n1EW84AiURdQ2E8GHEp+GJg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCZ7uI2b/1C9NVuG+5fPTD4ygXb56MVwqxKQB/uB3jNNgIhAIkgHvNSV/gfQ6Up3tnLfY8mJfEjjtsvkl47VZ8IACCW"}]},"maintainers":[{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"jmm","email":"npm-public@jessemccarthy.net"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"thejameskyle","email":"me@thejameskyle.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/babel-plugin-transform-object-rest-spread-6.23.0.tgz_1487027063440_0.47436194331385195"},"directories":{}},"6.1.17":{"name":"babel-plugin-transform-object-rest-spread","version":"6.1.17","description":"Compile object rest and spread to ES5","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-object-rest-spread"},"license":"MIT","main":"lib/index.js","keywords":["babel-plugin"],"dependencies":{"babel-plugin-syntax-object-rest-spread":"^6.1.17","babel-runtime":"^5.0.0"},"devDependencies":{"babel-helper-plugin-test-runner":"^6.1.17"},"_id":"babel-plugin-transform-object-rest-spread@6.1.17","scripts":{},"_shasum":"869753f3027830ec71d1675e1e77c4172b5ff29c","_from":".","_npmVersion":"3.3.10","_nodeVersion":"4.1.0","_npmUser":{"name":"sebmck","email":"sebmck@gmail.com"},"dist":{"shasum":"869753f3027830ec71d1675e1e77c4172b5ff29c","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.1.17.tgz","integrity":"sha512-3o2ifdTd9wzXcwjihwHZ+OaGRgiZXB/Q7fbIqWOSWNfijU7U+eIBMK7AyUvwNErCuR8th2KOO4TQB6a2v0yY7w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICIzqdJmzjjU4L1e9RQ++B7qIOkQT15krb9QBhtSz0apAiAqkoSp/AKHArr4dOu717bTwnfvj3nW+R6AlcTOmjlV3Q=="}]},"maintainers":[{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"thejameskyle","email":"me@thejameskyle.com"}],"directories":{}},"6.20.2":{"name":"babel-plugin-transform-object-rest-spread","version":"6.20.2","description":"Compile object rest and spread to ES5","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-object-rest-spread"},"license":"MIT","main":"lib/index.js","keywords":["babel-plugin"],"dependencies":{"babel-plugin-syntax-object-rest-spread":"^6.8.0","babel-runtime":"^6.20.0"},"devDependencies":{"babel-helper-plugin-test-runner":"^6.8.0"},"_id":"babel-plugin-transform-object-rest-spread@6.20.2","scripts":{},"_shasum":"e816c55bba77b14c16365d87e2ae48c8fd18fc2e","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"e816c55bba77b14c16365d87e2ae48c8fd18fc2e","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.20.2.tgz","integrity":"sha512-Sc1Xell+2QOePdSaPDkwsaEEHitZHyunT59lewjCwKV5kQ+WAxgvFqdbSgv5jcvaS5Ky2ol7DD1V0TYhQPhyEQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDwztFOoQpDX6NFr6qtSaPOiAT6TATHfkYDjp4ETFtIyAIhAKkxKhzdSh25Hd/+2oCX1kP3eFZSOIayI6UbEE8vU621"}]},"maintainers":[{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"jmm","email":"npm-public@jessemccarthy.net"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"thejameskyle","email":"me@thejameskyle.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/babel-plugin-transform-object-rest-spread-6.20.2.tgz_1481246123324_0.22800107300281525"},"directories":{}},"6.22.0":{"name":"babel-plugin-transform-object-rest-spread","version":"6.22.0","description":"Compile object rest and spread to ES5","repository":{"type":"git","url":"https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-object-rest-spread"},"license":"MIT","main":"lib/index.js","keywords":["babel-plugin"],"dependencies":{"babel-plugin-syntax-object-rest-spread":"^6.8.0","babel-runtime":"^6.22.0"},"devDependencies":{"babel-helper-plugin-test-runner":"^6.22.0"},"_id":"babel-plugin-transform-object-rest-spread@6.22.0","scripts":{},"_shasum":"1d419b55e68d2e4f64a5ff3373bd67d73c8e83bc","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.0","_npmUser":{"name":"hzoo","email":"hi@henryzoo.com"},"dist":{"shasum":"1d419b55e68d2e4f64a5ff3373bd67d73c8e83bc","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.22.0.tgz","integrity":"sha512-+MlUsJyxDn93ukFf3fXLvT5n5kIt0j7p8kOMKBZYbCEBpdoTmiG0c6/qKtV14QKCk86PCwqQdV1+wdox/ZhXjQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAPWpnh5sGMyFail5YppgKDe4KQRg0gjDYSymgq6WY3EAiEAxT0TR9O3O6BteTZY/L+w0sbvy6aNah31NpFUqEuTFUA="}]},"maintainers":[{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"hzoo","email":"hi@henryzoo.com"},{"name":"jmm","email":"npm-public@jessemccarthy.net"},{"name":"loganfsmyth","email":"loganfsmyth@gmail.com"},{"name":"sebmck","email":"sebmck@gmail.com"},{"name":"thejameskyle","email":"me@thejameskyle.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/babel-plugin-transform-object-rest-spread-6.22.0.tgz_1484872451160_0.9515761558432132"},"directories":{}}},"name":"babel-plugin-transform-object-rest-spread","time":{"7.0.0-beta.1":"2017-09-19T20:10:00.919Z","7.0.0-beta.0":"2017-09-12T03:02:32.083Z","7.0.0-beta.3":"2017-10-15T13:11:57.416Z","7.0.0-beta.2":"2017-09-26T15:15:31.104Z","6.6.4":"2016-03-02T21:29:54.577Z","6.6.5":"2016-03-04T23:17:08.120Z","6.8.0":"2016-05-02T23:45:08.465Z","6.2.4":"2015-11-25T03:15:10.680Z","7.0.0-alpha.18":"2017-08-03T22:21:10.005Z","7.0.0-alpha.17":"2017-07-26T12:39:29.035Z","7.0.0-alpha.19":"2017-08-07T22:21:49.342Z","7.0.0-alpha.14":"2017-07-12T02:53:49.524Z","modified":"2025-05-05T11:20:11.235Z","6.16.0":"2016-09-28T19:38:57.104Z","7.0.0-alpha.16":"2017-07-25T21:17:57.733Z","7.0.0-alpha.15":"2017-07-12T03:36:04.544Z","7.0.0-alpha.10":"2017-05-25T19:17:23.839Z","6.0.14":"2015-10-30T23:41:08.192Z","7.0.0-alpha.12":"2017-05-31T21:12:01.518Z","7.0.0-alpha.11":"2017-05-31T20:43:39.524Z","7.0.0-alpha.3":"2017-03-23T19:49:33.391Z","7.0.0-alpha.8":"2017-04-17T19:12:48.797Z","7.0.0-alpha.9":"2017-04-18T14:42:05.554Z","created":"2015-10-29T18:19:13.429Z","6.19.0":"2016-11-16T16:15:29.616Z","7.0.0-alpha.7":"2017-04-05T21:13:50.229Z","6.5.0-1":"2016-02-07T02:41:25.995Z","6.3.13":"2015-12-04T12:00:11.569Z","6.1.4":"2015-11-11T10:36:41.485Z","6.5.0":"2016-02-07T00:08:04.602Z","6.0.2":"2015-10-29T18:19:13.429Z","6.1.18":"2015-11-12T21:52:20.809Z","6.26.0":"2017-08-16T15:54:11.363Z","6.20.1":"2016-12-09T00:32:30.564Z","6.20.0":"2016-12-08T23:25:45.607Z","7.0.0-alpha.1":"2017-03-02T21:05:28.039Z","7.0.0-alpha.20":"2017-08-30T19:03:56.339Z","6.23.0":"2017-02-13T23:04:24.045Z","6.1.17":"2015-11-12T21:42:57.785Z","6.20.2":"2016-12-09T01:15:23.900Z","6.22.0":"2017-01-20T00:34:11.840Z"},"readmeFilename":"README.md"}