{"maintainers":[{"name":"anonymous","email":"devops+npm@angular.io"},{"name":"anonymous","email":"node-team-npm+wombot@google.com"}],"dist-tags":{"latest":"0.15.0"},"author":{"name":"Brian Ford"},"description":"Zones for JavaScript","readme":"# Zone.js\n\n[![CDNJS](https://img.shields.io/cdnjs/v/zone.js.svg)](https://cdnjs.com/libraries/zone.js)\n\nImplements _Zones_ for JavaScript, inspired by [Dart](https://dart.dev/articles/archive/zones).\n\n> If you're using zone.js via unpkg (i.e. using `https://unpkg.com/zone.js`)\n> and you're using any of the following libraries, make sure you import them first\n\n> * 'newrelic' as it patches global.Promise before zone.js does\n> * 'async-listener' as it patches global.setTimeout, global.setInterval before zone.js does\n> * 'continuation-local-storage' as it uses async-listener\n\n## Development Status of Zone.js\n\nAs Angular moves towards a zoneless application development model, Zone.js is no longer accepting new features, including additional patches for native platform APIs. The team will also not be accepting any low priority bug fixes. Any critical bug fixes that relate to Angular's direct use of Zone.js will still be accepted.\n\nWhile still a supported part of Angular, the Angular team strongly discourages using Zone.js outside of Angular application contexts.\n\n\n## NEW Zone.js POST-v0.6.0\n\nSee the new API [here](./lib/zone.ts).\n\nRead up on [Zone Primer](https://docs.google.com/document/d/1F5Ug0jcrm031vhSMJEOgp1l-Is-Vf0UCNDY-LsQtAIY).\n\n## BREAKING CHANGES since Zone.js v0.11.1\n\nPrior to `v0.11.1`, Zone.js provided two distribution bundle formats in the `dist` folder.\nThey were (1) `ES5` bundle distributed as `zone.js` and (2) `ES2015` bundle distributed as `zone-evergreen.js`.\nBoth of these bundles were in `UMD` format, and are used for Angular's differential-loading mechanism.\n\nStarting with `v0.11.1`, Zone.js follows the [Angular Package Format](https://docs.google.com/document/d/1CZC2rcpxffTDfRDs6p1cfbmKNLA6x5O-NtkJglDaBVs). Therefor the new Zone.js file layout is:\n\n- `bundles`: `ES5` bundle in `UMD` format.\n- `fesm2015`: `ES5` bundle in `ESM` format.\n- `dist`: `ES5` bundle in `UMD` format. This directory is present to keep backward compatibility.\n\nIf you are using `Angular CLI`, the `polyfills.ts` file will contain:\n\n```\nimport 'zone.js/dist/zone';\n```\n\nStarting with Zone.js `v0.11.1+` the import changes to:\n\n```\nimport 'zone.js';\n```\n\nPrior to `v0.11.1` the import would load the `ES5` bundle in `UMD` format from `dist/zone.js`. \nStarting with `v0.11.1` the import loads the `ES2015` bundle in `ESM` format instead.\n\nThis is a breaking change for legacy browsers such as `IE11`.\n\nFor backwards compatibility `zone.js` continues to distribute the same bundles under `dist`.\nTo restore the old behavior import from the `dist` directory instead like so:\n\n```\nimport 'zone.js/dist/zone';\n```\n\nFor details, please refer the [changelog](./CHANGELOG.md) and the [PR](https://github.com/angular/angular/pull/36540).\n\n## What's a Zone?\n\nA Zone is an execution context that persists across async tasks.\nYou can think of it as [thread-local storage](https://en.wikipedia.org/wiki/Thread-local_storage) for JavaScript VMs.\n\nSee this video from ng-conf 2014 for a detailed explanation:\n\n[![screenshot of the zone.js presentation and ng-conf 2014](./presentation.png)](//www.youtube.com/watch?v=3IqtmUscE_U&t=150)\n\n## See also\n* [async-listener](https://github.com/othiym23/async-listener) - a similar library for node\n* [Async stack traces in Chrome](https://www.html5rocks.com/en/tutorials/developertools/async-call-stack/)\n* [strongloop/zone](https://github.com/strongloop/zone) (Deprecated)\n* [vizone](https://github.com/gilbox/vizone) - control flow visualizer that uses zone.js\n\n## Standard API support\n\nzone.js patched most standard web APIs (such as DOM events, `XMLHttpRequest`, ...) and nodejs APIs\n(`EventEmitter`, `fs`, ...), for more details, please see [STANDARD-APIS.md](STANDARD-APIS.md).\n\n## Nonstandard API support\n\nWe are adding support to some nonstandard APIs, such as MediaQuery and\nNotification. Please see [NON-STANDARD-APIS.md](NON-STANDARD-APIS.md) for more details.\n\n## Examples\n\nYou can find some samples to describe how to use zone.js in [SAMPLE.md](SAMPLE.md).\n\n## Modules\n\nzone.js patches the async APIs described above, but those patches will have some overhead.\nStarting from zone.js v0.8.9, you can choose which web API module you want to patch.\nFor more details, please\nsee [MODULE.md](MODULE.md).\n\n## Bundles\n\nStarting with `v0.11.0`, `zone.js`  uses `Angular Package Format` for bundle distribution.\n(For backwards compatibility, all bundles can still be accessed from `dist` folder.)\n\n|Bundle|Summary|\n|---|---|\n|`zone.js`| The default bundle. Contains the most used APIs such as `setTimeout/Promise/EventTarget...`, it also supports differential loading by importing  this bundle using `import zone.js`.  In legacy browsers it includes some additional patches such as `registerElement` and `EventTarget` like APIs.|\n|`zone-testing.js`| The bundle for zone testing support of `jasmine` / `mocha` / `jest`. Also includes test utility functions `async` / `fakeAsync` / `sync`.|\n|`zone-node.js`|The NodeJS support bundle.|\n|`zone-mix.js`|A mixed bundle which supports both browser and NodeJS. Useful for mixed environment such as Electron.|\n|`zone-externs.js`|the API definitions for `closure compiler`.|\n\nAdditional optional patches not included in the `zone.js` bundles which extend functionality.\nThe additional bundles can  be found under `zone.js/plugins` folder.\nTo use these bundles, add the following code after importing zone.js bundle.\n\n```\nimport 'zone.js';\n// For example, import canvas patch\nimport 'zone.js/plugins/zone-patch-canvas';\n```\n\n|Patch|Summary|\n|---|---|\n|`webapis-media-query.js`|patch for `MediaQuery APIs`|\n|`webapis-notification.js`|patch for `Notification APIs`|\n|`webapis-rtc-peer-connection.js`|patch for `RTCPeerConnection APIs`|\n|`webapis-shadydom.js`|patch for `Shady DOM APIs`|\n|`zone-bluebird.js`|patch for `Bluebird APIs`|\n|`zone-error.js`|patch for `Error Global Object`, supports adding zone information to stack frame, and also removing unrelated stack frames from `zone.js` internally|\n|`zone-patch-canvas.js`|patch for `Canvas API`|\n|`zone-patch-cordova.js`|patch for `Cordova API`|\n|`zone-patch-electron.js`|patch for `Electron API`|\n|`zone-patch-fetch.js`|patch for `Fetch API`|\n|`zone-patch-jsonp.js`|helper utility for `jsonp API`|\n|`zone-patch-resize-observer.js`|patch for `ResizeObserver API`|\n|`zone-patch-rxjs.js`|patch for `rxjs API`|\n|`zone-patch-rxjs-fake-async.js`|patch for `rxjs fakeasync test`|\n|`zone-patch-socket-io.js`|patch for `socket-io`|\n|`zone-patch-user-media.js`|patch for `UserMedia API`|\n|`zone-patch-message-port.js`|patch for `MessagePort API`|\n\n## License\nMIT","repository":{"type":"git","url":"git://github.com/angular/angular.git","directory":"packages/zone.js"},"users":{"xpr":true,"nelix":true,"timdp":true,"bsnote":true,"knoja4":true,"willwm":true,"yangzw":true,"itonyyo":true,"andrej-k":true,"noelmace":true,"sallyone":true,"xueboren":true,"largepuma":true,"stephanlv":true,"jonabasque":true,"shuoshubao":true,"knownasilya":true,"nisimjoseph":true,"jeandrebosch":true,"renishskills":true,"daniel_mantei":true,"markthethomas":true,"willwolffmyren":true,"ognjen.jevremovic":true,"christopher.urquidi":true},"bugs":{"url":"https://github.com/angular/angular/issues"},"license":"MIT","versions":{"0.1.0":{"name":"zone.js","version":"0.1.0","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.1.0","maintainers":[{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/btford/zone.js","bugs":{"url":"https://github.com/btford/zone.js/issues"},"dist":{"shasum":"756b451c7d3708bdd2cdcbeb295b3d844579d9fd","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.1.0.tgz","integrity":"sha512-crwD3OnuXOu2gXkT3wrEpLTxDtCXScler3bihsROrtvO5XyakMb3FsZ16qiZAoQWs9BPk5yt+nuh6L+c469wWQ==","signatures":[{"sig":"MEUCIQD8GUnHyxSQOi8CHkAkhDE3no3mJyCXQTgJG83TMDDIMgIgGIdzQ2JWGCPPCIwV+9dHio1Nn7lwcPoyGedpjfRqm+Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"zone.js","_from":".","scripts":{"test":"karma start --browsers Firefox --single-run"},"_npmUser":{"name":"anonymous","email":"briantford@gmail.com"},"repository":{"url":"git://github.com/btford/zone.js.git","type":"git"},"_npmVersion":"1.4.3","description":"Zones for JavaScript","directories":{"test":"test"},"devDependencies":{"karma":"~0.10.2","karma-jasmine":"~0.1.3","karma-firefox-launcher":"~0.1.0"}},"0.1.1":{"name":"zone.js","version":"0.1.1","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.1.1","maintainers":[{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/btford/zone.js","bugs":{"url":"https://github.com/btford/zone.js/issues"},"dist":{"shasum":"a1ecfa3f4c415374260280ae98cc5a73234b657a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.1.1.tgz","integrity":"sha512-T1htYOeqw4/8qH2/Hn1vpKLfwg+Qs4j2PVWJUOQVTcgiL2iH9Rn8ltMiBEXC760Ia4LWP7y6MzbkKolfAYt9dA==","signatures":[{"sig":"MEUCICr8JPu5TITQ1bjdPro6v/qFhK6lZ9975HlX49DX7Xo6AiEAswOdu2LpX3nbtfDi+IUcMdGQ6dS+2Uden7hSLptMQUA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"zone.js","_from":".","scripts":{"test":"karma start --browsers Firefox --single-run"},"_npmUser":{"name":"anonymous","email":"briantford@gmail.com"},"repository":{"url":"git://github.com/btford/zone.js.git","type":"git"},"_npmVersion":"1.4.3","description":"Zones for JavaScript","directories":{"test":"test"},"devDependencies":{"karma":"~0.10.2","karma-jasmine":"~0.1.3","karma-firefox-launcher":"~0.1.0"}},"0.2.0":{"name":"zone.js","version":"0.2.0","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.2.0","maintainers":[{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/btford/zone.js","bugs":{"url":"https://github.com/btford/zone.js/issues"},"dist":{"shasum":"8ce13746436be7e4bfdc382717cc89dc0ee584d1","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.2.0.tgz","integrity":"sha512-tHGKSC8igaAjukL9l4A/3cJYRv8jhbClhmR9YBiQ3/nrm6C0dKVLSMS8Y2KGubKLzcZF8DppcJUMCid/x9IdFQ==","signatures":[{"sig":"MEQCIDHsNkcfVD/ZAEZLGqR3rQLo02Sdyu6NcfvbkBWsrsZhAiBn1gfZJm694e+tiE7M4U1DVOT8+764m3c1zI0DxLQAgQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"zone.js","_from":".","scripts":{"test":"karma start --browsers Firefox --single-run","serve":"python -m SimpleHTTPServer 8000"},"_npmUser":{"name":"anonymous","email":"briantford@gmail.com"},"repository":{"url":"git://github.com/btford/zone.js.git","type":"git"},"_npmVersion":"1.4.3","description":"Zones for JavaScript","directories":{"test":"test"},"devDependencies":{"karma":"~0.10.2","karma-jasmine":"~0.1.3","karma-firefox-launcher":"~0.1.0"}},"0.2.1":{"name":"zone.js","version":"0.2.1","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.2.1","maintainers":[{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/btford/zone.js","bugs":{"url":"https://github.com/btford/zone.js/issues"},"dist":{"shasum":"c74df93688a857432b5cd56a5fa1d15f0d55080d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.2.1.tgz","integrity":"sha512-pFuVpADTvl9f9WKITkfEv9e+ijZEWbBAwkl+OCRjcZk5r19M6LcmG//bf+NKyq44c8E8uz5fyxjhyGbltIzltQ==","signatures":[{"sig":"MEUCIA+XVfA9pggXuqNJMpXz9GONAlvQ19fpB7/+x2Ty6FHZAiEAww4qJda12nKipyiD2kqvLgcE9wzy+A/b3PzJt8E7nHo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"zone.js","_from":".","scripts":{"test":"karma start --browsers Firefox --single-run","serve":"python -m SimpleHTTPServer 8000"},"_npmUser":{"name":"anonymous","email":"briantford@gmail.com"},"repository":{"url":"git://github.com/btford/zone.js.git","type":"git"},"_npmVersion":"1.4.3","description":"Zones for JavaScript","directories":{"test":"test"},"devDependencies":{"karma":"~0.10.2","karma-jasmine":"~0.1.3","karma-firefox-launcher":"~0.1.0"}},"0.2.3":{"name":"zone.js","version":"0.2.3","author":{"name":"Brian Ford"},"license":"Apache 2.0","_id":"zone.js@0.2.3","maintainers":[{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/btford/zone.js","bugs":{"url":"https://github.com/btford/zone.js/issues"},"dist":{"shasum":"f3d459dfb24bb3e6ef8cc846acf76e4d511a11fe","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.2.3.tgz","integrity":"sha512-oVIK/3vsE+JnKZv2wmCQtxCxXyy8jLA2wDHyfpYqbeaN7XS7UJR+flmliuPNSVg6HtyjfY0e/UPZvSVj6SsXcA==","signatures":[{"sig":"MEUCIQDFwlQLj8zDXHIFGJPYfxmgLtyvta2Jyl0TTkZoyuXaFgIgSl8SOnpGU31r22SGFKjavF15xVXfUO2OBWsfxTaFi+k=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"zone.js","_from":".","scripts":{"test":"karma start --browsers Firefox --single-run","serve":"python -m SimpleHTTPServer 8000"},"_npmUser":{"name":"anonymous","email":"briantford@gmail.com"},"repository":{"url":"git://github.com/btford/zone.js.git","type":"git"},"_npmVersion":"1.4.3","description":"Zones for JavaScript","directories":{"test":"test"},"devDependencies":{"karma":"~0.10.2","karma-jasmine":"~0.1.3","karma-firefox-launcher":"~0.1.0"}},"0.2.2":{"name":"zone.js","version":"0.2.2","author":{"name":"Brian Ford"},"license":"Apache 2.0","_id":"zone.js@0.2.2","maintainers":[{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/btford/zone.js","bugs":{"url":"https://github.com/btford/zone.js/issues"},"dist":{"shasum":"b88f542c7697192ccd55e7fe9b73f633003f83f8","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.2.2.tgz","integrity":"sha512-TDEdciFJ0Nw9NacG4E1x+gkvnWt5K7C4t58J1AMK6sFppcf3MNkLGmPi8tPihxX6KTz5XEfWa3WnwsGa5Jg6xQ==","signatures":[{"sig":"MEQCIC9/BjJ+mwlI6YmKSqjUCRxWkjdrsUIiIMfYiKJI/mPjAiBTcG6E7Sz5DHOhYgHw723Uus79FJwONV3O1duRg0LdAA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"zone.js","_from":".","scripts":{"test":"karma start --browsers Firefox --single-run","serve":"python -m SimpleHTTPServer 8000"},"_npmUser":{"name":"anonymous","email":"briantford@gmail.com"},"repository":{"url":"git://github.com/btford/zone.js.git","type":"git"},"_npmVersion":"1.4.3","description":"Zones for JavaScript","directories":{"test":"test"},"devDependencies":{"karma":"~0.10.2","karma-jasmine":"~0.1.3","karma-firefox-launcher":"~0.1.0"}},"0.2.4":{"name":"zone.js","version":"0.2.4","author":{"name":"Brian Ford"},"license":"Apache 2.0","_id":"zone.js@0.2.4","maintainers":[{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/btford/zone.js","bugs":{"url":"https://github.com/btford/zone.js/issues"},"dist":{"shasum":"09b2111b6fba29fa2f320c88390e2719ded34922","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.2.4.tgz","integrity":"sha512-fu9P9CI/kgMIECf7bZPF/t3uOWB9yPl2Ku+1o2YJQSK7qyRUvljwFm/lI5cQofi6dmecWYN12Fh5YzD5YkPaLg==","signatures":[{"sig":"MEUCIQDgCYGKbK/EmxUtj8XFeljlp3U+Ry5lTZT26Hgr/78xAwIgXk8YqMkS2IXn3Zofa41GbKPBoD+TmQMICmDb27Col6M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"zone.js","_from":".","scripts":{"test":"karma start --browsers Firefox --single-run","serve":"python -m SimpleHTTPServer 8000"},"_npmUser":{"name":"anonymous","email":"briantford@gmail.com"},"repository":{"url":"git://github.com/btford/zone.js.git","type":"git"},"_npmVersion":"1.4.3","description":"Zones for JavaScript","directories":{"test":"test"},"devDependencies":{"karma":"~0.10.2","karma-jasmine":"~0.1.3","karma-firefox-launcher":"~0.1.0"}},"0.3.0":{"name":"zone.js","version":"0.3.0","author":{"name":"Brian Ford"},"license":"Apache 2.0","_id":"zone.js@0.3.0","maintainers":[{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/btford/zone.js","bugs":{"url":"https://github.com/btford/zone.js/issues"},"dist":{"shasum":"04448280477ee0d268458e1ba36d0139149c169d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.3.0.tgz","integrity":"sha512-WrCttCAM+H8IEqHLYpRIa3SNH2wRNqRkVI9TLO/6FQOSNbjdV+2tnvaN1i1Eb/rp0glbsEDSe1Flx5Jss4F41Q==","signatures":[{"sig":"MEUCIFtpFGOgCSp94dH88R8NKdISQ3OgS7b0hNgJ9tFN6uXiAiEAm938soECEA5ybIjBXBdq0zfylO14vrWkZZ13cY1iIHY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"zone.js","_from":".","scripts":{"test":"karma start --browsers Firefox --single-run","serve":"python -m SimpleHTTPServer 8000"},"_npmUser":{"name":"anonymous","email":"briantford@gmail.com"},"repository":{"url":"git://github.com/btford/zone.js.git","type":"git"},"_npmVersion":"1.4.3","description":"Zones for JavaScript","directories":{"test":"test"},"devDependencies":{"karma":"~0.10.2","karma-jasmine":"~0.1.3","karma-firefox-launcher":"~0.1.0"}},"0.4.0":{"name":"zone.js","version":"0.4.0","author":{"name":"Brian Ford"},"license":"Apache 2.0","_id":"zone.js@0.4.0","maintainers":[{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"a970725fe2bc3446922c0185655998273a78aa17","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.4.0.tgz","integrity":"sha512-ZckD2WdODhwbpDx3y04iIfwy2ok1PX1TxTkmsoiGaiPYXLxTrggsYGCOCvqxCYwKa7XwwQlEaxNUVLk8iDtcGg==","signatures":[{"sig":"MEYCIQCME5+O3HwcTnWgkQJALp+fv4kAEoOqBAMWmAXP5ZKrFQIhAPa+jFgu9qK3vkbGZiPwSFKDErJ2dvfFktEWQ1nW7tCd","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"zone.js","_from":".","_shasum":"a970725fe2bc3446922c0185655998273a78aa17","gitHead":"b5f079f90581851f0126d72908e0e7d4c38deb20","scripts":{"test":"karma start karma.conf.js","serve":"python -m SimpleHTTPServer 8000"},"_npmUser":{"name":"anonymous","email":"briantford@gmail.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"2.1.18","description":"Zones for JavaScript","directories":{"test":"test"},"_nodeVersion":"0.10.35","devDependencies":{"karma":"^0.12.31","jasmine-core":"^2.2.0","karma-jasmine":"^0.3.5","nodejs-websocket":"^1.2.0","karma-sauce-launcher":"^0.2.10","karma-chrome-launcher":"^0.1.7","karma-safari-launcher":"^0.1.1","karma-firefox-launcher":"^0.1.4"}},"0.4.1":{"name":"zone.js","version":"0.4.1","author":{"name":"Brian Ford"},"license":"Apache 2.0","_id":"zone.js@0.4.1","maintainers":[{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"de1a9b247345a4032284c27588d3eca874c17672","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.4.1.tgz","integrity":"sha512-/sMBGypFP34mOWUu++dcr7J7D7MLvOom4UtLZYfSMwVgs5Q2D9P2OXaw7kxIhD5QfI0RhYbl4PSIH+raajbsGg==","signatures":[{"sig":"MEUCIQCROLZKn0sCWLGIhaTj6PWFYQQkyXUnr9gM7uVIVYpJcwIgOub1C9ywyJfO+Linp+qftjvneL1iAQtn1zYphszJhog=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"zone.js","_from":".","_shasum":"de1a9b247345a4032284c27588d3eca874c17672","gitHead":"214f532097082a0a6659d98741378c7a6110467e","scripts":{"test":"karma start karma.conf.js","serve":"python -m SimpleHTTPServer 8000"},"_npmUser":{"name":"anonymous","email":"briantford@gmail.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"2.1.18","description":"Zones for JavaScript","directories":{"test":"test"},"_nodeVersion":"0.10.35","devDependencies":{"karma":"^0.12.31","jasmine-core":"^2.2.0","karma-jasmine":"^0.3.5","nodejs-websocket":"^1.2.0","karma-sauce-launcher":"^0.2.10","karma-chrome-launcher":"^0.1.7","karma-safari-launcher":"^0.1.1","karma-firefox-launcher":"^0.1.4"}},"0.4.2":{"name":"zone.js","version":"0.4.2","author":{"name":"Brian Ford"},"license":"Apache 2.0","_id":"zone.js@0.4.2","maintainers":[{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"1bd763b08d9a2ca1bff0d62397ab8ba0dc83f167","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.4.2.tgz","integrity":"sha512-Pr3dSut5YI4WSdym5E3FurErB+syNCpMwgQt6TD2SfgpQ5nX/UIuZaEznE47VmIBuYU6vMHvBHrVv13HwpyKWw==","signatures":[{"sig":"MEUCIQDARbDYKh4v6GCRRpI/G7JfgUauue9JWKVwSU2k3i+2LQIgW64KqSJOokGqDAgcj3mnyMs9IpQNDqgkj5ql8lJ1Tmg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"zone.js","_from":".","_shasum":"1bd763b08d9a2ca1bff0d62397ab8ba0dc83f167","gitHead":"3a3dae4295657fb8e09f6025cabb984fed87a38f","scripts":{"test":"karma start karma.conf.js","serve":"python -m SimpleHTTPServer 8000"},"_npmUser":{"name":"anonymous","email":"briantford@gmail.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"2.7.0","description":"Zones for JavaScript","directories":{"test":"test"},"_nodeVersion":"0.10.35","devDependencies":{"karma":"^0.12.31","jasmine-core":"^2.2.0","karma-jasmine":"^0.3.5","nodejs-websocket":"^1.2.0","karma-sauce-launcher":"^0.2.10","karma-chrome-launcher":"^0.1.7","karma-safari-launcher":"^0.1.1","karma-firefox-launcher":"^0.1.4"}},"0.4.3":{"name":"zone.js","version":"0.4.3","author":{"name":"Brian Ford"},"license":"Apache 2.0","_id":"zone.js@0.4.3","maintainers":[{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"c358604a3a2826090f2fc02317bdb04ad46e3f29","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.4.3.tgz","integrity":"sha512-IlHtcsC4MUp56qhfvC296EiXiNrDhAssser0rdJzNnvlbBPF+2CNwBvUIocl4WUJ/2/uqiD1qbOYEOE4lbX+WA==","signatures":[{"sig":"MEUCIQDHCgeNTxWx70y1c3BnGoVUC1g+ZjsYB3YtA5aNa21WFgIgXLxA8K2fjAawODtB7cpekIEgQiX4CyFEvNutnmVGUcE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"zone.js","_from":".","_shasum":"c358604a3a2826090f2fc02317bdb04ad46e3f29","gitHead":"f1cbad9b2810b06ae94f8c3db0d30a583e9f7958","scripts":{"test":"karma start karma.conf.js","serve":"python -m SimpleHTTPServer 8000"},"_npmUser":{"name":"anonymous","email":"briantford@gmail.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"2.7.0","description":"Zones for JavaScript","directories":{"test":"test"},"_nodeVersion":"0.10.35","devDependencies":{"karma":"^0.12.31","jasmine-core":"^2.2.0","karma-jasmine":"^0.3.5","nodejs-websocket":"^1.2.0","karma-sauce-launcher":"^0.2.10","karma-chrome-launcher":"^0.1.7","karma-safari-launcher":"^0.1.1","karma-firefox-launcher":"^0.1.4"}},"0.4.4":{"name":"zone.js","version":"0.4.4","author":{"name":"Brian Ford"},"license":"Apache 2.0","_id":"zone.js@0.4.4","maintainers":[{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"83300b0dc3cd093b3a9e3fd58be57436439f1582","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.4.4.tgz","integrity":"sha512-sxDtUyd4JJqs1sKXqbifURA5aIg05D1QBbw+eeifj0UwGzs10BWFikEPwxwiOvoN7mxvgyj+vKqQlbZnxIhAaQ==","signatures":[{"sig":"MEUCIQDT2mlG+KxOtyGBTL/fPzqxMXiXZ0Na5zVZ/N7SoVLYMQIgQIxDHF+mBOJGWhi9rEMpZ0Bfgedq+Ilc1WeC9pOXhog=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"zone.js","_from":".","_shasum":"83300b0dc3cd093b3a9e3fd58be57436439f1582","gitHead":"9b6d558adac1fedde3b7eefb460bd1f40ddd2caf","scripts":{"test":"karma start karma.conf.js","serve":"python -m SimpleHTTPServer 8000"},"_npmUser":{"name":"anonymous","email":"briantford@gmail.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"2.9.0","description":"Zones for JavaScript","directories":{"test":"test"},"_nodeVersion":"0.10.38","devDependencies":{"karma":"^0.12.31","jasmine-core":"^2.2.0","karma-jasmine":"^0.3.5","karma-browserify":"^4.1.2","nodejs-websocket":"^1.2.0","karma-sauce-launcher":"^0.2.10","karma-chrome-launcher":"^0.1.7","karma-safari-launcher":"^0.1.1","karma-firefox-launcher":"^0.1.4"}},"0.5.0":{"name":"zone.js","version":"0.5.0","author":{"name":"Brian Ford"},"license":"Apache 2.0","_id":"zone.js@0.5.0","maintainers":[{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"5b03ce686c1601c1594cca6fc23e704378bd4576","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.5.0.tgz","integrity":"sha512-S59K9kXZ4HTI1p/pX605dnOIY7xUZVPPCw0SI9gjNplhvMH+e/QRjt9c6uyboYdK5i2gIjK3AvewpzZgpc6tVQ==","signatures":[{"sig":"MEYCIQCiceter47Xob56d1XmYaFMgUw7gTvXhK8jW9gACfKoCAIhAPW+3GdD0bFg0TSXL3y6MVWvH0OymXofl/ImXiYR3h49","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/zone.js","_from":".","files":["lib","dist"],"_shasum":"5b03ce686c1601c1594cca6fc23e704378bd4576","gitHead":"9ef2add723be84c42a22bc727d72ef2495feb019","scripts":{"test":"karma start karma.conf.js","serve":"python -m SimpleHTTPServer 8000"},"_npmUser":{"name":"anonymous","email":"briantford@gmail.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"2.9.0","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"0.10.38","devDependencies":{"gulp":"^3.8.11","karma":"^0.12.31","browserify":"^9.0.8","gulp-rename":"^1.2.2","gulp-uglify":"^1.2.0","jasmine-core":"^2.2.0","vinyl-buffer":"^1.0.0","karma-jasmine":"^0.3.5","karma-browserify":"^4.1.2","nodejs-websocket":"^1.2.0","vinyl-source-stream":"^1.1.0","karma-sauce-launcher":"^0.2.10","karma-chrome-launcher":"^0.1.7","karma-safari-launcher":"^0.1.1","karma-firefox-launcher":"^0.1.4"}},"0.5.1":{"name":"zone.js","version":"0.5.1","author":{"name":"Brian Ford"},"license":"Apache 2.0","_id":"zone.js@0.5.1","maintainers":[{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"96a22d5e9059eace5645cab5033e07d5da234ec0","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.5.1.tgz","integrity":"sha512-kviubhBihQj3IkOaqggrwqBpq6ZxWilu/E7ECsY5P7zxfefWDPs5S33F7396LGAB5+aQsrR0Cv2StbMfiz+xYg==","signatures":[{"sig":"MEUCIQCYazRmmNuWzlZ0kx9PjWuzSnVhMRLiAYkS1FpQ1WexnAIgfbosuOGPHcQHYFeow613r6pQFt9xI16uEhQJD5cc0LA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/zone.js","_from":".","files":["lib","dist"],"_shasum":"96a22d5e9059eace5645cab5033e07d5da234ec0","gitHead":"85dff6a17bd5f57470fdfb9c2475c13a65c76757","scripts":{"test":"karma start karma.conf.js","serve":"python -m SimpleHTTPServer 8000"},"_npmUser":{"name":"anonymous","email":"briantford@gmail.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"2.11.0","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"0.12.2","devDependencies":{"gulp":"^3.8.11","karma":"^0.12.31","browserify":"^9.0.8","es6-promise":"^2.3.0","gulp-rename":"^1.2.2","gulp-uglify":"^1.2.0","jasmine-core":"^2.2.0","vinyl-buffer":"^1.0.0","karma-jasmine":"^0.3.5","karma-browserify":"^4.1.2","nodejs-websocket":"^1.2.0","vinyl-source-stream":"^1.1.0","karma-sauce-launcher":"^0.2.10","karma-chrome-launcher":"^0.1.7","karma-safari-launcher":"^0.1.1","karma-firefox-launcher":"^0.1.4"}},"0.5.2":{"name":"zone.js","version":"0.5.2","author":{"name":"Brian Ford"},"license":"Apache 2.0","_id":"zone.js@0.5.2","maintainers":[{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"291394f3b811cb8bdccb3d60f768664a68bd5036","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.5.2.tgz","integrity":"sha512-cnY4zjRJi135vaS8EoWahTJEoodNG53PfOdXi3rN5YSGDHrMeLs7UK2ZYrCqTkH9kMc2KSF+7SY7K690IGv9sQ==","signatures":[{"sig":"MEYCIQDwqwvFwwTHsa9mBeBYQWk+B6RSimGhSkxJ5g6zDLx45gIhAN8BWdJkw0wwzBfbjYdEuOgUWaHXkf+Cr/ihBoHggqVt","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/zone.js","_from":".","files":["lib","dist"],"_shasum":"291394f3b811cb8bdccb3d60f768664a68bd5036","gitHead":"da5f265a39d3f49a4023af55a8d5f19638a96f74","scripts":{"test":"karma start karma.conf.js","serve":"python -m SimpleHTTPServer 8000"},"_npmUser":{"name":"anonymous","email":"briantford@gmail.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"2.11.0","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"0.12.2","devDependencies":{"gulp":"^3.8.11","karma":"^0.12.31","browserify":"^9.0.8","es6-promise":"^2.3.0","gulp-rename":"^1.2.2","gulp-uglify":"^1.2.0","jasmine-core":"^2.2.0","vinyl-buffer":"^1.0.0","karma-jasmine":"^0.3.5","karma-browserify":"^4.1.2","nodejs-websocket":"^1.2.0","vinyl-source-stream":"^1.1.0","karma-sauce-launcher":"^0.2.10","karma-chrome-launcher":"^0.1.7","karma-safari-launcher":"^0.1.1","karma-firefox-launcher":"^0.1.4"}},"0.5.3":{"name":"zone.js","version":"0.5.3","author":{"name":"Brian Ford"},"license":"Apache 2.0","_id":"zone.js@0.5.3","maintainers":[{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"a3036448ba34bab41b2e3f0d8d1cd65b081391f7","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.5.3.tgz","integrity":"sha512-2lBxNU8nBQGGdA5nvKYzcPioqvzRcHQY0qLAuaS22otV3HFsXDcU8BVo7B1oqH/83mCqWjApirrmU1m16dv2gg==","signatures":[{"sig":"MEUCIDS8KN13r1SnfXsmQL4q0lh+jlmLx7udBD/WUxpfLemRAiEAoSLdbMKw0Z2TeKSg8Pfw1sGJ5zKIGXltz6nPKXtiGYs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/zone.js","_from":".","files":["lib","dist"],"_shasum":"a3036448ba34bab41b2e3f0d8d1cd65b081391f7","gitHead":"09d3303fa09815f7588a287496003f1e59ba75f8","scripts":{"test":"karma start karma.conf.js","serve":"python -m SimpleHTTPServer 8000"},"_npmUser":{"name":"anonymous","email":"briantford@gmail.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"2.11.3","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"0.12.7","devDependencies":{"gulp":"^3.8.11","karma":"^0.12.31","browserify":"^9.0.8","es6-promise":"^2.3.0","gulp-rename":"^1.2.2","gulp-uglify":"^1.2.0","jasmine-core":"^2.2.0","vinyl-buffer":"^1.0.0","karma-jasmine":"^0.3.5","karma-browserify":"^4.1.2","nodejs-websocket":"^1.2.0","vinyl-source-stream":"^1.1.0","karma-sauce-launcher":"^0.2.10","karma-chrome-launcher":"^0.1.7","karma-safari-launcher":"^0.1.1","karma-firefox-launcher":"^0.1.4"}},"0.5.4":{"name":"zone.js","version":"0.5.4","author":{"name":"Brian Ford"},"license":"Apache 2.0","_id":"zone.js@0.5.4","maintainers":[{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"96069f36be94a6c9bbf0933cae12ec3f53f79873","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.5.4.tgz","integrity":"sha512-/ZIp4SIxqh0m48EhW9zmC+5Cb0aC/qmk/EQL/sUIQQMfFAs3Xqba+vD/KiT9aKG6b8+Xc7/mizMCKyHs17yqfA==","signatures":[{"sig":"MEQCIAHDcXU9Rc6SNKYYgT/van+eFy2K0k6S4MCKoNxg52Q5AiAXZTNmyBiyat6HJtm53lm8vcR34ye87Bsrw9/sG3zNOg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/zone.js","_from":".","files":["lib","dist"],"_shasum":"96069f36be94a6c9bbf0933cae12ec3f53f79873","gitHead":"4bbb0c6bb7591f94e76cfbd194f5ac5ad9896364","scripts":{"test":"karma start karma.conf.js","serve":"python -m SimpleHTTPServer 8000"},"_npmUser":{"name":"anonymous","email":"briantford@gmail.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"2.11.3","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"0.12.7","devDependencies":{"gulp":"^3.8.11","karma":"^0.12.31","browserify":"^9.0.8","es6-promise":"^2.3.0","gulp-rename":"^1.2.2","gulp-uglify":"^1.2.0","jasmine-core":"^2.2.0","vinyl-buffer":"^1.0.0","karma-jasmine":"^0.3.5","karma-browserify":"^4.1.2","nodejs-websocket":"^1.2.0","vinyl-source-stream":"^1.1.0","karma-sauce-launcher":"^0.2.10","karma-chrome-launcher":"^0.1.7","karma-safari-launcher":"^0.1.1","karma-firefox-launcher":"^0.1.4"}},"0.5.5":{"name":"zone.js","version":"0.5.5","author":{"name":"Brian Ford"},"license":"Apache 2.0","_id":"zone.js@0.5.5","maintainers":[{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"27af3a6a7a57b264b3181a571dc8782352cb5190","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.5.5.tgz","integrity":"sha512-fOGSkwlDe1R7xyRTumMBbj3uSRa3zSRbbVAW7zDffHJGqyxhbfTPW6jJmbFGChGjbh7U1ifubGzO88Kp7VmnMw==","signatures":[{"sig":"MEUCIEi2janbFVXLZFdvhCQzJEEprTtGFzz83kyWmNjcN08mAiEA0Qk1T7tMVODe8p+SWn6Ty/yhRQvacOPbY3BQ5vChjgM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/zone.js","_from":".","files":["lib","dist"],"_shasum":"27af3a6a7a57b264b3181a571dc8782352cb5190","gitHead":"0f369ab7a44fa18443cb186989a681633534a07c","scripts":{"test":"karma start karma.conf.js","serve":"python -m SimpleHTTPServer 8000"},"_npmUser":{"name":"anonymous","email":"briantford@gmail.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"2.14.3","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"0.12.7","dependencies":{"es6-promise":"^3.0.2"},"devDependencies":{"gulp":"^3.8.11","karma":"^0.12.31","browserify":"^9.0.8","gulp-rename":"^1.2.2","gulp-uglify":"^1.2.0","jasmine-core":"^2.2.0","vinyl-buffer":"^1.0.0","karma-jasmine":"^0.3.5","karma-browserify":"^4.1.2","nodejs-websocket":"^1.2.0","vinyl-source-stream":"^1.1.0","karma-sauce-launcher":"^0.2.10","karma-chrome-launcher":"^0.1.7","karma-safari-launcher":"^0.1.1","karma-firefox-launcher":"^0.1.4"}},"0.5.6":{"name":"zone.js","version":"0.5.6","author":{"name":"Brian Ford"},"license":"Apache 2.0","_id":"zone.js@0.5.6","maintainers":[{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"48b7ec22d48c6f08bfa94f84361d36a22cd0246c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.5.6.tgz","integrity":"sha512-IMqla/NfJT1o5Mlf9x9GCvWPH7OYaQJez6lmoImrD0Ucbja8qs/gXNZQFwIRbVuBWY49uG4YAUJMk7+YcKw63w==","signatures":[{"sig":"MEUCIQC3mpNSMTjiO3sZ+bbVUELhvMsqqY4jQUO0mCAsqTv8qQIgZmUbURfIbi/+CfqPDfRN1hRJhU8NBkrtKVnqhpxPNN0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/zone.js","_from":".","files":["lib","dist"],"_shasum":"48b7ec22d48c6f08bfa94f84361d36a22cd0246c","gitHead":"7ea2ab58391eefcad25858986954d99bfb1c3175","scripts":{"test":"karma start karma.conf.js","serve":"python -m SimpleHTTPServer 8000"},"_npmUser":{"name":"anonymous","email":"briantford@gmail.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"2.14.3","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"0.12.7","dependencies":{"es6-promise":"^3.0.2"},"devDependencies":{"gulp":"^3.8.11","karma":"^0.12.31","browserify":"^9.0.8","gulp-rename":"^1.2.2","gulp-uglify":"^1.2.0","jasmine-core":"^2.2.0","vinyl-buffer":"^1.0.0","karma-jasmine":"^0.3.5","karma-browserify":"^4.1.2","nodejs-websocket":"^1.2.0","vinyl-source-stream":"^1.1.0","karma-sauce-launcher":"^0.2.10","karma-chrome-launcher":"^0.1.7","karma-safari-launcher":"^0.1.1","karma-firefox-launcher":"^0.1.4"}},"0.5.7":{"name":"zone.js","version":"0.5.7","author":{"name":"Brian Ford"},"license":"Apache 2.0","_id":"zone.js@0.5.7","maintainers":[{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"6144d9efead6d4611aebded0ce2f10ce6dcf8eee","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.5.7.tgz","integrity":"sha512-b8idB8X1DZey6+4UXYprAF48aE/p8YBh17noFeF/1Xbf0IFA+TaYpn2sl4i/s0TzcFS0ZqtXZ6rJcYejGRPlVg==","signatures":[{"sig":"MEUCIQCU13tbpA/XbsTtsw34OTMTUpAymN3BXrtX52tWa3THuAIgV5z4cQdu+lw2BTlfdnhcqetrLItx2d2cWJYWULjK7Ww=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/zone.js","_from":".","files":["lib","dist"],"_shasum":"6144d9efead6d4611aebded0ce2f10ce6dcf8eee","gitHead":"e6124dc5670d70a9a7b6c718879212cd183583ff","scripts":{"test":"karma start karma.conf.js","serve":"python -m SimpleHTTPServer 8000"},"_npmUser":{"name":"anonymous","email":"briantford@gmail.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"2.14.3","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"0.12.7","dependencies":{"es6-promise":"^3.0.2"},"devDependencies":{"gulp":"^3.8.11","karma":"^0.12.31","browserify":"^9.0.8","gulp-rename":"^1.2.2","gulp-uglify":"^1.2.0","jasmine-core":"^2.2.0","vinyl-buffer":"^1.0.0","karma-jasmine":"^0.3.5","karma-browserify":"^4.1.2","nodejs-websocket":"^1.2.0","vinyl-source-stream":"^1.1.0","karma-sauce-launcher":"^0.2.10","karma-chrome-launcher":"^0.1.7","karma-safari-launcher":"^0.1.1","karma-firefox-launcher":"^0.1.4"}},"0.5.8":{"name":"zone.js","version":"0.5.8","author":{"name":"Brian Ford"},"license":"Apache 2.0","_id":"zone.js@0.5.8","maintainers":[{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"4977b3d273265970f97e5ae28a2a25c619b2705c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.5.8.tgz","integrity":"sha512-tsCWQYxS1I/0+uD3YDk/g7AQNpg4QgilSbxJgMxpRMW6GqoTRc65GlxiB0GDAyLqhHGyg4XTmNmqd/pD6aR+/A==","signatures":[{"sig":"MEYCIQDihBAAEmpfH6wlHqnrK6+rOwWLwUjGu/rrKjVn6mwzjQIhAOn2iaI8PmbjFxSrZF8LGmZHwUrJMeKDnTGV+LpRj4nm","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/zone.js","_from":".","files":["lib","dist"],"_shasum":"4977b3d273265970f97e5ae28a2a25c619b2705c","gitHead":"22dce1048b1c47548cc7284446eb77efebfb56fc","scripts":{"test":"karma start karma.conf.js","serve":"python -m SimpleHTTPServer 8000"},"_npmUser":{"name":"anonymous","email":"briantford@gmail.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"2.14.3","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"0.12.7","dependencies":{"es6-promise":"^3.0.2"},"devDependencies":{"gulp":"^3.8.11","karma":"^0.12.31","browserify":"^9.0.8","gulp-rename":"^1.2.2","gulp-uglify":"^1.2.0","jasmine-core":"^2.2.0","vinyl-buffer":"^1.0.0","karma-jasmine":"^0.3.5","karma-browserify":"^4.1.2","nodejs-websocket":"^1.2.0","vinyl-source-stream":"^1.1.0","karma-sauce-launcher":"^0.2.10","karma-chrome-launcher":"^0.1.7","karma-safari-launcher":"^0.1.1","karma-firefox-launcher":"^0.1.4"}},"0.5.9":{"name":"zone.js","version":"0.5.9","author":{"name":"Brian Ford"},"license":"Apache-2.0","_id":"zone.js@0.5.9","maintainers":[{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"e155fbc6b127d249e4fd2c447c4dc79824523b91","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.5.9.tgz","integrity":"sha512-7n2hnKF8wRkOCsdlXOkoZfMhLWve2Q5c3H3zjTWrQOLhbO8w8gM7Y9FbKG2VABgmIJTEhe70uCEUhrxkuSi66Q==","signatures":[{"sig":"MEUCIDeUOSZrAqQ4cB8p2coRbYV7T+dtI9DTPcZam55A4QueAiEA3jQNS/xcU6oqVaIJ26nrlM1wpmu1IH0L93fYqybkwEA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/zone.js","_from":".","files":["lib","dist"],"_shasum":"e155fbc6b127d249e4fd2c447c4dc79824523b91","gitHead":"364db43100541aee8a5459d2f0ccc420f2287388","scripts":{"test":"karma start karma.conf.js","serve":"python -m SimpleHTTPServer 8000"},"_npmUser":{"name":"anonymous","email":"briantford@gmail.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"2.14.7","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"4.2.2","dependencies":{"es6-promise":"^3.0.2"},"devDependencies":{"gulp":"^3.8.11","karma":"^0.12.31","browserify":"^9.0.8","gulp-rename":"^1.2.2","gulp-uglify":"^1.2.0","jasmine-core":"^2.2.0","vinyl-buffer":"^1.0.0","karma-jasmine":"^0.3.5","karma-browserify":"^4.1.2","nodejs-websocket":"^1.2.0","vinyl-source-stream":"^1.1.0","karma-sauce-launcher":"^0.2.10","karma-chrome-launcher":"^0.1.7","karma-safari-launcher":"^0.1.1","karma-firefox-launcher":"^0.1.4"}},"0.5.10":{"name":"zone.js","version":"0.5.10","author":{"name":"Brian Ford"},"license":"Apache-2.0","_id":"zone.js@0.5.10","maintainers":[{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"05bc9cf034f12278c7a223e021d10b34fdacfb81","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.5.10.tgz","integrity":"sha512-PtJrCKCa7iGlKEaaNRGZsvJMj2Q/IBR0J08A/QbwZRkM75/A8/YTmWJIB/P/SYg8gbi9ualMDP88pZzwLvWviw==","signatures":[{"sig":"MEUCIQD49VPj9n7aLdn4S7ogUtza3E3nkBAMjf0vu2ptUO0y1wIgGkyB4Y7ya5jAVXgPKcMvNd1aQT7gKTPt99gFuxStIN8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/zone.js","_from":".","files":["lib","dist"],"_shasum":"05bc9cf034f12278c7a223e021d10b34fdacfb81","gitHead":"a9ad9eb66aa346c7c6979179355d6d4436bbe567","scripts":{"test":"karma start karma.conf.js","serve":"python -m SimpleHTTPServer 8000"},"_npmUser":{"name":"anonymous","email":"briantford@gmail.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"2.14.7","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"4.2.2","dependencies":{"es6-promise":"^3.0.2"},"devDependencies":{"gulp":"^3.8.11","karma":"^0.12.31","browserify":"^9.0.8","gulp-rename":"^1.2.2","gulp-uglify":"^1.2.0","jasmine-core":"^2.2.0","vinyl-buffer":"^1.0.0","karma-jasmine":"^0.3.5","karma-browserify":"^4.1.2","nodejs-websocket":"^1.2.0","vinyl-source-stream":"^1.1.0","karma-sauce-launcher":"^0.2.10","karma-chrome-launcher":"^0.1.7","karma-safari-launcher":"^0.1.1","karma-firefox-launcher":"^0.1.4"}},"0.5.11":{"name":"zone.js","version":"0.5.11","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.5.11","maintainers":[{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"97b84ef72ed1223b6c17c23d414b912c3db86827","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.5.11.tgz","integrity":"sha512-uUcqAHsi2ss8yDgXPFvqSYEwM3Z8X0HGI6gZjCude8wrhL61TxEKeCdvAYmq8XVZViLlt6+qGai+QRXUd8dfyA==","signatures":[{"sig":"MEYCIQCLDLIIlAFTO7PBd+ljNlKJ/XC0Cs5HXV1aaKEsSo5kywIhAKYYqjB8GdSMxKQCLggDeuiekJJ17GCKn2deiRZ+hVpJ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/zone.js","_from":".","files":["lib","dist"],"_shasum":"97b84ef72ed1223b6c17c23d414b912c3db86827","gitHead":"62955d151e1d90532881934f0da8598e6c93b384","scripts":{"tsc":"tsc","test":"karma start karma.conf.js","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w","postinstall":"tsd install"},"_npmUser":{"name":"anonymous","email":"briantford@gmail.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"2.14.7","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"4.2.2","dependencies":{"es6-promise":"^3.0.2"},"devDependencies":{"tsd":"^0.6.5","gulp":"^3.8.11","karma":"^0.13.14","webpack":"^1.12.2","gulp-util":"^3.0.7","ts-loader":"^0.6.0","typescript":"^1.7.3","gulp-rename":"^1.2.2","gulp-uglify":"^1.2.0","jasmine-core":"^2.2.0","vinyl-buffer":"^1.0.0","karma-jasmine":"^0.3.6","karma-webpack":"^1.7.0","nodejs-websocket":"^1.2.0","vinyl-source-stream":"^1.1.0","karma-sauce-launcher":"^0.2.10","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6"}},"0.5.12":{"name":"zone.js","version":"0.5.12","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.5.12","maintainers":[{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"47e4cf73f4411d43ce3dc1c0f0f31b028ccb0d90","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.5.12.tgz","integrity":"sha512-Nzbh9Fap41weACTprcZGebYMudaPqnrYi4WpDCdkhf0gHJ78Ma5q/lCi2ZrI9oxwYiG4MQNEFSiP2xirHFkRNw==","signatures":[{"sig":"MEYCIQDDpqaC2oT3ojcH949RfSajFrYdsYvT3uytpQas0BJtGAIhAKj/hhGmLUf5GSFaFGAbFEcD0HEnBWRSik1lTwnxiPuR","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"build/lib/zone.js","_from":".","files":["lib","dist"],"_shasum":"47e4cf73f4411d43ce3dc1c0f0f31b028ccb0d90","gitHead":"db366f1c53c6b8b96b6ab730c0ab03ce267f4329","scripts":{"tsc":"tsc","test":"karma start karma.conf.js","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w","prepublish":"tsc && gulp build","postinstall":"tsd install"},"typings":"build/lib/core.d.ts","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"3.6.0","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"5.5.0","dependencies":{"es6-promise":"^3.0.2"},"devDependencies":{"tsd":"^0.6.5","gulp":"^3.8.11","karma":"^0.13.14","webpack":"^1.12.2","gulp-util":"^3.0.7","ts-loader":"^0.6.0","typescript":"^1.7.3","gulp-rename":"^1.2.2","gulp-uglify":"^1.2.0","jasmine-core":"^2.2.0","vinyl-buffer":"^1.0.0","karma-jasmine":"^0.3.6","karma-webpack":"^1.7.0","nodejs-websocket":"^1.2.0","vinyl-source-stream":"^1.1.0","karma-sauce-launcher":"^0.2.10","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6"}},"0.5.13":{"name":"zone.js","version":"0.5.13","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.5.13","maintainers":[{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"7c7e2cff222c60e5daf7ec11f383520b522de3bc","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.5.13.tgz","integrity":"sha512-Aszi42q3bkLkMnuSBfISPMDM0IaWIFcCqHHPXTRybPjy+d8SEoCAUEh6d6WabkXDjFJsioFLXk+DkLIje2MqzQ==","signatures":[{"sig":"MEUCIQCxTHMjpvtGGHB+2HmEikNrJdQrAmu3wtEXl2Vxms0hvgIgc14epV+iuQBg8ffGS9/oJKghEWATOp2409oTO5UXWSE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"build/lib/zone.js","_from":".","files":["lib","build","dist"],"_shasum":"7c7e2cff222c60e5daf7ec11f383520b522de3bc","gitHead":"3504146d9779380518377db4f0aa729f30bb23a8","scripts":{"tsc":"tsc","test":"karma start karma.conf.js","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w","prepublish":"tsc && gulp build","postinstall":"tsd install"},"typings":"build/lib/core.d.ts","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"3.6.0","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"5.5.0","dependencies":{"es6-promise":"^3.0.2"},"devDependencies":{"tsd":"^0.6.5","gulp":"^3.8.11","karma":"^0.13.14","webpack":"^1.12.2","gulp-util":"^3.0.7","ts-loader":"^0.6.0","typescript":"^1.7.3","gulp-rename":"^1.2.2","gulp-uglify":"^1.2.0","jasmine-core":"^2.2.0","vinyl-buffer":"^1.0.0","karma-jasmine":"^0.3.6","karma-webpack":"^1.7.0","nodejs-websocket":"^1.2.0","vinyl-source-stream":"^1.1.0","karma-sauce-launcher":"^0.2.10","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6"}},"0.5.14":{"name":"zone.js","version":"0.5.14","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.5.14","maintainers":[{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"5590e08031ab49539e1b150ff0775092d2a44a1a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.5.14.tgz","integrity":"sha512-TkLgKcs/nJRfvBWLJJzBKU4dYiOhN8tuscGelzBToZonVX/650PZ1j4qhkSwkWybStyQLpv4Mv+LjjZsRQw32g==","signatures":[{"sig":"MEUCIQC3W4Zjz8wPtyGxPhu7efXnG6neDEItdTXBVuM0/O9bFAIgSVNZ22+cIRXJAWVLxePSp9GAB3ws7bFqsRsZTnC5pLo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"build/lib/zone.js","_from":".","files":["lib","build","dist"],"_shasum":"5590e08031ab49539e1b150ff0775092d2a44a1a","gitHead":"b5d32b30028220a4b7819bb24882922f75452ec9","scripts":{"tsc":"tsc","tsd":"tsd install","test":"karma start karma.conf.js","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w","prepublish":"npm install tsd@^0.6.5 && tsd reinstall --overwrite && tsc && gulp build"},"typings":"build/lib/core.d.ts","_npmUser":{"name":"anonymous","email":"briantford@gmail.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"3.7.0","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"5.5.0","dependencies":{"es6-promise":"^3.0.2"},"devDependencies":{"tsd":"^0.6.5","gulp":"^3.8.11","karma":"^0.13.14","webpack":"^1.12.2","gulp-util":"^3.0.7","ts-loader":"^0.6.0","typescript":"^1.7.3","gulp-rename":"^1.2.2","gulp-uglify":"^1.2.0","jasmine-core":"^2.2.0","vinyl-buffer":"^1.0.0","karma-jasmine":"^0.3.6","karma-webpack":"^1.7.0","nodejs-websocket":"^1.2.0","vinyl-source-stream":"^1.1.0","karma-sauce-launcher":"^0.2.10","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6"},"_npmOperationalInternal":{"tmp":"tmp/zone.js-0.5.14.tgz_1455149552598_0.40585667197592556","host":"packages-5-east.internal.npmjs.com"}},"0.5.15":{"name":"zone.js","version":"0.5.15","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.5.15","maintainers":[{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"f195b56ad0b7874c3060c3a5e61b4e234ea1b059","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.5.15.tgz","integrity":"sha512-pdJgxJ20CZNUk+9L9X3FmV5gPv7GZVVHyrvYHaTco0/I4u1ych/kXCIP8uXoeqsrPUmj2Pa4RgNTHRwVPHtWSw==","signatures":[{"sig":"MEYCIQDJVNG+WOLfVsdl7XGAvfF3nDKYEhJGrdhag+/Jsdx+FwIhAMNXftoGPXSpQHAOYxV33f7NifOt4RH+GjWtSedKIpJo","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"build/lib/zone.js","_from":".","files":["lib","build","dist"],"_shasum":"f195b56ad0b7874c3060c3a5e61b4e234ea1b059","gitHead":"45a6bc1eaf23069d49c1f3e56d0b65b8b4118545","scripts":{"tsc":"tsc","tsd":"tsd install","test":"karma start karma.conf.js","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w","prepublish":"npm install tsd@^0.6.5 && tsd reinstall --overwrite && tsc && gulp build"},"typings":"build/lib/core.d.ts","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"3.6.0","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"5.5.0","dependencies":{"es6-promise":"^3.0.2"},"devDependencies":{"tsd":"^0.6.5","gulp":"^3.8.11","karma":"^0.13.14","webpack":"^1.12.2","gulp-util":"^3.0.7","ts-loader":"^0.6.0","typescript":"^1.7.3","gulp-rename":"^1.2.2","gulp-uglify":"^1.2.0","jasmine-core":"^2.2.0","vinyl-buffer":"^1.0.0","karma-jasmine":"^0.3.6","karma-webpack":"^1.7.0","nodejs-websocket":"^1.2.0","vinyl-source-stream":"^1.1.0","karma-sauce-launcher":"^0.2.10","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6"},"_npmOperationalInternal":{"tmp":"tmp/zone.js-0.5.15.tgz_1455740974441_0.9904157132841647","host":"packages-5-east.internal.npmjs.com"}},"0.6.0":{"name":"zone.js","version":"0.6.0","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.6.0","maintainers":[{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"6b104415f71cdbf873b26bf45f97ec3e6944ed77","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.6.0.tgz","integrity":"sha512-9V88oZT8Nltnq0jLLIpiHtGaMUC5smIYu5WtG+eXnkEFctC2cT9xh+AI6LY8Owd7b1v3Y+HiFkuyE/Q0hF8BDQ==","signatures":[{"sig":"MEUCIQCW8u3FOD0V3J15xtHepamx0jIxStHpEfZmb6oy2/x+HAIgHuazE+r6pQoGm/P29SPTLl+liW8WZFvTNx02Ap/3hqY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/zone.js","_from":".","files":["lib","dist"],"_shasum":"6b104415f71cdbf873b26bf45f97ec3e6944ed77","gitHead":"63d4552bed2850d5610e1a13dfb728c14651184f","scripts":{"tsc":"tsc","test":"karma start karma.conf.js","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w","prepublish":"tsc && gulp build","postinstall":"typings install"},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"3.7.3","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"5.5.0","dependencies":{"es6-promise":"^3.0.2"},"devDependencies":{"gulp":"^3.8.11","karma":"^0.13.14","typings":"^0.6.6","webpack":"^1.12.2","gulp-tsc":"^1.1.4","gulp-util":"^3.0.7","ts-loader":"^0.6.0","typescript":"^1.8.0","gulp-rename":"^1.2.2","gulp-uglify":"^1.2.0","jasmine-core":"^2.2.0","vinyl-buffer":"^1.0.0","karma-jasmine":"^0.3.6","karma-webpack":"^1.7.0","nodejs-websocket":"^1.2.0","vinyl-source-stream":"^1.1.0","karma-sauce-launcher":"^0.2.10","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6"},"_npmOperationalInternal":{"tmp":"tmp/zone.js-0.6.0.tgz_1456772378551_0.5118504366837442","host":"packages-5-east.internal.npmjs.com"}},"0.6.1":{"name":"zone.js","version":"0.6.1","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.6.1","maintainers":[{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"1e27786fbb049ad7849dc4ddbc1d61db88402861","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.6.1.tgz","integrity":"sha512-lbnvm5R8NCMH/5dhpQdsLC+ePW6JWfo1II5MV8Rtr1/8zE9yES4XvzAYzOPFhTtZW+fNRWNWpcsl7SGeWTDT0g==","signatures":[{"sig":"MEUCIQDhohWus7zlH9RZR2YjSf2eA4fwiJcxQONDuU3j1qfzngIgXmtsncKjBaHfG3xji2o06u0GWGjtKk3jmH3KrTWuKYM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/zone.js","_from":".","files":["lib","dist"],"_shasum":"1e27786fbb049ad7849dc4ddbc1d61db88402861","gitHead":"bee8a60d918fd6d737f8f525cb8d886f69bf06af","scripts":{"tsc":"tsc","test":"karma start karma.conf.js","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w","typings":"typings install","prepublish":"tsc && gulp build"},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"3.7.3","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"5.5.0","dependencies":{},"devDependencies":{"gulp":"^3.8.11","karma":"^0.13.14","typings":"^0.6.6","webpack":"^1.12.2","gulp-tsc":"^1.1.4","gulp-util":"^3.0.7","ts-loader":"^0.6.0","typescript":"^1.8.0","es6-promise":"^3.0.2","gulp-rename":"^1.2.2","gulp-uglify":"^1.2.0","jasmine-core":"^2.2.0","vinyl-buffer":"^1.0.0","karma-jasmine":"^0.3.6","karma-webpack":"^1.7.0","nodejs-websocket":"^1.2.0","vinyl-source-stream":"^1.1.0","karma-sauce-launcher":"^0.2.10","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6"},"_npmOperationalInternal":{"tmp":"tmp/zone.js-0.6.1.tgz_1456777057358_0.24624872603453696","host":"packages-9-west.internal.npmjs.com"}},"0.6.2":{"name":"zone.js","version":"0.6.2","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.6.2","maintainers":[{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"f5c2a283e4aa7de26ccede1a65eff02cfca7419b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.6.2.tgz","integrity":"sha512-xN9I+mbiHIA+D8s2glfG6RrDIk84IvbOhPfwI0ssX39bviClQIor4MYT2B5JeT5mx+ZySCSpEP4cpyvOCvJBmA==","signatures":[{"sig":"MEQCIHc3MhPpRuX6UbQXMJ44eozR4X5KXQ2+8K1fZs1Z101EAiBlCv5qo+S2HRRXPgg6HjNDxfRJXlSkEPcs7UKXp3/bxQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/zone.js","_from":".","files":["lib","dist"],"_shasum":"f5c2a283e4aa7de26ccede1a65eff02cfca7419b","gitHead":"44b5ee4c602ac2e8cbc4d14209a0a7f45f989232","scripts":{"tsc":"tsc","test":"karma start karma.conf.js","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w","typings":"typings install","prepublish":"typings install && ./node_modules/.bin/tsc && gulp build"},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"3.7.3","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"5.5.0","dependencies":{},"devDependencies":{"gulp":"^3.8.11","karma":"^0.13.14","typings":"^0.6.6","webpack":"^1.12.2","gulp-tsc":"^1.1.4","gulp-util":"^3.0.7","ts-loader":"^0.6.0","typescript":"^1.8.0","es6-promise":"^3.0.2","gulp-rename":"^1.2.2","gulp-uglify":"^1.2.0","jasmine-core":"^2.2.0","vinyl-buffer":"^1.0.0","karma-jasmine":"^0.3.6","karma-webpack":"^1.7.0","nodejs-websocket":"^1.2.0","vinyl-source-stream":"^1.1.0","karma-sauce-launcher":"^0.2.10","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6"},"_npmOperationalInternal":{"tmp":"tmp/zone.js-0.6.2.tgz_1456976589824_0.26319712214171886","host":"packages-13-west.internal.npmjs.com"}},"0.6.3":{"name":"zone.js","version":"0.6.3","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.6.3","maintainers":[{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"9e60976e3198acf6a70388b6f401dc8e5ed08b43","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.6.3.tgz","integrity":"sha512-sarOQt1hHZmHjVTUMHYD54YpFIcbZ9BH0rexFygJPgCtnIEZ0kuBnK6iF5hhSJGrqjHNMxnxO1jLTE4lfAdbQQ==","signatures":[{"sig":"MEYCIQC9OJYYvnA5TlKdLDYRhldgrUUPcTaukbceIJ+FrFoILwIhAJYNcuLSss7r2+IEqqHi3WnYXqeOGGdJ7Oaw3tmTVV0r","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/zone.js","_from":".","files":["lib","dist"],"_shasum":"9e60976e3198acf6a70388b6f401dc8e5ed08b43","gitHead":"4eb12c741d23062a662d2347ceaf1afce78e7b0d","scripts":{"tsc":"tsc","test":"karma start karma.conf.js","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w","typings":"typings install","prepublish":"typings install && ./node_modules/.bin/tsc && gulp build"},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"3.7.3","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"5.5.0","dependencies":{},"devDependencies":{"gulp":"^3.8.11","karma":"^0.13.14","typings":"^0.6.6","webpack":"^1.12.2","gulp-tsc":"^1.1.4","gulp-util":"^3.0.7","ts-loader":"^0.6.0","typescript":"^1.8.0","es6-promise":"^3.0.2","gulp-rename":"^1.2.2","gulp-uglify":"^1.2.0","jasmine-core":"^2.2.0","vinyl-buffer":"^1.0.0","karma-jasmine":"^0.3.6","karma-webpack":"^1.7.0","nodejs-websocket":"^1.2.0","vinyl-source-stream":"^1.1.0","karma-sauce-launcher":"^0.2.10","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6"},"_npmOperationalInternal":{"tmp":"tmp/zone.js-0.6.3.tgz_1457999958442_0.19400548562407494","host":"packages-13-west.internal.npmjs.com"}},"0.6.4":{"name":"zone.js","version":"0.6.4","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.6.4","maintainers":[{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"e74f0fa4e4cec51edd0c1888fad83fe34ed9e4a6","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.6.4.tgz","integrity":"sha512-TJUaTbnTT598Zok4zafiShX1Pkko/uJUqITEWpBu2z91etCoUda+5sq85J0X3SkoQoiRoM3ZLED3ZUuDJOe0/g==","signatures":[{"sig":"MEUCIFIqGPCdDu8juNhpqURtYshveKF+WS7JOHeKvaoZ4OHwAiEA3vsd+JcjruFs4ilsMm+u0/ylro6Apj7ikndc3093/2s=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/zone.js","_from":".","files":["lib","dist"],"_shasum":"e74f0fa4e4cec51edd0c1888fad83fe34ed9e4a6","gitHead":"c20c6e4183f658362222bcd74721584fbc2dba9e","scripts":{"tsc":"tsc","test":"karma start karma.conf.js","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w","typings":"typings install","prepublish":"typings install && ./node_modules/.bin/tsc && gulp build"},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"3.7.3","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"5.5.0","dependencies":{},"devDependencies":{"gulp":"^3.8.11","karma":"^0.13.14","typings":"^0.6.6","webpack":"^1.12.2","gulp-tsc":"^1.1.4","gulp-util":"^3.0.7","ts-loader":"^0.6.0","typescript":"^1.8.0","es6-promise":"^3.0.2","gulp-rename":"^1.2.2","gulp-uglify":"^1.2.0","jasmine-core":"^2.2.0","vinyl-buffer":"^1.0.0","karma-jasmine":"^0.3.6","karma-webpack":"^1.7.0","nodejs-websocket":"^1.2.0","vinyl-source-stream":"^1.1.0","karma-sauce-launcher":"^0.2.10","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6"},"_npmOperationalInternal":{"tmp":"tmp/zone.js-0.6.4.tgz_1458000129663_0.7412144422996789","host":"packages-13-west.internal.npmjs.com"}},"0.6.5":{"name":"zone.js","version":"0.6.5","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.6.5","maintainers":[{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"d85a28f21c4225dd2b46f68af6eed991344ad6e1","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.6.5.tgz","integrity":"sha512-W6XbEF6LdB4QdpNkzRml593IwNGVz7oT6VusxIw4scyxCuYOpgjVp0D0FehMwpGKOtyVvPollpc1ySxhLx95kw==","signatures":[{"sig":"MEQCIHoROqXLwV5gypE5BSzIDYhIBd74FVPE6ECCBy9ZJ4zUAiBwNl8lzpeY4ia74f1SNY/49tmoRi9eHnkcpF5C8QWRXg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/zone-node.js","_from":".","files":["lib","dist"],"_shasum":"d85a28f21c4225dd2b46f68af6eed991344ad6e1","browser":"dist/zone.js","gitHead":"9b3e77988a54824ee97a3277cc192ab442cdb788","scripts":{"tsc":"tsc","test":"karma start karma.conf.js","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w","typings":"typings install","prepublish":"typings install && ./node_modules/.bin/tsc && gulp build"},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"3.7.3","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"5.5.0","dependencies":{},"devDependencies":{"gulp":"^3.8.11","karma":"^0.13.14","typings":"^0.6.6","webpack":"^1.12.2","gulp-tsc":"^1.1.4","gulp-util":"^3.0.7","ts-loader":"^0.6.0","typescript":"^1.8.0","es6-promise":"^3.0.2","gulp-rename":"^1.2.2","gulp-uglify":"^1.2.0","jasmine-core":"^2.2.0","vinyl-buffer":"^1.0.0","karma-jasmine":"^0.3.6","karma-webpack":"^1.7.0","nodejs-websocket":"^1.2.0","vinyl-source-stream":"^1.1.0","karma-sauce-launcher":"^0.2.10","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6"},"_npmOperationalInternal":{"tmp":"tmp/zone.js-0.6.5.tgz_1458590580469_0.0684927289839834","host":"packages-12-west.internal.npmjs.com"}},"0.6.6":{"name":"zone.js","version":"0.6.6","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.6.6","maintainers":[{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"003ea8d9a8921862fac19811a8c4b1d90bb764a4","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.6.6.tgz","integrity":"sha512-174okTVN2bskKhr3HVsMTINQeCGnxrebXGV9UlmDv9sErgQGW20Skb3h0hpjpNOj7NJQimjB4dqXLBM+YkTYSw==","signatures":[{"sig":"MEUCIQC/VMsG7EpspqgJhrD/6CmN8cjNsUvexjfXO6xk5KzG6QIgFhypLKI71Ko1ylgpU4Ucc2LBMhUG3fdTfLqcm/EEpjk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/zone-node.js","_from":".","files":["lib","dist"],"_shasum":"003ea8d9a8921862fac19811a8c4b1d90bb764a4","browser":"dist/zone.js","gitHead":"52073b2dba01a5bc16eb888a3af563e3af7cdb39","scripts":{"tsc":"tsc","test":"karma start karma.conf.js","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w","typings":"typings install","prepublish":"typings install && ./node_modules/.bin/tsc && gulp build"},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"3.7.3","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"5.5.0","dependencies":{},"devDependencies":{"gulp":"^3.8.11","karma":"^0.13.14","typings":"^0.6.6","webpack":"^1.12.2","gulp-tsc":"^1.1.4","gulp-util":"^3.0.7","ts-loader":"^0.6.0","typescript":"^1.8.0","es6-promise":"^3.0.2","gulp-rename":"^1.2.2","gulp-uglify":"^1.2.0","jasmine-core":"^2.2.0","vinyl-buffer":"^1.0.0","karma-jasmine":"^0.3.6","karma-webpack":"^1.7.0","nodejs-websocket":"^1.2.0","vinyl-source-stream":"^1.1.0","karma-sauce-launcher":"^0.2.10","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6"},"_npmOperationalInternal":{"tmp":"tmp/zone.js-0.6.6.tgz_1458761048012_0.9044781001284719","host":"packages-13-west.internal.npmjs.com"}},"0.6.8":{"name":"zone.js","version":"0.6.8","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.6.8","maintainers":[{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"2717d71ad94aad902a18b77e86953fe2b6717a47","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.6.8.tgz","integrity":"sha512-ZfBY2hZ+B1+HM95nJsRxyCyB4X0ulM2Pqph4r3VwdhAuChvJs6Zpi0vIrF/sfMPlSNUuFxYs3F9k7oV7G7YnZw==","signatures":[{"sig":"MEUCIQDfYjzJy7JHV3WUvWmLI6sIS6zBis1tLuoGPxMxjr3n1gIgHgrQY/25hU2yVOywYq9OqxiW4/lh8tHRWzqIaTjzyDs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/zone-node.js","_from":".","files":["lib","dist"],"_shasum":"2717d71ad94aad902a18b77e86953fe2b6717a47","browser":"dist/zone.js","gitHead":"586dffe08da86f3994b0fcc7fbdf7f3f98aa6009","scripts":{"tsc":"tsc","test":"karma start karma.conf.js","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w","typings":"typings install","prepublish":"typings install && ./node_modules/.bin/tsc && gulp build"},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"3.7.3","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"5.5.0","dependencies":{},"devDependencies":{"gulp":"^3.8.11","karma":"^0.13.14","typings":"^0.6.6","webpack":"^1.12.2","gulp-tsc":"^1.1.4","gulp-util":"^3.0.7","ts-loader":"^0.6.0","typescript":"^1.8.0","es6-promise":"^3.0.2","gulp-rename":"^1.2.2","gulp-uglify":"^1.2.0","jasmine-core":"^2.2.0","vinyl-buffer":"^1.0.0","karma-jasmine":"^0.3.6","karma-webpack":"^1.7.0","nodejs-websocket":"^1.2.0","vinyl-source-stream":"^1.1.0","karma-sauce-launcher":"^0.2.10","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6"},"_npmOperationalInternal":{"tmp":"tmp/zone.js-0.6.8.tgz_1459272973740_0.7277568592689931","host":"packages-12-west.internal.npmjs.com"}},"0.6.9":{"name":"zone.js","version":"0.6.9","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.6.9","maintainers":[{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"eb7b3792bba2f69ea51dd42c0bf828805f38edb9","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.6.9.tgz","integrity":"sha512-lpp6Igt1WpV6CLZboOczxd3SCAQgfKaDDAEZQ7bbVfLuMkZRsM5XcsJ1x0B+s9NJ52ElJDlX1+nYLHAMFitq1g==","signatures":[{"sig":"MEQCIGbfTFd1/O7RRK25F5dxJ9hGRs1/TTfov0FonmVxX/C3AiBoFOyFm8pqOd8rd2qDmr88Dq+OB8IYrDpqc0Fz56utYw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/zone-node.js","_from":".","files":["lib","dist"],"_shasum":"eb7b3792bba2f69ea51dd42c0bf828805f38edb9","browser":"dist/zone.js","gitHead":"1929c0d79dd7339db4023c41204d2684744d50bb","scripts":{"tsc":"tsc","test":"karma start karma.conf.js","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w","typings":"typings install","prepublish":"typings install && ./node_modules/.bin/tsc && gulp build"},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"3.6.0","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"5.5.0","dependencies":{},"devDependencies":{"gulp":"^3.8.11","karma":"^0.13.14","typings":"^0.6.6","webpack":"^1.12.2","gulp-tsc":"^1.1.4","gulp-util":"^3.0.7","ts-loader":"^0.6.0","typescript":"^1.8.0","es6-promise":"^3.0.2","gulp-rename":"^1.2.2","gulp-uglify":"^1.2.0","jasmine-core":"^2.2.0","vinyl-buffer":"^1.0.0","karma-jasmine":"^0.3.6","karma-webpack":"^1.7.0","nodejs-websocket":"^1.2.0","vinyl-source-stream":"^1.1.0","karma-sauce-launcher":"^0.2.10","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6"},"_npmOperationalInternal":{"tmp":"tmp/zone.js-0.6.9.tgz_1459809420001_0.4321047938428819","host":"packages-12-west.internal.npmjs.com"}},"0.6.10":{"name":"zone.js","version":"0.6.10","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.6.10","maintainers":[{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"2475ab3d195213d8baef3b14dafd96f34798786c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.6.10.tgz","integrity":"sha512-pdXoHZphXLqgjfmSHTEaUDdrdqCr4/r2dOqQHY99LXssYx1W5UomSdxDMn/SreMjtD0poia/FKU9URkIoRRfOA==","signatures":[{"sig":"MEUCIQDzqhHy7HpC1rJ/1YriOyfxISbNsT/w0F93ByTHpjZPiQIgK5IkCB+akfMXemvb2LfmDHc+bGPYPfARLO9i6cFu5X0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/zone-node.js","_from":".","files":["lib","dist"],"_shasum":"2475ab3d195213d8baef3b14dafd96f34798786c","browser":"dist/zone.js","gitHead":"96176b6057eb05d22f06def74810441e0522c323","scripts":{"tsc":"tsc","test":"karma start karma.conf.js","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w","typings":"typings install","prepublish":"typings install && ./node_modules/.bin/tsc && gulp build"},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"3.6.0","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"5.5.0","dependencies":{},"devDependencies":{"gulp":"^3.8.11","karma":"^0.13.14","typings":"^0.6.6","webpack":"^1.12.2","gulp-tsc":"^1.1.4","gulp-util":"^3.0.7","ts-loader":"^0.6.0","typescript":"^1.8.0","es6-promise":"^3.0.2","gulp-rename":"^1.2.2","gulp-uglify":"^1.2.0","jasmine-core":"^2.2.0","vinyl-buffer":"^1.0.0","karma-jasmine":"^0.3.6","karma-webpack":"^1.7.0","nodejs-websocket":"^1.2.0","vinyl-source-stream":"^1.1.0","karma-sauce-launcher":"^0.2.10","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6"},"_npmOperationalInternal":{"tmp":"tmp/zone.js-0.6.10.tgz_1460058320040_0.5025115420576185","host":"packages-12-west.internal.npmjs.com"}},"0.6.11":{"name":"zone.js","version":"0.6.11","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.6.11","maintainers":[{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"5beeec8fdc43cc0a196246c1e1650e402ba0a56a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.6.11.tgz","integrity":"sha512-/SRnL/KfSzHB1oqQvVuRywh1VkIDUN2QEnEbooLgDugriLZ5tSCgPDX/7+p79tzpJLGkY2VtX1l9lhkuMt0VYQ==","signatures":[{"sig":"MEQCIE53NKBQEEM/xkUWks6F1SmpoAVFE/5sIweWyupy5uKgAiBm8bRaXdGiLCMz6nTUAgM1ElkHIQb3KrrxEKH7cBt7mw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/zone-node.js","_from":".","files":["lib","dist"],"_shasum":"5beeec8fdc43cc0a196246c1e1650e402ba0a56a","browser":"dist/zone.js","gitHead":"ebd452619423f4df28c12337581b11a038b227f6","scripts":{"tsc":"tsc","test":"karma start karma.conf.js","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w","typings":"typings install","test-node":"gulp test/node","ws-server":"node ./test/ws-server.js","prepublish":"typings install && ./node_modules/.bin/tsc && gulp build"},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"3.6.0","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"5.5.0","dependencies":{},"devDependencies":{"gulp":"^3.8.11","karma":"^0.13.14","jasmine":"^2.4.1","typings":"^0.7.12","webpack":"^1.12.2","gulp-tsc":"^1.1.4","gulp-util":"^3.0.7","ts-loader":"^0.6.0","typescript":"^1.8.0","es6-promise":"^3.0.2","gulp-rename":"^1.2.2","gulp-uglify":"^1.2.0","jasmine-core":"^2.2.0","karma-jasmine":"^0.3.6","karma-webpack":"^1.7.0","nodejs-websocket":"^1.2.0","karma-sauce-launcher":"^0.2.10","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6"},"_npmOperationalInternal":{"tmp":"tmp/zone.js-0.6.11.tgz_1460594082942_0.9987629584502429","host":"packages-16-east.internal.npmjs.com"}},"0.6.12":{"name":"zone.js","version":"0.6.12","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.6.12","maintainers":[{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"346aa83f4e5093fb98b31c241f4daed9290accee","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.6.12.tgz","integrity":"sha512-h0vQYApZxs+lSUTsMooU02mRifL1K6nd+ks1KTdw714tbavUijYAz8VF98OAidPK/MyEfdMblkLBHZ2apYgYig==","signatures":[{"sig":"MEQCIHhwbgX7kzOZZc3VFcIy6EilQaEI9SrgcYx9zZSJL4m1AiA1bafEFP0+R9+5FH6aDIj5a9g9nx8k9eFqyKXwfZ3BfA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/zone-node.js","_from":".","files":["lib","dist"],"_shasum":"346aa83f4e5093fb98b31c241f4daed9290accee","browser":"dist/zone.js","gitHead":"5f366a1ca0ee00046375a25af25105fb5e66da24","scripts":{"tsc":"tsc","test":"karma start karma.conf.js","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w","typings":"typings install","test-node":"gulp test/node","ws-server":"node ./test/ws-server.js","prepublish":"typings install && ./node_modules/.bin/tsc && gulp build"},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"3.6.0","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"5.5.0","dependencies":{},"devDependencies":{"gulp":"^3.8.11","karma":"^0.13.14","jasmine":"^2.4.1","typings":"^0.7.12","webpack":"^1.12.2","gulp-tsc":"^1.1.4","gulp-util":"^3.0.7","ts-loader":"^0.6.0","typescript":"^1.8.0","es6-promise":"^3.0.2","gulp-rename":"^1.2.2","gulp-uglify":"^1.2.0","jasmine-core":"^2.2.0","karma-jasmine":"^0.3.6","karma-webpack":"^1.7.0","nodejs-websocket":"^1.2.0","karma-sauce-launcher":"^0.2.10","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6"},"_npmOperationalInternal":{"tmp":"tmp/zone.js-0.6.12.tgz_1461108132653_0.6872482218313962","host":"packages-16-east.internal.npmjs.com"}},"0.6.13":{"name":"zone.js","version":"0.6.13","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.6.13","maintainers":[{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"1089e7711e7dc55a4bf30a32ce0cdfd3eb1a18de","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.6.13.tgz","integrity":"sha512-B1KohCvjhTMwgwWYkRAHZdmWKTw4y3TxwoXf2f0AaDH+rPFo2VxM49GYH6P5iZfodfbM4H44b9QIlg4MLKXwEw==","signatures":[{"sig":"MEUCIQDaY1lNV1bAuFj/xTHNel+/6bRat0KMjEAq4tIQTwmfTQIgblKiq0RztCmdqGIyCdrBuRduM5LomaQzulsBlLODbJw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/zone-node.js","_from":".","files":["lib","dist"],"_shasum":"1089e7711e7dc55a4bf30a32ce0cdfd3eb1a18de","browser":"dist/zone.js","gitHead":"18835899b8f7e3662298b812e889f2f20ffb27d1","scripts":{"tsc":"tsc","test":"karma start karma.conf.js","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w","typings":"typings install","test-node":"gulp test/node","ws-server":"node ./test/ws-server.js","prepublish":"typings install && ./node_modules/.bin/tsc && gulp build"},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"3.10.3","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"6.3.1","dependencies":{},"devDependencies":{"gulp":"^3.8.11","karma":"^0.13.14","jasmine":"^2.4.1","typings":"^0.7.12","webpack":"^1.12.2","gulp-tsc":"^1.1.4","gulp-util":"^3.0.7","ts-loader":"^0.6.0","typescript":"^1.8.0","es6-promise":"^3.0.2","gulp-rename":"^1.2.2","gulp-uglify":"^1.2.0","jasmine-core":"^2.2.0","karma-jasmine":"^0.3.6","karma-webpack":"^1.7.0","nodejs-websocket":"^1.2.0","karma-sauce-launcher":"^0.2.10","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6"},"_npmOperationalInternal":{"tmp":"tmp/zone.js-0.6.13.tgz_1471288821121_0.5448171289172024","host":"packages-12-west.internal.npmjs.com"}},"0.6.14":{"name":"zone.js","version":"0.6.14","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.6.14","maintainers":[{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"1478a8ecd883499615b54cfca090436792e66702","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.6.14.tgz","integrity":"sha512-qhJw1W35sKSfLISHvFjZFJFKZfZ9KMke1ucHpBLZSXhRYtCLwX5By/vSLF/PidbhjB1+1u8tUfvdCmGoo9mkJg==","signatures":[{"sig":"MEYCIQCiTGAGdABrYr4DBdvjS0eGzn+FOOM7Lt6vywBuH9sLlgIhAPAAAwuCVps+duLAYbMYJ61B6bmh2R1hjcdmCZiAdk4X","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/zone-node.js","_from":".","files":["lib","dist"],"_shasum":"1478a8ecd883499615b54cfca090436792e66702","browser":"dist/zone.js","gitHead":"76acf6ed9028a0895af55db36c2a872362f98dad","scripts":{"tsc":"tsc","test":"karma start karma.conf.js","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w","typings":"typings install","test-node":"gulp test/node","ws-server":"node ./test/ws-server.js","prepublish":"typings install && ./node_modules/.bin/tsc && gulp build"},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"3.10.3","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"6.3.1","dependencies":{},"devDependencies":{"gulp":"^3.8.11","karma":"^0.13.14","jasmine":"^2.4.1","typings":"^0.7.12","webpack":"^1.12.2","gulp-tsc":"^1.1.4","gulp-util":"^3.0.7","ts-loader":"^0.6.0","typescript":"^1.8.0","es6-promise":"^3.0.2","gulp-rename":"^1.2.2","gulp-uglify":"^1.2.0","jasmine-core":"^2.2.0","karma-jasmine":"^0.3.6","karma-webpack":"^1.7.0","nodejs-websocket":"^1.2.0","karma-sauce-launcher":"^0.2.10","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6"},"_npmOperationalInternal":{"tmp":"tmp/zone.js-0.6.14.tgz_1471407119553_0.05013800202868879","host":"packages-12-west.internal.npmjs.com"}},"0.6.15":{"name":"zone.js","version":"0.6.15","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.6.15","maintainers":[{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"e30be380c89dc8de3f70b7f599bb55882e6fd328","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.6.15.tgz","integrity":"sha512-1/A5YS9Wn0uOUcGWGjmvx5px8LsByVzb/TiIOgXSA8FbXInGEclvC27m8wTqOHV+BS1rRwWBGLc6h08AmDI4Ng==","signatures":[{"sig":"MEUCIHuDooIy1g6zNP3Em7soeJOoo4Uora0Ba6dOrcBvnx9HAiEA+Njz49utnUtnoRr4JgPAMUXRHfV56wKNp1chV7VCmT8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/zone-node.js","_from":".","files":["lib","dist"],"_shasum":"e30be380c89dc8de3f70b7f599bb55882e6fd328","browser":"dist/zone.js","gitHead":"02a41c0a04f1cdd032915448652cf2dd48893fbc","scripts":{"tsc":"tsc","test":"karma start karma.conf.js","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w","typings":"typings install","test-node":"gulp test/node","ws-server":"node ./test/ws-server.js","prepublish":"typings install && ./node_modules/.bin/tsc && gulp build"},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"3.7.3","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"5.5.0","dependencies":{},"devDependencies":{"gulp":"^3.8.11","karma":"^0.13.14","jasmine":"^2.4.1","typings":"^0.7.12","webpack":"^1.12.2","gulp-tsc":"^1.1.4","gulp-util":"^3.0.7","ts-loader":"^0.6.0","typescript":"^1.8.0","es6-promise":"^3.0.2","gulp-rename":"^1.2.2","gulp-uglify":"^1.2.0","jasmine-core":"^2.2.0","karma-jasmine":"^0.3.6","karma-webpack":"^1.7.0","nodejs-websocket":"^1.2.0","karma-sauce-launcher":"^0.2.10","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6"},"_npmOperationalInternal":{"tmp":"tmp/zone.js-0.6.15.tgz_1471627240048_0.9166294175665826","host":"packages-16-east.internal.npmjs.com"}},"0.6.16":{"name":"zone.js","version":"0.6.16","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.6.16","maintainers":[{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"0fd87d2200c6e506df7ea3ce2f6fdea4cf37267c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.6.16.tgz","integrity":"sha512-E21QfexIsI8idVOI8L+Ta+QxaPZ5N+vHzcIgUt2pNDjQZXbaD4u8WHcz6HRDKVsezw7Vkz0bq6XEuXyQcC+4Pw==","signatures":[{"sig":"MEYCIQDfINbeLO8jwHnFb+lPIQXdMymjWXB5HMiq0RWbV1hqawIhAN/2M6pYp3eXnz/lkuBcndLAmBRqjUt5Kh0tZtrUX/Gd","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/zone-node.js","_from":".","files":["lib","dist"],"_shasum":"0fd87d2200c6e506df7ea3ce2f6fdea4cf37267c","browser":"dist/zone.js","gitHead":"55f815017df6bbda23eb0d1f61795f6f0412f51e","scripts":{"tsc":"tsc","test":"karma start karma.conf.js","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w","typings":"typings install","test-node":"gulp test/node","ws-server":"node ./test/ws-server.js","prepublish":"typings install && ./node_modules/.bin/tsc && gulp build"},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"3.7.3","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"5.5.0","dependencies":{},"devDependencies":{"gulp":"^3.8.11","karma":"^0.13.14","jasmine":"^2.4.1","typings":"^0.7.12","webpack":"^1.12.2","gulp-tsc":"^1.1.4","gulp-util":"^3.0.7","ts-loader":"^0.6.0","typescript":"^1.8.0","es6-promise":"^3.0.2","gulp-rename":"^1.2.2","gulp-uglify":"^1.2.0","jasmine-core":"^2.2.0","karma-jasmine":"^0.3.6","karma-webpack":"^1.7.0","nodejs-websocket":"^1.2.0","karma-sauce-launcher":"^0.2.10","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6"},"_npmOperationalInternal":{"tmp":"tmp/zone.js-0.6.16.tgz_1471886987621_0.639723364263773","host":"packages-16-east.internal.npmjs.com"}},"0.6.17":{"name":"zone.js","version":"0.6.17","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.6.17","maintainers":[{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"65ecd9b4330026911416250cb1b716472e3cbd62","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.6.17.tgz","integrity":"sha512-CtujILPX+W0yBF7lCzvYV9uIFqCc4HbMxjDhphS0NBLkjpNIztCGh/qP5czb1M0jtg2tPWj3nxsD373wlqvIyg==","signatures":[{"sig":"MEQCIDo0qH5pCNCWqhXXmOddkJr/zSveW4RP3ZZxyJNHWzNZAiAXTeJ4cWqCsBbgrz33kq8AyYuiTsvxcy8eO3ufzQjrQw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/zone-node.js","_from":".","files":["lib","dist"],"_shasum":"65ecd9b4330026911416250cb1b716472e3cbd62","browser":"dist/zone.js","gitHead":"f57fc1870bfbbe36566d2f6acfa435fea63617d4","scripts":{"tsc":"tsc","test":"karma start karma.conf.js","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w","typings":"typings install","test-node":"gulp test/node","ws-server":"node ./test/ws-server.js","prepublish":"typings install && ./node_modules/.bin/tsc && gulp build"},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"3.7.3","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"5.5.0","dependencies":{},"devDependencies":{"gulp":"^3.8.11","karma":"^0.13.14","jasmine":"^2.4.1","typings":"^0.7.12","webpack":"^1.12.2","gulp-tsc":"^1.1.4","gulp-util":"^3.0.7","ts-loader":"^0.6.0","typescript":"^1.8.0","es6-promise":"^3.0.2","gulp-rename":"^1.2.2","gulp-uglify":"^1.2.0","jasmine-core":"^2.2.0","karma-jasmine":"^0.3.6","karma-webpack":"^1.7.0","nodejs-websocket":"^1.2.0","karma-sauce-launcher":"^0.2.10","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6"},"_npmOperationalInternal":{"tmp":"tmp/zone.js-0.6.17.tgz_1471905710093_0.10680312826298177","host":"packages-16-east.internal.npmjs.com"}},"0.6.18":{"name":"zone.js","version":"0.6.18","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.6.18","maintainers":[{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"5f7b8c523171325d9df5e0f0da86faba81158e0c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.6.18.tgz","integrity":"sha512-vfggyT2tvP6QM6yrvAMvwIlN1NXz4zuPYSc457viAXhLeLSsvt+65K7uscnovDsAhHoGjsAj3VkqnJG5UoPFUg==","signatures":[{"sig":"MEYCIQD9asUu653vYlJQzMcoPmbaP4/2I2/R13CZ7DHHWCkf1QIhAP8eyLeg6V0Tq37ZjZFOpmwlIVYWygf3pCiDfL8+uola","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/zone-node.js","_from":".","files":["lib","dist"],"_shasum":"5f7b8c523171325d9df5e0f0da86faba81158e0c","browser":"dist/zone.js","gitHead":"1f6b81ac66046eab95df79aef027e3db271fb525","scripts":{"tsc":"tsc","test":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma.conf.js\"","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w","test-node":"gulp test/node","ws-server":"node ./test/ws-server.js","prepublish":"tsc && gulp build"},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"3.7.3","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"5.5.0","dependencies":{},"devDependencies":{"gulp":"^3.8.11","pump":"^1.0.1","karma":"^0.13.14","jasmine":"^2.4.1","gulp-tsc":"^1.1.4","systemjs":"^0.19.37","gulp-util":"^3.0.7","ts-loader":"^0.6.0","typescript":"^2.0.2","@types/node":"^6.0.38","es6-promise":"^3.0.2","gulp-rename":"^1.2.2","gulp-rollup":"^2.3.0","gulp-uglify":"^1.2.0","concurrently":"^2.2.0","jasmine-core":"^2.2.0","karma-jasmine":"^0.3.6","karma-webpack":"^1.7.0","@types/jasmine":"^2.2.33","@types/systemjs":"^0.19.30","nodejs-websocket":"^1.2.0","karma-sauce-launcher":"^0.2.10","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6"},"_npmOperationalInternal":{"tmp":"tmp/zone.js-0.6.18.tgz_1473523493217_0.8103204143699259","host":"packages-12-west.internal.npmjs.com"}},"0.6.19":{"name":"zone.js","version":"0.6.19","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.6.19","maintainers":[{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"b285fbfa3c5a434fff02bb087ab2fbd260b59a78","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.6.19.tgz","integrity":"sha512-rzIc32LVb6EvMS5st8rt3SIWLPCG3cuYo1v/4HnoByHWSFBScmjd9eDTk0i8x4vLt/22S3JmNcINAL84RLnz9w==","signatures":[{"sig":"MEUCIQCYJU9jBrJE5nlfaMkUUoCDXpOv6wmPgdUcRCIe4AaHBQIgH2q+kaDe1oZgOYIyHdv7pYg3ch4R8HXirPvSQZGJRUc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/zone-node.js","_from":".","files":["lib","dist"],"_shasum":"b285fbfa3c5a434fff02bb087ab2fbd260b59a78","browser":"dist/zone.js","gitHead":"15d298b877f9da819055dad9d97cd50195c9d9f5","scripts":{"tsc":"tsc","test":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma.conf.js\"","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w","test-node":"gulp test/node","ws-server":"node ./test/ws-server.js","prepublish":"tsc && gulp build"},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"3.7.3","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"5.5.0","dependencies":{},"devDependencies":{"gulp":"^3.8.11","pump":"^1.0.1","karma":"^0.13.14","jasmine":"^2.4.1","gulp-tsc":"^1.1.4","systemjs":"^0.19.37","gulp-util":"^3.0.7","ts-loader":"^0.6.0","typescript":"^2.0.2","@types/node":"^6.0.38","es6-promise":"^3.0.2","gulp-rename":"^1.2.2","gulp-rollup":"^2.3.0","gulp-uglify":"^1.2.0","concurrently":"^2.2.0","jasmine-core":"^2.2.0","karma-jasmine":"^0.3.6","karma-webpack":"^1.7.0","@types/jasmine":"^2.2.33","@types/systemjs":"^0.19.30","nodejs-websocket":"^1.2.0","karma-sauce-launcher":"^0.2.10","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6"},"_npmOperationalInternal":{"tmp":"tmp/zone.js-0.6.19.tgz_1473523576975_0.4284276566468179","host":"packages-12-west.internal.npmjs.com"}},"0.6.20":{"name":"zone.js","version":"0.6.20","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.6.20","maintainers":[{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"c185ac4c99062a7bc69a2cc774a9613f863743f5","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.6.20.tgz","integrity":"sha512-hYGNrS8D2B3EB4TQoDfsuusIalpVNjFbG8F/kfCvfZ3Ggo/I15i0AkWgqo8pTn+omQtfgHI5Ocl2D/sA19FWhw==","signatures":[{"sig":"MEUCIQCTwJjLS//iGXXC8AMDigjMEvKwkBQiNvgiNQMYCIW+NgIgK4xMRcbRAXVsjQeLQ4pmYQfVrTnqXwOdcac1KCqcGcU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/zone-node.js","_from":".","files":["lib","dist"],"_shasum":"c185ac4c99062a7bc69a2cc774a9613f863743f5","browser":"dist/zone.js","gitHead":"2b15b013c70dc27f95742276acd5a391a40f2bb8","scripts":{"tsc":"tsc","test":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma.conf.js\"","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w","test-node":"gulp test/node","ws-server":"node ./test/ws-server.js","prepublish":"tsc && gulp build"},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"3.7.3","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"5.5.0","dependencies":{},"devDependencies":{"gulp":"^3.8.11","pump":"^1.0.1","karma":"^0.13.14","jasmine":"^2.4.1","gulp-tsc":"^1.1.4","systemjs":"^0.19.37","gulp-util":"^3.0.7","ts-loader":"^0.6.0","typescript":"^2.0.2","@types/node":"^6.0.38","es6-promise":"^3.0.2","gulp-rename":"^1.2.2","gulp-rollup":"^2.3.0","gulp-uglify":"^1.2.0","concurrently":"^2.2.0","jasmine-core":"^2.2.0","karma-jasmine":"^0.3.6","karma-webpack":"^1.7.0","@types/jasmine":"^2.2.33","@types/systemjs":"^0.19.30","nodejs-websocket":"^1.2.0","karma-sauce-launcher":"^0.2.10","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6"},"_npmOperationalInternal":{"tmp":"tmp/zone.js-0.6.20.tgz_1473527702636_0.07788319396786392","host":"packages-12-west.internal.npmjs.com"}},"0.6.21":{"name":"zone.js","version":"0.6.21","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.6.21","maintainers":[{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"beebbff30480e6bc975cbbb4eedc750c3080328e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.6.21.tgz","integrity":"sha512-09D+GNN+05uOaa2q+FdQGXy045853Ku/SALIeWKcSp+g1jjjUvREXcgDTL4MKMWxobf9NQUDU+ZbSL4HCNnC0g==","signatures":[{"sig":"MEQCIHPqI89+LO09JZ6eFZLm3ak66MJ/Ny3LWILtvB/wlDU9AiA4knhhdKiU5uFc93msR92ffdDNNIl91kK1OKaDi/uIjw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/zone-node.js","_from":".","files":["lib","dist"],"_shasum":"beebbff30480e6bc975cbbb4eedc750c3080328e","browser":"dist/zone.js","gitHead":"de318ceb2bf640c4fd4c4762f721ba855cfe5d0a","scripts":{"tsc":"tsc","test":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma.conf.js\"","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w","test-node":"gulp test/node","ws-server":"node ./test/ws-server.js","prepublish":"tsc && gulp build"},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"3.7.3","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"5.5.0","dependencies":{},"devDependencies":{"gulp":"^3.8.11","pump":"^1.0.1","karma":"^0.13.14","jasmine":"^2.4.1","gulp-tsc":"^1.1.4","systemjs":"^0.19.37","gulp-util":"^3.0.7","ts-loader":"^0.6.0","typescript":"^2.0.2","@types/node":"^6.0.38","es6-promise":"^3.0.2","gulp-rename":"^1.2.2","gulp-rollup":"^2.3.0","gulp-uglify":"^1.2.0","concurrently":"^2.2.0","jasmine-core":"^2.2.0","karma-jasmine":"^0.3.6","karma-webpack":"^1.7.0","@types/jasmine":"^2.2.33","@types/systemjs":"^0.19.30","nodejs-websocket":"^1.2.0","karma-sauce-launcher":"^0.2.10","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6"},"_npmOperationalInternal":{"tmp":"tmp/zone.js-0.6.21.tgz_1473560851278_0.4516061895992607","host":"packages-16-east.internal.npmjs.com"}},"0.6.22":{"name":"zone.js","version":"0.6.22","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.6.22","maintainers":[{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"729cb66da61e9a57bc17920c2300248c26f92a5a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.6.22.tgz","integrity":"sha512-tVDR9nn22IzL/wq7cHFKmfchngLqbBdEZEBgyIyPvh5NpPruNzCeZed2sPO1Ip0EOl/NK8aI6BoNQFq7gBZkyA==","signatures":[{"sig":"MEQCIHsH1dOPT8SkWgdE8F1X1gPXNWpRLY521W27YxtAF9KwAiBGxAFluMTGmDUvDpj8NTl/bYe3q0VmSeORT9XEWJ9Eug==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/zone-node.js","_from":".","files":["lib","dist"],"_shasum":"729cb66da61e9a57bc17920c2300248c26f92a5a","browser":"dist/zone.js","gitHead":"7a662378b63ce0bc24c40437895796f1d5cea6df","scripts":{"tsc":"tsc","test":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma.conf.js\"","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w","test-node":"gulp test/node","ws-server":"node ./test/ws-server.js","prepublish":"tsc && gulp build"},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"3.7.3","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"5.5.0","dependencies":{},"devDependencies":{"gulp":"^3.8.11","pump":"^1.0.1","karma":"^0.13.14","jasmine":"^2.4.1","gulp-tsc":"^1.1.4","systemjs":"^0.19.37","gulp-util":"^3.0.7","ts-loader":"^0.6.0","typescript":"^2.0.2","@types/node":"^6.0.38","es6-promise":"^3.0.2","gulp-rename":"^1.2.2","gulp-rollup":"^2.3.0","gulp-uglify":"^1.2.0","concurrently":"^2.2.0","jasmine-core":"^2.2.0","karma-jasmine":"^0.3.6","karma-webpack":"^1.7.0","@types/jasmine":"^2.2.33","@types/systemjs":"^0.19.30","nodejs-websocket":"^1.2.0","karma-sauce-launcher":"^0.2.10","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6"},"_npmOperationalInternal":{"tmp":"tmp/zone.js-0.6.22.tgz_1473876198355_0.049344946863129735","host":"packages-12-west.internal.npmjs.com"}},"0.6.23":{"name":"zone.js","version":"0.6.23","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.6.23","maintainers":[{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"78fff1e27425e5f82fb875c8da435681850b7018","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.6.23.tgz","integrity":"sha512-bkNOfiQL7WatCpXYwugGoqg7IZoNiDAZkG99OZZpqIsyO48uIO9Ke9EhHfU/fDE/LsZBnvcAJfVaCxPYFYNXTQ==","signatures":[{"sig":"MEUCIHvu4yVTSbHJF45S3j5JxoXFf4dw8O7UzlheaZ10FczSAiEAjzmRBBOAr7cZn7IsCb4D9pfxX3AdagX1IRuPzYnMptE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/zone-node.js","_from":".","files":["lib","dist"],"_shasum":"78fff1e27425e5f82fb875c8da435681850b7018","browser":"dist/zone.js","gitHead":"473f01c83e753bf071e338443b6b4b418567dd0d","scripts":{"tsc":"tsc","test":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma.conf.js\"","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w","test-node":"gulp test/node","ws-server":"node ./test/ws-server.js","prepublish":"tsc && gulp build"},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"3.7.3","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"5.5.0","dependencies":{},"devDependencies":{"gulp":"^3.8.11","pump":"^1.0.1","karma":"^0.13.14","jasmine":"^2.4.1","gulp-tsc":"^1.1.4","systemjs":"^0.19.37","gulp-util":"^3.0.7","ts-loader":"^0.6.0","typescript":"^2.0.2","@types/node":"^6.0.38","es6-promise":"^3.0.2","gulp-rename":"^1.2.2","gulp-rollup":"^2.3.0","gulp-uglify":"^1.2.0","concurrently":"^2.2.0","jasmine-core":"^2.2.0","karma-jasmine":"^0.3.6","karma-webpack":"^1.7.0","@types/jasmine":"^2.2.33","@types/systemjs":"^0.19.30","nodejs-websocket":"^1.2.0","karma-sauce-launcher":"^0.2.10","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6"},"_npmOperationalInternal":{"tmp":"tmp/zone.js-0.6.23.tgz_1473889747894_0.8097059819847345","host":"packages-16-east.internal.npmjs.com"}},"0.6.24":{"name":"zone.js","version":"0.6.24","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.6.24","maintainers":[{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"ac552e8d3183da377106231f751f223f23976426","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.6.24.tgz","integrity":"sha512-6IGL9xBlEt3fV90jnvOMmnwBNzeORcNBQQ4w8QWcMPzPdlKEA34bUOwa4EptGTcqJFV33hmgguHt9OVU36zfvg==","signatures":[{"sig":"MEUCIGxdU2TB+N0Ex2Xndm8oAZ1zs8jz4zdbWcpuUVVXZ5lZAiEAtxj9kUZPcG2z1RsXR2N/vM3Jvel7faYdJDCOG8Rr9VA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/zone-node.js","_from":".","files":["lib","dist"],"_shasum":"ac552e8d3183da377106231f751f223f23976426","browser":"dist/zone.js","gitHead":"262d13a78ee67278320f9b472e6e0023449d4072","scripts":{"tsc":"tsc","test":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma.conf.js\"","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w","test-node":"gulp test/node","ws-server":"node ./test/ws-server.js","prepublish":"tsc && gulp build"},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"3.8.6","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"5.11.0","dependencies":{},"devDependencies":{"gulp":"^3.8.11","pump":"^1.0.1","karma":"^0.13.14","jasmine":"^2.4.1","gulp-tsc":"^1.1.4","systemjs":"^0.19.37","gulp-util":"^3.0.7","ts-loader":"^0.6.0","typescript":"^2.0.2","@types/node":"^6.0.38","es6-promise":"^3.0.2","gulp-rename":"^1.2.2","gulp-rollup":"^2.3.0","gulp-uglify":"^1.2.0","concurrently":"^2.2.0","jasmine-core":"^2.2.0","karma-jasmine":"^0.3.6","@types/jasmine":"^2.2.33","@types/systemjs":"^0.19.30","nodejs-websocket":"^1.2.0","karma-sauce-launcher":"^0.2.10","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6"},"_npmOperationalInternal":{"tmp":"tmp/zone.js-0.6.24.tgz_1474326732365_0.13745160191319883","host":"packages-12-west.internal.npmjs.com"}},"0.6.25":{"name":"zone.js","version":"0.6.25","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.6.25","maintainers":[{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"a41b57fe8c0ff3b8f077de3b193a86a234420301","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.6.25.tgz","integrity":"sha512-iKW9DKRlFqdqExJvNJqw7MI1mc9PraSx5o84LLY64Jh40nKNMgn8hvhDeiXKWpGILzhtaN4k9yqyi3qg6SMSlA==","signatures":[{"sig":"MEYCIQCB5o0LRaj8Ree1VxcPYD2wQvLmSbRAHEn8vBYkRrLorAIhAK2bcMUkdBIIzeK7eFPdiEXz+8KjG3SjB+yVph1lO35y","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/zone-node.js","_from":".","files":["lib","dist"],"_shasum":"a41b57fe8c0ff3b8f077de3b193a86a234420301","browser":"dist/zone.js","gitHead":"0c3ce2e170ffc2b3b2d41dc8d0b4820391606a3b","scripts":{"tsc":"tsc","test":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma.conf.js\"","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w","test-node":"gulp test/node","ws-server":"node ./test/ws-server.js","prepublish":"tsc && gulp build"},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"3.8.6","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"5.11.0","dependencies":{},"devDependencies":{"gulp":"^3.8.11","pump":"^1.0.1","karma":"^0.13.14","jasmine":"^2.4.1","gulp-tsc":"^1.1.4","systemjs":"^0.19.37","gulp-util":"^3.0.7","ts-loader":"^0.6.0","typescript":"^2.0.2","@types/node":"^6.0.38","es6-promise":"^3.0.2","gulp-rename":"^1.2.2","gulp-rollup":"^2.3.0","gulp-uglify":"^1.2.0","concurrently":"^2.2.0","jasmine-core":"^2.2.0","karma-jasmine":"^0.3.6","@types/jasmine":"^2.2.33","@types/systemjs":"^0.19.30","nodejs-websocket":"^1.2.0","karma-sauce-launcher":"^0.2.10","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6"},"_npmOperationalInternal":{"tmp":"tmp/zone.js-0.6.25.tgz_1474330836843_0.8244900833815336","host":"packages-12-west.internal.npmjs.com"}},"0.6.26":{"name":"zone.js","version":"0.6.26","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.6.26","maintainers":[{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"067c13b8b80223a89b62e9dc82680f09762c4636","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.6.26.tgz","integrity":"sha512-SjtJJxWD81baZLEHJ02QUoqgnYTsWpAD/C2meVzeyM615deJPOm7BJxYRRpwuP7XsqeDXnJG1HP5odS1VPBa3w==","signatures":[{"sig":"MEYCIQCCkRq2JNHcWQ3IVRqN+FxjsIy7K+LgF1lQlsVVIm1wdQIhAKlfPfAd8cON3bB0dvUJg9ZYA5YHeGzVBwOghd1m0z4y","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/zone-node.js","_from":".","files":["lib","dist"],"_shasum":"067c13b8b80223a89b62e9dc82680f09762c4636","browser":"dist/zone.js","gitHead":"21935e8edf65a4192268ebd1940575ceaa08c244","scripts":{"tsc":"tsc","test":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma.conf.js\"","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w","test-node":"gulp test/node","ws-server":"node ./test/ws-server.js","prepublish":"tsc && gulp build"},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"3.10.8","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"6.8.1","dependencies":{},"devDependencies":{"gulp":"^3.8.11","pump":"^1.0.1","karma":"^0.13.14","tslint":"^3.15.1","jasmine":"^2.4.1","gulp-tsc":"^1.1.4","systemjs":"^0.19.37","gulp-util":"^3.0.7","ts-loader":"^0.6.0","typescript":"^2.0.2","@types/node":"^6.0.38","es6-promise":"^3.0.2","gulp-rename":"^1.2.2","gulp-rollup":"^2.3.0","gulp-tslint":"^6.1.2","gulp-uglify":"^1.2.0","concurrently":"^2.2.0","jasmine-core":"^2.2.0","whatwg-fetch":"^1.0.0","karma-jasmine":"^0.3.6","@types/jasmine":"^2.2.33","@types/systemjs":"^0.19.30","nodejs-websocket":"^1.2.0","gulp-clang-format":"^1.0.23","karma-sauce-launcher":"^0.2.10","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6"},"_npmOperationalInternal":{"tmp":"tmp/zone.js-0.6.26.tgz_1476823791628_0.07981128408573568","host":"packages-16-east.internal.npmjs.com"}},"0.7.0":{"name":"zone.js","version":"0.7.0","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.7.0","maintainers":[{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"f126c6439d5161ae17769b1adac3478b85a5d73f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.7.0.tgz","integrity":"sha512-lHMctp5d+WU0AyN1XKF+/Lwx3WQ/uJBhRviAZtp+dCRuRLKZpROLlUrCdPiO6Vp0K8TLq+4ql/F26UtsGaLO1g==","signatures":[{"sig":"MEUCIQC4JFceVQjkjPokOLojM84N+9A4zjUWm/UKNXc74hML4gIgcg5m4ZEFjEl3eTXMqZFFmRz3RN3YTizJra4jg9VWaNw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/zone-node.js","_from":".","files":["lib","dist"],"_shasum":"f126c6439d5161ae17769b1adac3478b85a5d73f","browser":"dist/zone.js","gitHead":"cd727ff7b429d8440984099a467f4a74b6e595ef","scripts":{"tsc":"tsc","test":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-jasmine.conf.js\"","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w","test-node":"gulp test/node","ws-server":"node ./test/ws-server.js","prepublish":"tsc && gulp build","test-mocha":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-mocha.conf.js\""},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"3.10.3","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"6.3.1","dependencies":{},"devDependencies":{"gulp":"^3.8.11","pump":"^1.0.1","karma":"^0.13.14","mocha":"^3.1.2","tslint":"^3.15.1","jasmine":"^2.4.1","gulp-tsc":"^1.1.4","systemjs":"^0.19.37","gulp-util":"^3.0.7","ts-loader":"^0.6.0","typescript":"^2.0.2","@types/node":"^6.0.38","es6-promise":"^3.0.2","gulp-rename":"^1.2.2","gulp-rollup":"^2.3.0","gulp-tslint":"^6.1.2","gulp-uglify":"^1.2.0","karma-mocha":"^1.2.0","concurrently":"^2.2.0","jasmine-core":"^2.2.0","whatwg-fetch":"git+https://github.com/jimmywarting/fetch.git","karma-jasmine":"^0.3.6","@types/jasmine":"^2.2.33","@types/systemjs":"^0.19.30","nodejs-websocket":"^1.2.0","gulp-clang-format":"^1.0.23","karma-sauce-launcher":"^0.2.10","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6"},"_npmOperationalInternal":{"tmp":"tmp/zone.js-0.7.0.tgz_1479778397765_0.8810489948373288","host":"packages-18-east.internal.npmjs.com"}},"0.7.1":{"name":"zone.js","version":"0.7.1","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.7.1","maintainers":[{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"62db98e2b9cfcb60eff9cf105d199c23c8d78e4f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.7.1.tgz","integrity":"sha512-UnR1bg4TM6Ebwlb16WEpcbzq70/9y/EoMNnQw8pLORZ6OFhTrxsGEpVWwnToTxcsnTMbo1t4NxBSOBd5T93fCA==","signatures":[{"sig":"MEQCIHukhVFICVAw3J/xxrq5QcspqM5ehT2dK/fF5ahKlgIEAiAbGQbMw4lIop4MudpBMosgXUdYrno0B0VBzZSC6IYtyg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/zone-node.js","_from":".","files":["lib","dist"],"_shasum":"62db98e2b9cfcb60eff9cf105d199c23c8d78e4f","browser":"dist/zone.js","gitHead":"402971a5296d3f082364dac290e03fe7e1cbd038","scripts":{"tsc":"tsc","test":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-jasmine.conf.js\"","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w","test-node":"gulp test/node","ws-server":"node ./test/ws-server.js","prepublish":"tsc && gulp build","test-mocha":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-mocha.conf.js\""},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"3.10.3","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"6.3.1","dependencies":{},"devDependencies":{"gulp":"^3.8.11","pump":"^1.0.1","karma":"^0.13.14","mocha":"^3.1.2","tslint":"^3.15.1","jasmine":"^2.4.1","gulp-tsc":"^1.1.4","systemjs":"^0.19.37","gulp-util":"^3.0.7","ts-loader":"^0.6.0","typescript":"^2.0.2","@types/node":"^6.0.38","es6-promise":"^3.0.2","gulp-rename":"^1.2.2","gulp-rollup":"^2.3.0","gulp-tslint":"^6.1.2","gulp-uglify":"^1.2.0","karma-mocha":"^1.2.0","concurrently":"^2.2.0","jasmine-core":"^2.2.0","whatwg-fetch":"git+https://github.com/jimmywarting/fetch.git","karma-jasmine":"^0.3.6","@types/jasmine":"^2.2.33","@types/systemjs":"^0.19.30","nodejs-websocket":"^1.2.0","gulp-clang-format":"^1.0.23","karma-sauce-launcher":"^0.2.10","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6"},"_npmOperationalInternal":{"tmp":"tmp/zone.js-0.7.1.tgz_1479840011913_0.626773813040927","host":"packages-12-west.internal.npmjs.com"}},"0.7.2":{"name":"zone.js","version":"0.7.2","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.7.2","maintainers":[{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"1a62b6be4b24d1b935e4566b0b4386b66966d1a7","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.7.2.tgz","integrity":"sha512-+LJ6xsuJqFdcfkxXZ2CGTjTvhaTwAZqdQKwP00PNBbEy836nnP/73k2pX4C9IA2ukpxJOxYpQ+bdQ8+cKQ9qig==","signatures":[{"sig":"MEYCIQCO7IJ+JQX21ALQyuSR+hJJ/s9+nmfUeB7eMX17SB8HAwIhAMqYU6p92TeviY85sxb8O7S74t02bysbp5Ef+gHzyOIw","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/zone-node.js","_from":".","files":["lib","dist"],"_shasum":"1a62b6be4b24d1b935e4566b0b4386b66966d1a7","browser":"dist/zone.js","gitHead":"8ddd499d1f4b815675852a7868ca3e64c996dd5d","scripts":{"tsc":"tsc","test":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-jasmine.conf.js\"","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w","test-node":"gulp test/node","ws-server":"node ./test/ws-server.js","prepublish":"tsc && gulp build","test-mocha":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-mocha.conf.js\""},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"3.10.3","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"6.3.1","dependencies":{},"devDependencies":{"gulp":"^3.8.11","pump":"^1.0.1","karma":"^0.13.14","mocha":"^3.1.2","tslint":"^3.15.1","jasmine":"^2.4.1","gulp-tsc":"^1.1.4","systemjs":"^0.19.37","gulp-util":"^3.0.7","ts-loader":"^0.6.0","typescript":"^2.0.2","@types/node":"^6.0.38","es6-promise":"^3.0.2","gulp-rename":"^1.2.2","gulp-rollup":"^2.3.0","gulp-tslint":"^6.1.2","gulp-uglify":"^1.2.0","karma-mocha":"^1.2.0","concurrently":"^2.2.0","jasmine-core":"^2.2.0","whatwg-fetch":"git+https://github.com/jimmywarting/fetch.git","karma-jasmine":"^0.3.6","@types/jasmine":"^2.2.33","@types/systemjs":"^0.19.30","nodejs-websocket":"^1.2.0","gulp-clang-format":"^1.0.23","karma-sauce-launcher":"^0.2.10","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6"},"_npmOperationalInternal":{"tmp":"tmp/zone.js-0.7.2.tgz_1479951482816_0.24216799926944077","host":"packages-12-west.internal.npmjs.com"}},"0.7.3":{"name":"zone.js","version":"0.7.3","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.7.3","maintainers":[{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"d91432b6584f73c2c9e03ce4bb0870becc45d445","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.7.3.tgz","integrity":"sha512-zF9EsuCLh9FgvP9bHbILWX260A0iydDTpY29otArWP3M4YpGVrVAoP58LA9JM+gKstavG3+hOjwL5Qhrq7cltw==","signatures":[{"sig":"MEUCIQCBJGzQN+GInF9RVtec8JN3UNWP2qp/0fjI4awWTLz+PAIgXfjRBVM772ncHYJMFMRPGYbMGzokC7XqWDQ9iyDPHvc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/zone-node.js","_from":".","files":["lib","dist"],"_shasum":"d91432b6584f73c2c9e03ce4bb0870becc45d445","browser":"dist/zone.js","gitHead":"8f9a5d2935c5287572c130af4d162494a93792d7","scripts":{"tsc":"tsc","test":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-build-jasmine.conf.js\"","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w","changelog":"gulp changelog","test-dist":"concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-dist-jasmine.conf.js\"","test-node":"gulp test/node","ws-server":"node ./test/ws-server.js","prepublish":"tsc && gulp build","test-mocha":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-build-mocha.conf.js\""},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"3.10.8","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"6.9.1","dependencies":{},"devDependencies":{"gulp":"^3.8.11","pump":"^1.0.1","karma":"^0.13.14","mocha":"^3.1.2","tslint":"^3.15.1","jasmine":"^2.4.1","gulp-tsc":"^1.1.4","systemjs":"^0.19.37","gulp-util":"^3.0.7","ts-loader":"^0.6.0","typescript":"^2.0.2","@types/node":"^6.0.38","es6-promise":"^3.0.2","gulp-rename":"^1.2.2","gulp-rollup":"^2.3.0","gulp-tslint":"^6.1.2","gulp-uglify":"^1.2.0","karma-mocha":"^1.2.0","clang-format":"^1.0.46","concurrently":"^2.2.0","jasmine-core":"^2.2.0","whatwg-fetch":"^2.0.1","karma-jasmine":"^0.3.6","@types/jasmine":"^2.2.33","@types/systemjs":"^0.19.30","nodejs-websocket":"^1.2.0","gulp-clang-format":"^1.0.23","tslint-eslint-rules":"^3.1.0","karma-sauce-launcher":"^0.2.10","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","conventional-changelog":"^1.1.0","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6","gulp-conventional-changelog":"^1.1.0"},"_npmOperationalInternal":{"tmp":"tmp/zone.js-0.7.3.tgz_1482172109205_0.5921132781077176","host":"packages-12-west.internal.npmjs.com"}},"0.7.4":{"name":"zone.js","version":"0.7.4","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.7.4","maintainers":[{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"0e624fe5b724450ee433495deff15c02b3908ee0","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.7.4.tgz","integrity":"sha512-jOVB2ihMyFZBlrNFloB+uYDnRQxvjD/gpJXJBbEHH88TE67byaIYAAiy1P8oWvA4a2d9Jb0hQkPt+o+zXBQKdA==","signatures":[{"sig":"MEYCIQD9IVrZhTb1R62DtNILciTnJ/mzV9pCpNSmZHlIWoUWZwIhAJBFcXcfya9ius+3kO+oRQ2Y+UEp3LUDQujd/0Ww2FT+","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/zone-node.js","_from":".","files":["lib","dist"],"_shasum":"0e624fe5b724450ee433495deff15c02b3908ee0","browser":"dist/zone.js","gitHead":"1de7ea0df7d547ba5e231bf59404e32a762ad184","scripts":{"tsc":"tsc","test":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-build-jasmine.conf.js\"","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w","changelog":"gulp changelog","test-dist":"concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-dist-jasmine.conf.js\"","test-node":"gulp test/node","ws-server":"node ./test/ws-server.js","prepublish":"tsc && gulp build","test-mocha":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-build-mocha.conf.js\""},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"3.5.3","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"6.9.1","dependencies":{},"devDependencies":{"gulp":"^3.8.11","pump":"^1.0.1","karma":"^0.13.14","mocha":"^3.1.2","tslint":"^3.15.1","jasmine":"^2.4.1","gulp-tsc":"^1.1.4","systemjs":"^0.19.37","gulp-util":"^3.0.7","ts-loader":"^0.6.0","typescript":"^2.0.2","@types/node":"^6.0.38","es6-promise":"^3.0.2","gulp-rename":"^1.2.2","gulp-rollup":"^2.3.0","gulp-tslint":"^6.1.2","gulp-uglify":"^1.2.0","karma-mocha":"^1.2.0","clang-format":"^1.0.46","concurrently":"^2.2.0","jasmine-core":"^2.2.0","whatwg-fetch":"^2.0.1","karma-jasmine":"^0.3.6","@types/jasmine":"^2.2.33","@types/systemjs":"^0.19.30","nodejs-websocket":"^1.2.0","gulp-clang-format":"^1.0.23","tslint-eslint-rules":"^3.1.0","karma-sauce-launcher":"^0.2.10","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","conventional-changelog":"^1.1.0","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6","gulp-conventional-changelog":"^1.1.0"},"_npmOperationalInternal":{"tmp":"tmp/zone.js-0.7.4.tgz_1482257424295_0.7884449388366193","host":"packages-12-west.internal.npmjs.com"}},"0.7.5":{"name":"zone.js","version":"0.7.5","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.7.5","maintainers":[{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"bca7cce46ba3216e8631cff36591c4e62cb27104","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.7.5.tgz","integrity":"sha512-TEL7Nx1Qy5Mzc7HXF2CUo6kZUOMtTdt370R27aQPYZXqxkbbDYD5c1K77P4+ohwFGKs7lCuzL5b7pa7YJjgiRA==","signatures":[{"sig":"MEYCIQDDcGs6cfw7EVA8ejAFjhBF74Kj8tnG17IbepgLUIGU1QIhAIqkxaDNXg9ni16400hJ0C9Y5MTmKn1fnQNeOLtxqAU/","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/zone-node.js","_from":".","files":["lib","dist"],"_shasum":"bca7cce46ba3216e8631cff36591c4e62cb27104","browser":"dist/zone.js","gitHead":"8d5af6045e206999f27eb0b5d8032a72156b89ad","scripts":{"ci":"npm run lint && npm run format && npm run test:single && npm run test-node","tsc":"tsc","lint":"gulp lint","test":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"npm run karma-jasmine\"","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w","format":"gulp format:enforce","changelog":"gulp changelog","test-dist":"concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-dist-jasmine.conf.js\"","test-node":"gulp test/node","ws-client":"node ./test/ws-client.js","ws-server":"node ./test/ws-server.js","prepublish":"tsc && gulp build","test-mocha":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-build-mocha.conf.js\"","test:single":"npm run tsc && concurrently \"npm run ws-server\" \"npm run karma-jasmine:autoclose\"","karma-jasmine":"karma start karma-build-jasmine.conf.js","karma-jasmine:single":"karma start karma-build-jasmine.conf.js --single-run","karma-jasmine:autoclose":"npm run karma-jasmine:single && npm run ws-client"},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"3.10.9","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"6.9.2","dependencies":{},"devDependencies":{"gulp":"^3.8.11","pump":"^1.0.1","karma":"^0.13.14","mocha":"^3.1.2","tslint":"^4.1.1","jasmine":"^2.4.1","gulp-tsc":"^1.1.4","systemjs":"^0.19.37","gulp-util":"^3.0.7","ts-loader":"^0.6.0","typescript":"^2.0.2","@types/node":"^6.0.38","es6-promise":"^3.0.2","gulp-rename":"^1.2.2","gulp-rollup":"^2.3.0","gulp-tslint":"^7.0.1","gulp-uglify":"^1.2.0","karma-mocha":"^1.2.0","clang-format":"^1.0.46","concurrently":"^2.2.0","jasmine-core":"^2.2.0","whatwg-fetch":"^2.0.1","karma-jasmine":"^0.3.6","@types/jasmine":"^2.2.33","@types/systemjs":"^0.19.30","nodejs-websocket":"^1.2.0","gulp-clang-format":"^1.0.23","tslint-eslint-rules":"^3.1.0","karma-sauce-launcher":"^0.2.10","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","vrsource-tslint-rules":"^4.0.0","conventional-changelog":"^1.1.0","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6","gulp-conventional-changelog":"^1.1.0"},"_npmOperationalInternal":{"tmp":"tmp/zone.js-0.7.5.tgz_1484246082414_0.6963610504753888","host":"packages-12-west.internal.npmjs.com"}},"0.7.6":{"name":"zone.js","version":"0.7.6","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.7.6","maintainers":[{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"fbbc39d3e0261d0986f1ba06306eb3aeb0d22009","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.7.6.tgz","integrity":"sha512-C7gMCPg5FAPR44Gi0AtsUVMEaMtTnj6bnJ3irjZK98Pgv/qJbWM3O4A5LpCFaPQqIEqxR32ErBT3vEDbVYFJFA==","signatures":[{"sig":"MEQCIEcWYo4yWhko1FRyvPd4YfdMrgucbYcL438/x2xULUKRAiAedzO0ktf8Cchzj3bjxSoRCcF0Q/uIf2z5dKjSB7NbQQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/zone-node.js","_from":".","files":["lib","dist"],"_shasum":"fbbc39d3e0261d0986f1ba06306eb3aeb0d22009","browser":"dist/zone.js","gitHead":"787b63605affa5d1b2960c9ce6ddbb96824fd3c0","scripts":{"ci":"npm run lint && npm run format && npm run test:single && npm run test-node","tsc":"tsc","lint":"gulp lint","test":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"npm run karma-jasmine\"","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w","format":"gulp format:enforce","changelog":"gulp changelog","test-dist":"concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-dist-jasmine.conf.js\"","test-node":"gulp test/node","ws-client":"node ./test/ws-client.js","ws-server":"node ./test/ws-server.js","prepublish":"tsc && gulp build","test-mocha":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-build-mocha.conf.js\"","test:single":"npm run tsc && concurrently \"npm run ws-server\" \"npm run karma-jasmine:autoclose\"","karma-jasmine":"karma start karma-build-jasmine.conf.js","karma-jasmine:single":"karma start karma-build-jasmine.conf.js --single-run","karma-jasmine:autoclose":"npm run karma-jasmine:single && npm run ws-client"},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"3.10.9","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"6.9.2","dependencies":{},"devDependencies":{"gulp":"^3.8.11","pump":"^1.0.1","karma":"^0.13.14","mocha":"^3.1.2","tslint":"^4.1.1","jasmine":"^2.4.1","gulp-tsc":"^1.1.4","systemjs":"^0.19.37","gulp-util":"^3.0.7","ts-loader":"^0.6.0","typescript":"^2.0.2","@types/node":"^6.0.38","es6-promise":"^3.0.2","gulp-rename":"^1.2.2","gulp-rollup":"^2.3.0","gulp-tslint":"^7.0.1","gulp-uglify":"^1.2.0","karma-mocha":"^1.2.0","clang-format":"^1.0.46","concurrently":"^2.2.0","jasmine-core":"^2.2.0","whatwg-fetch":"^2.0.1","karma-jasmine":"^0.3.6","@types/jasmine":"^2.2.33","@types/systemjs":"^0.19.30","nodejs-websocket":"^1.2.0","gulp-clang-format":"^1.0.23","tslint-eslint-rules":"^3.1.0","karma-sauce-launcher":"^0.2.10","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","vrsource-tslint-rules":"^4.0.0","conventional-changelog":"^1.1.0","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6","gulp-conventional-changelog":"^1.1.0"},"_npmOperationalInternal":{"tmp":"tmp/zone.js-0.7.6.tgz_1484693559144_0.4166297174524516","host":"packages-18-east.internal.npmjs.com"}},"0.7.7":{"name":"zone.js","version":"0.7.7","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.7.7","maintainers":[{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"0d7b7ae7f68012d03438b8a18f5763441bbf9620","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.7.7.tgz","integrity":"sha512-7fRwR3A+CzenkWlIP0O6cKADIfZkyP3bqS6oPLGAYgLjoCPX6idSim/8jLDozmgHTB7jTZP+M6Qvy1uqWXd9yw==","signatures":[{"sig":"MEUCIEIB1hRR3WQ2Iap+4v7lG1hyjlGEOg5HifsXonIN+VK6AiEAymlKghqMJ54cJcolzzmCbdpobCPg5p9wcoxqJXs5E14=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/zone-node.js","_from":".","files":["lib","dist"],"_shasum":"0d7b7ae7f68012d03438b8a18f5763441bbf9620","browser":"dist/zone.js","gitHead":"8af21b5a48f647059780cb1721cbb9fc064508c7","scripts":{"ci":"npm run lint && npm run format && npm run promisetest && npm run test:single && npm run test-node","tsc":"tsc","lint":"gulp lint","test":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"npm run karma-jasmine\"","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w","format":"gulp format:enforce","changelog":"gulp changelog","test-dist":"concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-dist-jasmine.conf.js\"","test-node":"gulp test/node","ws-client":"node ./test/ws-client.js","ws-server":"node ./test/ws-server.js","prepublish":"tsc && gulp build","test-mocha":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-build-mocha.conf.js\"","promisetest":"gulp promisetest","test:single":"npm run tsc && concurrently \"npm run ws-server\" \"npm run karma-jasmine:autoclose\"","karma-jasmine":"karma start karma-build-jasmine.conf.js","karma-jasmine:single":"karma start karma-build-jasmine.conf.js --single-run","karma-jasmine:autoclose":"npm run karma-jasmine:single && npm run ws-client"},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"3.10.10","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"6.9.5","dependencies":{},"devDependencies":{"gulp":"^3.8.11","pump":"^1.0.1","karma":"^0.13.14","mocha":"^3.1.2","tslint":"^4.1.1","jasmine":"^2.4.1","gulp-tsc":"^1.1.4","systemjs":"^0.19.37","gulp-util":"^3.0.7","ts-loader":"^0.6.0","typescript":"^2.0.2","@types/node":"^6.0.38","es6-promise":"^3.0.2","gulp-rename":"^1.2.2","gulp-rollup":"^2.3.0","gulp-tslint":"^7.0.1","gulp-uglify":"^1.2.0","karma-mocha":"^1.2.0","clang-format":"^1.0.46","concurrently":"^2.2.0","jasmine-core":"^2.2.0","whatwg-fetch":"^2.0.1","karma-jasmine":"^0.3.6","@types/jasmine":"^2.2.33","@types/systemjs":"^0.19.30","nodejs-websocket":"^1.2.0","gulp-clang-format":"^1.0.23","tslint-eslint-rules":"^3.1.0","karma-sauce-launcher":"^0.2.10","promises-aplus-tests":"^2.1.2","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","vrsource-tslint-rules":"^4.0.0","conventional-changelog":"^1.1.0","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6","gulp-conventional-changelog":"^1.1.0"},"_npmOperationalInternal":{"tmp":"tmp/zone.js-0.7.7.tgz_1487055550979_0.8639063602313399","host":"packages-12-west.internal.npmjs.com"}},"0.7.8":{"name":"zone.js","version":"0.7.8","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.7.8","maintainers":[{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"4f3fe8834d44597f2639053a0fa438df34fffded","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.7.8.tgz","integrity":"sha512-u7Hdq+ZRTN/fxoa/G/IYNhkTqUlFODtJIc7iE1EAhhsnjRa/NroQ2ApaKUiVu5W4fpXXjH17Ia7eUtF2sQKgsQ==","signatures":[{"sig":"MEUCIQCfQqtccHie0VMKVp4BI306OqTJm1w+GshyrvRvczpbYQIgQk0CL0q2nV0bpqyzosIr5o0BuyraJuNmgPi7f6yO++0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/zone-node.js","_from":".","files":["lib","dist"],"_shasum":"4f3fe8834d44597f2639053a0fa438df34fffded","browser":"dist/zone.js","gitHead":"ce47cfbae27f8dff1e6db1c098229e25d3d088f0","scripts":{"ci":"npm run lint && npm run format && npm run promisetest && npm run test:single && npm run test-node","tsc":"tsc","lint":"gulp lint","test":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"npm run karma-jasmine\"","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w","format":"gulp format:enforce","changelog":"gulp changelog","test-dist":"concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-dist-jasmine.conf.js\"","test-node":"gulp test/node","ws-client":"node ./test/ws-client.js","ws-server":"node ./test/ws-server.js","prepublish":"tsc && gulp build","test-mocha":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-build-mocha.conf.js\"","promisetest":"gulp promisetest","test:single":"npm run tsc && concurrently \"npm run ws-server\" \"npm run karma-jasmine:autoclose\"","karma-jasmine":"karma start karma-build-jasmine.conf.js","karma-jasmine:single":"karma start karma-build-jasmine.conf.js --single-run","karma-jasmine:autoclose":"npm run karma-jasmine:single && npm run ws-client"},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"3.10.10","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"6.9.5","dependencies":{},"devDependencies":{"gulp":"^3.8.11","pump":"^1.0.1","karma":"^0.13.14","mocha":"^3.1.2","tslint":"^4.1.1","jasmine":"^2.4.1","gulp-tsc":"^1.1.4","systemjs":"^0.19.37","gulp-util":"^3.0.7","ts-loader":"^0.6.0","typescript":"2.0.10","@types/node":"^6.0.38","es6-promise":"^3.0.2","gulp-rename":"^1.2.2","gulp-rollup":"^2.3.0","gulp-tslint":"^7.0.1","gulp-uglify":"^1.2.0","karma-mocha":"^1.2.0","clang-format":"1.0.46","concurrently":"^2.2.0","jasmine-core":"^2.2.0","whatwg-fetch":"^2.0.1","karma-jasmine":"^0.3.6","@types/jasmine":"2.2.33","@types/systemjs":"^0.19.30","nodejs-websocket":"^1.2.0","gulp-clang-format":"^1.0.23","tslint-eslint-rules":"^3.1.0","karma-sauce-launcher":"^0.2.10","promises-aplus-tests":"^2.1.2","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","vrsource-tslint-rules":"^4.0.0","conventional-changelog":"^1.1.0","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6","gulp-conventional-changelog":"^1.1.0"},"_npmOperationalInternal":{"tmp":"tmp/zone.js-0.7.8.tgz_1489112713537_0.5392253624740988","host":"packages-12-west.internal.npmjs.com"}},"0.8.0":{"name":"zone.js","version":"0.8.0","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.8.0","maintainers":[{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"d5fbfd04aa91401cd848b2baa3d00643b864dfa6","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.8.0.tgz","integrity":"sha512-CYvVdSVJewV8RzKNlgzEiJNWWNZE/qZVieTN6KNx5hTQzQvDq86JAYqm3jnStnEO7otq5e54WzhhBEXhiH7TtA==","signatures":[{"sig":"MEQCIDWY8i6RKxjjLbYGigHsosU54HF8u1mP+7u0o6A8xFhoAiA0DUAazQgstqjqrjg26j70ONGX2o2hclDQ7Aenm4iFoA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/zone-node.js","_from":".","files":["lib","dist"],"_shasum":"d5fbfd04aa91401cd848b2baa3d00643b864dfa6","browser":"dist/zone.js","gitHead":"b43d8b8b3d178a4e3652c227aafb3d36bbbd0ee7","scripts":{"ci":"npm run lint && npm run format && npm run promisetest && npm run test:single && npm run test-node","tsc":"tsc","lint":"gulp lint","test":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"npm run karma-jasmine\"","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w","format":"gulp format:enforce","changelog":"gulp changelog","test-dist":"concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-dist-jasmine.conf.js\"","test-node":"gulp test/node","ws-client":"node ./test/ws-client.js","ws-server":"node ./test/ws-server.js","prepublish":"tsc && gulp build","test-mocha":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-build-mocha.conf.js\"","promisetest":"gulp promisetest","test:single":"npm run tsc && concurrently \"npm run ws-server\" \"npm run karma-jasmine:autoclose\"","karma-jasmine":"karma start karma-build-jasmine.conf.js","karma-jasmine:single":"karma start karma-build-jasmine.conf.js --single-run","karma-jasmine:autoclose":"npm run karma-jasmine:single && npm run ws-client"},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"3.10.9","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"6.9.2","dependencies":{},"devDependencies":{"gulp":"^3.8.11","pump":"^1.0.1","karma":"^0.13.14","mocha":"^3.1.2","tslint":"^4.1.1","jasmine":"^2.4.1","gulp-tsc":"^1.1.4","systemjs":"^0.19.37","gulp-util":"^3.0.7","ts-loader":"^0.6.0","typescript":"2.2.1","@types/node":"^6.0.38","es6-promise":"^3.0.2","gulp-rename":"^1.2.2","gulp-rollup":"^2.3.0","gulp-tslint":"^7.0.1","gulp-uglify":"^1.2.0","karma-mocha":"^1.2.0","clang-format":"1.0.46","concurrently":"^2.2.0","jasmine-core":"^2.2.0","whatwg-fetch":"^2.0.1","karma-jasmine":"^0.3.6","@types/jasmine":"2.2.33","@types/systemjs":"^0.19.30","nodejs-websocket":"^1.2.0","gulp-clang-format":"^1.0.23","tslint-eslint-rules":"^3.1.0","karma-sauce-launcher":"^0.2.10","promises-aplus-tests":"^2.1.2","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","vrsource-tslint-rules":"^4.0.0","conventional-changelog":"^1.1.0","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6","gulp-conventional-changelog":"^1.1.0"},"_npmOperationalInternal":{"tmp":"tmp/zone.js-0.8.0.tgz_1489189347150_0.6241969063412398","host":"packages-18-east.internal.npmjs.com"}},"0.8.1":{"name":"zone.js","version":"0.8.1","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.8.1","maintainers":[{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"ee2cbb00cf7f04ce7b55f7deb0da951c3fc3106a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.8.1.tgz","integrity":"sha512-JXBOJceNokUDX0tpqQniz3GOKL4uIoM0C0/rsukdrd5lgi0FxO2ZDxKmlJ6myJpdyyDZX3K6qf4i0PBbxL/91w==","signatures":[{"sig":"MEQCIHANtVlr7EbnfJB3N3qFSXljMMksv0hjSODyN9dA/cOvAiAHT3sfznlXxZnXuFoh78CF9nThhKzpYzaJpDneICDlSg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/zone-node.js","_from":".","files":["lib","dist"],"_shasum":"ee2cbb00cf7f04ce7b55f7deb0da951c3fc3106a","browser":"dist/zone.js","gitHead":"2a7dd7bf758792aaf4d070279291adc0f9c98c96","scripts":{"ci":"npm run lint && npm run format && npm run promisetest && npm run test:single && npm run test-node","tsc":"tsc","lint":"gulp lint","test":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"npm run karma-jasmine\"","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w","format":"gulp format:enforce","changelog":"gulp changelog","test-dist":"concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-dist-jasmine.conf.js\"","test-node":"gulp test/node","ws-client":"node ./test/ws-client.js","ws-server":"node ./test/ws-server.js","prepublish":"tsc && gulp build","test-mocha":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-build-mocha.conf.js\"","promisetest":"gulp promisetest","test:single":"npm run tsc && concurrently \"npm run ws-server\" \"npm run karma-jasmine:autoclose\"","karma-jasmine":"karma start karma-build-jasmine.conf.js","karma-jasmine:single":"karma start karma-build-jasmine.conf.js --single-run","karma-jasmine:autoclose":"npm run karma-jasmine:single && npm run ws-client"},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"3.10.9","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"6.9.2","dependencies":{},"devDependencies":{"gulp":"^3.8.11","pump":"^1.0.1","karma":"^0.13.14","mocha":"^3.1.2","tslint":"^4.1.1","jasmine":"^2.4.1","gulp-tsc":"^1.1.4","systemjs":"^0.19.37","gulp-util":"^3.0.7","ts-loader":"^0.6.0","typescript":"2.2.1","@types/node":"^6.0.38","es6-promise":"^3.0.2","gulp-rename":"^1.2.2","gulp-rollup":"^2.3.0","gulp-tslint":"^7.0.1","gulp-uglify":"^1.2.0","karma-mocha":"^1.2.0","clang-format":"1.0.46","concurrently":"^2.2.0","jasmine-core":"^2.2.0","whatwg-fetch":"^2.0.1","karma-jasmine":"^0.3.6","@types/jasmine":"2.2.33","@types/systemjs":"^0.19.30","nodejs-websocket":"^1.2.0","gulp-clang-format":"^1.0.23","tslint-eslint-rules":"^3.1.0","karma-sauce-launcher":"^0.2.10","promises-aplus-tests":"^2.1.2","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","vrsource-tslint-rules":"^4.0.0","conventional-changelog":"^1.1.0","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6","gulp-conventional-changelog":"^1.1.0"},"_npmOperationalInternal":{"tmp":"tmp/zone.js-0.8.1.tgz_1489431690892_0.6598249743692577","host":"packages-12-west.internal.npmjs.com"}},"0.8.2":{"name":"zone.js","version":"0.8.2","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.8.2","maintainers":[{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"85d2c9d4c2cdb36eaeab4b50be68e06bf72be86c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.8.2.tgz","integrity":"sha512-dxpmMueps0h5XcsGvKRwXPBlvzaJjX+cZvF5pb+tQxXFtzGFhSJKJiEbFD1cODiq2xKxLsAU5i889q60bgBX4g==","signatures":[{"sig":"MEQCICGLT9JsK5RMij8FuKtFmtm37Wxf90sCcSOdQI0Zz+ZnAiAqmj3FfpHQhBxS3WOWFaEW/AByAkdn3dpGHSDImvwd0Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/zone-node.js","_from":".","files":["lib","dist"],"_shasum":"85d2c9d4c2cdb36eaeab4b50be68e06bf72be86c","browser":"dist/zone.js","gitHead":"2e4cca541ddee9d73eab98720779ac42fccdc084","scripts":{"ci":"npm run lint && npm run format && npm run promisetest && npm run test:single && npm run test-node","tsc":"tsc","lint":"gulp lint","test":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"npm run karma-jasmine\"","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w","format":"gulp format:enforce","changelog":"gulp changelog","test-dist":"concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-dist-jasmine.conf.js\"","test-node":"gulp test/node","ws-client":"node ./test/ws-client.js","ws-server":"node ./test/ws-server.js","prepublish":"tsc && gulp build","test-mocha":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-build-mocha.conf.js\"","promisetest":"gulp promisetest","test:single":"npm run tsc && concurrently \"npm run ws-server\" \"npm run karma-jasmine:autoclose\"","karma-jasmine":"karma start karma-build-jasmine.conf.js","karma-jasmine:single":"karma start karma-build-jasmine.conf.js --single-run","karma-jasmine:autoclose":"npm run karma-jasmine:single && npm run ws-client"},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"3.10.9","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"6.9.2","dependencies":{},"devDependencies":{"gulp":"^3.8.11","pump":"^1.0.1","karma":"^0.13.14","mocha":"^3.1.2","tslint":"^4.1.1","jasmine":"^2.4.1","gulp-tsc":"^1.1.4","systemjs":"^0.19.37","gulp-util":"^3.0.7","ts-loader":"^0.6.0","typescript":"2.2.1","@types/node":"^6.0.38","es6-promise":"^3.0.2","gulp-rename":"^1.2.2","gulp-rollup":"^2.3.0","gulp-tslint":"^7.0.1","gulp-uglify":"^1.2.0","karma-mocha":"^1.2.0","clang-format":"1.0.46","concurrently":"^2.2.0","jasmine-core":"^2.2.0","whatwg-fetch":"^2.0.1","karma-jasmine":"^0.3.6","@types/jasmine":"2.2.33","@types/systemjs":"^0.19.30","nodejs-websocket":"^1.2.0","gulp-clang-format":"^1.0.23","tslint-eslint-rules":"^3.1.0","karma-sauce-launcher":"^0.2.10","promises-aplus-tests":"^2.1.2","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","vrsource-tslint-rules":"^4.0.0","conventional-changelog":"^1.1.0","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6","gulp-conventional-changelog":"^1.1.0"},"_npmOperationalInternal":{"tmp":"tmp/zone.js-0.8.2.tgz_1489529081769_0.941982589662075","host":"packages-12-west.internal.npmjs.com"}},"0.8.3":{"name":"zone.js","version":"0.8.3","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.8.3","maintainers":[{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"917aa6e3ce4156d96db20e8137dcd515878314cc","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.8.3.tgz","integrity":"sha512-/uo3oLXvDftX+zGATjIP2Sl1m8nVpL8aMWaf7fPCFbF5ddYvp3Q9AxAtkf8D33RXeWTN22uI4d6X5bvOR3zfkQ==","signatures":[{"sig":"MEUCIQCnLubjrVe1XbON/rai4FO1Oh6oSIo44icrULXerga2ZQIgLUlS3LBmYRu1M+VXcAj1rIb7CpMGHL/TVVmtHtu+v4o=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/zone-node.js","_from":".","files":["lib","dist"],"_shasum":"917aa6e3ce4156d96db20e8137dcd515878314cc","browser":"dist/zone.js","gitHead":"8f6ddf32769d3a09815acf09028caea66b9b1439","scripts":{"ci":"npm run lint && npm run format && npm run promisetest && npm run test:single && npm run test-node","tsc":"tsc","lint":"gulp lint","test":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"npm run karma-jasmine\"","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w","format":"gulp format:enforce","changelog":"gulp changelog","test-dist":"concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-dist-jasmine.conf.js\"","test-node":"gulp test/node","ws-client":"node ./test/ws-client.js","ws-server":"node ./test/ws-server.js","prepublish":"tsc && gulp build","test-mocha":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-build-mocha.conf.js\"","promisetest":"gulp promisetest","test:single":"npm run tsc && concurrently \"npm run ws-server\" \"npm run karma-jasmine:autoclose\"","karma-jasmine":"karma start karma-build-jasmine.conf.js","karma-jasmine:single":"karma start karma-build-jasmine.conf.js --single-run","karma-jasmine:autoclose":"npm run karma-jasmine:single && npm run ws-client"},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"3.10.9","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"6.9.2","dependencies":{},"devDependencies":{"gulp":"^3.8.11","pump":"^1.0.1","karma":"^0.13.14","mocha":"^3.1.2","tslint":"^4.1.1","jasmine":"^2.4.1","gulp-tsc":"^1.1.4","systemjs":"^0.19.37","gulp-util":"^3.0.7","ts-loader":"^0.6.0","typescript":"2.2.1","@types/node":"^6.0.38","es6-promise":"^3.0.2","gulp-rename":"^1.2.2","gulp-rollup":"^2.3.0","gulp-tslint":"^7.0.1","gulp-uglify":"^1.2.0","karma-mocha":"^1.2.0","clang-format":"1.0.46","concurrently":"^2.2.0","jasmine-core":"^2.2.0","whatwg-fetch":"^2.0.1","karma-jasmine":"^0.3.6","@types/jasmine":"2.2.33","@types/systemjs":"^0.19.30","nodejs-websocket":"^1.2.0","gulp-clang-format":"^1.0.23","tslint-eslint-rules":"^3.1.0","karma-sauce-launcher":"^0.2.10","promises-aplus-tests":"^2.1.2","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","vrsource-tslint-rules":"^4.0.0","conventional-changelog":"^1.1.0","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6","gulp-conventional-changelog":"^1.1.0"},"_npmOperationalInternal":{"tmp":"tmp/zone.js-0.8.3.tgz_1489610512827_0.49423162592574954","host":"packages-18-east.internal.npmjs.com"}},"0.8.4":{"name":"zone.js","version":"0.8.4","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.8.4","maintainers":[{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"cc40ae5a1c879601c5ebba2096b5c80f0c4c3602","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.8.4.tgz","integrity":"sha512-NsdfCFLyQPJboMKuum3y1P6pvjDPOjntfVby+AQQQ4uMjg/GR/Qn7KIikJBeCwB07BP6Hq0Lo4vLkriGP5VMdg==","signatures":[{"sig":"MEUCIQD7NusbIm+nbhUuzcNC2tCHaM10qAn6wTNbgQS2wEE3ngIgP6O+NaXt6XoYNYL9lk0mmsAUi5BwHlvdfFB+RFB6Y1g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/zone-node.js","_from":".","files":["lib","dist"],"_shasum":"cc40ae5a1c879601c5ebba2096b5c80f0c4c3602","browser":"dist/zone.js","gitHead":"ffb2ab1d9bbc4b4dc3c900aeef358d612f32c4ec","scripts":{"ci":"npm run lint && npm run format && npm run promisetest && npm run test:single && npm run test-node","tsc":"tsc","lint":"gulp lint","test":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"npm run karma-jasmine\"","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w","format":"gulp format:enforce","changelog":"gulp changelog","test-dist":"concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-dist-jasmine.conf.js\"","test-node":"gulp test/node","ws-client":"node ./test/ws-client.js","ws-server":"node ./test/ws-server.js","prepublish":"tsc && gulp build","test-mocha":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-build-mocha.conf.js\"","promisetest":"gulp promisetest","test:single":"npm run tsc && concurrently \"npm run ws-server\" \"npm run karma-jasmine:autoclose\"","karma-jasmine":"karma start karma-build-jasmine.conf.js","karma-jasmine:single":"karma start karma-build-jasmine.conf.js --single-run","karma-jasmine:autoclose":"npm run karma-jasmine:single && npm run ws-client"},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"3.10.10","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"6.9.5","dependencies":{},"devDependencies":{"gulp":"^3.8.11","pump":"^1.0.1","karma":"^0.13.14","mocha":"^3.1.2","tslint":"^4.1.1","jasmine":"^2.4.1","gulp-tsc":"^1.1.4","systemjs":"^0.19.37","gulp-util":"^3.0.7","ts-loader":"^0.6.0","typescript":"2.2.1","@types/node":"^6.0.38","es6-promise":"^3.0.2","gulp-rename":"^1.2.2","gulp-rollup":"^2.3.0","gulp-tslint":"^7.0.1","gulp-uglify":"^1.2.0","karma-mocha":"^1.2.0","clang-format":"1.0.46","concurrently":"^2.2.0","jasmine-core":"^2.2.0","whatwg-fetch":"^2.0.1","karma-jasmine":"^0.3.6","@types/jasmine":"2.2.33","@types/systemjs":"^0.19.30","nodejs-websocket":"^1.2.0","gulp-clang-format":"^1.0.23","tslint-eslint-rules":"^3.1.0","karma-sauce-launcher":"^0.2.10","promises-aplus-tests":"^2.1.2","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","vrsource-tslint-rules":"^4.0.0","conventional-changelog":"^1.1.0","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6","gulp-conventional-changelog":"^1.1.0"},"_npmOperationalInternal":{"tmp":"tmp/zone.js-0.8.4.tgz_1489644125874_0.3866009588818997","host":"packages-12-west.internal.npmjs.com"}},"0.8.5":{"name":"zone.js","version":"0.8.5","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.8.5","maintainers":[{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"7906e017482cbff4c3f079c5c34305ce941f5ba2","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.8.5.tgz","integrity":"sha512-UczIjxDT7VN/qVgrfOusthNl9Yd9ON6PjSAiJwgGhj8E8Rrce9xWA7gqCj20boghGW4OrJMc8d75BDHWhfw4Wg==","signatures":[{"sig":"MEUCIBK66aaeZH3RF7kM56bIk69Abyn1Y7tAKNeV+zqQS3XTAiEAxGWCHJBVEn7NnaplDvgfSvfVGnPrMnW/Y5kx3D33a9U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/zone-node.js","_from":".","files":["lib","dist"],"_shasum":"7906e017482cbff4c3f079c5c34305ce941f5ba2","browser":"dist/zone.js","gitHead":"e11d9ff6c7b0f0bb27d0efd49f03d74e47ea48c9","scripts":{"ci":"npm run lint && npm run format && npm run promisetest && npm run test:single && npm run test-node","tsc":"tsc","lint":"gulp lint","test":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"npm run karma-jasmine\"","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w","format":"gulp format:enforce","changelog":"gulp changelog","test-dist":"concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-dist-jasmine.conf.js\"","test-node":"gulp test/node","ws-client":"node ./test/ws-client.js","ws-server":"node ./test/ws-server.js","prepublish":"tsc && gulp build","test-mocha":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-build-mocha.conf.js\"","promisetest":"gulp promisetest","test:single":"npm run tsc && concurrently \"npm run ws-server\" \"npm run karma-jasmine:autoclose\"","karma-jasmine":"karma start karma-build-jasmine.conf.js","karma-jasmine:single":"karma start karma-build-jasmine.conf.js --single-run","karma-jasmine:autoclose":"npm run karma-jasmine:single && npm run ws-client"},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"3.10.9","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"6.9.2","dependencies":{},"devDependencies":{"gulp":"^3.8.11","pump":"^1.0.1","karma":"^0.13.14","mocha":"^3.1.2","tslint":"^4.1.1","jasmine":"^2.4.1","gulp-tsc":"^1.1.4","systemjs":"^0.19.37","gulp-util":"^3.0.7","ts-loader":"^0.6.0","typescript":"2.2.1","@types/node":"^6.0.38","es6-promise":"^3.0.2","gulp-rename":"^1.2.2","gulp-rollup":"^2.3.0","gulp-tslint":"^7.0.1","gulp-uglify":"^1.2.0","karma-mocha":"^1.2.0","clang-format":"1.0.46","concurrently":"^2.2.0","jasmine-core":"^2.2.0","whatwg-fetch":"^2.0.1","karma-jasmine":"^0.3.6","@types/jasmine":"2.2.33","@types/systemjs":"^0.19.30","nodejs-websocket":"^1.2.0","gulp-clang-format":"^1.0.23","tslint-eslint-rules":"^3.1.0","karma-sauce-launcher":"^0.2.10","promises-aplus-tests":"^2.1.2","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","vrsource-tslint-rules":"^4.0.0","conventional-changelog":"^1.1.0","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6","gulp-conventional-changelog":"^1.1.0"},"_npmOperationalInternal":{"tmp":"tmp/zone.js-0.8.5.tgz_1490127929417_0.388460656395182","host":"packages-12-west.internal.npmjs.com"}},"0.8.6":{"name":"zone.js","version":"0.8.6","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.8.6","maintainers":[{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"b404d933da61e1a03ae232755932c9ed4d6a0a94","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.8.6.tgz","integrity":"sha512-bM2aa2vpvtQwuTfcZ0zgoyr2kD6D/OAz6e7Wb314L8Bnmq1GeN243skhIC2/xHrxHcAHt8JK7tKgHTU/jnGVZw==","signatures":[{"sig":"MEUCIQDY0TOcjN5SdB6pKjLsU1LQUeaXgTa8h4EC3hgnnpwk7AIgYXyQ6UPvkJOnuUzsuzGlfbcdaPKA9qvdZjavCy8GVWo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/zone-node.js","_from":".","files":["lib","dist"],"_shasum":"b404d933da61e1a03ae232755932c9ed4d6a0a94","browser":"dist/zone.js","gitHead":"08293167857667bc0fa3d28a24ef1cd36e959ff4","scripts":{"ci":"npm run lint && npm run format && npm run promisetest && npm run test:single && npm run test-node","tsc":"tsc","lint":"gulp lint","test":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"npm run karma-jasmine\"","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w","format":"gulp format:enforce","changelog":"gulp changelog","test-dist":"concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-dist-jasmine.conf.js\"","test-node":"gulp test/node","ws-client":"node ./test/ws-client.js","ws-server":"node ./test/ws-server.js","prepublish":"tsc && gulp build","test-mocha":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-build-mocha.conf.js\"","promisetest":"gulp promisetest","test:single":"npm run tsc && concurrently \"npm run ws-server\" \"npm run karma-jasmine:autoclose\"","closure:test":"scripts/closure/closure_compiler.sh","karma-jasmine":"karma start karma-build-jasmine.conf.js","karma-jasmine:single":"karma start karma-build-jasmine.conf.js --single-run","karma-jasmine:autoclose":"npm run karma-jasmine:single && npm run ws-client"},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"3.10.9","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"6.9.2","dependencies":{},"devDependencies":{"gulp":"^3.8.11","pump":"^1.0.1","karma":"^0.13.14","mocha":"^3.1.2","tslint":"^4.1.1","jasmine":"^2.4.1","gulp-tsc":"^1.1.4","systemjs":"^0.19.37","gulp-util":"^3.0.7","ts-loader":"^0.6.0","typescript":"2.2.1","@types/node":"^6.0.38","es6-promise":"^3.0.2","gulp-rename":"^1.2.2","gulp-rollup":"^2.3.0","gulp-tslint":"^7.0.1","gulp-uglify":"^1.2.0","karma-mocha":"^1.2.0","clang-format":"1.0.46","concurrently":"^2.2.0","jasmine-core":"^2.2.0","whatwg-fetch":"^2.0.1","karma-jasmine":"^0.3.6","@types/jasmine":"2.2.33","@types/systemjs":"^0.19.30","nodejs-websocket":"^1.2.0","gulp-clang-format":"^1.0.23","tslint-eslint-rules":"^3.1.0","karma-sauce-launcher":"^0.2.10","promises-aplus-tests":"^2.1.2","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","vrsource-tslint-rules":"^4.0.0","conventional-changelog":"^1.1.0","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6","google-closure-compiler":"^20170409.0.0","gulp-conventional-changelog":"^1.1.0"},"_npmOperationalInternal":{"tmp":"tmp/zone.js-0.8.6.tgz_1492808296025_0.23098184308037162","host":"packages-12-west.internal.npmjs.com"}},"0.8.7":{"name":"zone.js","version":"0.8.7","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.8.7","maintainers":[{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"14c360b962ff86efc4f507f34428391eb1b28fb9","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.8.7.tgz","integrity":"sha512-Cuke3VBi3gPEwh3CgsXZkkM6rcHgokE3StBro3Wdmzkj6pTxZRVMXmdb55UtKo7HQsVsefN73YTCMn2/WSOdlw==","signatures":[{"sig":"MEYCIQDpX43J1A/Aj524B2kd1uM0nVF9TmzrhwITT0d1HMN2jgIhAJh/V+l+Xixs/ebK3gpavm/BCx0B2d5SJlEP3jR42bp0","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/zone-node.js","_from":".","files":["lib","dist"],"_shasum":"14c360b962ff86efc4f507f34428391eb1b28fb9","browser":"dist/zone.js","gitHead":"917893b5b06492a04da7cbb46d5abdab4fd2c5a5","scripts":{"ci":"npm run lint && npm run format && npm run promisetest && npm run test:single && npm run test-node","tsc":"tsc","lint":"gulp lint","test":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"npm run karma-jasmine\"","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w","format":"gulp format:enforce","changelog":"gulp changelog","test-dist":"concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-dist-jasmine.conf.js\"","test-node":"gulp test/node","ws-client":"node ./test/ws-client.js","ws-server":"node ./test/ws-server.js","prepublish":"tsc && gulp build","test-mocha":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-build-mocha.conf.js\"","promisetest":"gulp promisetest","test:single":"npm run tsc && concurrently \"npm run ws-server\" \"npm run karma-jasmine:autoclose\"","closure:test":"scripts/closure/closure_compiler.sh","karma-jasmine":"karma start karma-build-jasmine.conf.js","karma-jasmine:single":"karma start karma-build-jasmine.conf.js --single-run","karma-jasmine:autoclose":"npm run karma-jasmine:single && npm run ws-client"},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"3.10.9","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"6.9.2","dependencies":{},"devDependencies":{"gulp":"^3.8.11","pump":"^1.0.1","karma":"^0.13.14","mocha":"^3.1.2","tslint":"^4.1.1","jasmine":"^2.4.1","gulp-tsc":"^1.1.4","systemjs":"^0.19.37","gulp-util":"^3.0.7","ts-loader":"^0.6.0","typescript":"2.2.1","@types/node":"^6.0.38","es6-promise":"^3.0.2","gulp-rename":"^1.2.2","gulp-rollup":"^2.3.0","gulp-tslint":"^7.0.1","gulp-uglify":"^1.2.0","karma-mocha":"^1.2.0","clang-format":"1.0.46","concurrently":"^2.2.0","jasmine-core":"^2.2.0","whatwg-fetch":"^2.0.1","karma-jasmine":"^0.3.6","@types/jasmine":"2.2.33","@types/systemjs":"^0.19.30","nodejs-websocket":"^1.2.0","gulp-clang-format":"^1.0.23","tslint-eslint-rules":"^3.1.0","karma-sauce-launcher":"^0.2.10","promises-aplus-tests":"^2.1.2","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","vrsource-tslint-rules":"^4.0.0","conventional-changelog":"^1.1.0","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6","google-closure-compiler":"^20170409.0.0","gulp-conventional-changelog":"^1.1.0"},"_npmOperationalInternal":{"tmp":"tmp/zone.js-0.8.7.tgz_1492808504036_0.3503951190505177","host":"packages-12-west.internal.npmjs.com"}},"0.8.8":{"name":"zone.js","version":"0.8.8","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.8.8","maintainers":[{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"354f02bb7241af834bb83b310308a89ad012d3af","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.8.8.tgz","integrity":"sha512-B4vO07rgdEuH3LWj1m9dS+BNCTAJ385GEz40xGjHr5HlLpfJsiqcTzgbuTRmohm67JXxJcmPMFJOkIOl2qFLYw==","signatures":[{"sig":"MEUCIQCPI22SJKrSZGK5pbTGOPRYr1KSzrH0GgAHB2ylQImIeQIgB0dw4hdN00MvQqTbAjRU9GiH0uCrMcp6q6nD5RpMNMM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/zone-node.js","_from":".","files":["lib","dist"],"_shasum":"354f02bb7241af834bb83b310308a89ad012d3af","browser":"dist/zone.js","gitHead":"7b43b51239d21753f50df04eff3dac6f89e5328c","scripts":{"ci":"npm run lint && npm run format && npm run promisetest && npm run test:single && npm run test-node","tsc":"tsc","lint":"gulp lint","test":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"npm run karma-jasmine\"","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w","format":"gulp format:enforce","changelog":"gulp changelog","test-dist":"concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-dist-jasmine.conf.js\"","test-node":"gulp test/node","ws-client":"node ./test/ws-client.js","ws-server":"node ./test/ws-server.js","prepublish":"tsc && gulp build","test-mocha":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-build-mocha.conf.js\"","promisetest":"gulp promisetest","test:single":"npm run tsc && concurrently \"npm run ws-server\" \"npm run karma-jasmine:autoclose\"","closure:test":"scripts/closure/closure_compiler.sh","karma-jasmine":"karma start karma-build-jasmine.conf.js","karma-jasmine:single":"karma start karma-build-jasmine.conf.js --single-run","karma-jasmine:autoclose":"npm run karma-jasmine:single && npm run ws-client"},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"3.10.9","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"6.9.2","dependencies":{},"devDependencies":{"gulp":"^3.8.11","pump":"^1.0.1","karma":"^0.13.14","mocha":"^3.1.2","tslint":"^4.1.1","jasmine":"^2.4.1","gulp-tsc":"^1.1.4","systemjs":"^0.19.37","gulp-util":"^3.0.7","ts-loader":"^0.6.0","typescript":"2.2.1","@types/node":"^6.0.38","es6-promise":"^3.0.2","gulp-rename":"^1.2.2","gulp-rollup":"^2.3.0","gulp-tslint":"^7.0.1","gulp-uglify":"^1.2.0","karma-mocha":"^1.2.0","clang-format":"1.0.46","concurrently":"^2.2.0","jasmine-core":"^2.2.0","whatwg-fetch":"^2.0.1","karma-jasmine":"^0.3.6","@types/jasmine":"2.2.33","@types/systemjs":"^0.19.30","nodejs-websocket":"^1.2.0","gulp-clang-format":"^1.0.23","tslint-eslint-rules":"^3.1.0","karma-sauce-launcher":"^0.2.10","promises-aplus-tests":"^2.1.2","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","vrsource-tslint-rules":"^4.0.0","conventional-changelog":"^1.1.0","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6","google-closure-compiler":"^20170409.0.0","gulp-conventional-changelog":"^1.1.0"},"_npmOperationalInternal":{"tmp":"tmp/zone.js-0.8.8.tgz_1492816103538_0.6714584508445114","host":"packages-18-east.internal.npmjs.com"}},"0.8.9":{"name":"zone.js","version":"0.8.9","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.8.9","maintainers":[{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"34aaa9a3ec6d0e4acebd1b761adafa590473638b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.8.9.tgz","integrity":"sha512-uTN0t/AOIzXBo2ycEFv9tBwwHAtvnziTHFzoEazDfexXkF0n96NKVc8Jh715Ke7PSWxpsLnzFn4GYYEel4UDcw==","signatures":[{"sig":"MEUCIQCaoEYb+IBHAkJt2mH5aRVm3fU7WJBEjBTDYgElBCmqKgIgY3ZkdI7Hp2VrN7m/uVfWAkH7ZGSZVtpfxqM/OXKaIHM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/zone-node.js","_from":".","files":["lib","dist"],"_shasum":"34aaa9a3ec6d0e4acebd1b761adafa590473638b","browser":"dist/zone.js","gitHead":"89132fd2f6a4b77bae67fd208d2fb9c96b8f7f62","scripts":{"ci":"npm run lint && npm run format && npm run promisetest && npm run test:single && npm run test-node","tsc":"tsc","lint":"gulp lint","test":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"npm run karma-jasmine\"","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w","format":"gulp format:enforce","changelog":"gulp changelog","test-dist":"concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-dist-jasmine.conf.js\"","test-node":"gulp test/node","ws-client":"node ./test/ws-client.js","ws-server":"node ./test/ws-server.js","prepublish":"tsc && gulp build","test-mocha":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-build-mocha.conf.js\"","promisetest":"gulp promisetest","test:single":"npm run tsc && concurrently \"npm run ws-server\" \"npm run karma-jasmine:autoclose\"","closure:test":"scripts/closure/closure_compiler.sh","karma-jasmine":"karma start karma-build-jasmine.conf.js","karma-jasmine:single":"karma start karma-build-jasmine.conf.js --single-run","karma-jasmine:autoclose":"npm run karma-jasmine:single && npm run ws-client"},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"3.10.9","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"6.9.2","dependencies":{},"devDependencies":{"gulp":"^3.8.11","pump":"^1.0.1","karma":"^0.13.14","mocha":"^3.1.2","tslint":"^4.1.1","jasmine":"^2.4.1","gulp-tsc":"^1.1.4","systemjs":"^0.19.37","gulp-util":"^3.0.7","ts-loader":"^0.6.0","typescript":"2.2.1","@types/node":"^6.0.38","es6-promise":"^3.0.2","gulp-rename":"^1.2.2","gulp-rollup":"^2.3.0","gulp-tslint":"^7.0.1","gulp-uglify":"^1.2.0","karma-mocha":"^1.2.0","clang-format":"1.0.46","concurrently":"^2.2.0","jasmine-core":"^2.2.0","whatwg-fetch":"^2.0.1","karma-jasmine":"^0.3.6","@types/jasmine":"2.2.33","@types/systemjs":"^0.19.30","nodejs-websocket":"^1.2.0","gulp-clang-format":"^1.0.23","tslint-eslint-rules":"^3.1.0","karma-sauce-launcher":"^0.2.10","promises-aplus-tests":"^2.1.2","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","vrsource-tslint-rules":"^4.0.0","conventional-changelog":"^1.1.0","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6","google-closure-compiler":"^20170409.0.0","gulp-conventional-changelog":"^1.1.0"},"_npmOperationalInternal":{"tmp":"tmp/zone.js-0.8.9.tgz_1493137810368_0.5428338861092925","host":"packages-18-east.internal.npmjs.com"}},"0.8.10":{"name":"zone.js","version":"0.8.10","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.8.10","maintainers":[{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"6d1b696492c029cdbe808e59e87bbd9491b98aa8","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.8.10.tgz","integrity":"sha512-+EwwXmibeJGTyzh8XYg5g8bEiDmixU3/C/Gas+k7fhzIpeZZHlWWbUVip/6+8pVZpgLSRMRqZRY+ckGq0WYQsA==","signatures":[{"sig":"MEUCIQDP15L03hZcTdLV7XbOJHrf3Q7W0lMNAsLsg4Osl1uWtAIgXV6HDgAI1wnG09iyH63LMaxtSYhLVHCZSdH7IGTVreg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/zone-node.js","_from":".","files":["lib","dist"],"_shasum":"6d1b696492c029cdbe808e59e87bbd9491b98aa8","browser":"dist/zone.js","gitHead":"1d422f239f3e3e9beceeccedb20503ffcc984bbd","scripts":{"ci":"npm run lint && npm run format && npm run promisetest && npm run test:single && npm run test-node","tsc":"tsc","lint":"gulp lint","test":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"npm run karma-jasmine\"","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w","format":"gulp format:enforce","changelog":"gulp changelog","test-dist":"concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-dist-jasmine.conf.js\"","test-node":"gulp test/node","ws-client":"node ./test/ws-client.js","ws-server":"node ./test/ws-server.js","prepublish":"tsc && gulp build","test-mocha":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-build-mocha.conf.js\"","promisetest":"gulp promisetest","test:single":"npm run tsc && concurrently \"npm run ws-server\" \"npm run karma-jasmine:autoclose\"","closure:test":"scripts/closure/closure_compiler.sh","karma-jasmine":"karma start karma-build-jasmine.conf.js","karma-jasmine:single":"karma start karma-build-jasmine.conf.js --single-run","karma-jasmine:autoclose":"npm run karma-jasmine:single && npm run ws-client"},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"3.10.9","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"6.9.2","dependencies":{},"devDependencies":{"gulp":"^3.8.11","pump":"^1.0.1","karma":"^0.13.14","mocha":"^3.1.2","tslint":"^4.1.1","jasmine":"^2.4.1","gulp-tsc":"^1.1.4","systemjs":"^0.19.37","gulp-util":"^3.0.7","ts-loader":"^0.6.0","typescript":"2.2.1","@types/node":"^6.0.38","es6-promise":"^3.0.2","gulp-rename":"^1.2.2","gulp-rollup":"^2.3.0","gulp-tslint":"^7.0.1","gulp-uglify":"^1.2.0","karma-mocha":"^1.2.0","clang-format":"1.0.46","concurrently":"^2.2.0","jasmine-core":"^2.2.0","whatwg-fetch":"^2.0.1","karma-jasmine":"^0.3.6","@types/jasmine":"2.2.33","@types/systemjs":"^0.19.30","nodejs-websocket":"^1.2.0","gulp-clang-format":"^1.0.23","tslint-eslint-rules":"^3.1.0","karma-sauce-launcher":"^0.2.10","promises-aplus-tests":"^2.1.2","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","vrsource-tslint-rules":"^4.0.0","conventional-changelog":"^1.1.0","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6","google-closure-compiler":"^20170409.0.0","gulp-conventional-changelog":"^1.1.0"},"_npmOperationalInternal":{"tmp":"tmp/zone.js-0.8.10.tgz_1493837710124_0.5504589311312884","host":"packages-18-east.internal.npmjs.com"}},"0.8.11":{"name":"zone.js","version":"0.8.11","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.8.11","maintainers":[{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"742befb17fbc49a571712b8c7d87e58ca26fd886","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.8.11.tgz","integrity":"sha512-EFu06ihdSkUQH+77oRKOR1f7D0+Sxpokn4DGeu4YOM4zxrnr25sZ0zSc6fc355mSXz17B9S6bvUWypWq+QqKuA==","signatures":[{"sig":"MEYCIQCAJsQC5c5MQOeYp3MoD7S7SPCz/aNX6GIpjQOka9S0FwIhAM3OJuBhmmwcQJC+lFIrnVewodADu4lSNJDQdG7qfBYq","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/zone-node.js","_from":".","files":["lib","dist"],"_shasum":"742befb17fbc49a571712b8c7d87e58ca26fd886","browser":"dist/zone.js","gitHead":"b92b6e31abb384ad4ac3f38ee0df78ba21104684","scripts":{"ci":"npm run lint && npm run format && npm run promisetest && npm run test:single && npm run test-node","tsc":"tsc","lint":"gulp lint","test":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"npm run karma-jasmine\"","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w","format":"gulp format:enforce","changelog":"gulp changelog","test-dist":"concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-dist-jasmine.conf.js\"","test-node":"gulp test/node","ws-client":"node ./test/ws-client.js","ws-server":"node ./test/ws-server.js","prepublish":"tsc && gulp build","test-mocha":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-build-mocha.conf.js\"","promisetest":"gulp promisetest","test:single":"npm run tsc && concurrently \"npm run ws-server\" \"npm run karma-jasmine:autoclose\"","closure:test":"scripts/closure/closure_compiler.sh","karma-jasmine":"karma start karma-build-jasmine.conf.js","karma-jasmine:single":"karma start karma-build-jasmine.conf.js --single-run","karma-jasmine:autoclose":"npm run karma-jasmine:single && npm run ws-client"},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"3.10.9","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"6.9.2","dependencies":{},"devDependencies":{"gulp":"^3.8.11","pump":"^1.0.1","karma":"^0.13.14","mocha":"^3.1.2","tslint":"^4.1.1","jasmine":"^2.4.1","gulp-tsc":"^1.1.4","systemjs":"^0.19.37","gulp-util":"^3.0.7","ts-loader":"^0.6.0","typescript":"2.2.1","@types/node":"^6.0.38","es6-promise":"^3.0.2","gulp-rename":"^1.2.2","gulp-rollup":"^2.3.0","gulp-tslint":"^7.0.1","gulp-uglify":"^1.2.0","karma-mocha":"^1.2.0","clang-format":"1.0.46","concurrently":"^2.2.0","jasmine-core":"^2.2.0","whatwg-fetch":"^2.0.1","karma-jasmine":"^0.3.6","@types/jasmine":"2.2.33","@types/systemjs":"^0.19.30","nodejs-websocket":"^1.2.0","gulp-clang-format":"^1.0.23","tslint-eslint-rules":"^3.1.0","karma-sauce-launcher":"^0.2.10","promises-aplus-tests":"^2.1.2","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","vrsource-tslint-rules":"^4.0.0","conventional-changelog":"^1.1.0","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6","google-closure-compiler":"^20170409.0.0","gulp-conventional-changelog":"^1.1.0"},"_npmOperationalInternal":{"tmp":"tmp/zone.js-0.8.11.tgz_1495225763174_0.5787575948052108","host":"s3://npm-registry-packages"}},"0.8.12":{"name":"zone.js","version":"0.8.12","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.8.12","maintainers":[{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"86ff5053c98aec291a0bf4bbac501d694a05cfbb","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.8.12.tgz","integrity":"sha512-SPMZb9PTKy7Zu2atgFLtyLvK4bu+qzveJ3+KQtPNZpjqE0YbkCEdZGojcySd4jXkHfIzZ/UqGTMtBogJFigYNw==","signatures":[{"sig":"MEQCIAyte43X84iTL8eaR8FO1m0Nf6D7qgFVX2lp98YhAAPLAiArLAkKVOhQPZ8c2FR9UJkgjAkRI2p5t56UdUH/BkaLUQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/zone-node.js","_from":".","files":["lib","dist"],"_shasum":"86ff5053c98aec291a0bf4bbac501d694a05cfbb","browser":"dist/zone.js","gitHead":"351115926ca2c00029130641e822faba5571f165","scripts":{"ci":"npm run lint && npm run format && npm run promisetest && npm run test:single && npm run test-node","tsc":"tsc","lint":"gulp lint","test":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"npm run karma-jasmine\"","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w","format":"gulp format:enforce","changelog":"gulp changelog","test-dist":"concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-dist-jasmine.conf.js\"","test-node":"gulp test/node","ws-client":"node ./test/ws-client.js","ws-server":"node ./test/ws-server.js","prepublish":"tsc && gulp build","test-mocha":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-build-mocha.conf.js\"","promisetest":"gulp promisetest","test:single":"npm run tsc && concurrently \"npm run ws-server\" \"npm run karma-jasmine:autoclose\"","closure:test":"scripts/closure/closure_compiler.sh","karma-jasmine":"karma start karma-build-jasmine.conf.js","karma-jasmine:single":"karma start karma-build-jasmine.conf.js --single-run","karma-jasmine:autoclose":"npm run karma-jasmine:single && npm run ws-client"},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"3.10.9","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"6.9.2","dependencies":{},"devDependencies":{"gulp":"^3.8.11","pump":"^1.0.1","karma":"^0.13.14","mocha":"^3.1.2","tslint":"^4.1.1","jasmine":"^2.4.1","gulp-tsc":"^1.1.4","systemjs":"^0.19.37","gulp-util":"^3.0.7","ts-loader":"^0.6.0","typescript":"2.2.1","@types/node":"^6.0.38","es6-promise":"^3.0.2","gulp-rename":"^1.2.2","gulp-rollup":"^2.3.0","gulp-tslint":"^7.0.1","gulp-uglify":"^1.2.0","karma-mocha":"^1.2.0","clang-format":"1.0.46","concurrently":"^2.2.0","jasmine-core":"^2.2.0","whatwg-fetch":"^2.0.1","karma-jasmine":"^0.3.6","@types/jasmine":"2.2.33","@types/systemjs":"^0.19.30","nodejs-websocket":"^1.2.0","gulp-clang-format":"^1.0.23","tslint-eslint-rules":"^3.1.0","karma-sauce-launcher":"^0.2.10","promises-aplus-tests":"^2.1.2","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","vrsource-tslint-rules":"^4.0.0","conventional-changelog":"^1.1.0","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6","google-closure-compiler":"^20170409.0.0","gulp-conventional-changelog":"^1.1.0"},"_npmOperationalInternal":{"tmp":"tmp/zone.js-0.8.12.tgz_1496873818385_0.723560205893591","host":"s3://npm-registry-packages"}},"0.8.13":{"name":"zone.js","version":"0.8.13","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.8.13","maintainers":[{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"f0822525fad941582a03bbfe71eb21740315ddd0","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.8.13.tgz","integrity":"sha512-MfgrCfybwC9fotU/FozNXB3Cx/FbR0mlXGFKROrKmKrbRSldt4R8JoDVFGJGrWdq9CoXJ9p/Jxu/7oXlsvuaBw==","signatures":[{"sig":"MEYCIQCxtWI7i2ULgeOlQUQYrZTOb02wtVsk/D2BFs+k39nsuQIhAMY16tTLYPJKJWE6trW8wH80WxcBIwz9sGWWa15PXSWU","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/zone-node.js","_from":".","files":["lib","dist"],"_shasum":"f0822525fad941582a03bbfe71eb21740315ddd0","browser":"dist/zone.js","gitHead":"79baffb1def35b417f629d6d4121db2523234a51","scripts":{"ci":"npm run lint && npm run format && npm run promisetest && npm run test:single && npm run test-node","tsc":"tsc","lint":"gulp lint","test":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"npm run karma-jasmine\"","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w","format":"gulp format:enforce","changelog":"gulp changelog","test-dist":"concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-dist-jasmine.conf.js\"","test-node":"gulp test/node","ws-client":"node ./test/ws-client.js","ws-server":"node ./test/ws-server.js","prepublish":"tsc && gulp build","test-mocha":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-build-mocha.conf.js\"","promisetest":"gulp promisetest","test:single":"npm run tsc && concurrently \"npm run ws-server\" \"npm run karma-jasmine:autoclose\"","closure:test":"scripts/closure/closure_compiler.sh","karma-jasmine":"karma start karma-build-jasmine.conf.js","test:phantomjs":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"npm run karma-jasmine:phantomjs\"","webdriver-http":"node simple-server.js","webdriver-test":"node test/webdriver/test.js","webdriver-start":"webdriver-manager update && webdriver-manager start","karma-jasmine:single":"karma start karma-build-jasmine.conf.js --single-run","webdriver-sauce-test":"node test/webdriver/test.sauce.js","test:phantomjs-single":"concurrently \"npm run ws-server\" \"npm run karma-jasmine-phantomjs:autoclose\"","karma-jasmine:autoclose":"npm run karma-jasmine:single && npm run ws-client","karma-jasmine:phantomjs":"karma start karma-build-jasmine-phantomjs.conf.js --single-run","karma-jasmine-phantomjs:autoclose":"npm run karma-jasmine:phantomjs && npm run ws-client"},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"3.10.9","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"6.9.2","dependencies":{},"devDependencies":{"gulp":"^3.8.11","pump":"^1.0.1","karma":"^0.13.14","mocha":"^3.1.2","tslint":"^4.1.1","jasmine":"^2.4.1","gulp-tsc":"^1.1.4","systemjs":"^0.19.37","gulp-util":"^3.0.7","phantomjs":"^2.1.7","ts-loader":"^0.6.0","typescript":"2.2.1","@types/node":"^6.0.38","es6-promise":"^3.0.2","gulp-rename":"^1.2.2","gulp-rollup":"^2.3.0","gulp-tslint":"^7.0.1","gulp-uglify":"^1.2.0","karma-mocha":"^1.2.0","webdriverio":"^4.8.0","clang-format":"1.0.46","concurrently":"^2.2.0","jasmine-core":"^2.2.0","whatwg-fetch":"^2.0.1","karma-jasmine":"^0.3.6","@types/jasmine":"2.2.33","@types/systemjs":"^0.19.30","nodejs-websocket":"^1.2.0","gulp-clang-format":"^1.0.23","webdriver-manager":"^12.0.6","selenium-webdriver":"^3.4.0","tslint-eslint-rules":"^3.1.0","karma-sauce-launcher":"^0.2.10","promises-aplus-tests":"^2.1.2","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","vrsource-tslint-rules":"^4.0.0","conventional-changelog":"^1.1.0","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6","google-closure-compiler":"^20170409.0.0","karma-phantomjs-launcher":"^1.0.4","gulp-conventional-changelog":"^1.1.0"},"_npmOperationalInternal":{"tmp":"tmp/zone.js-0.8.13.tgz_1499894347218_0.7676873644813895","host":"s3://npm-registry-packages"}},"0.8.14":{"name":"zone.js","version":"0.8.14","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.8.14","maintainers":[{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"0c4db24b178232274ccb43f78c99db7f3642b6cf","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.8.14.tgz","integrity":"sha512-Ii3S/XnnoS6Vj/XnWFfEVGr6nx8F/L+uc4+f0VMdwHEf22CagVpA6Wotq5X+tZ7Bi2MoZixmhZvTWSbYA/r18w==","signatures":[{"sig":"MEYCIQDYX/Bvh7SbiGKr3FOraHBhm1qDniMcNW/L8g5lTUKIJgIhAJJs4CfsApu2HHVJAZPu00V7pht/gXy6fTmCPavrPxdD","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/zone-node.js","_from":".","files":["lib","dist"],"_shasum":"0c4db24b178232274ccb43f78c99db7f3642b6cf","browser":"dist/zone.js","gitHead":"5a010c6682449c6667fa9adc319623635c17769d","scripts":{"ci":"npm run lint && npm run format && npm run promisetest && npm run test:single && npm run test-node","tsc":"tsc","lint":"gulp lint","test":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"npm run karma-jasmine\"","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w","format":"gulp format:enforce","changelog":"gulp changelog","test-dist":"concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-dist-jasmine.conf.js\"","test-node":"gulp test/node","ws-client":"node ./test/ws-client.js","ws-server":"node ./test/ws-server.js","prepublish":"tsc && gulp build","test-mocha":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-build-mocha.conf.js\"","promisetest":"gulp promisetest","test:single":"npm run tsc && concurrently \"npm run ws-server\" \"npm run karma-jasmine:autoclose\"","closure:test":"scripts/closure/closure_compiler.sh","karma-jasmine":"karma start karma-build-jasmine.conf.js","test:phantomjs":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"npm run karma-jasmine:phantomjs\"","webdriver-http":"node simple-server.js","webdriver-test":"node test/webdriver/test.js","webdriver-start":"webdriver-manager update && webdriver-manager start","karma-jasmine:single":"karma start karma-build-jasmine.conf.js --single-run","webdriver-sauce-test":"node test/webdriver/test.sauce.js","test:phantomjs-single":"concurrently \"npm run ws-server\" \"npm run karma-jasmine-phantomjs:autoclose\"","karma-jasmine:autoclose":"npm run karma-jasmine:single && npm run ws-client","karma-jasmine:phantomjs":"karma start karma-build-jasmine-phantomjs.conf.js --single-run","karma-jasmine-phantomjs:autoclose":"npm run karma-jasmine:phantomjs && npm run ws-client"},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"3.10.9","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"6.9.2","dependencies":{},"devDependencies":{"gulp":"^3.8.11","pump":"^1.0.1","karma":"^0.13.14","mocha":"^3.1.2","tslint":"^4.1.1","jasmine":"^2.4.1","gulp-tsc":"^1.1.4","systemjs":"^0.19.37","gulp-util":"^3.0.7","phantomjs":"^2.1.7","ts-loader":"^0.6.0","typescript":"2.2.1","@types/node":"^6.0.38","es6-promise":"^3.0.2","gulp-rename":"^1.2.2","gulp-rollup":"^2.3.0","gulp-tslint":"^7.0.1","gulp-uglify":"^1.2.0","karma-mocha":"^1.2.0","webdriverio":"^4.8.0","clang-format":"1.0.46","concurrently":"^2.2.0","jasmine-core":"^2.2.0","whatwg-fetch":"^2.0.1","karma-jasmine":"^0.3.6","@types/jasmine":"2.2.33","@types/systemjs":"^0.19.30","nodejs-websocket":"^1.2.0","gulp-clang-format":"^1.0.23","webdriver-manager":"^12.0.6","selenium-webdriver":"^3.4.0","tslint-eslint-rules":"^3.1.0","karma-sauce-launcher":"^0.2.10","promises-aplus-tests":"^2.1.2","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","vrsource-tslint-rules":"^4.0.0","conventional-changelog":"^1.1.0","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6","google-closure-compiler":"^20170409.0.0","karma-phantomjs-launcher":"^1.0.4","gulp-conventional-changelog":"^1.1.0"},"_npmOperationalInternal":{"tmp":"tmp/zone.js-0.8.14.tgz_1500401288574_0.9826259107794613","host":"s3://npm-registry-packages"}},"0.8.16":{"name":"zone.js","version":"0.8.16","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.8.16","maintainers":[{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"ac31b6c418f88c0f918ad6acd8a402aca9313abb","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.8.16.tgz","integrity":"sha512-0xiyCZrXr8SmDTXSZgQCOhcJ+60+FdOhh4SbzjI73q/Mpz/dICx7J9fnxBFyflIC0QswNT9PduqFeUdbJJca8Q==","signatures":[{"sig":"MEYCIQDLoD/JflVsEFm2agHIo6uFGEA0BWMkN6BrJrt9nBFv4gIhAPlEGMgSat4bCAI5UiGQMN0QOresGGn7ZxK3kdUkq+9t","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/zone-node.js","_from":".","files":["lib","dist"],"_shasum":"ac31b6c418f88c0f918ad6acd8a402aca9313abb","browser":"dist/zone.js","gitHead":"b0c5076d70f65f48b743c981cdc56efb9745bd44","scripts":{"ci":"npm run lint && npm run format && npm run promisetest && npm run test:single && npm run test-node","tsc":"tsc -p .","lint":"gulp lint","test":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"npm run karma-jasmine\"","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w -p .","format":"gulp format:enforce","changelog":"gulp changelog","test-dist":"concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-dist-jasmine.conf.js\"","test-node":"gulp test/node","ws-client":"node ./test/ws-client.js","ws-server":"node ./test/ws-server.js","prepublish":"tsc && gulp build","test-mocha":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-build-mocha.conf.js\"","promisetest":"gulp promisetest","test:single":"npm run tsc && concurrently \"npm run ws-server\" \"npm run karma-jasmine:autoclose\"","closure:test":"scripts/closure/closure_compiler.sh","karma-jasmine":"karma start karma-build-jasmine.conf.js","test:phantomjs":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"npm run karma-jasmine:phantomjs\"","webdriver-http":"node simple-server.js","webdriver-test":"node test/webdriver/test.js","webdriver-start":"webdriver-manager update && webdriver-manager start","karma-jasmine:single":"karma start karma-build-jasmine.conf.js --single-run","webdriver-sauce-test":"node test/webdriver/test.sauce.js","test:phantomjs-single":"concurrently \"npm run ws-server\" \"npm run karma-jasmine-phantomjs:autoclose\"","karma-jasmine:autoclose":"npm run karma-jasmine:single && npm run ws-client","karma-jasmine:phantomjs":"karma start karma-build-jasmine-phantomjs.conf.js --single-run","karma-jasmine-phantomjs:autoclose":"npm run karma-jasmine:phantomjs && npm run ws-client"},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"3.10.9","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"6.9.2","dependencies":{},"devDependencies":{"gulp":"^3.8.11","pump":"^1.0.1","rxjs":"^5.4.2","karma":"^0.13.14","mocha":"^3.1.2","tslint":"^4.1.1","jasmine":"^2.4.1","gulp-tsc":"^1.1.4","systemjs":"^0.19.37","gulp-util":"^3.0.7","phantomjs":"^2.1.7","ts-loader":"^0.6.0","typescript":"2.2.1","@types/node":"^6.0.38","es6-promise":"^3.0.2","gulp-rename":"^1.2.2","gulp-rollup":"^2.3.0","gulp-tslint":"^7.0.1","gulp-uglify":"^1.2.0","karma-mocha":"^1.2.0","webdriverio":"^4.8.0","clang-format":"1.0.46","concurrently":"^2.2.0","jasmine-core":"^2.2.0","whatwg-fetch":"^2.0.1","karma-jasmine":"^0.3.6","@types/jasmine":"2.2.33","@types/systemjs":"^0.19.30","nodejs-websocket":"^1.2.0","gulp-clang-format":"^1.0.23","webdriver-manager":"^12.0.6","selenium-webdriver":"^3.4.0","tslint-eslint-rules":"^3.1.0","karma-sauce-launcher":"^0.2.10","promises-aplus-tests":"^2.1.2","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","vrsource-tslint-rules":"^4.0.0","conventional-changelog":"^1.1.0","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6","google-closure-compiler":"^20170409.0.0","karma-phantomjs-launcher":"^1.0.4","gulp-conventional-changelog":"^1.1.0"},"_npmOperationalInternal":{"tmp":"tmp/zone.js-0.8.16.tgz_1501196980256_0.10028813290409744","host":"s3://npm-registry-packages"}},"0.8.17":{"name":"zone.js","version":"0.8.17","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.8.17","maintainers":[{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"4c5e5185a857da8da793daf3919371c5a36b2a0b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.8.17.tgz","integrity":"sha512-1O32mZ5JWtzP5ydpAWJwyRlcjhudBGiG4K/n9YI8CLpikE/+7U9O2o6sVgYYiciCo0/AwA1AM3SH795NyaOCtA==","signatures":[{"sig":"MEYCIQCCWLbRCsgXdcyRZ4nQQdbFrfTTdLwNI/0D80ysa83x/AIhAP5pKrpvbHPi1Pf4H8Z46mC/AdNhT+PyXIhlRY8S4vFt","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/zone-node.js","_from":".","files":["lib","dist"],"_shasum":"4c5e5185a857da8da793daf3919371c5a36b2a0b","browser":"dist/zone.js","gitHead":"b9c0d9c09776bc253f3156ea511c9a1a5c952c31","scripts":{"ci":"npm run lint && npm run format && npm run promisetest && npm run test:single && npm run test-node","tsc":"tsc -p .","lint":"gulp lint","test":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"npm run karma-jasmine\"","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w -p .","format":"gulp format:enforce","changelog":"gulp changelog","test-dist":"concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-dist-jasmine.conf.js\"","test-node":"gulp test/node","ws-client":"node ./test/ws-client.js","ws-server":"node ./test/ws-server.js","prepublish":"tsc && gulp build","test-mocha":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-build-mocha.conf.js\"","promisetest":"gulp promisetest","test:single":"npm run tsc && concurrently \"npm run ws-server\" \"npm run karma-jasmine:autoclose\"","closure:test":"scripts/closure/closure_compiler.sh","karma-jasmine":"karma start karma-build-jasmine.conf.js","test:phantomjs":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"npm run karma-jasmine:phantomjs\"","webdriver-http":"node simple-server.js","webdriver-test":"node test/webdriver/test.js","webdriver-start":"webdriver-manager update && webdriver-manager start","karma-jasmine:single":"karma start karma-build-jasmine.conf.js --single-run","webdriver-sauce-test":"node test/webdriver/test.sauce.js","test:phantomjs-single":"npm run tsc && concurrently \"npm run ws-server\" \"npm run karma-jasmine-phantomjs:autoclose\"","karma-jasmine:autoclose":"npm run karma-jasmine:single && npm run ws-client","karma-jasmine:phantomjs":"karma start karma-build-jasmine-phantomjs.conf.js --single-run","karma-jasmine-phantomjs:autoclose":"npm run karma-jasmine:phantomjs && npm run ws-client"},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"3.10.9","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"6.9.2","dependencies":{},"devDependencies":{"gulp":"^3.8.11","pump":"^1.0.1","rxjs":"^5.4.2","karma":"^0.13.14","mocha":"^3.1.2","tslint":"^4.1.1","jasmine":"^2.4.1","gulp-tsc":"^1.1.4","systemjs":"^0.19.37","gulp-util":"^3.0.7","phantomjs":"^2.1.7","ts-loader":"^0.6.0","typescript":"2.2.1","@types/node":"^6.0.38","es6-promise":"^3.0.2","gulp-rename":"^1.2.2","gulp-rollup":"^2.3.0","gulp-tslint":"^7.0.1","gulp-uglify":"^1.2.0","karma-mocha":"^1.2.0","webdriverio":"^4.8.0","clang-format":"1.0.46","concurrently":"^2.2.0","jasmine-core":"^2.2.0","whatwg-fetch":"^2.0.1","karma-jasmine":"^0.3.6","@types/jasmine":"2.2.33","@types/systemjs":"^0.19.30","nodejs-websocket":"^1.2.0","gulp-clang-format":"^1.0.23","webdriver-manager":"^12.0.6","selenium-webdriver":"^3.4.0","tslint-eslint-rules":"^3.1.0","karma-sauce-launcher":"^0.2.10","promises-aplus-tests":"^2.1.2","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","vrsource-tslint-rules":"^4.0.0","conventional-changelog":"^1.1.0","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6","google-closure-compiler":"^20170409.0.0","karma-phantomjs-launcher":"^1.0.4","gulp-conventional-changelog":"^1.1.0"},"_npmOperationalInternal":{"tmp":"tmp/zone.js-0.8.17.tgz_1503513641781_0.3296515189576894","host":"s3://npm-registry-packages"}},"0.8.18":{"name":"zone.js","version":"0.8.18","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.8.18","maintainers":[{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"8cecb3977fcd1b3090562ff4570e2847e752b48d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.8.18.tgz","integrity":"sha512-knKOBQM0oea3/x9pdyDuDi7RhxDlJhOIkeixXSiTKWLgs4LpK37iBc+1HaHwzlciHUKT172CymJFKo8Xgh+44Q==","signatures":[{"sig":"MEYCIQCc9LkvaACCQQ/dfil+KtMXj+iaZ5R7LEWwJUU6iPE0yQIhAPgw46kPfGu7O08qn6FJsv3KVelBIZsPjTmXlf48cFJ6","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/zone-node.js","files":["lib","dist"],"browser":"dist/zone.js","gitHead":"e5fa5620ef35dfaa6f1cba31c27e1ec5d0b45333","scripts":{"ci":"npm run lint && npm run format && npm run promisetest && npm run test:single && npm run test-node","tsc":"tsc -p .","lint":"gulp lint","test":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"npm run karma-jasmine\"","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w -p .","format":"gulp format:enforce","changelog":"gulp changelog","test-dist":"concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-dist-jasmine.conf.js\"","test-node":"gulp test/node","ws-client":"node ./test/ws-client.js","ws-server":"node ./test/ws-server.js","prepublish":"tsc && gulp build","test-mocha":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-build-mocha.conf.js\"","promisetest":"gulp promisetest","test:single":"npm run tsc && concurrently \"npm run ws-server\" \"npm run karma-jasmine:autoclose\"","closure:test":"scripts/closure/closure_compiler.sh","karma-jasmine":"karma start karma-build-jasmine.conf.js","test:phantomjs":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"npm run karma-jasmine:phantomjs\"","webdriver-http":"node simple-server.js","webdriver-test":"node test/webdriver/test.js","webdriver-start":"webdriver-manager update && webdriver-manager start","karma-jasmine:single":"karma start karma-build-jasmine.conf.js --single-run","webdriver-sauce-test":"node test/webdriver/test.sauce.js","test:phantomjs-single":"npm run tsc && concurrently \"npm run ws-server\" \"npm run karma-jasmine-phantomjs:autoclose\"","karma-jasmine:autoclose":"npm run karma-jasmine:single && npm run ws-client","karma-jasmine:phantomjs":"karma start karma-build-jasmine-phantomjs.conf.js --single-run","karma-jasmine-phantomjs:autoclose":"npm run karma-jasmine:phantomjs && npm run ws-client"},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"5.3.0","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"6.9.2","dependencies":{},"devDependencies":{"gulp":"^3.8.11","pump":"^1.0.1","rxjs":"^5.4.2","karma":"^0.13.14","mocha":"^3.1.2","tslint":"^4.1.1","jasmine":"^2.4.1","gulp-tsc":"^1.1.4","systemjs":"^0.19.37","gulp-util":"^3.0.7","phantomjs":"^2.1.7","ts-loader":"^0.6.0","typescript":"2.3.4","@types/node":"^6.0.38","es6-promise":"^3.0.2","gulp-rename":"^1.2.2","gulp-rollup":"^2.3.0","gulp-tslint":"^7.0.1","gulp-uglify":"^1.2.0","karma-mocha":"^1.2.0","webdriverio":"^4.8.0","clang-format":"1.0.46","concurrently":"^2.2.0","jasmine-core":"^2.2.0","whatwg-fetch":"^2.0.1","karma-jasmine":"^0.3.6","@types/jasmine":"2.2.33","@types/systemjs":"^0.19.30","nodejs-websocket":"^1.2.0","gulp-clang-format":"^1.0.23","webdriver-manager":"^12.0.6","selenium-webdriver":"^3.4.0","tslint-eslint-rules":"^3.1.0","karma-sauce-launcher":"^0.2.10","promises-aplus-tests":"^2.1.2","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","vrsource-tslint-rules":"^4.0.0","conventional-changelog":"^1.1.0","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6","google-closure-compiler":"^20170409.0.0","karma-phantomjs-launcher":"^1.0.4","gulp-conventional-changelog":"^1.1.0"},"_npmOperationalInternal":{"tmp":"tmp/zone.js-0.8.18.tgz_1506551627130_0.03645281586796045","host":"s3://npm-registry-packages"}},"0.8.19":{"name":"zone.js","version":"0.8.19","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.8.19","maintainers":[{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"a4b522cd9e8b7b616a638c297d720d4c7f292f71","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.8.19.tgz","integrity":"sha512-l9rofaOs6a4y1W8zt4pDmnCUCnYG377dG+5SZlXNWrTWYUuXFqcJZiOarhYiRVR0NI9sH/8ooPJiz4uprB/Mkg==","signatures":[{"sig":"MEQCIHuHIoyyM3DbJtlE8VwS1PhZP/j8ENd0XVkwDPluvHqUAiAaioDN4rVT4SkkodtfEXpUUqi1cIhGSkPFehtSYDK/Ag==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/zone-node.js","files":["lib","dist"],"unpkg":"dist/zone.js","browser":"dist/zone.js","gitHead":"338e4b6caee4c98756db5901745aa3f45d45d7ec","scripts":{"ci":"npm run lint && npm run format && npm run promisetest && npm run test:single && npm run test-node","tsc":"tsc -p .","lint":"gulp lint","test":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"npm run karma-jasmine\"","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w -p .","format":"gulp format:enforce","tslint":"tslint -c tslint.json 'lib/**/*.ts'","changelog":"gulp changelog","test-dist":"concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-dist-jasmine.conf.js\"","test-node":"gulp test/node","ws-client":"node ./test/ws-client.js","ws-server":"node ./test/ws-server.js","prepublish":"tsc && gulp build","test-mocha":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-build-mocha.conf.js\"","promisetest":"gulp promisetest","test:single":"npm run tsc && concurrently \"npm run ws-server\" \"npm run karma-jasmine:autoclose\"","closure:test":"scripts/closure/closure_compiler.sh","karma-jasmine":"karma start karma-build-jasmine.conf.js","test:phantomjs":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"npm run karma-jasmine:phantomjs\"","webdriver-http":"node simple-server.js","webdriver-test":"node test/webdriver/test.js","webdriver-start":"webdriver-manager update && webdriver-manager start","karma-jasmine:single":"karma start karma-build-jasmine.conf.js --single-run","webdriver-sauce-test":"node test/webdriver/test.sauce.js","test:phantomjs-single":"npm run tsc && concurrently \"npm run ws-server\" \"npm run karma-jasmine-phantomjs:autoclose\"","karma-jasmine:autoclose":"npm run karma-jasmine:single && npm run ws-client","karma-jasmine:phantomjs":"karma start karma-build-jasmine-phantomjs.conf.js --single-run","karma-jasmine-phantomjs:autoclose":"npm run karma-jasmine:phantomjs && npm run ws-client"},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"5.5.1","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"6.9.2","dependencies":{},"devDependencies":{"gulp":"^3.8.11","pump":"^1.0.1","rxjs":"^5.5.3","karma":"^0.13.14","mocha":"^3.1.2","tslint":"^4.1.1","jasmine":"^2.4.1","gulp-tsc":"^1.1.4","systemjs":"^0.19.37","gulp-util":"^3.0.7","phantomjs":"^2.1.7","ts-loader":"^0.6.0","typescript":"2.5.2","@types/node":"^6.0.38","es6-promise":"^3.0.2","gulp-rename":"^1.2.2","gulp-rollup":"^2.3.0","gulp-tslint":"^7.0.1","gulp-uglify":"^1.2.0","karma-mocha":"^1.2.0","webdriverio":"^4.8.0","clang-format":"1.0.46","concurrently":"^2.2.0","jasmine-core":"^2.2.0","whatwg-fetch":"^2.0.1","karma-jasmine":"^0.3.6","@types/jasmine":"2.2.33","@types/systemjs":"^0.19.30","nodejs-websocket":"^1.2.0","gulp-clang-format":"^1.0.23","webdriver-manager":"^12.0.6","selenium-webdriver":"^3.4.0","tslint-eslint-rules":"^3.1.0","karma-sauce-launcher":"^0.2.10","promises-aplus-tests":"^2.1.2","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","vrsource-tslint-rules":"^4.0.0","conventional-changelog":"^1.1.0","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6","google-closure-compiler":"^20170409.0.0","karma-phantomjs-launcher":"^1.0.4","gulp-conventional-changelog":"^1.1.0"},"_npmOperationalInternal":{"tmp":"tmp/zone.js-0.8.19.tgz_1514414320355_0.5740662307944149","host":"s3://npm-registry-packages"}},"0.8.20":{"name":"zone.js","version":"0.8.20","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.8.20","maintainers":[{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"a218c48db09464b19ff6fc8f0d4bb5b1046e185d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.8.20.tgz","integrity":"sha512-FXlA37ErSXCMy5RNBcGFgCI/Zivqzr0D19GuvDxhcYIJc7xkFp6c29DKyODJu0Zo+EMyur/WPPgcBh1EHjB9jA==","signatures":[{"sig":"MEUCIDDL4LczmueLgSYvgvlTU0SktTvqHRA20x51hu1xiaeYAiEAjvSAhIej3sNiU/zK9mtg24m8AM0fY4MOeegfEHqRGPQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/zone-node.js","files":["lib","dist"],"unpkg":"dist/zone.js","browser":"dist/zone.js","gitHead":"fd91152e615e3e8fbe69102f370fd32df8e3e174","scripts":{"ci":"npm run lint && npm run format && npm run promisetest && npm run test:single && npm run test-node","tsc":"tsc -p .","lint":"gulp lint","test":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"npm run karma-jasmine\"","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w -p .","format":"gulp format:enforce","tslint":"tslint -c tslint.json 'lib/**/*.ts'","changelog":"gulp changelog","test-dist":"concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-dist-jasmine.conf.js\"","test-node":"gulp test/node","ws-client":"node ./test/ws-client.js","ws-server":"node ./test/ws-server.js","prepublish":"tsc && gulp build","test-mocha":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-build-mocha.conf.js\"","promisetest":"gulp promisetest","test:single":"npm run tsc && concurrently \"npm run ws-server\" \"npm run karma-jasmine:autoclose\"","closure:test":"scripts/closure/closure_compiler.sh","karma-jasmine":"karma start karma-build-jasmine.conf.js","test:phantomjs":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"npm run karma-jasmine:phantomjs\"","webdriver-http":"node simple-server.js","webdriver-test":"node test/webdriver/test.js","webdriver-start":"webdriver-manager update && webdriver-manager start","karma-jasmine:single":"karma start karma-build-jasmine.conf.js --single-run","webdriver-sauce-test":"node test/webdriver/test.sauce.js","test:phantomjs-single":"npm run tsc && concurrently \"npm run ws-server\" \"npm run karma-jasmine-phantomjs:autoclose\"","karma-jasmine:autoclose":"npm run karma-jasmine:single && npm run ws-client","karma-jasmine:phantomjs":"karma start karma-build-jasmine-phantomjs.conf.js --single-run","karma-jasmine-phantomjs:autoclose":"npm run karma-jasmine:phantomjs && npm run ws-client"},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"5.5.1","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"6.9.2","dependencies":{},"devDependencies":{"gulp":"^3.8.11","pump":"^1.0.1","rxjs":"^5.5.3","karma":"^0.13.14","mocha":"^3.1.2","tslint":"^4.1.1","jasmine":"^2.4.1","gulp-tsc":"^1.1.4","systemjs":"^0.19.37","gulp-util":"^3.0.7","phantomjs":"^2.1.7","ts-loader":"^0.6.0","typescript":"2.5.2","@types/node":"^6.0.38","es6-promise":"^3.0.2","gulp-rename":"^1.2.2","gulp-rollup":"^2.3.0","gulp-tslint":"^7.0.1","gulp-uglify":"^1.2.0","karma-mocha":"^1.2.0","webdriverio":"^4.8.0","clang-format":"1.0.46","concurrently":"^2.2.0","jasmine-core":"^2.2.0","whatwg-fetch":"^2.0.1","karma-jasmine":"^0.3.6","@types/jasmine":"2.2.33","@types/systemjs":"^0.19.30","nodejs-websocket":"^1.2.0","gulp-clang-format":"^1.0.23","webdriver-manager":"^12.0.6","selenium-webdriver":"^3.4.0","tslint-eslint-rules":"^3.1.0","karma-sauce-launcher":"^0.2.10","promises-aplus-tests":"^2.1.2","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","vrsource-tslint-rules":"^4.0.0","conventional-changelog":"^1.1.0","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6","google-closure-compiler":"^20170409.0.0","karma-phantomjs-launcher":"^1.0.4","gulp-conventional-changelog":"^1.1.0"},"_npmOperationalInternal":{"tmp":"tmp/zone.js-0.8.20.tgz_1515623526940_0.36898547667078674","host":"s3://npm-registry-packages"}},"0.8.21":{"name":"zone.js","version":"0.8.21","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.8.21","maintainers":[{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"8c0e8e361bd326ee1474e4f96e17d5ef99bec4b2","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.8.21.tgz","fileCount":107,"integrity":"sha512-m1WXv1AU6j5aGpl5GU4Zy52dO6udOoQLVKaAEThGLvQxRFPMNLv9DoF7NVQJ0lixyTb5Dr+031VzlhgDto0w5Q==","signatures":[{"sig":"MEUCIQCHCpwTzDLtC04hJPswquFuWPSJcV2DAouUpxVTve9UZwIgPJ0o4IvsgvXbZPwWiJTlOK5Zd6t5sKV2zgIZC6Cxfro=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1377087},"main":"dist/zone-node.js","files":["lib","dist"],"unpkg":"dist/zone.js","browser":"dist/zone.js","gitHead":"15431faed8516c0f121fa2b68ce564784f64fb7a","scripts":{"ci":"npm run lint && npm run format && npm run promisetest && npm run test:single && npm run test-node","tsc":"tsc -p .","lint":"gulp lint","test":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"npm run karma-jasmine\"","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w -p .","format":"gulp format:enforce","tslint":"tslint -c tslint.json 'lib/**/*.ts'","changelog":"gulp changelog","test-dist":"concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-dist-jasmine.conf.js\"","test-node":"gulp test/node","ws-client":"node ./test/ws-client.js","ws-server":"node ./test/ws-server.js","prepublish":"tsc && gulp build","test-mocha":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-build-mocha.conf.js\"","promisetest":"gulp promisetest","test:single":"npm run tsc && concurrently \"npm run ws-server\" \"npm run karma-jasmine:autoclose\"","closure:test":"scripts/closure/closure_compiler.sh","karma-jasmine":"karma start karma-build-jasmine.conf.js","test-bluebird":"gulp test/bluebird","test:phantomjs":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"npm run karma-jasmine:phantomjs\"","webdriver-http":"node simple-server.js","webdriver-test":"node test/webdriver/test.js","webdriver-start":"webdriver-manager update && webdriver-manager start","promisefinallytest":"mocha promise.finally.spec.js","karma-jasmine:single":"karma start karma-build-jasmine.conf.js --single-run","webdriver-sauce-test":"node test/webdriver/test.sauce.js","test:phantomjs-single":"npm run tsc && concurrently \"npm run ws-server\" \"npm run karma-jasmine-phantomjs:autoclose\"","karma-jasmine:autoclose":"npm run karma-jasmine:single && npm run ws-client","karma-jasmine:phantomjs":"karma start karma-build-jasmine-phantomjs.conf.js --single-run","karma-jasmine-phantomjs:autoclose":"npm run karma-jasmine:phantomjs && npm run ws-client"},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"devops+npm@angular.io"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"5.5.1","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"8.9.2","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.8.11","pump":"^1.0.1","rxjs":"^5.5.3","karma":"^0.13.14","mocha":"^3.1.2","assert":"^1.4.1","tslint":"^4.1.1","jasmine":"^2.9.1","bluebird":"^3.5.1","gulp-tsc":"^1.1.4","systemjs":"^0.19.37","gulp-util":"^3.0.7","phantomjs":"^2.1.7","ts-loader":"^0.6.0","typescript":"2.5.2","@types/node":"^6.0.96","es6-promise":"^3.0.2","gulp-rename":"^1.2.2","gulp-rollup":"^2.16.1","gulp-tslint":"^7.0.1","gulp-uglify":"^1.2.0","karma-mocha":"^1.2.0","webdriverio":"^4.8.0","clang-format":"1.0.46","concurrently":"^2.2.0","jasmine-core":"^2.9.1","whatwg-fetch":"^2.0.1","karma-jasmine":"^1.1.1","@types/jasmine":"2.2.33","@types/systemjs":"^0.19.30","nodejs-websocket":"^1.2.0","gulp-clang-format":"^1.0.25","webdriver-manager":"^12.0.6","selenium-webdriver":"^3.4.0","tslint-eslint-rules":"^3.1.0","karma-sauce-launcher":"^0.2.10","promises-aplus-tests":"^2.1.2","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","vrsource-tslint-rules":"^4.0.0","conventional-changelog":"^1.1.7","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6","google-closure-compiler":"^20170409.0.0","karma-phantomjs-launcher":"^1.0.4","gulp-conventional-changelog":"^1.1.7"},"_npmOperationalInternal":{"tmp":"tmp/zone.js_0.8.21_1522444659527_0.6821188482252518","host":"s3://npm-registry-packages"}},"0.8.22":{"name":"zone.js","version":"0.8.22","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.8.22","maintainers":[{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"e200ceb210283ad7f4dc744d1b75f9558832f387","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.8.22.tgz","fileCount":109,"integrity":"sha512-gbf7lG63ChUHI7NkIhd0fphkN8+hr2yiUh9QQvN3MMuSPNcbBEf+sb3Pj+z1p3tWT9HSXwrZZsmehfvsAQ6eWg==","signatures":[{"sig":"MEYCIQDag4aYtkRUtC66QOUo31kPkuuUnjSJXLC7kYFjf2pn2QIhAIBIIh47YGSE2pwjKdE9CeUhlvfoE4vKNkoYc3MVkVlq","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1410166},"main":"dist/zone-node.js","files":["lib","dist"],"unpkg":"dist/zone.js","browser":"dist/zone.js","gitHead":"ac4ceb336a0e680fe36e0d8392ce8c616c852979","scripts":{"ci":"npm run lint && npm run format && npm run promisetest && npm run test:single && npm run test-node","tsc":"tsc -p .","lint":"gulp lint","test":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"npm run karma-jasmine\"","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w -p .","format":"gulp format:enforce","tslint":"tslint -c tslint.json 'lib/**/*.ts'","changelog":"gulp changelog","test-dist":"concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-dist-jasmine.conf.js\"","test-node":"gulp test/node","ws-client":"node ./test/ws-client.js","ws-server":"node ./test/ws-server.js","prepublish":"tsc && gulp build","test-mocha":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-build-mocha.conf.js\"","promisetest":"gulp promisetest","test:single":"npm run tsc && concurrently \"npm run ws-server\" \"npm run karma-jasmine:autoclose\"","closure:test":"scripts/closure/closure_compiler.sh","karma-jasmine":"karma start karma-build-jasmine.conf.js","test-bluebird":"gulp test/bluebird","test:phantomjs":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"npm run karma-jasmine:phantomjs\"","webdriver-http":"node simple-server.js","webdriver-test":"node test/webdriver/test.js","webdriver-start":"webdriver-manager update && webdriver-manager start","promisefinallytest":"mocha promise.finally.spec.js","karma-jasmine:single":"karma start karma-build-jasmine.conf.js --single-run","webdriver-sauce-test":"node test/webdriver/test.sauce.js","test:phantomjs-single":"npm run tsc && concurrently \"npm run ws-server\" \"npm run karma-jasmine-phantomjs:autoclose\"","karma-jasmine:autoclose":"npm run karma-jasmine:single && npm run ws-client","karma-jasmine:phantomjs":"karma start karma-build-jasmine-phantomjs.conf.js --single-run","karma-jasmine-phantomjs:autoclose":"npm run karma-jasmine:phantomjs && npm run ws-client"},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"devops+npm@angular.io"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"5.6.0","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"9.10.1","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.8.11","pump":"^1.0.1","rxjs":"^5.5.3","karma":"^0.13.14","mocha":"^3.1.2","assert":"^1.4.1","tslint":"^4.1.1","jasmine":"^2.9.1","bluebird":"^3.5.1","gulp-tsc":"^1.1.4","systemjs":"^0.19.37","gulp-util":"^3.0.7","phantomjs":"^2.1.7","ts-loader":"^0.6.0","typescript":"2.5.2","@types/node":"^6.0.96","es6-promise":"^3.0.2","gulp-rename":"^1.2.2","gulp-rollup":"^2.16.1","gulp-tslint":"^7.0.1","gulp-uglify":"^1.2.0","karma-mocha":"^1.2.0","webdriverio":"^4.8.0","clang-format":"1.0.46","concurrently":"^2.2.0","jasmine-core":"^2.9.1","whatwg-fetch":"^2.0.1","karma-jasmine":"^1.1.1","@types/jasmine":"2.2.33","@types/systemjs":"^0.19.30","nodejs-websocket":"^1.2.0","gulp-clang-format":"^1.0.25","webdriver-manager":"^12.0.6","selenium-webdriver":"^3.4.0","tslint-eslint-rules":"^3.1.0","karma-sauce-launcher":"^0.2.10","promises-aplus-tests":"^2.1.2","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","vrsource-tslint-rules":"^4.0.0","conventional-changelog":"^1.1.7","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6","google-closure-compiler":"^20170409.0.0","karma-phantomjs-launcher":"^1.0.4","gulp-conventional-changelog":"^1.1.7"},"_npmOperationalInternal":{"tmp":"tmp/zone.js_0.8.22_1522513154283_0.392612371495515","host":"s3://npm-registry-packages"}},"0.8.23":{"name":"zone.js","version":"0.8.23","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.8.23","maintainers":[{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"7ab0bc9bedb4b9197864563841b4b478dd9bfce7","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.8.23.tgz","fileCount":109,"integrity":"sha512-RkPiyva5RehrI9XhSZglhHZtg45bwCpKzozP/3LccZTf9uZNK9mPQBWIP7gMjpLmNNYoAm031aOO71Gqn76wuQ==","signatures":[{"sig":"MEQCIEZeRWhJLlqtASib5sjF9GzuX3UbiDSadmi1JlGs/Zo0AiBL6NiK8489OfFc860oB6SSh6nyiEZ+mLzB3wbkmOC0ug==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1402778},"main":"dist/zone-node.js","files":["lib","dist"],"unpkg":"dist/zone.js","browser":"dist/zone.js","gitHead":"afdbb7d1286a6b09302a5a552f4612add460fb0a","scripts":{"ci":"npm run lint && npm run format && npm run promisetest && npm run test:single && npm run test-node","tsc":"tsc -p .","lint":"gulp lint","test":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"npm run karma-jasmine\"","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w -p .","format":"gulp format:enforce","tslint":"tslint -c tslint.json 'lib/**/*.ts'","changelog":"gulp changelog","test-dist":"concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-dist-jasmine.conf.js\"","test-node":"gulp test/node","ws-client":"node ./test/ws-client.js","ws-server":"node ./test/ws-server.js","prepublish":"tsc && gulp build","test-mocha":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-build-mocha.conf.js\"","promisetest":"gulp promisetest","test:single":"npm run tsc && concurrently \"npm run ws-server\" \"npm run karma-jasmine:autoclose\"","closure:test":"scripts/closure/closure_compiler.sh","karma-jasmine":"karma start karma-build-jasmine.conf.js","test-bluebird":"gulp test/bluebird","test:phantomjs":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"npm run karma-jasmine:phantomjs\"","webdriver-http":"node simple-server.js","webdriver-test":"node test/webdriver/test.js","webdriver-start":"webdriver-manager update && webdriver-manager start","promisefinallytest":"mocha promise.finally.spec.js","karma-jasmine:single":"karma start karma-build-jasmine.conf.js --single-run","webdriver-sauce-test":"node test/webdriver/test.sauce.js","test:phantomjs-single":"npm run tsc && concurrently \"npm run ws-server\" \"npm run karma-jasmine-phantomjs:autoclose\"","karma-jasmine:autoclose":"npm run karma-jasmine:single && npm run ws-client","karma-jasmine:phantomjs":"karma start karma-build-jasmine-phantomjs.conf.js --single-run","karma-jasmine-phantomjs:autoclose":"npm run karma-jasmine:phantomjs && npm run ws-client"},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"devops+npm@angular.io"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"5.6.0","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"9.10.1","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.8.11","pump":"^1.0.1","rxjs":"^5.5.3","karma":"^0.13.14","mocha":"^3.1.2","assert":"^1.4.1","tslint":"^4.1.1","jasmine":"^2.9.1","bluebird":"^3.5.1","gulp-tsc":"^1.1.4","systemjs":"^0.19.37","gulp-util":"^3.0.7","phantomjs":"^2.1.7","ts-loader":"^0.6.0","typescript":"2.5.2","@types/node":"^6.0.96","es6-promise":"^3.0.2","gulp-rename":"^1.2.2","gulp-rollup":"^2.16.1","gulp-tslint":"^7.0.1","gulp-uglify":"^1.2.0","karma-mocha":"^1.2.0","webdriverio":"^4.8.0","clang-format":"1.0.46","concurrently":"^2.2.0","jasmine-core":"^2.9.1","whatwg-fetch":"^2.0.1","karma-jasmine":"^1.1.1","@types/jasmine":"2.2.33","@types/systemjs":"^0.19.30","nodejs-websocket":"^1.2.0","gulp-clang-format":"^1.0.25","webdriver-manager":"^12.0.6","selenium-webdriver":"^3.4.0","tslint-eslint-rules":"^3.1.0","karma-sauce-launcher":"^0.2.10","promises-aplus-tests":"^2.1.2","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","vrsource-tslint-rules":"^4.0.0","conventional-changelog":"^1.1.7","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6","google-closure-compiler":"^20170409.0.0","karma-phantomjs-launcher":"^1.0.4","gulp-conventional-changelog":"^1.1.7"},"_npmOperationalInternal":{"tmp":"tmp/zone.js_0.8.23_1522546898591_0.3163588162121467","host":"s3://npm-registry-packages"}},"0.8.24":{"name":"zone.js","version":"0.8.24","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.8.24","maintainers":[{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"f12a733d564dae589843d2e199fba132212203b8","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.8.24.tgz","fileCount":107,"integrity":"sha512-j9S2mKbNPm++vhn4SR4gWoB44bXL71nZ4t0ihk2yxic95Pb1l26Yex38w2/4djh0v72NO1cOYAPw8swMGYjeLw==","signatures":[{"sig":"MEYCIQCTxyANiyz5P/VRMCbxwjaJNsug6Krteyec9noBRLE7lAIhAKIbDeHWeFZzLtwOFTe283JSrqJhfkn7yHZ96XcK8w91","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1383697},"main":"dist/zone-node.js","files":["lib","dist"],"unpkg":"dist/zone.js","browser":"dist/zone.js","gitHead":"389762ca48f8850a42825a38ca871934fd65fd46","scripts":{"ci":"npm run lint && npm run format && npm run promisetest && npm run test:single && npm run test-node","tsc":"tsc -p .","lint":"gulp lint","test":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"npm run karma-jasmine\"","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w -p .","format":"gulp format:enforce","tslint":"tslint -c tslint.json 'lib/**/*.ts'","changelog":"gulp changelog","test-dist":"concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-dist-jasmine.conf.js\"","test-node":"gulp test/node","ws-client":"node ./test/ws-client.js","ws-server":"node ./test/ws-server.js","prepublish":"tsc && gulp build","test-mocha":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-build-mocha.conf.js\"","promisetest":"gulp promisetest","test:single":"npm run tsc && concurrently \"npm run ws-server\" \"npm run karma-jasmine:autoclose\"","closure:test":"scripts/closure/closure_compiler.sh","karma-jasmine":"karma start karma-build-jasmine.conf.js","test-bluebird":"gulp test/bluebird","test:phantomjs":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"npm run karma-jasmine:phantomjs\"","webdriver-http":"node simple-server.js","webdriver-test":"node test/webdriver/test.js","webdriver-start":"webdriver-manager update && webdriver-manager start","promisefinallytest":"mocha promise.finally.spec.js","karma-jasmine:single":"karma start karma-build-jasmine.conf.js --single-run","webdriver-sauce-test":"node test/webdriver/test.sauce.js","test:phantomjs-single":"npm run tsc && concurrently \"npm run ws-server\" \"npm run karma-jasmine-phantomjs:autoclose\"","karma-jasmine:autoclose":"npm run karma-jasmine:single && npm run ws-client","karma-jasmine:phantomjs":"karma start karma-build-jasmine-phantomjs.conf.js --single-run","karma-jasmine-phantomjs:autoclose":"npm run karma-jasmine:phantomjs && npm run ws-client"},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"devops+npm@angular.io"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"5.5.1","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"8.9.2","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.8.11","pump":"^1.0.1","rxjs":"^5.5.3","karma":"^0.13.14","mocha":"^3.1.2","assert":"^1.4.1","tslint":"^4.1.1","jasmine":"^2.9.1","bluebird":"^3.5.1","gulp-tsc":"^1.1.4","systemjs":"^0.19.37","gulp-util":"^3.0.7","phantomjs":"^2.1.7","ts-loader":"^0.6.0","typescript":"2.5.2","@types/node":"^6.0.96","es6-promise":"^3.0.2","gulp-rename":"^1.2.2","gulp-rollup":"^2.16.1","gulp-tslint":"^7.0.1","gulp-uglify":"^1.2.0","karma-mocha":"^1.2.0","webdriverio":"^4.8.0","clang-format":"1.0.46","concurrently":"^2.2.0","jasmine-core":"^2.9.1","whatwg-fetch":"^2.0.1","karma-jasmine":"^1.1.1","@types/jasmine":"2.2.33","@types/systemjs":"^0.19.30","nodejs-websocket":"^1.2.0","gulp-clang-format":"^1.0.25","webdriver-manager":"^12.0.6","selenium-webdriver":"^3.4.0","tslint-eslint-rules":"^3.1.0","karma-sauce-launcher":"^0.2.10","promises-aplus-tests":"^2.1.2","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","vrsource-tslint-rules":"^4.0.0","conventional-changelog":"^1.1.7","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6","google-closure-compiler":"^20170409.0.0","karma-phantomjs-launcher":"^1.0.4","gulp-conventional-changelog":"^1.1.7"},"_npmOperationalInternal":{"tmp":"tmp/zone.js_0.8.24_1522693860656_0.920896865163433","host":"s3://npm-registry-packages"}},"0.8.25":{"name":"zone.js","version":"0.8.25","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.8.25","maintainers":[{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"e20e5e85b881e2e66352612b5f238e8309e5badd","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.8.25.tgz","fileCount":107,"integrity":"sha512-/4HpggPPo8aVMDhB18X0734eZftRNPR8Y9kURWzwzXMFi5rp6Igk5kFrlIIY6AueLlm1zcvi2WBOqBTvrX+0Rw==","signatures":[{"sig":"MEUCIQDb7R2fE4VolEDC9M+qaxEoHWfpDfb+ZGDiOTlAdEtvHAIgOoUO0EblXszgRL33jwXjxTzAax5S6w0PbT+yslG8sT8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1406282},"main":"dist/zone-node.js","files":["lib","dist"],"unpkg":"dist/zone.js","browser":"dist/zone.js","gitHead":"3bdfdad80539f2b2250f0a7f2efc5a516926f268","scripts":{"ci":"npm run lint && npm run format && npm run promisetest && npm run test:single && npm run test-node","tsc":"tsc -p .","lint":"gulp lint","test":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"npm run karma-jasmine\"","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w -p .","format":"gulp format:enforce","tslint":"tslint -c tslint.json 'lib/**/*.ts'","changelog":"gulp changelog","test-dist":"concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-dist-jasmine.conf.js\"","test-node":"gulp test/node","ws-client":"node ./test/ws-client.js","ws-server":"node ./test/ws-server.js","prepublish":"tsc && gulp build","test-mocha":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-build-mocha.conf.js\"","promisetest":"gulp promisetest","test:single":"npm run tsc && concurrently \"npm run ws-server\" \"npm run karma-jasmine:autoclose\"","closure:test":"scripts/closure/closure_compiler.sh","karma-jasmine":"karma start karma-build-jasmine.conf.js","test-bluebird":"gulp test/bluebird","test:phantomjs":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"npm run karma-jasmine:phantomjs\"","webdriver-http":"node simple-server.js","webdriver-test":"node test/webdriver/test.js","webdriver-start":"webdriver-manager update && webdriver-manager start","promisefinallytest":"mocha promise.finally.spec.js","karma-jasmine:single":"karma start karma-build-jasmine.conf.js --single-run","webdriver-sauce-test":"node test/webdriver/test.sauce.js","test:phantomjs-single":"npm run tsc && concurrently \"npm run ws-server\" \"npm run karma-jasmine-phantomjs:autoclose\"","karma-jasmine:autoclose":"npm run karma-jasmine:single && npm run ws-client","karma-jasmine:phantomjs":"karma start karma-build-jasmine-phantomjs.conf.js --single-run","karma-jasmine-phantomjs:autoclose":"npm run karma-jasmine:phantomjs && npm run ws-client"},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"devops+npm@angular.io"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"5.6.0","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"9.10.1","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.8.11","pump":"^1.0.1","rxjs":"^5.5.3","karma":"^0.13.14","mocha":"^3.1.2","assert":"^1.4.1","tslint":"^4.1.1","jasmine":"^2.9.1","bluebird":"^3.5.1","gulp-tsc":"^1.1.4","systemjs":"^0.19.37","gulp-util":"^3.0.7","phantomjs":"^2.1.7","ts-loader":"^0.6.0","typescript":"2.5.2","@types/node":"^6.0.96","es6-promise":"^3.0.2","gulp-rename":"^1.2.2","gulp-rollup":"^2.16.1","gulp-tslint":"^7.0.1","gulp-uglify":"^1.2.0","karma-mocha":"^1.2.0","webdriverio":"^4.8.0","clang-format":"1.0.46","concurrently":"^2.2.0","jasmine-core":"^2.9.1","whatwg-fetch":"^2.0.1","karma-jasmine":"^1.1.1","@types/jasmine":"2.2.33","@types/systemjs":"^0.19.30","nodejs-websocket":"^1.2.0","gulp-clang-format":"^1.0.25","webdriver-manager":"^12.0.6","selenium-webdriver":"^3.4.0","tslint-eslint-rules":"^3.1.0","karma-sauce-launcher":"^0.2.10","promises-aplus-tests":"^2.1.2","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","vrsource-tslint-rules":"^4.0.0","conventional-changelog":"^1.1.7","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6","google-closure-compiler":"^20170409.0.0","karma-phantomjs-launcher":"^1.0.4","gulp-conventional-changelog":"^1.1.7"},"_npmOperationalInternal":{"tmp":"tmp/zone.js_0.8.25_1522803995352_0.22186645077371936","host":"s3://npm-registry-packages"}},"0.8.26":{"name":"zone.js","version":"0.8.26","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.8.26","maintainers":[{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"briantford@gmail.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"7bdd72f7668c5a7ad6b118148b4ea39c59d08d2d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.8.26.tgz","fileCount":107,"integrity":"sha512-W9Nj+UmBJG251wkCacIkETgra4QgBo/vgoEkb4a2uoLzpQG7qF9nzwoLXWU5xj3Fg2mxGvEDh47mg24vXccYjA==","signatures":[{"sig":"MEUCIF1dA5qo8GnNqnoM5Q90SryUj8OIrWtilKm73YE2Dg4uAiEAmcK8sFj7TWChhoG1hJp58sXDNTw43ZBvtqEzfSI+qzw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1417650},"main":"dist/zone-node.js","files":["lib","dist"],"unpkg":"dist/zone.js","browser":"dist/zone.js","gitHead":"562bdc315c82ae64f40f00179b88f619daa816ae","scripts":{"ci":"npm run lint && npm run format && npm run promisetest && npm run test:single && npm run test-node","tsc":"tsc -p .","lint":"gulp lint","test":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"npm run karma-jasmine\"","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w -p .","format":"gulp format:enforce","tslint":"tslint -c tslint.json 'lib/**/*.ts'","changelog":"gulp changelog","test-dist":"concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-dist-jasmine.conf.js\"","test-node":"gulp test/node","ws-client":"node ./test/ws-client.js","ws-server":"node ./test/ws-server.js","prepublish":"tsc && gulp build","test-mocha":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-build-mocha.conf.js\"","promisetest":"gulp promisetest","test:single":"npm run tsc && concurrently \"npm run ws-server\" \"npm run karma-jasmine:autoclose\"","closure:test":"scripts/closure/closure_compiler.sh","karma-jasmine":"karma start karma-build-jasmine.conf.js","test-bluebird":"gulp test/bluebird","test:phantomjs":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"npm run karma-jasmine:phantomjs\"","webdriver-http":"node simple-server.js","webdriver-test":"node test/webdriver/test.js","webdriver-start":"webdriver-manager update && webdriver-manager start","promisefinallytest":"mocha promise.finally.spec.js","karma-jasmine:single":"karma start karma-build-jasmine.conf.js --single-run","webdriver-sauce-test":"node test/webdriver/test.sauce.js","test:phantomjs-single":"npm run tsc && concurrently \"npm run ws-server\" \"npm run karma-jasmine-phantomjs:autoclose\"","karma-jasmine:autoclose":"npm run karma-jasmine:single && npm run ws-client","karma-jasmine:phantomjs":"karma start karma-build-jasmine-phantomjs.conf.js --single-run","karma-jasmine-phantomjs:autoclose":"npm run karma-jasmine:phantomjs && npm run ws-client"},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"devops+npm@angular.io"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"5.6.0","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"9.10.1","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.8.11","pump":"^1.0.1","rxjs":"^5.5.3","karma":"^0.13.14","mocha":"^3.1.2","assert":"^1.4.1","tslint":"^4.1.1","jasmine":"^2.9.1","bluebird":"^3.5.1","gulp-tsc":"^1.1.4","systemjs":"^0.19.37","gulp-util":"^3.0.7","phantomjs":"^2.1.7","ts-loader":"^0.6.0","typescript":"2.5.2","@types/node":"^6.0.96","es6-promise":"^3.0.2","gulp-rename":"^1.2.2","gulp-rollup":"^2.16.1","gulp-tslint":"^7.0.1","gulp-uglify":"^1.2.0","karma-mocha":"^1.2.0","webdriverio":"^4.8.0","clang-format":"1.0.46","concurrently":"^2.2.0","jasmine-core":"^2.9.1","whatwg-fetch":"^2.0.1","karma-jasmine":"^1.1.1","@types/jasmine":"2.2.33","@types/systemjs":"^0.19.30","nodejs-websocket":"^1.2.0","gulp-clang-format":"^1.0.25","webdriver-manager":"^12.0.6","selenium-webdriver":"^3.4.0","tslint-eslint-rules":"^3.1.0","karma-sauce-launcher":"^0.2.10","promises-aplus-tests":"^2.1.2","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","vrsource-tslint-rules":"^4.0.0","conventional-changelog":"^1.1.7","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6","google-closure-compiler":"^20170409.0.0","karma-phantomjs-launcher":"^1.0.4","gulp-conventional-changelog":"^1.1.7"},"_npmOperationalInternal":{"tmp":"tmp/zone.js_0.8.26_1523166821699_0.06745940422305252","host":"s3://npm-registry-packages"}},"0.8.27":{"name":"zone.js","version":"0.8.27","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.8.27","maintainers":[{"name":"anonymous","email":"devops+npm@angular.io"},{"name":"anonymous","email":"angular-core+npm@google.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"ef9576e9548cf53904f32f3970a12ffae2b54b21","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.8.27.tgz","fileCount":109,"integrity":"sha512-Gbv0wmh0paF4Q60zzcF28+qBWIxtMVuRKBCBm0hvLupZsN/SX7TYYcgYWoVH8MkP+yl0jHlyGHy4dIYUgZvBqA==","signatures":[{"sig":"MEYCIQCK3XfTpjkiCh0yOeWSq2EYC9kkzcyKXoA7xIg/V2R1bgIhAJ0uLZvvm8Ydy0r2CURkh5V8PjC9OwXCGJpfkNEW+Wt5","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1482286,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcOC1ACRA9TVsSAnZWagAAcNAP/3QWfujXjSZ+L2OiXS0O\n114WBvqKLibPFpm/8NMn6RqIlI1We/zOBPW8QlzOoJ+LYMZ5c9Bb1lwcTnKA\nTxil621lmNA5oPtkcX9QLorb7hYFVHWNcS8UmAr3bJBsaHns/IuGLFTO1w/f\nKGY7KUwPV1VGQeWXj930KXQHFbMort7bch/c/cdAGAnVMvtq3dyyplvM8u5e\n96F67kMJiUk08rCaiHQ71VAbU+cPmM8CI0Hy3o3b4NdsPT4P5drTTDMzi28k\nAxufvJ6zCqO9dM4tK13GWX26B82BxC8riQ7TVb94Ttr1WPQBu1PabXE8MLwH\nqc7qHjbEoE5mWnQ+thnitXF2jyRXzQk64vVJd/4Rj7Oby1IiXJXYjQVHArXO\nBX9/+y61JP6iNBrTBKjzPgjtWt5OSpvE5DN9BPFzWA8t7dR6ykBiFSyHMHpN\n8n8jliUfe0KJdFbqs9OEFbbEMTArnrqmE4YDbxl0wBmwLExfrX5Wj1eNf7LH\nchgcH3Me48J5dPH4pdnOkf4gDLBgRr8lKFFFvRlb6RYKbW7phzA4qrARqbsT\ndO5AtolImf0jukUcA+TZqgqqZc1ususzqDVHTGaDWF6L43FrCxIigjiAIDkh\njA6JAMRuAR0hF+YGmUqyjUbzTphaxrWeG4pXS0uBz/TdnfaL43nxIZSVbEXj\nXUsV\r\n=X9RR\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/zone-node.js","unpkg":"dist/zone.js","browser":"dist/zone.js","gitHead":"8ce5e331b11abad2b2a8adfc3fa13622afd77da5","scripts":{"ci":"npm run lint && npm run format && npm run promisetest && npm run test:single && npm run test-node","tsc":"tsc -p .","lint":"gulp lint","test":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"npm run karma-jasmine\"","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w -p .","format":"gulp format:enforce","tslint":"tslint -c tslint.json 'lib/**/*.ts'","test:es6":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"npm run karma-jasmine:es6\"","changelog":"gulp changelog","test-dist":"concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-dist-jasmine.conf.js\"","test-node":"gulp test/node","ws-client":"node ./test/ws-client.js","ws-server":"node ./test/ws-server.js","prepublish":"tsc && gulp build","test-mocha":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-build-mocha.conf.js\"","promisetest":"gulp promisetest","test:single":"npm run tsc && concurrently \"npm run ws-server\" \"npm run karma-jasmine:autoclose\"","closure:test":"scripts/closure/closure_compiler.sh","karma-jasmine":"karma start karma-build-jasmine.conf.js","test-bluebird":"gulp test/bluebird","test:phantomjs":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"npm run karma-jasmine:phantomjs\"","webdriver-http":"node simple-server.js","webdriver-test":"node test/webdriver/test.js","webdriver-start":"webdriver-manager update && webdriver-manager start","karma-jasmine:es6":"karma start karma-build-jasmine.es6.conf.js","promisefinallytest":"mocha promise.finally.spec.js","karma-jasmine:single":"karma start karma-build-jasmine.conf.js --single-run","webdriver-sauce-test":"node test/webdriver/test.sauce.js","test:phantomjs-single":"npm run tsc && concurrently \"npm run ws-server\" \"npm run karma-jasmine-phantomjs:autoclose\"","karma-jasmine:autoclose":"npm run karma-jasmine:single && npm run ws-client","karma-jasmine:phantomjs":"karma start karma-build-jasmine-phantomjs.conf.js --single-run","karma-jasmine-phantomjs:autoclose":"npm run karma-jasmine:phantomjs && npm run ws-client"},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"devops+npm@angular.io"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"6.5.0","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"10.11.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.8.11","pump":"^1.0.1","rxjs":"^6.2.1","karma":"^0.13.14","mocha":"^3.1.2","assert":"^1.4.1","tslint":"^4.1.1","core-js":"^2.5.7","jasmine":"^2.9.1","bluebird":"^3.5.1","gulp-tsc":"^1.1.4","systemjs":"^0.19.37","gulp-util":"^3.0.7","phantomjs":"^2.1.7","ts-loader":"^0.6.0","typescript":"^3.0.3","@types/node":"^9.x","es6-promise":"^3.0.2","gulp-rename":"^1.2.2","gulp-rollup":"^2.16.1","gulp-tslint":"^7.0.1","gulp-uglify":"^1.2.0","karma-mocha":"^1.2.0","webdriverio":"^4.8.0","clang-format":"^1.2.3","concurrently":"^2.2.0","jasmine-core":"^2.9.1","whatwg-fetch":"^2.0.1","karma-jasmine":"^1.1.1","@types/jasmine":"2.2.33","@types/systemjs":"^0.19.30","nodejs-websocket":"^1.2.0","gulp-clang-format":"^1.0.25","webdriver-manager":"^12.0.6","selenium-webdriver":"^3.4.0","tslint-eslint-rules":"^3.1.0","karma-sauce-launcher":"^0.2.10","promises-aplus-tests":"^2.1.2","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","vrsource-tslint-rules":"^4.0.0","conventional-changelog":"^1.1.7","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6","google-closure-compiler":"^20170409.0.0","karma-phantomjs-launcher":"^1.0.4","gulp-conventional-changelog":"^1.1.7"},"_npmOperationalInternal":{"tmp":"tmp/zone.js_0.8.27_1547185471881_0.9432328130914494","host":"s3://npm-registry-packages"}},"0.8.28":{"name":"zone.js","version":"0.8.28","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.8.28","maintainers":[{"name":"anonymous","email":"devops+npm@angular.io"},{"name":"anonymous","email":"angular-core+npm@google.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"fd55df8743514b233613f8e4f5bb8e27207a48c3","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.8.28.tgz","fileCount":109,"integrity":"sha512-MjwlvV0wr65IQiT0WSHedo/zUhAqtypMdTUjqroV81RohGj1XANwHuC37dwYxphTRbZBYidk0gNS0dQrU2Q3Pw==","signatures":[{"sig":"MEUCID3IU9AzrbjAk+93I9smLh1JnvLvXD92pGD4CyiIg6REAiEAzWOaj9M9ddCxqZ+L4jOr9XAsjuI368vGuNmNkFbSR5s=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1482674,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcP7zCCRA9TVsSAnZWagAA+4kQAIUc0CScDsg2Km/8W5I+\nYtmbz5XJD997AWRBjwxtw/WGVKNQ1Zk5YUVrrFa7thhux+Jmt5nYDT/5NvTq\n6OQ8Fh3c0JLtpPsZaHdPFyf2ShhUjtpVt+QWejjRKIxUsLczEXTNKIWRuQ48\nDZCrxQYQviMBDkWuoQsrVw+kst6c2HBJeVDydD0+prKhiChZhhJharFAcOgr\nqppDLPjWZtFz7SsFyFmN5O8WaFy11+PdP9DpZ6dXTx9W7MpeqEm2cQH0FqQO\nCzoUhsQwImiF96v0ul1TCUjdShVuhfDK7Y1PzHUJLyJQGJ5OYMrYVxSppwcg\nKSsWFZXhLgqqX1NjKG44fUQafUrcAcjke+mSp/2I52B6UyR2/kE4skKlCs5m\nsYcPrGDHdmXJqh93cvJweRcnxgDxNQsoSYpY1hjQ7z8oNqCzDxwCTdCH63R2\nlJO1N86ElSfC71iVcrK5ZReiQMT11qPiaPG0ue/xy60jmjDR/x+9RkBr5iEw\nU7e6XTVCxnwNDQojmxRDWSq21B11v70SEnspJTLqRpOmFrnbpMTOKTUU6wkD\n0J7zn2FqxJgU32bKZTxXa/Ul70FJZKSolnk72lmW6ZbBEf4rOUDEZqgptrUg\n87UFckzR1JA1zSFSAeT7NPAOjXVrqviucAPwfweFHFSueyg5xGUQeyqWKDS3\npB6J\r\n=tHwz\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/zone-node.js","unpkg":"dist/zone.js","browser":"dist/zone.js","gitHead":"9c04a3b5a55711b0da9e5cef5a9de057198def18","scripts":{"ci":"npm run lint && npm run format && npm run promisetest && npm run test:single && npm run test-node","tsc":"tsc -p .","lint":"gulp lint","test":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"npm run karma-jasmine\"","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w -p .","format":"gulp format:enforce","tslint":"tslint -c tslint.json 'lib/**/*.ts'","test:es6":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"npm run karma-jasmine:es6\"","changelog":"gulp changelog","test-dist":"concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-dist-jasmine.conf.js\"","test-node":"gulp test/node","ws-client":"node ./test/ws-client.js","ws-server":"node ./test/ws-server.js","prepublish":"tsc && gulp build","test-mocha":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-build-mocha.conf.js\"","promisetest":"gulp promisetest","test:single":"npm run tsc && concurrently \"npm run ws-server\" \"npm run karma-jasmine:autoclose\"","closure:test":"scripts/closure/closure_compiler.sh","karma-jasmine":"karma start karma-build-jasmine.conf.js","test-bluebird":"gulp test/bluebird","test:phantomjs":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"npm run karma-jasmine:phantomjs\"","webdriver-http":"node simple-server.js","webdriver-test":"node test/webdriver/test.js","webdriver-start":"webdriver-manager update && webdriver-manager start","karma-jasmine:es6":"karma start karma-build-jasmine.es6.conf.js","promisefinallytest":"mocha promise.finally.spec.js","karma-jasmine:single":"karma start karma-build-jasmine.conf.js --single-run","webdriver-sauce-test":"node test/webdriver/test.sauce.js","test:phantomjs-single":"npm run tsc && concurrently \"npm run ws-server\" \"npm run karma-jasmine-phantomjs:autoclose\"","karma-jasmine:autoclose":"npm run karma-jasmine:single && npm run ws-client","karma-jasmine:phantomjs":"karma start karma-build-jasmine-phantomjs.conf.js --single-run","karma-jasmine-phantomjs:autoclose":"npm run karma-jasmine:phantomjs && npm run ws-client"},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"devops+npm@angular.io"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"6.5.0","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"10.11.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.8.11","pump":"^1.0.1","rxjs":"^6.2.1","karma":"^0.13.14","mocha":"^3.1.2","assert":"^1.4.1","tslint":"^4.1.1","core-js":"^2.5.7","jasmine":"^2.9.1","bluebird":"^3.5.1","gulp-tsc":"^1.1.4","systemjs":"^0.19.37","gulp-util":"^3.0.7","phantomjs":"^2.1.7","ts-loader":"^0.6.0","typescript":"^3.0.3","@types/node":"^9.x","es6-promise":"^3.0.2","gulp-rename":"^1.2.2","gulp-rollup":"^2.16.1","gulp-tslint":"^7.0.1","gulp-uglify":"^1.2.0","karma-mocha":"^1.2.0","webdriverio":"^4.8.0","clang-format":"^1.2.3","concurrently":"^2.2.0","jasmine-core":"^2.9.1","whatwg-fetch":"^2.0.1","karma-jasmine":"^1.1.1","@types/jasmine":"2.2.33","@types/systemjs":"^0.19.30","nodejs-websocket":"^1.2.0","gulp-clang-format":"^1.0.25","webdriver-manager":"^12.0.6","selenium-webdriver":"^3.4.0","tslint-eslint-rules":"^3.1.0","karma-sauce-launcher":"^0.2.10","promises-aplus-tests":"^2.1.2","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","vrsource-tslint-rules":"^4.0.0","conventional-changelog":"^1.1.7","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6","google-closure-compiler":"^20170409.0.0","karma-phantomjs-launcher":"^1.0.4","gulp-conventional-changelog":"^1.1.7"},"_npmOperationalInternal":{"tmp":"tmp/zone.js_0.8.28_1547680961431_0.008289366834353329","host":"s3://npm-registry-packages"}},"0.8.29":{"name":"zone.js","version":"0.8.29","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.8.29","maintainers":[{"name":"anonymous","email":"devops+npm@angular.io"},{"name":"anonymous","email":"angular-core+npm@google.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"8dce92aa0dd553b50bc5bfbb90af9986ad845a12","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.8.29.tgz","fileCount":109,"integrity":"sha512-mla2acNCMkWXBD+c+yeUrBUrzOxYMNFdQ6FGfigGGtEVBPJx07BQeJekjt9DmH1FtZek4E9rE1eRR9qQpxACOQ==","signatures":[{"sig":"MEQCIDLUsfrQ7REelQUKFslIKWsVWphMWVbqduQhngClQM4xAiAYrenByrRm2/UnGxyAq3N3GmmnWAgWjcgvPb23+a5YxA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1483014,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcR3dgCRA9TVsSAnZWagAADWsP/0EW0ylRPxyGDJ5zZWTD\n2o1EPkaujOWIJ51oE+GW3QRlS8WL++cK2KUE0PRcHgrqtz+RE5Yk7NLi7UPK\nmALHoIYd9jVLQIec+7nWdjOVqRgl3ZDeBt4Smvq+WaUAJCpYuinXXGf7urNO\nFDsAhojQ50rDgflb7VfCQovdwBxy9iTRl1pL4ZfJF3qQEDFyzYJLOz+5vAIK\nlNmlJDwUQ66/n0bn+Z+s5rJVuA6YekMYGgik72W0qoNfGm7M3aIQTif4dbNE\n1dOuZnOI088TP/4ukg0hetRAWMiw4C0TWao7tyfGoI6jEDXkcSD+d/zTn4wj\ntHXCNfLv7VGGIaD0NvgC3Akp8p5YV7dSrM8v6vgi1HYJOpzS94R408nf+YeD\n9PTuTfyvkW7vB0s4/O32+w5RLoKgzn6ywM9X82caUiGsEzFKhl/47o3wAnk0\nJh0ixTTP3BVUjv/XSq62e9ospiZRXW+hBdc9W5zTBc0sLaSJIvE7eOc2yOGW\nFJbT9tMWbdJ8rlaR7zyKhIR5dLujCGWngjYZkm8pDNYKsCsWh0vbY+vEB88u\n1YypYt8FENKg4GPtFOZRoEBOto5p7SjHeVHOeQMLN/A6t6V+DR8Pmg0P5Zre\ntlAGk/Bk14lV+3knn590wdzw1UaRGfBGKPWrf/B9Y4nwRS+eZ+T7gyxvO49k\n4XOJ\r\n=44T7\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/zone-node.js","unpkg":"dist/zone.js","browser":"dist/zone.js","gitHead":"ce9c2e056e1393e2d5e01be688f4cbf6d174ce15","scripts":{"ci":"npm run lint && npm run format && npm run promisetest && npm run test:single && npm run test-node","tsc":"tsc -p .","lint":"gulp lint","test":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"npm run karma-jasmine\"","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w -p .","format":"gulp format:enforce","tslint":"tslint -c tslint.json 'lib/**/*.ts'","test:es6":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"npm run karma-jasmine:es6\"","changelog":"gulp changelog","test-dist":"concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-dist-jasmine.conf.js\"","test-node":"gulp test/node","ws-client":"node ./test/ws-client.js","ws-server":"node ./test/ws-server.js","prepublish":"tsc && gulp build","test-mocha":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-build-mocha.conf.js\"","promisetest":"gulp promisetest","test:single":"npm run tsc && concurrently \"npm run ws-server\" \"npm run karma-jasmine:autoclose\"","closure:test":"scripts/closure/closure_compiler.sh","karma-jasmine":"karma start karma-build-jasmine.conf.js","test-bluebird":"gulp test/bluebird","test:phantomjs":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"npm run karma-jasmine:phantomjs\"","webdriver-http":"node simple-server.js","webdriver-test":"node test/webdriver/test.js","webdriver-start":"webdriver-manager update && webdriver-manager start","karma-jasmine:es6":"karma start karma-build-jasmine.es6.conf.js","promisefinallytest":"mocha promise.finally.spec.js","karma-jasmine:single":"karma start karma-build-jasmine.conf.js --single-run","webdriver-sauce-test":"node test/webdriver/test.sauce.js","test:phantomjs-single":"npm run tsc && concurrently \"npm run ws-server\" \"npm run karma-jasmine-phantomjs:autoclose\"","karma-jasmine:autoclose":"npm run karma-jasmine:single && npm run ws-client","karma-jasmine:phantomjs":"karma start karma-build-jasmine-phantomjs.conf.js --single-run","karma-jasmine-phantomjs:autoclose":"npm run karma-jasmine:phantomjs && npm run ws-client"},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"devops+npm@angular.io"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"6.5.0","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"10.11.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.8.11","pump":"^1.0.1","rxjs":"^6.2.1","karma":"^0.13.14","mocha":"^3.1.2","assert":"^1.4.1","tslint":"^4.1.1","core-js":"^2.5.7","jasmine":"^2.9.1","bluebird":"^3.5.1","gulp-tsc":"^1.1.4","systemjs":"^0.19.37","gulp-util":"^3.0.7","phantomjs":"^2.1.7","ts-loader":"^0.6.0","typescript":"^3.0.3","@types/node":"^9.x","es6-promise":"^3.0.2","gulp-rename":"^1.2.2","gulp-rollup":"^2.16.1","gulp-tslint":"^7.0.1","gulp-uglify":"^1.2.0","karma-mocha":"^1.2.0","webdriverio":"^4.8.0","clang-format":"^1.2.3","concurrently":"^2.2.0","jasmine-core":"^2.9.1","whatwg-fetch":"^2.0.1","karma-jasmine":"^1.1.1","@types/jasmine":"2.2.33","@types/systemjs":"^0.19.30","nodejs-websocket":"^1.2.0","gulp-clang-format":"^1.0.25","webdriver-manager":"^12.0.6","selenium-webdriver":"^3.4.0","tslint-eslint-rules":"^3.1.0","karma-sauce-launcher":"^0.2.10","promises-aplus-tests":"^2.1.2","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","vrsource-tslint-rules":"^4.0.0","conventional-changelog":"^1.1.7","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6","google-closure-compiler":"^20170409.0.0","karma-phantomjs-launcher":"^1.0.4","gulp-conventional-changelog":"^1.1.7"},"_npmOperationalInternal":{"tmp":"tmp/zone.js_0.8.29_1548187487145_0.3892169477130165","host":"s3://npm-registry-packages"}},"0.9.0":{"name":"zone.js","version":"0.9.0","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.9.0","maintainers":[{"name":"anonymous","email":"devops+npm@angular.io"},{"name":"anonymous","email":"angular-core+npm@google.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"f42319d657f7616724ed40c5907d4614b4c683fa","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.9.0.tgz","fileCount":128,"integrity":"sha512-EfygvVnLxPSCMSgJ4h7SoY+XNr7ybdwvvwEQ70lvMFl9coNnciXSyWi8Kg6znK1ubyUSffkCKvleSQpLuUKw0Q==","signatures":[{"sig":"MEUCIQCJupvi0wrTtxITjzNbwAmpKcCdpjJVg1lRZsEwuzLZVwIgI3d8eh+Uof4jZsZt+CljPqHLzbKOatWQavlbyVUj9+I=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1911599,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJclFMtCRA9TVsSAnZWagAA3r0QAIUlqV/BvdhEMrqeXIw1\nE1Ub/71l/B1ChruMXhUt+/omZzMdMbEx7O6rcLVLwc2arjQ1pl2v64zfqcpH\nbetoULjTzEN6PMYgRDDz2+4xP5UfBhcsZoynv1NM0wPt6ZkHordYrifV19UV\ntNgo0AeuPt8ZcUcSl0bNXFMwNETNTKVbKKi2fmQyacOSNDKtm8nyh09X51Xm\nnVwbRVU7fb6hqN87VXSEEuZpuFagCfqJctIXKU6jp2o0fJwxV+vJocmT69c8\nfLsZjN/wN2KUYz8hUibJWe+D+hrM9CCl09J9EPB3GBDDpBwsm/12rB6yWbny\n7vnhoXfaVctNK/xKl1aMPPuxStorXyDgj/xCCSZhBkeVSoZ2sKyOgC0KEdyU\nL1fe114rrAjNKYE3Y6fNJhKAlyoujtlvC8Y8+qfqb3ILp1HzWAB+e9OCGIwt\n438YU8PVPlPuXo8yGUw9zHGJIrv3pCniWag6rLUR+kVKt1YBWh4RD0aq5Jlq\nXEOmsUcm6yi9lhkWeRjNhJypCD8byc9LO38NGQ2mue0MiFwCSNna7ysseNQq\nnQUqw5rG8ZeJMOYlV3aJrkf/fMd41L5Sp9jzE6DqSoXhUCFhX3PcFmVjNw1N\nNoVZ90XLd0Ng7dwqhRfYEOMxDzh9wGeQp3qV2248EYDXnVE5kG5ZtgaJxHnC\nS883\r\n=2v+2\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/zone-node.js","unpkg":"dist/zone.js","browser":"dist/zone.js","gitHead":"31d31ceead4a8dfd0b747f1912f98f61c89dceff","scripts":{"ci":"npm run lint && npm run format && npm run promisetest && npm run test:single && npm run test-node","tsc":"tsc -p .","lint":"gulp lint","test":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"npm run karma-jasmine\"","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w -p .","format":"gulp format:enforce","tslint":"tslint -c tslint.json 'lib/**/*.ts'","changelog":"gulp changelog","test-dist":"concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-dist-jasmine.conf.js\"","test-node":"gulp test/node","ws-client":"node ./test/ws-client.js","ws-server":"node ./test/ws-server.js","prepublish":"tsc && gulp build","test-mocha":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-build-mocha.conf.js\"","promisetest":"gulp promisetest","test:es2015":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"npm run karma-jasmine:es2015\"","test:single":"npm run tsc && concurrently \"npm run ws-server\" \"npm run karma-jasmine:autoclose\"","tsc:esm2015":"tsc -p tsconfig-esm-2015.json","closure:test":"scripts/closure/closure_compiler.sh","karma-jasmine":"karma start karma-build-jasmine.conf.js","test-bluebird":"gulp test/bluebird","test:phantomjs":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"npm run karma-jasmine:phantomjs\"","webdriver-http":"node simple-server.js","webdriver-test":"node test/webdriver/test.js","webdriver-start":"webdriver-manager update && webdriver-manager start","promisefinallytest":"mocha promise.finally.spec.js","karma-jasmine:es2015":"karma start karma-build-jasmine.es2015.conf.js","karma-jasmine:single":"karma start karma-build-jasmine.conf.js --single-run","webdriver-sauce-test":"node test/webdriver/test.sauce.js","test:phantomjs-single":"npm run tsc && concurrently \"npm run ws-server\" \"npm run karma-jasmine-phantomjs:autoclose\"","karma-jasmine:autoclose":"npm run karma-jasmine:single && npm run ws-client","karma-jasmine:phantomjs":"karma start karma-build-jasmine-phantomjs.conf.js --single-run","karma-jasmine-phantomjs:autoclose":"npm run karma-jasmine:phantomjs && npm run ws-client"},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"devops+npm@angular.io"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"6.9.0","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"10.11.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.8.11","pump":"^1.0.1","rxjs":"^6.2.1","karma":"^0.13.14","mocha":"^3.1.2","assert":"^1.4.1","terser":"^3.16.1","tslint":"^4.1.1","core-js":"^2.5.7","jasmine":"^3.3.1","bluebird":"^3.5.1","gulp-tsc":"^1.1.4","systemjs":"^0.19.37","gulp-util":"^3.0.7","phantomjs":"^2.1.7","ts-loader":"^0.6.0","typescript":"^3.2.2","@types/node":"^9.x","es6-promise":"^3.0.2","gulp-rename":"^1.2.2","gulp-rollup":"^2.16.1","gulp-terser":"^1.1.7","gulp-tslint":"^7.0.1","gulp-uglify":"^1.2.0","karma-mocha":"^1.2.0","webdriverio":"^4.8.0","clang-format":"^1.2.3","concurrently":"^2.2.0","jasmine-core":"^2.9.1","whatwg-fetch":"^2.0.1","karma-jasmine":"^1.1.1","@types/jasmine":"2.2.33","core-js-bundle":"^3.0.0-alpha.1","@types/systemjs":"^0.19.30","nodejs-websocket":"^1.2.0","gulp-clang-format":"^1.0.25","webdriver-manager":"^12.0.6","selenium-webdriver":"^3.4.0","tslint-eslint-rules":"^3.1.0","karma-sauce-launcher":"^0.2.10","promises-aplus-tests":"^2.1.2","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","vrsource-tslint-rules":"^4.0.0","conventional-changelog":"^1.1.7","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6","google-closure-compiler":"^20170409.0.0","karma-phantomjs-launcher":"^1.0.4","gulp-conventional-changelog":"^1.1.7"},"_npmOperationalInternal":{"tmp":"tmp/zone.js_0.9.0_1553224492945_0.9122443886258433","host":"s3://npm-registry-packages"}},"0.9.1":{"name":"zone.js","version":"0.9.1","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.9.1","maintainers":[{"name":"anonymous","email":"devops+npm@angular.io"},{"name":"anonymous","email":"angular-core+npm@google.com"}],"homepage":"https://github.com/angular/zone.js#readme","bugs":{"url":"https://github.com/angular/zone.js/issues"},"dist":{"shasum":"e37c6e5c54c13fae4de26b5ffe8d8e9212da6d9b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.9.1.tgz","fileCount":128,"integrity":"sha512-GkPiJL8jifSrKReKaTZ5jkhrMEgXbXYC+IPo1iquBjayRa0q86w3Dipjn8b415jpitMExe9lV8iTsv8tk3DGag==","signatures":[{"sig":"MEUCIHl2S01qMhIUPxOGWeQx8WmNaXGgNXksusAaQDwqGQIkAiEAtaDr610o7/fxVJ+L5GEDRw1Bkd45ca0Hh8d1pAon4e8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1924458,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJczIU5CRA9TVsSAnZWagAAh0oP/jG2OJJObPwv4pKSwshe\nHnGX6aUGYKF7ExMHM/6x4UsJ6PZeMtBrT4qQB0Pux5oz4YTz0TPI58DD4+nV\nBY2pzbqx7quGC41BYXpm/viUOfjGpdrT8ywVLcvYpn9FhpGoGNVm8GODsFrO\n3ucL/VNvHLapTPy0nPVB0F+CZVsON/TI7S+H0ojLtOKC5BEn1Tq2Zr9+HX/x\ninafRm2kvfo4k0fuVv3dDl81vgg/c+z5cJHxMIK7YkD2HbIM0onkGU0ekYnN\nlHL2DI5GaJ/EOSVqnjRtCppoI4RhYFhnjYMgvjzjP8Iz2o8RF62hL2IBxKwb\nKuigrWkLFJw3wJJIOdyMJYEl1YG02SUbPe4d2FR5UQifVGdTkF7DZwY+be4H\nAzlISjKpp/mRObL25jJdim5kPhA3KVeRB207lPaVI6vGVOgJy/w0KyfY5Iey\n3dU57n7x/fhKLFVpnGkOSbegQU1kp0sDFBA7OeedurCJF61tQEedNDNbGECM\ng3/3ajviAT+XGETdsutCkKT32ZGi2qQTpOHrFd+91TohnXtUgLl7CAVwMHac\nixdR2eeBBM81KvqBjvybaw0Tog4C/bUzM4j7MJU/12tO1SB6mItcETVneKp+\nrIlBdU1T2/qxMkaw3zGhElde8BdPfhcojqABO5zl8vNcGFNcKxHv/rGS2Xfz\nI6Mu\r\n=t+j4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/zone-node.js","unpkg":"dist/zone.js","browser":"dist/zone.js","gitHead":"c555b083b902bd8370d20a35ce523302d1448492","scripts":{"ci":"npm run lint && npm run format && npm run promisetest && npm run test:single && npm run test-node","tsc":"tsc -p .","lint":"gulp lint","test":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"npm run karma-jasmine\"","serve":"python -m SimpleHTTPServer 8000","tsc:w":"tsc -w -p .","format":"gulp format:enforce","tslint":"tslint -c tslint.json 'lib/**/*.ts'","changelog":"gulp changelog","test-dist":"concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-dist-jasmine.conf.js\"","test-node":"gulp test/node","ws-client":"node ./test/ws-client.js","ws-server":"node ./test/ws-server.js","prepublish":"tsc && gulp build","test-mocha":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"karma start karma-build-mocha.conf.js\"","promisetest":"gulp promisetest","test:es2015":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"npm run karma-jasmine:es2015\"","test:single":"npm run tsc && concurrently \"npm run ws-server\" \"npm run karma-jasmine:autoclose\"","tsc:esm2015":"tsc -p tsconfig-esm-2015.json","closure:test":"scripts/closure/closure_compiler.sh","karma-jasmine":"karma start karma-build-jasmine.conf.js","test-bluebird":"gulp test/bluebird","test:phantomjs":"npm run tsc && concurrently \"npm run tsc:w\" \"npm run ws-server\" \"npm run karma-jasmine:phantomjs\"","webdriver-http":"node simple-server.js","webdriver-test":"node test/webdriver/test.js","webdriver-start":"webdriver-manager update && webdriver-manager start","promisefinallytest":"mocha promise.finally.spec.js","karma-jasmine:es2015":"karma start karma-build-jasmine.es2015.conf.js","karma-jasmine:single":"karma start karma-build-jasmine.conf.js --single-run","webdriver-sauce-test":"node test/webdriver/test.sauce.js","test:phantomjs-single":"npm run tsc && concurrently \"npm run ws-server\" \"npm run karma-jasmine-phantomjs:autoclose\"","karma-jasmine:autoclose":"npm run karma-jasmine:single && npm run ws-client","karma-jasmine:phantomjs":"karma start karma-build-jasmine-phantomjs.conf.js --single-run","karma-jasmine-phantomjs:autoclose":"npm run karma-jasmine:phantomjs && npm run ws-client"},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"devops+npm@angular.io"},"repository":{"url":"git://github.com/angular/zone.js.git","type":"git"},"_npmVersion":"6.9.0","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"10.11.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.8.11","pump":"^1.0.1","rxjs":"^6.2.1","karma":"^0.13.14","mocha":"^3.1.2","assert":"^1.4.1","terser":"^3.16.1","tslint":"^4.1.1","core-js":"^2.5.7","jasmine":"^3.3.1","bluebird":"^3.5.1","gulp-tsc":"^1.1.4","systemjs":"^0.19.37","gulp-util":"^3.0.7","phantomjs":"^2.1.7","ts-loader":"^0.6.0","typescript":"^3.2.2","@types/node":"^9.x","es6-promise":"^3.0.2","gulp-rename":"^1.2.2","gulp-rollup":"^2.16.1","gulp-terser":"^1.1.7","gulp-tslint":"^7.0.1","gulp-uglify":"^1.2.0","karma-mocha":"^1.2.0","webdriverio":"^4.8.0","clang-format":"^1.2.3","concurrently":"^2.2.0","jasmine-core":"^2.9.1","whatwg-fetch":"^2.0.1","karma-jasmine":"^1.1.1","@types/jasmine":"2.2.33","core-js-bundle":"^3.0.0-alpha.1","@types/systemjs":"^0.19.30","nodejs-websocket":"^1.2.0","gulp-clang-format":"^1.0.25","webdriver-manager":"^12.0.6","selenium-webdriver":"^3.4.0","tslint-eslint-rules":"^3.1.0","karma-sauce-launcher":"^0.2.10","promises-aplus-tests":"^2.1.2","karma-chrome-launcher":"^0.2.1","karma-safari-launcher":"^0.1.1","vrsource-tslint-rules":"^4.0.0","conventional-changelog":"^1.1.7","karma-firefox-launcher":"^0.1.4","karma-sourcemap-loader":"^0.3.6","google-closure-compiler":"^20170409.0.0","karma-phantomjs-launcher":"^1.0.4","gulp-conventional-changelog":"^1.1.7"},"_npmOperationalInternal":{"tmp":"tmp/zone.js_0.9.1_1556907320947_0.11634164303193639","host":"s3://npm-registry-packages"}},"0.10.0":{"name":"zone.js","version":"0.10.0","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.10.0","maintainers":[{"name":"anonymous","email":"devops+npm@angular.io"},{"name":"anonymous","email":"angular-core+npm@google.com"}],"homepage":"https://github.com/angular/angular#readme","bugs":{"url":"https://github.com/angular/angular/issues"},"dist":{"shasum":"dbaa5cf2889e3f92f903de1d8a6edabdc8d4da69","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.10.0.tgz","fileCount":195,"integrity":"sha512-dxEcxkKgOj5kNBcngPmeu9VV0PrMPd2aJXX5TDX/MKOITusSzYNjZPs1EVSsLywvdThRVwsEqUi2BAEYeuRP2Q==","signatures":[{"sig":"MEUCID5FuH2OmkJQcitmqwhWkwjyW/MuqSoDPWkCPrVlFLFzAiEAzmwy8TSyvynRG0nJWmMj8GOsmIp5e8cqoQFxCslY9V4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":3266040,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdO2DRCRA9TVsSAnZWagAAjkAQAIbnVMsYmhEpj8zBBkeL\nphssUSERCv9G4AtMAIfRLyFaIfiXQ729p6ItPTkzPAKRmGgreml7BkLixDWW\nkK74bBrOHYI/P5FKaX6ka0PVElN1RDCnerlxW291m9JLX2nDBIyxUG76Fk3F\n5pZKzrV+TMbUATqnqGBXhoBkng+F8LjFfrUMQg7FC7gjYFaoaVPCaXVvMDHf\n611BpUUT8hbgunX0qT/n9T2SjA0GFFqGn9XA3wYeuuNgUgutu75y3vFyY3fn\nRpxtkPM5p7lPySD4oJ+4OPmEp2n8PAWkkIQUBj+W6nA3SOLnCJTAxdryniEK\nvu2fRGonEimn5lbggqmYPakrurl9EV0tzmXMEHBF1d4CIQazPSt1h9ev90ah\n1j2Ynz9nnqE5OMXUWtefGT22JdNCXUsSf68Kw0DrcU8MAQ7AfO9eo9advdld\noYjIvWYSR1niS66CAl66vdCro0tWoxkUK+hC9JYRXrlqTKqD3e0hA01ztBpO\nTHyky7YyjgBxoQMoaRf7vTmmKuC1GL9SZeHuF4xYN6YRTiIf8ElKZ/AEM/Zx\npMpkIPHz4KGz5Gc5SrJiXTcLJX8dN9Wl4hETQ1MAAmCVDg+V2t2S633xQhUl\ncL6GyE4shffGGlCkryTTIECEabprmLX++DMzh0RrD1M17aHO5lv/DCO+eIpt\nZarO\r\n=Af7f\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/zone-node.js","unpkg":"dist/zone.js","browser":"dist/zone.js","scripts":{"promisetest":"tsc -p . && node ./promise-test.js","electrontest":"cd test/extra && node electron.js","promisefinallytest":"tsc -p . && mocha promise.finally.spec.js"},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"repository":{"url":"git://github.com/angular/angular.git","type":"git","directory":"packages/zone.js"},"_npmVersion":"6.9.0","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"10.9.0","_hasShrinkwrap":false,"devDependencies":{"mocha":"^3.1.2","domino":"2.1.2","typescript":"~3.4.2","mock-require":"3.0.3","promises-aplus-tests":"^2.1.2"},"_npmOperationalInternal":{"tmp":"tmp/zone.js_0.10.0_1564172496505_0.4499838866532593","host":"s3://npm-registry-packages"}},"0.10.1":{"name":"zone.js","version":"0.10.1","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.10.1","maintainers":[{"name":"anonymous","email":"devops+npm@angular.io"},{"name":"anonymous","email":"angular-core+npm@google.com"}],"homepage":"https://github.com/angular/angular#readme","bugs":{"url":"https://github.com/angular/angular/issues"},"dist":{"shasum":"c83f7011896172cb69cbb99d2eff2302f3b2ca1a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.10.1.tgz","fileCount":195,"integrity":"sha512-PNCeR7yTNse/C1sSv01OWTV6hEnlQP98w5OX7cmNM+7wLCISLukNIzfYoRjdsWTYE3t1PQkjtjGa/GYoeP8Caw==","signatures":[{"sig":"MEUCIQCVORuC6eoSrA8P57tWvUb0LEAO+H7bdhvJFlL7AnJUHAIgFDdafQBxGh2cSm0JocFeAY/syP2B4qaJXPlA8baCa/0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":3285073,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdRK7+CRA9TVsSAnZWagAAUdUP/jIfrDdofykyPQOivHWm\nyqw10HLiq+P/7SIqDlT9KWynSJCr2j8VxCaOu6A8g20pyy27SqmqzvW6eWE8\nVtGIdqyIGLFY3viVr60fJ7j3rfvqim4mT5ZbmzLKgwQeO66mP1kzTkihn6PB\nL5BjJxeSjLcsMOXx9rizQPWrBlV/zjBjv2JVWb5706IpFXvjzJ6ogilZT5Mb\nn1x2BPZJkOCzRIyGc90QoBjU/wYhyQJirxqvJ30RK1sQFo5eUxgKpR2oVb0n\nMMUE8xKdx5bKlWeAEmpy7+WxIdo+paa6uS17+wkL5sUHQXQL4IDuC3QRGaTy\neBineQnbqo9Sywpe872eKB/Rgms0gDwFVPxbUPWt2ssdgAXlMlz+N0cOh8Lv\nLGPPnNt0Lklg/UJ8MSmqIA7tWRkvoJdGyJUbxQc5oXuIkDegxm4xUBd6k3Mg\njBA8U4KuhTpuP61q0hYJrrMbHY6XjNJLMlv2u5rvgKz9gqYFlXqo+iDmtP9A\nWsaqItJ6uao0uIecmGChMvL0nK/HkD0my+xDFGzw+QulfSc9dfYa7kacfG7+\nwrMFjcfT8hvBtsN1Eyw5d5VNF5yWQFvHSJA6mDGendkfDcZjtGOTJsS7tKrl\nk6xCfaCNlCKHhwz36rWmWsCaJs/8VrU+yY5WFgeMqnoeQGhCRjbb8U75WaNL\nYc6Q\r\n=fyNm\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/zone-node.js","unpkg":"dist/zone.js","browser":"dist/zone.js","scripts":{"promisetest":"tsc -p . && node ./promise-test.js","electrontest":"cd test/extra && node electron.js","promisefinallytest":"tsc -p . && mocha promise.finally.spec.js"},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"devops+npm@angular.io"},"repository":{"url":"git://github.com/angular/angular.git","type":"git","directory":"packages/zone.js"},"_npmVersion":"6.4.1","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"10.11.0","_hasShrinkwrap":false,"devDependencies":{"mocha":"^3.1.2","domino":"2.1.2","typescript":"~3.4.2","mock-require":"3.0.3","promises-aplus-tests":"^2.1.2"},"_npmOperationalInternal":{"tmp":"tmp/zone.js_0.10.1_1564782334160_0.496746269609295","host":"s3://npm-registry-packages"}},"0.10.2":{"name":"zone.js","version":"0.10.2","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.10.2","maintainers":[{"name":"anonymous","email":"devops+npm@angular.io"},{"name":"anonymous","email":"angular-core+npm@google.com"}],"homepage":"https://github.com/angular/angular#readme","bugs":{"url":"https://github.com/angular/angular/issues"},"dist":{"shasum":"67ca084b3116fc33fc40435e0d5ea40a207e392e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.10.2.tgz","fileCount":195,"integrity":"sha512-UAYfiuvxLN4oyuqhJwd21Uxb4CNawrq6fPS/05Su5L4G+1TN+HVDJMUHNMobVQDFJRir2cLAODXwluaOKB7HFg==","signatures":[{"sig":"MEUCIQCcR8MfkUcN/+TMXgMfeoeTXUx56qmxRDVUwkwZW3mO/AIgYANQ1hacOZvkYMnJMqsa+kGBCL4NUMBgQ2Zp/NVOat8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":3291378,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdU4RdCRA9TVsSAnZWagAACgQP/1jRIs7NqE5jHp/Vsrk0\nfdPQUOp4qyNuazi7XrR9jD20vehd3Fz2CmnJWZTET6jI8FPqyxsmaWdyNp1O\nmfifcsp2L8Vi1gKJHyn98eL4ujst/cdeBoJz32h1h80/9TTAhT0a8+3wZhLa\n2Q7LztJDdd9VCIxBsNHPiLiQ7SHAgctvGhCkfyMmm3h6ZZ4swve/Qdtqx5fv\n+XFP+J/90fHFeHIfH3valtEtHlr7dLuHhKTSP8p2m7lxMp6C05ivQoktldsB\nzPbtGwo4oLtw4JZ5Wq+GkE+v1KqTlKfIYKnXMhnqBRo1X2WlAPlWAGxT+9yk\nDQ2+tHWvKNoLJE2JaFJb2Yt7x1M2HH+HVRC7+N6wKUWUfLUuo41wjqdEAiLP\n2KFDe+VAyPj5kZwj7B2PbXmXcvTSWj1eksQDJby9Zwxq8J4lDH8TFf4P3kSI\nN78UibCGOB/XpnnDFB4xVi0igmA3kByEGy7B/3EnNe6b4aS1KKizMPdnRS3s\nbBBEraFGSCdawnUNLaT0SvndDll+SiSXbUaBAGwDCXkXEVSp79RGIbxBiUR7\nt4A5a8+g/GJ4+5+Uj3NuL3Htwmv/wRqokWDupQ9RtD1tQg8SVGylJT5QVn+7\nQ5D50XDTDEcQNa72t9q6yCB5nYvELMSwLkk9CZKrIvzX8PZVzvSEEMrXGqxi\nvboX\r\n=mJK+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/zone-node.js","unpkg":"dist/zone.js","browser":"dist/zone.js","scripts":{"promisetest":"tsc -p . && node ./promise-test.js","electrontest":"cd test/extra && node electron.js","promisefinallytest":"tsc -p . && mocha promise.finally.spec.js"},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"devops+npm@angular.io"},"repository":{"url":"git://github.com/angular/angular.git","type":"git","directory":"packages/zone.js"},"_npmVersion":"6.9.0","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"10.16.1","_hasShrinkwrap":false,"devDependencies":{"mocha":"^3.1.2","domino":"2.1.2","typescript":"~3.4.2","mock-require":"3.0.3","promises-aplus-tests":"^2.1.2"},"_npmOperationalInternal":{"tmp":"tmp/zone.js_0.10.2_1565754460601_0.3623697322555379","host":"s3://npm-registry-packages"}},"0.10.3":{"name":"zone.js","version":"0.10.3","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.10.3","maintainers":[{"name":"anonymous","email":"devops+npm@angular.io"},{"name":"anonymous","email":"angular-core+npm@google.com"}],"homepage":"https://github.com/angular/angular#readme","bugs":{"url":"https://github.com/angular/angular/issues"},"dist":{"shasum":"3e5e4da03c607c9dcd92e37dd35687a14a140c16","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.10.3.tgz","fileCount":207,"integrity":"sha512-LXVLVEq0NNOqK/fLJo3d0kfzd4sxwn2/h67/02pjCjfKDxgx1i9QqpvtHD8CrBnSSwMw5+dy11O7FRX5mkO7Cg==","signatures":[{"sig":"MEYCIQDGVP3lakfDiLpmW3zNkWeU1Qr0671ZrpE+0SepTCpolAIhAI3kho8/XyGeNfpeqH9jMZyBalD9Z95vx26ILyYT2kdd","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":3400000,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJecPfdCRA9TVsSAnZWagAAv+cP/A/6YRqq0nKojFH82fFq\npWDQiVgHdffOAXvj7xv9CAGwALUsXNNPKK8BzJ6yi1uIq5AKeUIWvaSJ32oN\neToonoLUM5zk+9PwkBL5ZoxLiYl8bjJYR/hg31fHqVF8rH5R+0YV6RWvUzdI\nnflcjrZEnPrBlzJAf6r9GTaNvMiZ6qiFOveUNownwlbkV1/1CnjOKh9rwK+E\n4IaW7BW+BWtMJR1qyt+vZhB8kjP6ed0s/m9eDyRBsPW1nwjLbcvAwzGr5eRK\nbeS2jNPIsZBBuXSfikeWT93k4oRqlONq7pbvsKYuMMZ7dT3tOZ9NxnSX/B5P\nEWrxyJRqyw3Fg/Kwq1qHKFt29O91dzu4fd2PNQz0ox/1So2o+YRY84qJTezy\n0hQ3WE4empJpheJzLmCq1pRBhFTaJUE+9S0mZ60gvIqgR+bcXFVSVt/y3NDW\nTUQF6f5zdZHWQgR2ZT5pDVMQN+0TdMa7A1w5jGiIHEy/Fq2y2QasFr+KjdiW\n0KnjDevGYhVtN3+LlzhHqxFYgUZ4FS91VuJtMVYmB4O/K81aUBFQENL80Z/w\nl3rt/+W7rQOlPFW3QmEzDaAjYdW9z4Xpp2wJRwyuG48Fa6gC1fZGHackqH8O\nUTrLz5g93LyjNwFMQBPJ3U7V29UlBDwJAOYcX4qe59sz7TYs/2PrdEsHow/1\nghGX\r\n=nTgO\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/zone-node.js","unpkg":"dist/zone.js","browser":"dist/zone.js","scripts":{"jesttest":"jest --config ./test/jest/jest.config.js ./test/jest/jest.spec.js","promisetest":"tsc -p . && node ./test/promise/promise-test.js","electrontest":"cd test/extra && node electron.js","promisefinallytest":"tsc -p . && mocha ./test/promise/promise.finally.spec.js"},"typings":"dist/zone.js.d.ts","_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"repository":{"url":"git://github.com/angular/angular.git","type":"git","directory":"packages/zone.js"},"_npmVersion":"6.13.4","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"12.14.1","publishConfig":{"registry":"https://wombat-dressing-room.appspot.com"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^25.1.0","mocha":"^3.1.2","domino":"2.1.2","typescript":"~3.4.2","@types/node":"^10.9.4","mock-require":"3.0.3","promises-aplus-tests":"^2.1.2"},"_npmOperationalInternal":{"tmp":"tmp/zone.js_0.10.3_1584461788663_0.5920218716200432","host":"s3://npm-registry-packages"}},"0.11.0":{"name":"zone.js","version":"0.11.0","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.11.0","maintainers":[{"name":"anonymous","email":"devops+npm@angular.io"},{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"node-team-npm+wombot@google.com"}],"homepage":"https://github.com/angular/angular#readme","bugs":{"url":"https://github.com/angular/angular/issues"},"dist":{"shasum":"38f864407066c7decf54cc0d3e14eae384e35e19","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.11.0.tgz","fileCount":5,"integrity":"sha512-Aeh31lIySDLetjIyTxk1X+j6jxWPHH99cLuOreApK0hNrEogxEO+cPhx5wQaeg7d7KcAFWrA6ZlIVTv7MTasyA==","signatures":[{"sig":"MEQCIG0aQHUKpee5DJ2hFnmzFpI4qGxXHmv5MUOYmGdw7ggDAiBGurqWUxCIr9pYUhiBLMnTR4sb8Dk8xf5RbprhI+/41w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":103117,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfPCYtCRA9TVsSAnZWagAAVsEP/0j2Sq1IhI1H1I/kxaqr\n1tg+c0VL424FHjrQ632a1fA3UWYxFjpMaWDvRPpXjxHiyaIdvoXUDsUWxXgv\nJI+3aOBfgt2tARAHlKrIn7nLVey9xfiUz08BIw7VmV6vXnESDa0OQRldUr4z\n0pJRBbfR7XUPy3DucOU0w9w7szSKB62EcQeudEwNXGH+CyFBHd4xFQURcv53\nA0F/1cx8ZQ9b5I2AFTVs0YYtscfNUaU4Qkbl3XiGxIzWhcCijJeLo55cV41l\nvh9VGDCLufRFddUjRkIRMnJefNnUZYdu+1QCtWltQO5nKkw89VxY0AkUmYXz\noi9xCOIS79MM3qNsw6Lua/v0S3I/tXbajRu9iKaXv8F//jU7aQW0QTDW3vgk\nUlHY38Z+xjF1yY/Nvl2SzsKRdkW3XBs6CUjX26F+wDSE3Ek2IrUxcjWPBE8K\nec35HD+iPW7AMuqiHjd66jIjR7XHVpRCOyrxBUV20hTb3a0gzQAbcnXHeIhA\nYCGVzJQy6U/HGhYfuNd0Jl2WbCWM/a/iKJ8mDW8DP3ebbFwkPLtyljuR0C74\nwTLa8jGGZaGwMCwj8i1ZSsuRSO10chyv+iSSEUbsqWaaYGpxIFT+A/yteu5u\nTWiePuS2bVUOsMCUmfMTZt5YQOL9l3TaEscG1wtEwLmGzPBp4wI11WdK8+gN\n3nhi\r\n=ScAf\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./bundles/zone.umd.js","es2015":"./fesm2015/zone.js","module":"./fesm2015/zone.js","scripts":{"jesttest":"jest --config ./test/jest/jest.config.js ./test/jest/jest.spec.js","promisetest":"tsc -p . && node ./test/promise/promise-test.js","electrontest":"cd test/extra && node electron.js","promisefinallytest":"tsc -p . && mocha ./test/promise/promise.finally.spec.js"},"_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"fesm2015":"./fesm2015/zone.js","repository":{"url":"git://github.com/angular/angular.git","type":"git","directory":"packages/zone.js"},"_npmVersion":"6.13.4","description":"Zones for JavaScript","directories":{"lib":"lib","test":"test"},"_nodeVersion":"12.14.1","dependencies":{"tslib":"^2.0.0"},"publishConfig":{"registry":"https://wombat-dressing-room.appspot.com"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^25.1.0","mocha":"^3.1.2","domino":"2.1.2","typescript":"^3.8.3","@types/node":"^10.9.4","mock-require":"3.0.3","promises-aplus-tests":"^2.1.2"},"_npmOperationalInternal":{"tmp":"tmp/zone.js_0.11.0_1597777453166_0.9163951636187428","host":"s3://npm-registry-packages"}},"0.11.1":{"name":"zone.js","version":"0.11.1","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.11.1","maintainers":[{"name":"anonymous","email":"devops+npm@angular.io"},{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"node-team-npm+wombot@google.com"}],"homepage":"https://github.com/angular/angular#readme","bugs":{"url":"https://github.com/angular/angular/issues"},"dist":{"shasum":"0301d00d26febb2722f074c46aac4a948698ce39","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.11.1.tgz","fileCount":277,"integrity":"sha512-KcZawpmVgS+3U2rzKTM6fLKaCX1QDv3//NxiSOOsqpQY/r5hl+xpYikPwY93Sp7CAB+J5mZJpb/YubxEYLGK5g==","signatures":[{"sig":"MEYCIQCIecYJgwA5SEZgDvWVYxhKSJqhcquMtgK8QparYGu7YwIhAL5AER7W2+VtuhGkan0FtFItuvhoTQ1KeMaYYCdIW2b7","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":3211965,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfPWvsCRA9TVsSAnZWagAAzDAP/2/u/yKS7HMFosBzh2w2\nog/KFMHnR/chSW8Pf+LgphdU8Clvkqa2Oab6H1WE+LQXHfVAUdkc1R7sLA3s\nI5+J3Ls0pcjjUqvEybPh3M/JUF6VZQCvlucmu++C/SoJimWan/fnFZ5HNMSd\nos9OtpvyC32Y2Xgy6vPr8Djvo1GxZW8hybi6STJHVWLJr93yybpIX4S64zHI\nxXsbIt42fR+1jBWgS6x9i4RKTs+YBudFyQlNf34Ne5e/EV88GYQBx6JhAcP3\n3pKxJcwcYakXg5q+BpC9rCH3/d4tW3ZAzZvRXTgwae16QLOem6k8jC1bm7Q0\nDx0fScyTB8cGd3BgW9J1ju2bmxh3rlDXoSVBnNKUC9aWKuovEx9xif9JEt/v\nUefMODREWQG0vwMhHlttm2+oM9FOM4O8XQIX+riepUMOcwvr0fVAIpYB0YPp\n977XL580mnXOR1W825+Y5KRyeyp0cAnft91Q+2IiXucS1QUVf8fY1tkFdjQ3\nBa6PO89nceSakUJg8A/WtNfpbnd3sP0mv+qExYPu8PphCyWl4gKMmV7VXNBX\nZ/+FpvtpLW11zCN/lEREefKE/4UDcmJJsmYfSMIuoLgKl7rwbMcblpdgLaUN\nXdxztHkhUSg3X1wlwMVJPEpr/yWdqUvzNYeAh6rmJ71GJpjFq4BNdFhR4gvX\n0ewp\r\n=z9eZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./bundles/zone.umd.js","es2015":"./fesm2015/zone.js","module":"./fesm2015/zone.js","scripts":{"jesttest":"jest --config ./test/jest/jest.config.js ./test/jest/jest.spec.js","promisetest":"tsc -p . && node ./test/promise/promise-test.js","electrontest":"cd test/extra && node electron.js","promisefinallytest":"tsc -p . && mocha ./test/promise/promise.finally.spec.js"},"_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"fesm2015":"./fesm2015/zone.js","repository":{"url":"git://github.com/angular/angular.git","type":"git","directory":"packages/zone.js"},"_npmVersion":"6.13.4","description":"Zones for JavaScript","directories":{},"_nodeVersion":"12.14.1","dependencies":{"tslib":"^2.0.0"},"publishConfig":{"registry":"https://wombat-dressing-room.appspot.com"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^25.1.0","mocha":"^3.1.2","domino":"2.1.2","typescript":"^3.8.3","@types/node":"^10.9.4","mock-require":"3.0.3","promises-aplus-tests":"^2.1.2"},"_npmOperationalInternal":{"tmp":"tmp/zone.js_0.11.1_1597860844194_0.9116035890697076","host":"s3://npm-registry-packages"}},"0.11.2":{"name":"zone.js","version":"0.11.2","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.11.2","maintainers":[{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"devops+npm@angular.io"},{"name":"anonymous","email":"node-team-npm+wombot@google.com"}],"homepage":"https://github.com/angular/angular#readme","bugs":{"url":"https://github.com/angular/angular/issues"},"dist":{"shasum":"bde87c9523f46a71b04f0f02b87af3edbb99b534","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.11.2.tgz","fileCount":278,"integrity":"sha512-JUpNKmWIovqRZlqkX6pFdBVlOU42n5Mt1n2yEaJdy+msBant/l2L1hTG6BFxCzM+KV3SX4XQOcwbhnwsPAeUTA==","signatures":[{"sig":"MEYCIQDasAsJmEMB0mpb6o/0L0oFWuTgSi0xXS/O+hFRJ86DdgIhAJk/LKOOrkhlY+1/pNDA0k2qLG7w2DnNKcdll42bh0st","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":5382516,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfif4bCRA9TVsSAnZWagAA774QAIbK3B9pw5mXlAWL8mbv\nK14owHWvWJEoSBPD1pTa5a4u7kT+JgYbLR7a1N8G9OQGEXdl5bnXoG3B28ZR\nv55PcQvX6FsdoFr9UX/XlWLgbLKC+dDueH74BMtX+Z9zaj8Z+0TfeGabNv+X\n88tAQQqkvWvmlIYiOOEzdp9GbQMrRP0JxEQsxozlAZWp7qU7BYuZMcNE8w7Y\n3CAVBzlW5mOuZG5fdNy8Ve8RJCXYUOtJrRtBJAf5ydbzt8gSj3L0Mbwkb7NT\nbgucA15X+GUbR/LAnYy5+m7Il0sX89QwKeWvNoN22sbqahEG7R7ogxcPkyzL\nvPTF2coTDkqNAkJpGYWcueii02ZZ1n5kV+Ymn6Ms8xv1ENUh2L7oruHl0ADa\nDlQ4vZmFJhbpyH0yL+I6vxSD/+8fWc2OZ8KtOpkWcNJ/GaWd+4KVfzJVcBzz\nms3jkqdHrfooPGvoAlFsnPFCbOICBkPB2bgxQ5k35YZUlGeBorgj7y7tM3jz\n6YjfrAIamdcLr5OW0HfMrmQTuUFomErCfQxh+l6pbtTB33iHE2/hTAf4XC5x\nTcsFpLW1MMW7F9NwtjNisMRXVYnDZQ0TPMfDzUKp35Rf1Hq1vHNuNBWbchkc\nL2rpTAr3DmXb5oKmICd4kV8/5QJ8pry3hduvvi69r1Ids/8rBo22ByD+l1AP\nJSuh\r\n=Qo90\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./bundles/zone.umd.js","es2015":"./fesm2015/zone.js","module":"./fesm2015/zone.js","scripts":{"jest:test":"jest --config ./test/jest/jest.config.js ./test/jest/jest.spec.js","promisetest":"tsc -p . && node ./test/promise/promise-test.js","electrontest":"cd test/extra && node electron.js","jest:nodetest":"jest --config ./test/jest/jest.node.config.js ./test/jest/jest.spec.js","promisefinallytest":"tsc -p . && mocha ./test/promise/promise.finally.spec.js"},"typings":"./zone.d.ts","_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"fesm2015":"./fesm2015/zone.js","repository":{"url":"git://github.com/angular/angular.git","type":"git","directory":"packages/zone.js"},"_npmVersion":"6.13.4","description":"Zones for JavaScript","directories":{},"_nodeVersion":"12.14.1","dependencies":{"tslib":"^2.0.0"},"publishConfig":{"registry":"https://wombat-dressing-room.appspot.com"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^26.4","mocha":"^3.1.2","domino":"2.1.2","typescript":"4.0.2","@types/node":"^10.9.4","mock-require":"3.0.3","promises-aplus-tests":"^2.1.2"},"_npmOperationalInternal":{"tmp":"tmp/zone.js_0.11.2_1602879002517_0.6837473845574866","host":"s3://npm-registry-packages"}},"0.11.3":{"name":"zone.js","version":"0.11.3","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.11.3","maintainers":[{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"devops+npm@angular.io"},{"name":"anonymous","email":"node-team-npm+wombot@google.com"}],"homepage":"https://github.com/angular/angular#readme","bugs":{"url":"https://github.com/angular/angular/issues"},"dist":{"shasum":"255a6313174731cc014d63233ef04fd9858da375","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.11.3.tgz","fileCount":278,"integrity":"sha512-Y4hTHoh4VcxU5BDGAqEoOnOiyT254w6CiHtpQxAJUSMZPyVgdbKf+5R7Mwz6xsPhMIeBXk5rTopRZDpjssTCUg==","signatures":[{"sig":"MEQCIA/gswsTd9Mxs6buwWKxhdDXEeOwE1t5hfyoeIYHiJYZAiBymIu7yMN8n0oG/+66QHA9Ma8ZoD2oU8fum8KpxBCYEA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":5379216,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfofgnCRA9TVsSAnZWagAA/J4P/0kbM23SYJ1SIyGNjRA5\nk5shvrHofkt2gJPSUOcXrXcgV0jUcqe84rW0i0TDJXBryFBjiNdnj4G6uVvi\nbEnFuxYKKPgscfQ1ssLD2IudBMcnOZe2UVK7+Nepyhf4YPFjESOYPz+oH77k\nBDLUtXSx6ca06hB7fEN0Pg7xroRiXD1nDGmQ0+1rULkIR1kV63Sq9mkEowdB\nnSCFpvYXrSn7wcsk72KFvp7khw0l9UxBHmhBVFv5D1lrTQtZMsyKagv5gkPv\nRPVenjncrgnUxX/9ZeqnotPYZg/NEasQeM5aSg6Y3W2yPAYf/LiS2woki9uj\n2x9gSzcsoqaMq4Xoh5l/NW3paPorhVeGVHvD5uwMh/exOxQxHFqnd7I3lmIN\ntXu5SfNCLzhMckTNX5+hOKtHZ8lcDRtZoU4Ocl9FrPOQSEWUG8he6S/OE5A5\npifnzkISyelMTZNRJ7KkPiSuaFwpSOlDs0YyV/tWzDgAD6RlwRVgTOxObozs\nrl/jn958JZGNc+vonh93OW7ziHZBQ3yxt8TAyA8YS9TwmuU3Lpkjbr0ri+Ul\nmqs/IXg1Y9W7IlQBdfLhugqdNi+paO9aHULWc69kta9X+tr1V6t6dR0l+L4f\nC6HMw9FAo2SKZo+j9wOVkYj4VuYr06wfbr5glzQm5EYmwCMqaS9Fw/qh8YDy\nFNpk\r\n=ZGW6\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./bundles/zone.umd.js","es2015":"./fesm2015/zone.js","module":"./fesm2015/zone.js","scripts":{"jest:test":"jest --config ./test/jest/jest.config.js ./test/jest/jest.spec.js","closuretest":"./scripts/closure/closure_compiler.sh","promisetest":"tsc -p . && node ./test/promise/promise-test.js","electrontest":"cd test/extra && node electron.js","jest:nodetest":"jest --config ./test/jest/jest.node.config.js ./test/jest/jest.spec.js","promisefinallytest":"tsc -p . && mocha ./test/promise/promise.finally.spec.js"},"typings":"./zone.d.ts","_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"fesm2015":"./fesm2015/zone.js","repository":{"url":"git://github.com/angular/angular.git","type":"git","directory":"packages/zone.js"},"_npmVersion":"6.13.4","description":"Zones for JavaScript","directories":{},"_nodeVersion":"12.14.1","dependencies":{"tslib":"^2.0.0"},"publishConfig":{"registry":"https://wombat-dressing-room.appspot.com"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^26.4","mocha":"^3.1.2","domino":"2.1.2","typescript":"4.0.2","@types/node":"^10.9.4","mock-require":"3.0.3","@externs/nodejs":"^1.5.0","promises-aplus-tests":"^2.1.2","google-closure-compiler":"^20200927.0.0"},"_npmOperationalInternal":{"tmp":"tmp/zone.js_0.11.3_1604450343177_0.11884496201493056","host":"s3://npm-registry-packages"}},"0.11.4":{"name":"zone.js","version":"0.11.4","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.11.4","maintainers":[{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"devops+npm@angular.io"},{"name":"anonymous","email":"node-team-npm+wombot@google.com"}],"homepage":"https://github.com/angular/angular#readme","bugs":{"url":"https://github.com/angular/angular/issues"},"dist":{"shasum":"0f70dcf6aba80f698af5735cbb257969396e8025","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.11.4.tgz","fileCount":278,"integrity":"sha512-DDh2Ab+A/B+9mJyajPjHFPWfYU1H+pdun4wnnk0OcQTNjem1XQSZ2CDW+rfZEUDjv5M19SBqAkjZi0x5wuB5Qw==","signatures":[{"sig":"MEYCIQDHf15SBmxfNqbKbfsn4NAyxdaM+7Wf/PulyNhOJCjQXgIhAO49btN+ofoqRAWMQcu7VUjmmkV50okD60jUUVlIS1wm","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":5401848,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgLBDoCRA9TVsSAnZWagAAZC8P/2gjKAXL6Vw6c8H4sDun\nGzSKQW7f4zVyH136QB49F+L0W2duDCMFtQCNwZraQ/k+NXh7RLYAnUhAGt18\nMiQjV1vQSthzdjWwrbFuuoOseTPUi/0zSOi86LoN153efRk6bYUwdLN7dAZD\npT5GzQ5dCztHVfm3fH/72346EwwRjgNUmBnJQEMfkWVdhQP8Grap6s7DHrqb\n8iXReTC1e7fLPa7FZBa3vEtKtY9SXsFDw2zbkMfUmJX98hwyEl5Td92/eSl5\nRavlyXGpF61Iz3wY9Ca56fpubY7K37Z5eIvF0hQxECicTVadmNF+Apdd8KTX\nQgtYIjAS/STyO/fEIBSzPMUENRItY2ds+5LhHPLRLPgIvqJcKCH47BBT++Or\nOgHwiYFJsDXUlv9GnARn9qrgK1mrNrViVy1a1YJ4z5lnUKgFd1h1/Kg6ZbLf\nq9tXUukgC+OftW1KEv5+ta5pgoh73Fd5E7o8l390S0/7kwlTe3pKyVHUD+Xh\n2IKbu+ZQ6gPXTFTAVcS7WSU/OmgmNdZlm+B4VLOUBwPjlzTvw0RcEnTjgvtg\nYjeLxS1h1iKRiasvrvZPp031sAlZB2KdlGdq7GlcHV8flKClA9bINUdpaUbJ\nBtfZaKjznIXZU6Wttk9jyp2hsqFGlaju/DT1m3jtOehU3oV/p3OSuef9B+DM\n/CIt\r\n=hGom\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./bundles/zone.umd.js","es2015":"./fesm2015/zone.js","module":"./fesm2015/zone.js","scripts":{"jest:test":"jest --config ./test/jest/jest.config.js ./test/jest/jest.spec.js","closuretest":"./scripts/closure/closure_compiler.sh","promisetest":"tsc -p . && node ./test/promise/promise-test.js","electrontest":"cd test/extra && node electron.js","jest:nodetest":"jest --config ./test/jest/jest.node.config.js ./test/jest/jest.spec.js","promisefinallytest":"tsc -p . && mocha ./test/promise/promise.finally.spec.js"},"typings":"./zone.d.ts","_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"fesm2015":"./fesm2015/zone.js","repository":{"url":"git://github.com/angular/angular.git","type":"git","directory":"packages/zone.js"},"_npmVersion":"6.13.4","description":"Zones for JavaScript","directories":{},"_nodeVersion":"12.14.1","dependencies":{"tslib":"^2.0.0"},"publishConfig":{"registry":"https://wombat-dressing-room.appspot.com"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^26.4","mocha":"^3.1.2","domino":"2.1.2","typescript":"4.1.2","@types/node":"^10.9.4","mock-require":"3.0.3","@externs/nodejs":"^1.5.0","promises-aplus-tests":"^2.1.2","google-closure-compiler":"^20200927.0.0"},"_npmOperationalInternal":{"tmp":"tmp/zone.js_0.11.4_1613500646840_0.11014998420865507","host":"s3://npm-registry-packages"}},"0.11.5":{"name":"zone.js","version":"0.11.5","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.11.5","maintainers":[{"name":"anonymous","email":"devops+npm@angular.io"},{"name":"anonymous","email":"devops+npm@angular.io"},{"name":"anonymous","email":"node-team-npm+wombot@google.com"}],"homepage":"https://github.com/angular/angular#readme","bugs":{"url":"https://github.com/angular/angular/issues"},"dist":{"shasum":"ab0b449e91fadb5ebb2db189ffe1b7b6048dc8b1","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.11.5.tgz","fileCount":278,"integrity":"sha512-D1/7VxEuQ7xk6z/kAROe4SUbd9CzxY4zOwVGnGHerd/SgLIVU5f4esDzQUsOCeArn933BZfWMKydH7l7dPEp0g==","signatures":[{"sig":"MEUCIBMVn8WfmGMkTtA0jb5Hw05fDX6cF4orPeEytlt/JY4WAiEAyHfPrNmYErZVh3SLaq6Tx74KtuIbRn2cbaXDEQZsAHE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":5409667,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiIVX5ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpYig/9Ev0HQZP/2KaUxyaCqULQELixpUi5Jebgg0xtFiSWe9alz4H7\r\nrrHjHw2LU3VvJAz8B8ewN+h4O6ARZ3YT2K8If3qSSUPHsmmiFIG0SBtWOmZL\r\n4mICGO12TU7jozmr67YqrQLynuQxLJIBJkonF0Jp06SAqHHB5xZg6sl+UGEF\r\nk8L89u1re2xP7MRISpQa/pNvixyjDtRJ7QVPAOg11byxv0KDrecFhsEj2iaZ\r\nwNovfUr+jt+2juoRZ1D5c5HndfNjHsfAf3tGhz16mgyrWA6NPPyQPSvboa3X\r\nHP92kuznvMftDsCRhMeCsh1mT8RwfFW+UxwJ2KPY7LCLCOj8cyGBZt3AkM53\r\nLTPzRGV5YWXC3k0RjRqHQd2V/Naq+2sqck3b1764bf4USF66+dRcY7Fgh2Ri\r\nDcXKaDUudmoSq6mFTcOaZwOrsoGq+5hX9YZuGG4ie0ZF3ILGGfy7cSx6yfLK\r\nte9L/PEgF78T6V8WyF4saynnE0hEA+vVDiY91hiBdXnAt2baJB8Amp+dqE0b\r\nPwzjVFADEI3v4fvXnMyptLSDSLX2ZBQA4kzl6Ka8vYpnQoR4ZErJRGrqfWs5\r\ngIP4lFE8n8XGfgGsuT9JGQQ2CBdcbqdAOfWlbWa0ZhPZLpU8MdWTpRoL+1/G\r\nVd7LaK/Z7TSK6cl9ggrQvNNWjhhe21Go8Ww=\r\n=sdHl\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./bundles/zone.umd.js","es2015":"./fesm2015/zone.js","module":"./fesm2015/zone.js","gitHead":"9b1e9c0bd7e8332781d0276be7644e3d3b23c668","scripts":{"jest:test":"jest --config ./test/jest/jest.config.js ./test/jest/jest.spec.js","closuretest":"./scripts/closure/closure_compiler.sh","promisetest":"tsc -p . && node ./test/promise/promise-test.js","electrontest":"cd test/extra && node electron.js","jest:nodetest":"jest --config ./test/jest/jest.node.config.js ./test/jest/jest.spec.js","promisefinallytest":"tsc -p . && mocha ./test/promise/promise.finally.spec.js"},"typings":"./zone.d.ts","_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"fesm2015":"./fesm2015/zone.js","repository":{"url":"git://github.com/angular/angular.git","type":"git","directory":"packages/zone.js"},"_npmVersion":"7.24.0","description":"Zones for JavaScript","directories":{},"_nodeVersion":"16.10.0","dependencies":{"tslib":"^2.3.0"},"publishConfig":{"registry":"https://wombat-dressing-room.appspot.com"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^26.4","mocha":"^9.0.0","domino":"2.1.6","typescript":"~4.5.2","@types/node":"^10.9.4","mock-require":"3.0.3","@externs/nodejs":"^1.5.0","promises-aplus-tests":"^2.1.2","google-closure-compiler":"^20220202.0.0"},"_npmOperationalInternal":{"tmp":"tmp/zone.js_0.11.5_1646351865436_0.5897046347136372","host":"s3://npm-registry-packages"}},"0.11.6":{"name":"zone.js","version":"0.11.6","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.11.6","maintainers":[{"name":"anonymous","email":"devops+npm@angular.io"},{"name":"anonymous","email":"node-team-npm+wombot@google.com"}],"homepage":"https://github.com/angular/angular#readme","bugs":{"url":"https://github.com/angular/angular/issues"},"dist":{"shasum":"c7cacfc298fe24bb585329ca04a44d9e2e840e74","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.11.6.tgz","fileCount":278,"integrity":"sha512-umJqFtKyZlPli669gB1gOrRE9hxUUGkZr7mo878z+NEBJZZixJkKeVYfnoLa7g25SseUDc92OZrMKKHySyJrFg==","signatures":[{"sig":"MEQCIHKqsq6ytBfCbFetXlaSxJ14b5NUdsqs4G/JYOfxELySAiBZvkCg8Niq6GFOZNas+1Mg+1ALIPcvKKg1E7uxCcE4/Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":5464629,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiqiMnACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmowdA//W6XOBb09moLseaPQ3ol9mG0LyRcVwLNXJlfECdrs+eWQSmCA\r\not4zUcy92R60g4s565sXN/FJnZI+uhFTEnQYLIpBeNKrvzwesdjNhIHut8Hj\r\nFbJeqZAHSah4QveOzEHrOadmIIqZzbuxqCyiWrFbrfrTi8lMR1OY3nFb+KVX\r\nryQphZB9X7CGCGjGcbmAiHLhn4mtR0A1KHsdNFofsNCHaIhkZXeDdJppaU7U\r\neg2g5qgCD6y58RUnOzSydYTH+G5smzRZphSRHcXwKNRxtZKbvSztZeALptFv\r\n8iskcyBDW0JdijnvmOpvbjCTu3ObY8ylB1gnBX/8VOvoz/GG0vUkvrIqI9AC\r\nJz4q1TO9LKGZBOxxKnVKb4fK85DJbDPQJmUNLH8zuHrFGsvFv72/A30nyNrZ\r\nCDDmxKfY9j+H3g11GTuH6Jgd7GgZeDoZ7AV1CkQiy0g9D17JJ3OllXoY3HC6\r\n9PxSNpioAtnsX7Nd54bx0R83fO472jcBRXb/aLLcCfF3eq3XoeDtHIGVu638\r\nntvnugRo3XQS/SJA5U+Sa2V75dhZDziWopGc13eixZFhMY03MbVsiipIsVqW\r\nDwGtuM9UhEMQLonmcCOTZh7YTdcJ4Ov4alyUG0yDp9K1Lu5CqAvrQHMGXk/u\r\nirdiKFlipa8kdWFw06MzRJip1RsICO02/Sk=\r\n=ER8d\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./bundles/zone.umd.js","es2015":"./fesm2015/zone.js","module":"./fesm2015/zone.js","gitHead":"1120d540d863922308c116da0ba33f08ceb87ac1","scripts":{"jest:test":"jest --config ./test/jest/jest.config.js ./test/jest/jest.spec.js","closuretest":"./scripts/closure/closure_compiler.sh","promisetest":"tsc -p . && node ./test/promise/promise-test.js","electrontest":"cd test/extra && node electron.js","jest:nodetest":"jest --config ./test/jest/jest.node.config.js ./test/jest/jest.spec.js","promisefinallytest":"tsc -p . && mocha ./test/promise/promise.finally.spec.js"},"typings":"./zone.d.ts","_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"fesm2015":"./fesm2015/zone.js","repository":{"url":"git://github.com/angular/angular.git","type":"git","directory":"packages/zone.js"},"_npmVersion":"7.24.0","description":"Zones for JavaScript","directories":{},"_nodeVersion":"16.10.0","dependencies":{"tslib":"^2.3.0"},"publishConfig":{"registry":"https://wombat-dressing-room.appspot.com"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^26.4","mocha":"^9.0.0","domino":"2.1.6","typescript":"~4.7.2","@types/node":"^10.9.4","mock-require":"3.0.3","@externs/nodejs":"^1.5.0","promises-aplus-tests":"^2.1.2","google-closure-compiler":"^20220405.0.0"},"_npmOperationalInternal":{"tmp":"tmp/zone.js_0.11.6_1655317287198_0.7091400832450399","host":"s3://npm-registry-packages"}},"0.11.7":{"name":"zone.js","version":"0.11.7","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.11.7","maintainers":[{"name":"anonymous","email":"devops+npm@angular.io"},{"name":"anonymous","email":"node-team-npm+wombot@google.com"}],"homepage":"https://github.com/angular/angular#readme","bugs":{"url":"https://github.com/angular/angular/issues"},"dist":{"shasum":"262194267c7b964e8da77ce16b9fba9bea23cfdc","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.11.7.tgz","fileCount":286,"integrity":"sha512-e39K2EdK5JfA3FDuUTVRvPlYV4aBfnOOcGuILhQAT7nzeV12uSrLBzImUM9CDVoncDSX4brR/gwqu0heQ3BQ0g==","signatures":[{"sig":"MEQCIDZNy+wRBkqH5oCDZHsmuP2rdzVxdOyauT/44PF/C2grAiBDbKJO56s52+OYcDKRbTugtkzjAIfIcTAaIO7Te241qA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":5505006,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi2S2XACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmquohAAihQSXS0vr4YM7LDrbIRzY8T8Wk+jutxdkpKwUlZHNJ8Nm2fF\r\nB9XJw/y4i1OhlR6OFHx6mwlcOwnJxGvRkeoyNjuJKgLH4YbBA37kZmZ21blj\r\nSm8W1CrRqGkDCKO0jCOIcmIT7q8Ee1JxW6OCxs2cpD1dwpImuzRQva+gGK3R\r\n9wStSoB4U4uzrpgFanq78tVQ/ixqS9LYjQc9B1jc4qgmX4v6SdoIpeud1e9m\r\nuSqafjvio6X9JtsE9ryZ+5UTi/5MUR3OPGM2CTAPogxzfeAUk9OXHR2CeuBd\r\nmhuNlAlO3GSbegUfKNVxxWhnz2LgNiiHx/yR0dUJunp3a6oNA3qwJogfw+Sz\r\nBz/YS8dHuji+H7igaGTBG93ugOhz3wsAba1k5Vk74OFNXccL9yZPV81eGcAF\r\nIOCL75GRTdpJmKd4goSiCwppIQD1Zn5vz8KV7Dosi7JJrckmBRRaYja8ujGf\r\nRyUf8c8+ZB5QM+7+MsDiBCENVLTo8+WbvoROIrTlk7upQUETtcuuDUysXUma\r\nFt9DGtB4dx70ZdIEop4B+Yqp7KcwFbaBfFA7LtMqBLs+3HzeKoAWASazCaXW\r\nH18y7B1/qUhSYsSe0MYSo7GqU8hanzxpIaaHo74+YGu0mqBb4xUIK18mo5N4\r\nKEasHnHMQu6Q08Fs6J6YHv26Ko4lxmhKDbY=\r\n=dzzY\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./bundles/zone.umd.js","es2015":"./fesm2015/zone.js","module":"./fesm2015/zone.js","gitHead":"24f63fa4e3532167fc9baa6cf6d084203c7e051b","scripts":{"jest:test":"jest --config ./test/jest/jest.config.js ./test/jest/jest.spec.js","closuretest":"./scripts/closure/closure_compiler.sh","promisetest":"tsc -p . && node ./test/promise/promise-test.js","electrontest":"cd test/extra && node electron.js","jest:nodetest":"jest --config ./test/jest/jest.node.config.js ./test/jest/jest.spec.js","promisefinallytest":"tsc -p . && mocha ./test/promise/promise.finally.spec.js"},"typings":"./zone.d.ts","_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"fesm2015":"./fesm2015/zone.js","repository":{"url":"git://github.com/angular/angular.git","type":"git","directory":"packages/zone.js"},"_npmVersion":"7.24.0","description":"Zones for JavaScript","directories":{},"_nodeVersion":"16.10.0","dependencies":{"tslib":"^2.3.0"},"publishConfig":{"registry":"https://wombat-dressing-room.appspot.com"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^26.4","mocha":"^10.0.0","domino":"2.1.6","typescript":"~4.7.2","@types/node":"^10.9.4","mock-require":"3.0.3","@externs/nodejs":"^1.5.0","promises-aplus-tests":"^2.1.2","google-closure-compiler":"^20220601.0.0"},"_npmOperationalInternal":{"tmp":"tmp/zone.js_0.11.7_1658400151384_0.034556522038692306","host":"s3://npm-registry-packages"}},"0.11.8":{"name":"zone.js","version":"0.11.8","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.11.8","maintainers":[{"name":"anonymous","email":"devops+npm@angular.io"},{"name":"anonymous","email":"node-team-npm+wombot@google.com"}],"homepage":"https://github.com/angular/angular#readme","bugs":{"url":"https://github.com/angular/angular/issues"},"dist":{"shasum":"40dea9adc1ad007b5effb2bfed17f350f1f46a21","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.11.8.tgz","fileCount":286,"integrity":"sha512-82bctBg2hKcEJ21humWIkXRlLBBmrc3nN7DFh5LGGhcyycO2S7FN8NmdvlcKaGFDNVL4/9kFLmwmInTavdJERA==","signatures":[{"sig":"MEUCIQCq69wt32mnZA3DSLYuCsgh+mcHeTHxFpbqthjfnxMbCAIgQ4LVMJTXca4Mek+eSrWNusD8ZcVid5sM8/NBtnivvpw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":5498344,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi9mOTACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrM0w/8C+zbpnZSas8yvYPuZ0IL7ZnBWnpu1uE6B9SrhihKEP4Yno65\r\nVoPB41ZmlvMxnFF92AfuTiHpdjRabKsNos92s2n1li8ekuG1Kf62qjyHmUOi\r\nc6oLiUZ4lM/A2Z05g00DbC8WdCI0OfcXEtgrzi1HbVLEQuMsiw0hBBnXs7kM\r\nbd7X+D1a2Fz862/xn+wRhWmZYwdoeFdFq4cSGa4y/PkhGEXktqXPPnSwFzJB\r\nKl1a2cmL1gnkDDtuUMIPZTLJxQlFzM1LnQgXo59dBYWYM69tzLAARhCV6Ho5\r\nrqY5uLWpdSQkDcc8PVNACJMjdei4efztrRTdI3CT/qL2c1f1fQLjvazQWWFe\r\nBEewKNr+kADPut6z3qr5+EPIs+l7yiErgzzvE46zf8orsBUFvt5voAh9scqC\r\nfdJWulOGSs9pCNt1lfaf8DDyQIA9FCbeYo0tS4dAVKzaHORNSXCuvrBxfn2R\r\nJ780UA8JbvdLtSmKSihEXLxOdVnz8BHW//p7k0Lut/G5htBhuwM4WpRSU1k/\r\n3V3YmBSDGo44K/ykDLPdu/9xhjd6bOzmdk7NR7BYjb/t0F2Svk0diLyLkw6B\r\nyTtNy6tcrh/ZSDhOHyDlHfDV5+O4j+YpnARD6KPWRSU/80arHqeQ+jsrjNiR\r\nT0xUX6LFExIkLsVfI0m+oiOIMe2pG1cEB9M=\r\n=FLdT\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./bundles/zone.umd.js","es2015":"./fesm2015/zone.js","module":"./fesm2015/zone.js","gitHead":"58e604ceea0e28f6ba3047de7b40d82853dfce12","scripts":{"jest:test":"jest --config ./test/jest/jest.config.js ./test/jest/jest.spec.js","closuretest":"./scripts/closure/closure_compiler.sh","promisetest":"tsc -p . && node ./test/promise/promise-test.js","electrontest":"cd test/extra && node electron.js","jest:nodetest":"jest --config ./test/jest/jest.node.config.js ./test/jest/jest.spec.js","promisefinallytest":"tsc -p . && mocha ./test/promise/promise.finally.spec.js"},"typings":"./zone.d.ts","_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"fesm2015":"./fesm2015/zone.js","repository":{"url":"git://github.com/angular/angular.git","type":"git","directory":"packages/zone.js"},"_npmVersion":"7.24.0","description":"Zones for JavaScript","directories":{},"_nodeVersion":"16.10.0","dependencies":{"tslib":"^2.3.0"},"publishConfig":{"registry":"https://wombat-dressing-room.appspot.com"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^26.4","mocha":"^10.0.0","domino":"2.1.6","typescript":"~4.7.2","@types/node":"^10.9.4","mock-require":"3.0.3","@externs/nodejs":"^1.5.0","promises-aplus-tests":"^2.1.2","google-closure-compiler":"^20220719.0.0"},"_npmOperationalInternal":{"tmp":"tmp/zone.js_0.11.8_1660314515267_0.6644133929149936","host":"s3://npm-registry-packages"}},"0.12.0":{"name":"zone.js","version":"0.12.0","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.12.0","maintainers":[{"name":"anonymous","email":"devops+npm@angular.io"},{"name":"anonymous","email":"node-team-npm+wombot@google.com"}],"homepage":"https://github.com/angular/angular#readme","bugs":{"url":"https://github.com/angular/angular/issues"},"dist":{"shasum":"a4a6e5fab6d34bd37d89c77e89ac2e6f4a3d2c30","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.12.0.tgz","fileCount":278,"integrity":"sha512-XtC+I5dXU14HrzidAKBNMqneIVUykLEAA1x+v4KVrd6AUPWlwYORF8KgsVqvgdHiKZ4BkxxjvYi/ksEixTPR0Q==","signatures":[{"sig":"MEUCIQCJFrrTrCasH27mkJ/jTJTC60nrVZYbIgABYgA1BwFVzgIgQtvIDs8yRkLl6Qo1fUQU3hBhm7Azrn1mVbwcC9WTlho=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":5492746,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjaV7KACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr/PQ/+JgR+7LAei3Pm2pyOJsIxXUimCASlTtDV33lkekdJItHs0qBT\r\nuLfbTTAJ7YFYX01MMf/zkWjmds5M4eefliWrsY5dDPsyU3LC1IvZdJzvLLMm\r\nOKie0WbGUCziqjUdIDXtKaZU+JVCfI4s9PgWTi5vWbRMAMr8aSdaofWk8oWI\r\nky5ecn1sKblsn3LZzvIB5ZEF/zCz+QaZc0STPDsiVF9RSEFY9BLgidNdhygE\r\nBbepR2XF87el8STYhjaK/JFszyGkjlOmC9ARjTVWBO1aCunQAP+iXPP/IYGv\r\nZK4VVNE1VkDmiItStOCLnlUe79UI48D07JAAeMhEBtD4StjeBAeq0guTtuwh\r\nNBPra4lp95F5qhMW9TT1tKgEoJzTBrBWOvjVihUwMvudjPWxN4Mw3Y1ZsEmo\r\nhYIlVn1n1RPSMMxLrLBBMJQA4RsGe/QwQXCzFE5moNu+BTfbQ/ecZ/bTNEyi\r\n/zqKK31hgfBVEjIySoUY/9YFTihsLPm/mXuJt4wNRdGM9c34lsLxs/i8crhj\r\nuVl3J45yOsw2F4/P67B8J1lITfmmHPX8cvjowFGdujRAs2T9hMOkcUBBY19p\r\nDAqtroMKowD6tmTYl1CmZwbUVMJLFdIdhai/NRutZFqEq+gHZwuzyUoU7j0b\r\nUPISzNKs1mE8UWXOCLtx6BlJSIVD5RNOUFE=\r\n=srYQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./bundles/zone.umd.js","es2015":"./fesm2015/zone.js","module":"./fesm2015/zone.js","gitHead":"24c93bbd87b39d66b70efd41b12209ff022c6b9a","scripts":{"jest:test":"jest --config ./test/jest/jest.config.js ./test/jest/jest.spec.js","closuretest":"./scripts/closure/closure_compiler.sh","promisetest":"tsc -p . && node ./test/promise/promise-test.js","electrontest":"cd test/extra && node electron.js","jest:nodetest":"jest --config ./test/jest/jest.node.config.js ./test/jest/jest.spec.js","promisefinallytest":"tsc -p . && mocha ./test/promise/promise.finally.spec.js"},"typings":"./zone.d.ts","_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"fesm2015":"./fesm2015/zone.js","repository":{"url":"git://github.com/angular/angular.git","type":"git","directory":"packages/zone.js"},"_npmVersion":"8.1.0","description":"Zones for JavaScript","directories":{},"_nodeVersion":"16.13.0","dependencies":{"tslib":"^2.3.0"},"publishConfig":{"registry":"https://wombat-dressing-room.appspot.com"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^29.0","mocha":"^10.0.0","domino":"2.1.6","typescript":"~4.8.2","@types/node":"^10.9.4","mock-require":"3.0.3","@externs/nodejs":"^1.5.0","promises-aplus-tests":"^2.1.2","jest-environment-node":"^29.0.3","jest-environment-jsdom":"^29.0.3","google-closure-compiler":"^20221004.0.0"},"_npmOperationalInternal":{"tmp":"tmp/zone.js_0.12.0_1667849930145_0.9653189363429773","host":"s3://npm-registry-packages"}},"0.13.0":{"name":"zone.js","version":"0.13.0","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.13.0","maintainers":[{"name":"anonymous","email":"devops+npm@angular.io"},{"name":"anonymous","email":"node-team-npm+wombot@google.com"}],"homepage":"https://github.com/angular/angular#readme","bugs":{"url":"https://github.com/angular/angular/issues"},"dist":{"shasum":"4c735cb8ef49312b58c0ad13451996dc2b202a6d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.13.0.tgz","fileCount":278,"integrity":"sha512-7m3hNNyswsdoDobCkYNAy5WiUulkMd3+fWaGT9ij6iq3Zr/IwJo4RMCYPSDjT+r7tnPErmY9sZpKhWQ8S5k6XQ==","signatures":[{"sig":"MEYCIQDfCzQAVXAgmLqy2eJvfzRHyPfxZrPaUu0GmNoHrILscQIhAIOyCrghhyKGWxQzU1/iMxqEzIsqt5ce+dYocI56a3+N","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":5181338,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkBj+NACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqncQ/9EhPWI8fqxPbPCqJa4q16yTBD64EA62wI9GtBsELsBOYKGRjG\r\njPhLvaUvov4vO7wR5MQkVhteMMJAJ8haQ3htlt0/hzXK5xFjbzlayZstiTux\r\nlbdnQpIFbGLhgZETJc5BIVFXJwSwfZE6ivja+pX84ezwWr1u2f5Tfs7OJ9ue\r\n+Br0tUPk7ObkXMaV4WKarVXQXr2ukJB4U3640PIH2dh36mlU5wA2aKLMRhFr\r\nYfQriveJsC//Q+vn1BNl/TNolkXeVl/OlcsyaCkyA+EgzRIGe9Mu7nPVmnWM\r\nIgCmEpZXnIFKiTEUwZFyqMhTRUqVXoTvjYJhwtQYJtDPuWEwlQDf3XcdooBN\r\nnR6BAye0L+mRgkJBWD63JAOTWVPOJUqzW/salbTreyvmRfrvHtLZ6A8wY22Z\r\nNbBHNZRbEufs/tICkFaWyrnviC56oVQeopjcQOcl2R5pB7+G0Gq1YZ1ZZrWY\r\n3J1LKTr5TgLjevPgkGcht4DJcWpnKbUlwFYhPM8fZtY5qV0Pf5cNidsPi1QG\r\nXGtnTP4sXXUpEGcnG7kD+vR9aIraBTgs75gvcNjzz1uqMXb+QiXniFUmwWqp\r\nNwpI8QWVjl92DOcjDFO4s3fKgX5X+1YcKEbZlBwsAmi1AiJH8k9BQ7EfoE0P\r\nUnyeQn8/B8lWlI+YMpAbot+w9tjSAb5IT2w=\r\n=FMXb\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./bundles/zone.umd.js","es2015":"./fesm2015/zone.js","module":"./fesm2015/zone.js","gitHead":"fc5100986bb719cc4b41ae3d72b280ba83589f2f","scripts":{"jest:test":"jest --config ./test/jest/jest.config.js ./test/jest/jest.spec.js","closuretest":"./scripts/closure/closure_compiler.sh","promisetest":"node ./test/promise/promise-test.mjs","electrontest":"cd test/extra && node electron.js","jest:nodetest":"jest --config ./test/jest/jest.node.config.js ./test/jest/jest.spec.js","promisefinallytest":"mocha ./test/promise/promise.finally.spec.mjs"},"typings":"./zone.d.ts","_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"fesm2015":"./fesm2015/zone.js","repository":{"url":"git://github.com/angular/angular.git","type":"git","directory":"packages/zone.js"},"_npmVersion":"8.1.0","description":"Zones for JavaScript","directories":{},"_nodeVersion":"16.13.0","dependencies":{"tslib":"^2.3.0"},"publishConfig":{"registry":"https://wombat-dressing-room.appspot.com"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^29.0","mocha":"^10.0.0","domino":"git+https://github.com/angular/domino.git#4280d0380df839d97b81e7680877ad5b55500e77","@types/node":"^10.9.4","mock-require":"3.0.3","@externs/nodejs":"^1.5.0","promises-aplus-tests":"^2.1.2","jest-environment-node":"^29.0.3","jest-environment-jsdom":"^29.0.3","google-closure-compiler":"^20230206.0.0"},"_npmOperationalInternal":{"tmp":"tmp/zone.js_0.13.0_1678131085286_0.9554167498624309","host":"s3://npm-registry-packages"}},"0.13.1":{"name":"zone.js","version":"0.13.1","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.13.1","maintainers":[{"name":"anonymous","email":"devops+npm@angular.io"},{"name":"anonymous","email":"node-team-npm+wombot@google.com"}],"homepage":"https://github.com/angular/angular#readme","bugs":{"url":"https://github.com/angular/angular/issues"},"dist":{"shasum":"ea06f6a80ba8ac0c68e412365ae72e2cd0787982","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.13.1.tgz","fileCount":278,"integrity":"sha512-+bIeDAFEBYuXRuU3qGQvzdPap+N1zjM4KkBAiiQuVVCrHrhjDuY6VkUhNa5+U27+9w0q3fbKiMCbpJ0XzMmSWA==","signatures":[{"sig":"MEQCIDumeCVtbICK3Mn2c/75me4BVcNcmmLxTY4cnu7PrHoiAiBzx5ZxYkzTIZPYZ301Hbb6rCuGVkXwP5H8i5G8iXj2vA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":5194094},"main":"./bundles/zone.umd.js","es2015":"./fesm2015/zone.js","module":"./fesm2015/zone.js","gitHead":"d773589ed22d5e05d809f4d6f55697c6cfe15fe1","scripts":{"jest:test":"jest --config ./test/jest/jest.config.js ./test/jest/jest.spec.js","closuretest":"./scripts/closure/closure_compiler.sh","promisetest":"node ./test/promise/promise-test.mjs","electrontest":"cd test/extra && node electron.js","jest:nodetest":"jest --config ./test/jest/jest.node.config.js ./test/jest/jest.spec.js","promisefinallytest":"mocha ./test/promise/promise.finally.spec.mjs"},"typings":"./zone.d.ts","_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"fesm2015":"./fesm2015/zone.js","repository":{"url":"git://github.com/angular/angular.git","type":"git","directory":"packages/zone.js"},"_npmVersion":"8.3.1","description":"Zones for JavaScript","directories":{},"_nodeVersion":"16.14.0","dependencies":{"tslib":"^2.3.0"},"publishConfig":{"registry":"https://wombat-dressing-room.appspot.com"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^29.0","mocha":"^10.2.0","domino":"git+https://github.com/angular/domino.git#aa8de3486307f57a518b4b0d9e5e16d9fbd998d1","@types/node":"^10.9.4","mock-require":"3.0.3","@externs/nodejs":"^1.5.0","promises-aplus-tests":"^2.1.2","jest-environment-node":"^29.0.3","jest-environment-jsdom":"^29.0.3","google-closure-compiler":"^20230502.0.0"},"_npmOperationalInternal":{"tmp":"tmp/zone.js_0.13.1_1686585453716_0.3860023813972129","host":"s3://npm-registry-packages"}},"0.13.2":{"name":"zone.js","version":"0.13.2","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.13.2","maintainers":[{"name":"anonymous","email":"devops+npm@angular.io"},{"name":"anonymous","email":"node-team-npm+wombot@google.com"}],"homepage":"https://github.com/angular/angular#readme","bugs":{"url":"https://github.com/angular/angular/issues"},"dist":{"shasum":"4d59343bcb517325bb0240bfbe9267308cb9da97","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.13.2.tgz","fileCount":143,"integrity":"sha512-Lyot3ocK+sixOU16CxmiBjUhkB+YYRRQuFwdJo1EDefHfEGB04it/86bjHnwg/lx4Z9YAmP8TDIalwp5qpDndw==","signatures":[{"sig":"MEUCIAgC5VJtqZaJ8sGEyzHW4Sr58nP3RWtT8LZy7gHePWntAiEA/OkIOAoem+DpOWxCwnJ/FlctgcYWdF8AGC1riJ76PkQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":3119482},"main":"./bundles/zone.umd.js","es2015":"./fesm2015/zone.js","module":"./fesm2015/zone.js","exports":{".":{"default":"./fesm2015/zone.js","require":"./bundles/zone.umd.js","typings":"./zone.d.ts"},"./mix":{"default":"./fesm2015/zone-mix.js","require":"./bundles/zone-mix.umd.js"},"./node":{"default":"./fesm2015/zone-node.js","require":"./bundles/zone-node.umd.js"},"./dist/*":{"default":"./bundles/*.umd.js"},"./testing":{"default":"./fesm2015/zone-testing.js","require":"./bundles/zone-testing.umd.js"},"./plugins/*":{"default":"./fesm2015/*.js","require":"./bundles/*.umd.js"},"./dist/*.min":{"default":"./bundles/*.umd.min.js"},"./package.json":{"default":"./package.json"},"./plugins/*.min":{"default":"./fesm2015/*.min.js","require":"./bundles/*.umd.min.js"}},"gitHead":"ac56efa41063c8251868c1f1362ebe6af58c8955","scripts":{"jest:test":"jest --config ./test/jest/jest.config.js ./test/jest/jest.spec.js","closuretest":"./scripts/closure/closure_compiler.sh","promisetest":"node ./test/promise/promise-test.mjs","electrontest":"cd test/extra && node electron.js","jest:nodetest":"jest --config ./test/jest/jest.node.config.js ./test/jest/jest.spec.js","promisefinallytest":"mocha ./test/promise/promise.finally.spec.mjs"},"typings":"./zone.d.ts","_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"fesm2015":"./fesm2015/zone.js","repository":{"url":"git://github.com/angular/angular.git","type":"git","directory":"packages/zone.js"},"_npmVersion":"8.19.3","description":"Zones for JavaScript","directories":{},"_nodeVersion":"18.13.0","dependencies":{"tslib":"^2.3.0"},"publishConfig":{"registry":"https://wombat-dressing-room.appspot.com"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^29.0","mocha":"^10.2.0","domino":"git+https://github.com/angular/domino.git#aa8de3486307f57a518b4b0d9e5e16d9fbd998d1","@types/node":"^10.9.4","mock-require":"3.0.3","@externs/nodejs":"^1.5.0","promises-aplus-tests":"^2.1.2","jest-environment-node":"^29.0.3","jest-environment-jsdom":"^29.0.3","google-closure-compiler":"^20230802.0.0"},"_npmOperationalInternal":{"tmp":"tmp/zone.js_0.13.2_1694451574521_0.5627339537899492","host":"s3://npm-registry-packages"}},"0.13.3":{"name":"zone.js","version":"0.13.3","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.13.3","maintainers":[{"name":"anonymous","email":"devops+npm@angular.io"},{"name":"anonymous","email":"node-team-npm+wombot@google.com"}],"homepage":"https://github.com/angular/angular#readme","bugs":{"url":"https://github.com/angular/angular/issues"},"dist":{"shasum":"344c24098fa047eda6427a4c7ed486e391fd67b5","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.13.3.tgz","fileCount":143,"integrity":"sha512-MKPbmZie6fASC/ps4dkmIhaT5eonHkEt6eAy80K42tAm0G2W+AahLJjbfi6X9NPdciOE9GRFTTM8u2IiF6O3ww==","signatures":[{"sig":"MEUCICtZpVDYc6Cu1nE8LlyAmKGn//UYo+DtT3frHF2Top3WAiEArhKZ+rNIAVFwogzEGq29qtL7QP/AF4whM1Y2uhrcR3A=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":3120277},"main":"./bundles/zone.umd.js","es2015":"./fesm2015/zone.js","module":"./fesm2015/zone.js","exports":{".":{"types":"./zone.d.ts","default":"./fesm2015/zone.js","require":"./bundles/zone.umd.js"},"./mix":{"default":"./fesm2015/zone-mix.js","require":"./bundles/zone-mix.umd.js"},"./node":{"default":"./fesm2015/zone-node.js","require":"./bundles/zone-node.umd.js"},"./dist/*":{"default":"./bundles/*.umd.js"},"./testing":{"default":"./fesm2015/zone-testing.js","require":"./bundles/zone-testing.umd.js"},"./bundles/*":{"default":"./bundles/*.js"},"./plugins/*":{"default":"./fesm2015/*.js","require":"./bundles/*.umd.js"},"./dist/*.min":{"default":"./bundles/*.umd.min.js"},"./fesm2015/*":{"default":"./fesm2015/*.js"},"./bundles/*.js":{"default":"./bundles/*.js"},"./package.json":{"default":"./package.json"},"./fesm2015/*.js":{"default":"./fesm2015/*.js"},"./plugins/*.min":{"default":"./fesm2015/*.min.js","require":"./bundles/*.umd.min.js"}},"gitHead":"caaabd8efeb743f431ac56b51d217f79a3e40df8","scripts":{"jest:test":"jest --config ./test/jest/jest.config.js ./test/jest/jest.spec.js","closuretest":"./scripts/closure/closure_compiler.sh","promisetest":"node ./test/promise/promise-test.mjs","electrontest":"cd test/extra && node electron.js","jest:nodetest":"jest --config ./test/jest/jest.node.config.js ./test/jest/jest.spec.js","promisefinallytest":"mocha ./test/promise/promise.finally.spec.mjs"},"typings":"./zone.d.ts","_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"fesm2015":"./fesm2015/zone.js","repository":{"url":"git://github.com/angular/angular.git","type":"git","directory":"packages/zone.js"},"_npmVersion":"8.19.3","description":"Zones for JavaScript","directories":{},"_nodeVersion":"18.13.0","dependencies":{"tslib":"^2.3.0"},"publishConfig":{"registry":"https://wombat-dressing-room.appspot.com"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^29.0","mocha":"^10.2.0","domino":"git+https://github.com/angular/domino.git#aa8de3486307f57a518b4b0d9e5e16d9fbd998d1","@types/node":"^10.9.4","mock-require":"3.0.3","@externs/nodejs":"^1.5.0","promises-aplus-tests":"^2.1.2","jest-environment-node":"^29.0.3","jest-environment-jsdom":"^29.0.3","google-closure-compiler":"^20230802.0.0"},"_npmOperationalInternal":{"tmp":"tmp/zone.js_0.13.3_1694543683575_0.5313511225586947","host":"s3://npm-registry-packages"}},"0.14.0":{"name":"zone.js","version":"0.14.0","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.14.0","maintainers":[{"name":"anonymous","email":"devops+npm@angular.io"},{"name":"anonymous","email":"node-team-npm+wombot@google.com"}],"homepage":"https://github.com/angular/angular#readme","bugs":{"url":"https://github.com/angular/angular/issues"},"dist":{"shasum":"ddab2133e8a88be4b225fc2a414e8357f9902a68","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.14.0.tgz","fileCount":135,"integrity":"sha512-Sz0G0TjMuyApIcuTJeK742+xLLKEPjYtkdBEazBlYePHkICVp9DPKqI/4dJt3LCtQBd52sCxz23uAFJ2OJa6Ow==","signatures":[{"sig":"MEYCIQDfQAi12OaRPWKBbJhG+r3PTJDi7YRTdmHZZpPXv7RrSwIhAPkAutSrxuFBFy8lKF4OPnMtx0vHxukUS8v/itWXvT3T","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1955486},"main":"./bundles/zone.umd.js","es2015":"./fesm2015/zone.js","module":"./fesm2015/zone.js","exports":{".":{"types":"./zone.d.ts","default":"./fesm2015/zone.js","require":"./bundles/zone.umd.js"},"./mix":{"default":"./fesm2015/zone-mix.js","require":"./bundles/zone-mix.umd.js"},"./node":{"default":"./fesm2015/zone-node.js","require":"./bundles/zone-node.umd.js"},"./testing":{"default":"./fesm2015/zone-testing.js","require":"./bundles/zone-testing.umd.js"},"./plugins/*":{"default":"./fesm2015/*.js","require":"./bundles/*.umd.js"},"./package.json":{"default":"./package.json"},"./plugins/*.min":{"default":"./fesm2015/*.min.js","require":"./bundles/*.umd.min.js"}},"gitHead":"9bd1551c3f44953df07ce8ca6b587ad225d019d0","scripts":{"jest:test":"jest --config ./test/jest/jest.config.js ./test/jest/jest.spec.js","closuretest":"./scripts/closure/closure_compiler.sh","promisetest":"node ./test/promise/promise-test.mjs","electrontest":"cd test/extra && node electron.js","jest:nodetest":"jest --config ./test/jest/jest.node.config.js ./test/jest/jest.spec.js","promisefinallytest":"mocha ./test/promise/promise.finally.spec.mjs"},"typings":"./zone.d.ts","_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"fesm2015":"./fesm2015/zone.js","repository":{"url":"git://github.com/angular/angular.git","type":"git","directory":"packages/zone.js"},"_npmVersion":"8.19.3","description":"Zones for JavaScript","directories":{},"_nodeVersion":"18.13.0","dependencies":{"tslib":"^2.3.0"},"publishConfig":{"registry":"https://wombat-dressing-room.appspot.com"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^29.0","mocha":"^10.2.0","domino":"git+https://github.com/angular/domino.git#aa8de3486307f57a518b4b0d9e5e16d9fbd998d1","@types/node":"^10.9.4","mock-require":"3.0.3","@externs/nodejs":"^1.5.0","promises-aplus-tests":"^2.1.2","jest-environment-node":"^29.0.3","jest-environment-jsdom":"^29.0.3","google-closure-compiler":"^20230802.0.0"},"_npmOperationalInternal":{"tmp":"tmp/zone.js_0.14.0_1695031398846_0.758553168443244","host":"s3://npm-registry-packages"}},"0.14.1":{"name":"zone.js","version":"0.14.1","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.14.1","maintainers":[{"name":"anonymous","email":"devops+npm@angular.io"},{"name":"anonymous","email":"node-team-npm+wombot@google.com"}],"homepage":"https://github.com/angular/angular#readme","bugs":{"url":"https://github.com/angular/angular/issues"},"dist":{"shasum":"56dfba6052fc66539c1117919f4045fdf56c8819","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.14.1.tgz","fileCount":135,"integrity":"sha512-R3t9Nwl/LJnnpmwx0+Q7YcHtE6xUObnowwNskWCiqEMQXYYlkZiOOhF+N2R18PMILv8+fbzCLKAJvpvyxzafpQ==","signatures":[{"sig":"MEYCIQDNzrK4z8plsqlOKmeXgoTojDJRxEH98xLYnOUzgJnUDgIhAOQ9/DxP9jQDqZa0S2cnWdfYB5XZ/cYHU5ONcbW/8DR4","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1954633},"main":"./bundles/zone.umd.js","es2015":"./fesm2015/zone.js","module":"./fesm2015/zone.js","exports":{".":{"types":"./zone.d.ts","default":"./fesm2015/zone.js","require":"./bundles/zone.umd.js"},"./mix":{"default":"./fesm2015/zone-mix.js","require":"./bundles/zone-mix.umd.js"},"./node":{"default":"./fesm2015/zone-node.js","require":"./bundles/zone-node.umd.js"},"./testing":{"default":"./fesm2015/zone-testing.js","require":"./bundles/zone-testing.umd.js"},"./plugins/*":{"default":"./fesm2015/*.js","require":"./bundles/*.umd.js"},"./package.json":{"default":"./package.json"},"./plugins/*.min":{"default":"./fesm2015/*.min.js","require":"./bundles/*.umd.min.js"}},"gitHead":"8599e1892ec99806a960a077971d52259b45839d","scripts":{"jest:test":"jest --config ./test/jest/jest.config.js ./test/jest/jest.spec.js","closuretest":"./scripts/closure/closure_compiler.sh","promisetest":"node ./test/promise/promise-test.mjs","electrontest":"cd test/extra && node electron.js","jest:nodetest":"jest --config ./test/jest/jest.node.config.js ./test/jest/jest.spec.js","promisefinallytest":"mocha ./test/promise/promise.finally.spec.mjs"},"typings":"./zone.d.ts","_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"fesm2015":"./fesm2015/zone.js","repository":{"url":"git://github.com/angular/angular.git","type":"git","directory":"packages/zone.js"},"_npmVersion":"8.19.3","description":"Zones for JavaScript","directories":{},"_nodeVersion":"18.13.0","dependencies":{"tslib":"^2.3.0"},"publishConfig":{"registry":"https://wombat-dressing-room.appspot.com"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^29.0","mocha":"^10.2.0","domino":"git+https://github.com/angular/domino.git#f2435fe1f9f7c91ade0bd472c4723e5eacd7d19a","@types/node":"^10.9.4","mock-require":"3.0.3","@externs/nodejs":"^1.5.0","promises-aplus-tests":"^2.1.2","jest-environment-node":"^29.0.3","jest-environment-jsdom":"^29.0.3","google-closure-compiler":"^20230802.0.0"},"_npmOperationalInternal":{"tmp":"tmp/zone.js_0.14.1_1698338139617_0.8985175082768486","host":"s3://npm-registry-packages"}},"0.14.2":{"name":"zone.js","version":"0.14.2","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.14.2","maintainers":[{"name":"anonymous","email":"devops+npm@angular.io"},{"name":"anonymous","email":"node-team-npm+wombot@google.com"}],"homepage":"https://github.com/angular/angular#readme","bugs":{"url":"https://github.com/angular/angular/issues"},"dist":{"shasum":"91b20b24e8ab9a5a74f319ed5a3000f234ffa3b6","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.14.2.tgz","fileCount":135,"integrity":"sha512-X4U7J1isDhoOmHmFWiLhloWc2lzMkdnumtfQ1LXzf/IOZp5NQYuMUTaviVzG/q1ugMBIXzin2AqeVJUoSEkNyQ==","signatures":[{"sig":"MEQCIBHubLmQ4/pKCgHYUqE1nFON0hT8VaXAQ8moS1et94pbAiBZNaAHEwbG5cBwXhDhU/Jucvm33h72RIXKjdMt8vrCXQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1954950},"main":"./bundles/zone.umd.js","es2015":"./fesm2015/zone.js","module":"./fesm2015/zone.js","exports":{".":{"types":"./zone.d.ts","default":"./fesm2015/zone.js","require":"./bundles/zone.umd.js"},"./mix":{"default":"./fesm2015/zone-mix.js","require":"./bundles/zone-mix.umd.js"},"./node":{"default":"./fesm2015/zone-node.js","require":"./bundles/zone-node.umd.js"},"./testing":{"default":"./fesm2015/zone-testing.js","require":"./bundles/zone-testing.umd.js"},"./plugins/*":{"default":"./fesm2015/*.js","require":"./bundles/*.umd.js"},"./package.json":{"default":"./package.json"},"./plugins/*.min":{"default":"./fesm2015/*.min.js","require":"./bundles/*.umd.min.js"}},"gitHead":"1a33a2ca1153c4d11e3f7a5767db55a864878013","scripts":{"jest:test":"jest --config ./test/jest/jest.config.js ./test/jest/jest.spec.js","closuretest":"./scripts/closure/closure_compiler.sh","promisetest":"node ./test/promise/promise-test.mjs","electrontest":"cd test/extra && node electron.js","jest:nodetest":"jest --config ./test/jest/jest.node.config.js ./test/jest/jest.spec.js","promisefinallytest":"mocha ./test/promise/promise.finally.spec.mjs"},"typings":"./zone.d.ts","_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"fesm2015":"./fesm2015/zone.js","repository":{"url":"git://github.com/angular/angular.git","type":"git","directory":"packages/zone.js"},"_npmVersion":"8.19.3","description":"Zones for JavaScript","directories":{},"_nodeVersion":"18.13.0","dependencies":{"tslib":"^2.3.0"},"publishConfig":{"registry":"https://wombat-dressing-room.appspot.com"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^29.0","mocha":"^10.2.0","domino":"git+https://github.com/angular/domino.git#9e7881d2ac1e5977cefbc557f935931ec23f6658","@types/node":"^10.9.4","mock-require":"3.0.3","@externs/nodejs":"^1.5.0","promises-aplus-tests":"^2.1.2","jest-environment-node":"^29.0.3","jest-environment-jsdom":"^29.0.3","google-closure-compiler":"^20230802.0.0"},"_npmOperationalInternal":{"tmp":"tmp/zone.js_0.14.2_1699034361492_0.46375574558831034","host":"s3://npm-registry-packages"}},"0.14.3":{"name":"zone.js","version":"0.14.3","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.14.3","maintainers":[{"name":"anonymous","email":"devops+npm@angular.io"},{"name":"anonymous","email":"node-team-npm+wombot@google.com"}],"homepage":"https://github.com/angular/angular#readme","bugs":{"url":"https://github.com/angular/angular/issues"},"dist":{"shasum":"ac01000f4eaeec5c06526f6c112ef7d36f426f78","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.14.3.tgz","fileCount":135,"integrity":"sha512-jYoNqF046Q+JfcZSItRSt+oXFcpXL88yq7XAZjb/NKTS7w2hHpKjRJ3VlFD1k75wMaRRXNUt5vrZVlygiMyHbA==","signatures":[{"sig":"MEYCIQC8toIH5URxk9wFqtMFtxue35zWxMyyzjoyl9gNBTpgmwIhAPcLggzxOflIEALXNQM2zJYdS6mBVhoDiJV3PU8qXUIU","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1963813},"main":"./bundles/zone.umd.js","es2015":"./fesm2015/zone.js","module":"./fesm2015/zone.js","exports":{".":{"types":"./zone.d.ts","default":"./fesm2015/zone.js","require":"./bundles/zone.umd.js"},"./mix":{"default":"./fesm2015/zone-mix.js","require":"./bundles/zone-mix.umd.js"},"./node":{"default":"./fesm2015/zone-node.js","require":"./bundles/zone-node.umd.js"},"./testing":{"default":"./fesm2015/zone-testing.js","require":"./bundles/zone-testing.umd.js"},"./plugins/*":{"default":"./fesm2015/*.js","require":"./bundles/*.umd.js"},"./package.json":{"default":"./package.json"},"./plugins/*.min":{"default":"./fesm2015/*.min.js","require":"./bundles/*.umd.min.js"}},"gitHead":"a468a5e9658096a25b6507b38bf91b9355472f38","scripts":{"jest:test":"jest --config ./test/jest/jest.config.js ./test/jest/jest.spec.js","closuretest":"./scripts/closure/closure_compiler.sh","electrontest":"cd test/extra && node electron.js","jest:nodetest":"jest --config ./test/jest/jest.node.config.js ./test/jest/jest.spec.js","promisefinallytest":"mocha ./test/promise/promise.finally.spec.mjs"},"typings":"./zone.d.ts","_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"fesm2015":"./fesm2015/zone.js","repository":{"url":"git://github.com/angular/angular.git","type":"git","directory":"packages/zone.js"},"_npmVersion":"8.19.3","description":"Zones for JavaScript","directories":{},"_nodeVersion":"18.13.0","dependencies":{"tslib":"^2.3.0"},"publishConfig":{"registry":"https://wombat-dressing-room.appspot.com"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^29.0","mocha":"^10.2.0","domino":"git+https://github.com/angular/domino.git#9e7881d2ac1e5977cefbc557f935931ec23f6658","@types/node":"^10.9.4","mock-require":"3.0.3","@externs/nodejs":"^1.5.0","jest-environment-node":"^29.0.3","jest-environment-jsdom":"^29.0.3","google-closure-compiler":"^20230802.0.0"},"_npmOperationalInternal":{"tmp":"tmp/zone.js_0.14.3_1704820674783_0.28884255057667807","host":"s3://npm-registry-packages"}},"0.14.4":{"name":"zone.js","version":"0.14.4","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.14.4","maintainers":[{"name":"anonymous","email":"devops+npm@angular.io"},{"name":"anonymous","email":"node-team-npm+wombot@google.com"}],"homepage":"https://github.com/angular/angular#readme","bugs":{"url":"https://github.com/angular/angular/issues"},"dist":{"shasum":"e0168fe450e3e4313c8efdb4a0ae4b557ac0fdd8","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.14.4.tgz","fileCount":134,"integrity":"sha512-NtTUvIlNELez7Q1DzKVIFZBzNb646boQMgpATo9z3Ftuu/gWvzxCW7jdjcUDoRGxRikrhVHB/zLXh1hxeJawvw==","signatures":[{"sig":"MEUCIGLPfxNndWpxJf9X+BuPUX0cmqSXCOq6j0T+RA6pVVdPAiEAp62NF6I+j5p58+bDsxKWS9Jz7VPJQjpIAeGjP5W/kPo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1967960},"main":"./bundles/zone.umd.js","es2015":"./fesm2015/zone.js","module":"./fesm2015/zone.js","exports":{".":{"types":"./zone.d.ts","default":"./fesm2015/zone.js","require":"./bundles/zone.umd.js"},"./mix":{"default":"./fesm2015/zone-mix.js","require":"./bundles/zone-mix.umd.js"},"./node":{"default":"./fesm2015/zone-node.js","require":"./bundles/zone-node.umd.js"},"./testing":{"default":"./fesm2015/zone-testing.js","require":"./bundles/zone-testing.umd.js"},"./plugins/*":{"default":"./fesm2015/*.js","require":"./bundles/*.umd.js"},"./package.json":{"default":"./package.json"},"./plugins/*.min":{"default":"./fesm2015/*.min.js","require":"./bundles/*.umd.min.js"}},"gitHead":"5b767d6e018847e61f1f4a14448610305442044b","scripts":{"jest:test":"jest --config ./test/jest/jest.config.js ./test/jest/jest.spec.js","electrontest":"cd test/extra && node electron.js","jest:nodetest":"jest --config ./test/jest/jest.node.config.js ./test/jest/jest.spec.js","promisefinallytest":"mocha ./test/promise/promise.finally.spec.mjs"},"typings":"./zone.d.ts","_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"fesm2015":"./fesm2015/zone.js","repository":{"url":"git://github.com/angular/angular.git","type":"git","directory":"packages/zone.js"},"_npmVersion":"9.8.1","description":"Zones for JavaScript","directories":{},"_nodeVersion":"18.18.2","dependencies":{"tslib":"^2.3.0"},"publishConfig":{"registry":"https://wombat-dressing-room.appspot.com"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^29.0","mocha":"^10.2.0","domino":"git+https://github.com/angular/domino.git#9e7881d2ac1e5977cefbc557f935931ec23f6658","@types/node":"^10.9.4","mock-require":"3.0.3","@externs/nodejs":"^1.5.0","jest-environment-node":"^29.0.3","jest-environment-jsdom":"^29.0.3","google-closure-compiler":"^20230802.0.0"},"_npmOperationalInternal":{"tmp":"tmp/zone.js_0.14.4_1707853616781_0.22782746569520795","host":"s3://npm-registry-packages"}},"0.14.5":{"name":"zone.js","version":"0.14.5","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.14.5","maintainers":[{"name":"anonymous","email":"devops+npm@angular.io"},{"name":"anonymous","email":"node-team-npm+wombot@google.com"}],"homepage":"https://github.com/angular/angular#readme","bugs":{"url":"https://github.com/angular/angular/issues"},"dist":{"shasum":"7f3591dc4cad1a030cda86b03d10450b719dd460","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.14.5.tgz","fileCount":138,"integrity":"sha512-9XYWZzY6PhHOSdkYryNcMm7L8EK7a4q+GbTvxbIA2a9lMdRUpGuyaYvLDcg8D6bdn+JomSsbPcilVKg6SmUx6w==","signatures":[{"sig":"MEUCIQC1fqHz/jmVOkk6gSpdCyE1Ck+uExgJSZOm8eAu3qd9TgIgbksR0IFByfeqhdzWa4uQM/XRgAgAsERw5dA6jlCTGig=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":2012388},"main":"./bundles/zone.umd.js","es2015":"./fesm2015/zone.js","module":"./fesm2015/zone.js","exports":{".":{"types":"./zone.d.ts","default":"./fesm2015/zone.js","require":"./bundles/zone.umd.js"},"./mix":{"default":"./fesm2015/zone-mix.js","require":"./bundles/zone-mix.umd.js"},"./node":{"default":"./fesm2015/zone-node.js","require":"./bundles/zone-node.umd.js"},"./testing":{"default":"./fesm2015/zone-testing.js","require":"./bundles/zone-testing.umd.js"},"./plugins/*":{"default":"./fesm2015/*.js","require":"./bundles/*.umd.js"},"./package.json":{"default":"./package.json"},"./plugins/*.min":{"default":"./fesm2015/*.min.js","require":"./bundles/*.umd.min.js"}},"gitHead":"ff656691c347be9ee381be28027fd5d22d5ea626","scripts":{"jest:test":"jest --config ./test/jest/jest.config.js ./test/jest/jest.spec.js","electrontest":"cd test/extra && node electron.js","jest:nodetest":"jest --config ./test/jest/jest.node.config.js ./test/jest/jest.spec.js","promisefinallytest":"mocha ./test/promise/promise.finally.spec.mjs"},"typings":"./zone.d.ts","_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"fesm2015":"./fesm2015/zone.js","repository":{"url":"git://github.com/angular/angular.git","type":"git","directory":"packages/zone.js"},"_npmVersion":"10.5.0","description":"Zones for JavaScript","directories":{},"_nodeVersion":"18.20.0","dependencies":{"tslib":"^2.3.0"},"publishConfig":{"registry":"https://wombat-dressing-room.appspot.com"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^29.0","mocha":"^10.2.0","domino":"git+https://github.com/angular/domino.git#8f228f8862540c6ccd14f76b5a1d9bb5458618af","@types/node":"^10.9.4","mock-require":"3.0.3","@externs/nodejs":"^1.5.0","jest-environment-node":"^29.0.3","jest-environment-jsdom":"^29.0.3","google-closure-compiler":"^20240317.0.0"},"_npmOperationalInternal":{"tmp":"tmp/zone.js_0.14.5_1714510541393_0.07863624997664664","host":"s3://npm-registry-packages"}},"0.14.6":{"name":"zone.js","version":"0.14.6","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.14.6","maintainers":[{"name":"anonymous","email":"devops+npm@angular.io"},{"name":"anonymous","email":"node-team-npm+wombot@google.com"}],"homepage":"https://github.com/angular/angular#readme","bugs":{"url":"https://github.com/angular/angular/issues"},"dist":{"shasum":"9a74284f4812b807c97d942e78166cb2da8b5614","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.14.6.tgz","fileCount":138,"integrity":"sha512-vyRNFqofdaHVdWAy7v3Bzmn84a1JHWSjpuTZROT/uYn8I3p2cmo7Ro9twFmYRQDPhiYOV7QLk0hhY4JJQVqS6Q==","signatures":[{"sig":"MEUCIGnjJ4WeqvhhHZPN4iY9w5Hb863+CYb6S8GNBFPgX+qtAiEA+VyLMYhJ9Sdw6GL6Y6m0uXbvBQ5G1v+TTXdD4wJbaiM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":2046177},"main":"./bundles/zone.umd.js","es2015":"./fesm2015/zone.js","module":"./fesm2015/zone.js","exports":{".":{"types":"./zone.d.ts","default":"./fesm2015/zone.js","require":"./bundles/zone.umd.js"},"./mix":{"default":"./fesm2015/zone-mix.js","require":"./bundles/zone-mix.umd.js"},"./node":{"default":"./fesm2015/zone-node.js","require":"./bundles/zone-node.umd.js"},"./testing":{"default":"./fesm2015/zone-testing.js","require":"./bundles/zone-testing.umd.js"},"./plugins/*":{"default":"./fesm2015/*.js","require":"./bundles/*.umd.js"},"./package.json":{"default":"./package.json"},"./plugins/*.min":{"default":"./fesm2015/*.min.js","require":"./bundles/*.umd.min.js"}},"gitHead":"13601105ec06f114d3ee13d4bfd42ebf0793f135","scripts":{"jest:test":"jest --config ./test/jest/jest.config.js ./test/jest/jest.spec.js","electrontest":"cd test/extra && node electron.js","jest:nodetest":"jest --config ./test/jest/jest.node.config.js ./test/jest/jest.spec.js","promisefinallytest":"mocha ./test/promise/promise.finally.spec.mjs"},"typings":"./zone.d.ts","_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"fesm2015":"./fesm2015/zone.js","repository":{"url":"git://github.com/angular/angular.git","type":"git","directory":"packages/zone.js"},"_npmVersion":"10.5.0","description":"Zones for JavaScript","directories":{},"_nodeVersion":"18.20.0","publishConfig":{"registry":"https://wombat-dressing-room.appspot.com"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^29.0","mocha":"^10.2.0","tslib":"^2.3.0","domino":"git+https://github.com/angular/domino.git#8f228f8862540c6ccd14f76b5a1d9bb5458618af","@types/node":"^10.9.4","mock-require":"3.0.3","@externs/nodejs":"^1.5.0","jest-environment-node":"^29.0.3","jest-environment-jsdom":"^29.0.3","google-closure-compiler":"^20240317.0.0"},"_npmOperationalInternal":{"tmp":"tmp/zone.js_0.14.6_1715906407565_0.8062157089164046","host":"s3://npm-registry-packages"}},"0.14.7":{"name":"zone.js","version":"0.14.7","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.14.7","maintainers":[{"name":"anonymous","email":"devops+npm@angular.io"},{"name":"anonymous","email":"node-team-npm+wombot@google.com"}],"homepage":"https://github.com/angular/angular#readme","bugs":{"url":"https://github.com/angular/angular/issues"},"dist":{"shasum":"4a9a70599109663b1921165663bbac521995eef3","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.14.7.tgz","fileCount":138,"integrity":"sha512-0w6DGkX2BPuiK/NLf+4A8FLE43QwBfuqz2dVgi/40Rj1WmqUskCqj329O/pwrqFJLG5X8wkeG2RhIAro441xtg==","signatures":[{"sig":"MEUCIQDvjgjeAEiBt0UF+PGet6VFzVBn8DsV17mFrycD6k2P/QIgB68MeLjqVFONpCLPUN4YP7PffL/1/HjOlKanE9ylxOw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":2071486},"main":"./bundles/zone.umd.js","es2015":"./fesm2015/zone.js","module":"./fesm2015/zone.js","exports":{".":{"types":"./zone.d.ts","default":"./fesm2015/zone.js","require":"./bundles/zone.umd.js"},"./mix":{"default":"./fesm2015/zone-mix.js","require":"./bundles/zone-mix.umd.js"},"./node":{"default":"./fesm2015/zone-node.js","require":"./bundles/zone-node.umd.js"},"./testing":{"default":"./fesm2015/zone-testing.js","require":"./bundles/zone-testing.umd.js"},"./plugins/*":{"default":"./fesm2015/*.js","require":"./bundles/*.umd.js"},"./package.json":{"default":"./package.json"},"./plugins/*.min":{"default":"./fesm2015/*.min.js","require":"./bundles/*.umd.min.js"}},"gitHead":"181ed2a84a720b22e309ffb190fa627b8a13d783","scripts":{"jest:test":"jest --config ./test/jest/jest.config.js ./test/jest/jest.spec.js","electrontest":"cd test/extra && node electron.js","jest:nodetest":"jest --config ./test/jest/jest.node.config.js ./test/jest/jest.spec.js","promisefinallytest":"mocha ./test/promise/promise.finally.spec.mjs"},"typings":"./zone.d.ts","_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"fesm2015":"./fesm2015/zone.js","repository":{"url":"git://github.com/angular/angular.git","type":"git","directory":"packages/zone.js"},"_npmVersion":"10.5.0","description":"Zones for JavaScript","directories":{},"_nodeVersion":"18.20.0","publishConfig":{"registry":"https://wombat-dressing-room.appspot.com"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^29.0","mocha":"^10.2.0","tslib":"^2.3.0","domino":"git+https://github.com/angular/domino.git#8f228f8862540c6ccd14f76b5a1d9bb5458618af","@types/node":"^10.9.4","mock-require":"3.0.3","@externs/nodejs":"^1.5.0","jest-environment-node":"^29.0.3","jest-environment-jsdom":"^29.0.3","google-closure-compiler":"^20240317.0.0"},"_npmOperationalInternal":{"tmp":"tmp/zone.js_0.14.7_1717708132386_0.4351077268798178","host":"s3://npm-registry-packages"}},"0.14.8":{"name":"zone.js","version":"0.14.8","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.14.8","maintainers":[{"name":"anonymous","email":"devops+npm@angular.io"},{"name":"anonymous","email":"node-team-npm+wombot@google.com"}],"homepage":"https://github.com/angular/angular#readme","bugs":{"url":"https://github.com/angular/angular/issues"},"dist":{"shasum":"a87ffec976c990604f769c594dbfc8b969443453","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.14.8.tgz","fileCount":138,"integrity":"sha512-48uh7MnVp4/OQDuCHeFdXw5d8xwPqFTvlHgPJ1LBFb5GaustLSZV+YUH0to5ygNyGpqTsjpbpt141U/j3pCfqQ==","signatures":[{"sig":"MEYCIQDK9UG8NPqqUM3tx3k3/bvglcZQIJFVCOXsf/8d3hb9FgIhALtj/lRL0xc8jX7YBB22LBzRN86efQujrkWm7Rd8GlsF","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":2090488},"main":"./bundles/zone.umd.js","es2015":"./fesm2015/zone.js","module":"./fesm2015/zone.js","exports":{".":{"types":"./zone.d.ts","default":"./fesm2015/zone.js","require":"./bundles/zone.umd.js"},"./mix":{"default":"./fesm2015/zone-mix.js","require":"./bundles/zone-mix.umd.js"},"./node":{"default":"./fesm2015/zone-node.js","require":"./bundles/zone-node.umd.js"},"./testing":{"default":"./fesm2015/zone-testing.js","require":"./bundles/zone-testing.umd.js"},"./plugins/*":{"default":"./fesm2015/*.js","require":"./bundles/*.umd.js"},"./package.json":{"default":"./package.json"},"./plugins/*.min":{"default":"./fesm2015/*.min.js","require":"./bundles/*.umd.min.js"}},"gitHead":"d97aee6dc2266c81cbd5207f642f3fee39a2d414","scripts":{"jest:test":"jest --config ./test/jest/jest.config.js ./test/jest/jest.spec.js","electrontest":"cd test/extra && node electron.js","jest:nodetest":"jest --config ./test/jest/jest.node.config.js ./test/jest/jest.spec.js","promisefinallytest":"mocha ./test/promise/promise.finally.spec.mjs"},"typings":"./zone.d.ts","_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"fesm2015":"./fesm2015/zone.js","repository":{"url":"git://github.com/angular/angular.git","type":"git","directory":"packages/zone.js"},"_npmVersion":"10.5.0","description":"Zones for JavaScript","directories":{},"_nodeVersion":"18.20.0","publishConfig":{"registry":"https://wombat-dressing-room.appspot.com"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^29.0","mocha":"^10.2.0","tslib":"^2.3.0","domino":"git+https://github.com/angular/domino.git#8f228f8862540c6ccd14f76b5a1d9bb5458618af","@types/node":"^10.9.4","mock-require":"3.0.3","@externs/nodejs":"^1.5.0","jest-environment-node":"^29.0.3","jest-environment-jsdom":"^29.0.3","google-closure-compiler":"^20240317.0.0"},"_npmOperationalInternal":{"tmp":"tmp/zone.js_0.14.8_1721250720868_0.25690872815257726","host":"s3://npm-registry-packages"}},"0.14.10":{"name":"zone.js","version":"0.14.10","author":{"name":"Brian Ford"},"license":"MIT","_id":"zone.js@0.14.10","maintainers":[{"name":"anonymous","email":"devops+npm@angular.io"},{"name":"anonymous","email":"node-team-npm+wombot@google.com"}],"homepage":"https://github.com/angular/angular#readme","bugs":{"url":"https://github.com/angular/angular/issues"},"dist":{"shasum":"23b8b29687c6bffece996e5ee5b854050e7775c8","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.14.10.tgz","fileCount":138,"integrity":"sha512-YGAhaO7J5ywOXW6InXNlLmfU194F8lVgu7bRntUF3TiG8Y3nBK0x1UJJuHUP/e8IyihkjCYqhCScpSwnlaSRkQ==","signatures":[{"sig":"MEYCIQDIyKCuwYEToLO/SnwZa9Rp8r3GhiGBkiQkBIuqHJMdXAIhAPISjIuo8g8a/qzLxZ+9xeG/dPbLULt7Ai3kmS+wXOAW","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":2092759},"main":"./bundles/zone.umd.js","es2015":"./fesm2015/zone.js","module":"./fesm2015/zone.js","exports":{".":{"types":"./zone.d.ts","default":"./fesm2015/zone.js","require":"./bundles/zone.umd.js"},"./mix":{"default":"./fesm2015/zone-mix.js","require":"./bundles/zone-mix.umd.js"},"./node":{"default":"./fesm2015/zone-node.js","require":"./bundles/zone-node.umd.js"},"./testing":{"default":"./fesm2015/zone-testing.js","require":"./bundles/zone-testing.umd.js"},"./plugins/*":{"default":"./fesm2015/*.js","require":"./bundles/*.umd.js"},"./package.json":{"default":"./package.json"},"./plugins/*.min":{"default":"./fesm2015/*.min.js","require":"./bundles/*.umd.min.js"}},"gitHead":"de99d3eb3e8ba08bc07022ed30755891b2ee81d5","scripts":{"jest:test":"jest --config ./test/jest/jest.config.js ./test/jest/jest.spec.js","electrontest":"cd test/extra && node electron.js","jest:nodetest":"jest --config ./test/jest/jest.node.config.js ./test/jest/jest.spec.js","promisefinallytest":"mocha ./test/promise/promise.finally.spec.mjs"},"typings":"./zone.d.ts","_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"fesm2015":"./fesm2015/zone.js","repository":{"url":"git://github.com/angular/angular.git","type":"git","directory":"packages/zone.js"},"_npmVersion":"10.5.0","description":"Zones for JavaScript","directories":{},"_nodeVersion":"18.20.0","publishConfig":{"registry":"https://wombat-dressing-room.appspot.com"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^29.0","mocha":"^10.2.0","tslib":"^2.3.0","domino":"git+https://github.com/angular/domino.git#8f228f8862540c6ccd14f76b5a1d9bb5458618af","@types/node":"^10.9.4","mock-require":"3.0.3","@externs/nodejs":"^1.5.0","jest-environment-node":"^29.0.3","jest-environment-jsdom":"^29.0.3","google-closure-compiler":"^20240317.0.0"},"_npmOperationalInternal":{"tmp":"tmp/zone.js_0.14.10_1722877458247_0.9007463470964516","host":"s3://npm-registry-packages"}},"0.15.0":{"name":"zone.js","version":"0.15.0","description":"Zones for JavaScript","main":"./bundles/zone.umd.js","module":"./fesm2015/zone.js","es2015":"./fesm2015/zone.js","fesm2015":"./fesm2015/zone.js","typings":"./zone.d.ts","devDependencies":{"@externs/nodejs":"^1.5.0","@types/node":"^10.9.4","domino":"git+https://github.com/angular/domino.git#8f228f8862540c6ccd14f76b5a1d9bb5458618af","google-closure-compiler":"^20240317.0.0","jest":"^29.0","jest-environment-jsdom":"^29.0.3","jest-environment-node":"^29.0.3","mocha":"^10.2.0","mock-require":"3.0.3","tslib":"^2.3.0"},"scripts":{"electrontest":"cd test/extra && node electron.js","jest:test":"jest --config ./test/jest/jest.config.js ./test/jest/jest.spec.js","jest:nodetest":"jest --config ./test/jest/jest.node.config.js ./test/jest/jest.spec.js","promisefinallytest":"mocha ./test/promise/promise.finally.spec.mjs"},"repository":{"type":"git","url":"git://github.com/angular/angular.git","directory":"packages/zone.js"},"publishConfig":{"registry":"https://wombat-dressing-room.appspot.com"},"author":{"name":"Brian Ford"},"license":"MIT","bugs":{"url":"https://github.com/angular/angular/issues"},"exports":{"./package.json":{"default":"./package.json"},".":{"types":"./zone.d.ts","require":"./bundles/zone.umd.js","default":"./fesm2015/zone.js"},"./testing":{"require":"./bundles/zone-testing.umd.js","default":"./fesm2015/zone-testing.js"},"./node":{"require":"./bundles/zone-node.umd.js","default":"./fesm2015/zone-node.js"},"./mix":{"require":"./bundles/zone-mix.umd.js","default":"./fesm2015/zone-mix.js"},"./plugins/*.min":{"require":"./bundles/*.umd.min.js","default":"./fesm2015/*.min.js"},"./plugins/*":{"require":"./bundles/*.umd.js","default":"./fesm2015/*.js"}},"_id":"zone.js@0.15.0","gitHead":"d1d4adcba24affa30a903acedeb41d1e63776778","homepage":"https://github.com/angular/angular#readme","_nodeVersion":"18.20.0","_npmVersion":"10.5.0","dist":{"integrity":"sha512-9oxn0IIjbCZkJ67L+LkhYWRyAy7axphb3VgE2MBDlOqnmHMPWGYMxJxBYFueFq/JGY2GMwS0rU+UCLunEmy5UA==","shasum":"4810624e58d6dcf7b8379c1631765589917a0d8f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/zone.js/-/zone.js-0.15.0.tgz","fileCount":138,"unpackedSize":2093782,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCByIjV5Wd5kUfKs/NRYDAa6dS9lzmmiUEouMs5wVrSLwIhAIkpv0y9XqGa5Lo1i6Q/x6Ch7sEeT3XdizC4+M25+TlO"}]},"_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"devops+npm@angular.io"},{"name":"anonymous","email":"node-team-npm+wombot@google.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/zone.js_0.15.0_1724271313204_0.9943413715834233"},"_hasShrinkwrap":false}},"name":"zone.js","time":{"created":"2014-03-31T21:42:44.917Z","modified":"2024-08-21T20:15:13.644Z","0.1.0":"2014-03-31T21:42:44.917Z","0.1.1":"2014-03-31T22:30:51.641Z","0.2.0":"2014-04-17T23:59:00.344Z","0.2.1":"2014-04-24T20:06:22.156Z","0.2.3":"2014-05-23T20:14:15.896Z","0.2.2":"2014-05-23T20:14:33.198Z","0.2.4":"2014-05-23T20:20:59.782Z","0.3.0":"2014-06-12T19:03:39.944Z","0.4.0":"2015-02-04T19:42:39.254Z","0.4.1":"2015-02-20T17:45:17.626Z","0.4.2":"2015-03-27T18:42:44.881Z","0.4.3":"2015-04-08T17:12:30.566Z","0.4.4":"2015-05-07T16:06:53.042Z","0.5.0":"2015-05-08T19:21:41.624Z","0.5.1":"2015-06-10T18:02:27.568Z","0.5.2":"2015-07-06T19:06:04.212Z","0.5.3":"2015-08-21T19:45:07.882Z","0.5.4":"2015-08-31T22:31:40.627Z","0.5.5":"2015-09-11T17:16:49.037Z","0.5.6":"2015-09-28T17:44:32.069Z","0.5.7":"2015-09-29T21:17:19.522Z","0.5.8":"2015-10-06T17:34:41.022Z","0.5.9":"2015-12-09T19:56:58.162Z","0.5.10":"2015-12-11T22:07:16.082Z","0.5.11":"2016-01-28T19:34:25.281Z","0.5.12":"2016-02-01T18:08:45.624Z","0.5.13":"2016-02-01T18:13:01.624Z","0.5.14":"2016-02-11T00:12:34.354Z","0.5.15":"2016-02-17T20:29:36.857Z","0.6.0":"2016-02-29T18:59:40.289Z","0.6.1":"2016-02-29T20:17:40.887Z","0.6.2":"2016-03-03T03:43:10.682Z","0.6.3":"2016-03-14T23:59:20.907Z","0.6.4":"2016-03-15T00:02:11.911Z","0.6.5":"2016-03-21T20:03:02.811Z","0.6.6":"2016-03-23T19:24:10.568Z","0.6.8":"2016-03-29T17:36:16.103Z","0.6.9":"2016-04-04T22:37:02.253Z","0.6.10":"2016-04-07T19:45:22.538Z","0.6.11":"2016-04-14T00:34:44.602Z","0.6.12":"2016-04-19T23:22:14.030Z","0.6.13":"2016-08-15T19:20:23.063Z","0.6.14":"2016-08-17T04:11:59.832Z","0.6.15":"2016-08-19T17:20:41.314Z","0.6.16":"2016-08-22T17:29:49.463Z","0.6.17":"2016-08-22T22:41:52.196Z","0.6.18":"2016-09-10T16:04:53.468Z","0.6.19":"2016-09-10T16:06:17.234Z","0.6.20":"2016-09-10T17:15:02.890Z","0.6.21":"2016-09-11T02:27:34.134Z","0.6.22":"2016-09-14T18:03:20.278Z","0.6.23":"2016-09-14T21:49:09.053Z","0.6.24":"2016-09-19T23:12:14.557Z","0.6.25":"2016-09-20T00:20:38.825Z","0.6.26":"2016-10-18T20:49:52.275Z","0.7.0":"2016-11-22T01:33:19.865Z","0.7.1":"2016-11-22T18:40:14.362Z","0.7.2":"2016-11-24T01:38:04.798Z","0.7.3":"2016-12-19T18:28:29.448Z","0.7.4":"2016-12-20T18:10:24.562Z","0.7.5":"2017-01-12T18:34:42.660Z","0.7.6":"2017-01-17T22:52:40.991Z","0.7.7":"2017-02-14T06:59:11.221Z","0.7.8":"2017-03-10T02:25:13.789Z","0.8.0":"2017-03-10T23:42:29.259Z","0.8.1":"2017-03-13T19:01:31.149Z","0.8.2":"2017-03-14T22:04:42.027Z","0.8.3":"2017-03-15T20:41:54.949Z","0.8.4":"2017-03-16T06:02:06.108Z","0.8.5":"2017-03-21T20:25:29.660Z","0.8.6":"2017-04-21T20:58:16.293Z","0.8.7":"2017-04-21T21:01:44.291Z","0.8.8":"2017-04-21T23:08:25.995Z","0.8.9":"2017-04-25T16:30:12.278Z","0.8.10":"2017-05-03T18:55:12.264Z","0.8.11":"2017-05-19T20:29:23.372Z","0.8.12":"2017-06-07T22:16:58.554Z","0.8.13":"2017-07-12T21:19:07.672Z","0.8.14":"2017-07-18T18:08:08.738Z","0.8.16":"2017-07-27T23:09:40.498Z","0.8.17":"2017-08-23T18:40:41.894Z","0.8.18":"2017-09-27T22:33:47.753Z","0.8.19":"2017-12-27T22:38:40.547Z","0.8.20":"2018-01-10T22:32:07.291Z","0.8.21":"2018-03-30T21:17:39.621Z","0.8.22":"2018-03-31T16:19:14.467Z","0.8.23":"2018-04-01T01:41:38.676Z","0.8.24":"2018-04-02T18:31:00.761Z","0.8.25":"2018-04-04T01:06:36.491Z","0.8.26":"2018-04-08T05:53:41.828Z","0.8.27":"2019-01-11T05:44:32.099Z","0.8.28":"2019-01-16T23:22:41.611Z","0.8.29":"2019-01-22T20:04:47.317Z","0.9.0":"2019-03-22T03:14:53.203Z","0.9.1":"2019-05-03T18:15:21.229Z","0.10.0":"2019-07-26T20:21:36.637Z","0.10.1":"2019-08-02T21:45:34.304Z","0.10.2":"2019-08-14T03:47:40.818Z","0.10.3":"2020-03-17T16:16:28.816Z","0.11.0":"2020-08-18T19:04:13.352Z","0.11.1":"2020-08-19T18:14:04.367Z","0.11.2":"2020-10-16T20:10:02.745Z","0.11.3":"2020-11-04T00:39:03.421Z","0.11.4":"2021-02-16T18:37:27.014Z","0.11.5":"2022-03-03T23:57:45.660Z","0.11.6":"2022-06-15T18:21:27.424Z","0.11.7":"2022-07-21T10:42:31.660Z","0.11.8":"2022-08-12T14:28:35.894Z","0.12.0":"2022-11-07T19:38:50.344Z","0.13.0":"2023-03-06T19:31:25.549Z","0.13.1":"2023-06-12T15:57:33.960Z","0.13.2":"2023-09-11T16:59:34.845Z","0.13.3":"2023-09-12T18:34:43.958Z","0.14.0":"2023-09-18T10:03:19.061Z","0.14.1":"2023-10-26T16:35:39.978Z","0.14.2":"2023-11-03T17:59:21.797Z","0.14.3":"2024-01-09T17:17:55.014Z","0.14.4":"2024-02-13T19:46:57.090Z","0.14.5":"2024-04-30T20:55:41.653Z","0.14.6":"2024-05-17T00:40:07.770Z","0.14.7":"2024-06-06T21:08:52.607Z","0.14.8":"2024-07-17T21:12:01.123Z","0.14.10":"2024-08-05T17:04:18.442Z","0.15.0":"2024-08-21T20:15:13.446Z"},"readmeFilename":"README.md","homepage":"https://github.com/angular/angular#readme"}