{"_id":"systemjs","maintainers":[{"email":"guybedford@gmail.com","name":"guybedford"},{"email":"jolyndenning+npm@gmail.com","name":"jolyndenning"}],"dist-tags":{"next":"0.20.0-rc.8","legacy":"0.21.6","alpha":"2.0.0-alpha.1","latest":"6.15.1"},"author":{"name":"Guy Bedford"},"description":"Dynamic ES module loader","readme":"# SystemJS\r\n\r\n[![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/systemjs/systemjs?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n[![Backers on Open Collective](https://opencollective.com/systemjs/backers/badge.svg)](#backers)\r\n[![Sponsors on Open Collective](https://opencollective.com/systemjs/sponsors/badge.svg)](#sponsors)\r\n[![Downloads on JS Delivr](https://data.jsdelivr.com/v1/package/npm/systemjs/badge)](https://www.jsdelivr.com/package/npm/systemjs)\r\n\r\nSystemJS is a hookable, standards-based module loader. It provides a workflow where code written for production workflows of native ES modules in browsers ([like Rollup code-splitting builds](https://rollupjs.org/guide/en#code-splitting)), can be transpiled to the [System.register module format](docs/system-register.md) to work in older browsers that don't support native modules, running [almost-native module speeds](#performance) while supporting top-level await, dynamic import, circular references and live bindings, import.meta.url, module types, import maps, integrity and Content Security Policy with compatibility in older browsers back to IE11.\r\n\r\n## Sponsors\r\n\r\n<a href=\"https://opencollective.com/systemjs/sponsor/0/website\" target=\"_blank\"><img src=\"https://opencollective.com/systemjs/sponsor/0/avatar.svg\"></a>\r\n<a href=\"https://opencollective.com/systemjs/sponsor/1/website\" target=\"_blank\"><img src=\"https://opencollective.com/systemjs/sponsor/1/avatar.svg\"></a>\r\n<a href=\"https://opencollective.com/systemjs/sponsor/2/website\" target=\"_blank\"><img src=\"https://opencollective.com/systemjs/sponsor/2/avatar.svg\"></a>\r\n<a href=\"https://opencollective.com/systemjs/sponsor/3/website\" target=\"_blank\"><img src=\"https://opencollective.com/systemjs/sponsor/3/avatar.svg\"></a>\r\n<a href=\"https://opencollective.com/systemjs/sponsor/4/website\" target=\"_blank\"><img src=\"https://opencollective.com/systemjs/sponsor/4/avatar.svg\"></a>\r\n<a href=\"https://opencollective.com/systemjs/sponsor/5/website\" target=\"_blank\"><img src=\"https://opencollective.com/systemjs/sponsor/5/avatar.svg\"></a>\r\n<a href=\"https://opencollective.com/systemjs/sponsor/6/website\" target=\"_blank\"><img src=\"https://opencollective.com/systemjs/sponsor/6/avatar.svg\"></a>\r\n<a href=\"https://opencollective.com/systemjs/sponsor/7/website\" target=\"_blank\"><img src=\"https://opencollective.com/systemjs/sponsor/7/avatar.svg\"></a>\r\n<a href=\"https://opencollective.com/systemjs/sponsor/8/website\" target=\"_blank\"><img src=\"https://opencollective.com/systemjs/sponsor/8/avatar.svg\"></a>\r\n<a href=\"https://opencollective.com/systemjs/sponsor/9/website\" target=\"_blank\"><img src=\"https://opencollective.com/systemjs/sponsor/9/avatar.svg\"></a>\r\n\r\n> **Support SystemJS by [becoming a sponsor](https://opencollective.com/systemjs#sponsor).** Your logo will show up here with a link to your website.\r\n\r\n## Backers\r\n\r\nThank you to all our backers! \uD83D\uDE4F [[Become a backer](https://opencollective.com/systemjs#backer)]\r\n\r\n<a href=\"https://opencollective.com/systemjs#backers\" target=\"_blank\"><img src=\"https://opencollective.com/systemjs/backers.svg?width=890\"></a>\r\n\r\n### Overview\r\n\r\n#### 1. s.js minimal production loader\r\n\r\nThe minimal [2.8KB s.js production loader](dist/s.min.js) includes the following features:\r\n\r\n* Loads `System.register` modules, the CSP-compatible [SystemJS module format](docs/system-register.md).\r\n* Support for loading bare specifier names with [import maps](docs/import-maps.md) via `<script type=\"systemjs-importmap\">`.\r\n* Supports [hooks](docs/hooks.md) for loader customization.\r\n\r\n#### 2. system.js loader\r\n\r\nThe [4.2KB system.js loader](dist/system.min.js) adds the following features in addition to the `s.js` features above:\r\n\r\n* [Tracing hooks](docs/hooks.md##onloaderr-id-deps-iserrsource-sync) and [registry deletion API](docs/api.md#registry) for reloading workflows.\r\n* Supports loading Wasm, CSS and JSON [module types](docs/module-types.md).\r\n* Includes the [global loading extra](#extras) for loading global scripts, useful for loading library dependencies traditionally loaded with script tags.\r\n\r\n#### 3. system-node.cjs loader\r\n\r\nThe [system-node.cjs](/dist/system-node.cjs) loader is a version of SystemJS build designed to run in Node.js, typically for workflows where System modules need to be executed on the server like SSR. It has the following features:\r\n\r\n* Loading System modules from disk (via `file://` urls) or the network, with included caching that respects the Content-Type header.\r\n* Import Maps (via the `applyImportMap` api).\r\n* [Tracing hooks](docs/hooks.md#trace-hooks) and [registry deletion API](docs/api.md#registry) for reloading workflows.\r\n* Loading global modules with the included [global loading extra](#extras).\r\n\r\n_Loading CommonJS modules is not currently supported in this loader and likely won't be. If you find you need them it is more advisable to use [Node.js native module support](https://nodejs.org/dist/latest/docs/api/esm.html) where possible instead of the SystemJS Node.js loader._\r\n\r\n#### Extras\r\n\r\nThe following [pluggable extras](dist/extras) can be dropped in with either the s.js or system.js loader:\r\n\r\n* [AMD loading](dist/extras/amd.js) support (through `Window.define` which is created).\r\n* [Named register](dist/extras/named-register.js) supports `System.register('name', ...)` named bundles which can then be imported as `System.import('name')` (as well as AMD named define support)\r\n* [Dynamic import maps](dist/extras/dynamic-import-maps.js) support. This is currently a _potential_ new standard [feature](https://github.com/guybedford/import-maps-extensions#lazy-loading-of-import-maps).\r\n\r\nThe following extras are included in system.js loader by default, and can be added to the s.js loader for a smaller tailored footprint:\r\n\r\n* [Global loading](dist/extras/global.js) support for loading global scripts and detecting the defined global as the default export. Useful for loading common library scripts from CDN like `System.import('//unpkg.com/lodash')`.\r\n* [Module Types](dist/extras/module-types.js) `.css`, `.wasm`, `.json` [module type](docs/module-types.md) loading support in line with the existing modules specifications.\r\n\r\nSince all loader features are hookable, custom extensions can be easily made following the same approach as the bundled extras. See the [hooks documentation](docs/hooks.md) for more information.\r\n\r\n## SystemJS Babel\r\n\r\nTo support easy loading of TypeScript or ES modules in development SystemJS workflows, see the [SystemJS Babel Extension](https://github.com/systemjs/systemjs-babel).\r\n\r\nSystemJS does not support direct integration with the native ES module browser loader because there is no way to share dependencies between the module systems. For extending the functionality of the native module loader in browsers, see [ES module Shims](https://github.com/guybedford/es-module-shims), which like SystemJS, provides workflows for import maps and other modules features, but on top of base-level modules support in browsers, which it does using a fast Wasm-based source rewriting to remap module specifiers.\r\n\r\n## Performance\r\n\r\nSystemJS is designed for production modules performance roughly only around a factor of 1.5 times the speed of native ES modules, as seen in the following performance benchmark, which was run by loading 426 javascript modules (all of `@babel/core`) on a Macbook pro with fast wifi internet connection. Each test was the average of five page loads in Chrome 80.\r\n\r\n| Tool | Uncached | Cached |\r\n| ---- | -------- | ------ |\r\n| Native modules | 1668ms | 49ms |\r\n| SystemJS | 2334ms | 81ms |\r\n\r\n## Getting Started\r\n\r\n[Introduction video](https://www.youtube.com/watch?v=AmdKF2UhFzw).\r\n\r\nThe [systemjs-examples repo](https://github.com/systemjs/systemjs-examples) contains a variety of examples demonstrating how to use SystemJS.\r\n\r\n## Installation\r\n\r\n```\r\nnpm install systemjs\r\n```\r\n\r\n## Documentation\r\n\r\n* [Import Maps](docs/import-maps.md)\r\n* [API](docs/api.md)\r\n* [System.register](docs/system-register.md)\r\n* [Loader Hooks](docs/hooks.md)\r\n* [Module Types](docs/module-types.md)\r\n\r\n## Example Usage\r\n\r\n### Loading a System.register module\r\nYou can load [System.register](/docs/system-register.md) modules with a script element in your HTML:\r\n\r\n```html\r\n<script src=\"system.js\"></script>\r\n<script type=\"systemjs-module\" src=\"/js/main.js\"></script>\r\n<script type=\"systemjs-module\" src=\"import:name-of-module\"></script>\r\n```\r\n\r\n### Loading with System.import\r\nYou can also dynamically load modules at any time with `System.import()`:\r\n\r\n```js\r\nSystem.import('/js/main.js');\r\n```\r\n\r\nwhere `main.js` is a module available in the System.register module format.\r\n\r\n### Bundling workflow\r\n\r\nFor an example of a bundling workflow, see the Rollup Code Splitting starter project - https://github.com/rollup/rollup-starter-code-splitting.\r\n\r\nNote that when building System modules you typically want to ensure anonymous System.register statements like:\r\n\r\n```js\r\nSystem.register([], function () { ... });\r\n```\r\n\r\nare emitted, as these can be loaded in a way that behaves the same as normal ES modules, and **not** named register statements like:\r\n\r\n```js\r\nSystem.register('name', [], function () { ... });\r\n```\r\n\r\nWhile these can be supported with the named register extension, this approach is typically not recommended for modern modules workflows.\r\n\r\n### Import Maps\r\n\r\nSay `main.js` depends on loading `'lodash'`, then we can define an import map:\r\n\r\n```html\r\n<script src=\"system.js\"></script>\r\n<script type=\"systemjs-importmap\">\r\n{\r\n  \"imports\": {\r\n    \"lodash\": \"https://unpkg.com/lodash@4.17.10/lodash.js\"\r\n  }\r\n}\r\n</script>\r\n<!-- Alternatively:\r\n<script type=\"systemjs-importmap\" src=\"path/to/map.json\" crossorigin=\"anonymous\"></script>\r\n-->\r\n<script type=\"systemjs-module\" src=\"/js/main.js\"></script>\r\n```\r\n\r\n### IE11 Support\r\n\r\nIE11 continues to be fully supported, provided the relevant polyfills are available.\r\n\r\nThe main required polyfill is a `Promise` polyfill. If using import maps a `fetch` polyfill is also needed.\r\n\r\nBoth of these can be loaded conditionally using for example using [Bluebird Promises](http://bluebirdjs.com/docs/getting-started.html) and the [GitHub Fetch Polyfill](https://github.github.io/fetch/) over Unpkg:\r\n\r\n```html\r\n<script>\r\n  if (typeof Promise === 'undefined')\r\n    document.write('<script src=\"https://unpkg.com/bluebird@3.7.2/js/browser/bluebird.core.min.js\"><\\/script>');\r\n  if (typeof fetch === 'undefined')\r\n    document.write('<script src=\"https://unpkg.com/whatwg-fetch@3.4.1/dist/fetch.umd.js\"><\\/script>');\r\n</script>\r\n```\r\n\r\nlocated _before_ the SystemJS script itself. The above will ensure these polyfills are only fetched for older browsers without `Promise` and `fetch` support.\r\n\r\n#### Note on Import Maps Support in IE11\r\n\r\nWhen using external import maps (those with `src=\"\"` attributes), there is an IE11-specific workaround that might need to be used. Browsers should not make a network request when they see `<script type=\"systemjs-importmap\" src=\"/importmap.json\"></script>` during parsing of the initial HTML page. However, IE11 does so. [Codesandbox demonstration](https://codesandbox.io/s/vibrant-black-xiok4?file=/index.html)\r\n\r\nNormally this is not an issue, as SystemJS will make an additional request via fetch/xhr for the import map. However, a problem can occur when the file is cached after the first request, since the first request caused by IE11 does not send the Origin request header by default. If the request requires CORS, the lack of an Origin request header causes many web servers (including AWS Cloudfront) to omit the response CORS headers. This can result in the resource being cached without CORS headers, which causes the later SystemJS fetch() to fail because of CORS checks.\r\n\r\nThis can be worked around by adding `crossorigin=\"anonymous\"` as an attribute to the `<script type=\"systemjs-importmap\">` script.\r\n\r\n## Community Projects\r\n\r\nA list of projects that use or work with SystemJS in providing modular browser workflows. [Post a PR](https://github.com/systemjs/systemjs/edit/master/README.md).\r\n\r\n* [beyondjs.com](https://beyondjs.com) -TypeScript first meta-framework for universal microfrontends/micronservices.\r\n* [esm-bundle](https://github.com/esm-bundle) - list of System.register versions for major libraries, including documentation on how to create a System.register bundle for any npm package.\r\n* [es-dev-server](https://github.com/open-wc/open-wc/tree/master/packages/es-dev-server) - A web server for developing without a build step.\r\n* [import map overrides](https://github.com/joeldenning/import-map-overrides/) - Dynamically inject an import map stored in local storage so that you can override the URL for any module. Can be useful for running development modules on localhost against the server.\r\n* [js-env](https://github.com/jsenv/jsenv-core) - Collection of development tools providing a unified workflow to write JavaScript for the web, node.js or both at the same time.\r\n* [jspm.org](https://jspm.org) - Package manager for native modules, using SystemJS for backwards compatibility.\r\n* [single-spa](https://single-spa.js.org/) - JavaScript framework for front-end microservices.\r\n* [systemjs-webpack-interop](https://github.com/joeldenning/systemjs-webpack-interop) - npm lib for setting webpack public path and creating webpack configs that work well with SystemJS.\r\n* [@wener/system](https://github.com/wenerme/wode/tree/main/packages/system) - hooks to make System works with npm registry & package.json}\r\n\r\n\r\n## Compatibility with Webpack\r\n\r\nCode-splitting builds on top of native ES modules, like Rollup offers, are an alternative to the Webpack-style chunking approach - offering a way to utilize the native module loader for loading shared and dynamic chunks instead of using a custom registry and loader as Webpack bundles include. Scope-level optimizations can be performed on ES modules when they are combined, while ensuring no duplicate code is loaded through dynamic loading and code-sharing in the module registry, using the features of the native module loader and its dynamic runtime nature.\r\n\r\n[systemjs-webpack-interop](https://github.com/joeldenning/systemjs-webpack-interop) is a community-maintained npm library that might help you get webpack and systemjs working well together.\r\n\r\nAs of webpack@4.30.0, it is now possible to compile webpack bundles to System.register format, by modifying your webpack config:\r\n\r\n```js\r\n{\r\n  output: {\r\n    libraryTarget: 'system', \r\n  }\r\n}\r\n```\r\n\r\nIf using webpack@<5, the following config is needed to avoid rewriting references to the global `System` variable:\r\n\r\n```js\r\n{\r\n  module: {\r\n    rules: [\r\n      { parser: { system: false } }\r\n    ]\r\n  }\r\n}\r\n```\r\n\r\n## Using npm packages\r\n\r\nThird party libraries and npm packages may be used as long as they are published in [a supported module format](https://github.com/systemjs/systemjs/blob/master/docs/module-types.md). For packages that do not exist in a supported module format, [here is a list of github repos](https://github.com/esm-bundle/) that publish `System.register` versions of popular third party libraries (such as react, react-dom, rxjs, etc).\r\n\r\n## Contributing to SystemJS\r\n\r\nProject bug fixes and changes are welcome for discussion, provided the project footprint remains minimal.\r\n\r\nTask running is handled by Chomp (https://chompbuild.com).\r\n\r\nTo run the tests:\r\n\r\n```\r\nnpm install -g chomp\r\nchomp test\r\n```\r\n\r\n## Changes\r\n\r\nFor the changelog, see [CHANGELOG.md](CHANGELOG.md).\r\n\r\n## License\r\n\r\nMIT\r\n","repository":{"type":"git","url":"git://github.com/systemjs/systemjs.git"},"users":{"juk":true,"nazy":true,"amenadiel":true,"trusktr":true,"jian263994241":true,"hugov":true,"bumsuk":true,"ruthearle":true,"kikna":true,"chumingze":true,"kontrax":true,"jonwilkinson":true,"honzajde":true,"capaj":true,"briandipalma":true,"shanewholloway":true,"kudakv":true,"takumab":true,"andrej-k":true,"largepuma":true,"ognjen.jevremovic":true,"leejefon":true,"christopher.urquidi":true,"buzuli":true,"jeandrebosch":true,"panlw":true,"brettv":true,"hust007":true,"brainpoint":true,"tchcxp":true,"blittle":true,"jryans":true,"flumpus-dev":true,"rabahtahraoui":true,"zhangaz1":true,"robrbecker":true,"ovrmrw":true,"ctaggart":true,"ubi":true},"bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"license":"MIT","versions":{"0.19.19":{"name":"systemjs","version":"0.19.19","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.19.19","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"32afa17f7f882359ff80e0f0067f305247b2b4a8","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.19.19.tgz","integrity":"sha512-d5ESMxb2v/h0mC33y9MWtYH03oTTLuDZ+w4TVnPoId726ZDQ4iV8ADtwebAwQifWAayUqm80BWanT2J9PfTerw==","signatures":[{"sig":"MEUCIAVRePtKLMdxl0/DbD9qmreu8Us4AwKrkiFQqdEwLS8qAiEAjggVAtxns+iGpOWeZZ5nL6sBwKu6fo8nu1s4lABk9vE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"32afa17f7f882359ff80e0f0067f305247b2b4a8","gitHead":"8e8a72147fb8760697fd990aeb2b0f6def17e4c4","scripts":{"test":"npm run test:babel && npm run test:traceur && npm run test:typescript","build":"make","test:babel":"qunit -c s:./index.js -t ./test/test-babel.js","test:browser":"make test","test:traceur":"qunit -c s:./index.js -t ./test/test-traceur.js","test:typescript":"qunit -c s:./index.js -t ./test/test-typescript.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"2.14.15","description":"Universal dynamic module loader","directories":{},"_nodeVersion":"5.1.1","dependencies":{"when":"^3.7.5","es6-module-loader":"^0.17.10"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.102","uglify-js":"~2.4.23","babel-core":"^5.8.22","typescript":"^1.6.2"},"_npmOperationalInternal":{"tmp":"tmp/systemjs-0.19.19.tgz_1454592536820_0.03186900867149234","host":"packages-9-west.internal.npmjs.com"}},"4.1.1":{"name":"systemjs","version":"4.1.1","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@4.1.1","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"c90061456f9707478d487b47f3b92b9896032889","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-4.1.1.tgz","fileCount":28,"integrity":"sha512-/0x3bcMrl1pxDCLw6sJWEKPVy0ZGEu7I0nItFSHxfPoDU2Lll6TUyB1wqltvbm7n5y5jVOoK4lei4oMpmW7XJQ==","signatures":[{"sig":"MEUCIGPPXIHOa3gll0pbk3ktokBQGglV2bXe75BlTHo9mBaoAiEAmbbsQK3pQP/nr4WenSYsn4dHbhvkSN+EeVK3y6Y6gv4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":110821,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdQQiwCRA9TVsSAnZWagAACj4P/1ZFYku5f5wuwzC0P4gh\nTQXzLfkaGgeO2BKa0SVE6BCVsxZrDqXkcy/J64NwM6KE4+r6ApbBUqUqwQ79\nM/nHQarwauRRb/60aMYiGpxgCAmFN2yRH4WwXvVrij8DOZl/mt5WKa6LtP14\nLJllZisT65mupKAUsZktse+7oT2i2MRkYquyuzkizIGG2YW8rAAno4fkL0Yq\nxK9aXXaj0sKbouTaey0KK8ZOodHEcQCE/38Kq4gCgo8kx5ywMVOnJK+c6nYB\nXo/jWX00NtwUgZpPWucVRHVFM6BNSAMnk5LDxJQf+5qu2LEWU3/g/T29or0u\ns7xtk24bdTyisrrTOyhF4CCtK4apsYlVFtWlHJp11oU2TWgP3pWHURYhXnkz\nF0/pMdFsUwmVgo2erFEESExQG/nSJ4UM09LPK4optW4jlDGjWiDO20/VXbQv\nupK4a7CHi1J9bX3T8VUS9TSA/CPnRosu3aYdFet3FY4mkrCKcvQRGXAUi8Jk\nh+WIZWGSMKpt9zChjSF/Vbca3q2NwwGhXZ896kFunLUVjUgFEpDWByRG3HC/\np17aAimEwzGjAUTBAYJNoIsfLf27Tz0v8OGC38y+zKzri55arcfOcp7WiVEy\nQAbNuW3crZ3Y3F4OSsufWw5bJNomon6YfStcSrTqhVpsm+rtoKqrW15AZGDt\n8Vvl\r\n=PE8o\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","gitHead":"b6d411af04c848ec3eb6959dac82c0819cf9909a","scripts":{"min":"npm run min:systemjs && npm run min:sjs","test":"mocha -b -r esm","build":"npm run build:systemjs && npm run build:sjs && npm run min && npm run build:extras","min:sjs":"cd dist && terser s.js -c passes=2 -m --source-map -o s.min.js","build:sjs":"rollup -c --environment sjs","footprint":"npm run footprint:systemjs && npm run footprint:sjs","prepublish":"npm run build","build:extras":"bash minify-extras.sh","min:systemjs":"cd dist && terser system.js -c passes=2 -m --source-map --comments \"/SystemJS \\d/\" -o system.min.js","footprint:sjs":"terser dist/s.js -c passes=2 -m | gzip -9f | wc -c","build:systemjs":"rollup -c","footprint:systemjs":"terser dist/system.js -c passes=2 -m | gzip -9f | wc -c"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"6.10.2","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"12.7.0","_hasShrinkwrap":false,"devDependencies":{"esm":"^3.2.25","mocha":"^5.2.0","rollup":"^0.64.1","terser":"^3.8.1","bluebird":"^3.5.1","whatwg-fetch":"^2.0.4","rollup-plugin-replace":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_4.1.1_1564543151783_0.09979444120775716","host":"s3://npm-registry-packages"}},"4.1.0":{"name":"systemjs","version":"4.1.0","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@4.1.0","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"187f53e42061cfde9f8d807c3ed0e4e9afea193f","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-4.1.0.tgz","fileCount":28,"integrity":"sha512-nJrwicPmCKJBgRsFfNhXZVD6GJLnd+CyRZlUTP1XlAnXOXf6ePLX3seF1scLmUS3pnZKiUFURCjTkCixqoGT1g==","signatures":[{"sig":"MEQCIFOlGUjSDk6ViqEWXYa4WgQNANT9Gny8gYRlbp20Q4H3AiBKhtUrPJLi11E65yJwEGng+xJy2DRc+2Qeq4lzr2AsjQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":109495,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdK5HbCRA9TVsSAnZWagAAHa0P/0Au2RuG5X3eorXq2N+Y\nnMXQWIxPaA/DREwPXs97v2bp6JVh5myTAWayNutlVTGHIUCzBzCMnIgbwrga\nE7V3MnwQxlFH5+yPXOxoQR8WwOAfZ6a2KWzyR07VZhK31S9Sy10uO7iPw3Dd\nG3STRNI3HY51+qUYHFBMGCnDoulxpvvVSj+0n/O+4NDJszUYjJTiIGmDSjYm\nV5VwfJOFt7rbWiXQoBCYNIEdy5dlEHkZ+F4xJ+i3BR2/RPLwDSS3MR4S8Pej\nd2iy2AHbCOvmsdA60vO6qAa+O3i/0IrnMq6QjgQij+JY3sOc+bVLsSrQ6JN8\nOkStsJLDKcAbkfjhYSE0+goTexAxKd6D6x/iYpMj5eNqARE+GnRZBJeg7uR6\neB/l82Lixcb0Crs+Ij9t1OYsxwvlbJG9NrDgKw/izzLXyu6xefwFB2TmEnYL\nY87a2jETfeF6qzejtS0xX6uViNIkNGYy46LpvWXNcg1mjQCiR4gGkNK1Iqxt\nuGwHQ91dXw7nf+6Z/djxcOjA2vTweO4t93+oHMtd0iIdaihAaRsJgIgG1xe3\n4WmaBV+dwTPBOzCHoKDdGDpki/qcirFGElISQlRBWZJixilbfPUK5aMCFFxw\nGeTBVGAu1K2hRDzGIUAEIsiaGp2iBJaiEhUzQl413hucqHNb7mUU4SxqSTpN\nknK0\r\n=sRbM\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","gitHead":"83f00b7270a826d7f8fefbc28972117a22c880d6","scripts":{"min":"npm run min:systemjs && npm run min:sjs","test":"mocha -b -r esm","build":"npm run build:systemjs && npm run build:sjs && npm run min && npm run build:extras","min:sjs":"cd dist && terser s.js -c passes=2 -m --source-map -o s.min.js","build:sjs":"rollup -c --environment sjs","footprint":"npm run footprint:systemjs && npm run footprint:sjs","prepublish":"npm run build","build:extras":"bash minify-extras.sh","min:systemjs":"cd dist && terser system.js -c passes=2 -m --source-map --comments \"/SystemJS \\d/\" -o system.min.js","footprint:sjs":"terser dist/s.js -c passes=2 -m | gzip -9f | wc -c","build:systemjs":"rollup -c","footprint:systemjs":"terser dist/system.js -c passes=2 -m | gzip -9f | wc -c"},"_npmUser":{"name":"joeldenning","email":"joeldenning@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"6.9.0","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"12.6.0","_hasShrinkwrap":false,"devDependencies":{"esm":"^3.2.25","mocha":"^5.2.0","rollup":"^0.64.1","terser":"^3.8.1","bluebird":"^3.5.1","whatwg-fetch":"^2.0.4","rollup-plugin-replace":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_4.1.0_1563136474119_0.8830715595053933","host":"s3://npm-registry-packages"}},"6.5.1":{"name":"systemjs","version":"6.5.1","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@6.5.1","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"2da38d8193c39491852083447a8a9c44687021ea","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-6.5.1.tgz","fileCount":35,"integrity":"sha512-N3Qx2Ro84vqyrjY+lJr9HlAiMz6hs3YiwDZljYLNPQu8yJ+NaETYU0ijqKvAdc/khulbTc2IAq9O0VLeRLSRnw==","signatures":[{"sig":"MEQCICbdE8egKAokqmHGZFA+SInf1fJ+US8+Ic7IKu0Qaw8WAiApWeRlyJhmChCB3fGPnhr5Uj61qyb7xrscTduN2/9log==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":450859,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfTx6kCRA9TVsSAnZWagAAI3UP/i9Iu+KiwXWDUqnt8is4\ny1KIEbmQBzJBlZ/dOMkhuXhaYV3gNkvMbNcyU25adbixLIBJlwXdPTy8YdBZ\nlW7DMLnH5woAYTrhgnG/NGy7zgGVd5HVoKTyL1qvGM+UMLAZ5BMLvJUqV9b0\njfOW/20HXYjbRstHUPsQwhO2vBgNCMeixwvh1Tl2ZG6uEou05TITXviq2b6H\n/MkS7JY3M2R7Mg+e7xiPG+EeMsqDZSeJPrYXXi3ltZoHNvgSpcd9CII7KTRt\nMx6gq4m5pvikXxMjIFGWIVzidqdYiB6wUApCGxgeZX0XeoA1+DBkJwFHCWcd\nuESnxt0Hz+W+VzZ1p6FML9rUEbv1NRfPVD047b2Vt8c2BPPpP8yT8A3HJBIN\nbiRy8JLx/45ezZqMsD9JwqdmpcCtkuDKNW8Qdw6Fd0MjtFMsqxQUc4FKbhxr\nwKn0pDg2XL44wJAkLJgjr6uplLWLG7T1qqd38p6esVJGAAstJdJJ8qr7jBc1\n2qg/v6RVBXNiV+DcVVs3Ps/XDWbpacCz/J677eUFa5sTRFUSce7UIhE4/094\nMPevpM1raGwdUdkaJHcYvhZYp2pZUpzdLwCbWjMUALBSnPYqeEDaTsfJd+xj\nfB2cefeQvXCR1zFNDlEBAK9dVQiyTJRiyhSTLtnnjFKLjbvGdDUE4Xzgk8fT\nbB02\r\n=OyoC\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/system-node.cjs","type":"module","exports":{".":{"node":"./dist/system-node.cjs","default":"./dist/system.min.js"},"./s.js":"./dist/s.min.js","./dist/":"./dist/"},"gitHead":"5145217bc13e0999a0ec399598eabb2bd6abbc82","scripts":{"test":"concurrently -n w: 'npm:test:*'","build":"rimraf dist && mkdirp dist && concurrently -n w: 'npm:build:*'","footprint":"concurrently -n w: 'npm:footprint:*'","test:node":"cross-env NODE_OPTIONS=--experimental-modules mocha --timeout 5000 -b test/system-node.js","build:node":"node --experimental-modules build-node.js","prepublish":"npm run build","test:browser":"node test/server.cjs","build:browser":"rollup -c","footprint:sjs":"cat dist/s.min.js | gzip -9f | wc -c","test:internals":"cross-env NODE_OPTIONS=--experimental-modules mocha -b test/import-map.js test/system-core.js test/url-resolution.js","build-browser-dev":"rollup -c --environment dev","footprint:systemjs":"cat dist/system.min.js | gzip -9f | wc -c","test-browser-watch":"cross-env WATCH_MODE=true node test/server.cjs"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"collective":{"url":"https://opencollective.com/systemjs","type":"opencollective"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"6.14.6","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"14.6.0","_hasShrinkwrap":false,"devDependencies":{"open":"^7.0.3","mocha":"^7.1.1","mkdirp":"^1.0.4","rimraf":"^3.0.2","rollup":"^2.2.0","terser":"^4.6.7","bluebird":"^3.7.2","@zeit/ncc":"^0.22.1","cross-env":"^7.0.2","node-fetch":"^2.6.0","symbol-es6":"^0.1.2","concurrently":"^5.1.0","whatwg-fetch":"^3.0.0","source-map-support":"^0.5.16","@rollup/plugin-json":"^4.0.2","rollup-plugin-terser":"^5.3.0","@rollup/plugin-replace":"^2.3.1","@jsenv/file-size-impact":"^5.1.1","@rollup/plugin-node-resolve":"^7.1.1","construct-style-sheets-polyfill":"^2.3.5"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_6.5.1_1599020707704_0.3703890677196997","host":"s3://npm-registry-packages"}},"0.19.10":{"name":"systemjs","version":"0.19.10","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.19.10","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"4a3d73f80fc8e45f25c546a3f000b78b2ed8f30e","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.19.10.tgz","integrity":"sha512-qwsvmEq8NW8gRDC8q6hwKX+GR8927cQ3Suay3q0UTJurpLY43QYvIzWi52fQ1RpNr3t7MrloJLurxU0NpzIVhA==","signatures":[{"sig":"MEQCIF8vIS3VkRopjr2eJbrEvBkZQHRMZdqQEvlBJxtI3xokAiAg3uz6e3dDLUT24PD3xlWCXcZMhej5VDgU+VbZPDQvXQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"4a3d73f80fc8e45f25c546a3f000b78b2ed8f30e","gitHead":"0b9faaadef6f43f8ab9f1a0682eaca173c0e1811","scripts":{"test":"npm run test:babel && npm run test:traceur && npm run test:typescript","build":"make","test:babel":"qunit -c s:./index.js -t ./test/test-babel.js","test:browser":"make test","test:traceur":"qunit -c s:./index.js -t ./test/test-traceur.js","test:typescript":"qunit -c s:./index.js -t ./test/test-typescript.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"2.14.15","description":"Universal dynamic module loader","directories":{},"_nodeVersion":"5.1.1","dependencies":{"when":"^3.7.5","es6-module-loader":"^0.17.10"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.95","uglify-js":"~2.4.23","babel-core":"^5.8.22","typescript":"^1.6.2"}},"0.20.10":{"name":"systemjs","version":"0.20.10","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.20.10","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"53ece512717fa10fcbf67b4e95fdb7c094219be8","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.20.10.tgz","integrity":"sha512-xdH7mix//Mbb6s7/e51KcSYjxTWRs92cALSgj0/8EK3EF8TKnf6i6/ZDPihj+z1WJwNcNfEsKO0mTMKSDwfVtw==","signatures":[{"sig":"MEQCIBDr1mFZ5sIcDN79XSz+q85IRTvOjq0MYgreFQyDsKWCAiBGyPK0ocpEcV8OWt74sZblKw5qY1BzhpZ97eg3tW9bwA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.src.js","_from":".","files":["dist"],"_shasum":"53ece512717fa10fcbf67b4e95fdb7c094219be8","gitHead":"9a7a7bb9d480ce5cc5c53a52ba95d810715c5c1e","scripts":{"min":"npm run min:dev && npm run min:production","test":"npm run test:production && npm run test:babel && npm run test:traceur && npm run test:typescript","build":"npm run build:dev && npm run build:production","irhydra":"node --trace-hydrogen --trace-phase=Z --trace-deopt --code-comments --hydrogen-track-positions --redirect-code-traces --redirect-code-traces-to=code.asm --print-opt-code --trace_hydrogen_file=hydrogen.cfg irhydra/load.js","min:dev":"cd dist && uglifyjs system.src.js -cm --in-source-map system.src.js.map --source-map system.js.map --screw-ie8 --comments '/SystemJS v/' > system.js","build:dev":"rollup -c","footprint":"npm run footprint:dev && npm run footprint:production","prepublish":"rm -r dist && npm run build && npm run min","test:babel":"mocha test/test-babel.js -u tdd --reporter dot","test:traceur":"mocha test/test-traceur.js -u tdd --reporter dot","footprint:dev":"uglifyjs dist/system.src.js -cm --screw-ie8 | gzip -9f | wc -c","min:production":"cd dist && uglifyjs system-production.src.js -cm --in-source-map system-production.src.js.map --source-map system-production.js.map --screw-ie8 --comments '/SystemJS v/' > system-production.js","test:production":"mocha test/test-production.js -u tdd --reporter dot","test:typescript":"mocha test/test-typescript.js -u tdd --reporter dot","build:production":"rollup -c --environment production","footprint:production":"uglifyjs dist/system-production.src.js -cm --screw-ie8 | gzip -9f | wc -c"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"4.1.2","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"7.7.3","devDependencies":{"mocha":"^3.1.2","rollup":"^0.41.1","traceur":"0.0.111","bluebird":"^3.4.6","uglifyjs":"^2.4.10","babel-core":"^6.21.0","typescript":"^2.0.6","es-module-loader":"^2.1.0","plugin-typescript":"^5.2.7","rollup-plugin-replace":"^1.1.1","systemjs-plugin-babel":"0.0.17","systemjs-plugin-traceur":"0.0.3","rollup-plugin-node-resolve":"^2.0.0","babel-plugin-syntax-dynamic-import":"^6.18.0","babel-plugin-transform-es2015-modules-systemjs":"^6.19.0"},"_npmOperationalInternal":{"tmp":"tmp/systemjs-0.20.10.tgz_1489664403319_0.49080780451186","host":"packages-12-west.internal.npmjs.com"}},"0.20.12":{"name":"systemjs","version":"0.20.12","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.20.12","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"135cc471280448453347829ebb9639a09a67f101","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.20.12.tgz","integrity":"sha512-SclbFvIsqoWawkoOTyyRfs+1dZw7Q+uMp3IRHSoU0GrCSzm0k9FqJBtNOeV8hZbFtn1q/+W7BgGZHAEOvaqGpA==","signatures":[{"sig":"MEUCIQCxQbBkQwrF2vVkbOoAW7bbUKa1HMdR+nmmsKlT21zXjwIgDVwkGIWRSRzQiyp9EXqDwrSbgsYTDouez6mcMYN6nA8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.src.js","_from":".","files":["dist"],"_shasum":"135cc471280448453347829ebb9639a09a67f101","gitHead":"c484f143c552a5c5aba875b2089c21a733d50ca6","scripts":{"min":"npm run min:dev && npm run min:production","test":"npm run test:production && npm run test:babel && npm run test:traceur && npm run test:typescript","build":"npm run build:dev && npm run build:production","irhydra":"node --trace-hydrogen --trace-phase=Z --trace-deopt --code-comments --hydrogen-track-positions --redirect-code-traces --redirect-code-traces-to=code.asm --print-opt-code --trace_hydrogen_file=hydrogen.cfg irhydra/load.js","min:dev":"cd dist && uglifyjs system.src.js -cm --in-source-map system.src.js.map --source-map system.js.map --screw-ie8 --comments '/SystemJS v/' > system.js","build:dev":"rollup -c","footprint":"npm run footprint:dev && npm run footprint:production","prepublish":"rm -r dist && npm run build && npm run min","test:babel":"mocha test/test-babel.js -u tdd --reporter dot","test:traceur":"mocha test/test-traceur.js -u tdd --reporter dot","footprint:dev":"uglifyjs dist/system.src.js -cm --screw-ie8 | gzip -9f | wc -c","min:production":"cd dist && uglifyjs system-production.src.js -cm --in-source-map system-production.src.js.map --source-map system-production.js.map --screw-ie8 --comments '/SystemJS v/' > system-production.js","test:production":"mocha test/test-production.js -u tdd --reporter dot","test:typescript":"mocha test/test-typescript.js -u tdd --reporter dot","build:production":"rollup -c --environment production","footprint:production":"uglifyjs dist/system-production.src.js -cm --screw-ie8 | gzip -9f | wc -c"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"4.2.0","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"8.0.0-nightly2017040353828e8bff","devDependencies":{"mocha":"^3.1.2","rollup":"^0.41.1","traceur":"0.0.111","bluebird":"^3.4.6","uglifyjs":"^2.4.10","babel-core":"^6.21.0","typescript":"^2.0.6","es-module-loader":"^2.1.5","plugin-typescript":"^5.2.7","rollup-plugin-replace":"^1.1.1","systemjs-plugin-babel":"0.0.17","systemjs-plugin-traceur":"0.0.3","rollup-plugin-node-resolve":"^2.0.0","babel-plugin-syntax-dynamic-import":"^6.18.0","babel-plugin-transform-es2015-modules-systemjs":"^6.19.0"},"_npmOperationalInternal":{"tmp":"tmp/systemjs-0.20.12.tgz_1491482923289_0.9770134123973548","host":"packages-18-east.internal.npmjs.com"}},"0.20.11":{"name":"systemjs","version":"0.20.11","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.20.11","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"a874a47e0472471a8442bed685259b2a9a82069b","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.20.11.tgz","integrity":"sha512-IltcrLTLuP7b4l0mnqHWvqfSNskcnx/9gNMvoRo4hZu0oaJ9ADcuqVbSABlY3S76gmVJaSFw79ucuJAP4eFbRQ==","signatures":[{"sig":"MEUCIB59cqiERD+HSuMsQy5P6jYtb/Ac3X7Wm+C5Z0NmpMB/AiEAgFib7N1Z6Oj5QcVVppFEv82b1jJU2zWEu7zTNY1dnDc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.src.js","_from":".","files":["dist"],"_shasum":"a874a47e0472471a8442bed685259b2a9a82069b","gitHead":"664115e924472a6e807297048605cdd33f83acf7","scripts":{"min":"npm run min:dev && npm run min:production","test":"npm run test:production && npm run test:babel && npm run test:traceur && npm run test:typescript","build":"npm run build:dev && npm run build:production","irhydra":"node --trace-hydrogen --trace-phase=Z --trace-deopt --code-comments --hydrogen-track-positions --redirect-code-traces --redirect-code-traces-to=code.asm --print-opt-code --trace_hydrogen_file=hydrogen.cfg irhydra/load.js","min:dev":"cd dist && uglifyjs system.src.js -cm --in-source-map system.src.js.map --source-map system.js.map --screw-ie8 --comments '/SystemJS v/' > system.js","build:dev":"rollup -c","footprint":"npm run footprint:dev && npm run footprint:production","prepublish":"rm -r dist && npm run build && npm run min","test:babel":"mocha test/test-babel.js -u tdd --reporter dot","test:traceur":"mocha test/test-traceur.js -u tdd --reporter dot","footprint:dev":"uglifyjs dist/system.src.js -cm --screw-ie8 | gzip -9f | wc -c","min:production":"cd dist && uglifyjs system-production.src.js -cm --in-source-map system-production.src.js.map --source-map system-production.js.map --screw-ie8 --comments '/SystemJS v/' > system-production.js","test:production":"mocha test/test-production.js -u tdd --reporter dot","test:typescript":"mocha test/test-typescript.js -u tdd --reporter dot","build:production":"rollup -c --environment production","footprint:production":"uglifyjs dist/system-production.src.js -cm --screw-ie8 | gzip -9f | wc -c"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"4.1.2","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"8.0.0-nightly20170226813b312b0e","devDependencies":{"mocha":"^3.1.2","rollup":"^0.41.1","traceur":"0.0.111","bluebird":"^3.4.6","uglifyjs":"^2.4.10","babel-core":"^6.21.0","typescript":"^2.0.6","es-module-loader":"^2.1.0","plugin-typescript":"^5.2.7","rollup-plugin-replace":"^1.1.1","systemjs-plugin-babel":"0.0.17","systemjs-plugin-traceur":"0.0.3","rollup-plugin-node-resolve":"^2.0.0","babel-plugin-syntax-dynamic-import":"^6.18.0","babel-plugin-transform-es2015-modules-systemjs":"^6.19.0"},"_npmOperationalInternal":{"tmp":"tmp/systemjs-0.20.11.tgz_1490872214970_0.9965644958429039","host":"packages-12-west.internal.npmjs.com"}},"0.20.14":{"name":"systemjs","version":"0.20.14","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.20.14","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"b29812f01b2c7ee867c3fc153b01fca4ea20c4d7","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.20.14.tgz","integrity":"sha512-emxZNtgvuJgdTS5dWvq6kgbeY8aDunNTasMWCu6JTxlfS4nSyJ6++YdN07fdoMFpSExOXvcdneFuwLC5LhXGng==","signatures":[{"sig":"MEYCIQDZoqbt1WoI3ldVOwUmWwG90VHoIUAKgSLm/O+e7zkbJQIhAN/Ett9NBbQ8sdlsEZWu7/xeL+Noa/9IrVFob39+jQB/","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.src.js","files":["dist"],"gitHead":"bd61a6a6f40b1114ff68cb157be6dbc6d2574123","scripts":{"min":"npm run min:dev && npm run min:production","test":"npm run test:production && npm run test:babel && npm run test:traceur && npm run test:typescript","build":"npm run build:dev && npm run build:production","irhydra":"node --trace-hydrogen --trace-phase=Z --trace-deopt --code-comments --hydrogen-track-positions --redirect-code-traces --redirect-code-traces-to=code.asm --print-opt-code --trace_hydrogen_file=hydrogen.cfg irhydra/load.js","min:dev":"cd dist && uglifyjs system.src.js -cm --source-map content=system.src.js.map --comments '/SystemJS v/' -o system.js","build:dev":"rollup -c","footprint":"npm run footprint:dev && npm run footprint:production","prepublish":"rm -r dist && npm run build && npm run min","test:babel":"mocha test/test-babel.js -u tdd --reporter dot","test:traceur":"mocha test/test-traceur.js -u tdd --reporter dot","footprint:dev":"uglifyjs dist/system.src.js -cm | gzip -9f | wc -c","min:production":"cd dist && uglifyjs system-production.src.js -cm --source-map content=system-production.src.js.map --comments '/SystemJS v/' -o system-production.js","test:production":"mocha test/test-production.js -u tdd --reporter dot","test:typescript":"mocha test/test-typescript.js -u tdd --reporter dot","build:production":"rollup -c --environment production","footprint:production":"uglifyjs dist/system-production.src.js -cm | gzip -9f | wc -c"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"5.0.0","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"8.0.0","devDependencies":{"mocha":"^3.1.2","rollup":"^0.41.1","traceur":"0.0.111","bluebird":"^3.4.6","uglify-js":"^3.0.11","babel-core":"^6.21.0","typescript":"^2.0.6","es-module-loader":"^2.2.0","plugin-typescript":"^5.2.7","rollup-plugin-replace":"^1.1.1","systemjs-plugin-babel":"0.0.17","systemjs-plugin-traceur":"0.0.3","rollup-plugin-node-resolve":"^2.0.0","babel-plugin-syntax-dynamic-import":"^6.18.0","babel-plugin-transform-es2015-modules-systemjs":"^6.19.0"},"_npmOperationalInternal":{"tmp":"tmp/systemjs-0.20.14.tgz_1497440678967_0.5579612946603447","host":"s3://npm-registry-packages"}},"0.20.13":{"name":"systemjs","version":"0.20.13","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.20.13","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"adcdee167291996e54e8c9ede62da6d50c7f130f","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.20.13.tgz","integrity":"sha512-A24ZQg2pCjgUjVjB+uwHqrjnpAvasc6aqrGyqa6jBRaIUEmFdP03Pv4lFKWNEjt6fGzWYh5Ym08Vbvzx3J/p9A==","signatures":[{"sig":"MEYCIQC0gPODvdAfToHZpo9QnapYmMgmBjxthNw6EpvgUHHXDwIhAPJIe6HejWhsd7WZTq2eHLXg8f/MEp0EHQdC8fh/iFIU","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.src.js","_from":".","files":["dist"],"_shasum":"adcdee167291996e54e8c9ede62da6d50c7f130f","gitHead":"234366beb777ea84fc889e4be772a5c1e6f0d649","scripts":{"min":"npm run min:dev && npm run min:production","test":"npm run test:production && npm run test:babel && npm run test:traceur && npm run test:typescript","build":"npm run build:dev && npm run build:production","irhydra":"node --trace-hydrogen --trace-phase=Z --trace-deopt --code-comments --hydrogen-track-positions --redirect-code-traces --redirect-code-traces-to=code.asm --print-opt-code --trace_hydrogen_file=hydrogen.cfg irhydra/load.js","min:dev":"cd dist && uglifyjs system.src.js -cm --source-map content=system.src.js.map --comments '/SystemJS v/' -o system.js","build:dev":"rollup -c","footprint":"npm run footprint:dev && npm run footprint:production","prepublish":"rm -r dist && npm run build && npm run min","test:babel":"mocha test/test-babel.js -u tdd --reporter dot","test:traceur":"mocha test/test-traceur.js -u tdd --reporter dot","footprint:dev":"uglifyjs dist/system.src.js -cm | gzip -9f | wc -c","min:production":"cd dist && uglifyjs system-production.src.js -cm --source-map content=system-production.src.js.map --comments '/SystemJS v/' -o system-production.js","test:production":"mocha test/test-production.js -u tdd --reporter dot","test:typescript":"mocha test/test-typescript.js -u tdd --reporter dot","build:production":"rollup -c --environment production","footprint:production":"uglifyjs dist/system-production.src.js -cm | gzip -9f | wc -c"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"4.1.2","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"7.6.0","devDependencies":{"mocha":"^3.1.2","rollup":"^0.41.1","traceur":"0.0.111","bluebird":"^3.4.6","uglify-js":"^3.0.11","babel-core":"^6.21.0","typescript":"^2.0.6","es-module-loader":"^2.2.0","plugin-typescript":"^5.2.7","rollup-plugin-replace":"^1.1.1","systemjs-plugin-babel":"0.0.17","systemjs-plugin-traceur":"0.0.3","rollup-plugin-node-resolve":"^2.0.0","babel-plugin-syntax-dynamic-import":"^6.18.0","babel-plugin-transform-es2015-modules-systemjs":"^6.19.0"},"_npmOperationalInternal":{"tmp":"tmp/systemjs-0.20.13.tgz_1496135213035_0.27829865645617247","host":"s3://npm-registry-packages"}},"0.20.16":{"name":"systemjs","version":"0.20.16","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.20.16","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"cf300160323349079f30faaddd9ec12807d3d09b","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.20.16.tgz","integrity":"sha512-+FX9ihAUr5qxCZ+G9CkOJ7c/nk09szv4hkSoS423mgw+2qVlhb7DIVFrPrOprwYwpvXpI8+NCHOPbRPbhCbKZQ==","signatures":[{"sig":"MEQCIFP9UpfYVRYEyRAXRSNFnkqt8uPtyR7zfqKhYAPstZuTAiB2qZ9whci0ZC3Bjp9EXsr3NHuDCxCMv1Kof2SV2jpMMg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.src.js","files":["dist"],"gitHead":"4e094e5dacd258e809f074dc81ccd65cbbda4ac9","scripts":{"min":"npm run min:dev && npm run min:production","test":"npm run test:production && npm run test:babel && npm run test:traceur && npm run test:typescript","build":"npm run build:dev && npm run build:production","irhydra":"node --trace-hydrogen --trace-phase=Z --trace-deopt --code-comments --hydrogen-track-positions --redirect-code-traces --redirect-code-traces-to=code.asm --print-opt-code --trace_hydrogen_file=hydrogen.cfg irhydra/load.js","min:dev":"cd dist && uglifyjs system.src.js -cm --source-map content=system.src.js.map --comments \"SystemJS v\" -o system.js","build:dev":"rollup -c","footprint":"npm run footprint:dev && npm run footprint:production","prepublish":"rimraf dist && npm run build && npm run min","test:babel":"mocha test/test-babel.js -u tdd --reporter dot","test:traceur":"mocha test/test-traceur.js -u tdd --reporter dot","footprint:dev":"uglifyjs dist/system.src.js -cm | gzip -9f | wc -c","min:production":"cd dist && uglifyjs system-production.src.js -cm --source-map content=system-production.src.js.map --comments \"SystemJS v\" -o system-production.js","test:production":"mocha test/test-production.js -u tdd --reporter dot","test:typescript":"mocha test/test-typescript.js -u tdd --reporter dot","build:production":"rollup -c --environment production","footprint:production":"uglifyjs dist/system-production.src.js -cm | gzip -9f | wc -c"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"5.0.3","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"8.1.3","devDependencies":{"mocha":"^3.1.2","rimraf":"^2.6.1","rollup":"^0.41.1","traceur":"0.0.111","bluebird":"^3.4.6","uglify-js":"^3.0.11","babel-core":"^6.21.0","typescript":"^2.0.6","es-module-loader":"^2.2.6","plugin-typescript":"^5.2.7","rollup-plugin-replace":"^1.1.1","systemjs-plugin-babel":"0.0.17","systemjs-plugin-traceur":"0.0.3","rollup-plugin-node-resolve":"^2.0.0","babel-plugin-syntax-dynamic-import":"^6.18.0","babel-plugin-transform-es2015-modules-systemjs":"^6.19.0"},"_npmOperationalInternal":{"tmp":"tmp/systemjs-0.20.16.tgz_1500798109842_0.9687006550375372","host":"s3://npm-registry-packages"}},"0.20.15":{"name":"systemjs","version":"0.20.15","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.20.15","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"ce2c8282f9caee536804b2778348a8723b191774","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.20.15.tgz","integrity":"sha512-3OPiRmVUujzapJqtKb8iC/nG6lkIWnF08tfub9LSjG2aihBJ7wY1gBfEKWq+wRPCp0ltBH/HScASGPv+D4kaDw==","signatures":[{"sig":"MEYCIQCEzGJl1KJaBFJwsqKwLpBNQjH3TseOTwJD4MB85DcXsgIhALpbdYn3O3s3nEJfYOupSScXCao9SSK66mrl4slQxTGp","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.src.js","files":["dist"],"gitHead":"ff1c353bf884ba9f31569123d00ca58ce9a550c3","scripts":{"min":"npm run min:dev && npm run min:production","test":"npm run test:production && npm run test:babel && npm run test:traceur && npm run test:typescript","build":"npm run build:dev && npm run build:production","irhydra":"node --trace-hydrogen --trace-phase=Z --trace-deopt --code-comments --hydrogen-track-positions --redirect-code-traces --redirect-code-traces-to=code.asm --print-opt-code --trace_hydrogen_file=hydrogen.cfg irhydra/load.js","min:dev":"cd dist && uglifyjs system.src.js -cm --source-map content=system.src.js.map --comments '/SystemJS v/' -o system.js","build:dev":"rollup -c","footprint":"npm run footprint:dev && npm run footprint:production","prepublish":"rm -r dist && npm run build && npm run min","test:babel":"mocha test/test-babel.js -u tdd --reporter dot","test:traceur":"mocha test/test-traceur.js -u tdd --reporter dot","footprint:dev":"uglifyjs dist/system.src.js -cm | gzip -9f | wc -c","min:production":"cd dist && uglifyjs system-production.src.js -cm --source-map content=system-production.src.js.map --comments '/SystemJS v/' -o system-production.js","test:production":"mocha test/test-production.js -u tdd --reporter dot","test:typescript":"mocha test/test-typescript.js -u tdd --reporter dot","build:production":"rollup -c --environment production","footprint:production":"uglifyjs dist/system-production.src.js -cm | gzip -9f | wc -c"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"5.0.3","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"8.1.3","devDependencies":{"mocha":"^3.1.2","rollup":"^0.41.1","traceur":"0.0.111","bluebird":"^3.4.6","uglify-js":"^3.0.11","babel-core":"^6.21.0","typescript":"^2.0.6","es-module-loader":"^2.2.6","plugin-typescript":"^5.2.7","rollup-plugin-replace":"^1.1.1","systemjs-plugin-babel":"0.0.17","systemjs-plugin-traceur":"0.0.3","rollup-plugin-node-resolve":"^2.0.0","babel-plugin-syntax-dynamic-import":"^6.18.0","babel-plugin-transform-es2015-modules-systemjs":"^6.19.0"},"_npmOperationalInternal":{"tmp":"tmp/systemjs-0.20.15.tgz_1499694158184_0.7014473483432084","host":"s3://npm-registry-packages"}},"0.19.18":{"name":"systemjs","version":"0.19.18","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.19.18","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"0549930df540d83ff7042ec6c6f818c429feb7f4","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.19.18.tgz","integrity":"sha512-MLkqJyIXHj0bq0njGjKjPWRT4+DAhKm6rguW/J3lWEMoqJgduI8Uk53FA/OSMRIFT87ug9ZCyrgAExBK2oDt4Q==","signatures":[{"sig":"MEUCIQDyxKFrOydGybSZYcREOo1fLYhHRGrg3byX3/DbyEwvKAIgbcuroCfDvrzosUTqV+0E0BfZDXPDzArRpnEtv2ls/64=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"0549930df540d83ff7042ec6c6f818c429feb7f4","gitHead":"7c2dd14b824eecea7d3252917fbc0918bc739a2c","scripts":{"test":"npm run test:babel && npm run test:traceur && npm run test:typescript","build":"make","test:babel":"qunit -c s:./index.js -t ./test/test-babel.js","test:browser":"make test","test:traceur":"qunit -c s:./index.js -t ./test/test-traceur.js","test:typescript":"qunit -c s:./index.js -t ./test/test-typescript.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"2.14.15","description":"Universal dynamic module loader","directories":{},"_nodeVersion":"5.1.1","dependencies":{"when":"^3.7.5","es6-module-loader":"^0.17.10"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.95","uglify-js":"~2.4.23","babel-core":"^5.8.22","typescript":"^1.6.2"}},"0.20.18":{"name":"systemjs","version":"0.20.18","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.20.18","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"2dfd55a970cf8a04fa53c998c00d8226a83b1db0","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.20.18.tgz","integrity":"sha512-i/v5cx79piwoKk+dUMgZ8LNMOc2ieILqCO7XPrulfDzG0dp9+9d3errwBkyb0rUshdmR97noKj9tixNm7itbdA==","signatures":[{"sig":"MEQCIH3ucNOT1n+kZ3x62iGqC7Up5ti3w5wbFLS+foOXIfQSAiA4oatj+N2nsiI7QCOmcyVmdka7MKbQEQhJRwRvUWiD3g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.src.js","files":["dist"],"gitHead":"b945c7bccc45eb1ed5645ebf3aa512fdb8014c0e","scripts":{"min":"npm run min:dev && npm run min:production","test":"npm run test:production && npm run test:babel && npm run test:traceur && npm run test:typescript","build":"npm run build:dev && npm run build:production","irhydra":"node --trace-hydrogen --trace-phase=Z --trace-deopt --code-comments --hydrogen-track-positions --redirect-code-traces --redirect-code-traces-to=code.asm --print-opt-code --trace_hydrogen_file=hydrogen.cfg irhydra/load.js","min:dev":"cd dist && uglifyjs system.src.js -cm --source-map content=system.src.js.map --comments \"/SystemJS v/\" -o system.js","build:dev":"rollup -c","footprint":"npm run footprint:dev && npm run footprint:production","prepublish":"rimraf dist && npm run build && npm run min","test:babel":"mocha test/test-babel.js -u tdd --reporter dot","test:traceur":"mocha test/test-traceur.js -u tdd --reporter dot","footprint:dev":"uglifyjs dist/system.src.js -cm | gzip -9f | wc -c","min:production":"cd dist && uglifyjs system-production.src.js -cm --source-map content=system-production.src.js.map --comments \"/SystemJS v/\" -o system-production.js","test:production":"mocha test/test-production.js -u tdd --reporter dot","test:typescript":"mocha test/test-typescript.js -u tdd --reporter dot","build:production":"rollup -c --environment production","footprint:production":"uglifyjs dist/system-production.src.js -cm | gzip -9f | wc -c"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"5.3.0","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"8.1.3","devDependencies":{"mocha":"^3.1.2","rimraf":"^2.6.1","rollup":"^0.41.1","traceur":"0.0.111","bluebird":"^3.4.6","uglify-js":"^3.0.11","babel-core":"^6.21.0","typescript":"^2.0.6","es-module-loader":"^2.2.7","plugin-typescript":"^5.2.7","rollup-plugin-replace":"^1.1.1","systemjs-plugin-babel":"0.0.17","systemjs-plugin-traceur":"0.0.3","rollup-plugin-node-resolve":"^2.0.0","babel-plugin-syntax-dynamic-import":"^6.18.0","babel-plugin-transform-es2015-modules-systemjs":"^6.19.0"},"_npmOperationalInternal":{"tmp":"tmp/systemjs-0.20.18.tgz_1503227186275_0.06670546438544989","host":"s3://npm-registry-packages"}},"6.10.3":{"name":"systemjs","version":"6.10.3","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@6.10.3","maintainers":[{"name":"joeldenning","email":"joeldenning@gmail.com"},{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"7e783fccb58232f1d9eb05c7e1a661268945cade","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-6.10.3.tgz","fileCount":34,"integrity":"sha512-mXwfLJdaADqWg1J5+Z0bGQEdcXSe+ePPTfzffMB29aVls5cXveRl0vneSV/19t3SfuUBsAraLP8W/g5u9cmYXA==","signatures":[{"sig":"MEQCIDFMy52a6VupMUnfjjPmBjZZMn9tvVYxBuVNnLFie5e8AiASrHps7HXa3Mj+0JJs5jYz7qs5yFhvrX92ovNLDZnc1g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":456436,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhG98lCRA9TVsSAnZWagAASiQP/RzDffFrKLvn2ahwYNkz\nIw4goNjMmOLLiQBamNgiWhlQzdVlg/Cr2NCEN4ytRlfKwAE3bA8ka7Rx7Xwc\nlFhUFfTAhwEiaLv7yOCaY3Ts0L+rBB8lhzNLqx7lk84NRlF6Yoa22OJxqnE+\n1iwhnQsZY8A9sWUj7OOfltdVLKx/PpCH+whuwd0pYUz3WXeSe40MrsCgPzkg\nu5VeEzT0cFK4PXT35pnKTKAah9Aarh0Ls6yhZTN6HwpdGJCY7XaEspLasnvZ\nU/XfNzCnZhY9ZXIJqdT5Mv5TAk4ffH7qX/En8iWGoKFWL+UtMt9Pj2LlBTy+\n/U7U07Rf6sGszUTfIVvh44v66KYDZvHEomZKldbNOnX6uQvJ/AyDpRDRqgKm\nrLU35P3AvZUp1pAij13fDi33/2WgBmCODDSGkD/6u6JNI4JfDxYV3fhy9R9f\n2uwyoIS1gd8rI+jOOYy3agVZPl7iUrMvmeEIuwX+Z1NHH/kOd1vIw+U5SIEb\nvIV1OfcQNs02xyV5+Q8+7ZRH+A/TRT05md53BJRD8IoQtb6HYLztClWY0YpI\nKTbTPiUcbBxnpEY18lmPR7VR1L6yexM8/oUfB12GCapXuu/D3oHzQALQ3YRL\nNj6eN2i8PWRvLVDB+IUXf3IpV9FdynydcaA9pvhwCWpfcy2VaONvKtIqq0IX\nB2If\r\n=Miv5\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/system-node.cjs","type":"script","exports":{".":{"node":"./dist/system-node.cjs","default":"./dist/system.min.js"},"./s.js":"./dist/s.min.js","./dist/*":"./dist/*","./package.json":"./package.json"},"gitHead":"98609dbeef01ec62447e4b21449ce47e55f818bd","scripts":{"test":"concurrently -n w: 'npm:test:*'","build":"rimraf dist && mkdirp dist && concurrently -n w: 'npm:build:*'","footprint":"concurrently -n w: 'npm:footprint:*'","test:node":"cross-env NODE_OPTIONS=--experimental-modules mocha --timeout 5000 -b test/system-node.js","build:node":"node --experimental-modules build-node.mjs","prepublish":"npm run build","test:browser":"node test/server.cjs","build:browser":"rollup -c","footprint:sjs":"cat dist/s.min.js | gzip -9f | wc -c","test:internals":"cross-env NODE_OPTIONS=\"--unhandled-rejections=none\" mocha -b test/import-map.js test/system-core.js test/url-resolution.js","build-browser-dev":"rollup -c --environment dev","footprint:systemjs":"cat dist/system.min.js | gzip -9f | wc -c","test-browser-watch":"cross-env WATCH_MODE=true node test/server.cjs"},"_npmUser":{"name":"joeldenning","email":"joeldenning@gmail.com"},"collective":{"url":"https://opencollective.com/systemjs","type":"opencollective"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"7.18.1","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"16.4.2","_hasShrinkwrap":false,"devDependencies":{"open":"^7.0.3","mocha":"^7.1.1","mkdirp":"^1.0.4","rimraf":"^3.0.2","rollup":"^2.33.3","terser":"^5.5.0","bluebird":"^3.7.2","@zeit/ncc":"^0.22.1","cross-env":"^7.0.2","node-fetch":"^2.6.0","symbol-es6":"^0.1.2","concurrently":"^5.1.0","whatwg-fetch":"^3.0.0","source-map-support":"^0.5.16","@rollup/plugin-json":"^4.0.2","rollup-plugin-terser":"^5.3.0","@rollup/plugin-replace":"^2.3.1","@jsenv/file-size-impact":"^5.2.0","@rollup/plugin-node-resolve":"^7.1.1","construct-style-sheets-polyfill":"^2.3.5"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_6.10.3_1629216549464_0.21321936613860903","host":"s3://npm-registry-packages"}},"0.19.17":{"name":"systemjs","version":"0.19.17","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.19.17","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"1b9127197b00500626374c7fea6f010d3b47943b","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.19.17.tgz","integrity":"sha512-913EsXX/f8MXftpslcO8B4elIlf5Bh8+iCtuKDcbxjxYylXOE0dprBhqcTGJNUr08fnEuDLzSXfR1oNGz3gDVg==","signatures":[{"sig":"MEUCIQCG5kR7kQccynzyX4G2a41asZyaw/sCovdlDBsz2UhfrgIgCER8EC4NTmNAW7OpEtHX6A5anAfhx6941aQJj2FJC0M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"1b9127197b00500626374c7fea6f010d3b47943b","gitHead":"6243d0c7700ca802699796cfae0f9e213072e077","scripts":{"test":"npm run test:babel && npm run test:traceur && npm run test:typescript","build":"make","test:babel":"qunit -c s:./index.js -t ./test/test-babel.js","test:browser":"make test","test:traceur":"qunit -c s:./index.js -t ./test/test-traceur.js","test:typescript":"qunit -c s:./index.js -t ./test/test-typescript.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"2.14.15","description":"Universal dynamic module loader","directories":{},"_nodeVersion":"5.1.1","dependencies":{"when":"^3.7.5","es6-module-loader":"^0.17.10"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.95","uglify-js":"~2.4.23","babel-core":"^5.8.22","typescript":"^1.6.2"}},"0.20.17":{"name":"systemjs","version":"0.20.17","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.20.17","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"b3143bb7e02d2f41b9a640351a06024b7b63ae59","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.20.17.tgz","integrity":"sha512-AK1DBQvn+TaHWPLjZxXE81Y9VCzhu9grs7z/wKYoYp8qV+voasqmjHxZRuK9ZnoJGtrLlLqMcCBjyqErRchWIA==","signatures":[{"sig":"MEQCID0JhN1WFLhTiIUtR8r0yeYDsekKwXsSfEZ4pvL4V8paAiBNUX6nDJAIQXWt2TNfYInGR7HRJq6Iln7Ge4DSvt17hQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.src.js","files":["dist"],"gitHead":"fa9e7b183be368161eabe89fa67eae1beba5feb9","scripts":{"min":"npm run min:dev && npm run min:production","test":"npm run test:production && npm run test:babel && npm run test:traceur && npm run test:typescript","build":"npm run build:dev && npm run build:production","irhydra":"node --trace-hydrogen --trace-phase=Z --trace-deopt --code-comments --hydrogen-track-positions --redirect-code-traces --redirect-code-traces-to=code.asm --print-opt-code --trace_hydrogen_file=hydrogen.cfg irhydra/load.js","min:dev":"cd dist && uglifyjs system.src.js -cm --source-map content=system.src.js.map --comments \"/SystemJS v/\" -o system.js","build:dev":"rollup -c","footprint":"npm run footprint:dev && npm run footprint:production","prepublish":"rimraf dist && npm run build && npm run min","test:babel":"mocha test/test-babel.js -u tdd --reporter dot","test:traceur":"mocha test/test-traceur.js -u tdd --reporter dot","footprint:dev":"uglifyjs dist/system.src.js -cm | gzip -9f | wc -c","min:production":"cd dist && uglifyjs system-production.src.js -cm --source-map content=system-production.src.js.map --comments \"/SystemJS v/\" -o system-production.js","test:production":"mocha test/test-production.js -u tdd --reporter dot","test:typescript":"mocha test/test-typescript.js -u tdd --reporter dot","build:production":"rollup -c --environment production","footprint:production":"uglifyjs dist/system-production.src.js -cm | gzip -9f | wc -c"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"5.0.3","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"8.1.3","devDependencies":{"mocha":"^3.1.2","rimraf":"^2.6.1","rollup":"^0.41.1","traceur":"0.0.111","bluebird":"^3.4.6","uglify-js":"^3.0.11","babel-core":"^6.21.0","typescript":"^2.0.6","es-module-loader":"^2.2.6","plugin-typescript":"^5.2.7","rollup-plugin-replace":"^1.1.1","systemjs-plugin-babel":"0.0.17","systemjs-plugin-traceur":"0.0.3","rollup-plugin-node-resolve":"^2.0.0","babel-plugin-syntax-dynamic-import":"^6.18.0","babel-plugin-transform-es2015-modules-systemjs":"^6.19.0"},"_npmOperationalInternal":{"tmp":"tmp/systemjs-0.20.17.tgz_1501063000053_0.5298671999480575","host":"s3://npm-registry-packages"}},"0.19.16":{"name":"systemjs","version":"0.19.16","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.19.16","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"fa8a08dc2436c1c39ca48ae39858413225f9e230","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.19.16.tgz","integrity":"sha512-vYHG2G9UmgeFkjF9b7ubW03ryUDSp13ATP+j2GzxdazY+eicIJnr7coudXgkod+2kxhH6+HFm3kWw/Pf0XOg0Q==","signatures":[{"sig":"MEQCIFTrq1ukxf38Sd51q4GmvRkgA8IhlVPTAzRtz22F20f5AiA0zlm3F0aDg0QSTDQ5JHrauHQ2F2OR39nk3Su01YNdew==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"fa8a08dc2436c1c39ca48ae39858413225f9e230","gitHead":"894036ec6b35a0d6fe8ee1d4ae3642d43e7c15c6","scripts":{"test":"npm run test:babel && npm run test:traceur && npm run test:typescript","build":"make","test:babel":"qunit -c s:./index.js -t ./test/test-babel.js","test:browser":"make test","test:traceur":"qunit -c s:./index.js -t ./test/test-traceur.js","test:typescript":"qunit -c s:./index.js -t ./test/test-typescript.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"2.14.15","description":"Universal dynamic module loader","directories":{},"_nodeVersion":"5.1.1","dependencies":{"when":"^3.7.5","es6-module-loader":"^0.17.10"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.95","uglify-js":"~2.4.23","babel-core":"^5.8.22","typescript":"^1.6.2"}},"0.19.15":{"name":"systemjs","version":"0.19.15","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.19.15","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"dd5a2b6c6ef5745525ac5aedd0975c4850a1fa95","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.19.15.tgz","integrity":"sha512-4QPZSdngl3Icy0obZCVOQMWJHCTSJ9OUjoK705Hxu607hs90YBPpDAumOL6g4MMvNRSOfP8K3Ozw5yHKcJlofw==","signatures":[{"sig":"MEUCIQCwHCDLDyW2/TftCVoAoYohlBEHXb0dcRaijsvWZaMLgQIgFnNZUo5SV8C6045ga0F74wtN2B7FyFWzebYi8B4p178=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"dd5a2b6c6ef5745525ac5aedd0975c4850a1fa95","gitHead":"f30d5a4970ff9388c83ea4ea95940d15179a490f","scripts":{"test":"npm run test:babel && npm run test:traceur && npm run test:typescript","build":"make","test:babel":"qunit -c s:./index.js -t ./test/test-babel.js","test:browser":"make test","test:traceur":"qunit -c s:./index.js -t ./test/test-traceur.js","test:typescript":"qunit -c s:./index.js -t ./test/test-typescript.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"2.14.15","description":"Universal dynamic module loader","directories":{},"_nodeVersion":"5.1.1","dependencies":{"when":"^3.7.5","es6-module-loader":"^0.17.10"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.95","uglify-js":"~2.4.23","babel-core":"^5.8.22","typescript":"^1.6.2"}},"0.20.19":{"name":"systemjs","version":"0.20.19","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.20.19","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"c2b9e79c19f4bea53a19b1ed3f974ffb463be949","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.20.19.tgz","integrity":"sha512-H/rKwNEEyej/+IhkmFNmKFyJul8tbH/muiPq5TyNoVTwsGhUjRsN3NlFnFQUvFXA3+GQmsXkCNXU6QKPl779aw==","signatures":[{"sig":"MEUCIQDPrJ4t4UNAgukrFwHs4Yt4Nwg0aO8veJDsJFhyJVDbTgIgByganjXgs2K+s2BU7ydD6xOcWojtKZ96V4wmrmY+uy4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.src.js","files":["dist"],"gitHead":"aa6d18cfac1c4c1fcd3abe23d3353853edbdadf8","scripts":{"min":"npm run min:dev && npm run min:production","test":"npm run test:production && npm run test:babel && npm run test:traceur && npm run test:typescript","build":"npm run build:dev && npm run build:production","irhydra":"node --trace-hydrogen --trace-phase=Z --trace-deopt --code-comments --hydrogen-track-positions --redirect-code-traces --redirect-code-traces-to=code.asm --print-opt-code --trace_hydrogen_file=hydrogen.cfg irhydra/load.js","min:dev":"cd dist && uglifyjs system.src.js -cm --source-map content=system.src.js.map --comments \"/SystemJS v/\" -o system.js","build:dev":"rollup -c","footprint":"npm run footprint:dev && npm run footprint:production","prepublish":"rimraf dist && npm run build && npm run min","test:babel":"mocha test/test-babel.js -u tdd --reporter dot","test:traceur":"mocha test/test-traceur.js -u tdd --reporter dot","footprint:dev":"uglifyjs dist/system.src.js -cm | gzip -9f | wc -c","min:production":"cd dist && uglifyjs system-production.src.js -cm --source-map content=system-production.src.js.map --comments \"/SystemJS v/\" -o system-production.js","test:production":"mocha test/test-production.js -u tdd --reporter dot","test:typescript":"mocha test/test-typescript.js -u tdd --reporter dot","build:production":"rollup -c --environment production","footprint:production":"uglifyjs dist/system-production.src.js -cm | gzip -9f | wc -c"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"5.3.0","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"8.5.0","devDependencies":{"mocha":"^3.1.2","rimraf":"^2.6.1","rollup":"^0.41.1","traceur":"0.0.111","bluebird":"^3.4.6","uglify-js":"^3.0.11","babel-core":"^6.21.0","typescript":"^2.0.6","es-module-loader":"^2.2.8","plugin-typescript":"^5.2.7","rollup-plugin-replace":"^1.1.1","systemjs-plugin-babel":"0.0.17","systemjs-plugin-traceur":"0.0.3","rollup-plugin-node-resolve":"^2.0.0","babel-plugin-syntax-dynamic-import":"^6.18.0","babel-plugin-transform-es2015-modules-systemjs":"^6.19.0"},"_npmOperationalInternal":{"tmp":"tmp/systemjs-0.20.19.tgz_1505739249989_0.2231408003717661","host":"s3://npm-registry-packages"}},"0.19.14":{"name":"systemjs","version":"0.19.14","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.19.14","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"472e13045a99130c191b019bca3d379f16f23bfa","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.19.14.tgz","integrity":"sha512-l3/QgighQDuAUlknl/eG7YQO/YXoIbJog2Lyv2kZU73jeboUYCaclwWh7rqEOrA7DFsXjCQAUkqDaa8zH8CN7w==","signatures":[{"sig":"MEUCIQCjscbHIlRIEiQQ77T8Ft/aZfEeFrQluTcv3tuPPwjDwQIgH1vfWOzr9XuxzcaNlS7+MQg2uIo6o5BawGehySojnMY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"472e13045a99130c191b019bca3d379f16f23bfa","gitHead":"131b19af5769a4c7ba5567cf82aaa3e41348679f","scripts":{"test":"npm run test:babel && npm run test:traceur && npm run test:typescript","build":"make","test:babel":"qunit -c s:./index.js -t ./test/test-babel.js","test:browser":"make test","test:traceur":"qunit -c s:./index.js -t ./test/test-traceur.js","test:typescript":"qunit -c s:./index.js -t ./test/test-typescript.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"2.14.15","description":"Universal dynamic module loader","directories":{},"_nodeVersion":"5.1.1","dependencies":{"when":"^3.7.5","es6-module-loader":"^0.17.10"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.95","uglify-js":"~2.4.23","babel-core":"^5.8.22","typescript":"^1.6.2"}},"0.19.13":{"name":"systemjs","version":"0.19.13","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.19.13","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"7fedc152f0a53bfedd7ace3600922b14f076720e","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.19.13.tgz","integrity":"sha512-FdrKqKlt+5ttp+1BPgTRmoXR/19RPm9MCjdx6aK+FaOPteRWFiQbO1q9F7ekT/xx3mwnE9+/aKocr0sDC9e1uA==","signatures":[{"sig":"MEUCIDFH64hK1h9iPEqkkn78p40C+CaPc+ZkUe5dhTALnKveAiEAu/n413y5GdnlMwgdJKv3ShX3BKlZU7pY57bgCWp9oK4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"7fedc152f0a53bfedd7ace3600922b14f076720e","gitHead":"396683317062813ee50b99e04c95f7f956b2978a","scripts":{"test":"npm run test:babel && npm run test:traceur && npm run test:typescript","build":"make","test:babel":"qunit -c s:./index.js -t ./test/test-babel.js","test:browser":"make test","test:traceur":"qunit -c s:./index.js -t ./test/test-traceur.js","test:typescript":"qunit -c s:./index.js -t ./test/test-typescript.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"2.14.15","description":"Universal dynamic module loader","directories":{},"_nodeVersion":"5.1.1","dependencies":{"when":"^3.7.5","es6-module-loader":"^0.17.10"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.95","uglify-js":"~2.4.23","babel-core":"^5.8.22","typescript":"^1.6.2"}},"6.10.0":{"name":"systemjs","version":"6.10.0","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@6.10.0","maintainers":[{"name":"joeldenning","email":"joeldenning@gmail.com"},{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"4392b040f054d1f7beead4f8cf2f7371469d66df","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-6.10.0.tgz","fileCount":35,"integrity":"sha512-DBkidP/UR/GfCjREpXAyeBWgIhxD2ybUs5HW2a7sng7ZTNSmW6LNX8A18D0OcyD2mNupBIVaDXG47zi81Ymp0Q==","signatures":[{"sig":"MEUCIQCaskSAAF9Q2HITomng3b1GaqFlQ6E7QZRTFp4oCqTVOQIgFjaVG0Tzyx+tO1OB39LrcP+0h6se6+kE1hwiYO3teU8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":470877,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgvmDbCRA9TVsSAnZWagAA7/cP/iAhoChDqO1oaH5kgnK5\nfspCf0/2p9PQyt8Jbf5eoKFY4jkjkJsdcvBV/F+TkX+gOPMGA9/WwqxbYOWg\naFJFLLUIKQcAWeAnOM8m8sH14QmHQQRnPmK/sLk4QzH89Nl8IXdT59TMO++J\nL5qcv1N8Iwb9i9aUEHoMjtQctxIeDlgV4geZWh4z3icUKpOzcJ3zW2xZIXsE\nbiIxfn/mcKMVJF7pxbANFL/LoqjbtAHuRMCclpQ5u4raTCBHPehl0hCV1ieU\n+SC27g+1S+oJYnyJmeXB1BbqPCoeGmuF6MKxiSPAOkWQelI+GhBoLyNorN58\nul+jgEbXlvi9b0lgKtlRJwenCKtEZnkgSe+jouZqRV1xGCgYce9hyosYGDAT\nNiytxRV5qy8gYfyR5+26Q5Ij1ltXZO3v98OUMUQv2+vRSNcmexhPkUDcIgcC\nZqaVOp/JzG+tFpEeoDIfdKLklrzxPKVq+ZmempHiqQBa/5kZ0zcKnTtdeeTk\nMRO+9h0Jc7MQ8plQ0efAXkSBiWASnV2jN+7oXIcPQRDi0YNVuYEjGCoDF/vM\nen8UHgJb0R+zbV5JeJs5ovzVv57m7LdSVRfd/GUvL5B7uHb1qMuT2N63DjIC\ntSfCEsoSu2YpQRL/U+dTY247V3HHaZbU1T8IONCKg+UgP+pQTrC7zJLZHyLL\n1IWf\r\n=10y9\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/system-node.cjs","type":"script","exports":{".":{"node":"./dist/system-node.cjs","default":"./dist/system.min.js"},"./s.js":"./dist/s.min.js","./dist/":"./dist/","./package.json":"./package.json"},"gitHead":"75853dddde25b13244059babc2657a60196c1b13","scripts":{"test":"concurrently -n w: 'npm:test:*'","build":"rimraf dist && mkdirp dist && concurrently -n w: 'npm:build:*'","footprint":"concurrently -n w: 'npm:footprint:*'","test:node":"cross-env NODE_OPTIONS=--experimental-modules mocha --timeout 5000 -b test/system-node.js","build:node":"node --experimental-modules build-node.mjs","prepublish":"npm run build","test:browser":"node test/server.cjs","build:browser":"rollup -c","footprint:sjs":"cat dist/s.min.js | gzip -9f | wc -c","test:internals":"cross-env NODE_OPTIONS=\"--unhandled-rejections=none\" mocha -b test/import-map.js test/system-core.js test/url-resolution.js","build-browser-dev":"rollup -c --environment dev","footprint:systemjs":"cat dist/system.min.js | gzip -9f | wc -c","test-browser-watch":"cross-env WATCH_MODE=true node test/server.cjs"},"_npmUser":{"name":"joeldenning","email":"joeldenning@gmail.com"},"collective":{"url":"https://opencollective.com/systemjs","type":"opencollective"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"6.14.13","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"14.17.0","_hasShrinkwrap":false,"devDependencies":{"open":"^7.0.3","mocha":"^7.1.1","mkdirp":"^1.0.4","rimraf":"^3.0.2","rollup":"^2.33.3","terser":"^5.5.0","bluebird":"^3.7.2","@zeit/ncc":"^0.22.1","cross-env":"^7.0.2","node-fetch":"^2.6.0","symbol-es6":"^0.1.2","concurrently":"^5.1.0","whatwg-fetch":"^3.0.0","source-map-support":"^0.5.16","@rollup/plugin-json":"^4.0.2","rollup-plugin-terser":"^5.3.0","@rollup/plugin-replace":"^2.3.1","@jsenv/file-size-impact":"^5.2.0","@rollup/plugin-node-resolve":"^7.1.1","construct-style-sheets-polyfill":"^2.3.5"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_6.10.0_1623089371366_0.9130152483644203","host":"s3://npm-registry-packages"}},"0.19.12":{"name":"systemjs","version":"0.19.12","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.19.12","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"c3c715ad3a873c41cb75d48b5ce92900a9342114","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.19.12.tgz","integrity":"sha512-dZN3pe+LwZpE1XKz2hzDeQdYnKSHK0LTnCHsmN1Fl1nnVb3KKg79U5jqxq5XX4IOJkVo7mDxmxuRy8nr6wA5Vw==","signatures":[{"sig":"MEUCIDhJ6DMRhG5CYdf3QBpVLHOVqT/mg4uYG1u1CR2aLszSAiEA1diby9jEsq0QLIYt5bB/R7nOp8YbG7zGPcBUZozjn80=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"c3c715ad3a873c41cb75d48b5ce92900a9342114","gitHead":"13501a2f55c767f9a1103afac447d24c75459c5c","scripts":{"test":"npm run test:babel && npm run test:traceur && npm run test:typescript","build":"make","test:babel":"qunit -c s:./index.js -t ./test/test-babel.js","test:browser":"make test","test:traceur":"qunit -c s:./index.js -t ./test/test-traceur.js","test:typescript":"qunit -c s:./index.js -t ./test/test-typescript.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"2.14.15","description":"Universal dynamic module loader","directories":{},"_nodeVersion":"5.1.1","dependencies":{"when":"^3.7.5","es6-module-loader":"^0.17.10"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.95","uglify-js":"~2.4.23","babel-core":"^5.8.22","typescript":"^1.6.2"}},"6.10.1":{"name":"systemjs","version":"6.10.1","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@6.10.1","maintainers":[{"name":"joeldenning","email":"joeldenning@gmail.com"},{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"4a42a9f4ee8dc740c29dc9af631da819ae736c69","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-6.10.1.tgz","fileCount":35,"integrity":"sha512-i2HiBOTIsm4GpjpiDHqTscZ/78htyTtdhpcbY2XPbIpsaNDIBA9vtxwIl8kSSnIRO0Zn7SHqvvILu3cMoXQuYw==","signatures":[{"sig":"MEQCICAL+KCjsOC5R4tV/HobZHb71MhbIg4DYOJlHtuWcriHAiA7SJaQ4tpWwZcQ4PrClLS5tI82PjiPR/xXySspCt28lQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":470684,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgx2E4CRA9TVsSAnZWagAAXSAQAJfNyVUf0wIUVOjCa82Y\n1qIyl5OukVChuHLxsQ4z2Eu+toCVc8xUCimt35VB36GPkQ5VbRxzp/xpc/XK\nDBI6wgOl8THM1jDk6Q3cSJqVKVK2Dfh71a+3F+DCyRZXfcpNL1v4T49hFS9R\np37kOm4b/JjkjfrSR6rCmvLdCl3XASRBfEMxTsAKRmCuhbwKfU3HwbAyG8+E\nshzPcrZUU5qH29RySP/9Ey4YP4ZjsCXr/fHl3pPKvpM3Fj0lpl7YFjnU0Px1\nTx929gGsguxcQQxfhWz8qOIhmRveP2GRfR4331Lr0+Ymp+m3tU5lKx0b2+xX\n4RgI+arTv2qS4H6ly5CLmIMU1oFucdZmyIYsfuZy2WK/Wvwh00LWpEfU3PJY\nd3tiirkYY8RACIazRABunX+DeoOA9i+EE0JQGmxRPjTsTwQV/ZlnSeWgFAII\ngc4oi+8MOnf//WP1rpNEaVz9ksHYgx/i8en5yxymqLpV4eaL94acg8JFSdrm\nLtu/7LlvCqsZJHFMk0Nlo8XIZQNxtqjAPpLsWtEHX8OvW+ae92ORNute//2X\n1bo6qBUkYb8BN4g/aCi1at9QQynsrfIqQfjMFtVk6I4jQ6MfhMtXY73anNzS\nqKtdcPvZUCYs711SDLybO0oFIOPQBmuZKeshQxB3acI8s4X9H0YHIOFh7haQ\nRGOE\r\n=dhTS\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/system-node.cjs","type":"script","exports":{".":{"node":"./dist/system-node.cjs","default":"./dist/system.min.js"},"./s.js":"./dist/s.min.js","./dist/":"./dist/","./package.json":"./package.json"},"gitHead":"3282137c15b51eab60ea165ca644bde62792a945","scripts":{"test":"concurrently -n w: 'npm:test:*'","build":"rimraf dist && mkdirp dist && concurrently -n w: 'npm:build:*'","footprint":"concurrently -n w: 'npm:footprint:*'","test:node":"cross-env NODE_OPTIONS=--experimental-modules mocha --timeout 5000 -b test/system-node.js","build:node":"node --experimental-modules build-node.mjs","prepublish":"npm run build","test:browser":"node test/server.cjs","build:browser":"rollup -c","footprint:sjs":"cat dist/s.min.js | gzip -9f | wc -c","test:internals":"cross-env NODE_OPTIONS=\"--unhandled-rejections=none\" mocha -b test/import-map.js test/system-core.js test/url-resolution.js","build-browser-dev":"rollup -c --environment dev","footprint:systemjs":"cat dist/system.min.js | gzip -9f | wc -c","test-browser-watch":"cross-env WATCH_MODE=true node test/server.cjs"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"collective":{"url":"https://opencollective.com/systemjs","type":"opencollective"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"7.11.2","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"16.1.0","_hasShrinkwrap":false,"devDependencies":{"open":"^7.0.3","mocha":"^7.1.1","mkdirp":"^1.0.4","rimraf":"^3.0.2","rollup":"^2.33.3","terser":"^5.5.0","bluebird":"^3.7.2","@zeit/ncc":"^0.22.1","cross-env":"^7.0.2","node-fetch":"^2.6.0","symbol-es6":"^0.1.2","concurrently":"^5.1.0","whatwg-fetch":"^3.0.0","source-map-support":"^0.5.16","@rollup/plugin-json":"^4.0.2","rollup-plugin-terser":"^5.3.0","@rollup/plugin-replace":"^2.3.1","@jsenv/file-size-impact":"^5.2.0","@rollup/plugin-node-resolve":"^7.1.1","construct-style-sheets-polyfill":"^2.3.5"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_6.10.1_1623679288227_0.8327746150662616","host":"s3://npm-registry-packages"}},"0.19.11":{"name":"systemjs","version":"0.19.11","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.19.11","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"93747ea8f7caddea8e478bd5faccdbe2a2f59dc4","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.19.11.tgz","integrity":"sha512-xYUL4VHbKmoc/ZeYW1gY8x/8dqTaQhxVy066g7RDd42I6uhec8Pj+EP6dtfIuYIV1Y/nEg7/hY6/ts5uwQSVNg==","signatures":[{"sig":"MEYCIQC+tofl/SbYd+D2UCWRwytAgnR5tDcVDWIJw7Odcsg5aAIhAIEzRMsC6st5YkAfSc2oDGYXAq3Vv/MpjhcPDbDVpFAm","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"93747ea8f7caddea8e478bd5faccdbe2a2f59dc4","gitHead":"d32a45dad2957bd89ce64d897b694db202732dee","scripts":{"test":"npm run test:babel && npm run test:traceur && npm run test:typescript","build":"make","test:babel":"qunit -c s:./index.js -t ./test/test-babel.js","test:browser":"make test","test:traceur":"qunit -c s:./index.js -t ./test/test-traceur.js","test:typescript":"qunit -c s:./index.js -t ./test/test-typescript.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"2.14.15","description":"Universal dynamic module loader","directories":{},"_nodeVersion":"5.1.1","dependencies":{"when":"^3.7.5","es6-module-loader":"^0.17.10"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.95","uglify-js":"~2.4.23","babel-core":"^5.8.22","typescript":"^1.6.2"}},"6.10.2":{"name":"systemjs","version":"6.10.2","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@6.10.2","maintainers":[{"name":"joeldenning","email":"joeldenning@gmail.com"},{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"c9870217bddf9cfd25d12d4fcd1989541ef1207c","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-6.10.2.tgz","fileCount":34,"integrity":"sha512-PwaC0Z6Y1E6gFekY2u38EC5+5w2M65jYVrD1aAcOptpHVhCwPIwPFJvYJyryQKUyeuQ5bKKI3PBHWNjdE9aizg==","signatures":[{"sig":"MEYCIQDoIfylgv18DKFTHhUpKKCaAl+4OihVQ5+HzwUpcHO7LwIhAMvDwb/P8lI505QWDaf/XcK9P9mltItYC5R2yckYzXK4","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":455538,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg4QPyCRA9TVsSAnZWagAAznwP/iV4kU7FG80W127FsMcd\ny+VLrb6oczf4PTJyI/B1jVb63BX9m1fuitwe6ImD6UwN4VtZ4UupR3O5zAOK\noVspSbtoxS72LsrDWUqc+oz3+1JvdhIOdiGmh6TOPfB1XGgbs0f+1XuMMHOj\n97jzIlRskALsBLFtBXobI6bApxrhd2c2Erm+JSM057iJDo5yXr/VzgpJXxqO\n+txaLBcYsUO6nG9nfVoiwROOC0Z/zpWLlwykAJCD/Ii2pQobu7gBhmJR6KFm\nMBsuiExN+vmhQxWhRp3I8C5HiajzouhIrqJkCSFKzC899hVW5Co0kxnLGKW3\nkE8Vk4JVdndK09lHXx8mpPz5moDmHuhAXZOc4VEpjtzdbDxQsILINbwggrWf\n+xnT+PN9s5lt9nnmEO9Uvdltsi0/NqC5eNwGXSB07KpfoCDUYn1NkxbWcCxa\nCBzeMQtVBtQN+3+PxmSRS5oqsWwVyxjyiuO/MxC2rL1l7a/OnP0LhYqWKZfj\npbhcK59u5lwzagoHRjH+QKsAe5LgSzOiDNIBgRXKLVWx9FjcbcqFQdax6ETD\nRZgxQkS5iVaqi0hxpWynF2duQFAdiJoBHLPSTs2t3bO5pi1ArOkI2GGUT9iY\nrIrV6b6fSHQKB+0MJG4uUz8HMFLGJA606tzdQnt9Mi8mGhZAAMIv+/jNo2ZX\nIm6F\r\n=v/zS\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/system-node.cjs","type":"script","exports":{".":{"node":"./dist/system-node.cjs","default":"./dist/system.min.js"},"./s.js":"./dist/s.min.js","./dist/*":"./dist/*","./package.json":"./package.json"},"gitHead":"47c3afb0c748b263ee4c28e9eea547e3313a40e1","scripts":{"test":"concurrently -n w: 'npm:test:*'","build":"rimraf dist && mkdirp dist && concurrently -n w: 'npm:build:*'","footprint":"concurrently -n w: 'npm:footprint:*'","test:node":"cross-env NODE_OPTIONS=--experimental-modules mocha --timeout 5000 -b test/system-node.js","build:node":"node --experimental-modules build-node.mjs","prepublish":"npm run build","test:browser":"node test/server.cjs","build:browser":"rollup -c","footprint:sjs":"cat dist/s.min.js | gzip -9f | wc -c","test:internals":"cross-env NODE_OPTIONS=\"--unhandled-rejections=none\" mocha -b test/import-map.js test/system-core.js test/url-resolution.js","build-browser-dev":"rollup -c --environment dev","footprint:systemjs":"cat dist/system.min.js | gzip -9f | wc -c","test-browser-watch":"cross-env WATCH_MODE=true node test/server.cjs"},"_npmUser":{"name":"joeldenning","email":"joeldenning@gmail.com"},"collective":{"url":"https://opencollective.com/systemjs","type":"opencollective"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"7.15.1","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"16.3.0","_hasShrinkwrap":false,"devDependencies":{"open":"^7.0.3","mocha":"^7.1.1","mkdirp":"^1.0.4","rimraf":"^3.0.2","rollup":"^2.33.3","terser":"^5.5.0","bluebird":"^3.7.2","@zeit/ncc":"^0.22.1","cross-env":"^7.0.2","node-fetch":"^2.6.0","symbol-es6":"^0.1.2","concurrently":"^5.1.0","whatwg-fetch":"^3.0.0","source-map-support":"^0.5.16","@rollup/plugin-json":"^4.0.2","rollup-plugin-terser":"^5.3.0","@rollup/plugin-replace":"^2.3.1","@jsenv/file-size-impact":"^5.2.0","@rollup/plugin-node-resolve":"^7.1.1","construct-style-sheets-polyfill":"^2.3.5"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_6.10.2_1625359346085_0.18701805748207545","host":"s3://npm-registry-packages"}},"0.12.1":{"name":"systemjs","version":"0.12.1","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.12.1","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"7c47b6acaf07590fbc8275ff3ba83c07b47219d0","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.12.1.tgz","integrity":"sha512-rYKjBsVBJXy9Oj8eJW6ueAif+YUT4rw5uIb4nvroVfbPQbkycboklk9hDERN0YoCkUS5glZvaAnSJphCY2i4+g==","signatures":[{"sig":"MEUCIDUw3c0hRtfG2GmleqZnhUO+9pupq5rwdaFISbzKaEEUAiEAsCxRChQi+402bsEjpVCP2wvxBIHsdFXAjudGhf8Vbq4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.src.js","_from":".","_shasum":"7c47b6acaf07590fbc8275ff3ba83c07b47219d0","gitHead":"249f214874870616c2d46871146d2af7fd2e051a","scripts":{"test":"npm run test:6to5 && npm run test:traceur","test:6to5":"qunit -c s:./dist/system.js -t ./test/test-6to5.js","test:traceur":"qunit -c s:./dist/system.js -t ./test/test.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs","type":"git"},"_npmVersion":"1.4.28","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"dependencies":{"es6-module-loader":"~0.12.0"},"devDependencies":{"6to5":"^3.0.0","qunit":"^0.6.2","uglify-js":"~2.4.13"}},"0.12.0":{"name":"systemjs","version":"0.12.0","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.12.0","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"f37cb31453fb7274a56bea46df4ba48fc761dfcc","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.12.0.tgz","integrity":"sha512-EFw2vilNC10iINphKkqLWJOx42QIVE0TX5zbbfw7H8ZrQGOUaRQ5A9nuPKRjIQxcCmZmXKdgnaLW01Si7hHCkA==","signatures":[{"sig":"MEYCIQCqSG7LsKdiVtjUsT+rmUh+iXuqU8NoUa0n6NZ6KlBFiQIhAOIrzAtUehU6l2htVHw1Pq85olMs6rO8bQQI1N2qsras","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.src.js","_from":".","_shasum":"f37cb31453fb7274a56bea46df4ba48fc761dfcc","gitHead":"019faba06ae3195c893ee19b9c5878ad8188409e","scripts":{"test":"npm run test:6to5 && npm run test:traceur","test:6to5":"qunit -c s:./dist/system.js -t ./test/test-6to5.js","test:traceur":"qunit -c s:./dist/system.js -t ./test/test.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs","type":"git"},"_npmVersion":"1.4.28","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"dependencies":{"es6-module-loader":"~0.12.0"},"devDependencies":{"6to5":"^3.0.0","qunit":"^0.6.2","uglify-js":"~2.4.13"}},"6.4.0":{"name":"systemjs","version":"6.4.0","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@6.4.0","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"927957c0f6991f525695fec57a6a8a63e63081cf","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-6.4.0.tgz","fileCount":36,"integrity":"sha512-s/nvcAXduGmThUXkNKBNh00dmOFwZIXv46qjj5gwLwN0RpHbPdmp65OE+A0QaNs4fO7tjn74Aw9S7ei88toFjA==","signatures":[{"sig":"MEUCIQDFDKoz8Y7uCuWwG53mE0gN/RdHVerNyBsBlhg26h85jwIgN9Urkc+kxK1Bnm3aEGFOWr4LC/CAd53QQbrkCLuslJ0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":448233,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfGfshCRA9TVsSAnZWagAA1O0QAIt8Guy+Q60922LT15ts\nKcTB0VvcjsbH9MF8XpepfiMCMgx9zrAszl6Qe/NWlxKadaqDwW6QiwA1zD6m\nhD+32vixvRDjb368JF/5ElZPnL4/NHyYnOjOC61NDgMUCjfZy11ArIhA2RTE\nrmpiV8xrKbRlqozMExoo4kgyifJHJjX9XV+N9MxoEIY9zMM2OXcnGer8M5JQ\n3wAiaBqjyQPDTijyTiMpHAQrdXM8UtJHsQz236S9PFu6geVL4yQhlqlTv7HY\nb1mx//SQIVh1Utn3W3EvBhjdG5H3bUM6jyvX1h8D6mCuUSq0V5oJ4asGubKX\nyUX10ZiM9ea534U9lRQcbjjIoBfjGH+enjSQYnYIDzzarPRwPicxaju9VhRQ\ng4bLoXE52Jur9bJqI+gYlLyYNnXAQ2goxPdagkWhIfu4wmLBWj62NrAVnHh1\nlzbpeLaDRmhtFzsIXeA3T0P8j9fI5/dejI87t4h9jPjbktOit721XNNNfAfm\nOKay8qjKBJjQCLRKpi7HF4F7XJ9sEtGpo3vRDZ2M7P5Py3mpbRgO0sZ9y6ij\nMQRgg1jSgPQzGAnNQdncG0Cn/Gvie6OlrQtiTCDAeVKxY6D9eQbdoi3uFTFp\nAlXAZQndTFNNsVORWRctNbu1X+C7XxoDo2VNoJTWTmPcpyU85hr6oKaF23VI\nArCB\r\n=HLY0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/system-node.cjs","type":"module","exports":{".":{"node":"./dist/system-node.cjs","default":"./dist/system.min.js"},"./dist/":"./dist/"},"gitHead":"685e77fce1d6de696849ed6c51072e0435d6e221","scripts":{"test":"concurrently -n w: 'npm:test:*'","build":"rimraf dist && mkdirp dist && concurrently -n w: 'npm:build:*'","footprint":"concurrently -n w: 'npm:footprint:*'","test:node":"cross-env NODE_OPTIONS=--experimental-modules mocha --timeout 5000 -b test/system-node.js","build:node":"node --experimental-modules build-node.js","prepublish":"npm run build","test:browser":"node test/server.cjs","build:browser":"rollup -c","footprint:sjs":"cat dist/s.min.js | gzip -9f | wc -c","test:internals":"cross-env NODE_OPTIONS=--experimental-modules mocha -b test/import-map.js test/system-core.js test/url-resolution.js","build-browser-dev":"rollup -c --environment dev","footprint:systemjs":"cat dist/system.min.js | gzip -9f | wc -c","test-browser-watch":"cross-env WATCH_MODE=true node test/server.cjs"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"collective":{"url":"https://opencollective.com/systemjs","type":"opencollective"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"6.14.5","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"12.18.2","_hasShrinkwrap":false,"devDependencies":{"open":"^7.0.3","mocha":"^7.1.1","mkdirp":"^1.0.4","rimraf":"^3.0.2","rollup":"^2.2.0","terser":"^4.6.7","bluebird":"^3.7.2","@zeit/ncc":"^0.22.1","cross-env":"^7.0.2","node-fetch":"^2.6.0","symbol-es6":"^0.1.2","concurrently":"^5.1.0","whatwg-fetch":"^3.0.0","source-map-support":"^0.5.16","@rollup/plugin-json":"^4.0.2","rollup-plugin-terser":"^5.3.0","@rollup/plugin-replace":"^2.3.1","@rollup/plugin-node-resolve":"^7.1.1","construct-style-sheets-polyfill":"^2.3.5","@jsenv/github-pull-request-filesize-impact":"^3.0.2"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_6.4.0_1595538208629_0.9225903884885329","host":"s3://npm-registry-packages"}},"6.4.1":{"name":"systemjs","version":"6.4.1","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@6.4.1","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"9a934cf92d6b6aa84390a84f315dede85f2e06cb","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-6.4.1.tgz","fileCount":35,"integrity":"sha512-xnRrngh0/KGCm8J3zmhaPxBEvDB9eLAguWPo84heVwr15JM+wS11CKxSWmv0CV16VuKlRZcDscGuXgqLBRg/qw==","signatures":[{"sig":"MEUCIGqUoOF9j2yHzhxVwvrgs7TS6EiijWdpi/3+t08d6NYSAiEAhDhbNY7P5eXFUjX47ICgin0AIbSyyBcyerTJvA3brTg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":449220,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfJEZYCRA9TVsSAnZWagAAQOUP/1Lg6YfLnRJ5IbRMiUfJ\niR5qveI+XkCdpBhVKrpAc2pc8LRzJzoGa6VQgsPE79f0FxDZ33IQeL1W1Gp8\nIFRM4sS4q3kDUPqWJwz3KX9OsrA3+nWqgasLJlrrLuo0kBNA8y1l6agcwsi+\nSRDyLMSC2gOSnjP41UYokJ+1Qp0mrwSktInBjyXUUWDM1jteFAxaye90Xb9Q\n0gbuJ8OiOll3TW13kxspAjs4PCrWW+uggg3JXp/LIyFPAAz5zhlI/zPZOUPQ\nJBBDHEOkCsnJzQmazyk0UML+YMzRc3ORbyHFA32Ebk7zt+Pa7zk1wrq7I01e\nvNPQ2b0QT8s/OWdM743uP6zG7lj6ERPPwWZG+br42+g3FCrly27WnARzpwFt\nwh+ohYw8kQ2xgIA5QOLZQLeJfGiJceGAIY0ZQFrvXao9wOFt/lrFh4nBqLHV\ne8poSXr6nq5LvoQTH6JoqA/zNogrpS1GMtvmQe9Wh4tLfd/JS5VUJJL4QiqH\nZkiD+6LwPvcKyK9ikYcf2fC1gh5n/AmBf0McLtF0+e8n8ixBpxJv9iScdiYK\nQmT1p2LQeoS/sURSm1mOEXxtOBTAJ45MS3vgQb/oqgniuKcFAmTclWWyn8Tn\n6eobAEPCbkDyTVDwf65gyMryU3Ti9mYRA1dSv2N+N/NoeTt6GBc4l5Aa+YRX\nPAsM\r\n=aN+7\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/system-node.cjs","type":"module","exports":{".":{"node":"./dist/system-node.cjs","default":"./dist/system.min.js"},"./dist/":"./dist/"},"gitHead":"bfc3a46d62b602895f3b750a38e087e5f5814cf2","scripts":{"test":"concurrently -n w: 'npm:test:*'","build":"rimraf dist && mkdirp dist && concurrently -n w: 'npm:build:*'","footprint":"concurrently -n w: 'npm:footprint:*'","test:node":"cross-env NODE_OPTIONS=--experimental-modules mocha --timeout 5000 -b test/system-node.js","build:node":"node --experimental-modules build-node.js","prepublish":"npm run build","test:browser":"node test/server.cjs","build:browser":"rollup -c","footprint:sjs":"cat dist/s.min.js | gzip -9f | wc -c","test:internals":"cross-env NODE_OPTIONS=--experimental-modules mocha -b test/import-map.js test/system-core.js test/url-resolution.js","build-browser-dev":"rollup -c --environment dev","footprint:systemjs":"cat dist/system.min.js | gzip -9f | wc -c","test-browser-watch":"cross-env WATCH_MODE=true node test/server.cjs"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"collective":{"url":"https://opencollective.com/systemjs","type":"opencollective"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"6.14.6","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"14.6.0","_hasShrinkwrap":false,"devDependencies":{"open":"^7.0.3","mocha":"^7.1.1","mkdirp":"^1.0.4","rimraf":"^3.0.2","rollup":"^2.2.0","terser":"^4.6.7","bluebird":"^3.7.2","@zeit/ncc":"^0.22.1","cross-env":"^7.0.2","node-fetch":"^2.6.0","symbol-es6":"^0.1.2","concurrently":"^5.1.0","whatwg-fetch":"^3.0.0","source-map-support":"^0.5.16","@rollup/plugin-json":"^4.0.2","rollup-plugin-terser":"^5.3.0","@rollup/plugin-replace":"^2.3.1","@rollup/plugin-node-resolve":"^7.1.1","construct-style-sheets-polyfill":"^2.3.5","@jsenv/github-pull-request-filesize-impact":"^3.0.2"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_6.4.1_1596212823368_0.006876571191152703","host":"s3://npm-registry-packages"}},"0.9.1":{"name":"systemjs","version":"0.9.1","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.9.1","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"09a8ebbe7bade1409739ee17c3ea862768d23b29","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.9.1.tgz","integrity":"sha512-R0ZNguiYBRepdiLnvFzf3ziSo0+wzfxEnZXbnwZ30NNQV7uhZzqOdeht5CACRzlo9LhagWbPGyK8EG+WfPb+jQ==","signatures":[{"sig":"MEUCIBvntUpd4RTQpDO7sXZQ0b55xpkvhK/hV+LzGGutDOQkAiEA+7hRaP3u+L8mQx6J2KANN868sbaocmA4zpkJE3OQJgI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.src.js","_from":".","_shasum":"09a8ebbe7bade1409739ee17c3ea862768d23b29","gitHead":"45c07be3585c6c0de0b030e381db2e3d0d95ab5d","scripts":{"test":"qunit -c s:./dist/system.js -t ./test/test.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs","type":"git"},"_npmVersion":"1.4.23","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"dependencies":{"es6-module-loader":"~0.9.2"},"devDependencies":{"qunit":"^0.6.2","uglify-js":"~2.4.13"}},"0.9.2":{"name":"systemjs","version":"0.9.2","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.9.2","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"1db88a507e5f7e92d190bbd05417b1d73f9e8a4c","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.9.2.tgz","integrity":"sha512-ZV6iPmFU39cwYpuvX8dcjeLngYsqdomOERJqkpUPDZASKoXQeLWvuxkPAVLg1vFnkCoc21nN/UGOwzSdLAuOXw==","signatures":[{"sig":"MEYCIQDI7lqNj+ihmRJPnQIww2DgDFVso2Eo6PoL1Qt2+a274AIhANGPNNYraUmkDVcZuE/4v83MJqNGtDh2NvRUTODcmj2y","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.src.js","_from":".","scripts":{"test":"qunit -c s:./dist/system.js -t ./test/test.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs","type":"git"},"_npmVersion":"1.4.3","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"dependencies":{"es6-module-loader":"~0.9.4"},"devDependencies":{"qunit":"^0.6.2","uglify-js":"~2.4.13"}},"0.9.0":{"name":"systemjs","version":"0.9.0","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.9.0","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"0f7565500aec61b21b99533e3d37a4c802d92edf","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.9.0.tgz","integrity":"sha512-xrV3hNyfSdZCTkbn4GbtDBlJ4p17lKeXJqt+seZuh4i9h0o1y/zsj6arD9rWf28eMdyHEG7DGKJ48CSi21bNag==","signatures":[{"sig":"MEYCIQCpsjrovmmY1pVu5702n1gkzJTLYa6BmEmu7sajnU+X5AIhAKNQxzkUAls7RnMbc+u8gxM9J0se3t8d4u4dOMGks9+0","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.js","_from":".","_shasum":"0f7565500aec61b21b99533e3d37a4c802d92edf","gitHead":"bc8a1dabf63a08a485974a2d615d9a8191d20503","scripts":{"test":"qunit -c s:./dist/system.js -t ./test/test.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs","type":"git"},"_npmVersion":"1.4.23","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"dependencies":{"es6-module-loader":"~0.9.1"},"devDependencies":{"qunit":"^0.6.2","uglify-js":"~2.4.13"}},"6.4.2":{"name":"systemjs","version":"6.4.2","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@6.4.2","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"66be17f9c54efb8680689d8d314fb10dbce2806c","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-6.4.2.tgz","fileCount":35,"integrity":"sha512-T7bnqkRkjuALORk8TcZDAjfdyxSHOrDlnqM1i0iMJjNdudNCNsEIYoK1+kwXikv3cUvrD7VniozJRc0iqY0umQ==","signatures":[{"sig":"MEQCIEdPeV1U3Sq5qt1TVZOo4AWvXYmNNpQmqwq9oStr65oAAiAGiYh5wuSjGhmoRWWypdnZdWWjPtovwt6RowB3D4hfxA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":447492,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfKvMACRA9TVsSAnZWagAA8YYP/3VuZjTM3danuiMA/aT2\nI1PDzKLZz+V407VDuvAeYcxC/hMvh4KTu1ff4fDtQ1HjbB21uY8RKPJNi8Wv\nKRdCmFS0Zwsnd1F2g/xsDEVuV3qDPz6AoXXjy0FNEQHDQv6F6pmCZrs9V+I2\n8TaoeyqgwNhipQN3cYXAZs5TlTTThDIsEIScTYHap76kUdn1gCgNDe8saR2R\nEfxUi39Bpj4abZXHTzGLUe7qSAclYGVU5fivxiIDHvpo1NwWKUsSCh31C3JT\nHXBoKHMpEg5opncfov3agRi0zSYTTZbQJT8RugVYasAZt5q2xQlXDc7h4Y/i\nyWk8zp+QdEw2Nsj6GJCXyaBzyKmjPlYRLwkK1EhoMFPiqd+nbSzf8R/tBHZb\nwOXSGeQhRFwrj/vlvaOhYjrG/aj/9RtRlzFwo1cJkssAX7+4YqHTLnIlbOGx\nduMxdYcIJsAg1OLbyIfkVXL+JJR34Vet2M8BVfeOFeddYkePUyJKXIALIVrV\nFIg9eVcc/N6muAa//HXjJgIU/UvoaFvLSmk/KFC18JPLRmdxxtX8dNAYIeNE\nzTRn5lNg48W+xCSvdxnfBSs5zzEVQj318inyA8QF+uFZcRKs5a4Uv4ASP2cI\nR08yVDnIBKqwEUUUNvwrw4wrgXpMAeVjYK4AjboiZfYXKuVteMm0Xy50OLOV\nWisr\r\n=taX8\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/system-node.cjs","type":"module","exports":{".":{"node":"./dist/system-node.cjs","default":"./dist/system.min.js"},"./dist/":"./dist/"},"gitHead":"48901ea7c905fca0c6a71c24af63012aba04ac84","scripts":{"test":"concurrently -n w: 'npm:test:*'","build":"rimraf dist && mkdirp dist && concurrently -n w: 'npm:build:*'","footprint":"concurrently -n w: 'npm:footprint:*'","test:node":"cross-env NODE_OPTIONS=--experimental-modules mocha --timeout 5000 -b test/system-node.js","build:node":"node --experimental-modules build-node.js","prepublish":"npm run build","test:browser":"node test/server.cjs","build:browser":"rollup -c","footprint:sjs":"cat dist/s.min.js | gzip -9f | wc -c","test:internals":"cross-env NODE_OPTIONS=--experimental-modules mocha -b test/import-map.js test/system-core.js test/url-resolution.js","build-browser-dev":"rollup -c --environment dev","footprint:systemjs":"cat dist/system.min.js | gzip -9f | wc -c","test-browser-watch":"cross-env WATCH_MODE=true node test/server.cjs"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"collective":{"url":"https://opencollective.com/systemjs","type":"opencollective"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"6.14.6","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"14.6.0","_hasShrinkwrap":false,"devDependencies":{"open":"^7.0.3","mocha":"^7.1.1","mkdirp":"^1.0.4","rimraf":"^3.0.2","rollup":"^2.2.0","terser":"^4.6.7","bluebird":"^3.7.2","@zeit/ncc":"^0.22.1","cross-env":"^7.0.2","node-fetch":"^2.6.0","symbol-es6":"^0.1.2","concurrently":"^5.1.0","whatwg-fetch":"^3.0.0","source-map-support":"^0.5.16","@rollup/plugin-json":"^4.0.2","rollup-plugin-terser":"^5.3.0","@rollup/plugin-replace":"^2.3.1","@rollup/plugin-node-resolve":"^7.1.1","construct-style-sheets-polyfill":"^2.3.5","@jsenv/github-pull-request-filesize-impact":"^3.0.2"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_6.4.2_1596650239880_0.7557168199644613","host":"s3://npm-registry-packages"}},"6.4.3":{"name":"systemjs","version":"6.4.3","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@6.4.3","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"e5c2fe72b1a030039bcffab2cfdbed01f340169f","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-6.4.3.tgz","fileCount":35,"integrity":"sha512-eVSgK0Wlv0grceIoKRVoY04HXvnv0o/mf7BREJMomjEjBH8dyf/YvIgdF0KH9kk5Py9B6GVECRido94L2idlrA==","signatures":[{"sig":"MEUCIQCG1akbp8DPa3OGjDZ/Z77ECFo/ptWWB/PayfLjYdaAeAIgTyZub1Ixwjqf36aGyfc6vDsSgWs7wqGWO+17li1Va80=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":447711,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfLAyCCRA9TVsSAnZWagAAD7IP+wXFzK7XhhS4cpi4nyYe\nmhsrdnr+JGP6A2n5o/Lh2TdGMRd5LF7ld+j6pHSVIflBqKh5OQ9xtUbz1oCC\nk5Wj0uZCunGKeDy4XoyLdWGuSeU+k+llWwm19Hn8fxTDnyWoUEvQjbDMwIFe\nRQzF5SvG6JeXUqD2Lb+A0y+idskiDkoN9hSwnkuyMS1REkIXTKLgEG3Hk5SE\nTrhPFvRB01wI4BP2hWeDsBiG42+BRVheFMaxlrKXX2Ykj8ACTUIpNfZ0I7/F\ne9r4XPn5guO0avKfXI/OocioGgMvIRcGS25KUa2fRb82eq1T5xQTWCmmxBbu\nKMCzFHw7nULIUWUnzAZ6/A/D6uXDTRp9D6n9owshkqiyo7gbW0DKGHAoIMYH\nqOWlYbeyJ8xSorAC1GVV99gFWFtjB47NOlV67ubA7yggL1UwU+D5eY9JAUf1\nb9hQkjnZt7JjIysjDoK30dhRN6O69veWiL4Igp9/BDIIQJsyz5hbs6yw8UKR\nVcaxYUSqQyHPKlOJzFPXlZ0L4KuRXufkK8Op63APci6fHW/sm3gvizWPaXPS\nj5Td2bu+aky/ub4YDOVFMJYOEywdHOjOXzdapj40DkIgfqk1VgUyjlAIo1ax\ni/ySb7ZvAztiX2ZfzIU/iyQ62ZasZr1xJUJVa3kRtjSCWD42JZ1/pC4f4Krx\nEhUA\r\n=0id5\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/system-node.cjs","type":"module","exports":{".":{"node":"./dist/system-node.cjs","default":"./dist/system.min.js"},"./s.js":"./dist/s.min.js","./dist/":"./dist/"},"gitHead":"54db2787f218a6eae32e2fe4aff932c2d7d81d10","scripts":{"test":"concurrently -n w: 'npm:test:*'","build":"rimraf dist && mkdirp dist && concurrently -n w: 'npm:build:*'","footprint":"concurrently -n w: 'npm:footprint:*'","test:node":"cross-env NODE_OPTIONS=--experimental-modules mocha --timeout 5000 -b test/system-node.js","build:node":"node --experimental-modules build-node.js","prepublish":"npm run build","test:browser":"node test/server.cjs","build:browser":"rollup -c","footprint:sjs":"cat dist/s.min.js | gzip -9f | wc -c","test:internals":"cross-env NODE_OPTIONS=--experimental-modules mocha -b test/import-map.js test/system-core.js test/url-resolution.js","build-browser-dev":"rollup -c --environment dev","footprint:systemjs":"cat dist/system.min.js | gzip -9f | wc -c","test-browser-watch":"cross-env WATCH_MODE=true node test/server.cjs"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"collective":{"url":"https://opencollective.com/systemjs","type":"opencollective"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"6.14.6","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"14.6.0","_hasShrinkwrap":false,"devDependencies":{"open":"^7.0.3","mocha":"^7.1.1","mkdirp":"^1.0.4","rimraf":"^3.0.2","rollup":"^2.2.0","terser":"^4.6.7","bluebird":"^3.7.2","@zeit/ncc":"^0.22.1","cross-env":"^7.0.2","node-fetch":"^2.6.0","symbol-es6":"^0.1.2","concurrently":"^5.1.0","whatwg-fetch":"^3.0.0","source-map-support":"^0.5.16","@rollup/plugin-json":"^4.0.2","rollup-plugin-terser":"^5.3.0","@rollup/plugin-replace":"^2.3.1","@rollup/plugin-node-resolve":"^7.1.1","construct-style-sheets-polyfill":"^2.3.5","@jsenv/github-pull-request-filesize-impact":"^3.0.2"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_6.4.3_1596722305868_0.6154926015191433","host":"s3://npm-registry-packages"}},"6.11.0":{"name":"systemjs","version":"6.11.0","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@6.11.0","maintainers":[{"name":"joeldenning","email":"joeldenning@gmail.com"},{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"8df8e74fc05822e6c40170aa409b9ca64833315f","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-6.11.0.tgz","fileCount":34,"integrity":"sha512-7YPIY44j+BoY+E6cGBSw0oCU8SNTTIHKZgftcBdwWkDzs/M86Fdlr21FrzAyph7Zo8r3CFGscyFe4rrBtixrBg==","signatures":[{"sig":"MEYCIQC5mz5Aqpc5o44g7bCcMe+Mp1kFZqCzCz6eVvsEFw6H8QIhAK38rnZvM6XdQhx4PPkgN2h+LL1OIC+vAW/rON85+8vO","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":456911,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh28s+CRA9TVsSAnZWagAA8EsP/0bzGP2lC7j4ZkrsfEMx\nBmInis5qPN/Vphvc60RFulYCmnRkhYsjQ/jTBN6PQgc+aIpKHCJqgVlbo62p\n81PUcv3XFNwutCkKlW7FzX5hmk2RLcigedvDC/CYhVGJGBFY9A+wdXuz04Jc\n2eLFhAiv5N4LmRgr4W6NSppRhO0ZAdxnwNbC7+/tL/AwLefvADrGvqMhzpyO\n9a/37DQS85hYWG6Nw9wqW16AHKdDuGRVmIVa/f83PzSnkLJ0Orp5u7rBTBFL\nRlB77QzqvCjz6Qn35WXeH9/lD33rZFzc/05yT9XcLDbz8z0sdhdN5nu4piZ/\nJW/tWN+eb1bOu6WK8QQavgoup/jxhnuoC0D0daKAtN/fks5hqTGnpga0oS0u\nJYvNehfBNz4oxAMnvvydxfCL+1EAmCE/kf/JXJ1R6lDb5t+3ofP0mYeEbBmZ\nucEAQu6AocPPwmRw5cVaaGgxeW441RA/JKN9lWvFaZ4embwpzoMblh5v74gh\nR1dYvEfnTL6//riqkHIKTcnL3Qtj+rNcedmmkRTHLuZ35B476xPw+By1/w/p\nUYxv/G7P1GjFFqNmP0FU3EqQ9OXnM3B1cdc66EKptJWMJsrafNkLPcfWWA1g\n7kBgTyTsI9F1ZBwKUNnXWh4MRSyunmeMFkzCheTaUS0rXLD1nmm7R8BqkKpS\nRrjX\r\n=h+Tg\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/system-node.cjs","type":"script","exports":{".":{"node":"./dist/system-node.cjs","default":"./dist/system.min.js"},"./s.js":"./dist/s.min.js","./dist/*":"./dist/*","./package.json":"./package.json"},"gitHead":"d29783eea45e1dd770c6af8200f6ae975d9c2ead","scripts":{"test":"concurrently -n w: 'npm:test:*'","build":"rimraf dist && mkdirp dist && concurrently -n w: 'npm:build:*'","footprint":"concurrently -n w: 'npm:footprint:*'","test:node":"cross-env NODE_OPTIONS=--experimental-modules mocha --timeout 5000 -b test/system-node.js","build:node":"node --experimental-modules build-node.mjs","prepublish":"npm run build","test:browser":"node test/server.cjs","build:browser":"rollup -c","footprint:sjs":"cat dist/s.min.js | gzip -9f | wc -c","test:internals":"cross-env NODE_OPTIONS=\"--unhandled-rejections=none\" mocha -b test/import-map.js test/system-core.js test/url-resolution.js","build-browser-dev":"rollup -c --environment dev","footprint:systemjs":"cat dist/system.min.js | gzip -9f | wc -c","test-browser-watch":"cross-env WATCH_MODE=true node test/server.cjs"},"_npmUser":{"name":"joeldenning","email":"joeldenning@gmail.com"},"collective":{"url":"https://opencollective.com/systemjs","type":"opencollective"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"7.19.1","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"16.5.0","_hasShrinkwrap":false,"devDependencies":{"open":"^7.0.3","mocha":"^7.1.1","mkdirp":"^1.0.4","rimraf":"^3.0.2","rollup":"^2.33.3","terser":"^5.5.0","bluebird":"^3.7.2","@zeit/ncc":"^0.22.1","cross-env":"^7.0.2","node-fetch":"^2.6.0","symbol-es6":"^0.1.2","concurrently":"^5.1.0","whatwg-fetch":"^3.0.0","source-map-support":"^0.5.16","@rollup/plugin-json":"^4.0.2","rollup-plugin-terser":"^5.3.0","@rollup/plugin-replace":"^2.3.1","@jsenv/file-size-impact":"^5.2.0","@rollup/plugin-node-resolve":"^7.1.1","construct-style-sheets-polyfill":"^2.3.5"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_6.11.0_1634596530264_0.41246937696193875","host":"s3://npm-registry-packages"}},"0.11.3":{"name":"systemjs","version":"0.11.3","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.11.3","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"1f1f07db43f1b42b8aa1ecba6be1e78c90d2e462","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.11.3.tgz","integrity":"sha512-4+1UD2IMHbQWDOFMoQApmFPHXc5HO7T1BxoNhJWgLnBW/cFVnqw6Q+T4H7ewQ8Xs781ZjnPgv2nclCDFwzHGjw==","signatures":[{"sig":"MEQCIBdoQnTd0PP/0lXkk+TPIfmcmRZ/XZaIicZ894xTRgT8AiBHt3ZCHzVZBfOWzMyCaff8ISycgPGQIiJllsWnkNAgcQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.src.js","_from":".","_shasum":"1f1f07db43f1b42b8aa1ecba6be1e78c90d2e462","gitHead":"d8902954a8cb248647778cda0af137840ff76e28","scripts":{"test":"qunit -c s:./dist/system.js -t ./test/test.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs","type":"git"},"_npmVersion":"1.4.28","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"dependencies":{"es6-module-loader":"~0.11.2"},"devDependencies":{"qunit":"^0.6.2","uglify-js":"~2.4.13"}},"0.11.2":{"name":"systemjs","version":"0.11.2","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.11.2","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"2d618a160ee8f93dc89068893fe2dd47e371fcc4","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.11.2.tgz","integrity":"sha512-3wQqZmxyeGmAPKkcHM7rEDzMdN0qXWg0kkQh4ZBFZoiwrWDgZazOUrLvgfOAIoy3fYALJExs9b+8/dMi2yVVnQ==","signatures":[{"sig":"MEUCIQDoXWa6xcj5FOjj3ihSuNWHxLqrZtV5iKsV3WMzn129EAIgG4TJ9IWSuGJPi3l9sf1bOqUxOpvX225evetVa+F73mg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.src.js","_from":".","_shasum":"2d618a160ee8f93dc89068893fe2dd47e371fcc4","gitHead":"c2ac9c4112740c48ca938dc0d8c3ea48cd0f341f","scripts":{"test":"qunit -c s:./dist/system.js -t ./test/test.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs","type":"git"},"_npmVersion":"1.4.28","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"dependencies":{"es6-module-loader":"~0.11.2"},"devDependencies":{"qunit":"^0.6.2","uglify-js":"~2.4.13"}},"0.11.1":{"name":"systemjs","version":"0.11.1","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.11.1","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"9407abaefb40391f3fee9d836d5708c075521025","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.11.1.tgz","integrity":"sha512-M6h1BIAWCtYfNVINNHsPhFaJoA+mOkjy72Sq0CWnwnTh/H2qAZrDTT7YPK4kmUxZZu9X7Yi/cNRV6m6B1nAj/Q==","signatures":[{"sig":"MEQCIDYBlhwaTD7eV9dRERz4tXBgARZvfxPqsr6XCZ6NX37iAiBYP2k2MF3IUwYiMjc+ksWjWdRha/eH1aR1cVkpJkbk6w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.src.js","_from":".","_shasum":"9407abaefb40391f3fee9d836d5708c075521025","gitHead":"89c1effbb894c731f060393e5d107f3d27d99280","scripts":{"test":"qunit -c s:./dist/system.js -t ./test/test.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs","type":"git"},"_npmVersion":"1.4.28","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"dependencies":{"es6-module-loader":"~0.11.1"},"devDependencies":{"qunit":"^0.6.2","uglify-js":"~2.4.13"}},"0.11.0":{"name":"systemjs","version":"0.11.0","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.11.0","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"10e73a5c7f8d2c90ec7188c10432292ddec2d7d3","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.11.0.tgz","integrity":"sha512-AGZLkxcQ1/984cA3a5MTWqSKiQF7IYMpuHwzde7TimYclDMNtB/uj6DMrEtz66OGmBlIWR1qwCqpCi84v3ZXmg==","signatures":[{"sig":"MEQCIA8Xj4sxa7wNhK9/x7KW/K0zZzKTitA4ZcVjsKaDFjkyAiATekadOWIha87+ZHNdFgOnBv4dh04FwTfNWqixOgQC0g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.src.js","_from":".","_shasum":"10e73a5c7f8d2c90ec7188c10432292ddec2d7d3","gitHead":"9b5f875d4eecebbe1bc3bf0b73c024de74f4da65","scripts":{"test":"qunit -c s:./dist/system.js -t ./test/test.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs","type":"git"},"_npmVersion":"1.4.28","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"dependencies":{"es6-module-loader":"~0.11.0"},"devDependencies":{"qunit":"^0.6.2","uglify-js":"~2.4.13"}},"0.19.7":{"name":"systemjs","version":"0.19.7","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.19.7","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"408de12a05110dbb9bf55ae9edf5a60de2193caf","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.19.7.tgz","integrity":"sha512-P1qkjFg7naOoPqmbm/VH5yIHrnzIqsQnAKi99s0yj7n83ptTsxktIP3KMSZKcjzDRedDWwrrH9ph/dWdSTJzlw==","signatures":[{"sig":"MEQCIBte4HuHeddCrfFEIzhz1vkmyKkc8BgmXuvArJZJeTXkAiBrUqgHUMw3RrmGfqwPPV7VdvVt+cUvensi2lhEElWtXg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"408de12a05110dbb9bf55ae9edf5a60de2193caf","gitHead":"2a763c2ab0cfdb979dc67b1441625a0f17315f49","scripts":{"test":"npm run test:babel && npm run test:traceur && npm run test:typescript","build":"make","test:babel":"qunit -c s:./index.js -t ./test/test-babel.js","test:browser":"make test","test:traceur":"qunit -c s:./index.js -t ./test/test-traceur.js","test:typescript":"qunit -c s:./index.js -t ./test/test-typescript.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"2.14.15","description":"Universal dynamic module loader","directories":{},"_nodeVersion":"5.1.1","dependencies":{"when":"^3.7.5","es6-module-loader":"^0.17.4"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.91","uglify-js":"~2.4.23","babel-core":"^5.8.22","typescript":"^1.6.2"}},"0.19.6":{"name":"systemjs","version":"0.19.6","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.19.6","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"64307481ed1dd6c07c1f1e2367af72c99e98e347","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.19.6.tgz","integrity":"sha512-A6cDtcDWQSK+w7gYyyn3g9/RvYWdeXi/JThUlpauaxGa25rLjBOYbvxbCnfLoN1cLzPjHY5bz1LTdGdOEP7D8Q==","signatures":[{"sig":"MEQCID0+Cmkg1qbSCohg6RL795m1H5obTamEL5byzFy74hx1AiAWUVVgOUIVL2VB2Coss9AqkDKAOGNdzVSKYIyTWztPvQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"64307481ed1dd6c07c1f1e2367af72c99e98e347","gitHead":"f2586c0b3f4658f165fa9d1284c12b2132de1092","scripts":{"test":"npm run test:babel && npm run test:traceur && npm run test:typescript","build":"make","test:babel":"qunit -c s:./index.js -t ./test/test-babel.js","test:browser":"make test","test:traceur":"qunit -c s:./index.js -t ./test/test-traceur.js","test:typescript":"qunit -c s:./index.js -t ./test/test-typescript.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"3.3.8","description":"Universal dynamic module loader","directories":{},"_nodeVersion":"4.1.2","dependencies":{"when":"^3.7.2","es6-module-loader":"^0.17.4"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.91","uglify-js":"~2.4.23","babel-core":"^5.8.22","typescript":"^1.6.2"}},"0.19.5":{"name":"systemjs","version":"0.19.5","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.19.5","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"9a2fc7957783bf948046b207f868c96d3bd1a030","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.19.5.tgz","integrity":"sha512-UkHbAfZHKbT8WFWOyl5kq0Jq6/2p84v9PP0ZqLeH/UhJ+J1fRVA0QX2OcDs739IUPeERIuYWiL5wtmdZE3RrzA==","signatures":[{"sig":"MEUCIGmK9CJXvzyc6kfSsrcKZ2a0cM5annkt2SqYvQsoE3PLAiEAp8t1MiDKQ0A7nNvZSEvy58I5qEicIDYh+E+ndrssLtU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"9a2fc7957783bf948046b207f868c96d3bd1a030","gitHead":"43ba52a1d6f28ca153227f46cab84152b2f9c60e","scripts":{"test":"npm run test:babel && npm run test:traceur && npm run test:typescript","build":"make","test:babel":"qunit -c s:./index.js -t ./test/test-babel.js","test:browser":"make test","test:traceur":"qunit -c s:./index.js -t ./test/test-traceur.js","test:typescript":"qunit -c s:./index.js -t ./test/test-typescript.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"3.3.8","description":"Universal dynamic module loader","directories":{},"_nodeVersion":"4.1.2","dependencies":{"when":"^3.7.2","es6-module-loader":"^0.17.4"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.91","uglify-js":"~2.4.23","babel-core":"^5.8.22","typescript":"^1.6.2"}},"0.19.4":{"name":"systemjs","version":"0.19.4","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.19.4","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"34242041b50cc5c7bffac19ede9a6ad70aea805f","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.19.4.tgz","integrity":"sha512-isgQvLjXywTyydm/gbCzNsk2nBM1SRVScZr6Dr3NlShqQARDqs9zpIUfjpB8h0bSbYfFRXI4DP5GWEYtSNyn0Q==","signatures":[{"sig":"MEUCIDkju8Zox65l2pWKCt6LsB0MBZTpgtoyVB6jQ6rKUdqGAiEAha0KEwLniPe5T0jOmIj/jAynMnbCTt2zsI4OUFPqF5U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"34242041b50cc5c7bffac19ede9a6ad70aea805f","gitHead":"050c1f601c4f8224c7408cbd48f019b68f4256fb","scripts":{"test":"npm run test:babel && npm run test:traceur && npm run test:typescript","build":"make","test:babel":"qunit -c s:./index.js -t ./test/test-babel.js","test:browser":"make test","test:traceur":"qunit -c s:./index.js -t ./test/test-traceur.js","test:typescript":"qunit -c s:./index.js -t ./test/test-typescript.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"2.14.4","description":"Universal dynamic module loader","directories":{},"_nodeVersion":"4.1.1","dependencies":{"when":"^3.7.2","es6-module-loader":"^0.17.4"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.91","uglify-js":"~2.4.23","babel-core":"^5.8.22","typescript":"^1.6.2"}},"0.19.3":{"name":"systemjs","version":"0.19.3","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.19.3","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"9f16c6e44bc733180970a8011ec68c661d1ffe30","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.19.3.tgz","integrity":"sha512-oS8ziY+mz5UjGnASYE0qyW71bDYaVHokqwrVBl6AdPiLrTfKjat6ufIsRycTz1HBVEgh64axr6JBWVRT8fku4g==","signatures":[{"sig":"MEUCIQDwFIxJ8E4YSovSJlLVB7TnX+4GODtfKhJd5bdNX0AdXAIgDC0apdCEzh0MSD3zgUN9pX4f+13X/+nrs8R0fGVs3To=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"9f16c6e44bc733180970a8011ec68c661d1ffe30","gitHead":"1bba480be922f55c788f06a9d6091f7575a08b1f","scripts":{"test":"npm run test:babel && npm run test:traceur && npm run test:typescript","build":"make","test:babel":"qunit -c s:./index.js -t ./test/test-babel.js","test:browser":"make test","test:traceur":"qunit -c s:./index.js -t ./test/test-traceur.js","test:typescript":"qunit -c s:./index.js -t ./test/test-typescript.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"2.14.4","description":"Universal dynamic module loader","directories":{},"_nodeVersion":"4.1.1","dependencies":{"when":"^3.7.2","es6-module-loader":"^0.17.4"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.91","uglify-js":"~2.4.23","babel-core":"^5.8.22","typescript":"^1.6.2"}},"0.19.2":{"name":"systemjs","version":"0.19.2","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.19.2","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"612bd51bb40152010de61bf6b8b1cebdac1df65d","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.19.2.tgz","integrity":"sha512-U7EO9paqmskcYKK4Pg+FcemSZNQYGhopki7uW7lnCCjVqyHzSnA+SjgKM4jA0jC6Xe9+hFyF/Vt3Pai/+dAIXA==","signatures":[{"sig":"MEQCIEhkHs1okFxi98O/T0WkCX6QbSMol8GOTDNePlSRLKifAiADBRr6BmpHYOly5JM0V7RZnRG6DSy5A2AK7SKRHkf0zw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"612bd51bb40152010de61bf6b8b1cebdac1df65d","gitHead":"b98110e0f15303736f738481891a4aeec6f3fd79","scripts":{"test":"npm run test:babel && npm run test:traceur && npm run test:typescript","build":"make","test:babel":"qunit -c s:./index.js -t ./test/test-babel.js","test:browser":"make test","test:traceur":"qunit -c s:./index.js -t ./test/test-traceur.js","test:typescript":"qunit -c s:./index.js -t ./test/test-typescript.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"2.11.3","description":"Universal dynamic module loader","directories":{},"_nodeVersion":"0.12.7","dependencies":{"when":"^3.7.2","es6-module-loader":"^0.17.4"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.91","uglify-js":"~2.4.23","babel-core":"^5.8.22","typescript":"^1.6.2"}},"0.19.1":{"name":"systemjs","version":"0.19.1","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.19.1","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"f43dedc28aa6fd28bdd650adc07b825572421310","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.19.1.tgz","integrity":"sha512-I5zlxoI6g0dIfHspmw5VQnwp/xtdmCaxxagxedTp9AjwE1jf4k8dfqMCaEHJJmovqm5GABcYWFehBliJyOhHfQ==","signatures":[{"sig":"MEUCIEakvN90pmM3abpugekxmn8we1k+ulJJaSrglqMI0mU9AiEAsxiHJFuJgAYNkkx8PJo8DAFvcBdDe1TesLGpoC/0q4Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"f43dedc28aa6fd28bdd650adc07b825572421310","gitHead":"2f90cbb399ce49160a077912dd524bf95c0a5f61","scripts":{"test":"npm run test:babel && npm run test:traceur && npm run test:typescript","build":"make","test:babel":"qunit -c s:./index.js -t ./test/test-babel.js","test:browser":"make test","test:traceur":"qunit -c s:./index.js -t ./test/test-traceur.js","test:typescript":"qunit -c s:./index.js -t ./test/test-typescript.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"2.11.3","description":"Universal dynamic module loader","directories":{},"_nodeVersion":"0.12.7","dependencies":{"when":"^3.7.2","es6-module-loader":"^0.17.4"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.91","uglify-js":"~2.4.23","babel-core":"^5.8.22","typescript":"^1.6.2"}},"0.19.0":{"name":"systemjs","version":"0.19.0","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.19.0","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"0abc202e7d3e87cc1dfeb7069213c580be94f46d","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.19.0.tgz","integrity":"sha512-1sfIXFalU48jvHqRrwmcawew6WGye+zHQ60vJQJ8Hr9KW269wYTagjr9kSTIHxCEYqlt9Mf0zddb4hSAvVcQuw==","signatures":[{"sig":"MEUCIQCVgFNmm7/atGyla3Eq9kQ2930grAtWt3MQZanMgOXiFQIgRcJ3rIEwL9iiRHmkSnWW0X05VT4MfRKUtPFROF64F84=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"0abc202e7d3e87cc1dfeb7069213c580be94f46d","gitHead":"ec859c6ba2836f22f10eefef1860caadab71eb1b","scripts":{"test":"npm run test:babel && npm run test:traceur && npm run test:typescript","build":"make","test:babel":"qunit -c s:./index.js -t ./test/test-babel.js","test:browser":"make test","test:traceur":"qunit -c s:./index.js -t ./test/test-traceur.js","test:typescript":"qunit -c s:./index.js -t ./test/test-typescript.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"2.11.3","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"_nodeVersion":"0.12.7","dependencies":{"when":"^3.7.2","es6-module-loader":"^0.17.4"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.91","uglify-js":"~2.4.23","babel-core":"^5.8.22","typescript":"^1.6.2"}},"6.3.1":{"name":"systemjs","version":"6.3.1","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@6.3.1","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"661adf60f257c1f65b8075fd5b034c0c69b306f4","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-6.3.1.tgz","fileCount":33,"integrity":"sha512-pYAQxEK2a3Xj6cRVXrXgogSfKc3oFTzEWejK8KfHcZxwT31yT2xL43WXjUNcjOk5P048Z1zLRIlfrB3Mq4W+PQ==","signatures":[{"sig":"MEUCIFx8qeiTqHON95JpND+YEJ7yvddmriJvsUDwUe78txVIAiEAqjAj/8HXoN2cWW32bXyRxn9FOUlK0pa2lyXcqSrDhy8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":428786,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeljEQCRA9TVsSAnZWagAAK2IQAIhGhuCwhYkiwt0s7ApY\n4aea84/pELQUqQg78JKZ3iq9UnysM4llvK+ND/aED3heUd2BKAgT0fEntELv\nKb/X/lP5uIwfSE2P26ug73nFBPpyKhKJ04vCA6mmnF4EInuP5pTILjLizCN9\nGblMKg1wbQDJw5YKX6+TBU1BC660hjCMd4frQgZZEZNt1wzAyYYMg5SxtAuZ\nRDrcCM6SqHe6Wd70tdKkQUJGejAG795S2zzIbEBs3gAQoAhyVMMSc2k5j1xH\nORVJJRQsZ+h0JDRGK/PGucFGimEgSS8YCy95hgSnDE4xloTV7e7GvEk2KKP1\nZAW5MnCVfj8/5Qq9R9Gi5AvNgEBgYHKQRORI9mwzc4OwpcSaIsYrkJ4R1VUt\nW25+ClWBjzD/1tm0EE7ZzIrqyCkG6HeCucTtgWMWBVXKegXIDnGE5vu72Kjx\nHC8D1LsELbo9KUAF8sNpIadqZL2HWRHyUBON5Etr3GZm9fcrsrnw6u1riaWL\nTkYAzy2cflrQDNbOrahkf/ELcsVinGbZzkeubyi48nRWxHiMxJYytEkMDnib\nugytnc/Izxb80yKv6BUiwPjgzVepxuqaKye/g0lPi9QmYf74SS7FwS+gKnmX\nfzKvq8+K2XWodr9vOFgJkkOWUjF7lrlrVsMf6DXdbtgp1lb3zuRPzCTU72mZ\nVhb2\r\n=kDc1\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/system-node.cjs","type":"module","exports":{".":{"node":"./dist/system-node.cjs","default":"./dist/system.min.js"},"./dist/":"./dist/"},"gitHead":"953b0581969ddb37ad0e798c512a16ed2721563f","scripts":{"test":"concurrently -n w: 'npm:test:*'","build":"rimraf dist && mkdirp dist && concurrently -n w: 'npm:build:*'","footprint":"concurrently -n w: 'npm:footprint:*'","test:node":"cross-env NODE_OPTIONS=--experimental-modules mocha --timeout 5000 -b test/system-node.js","build:node":"node --experimental-modules build-node.js","prepublish":"npm run build","test:browser":"node test/server.cjs","build:browser":"rollup -c","footprint:sjs":"cat dist/s.min.js | gzip -9f | wc -c","test:internals":"cross-env NODE_OPTIONS=--experimental-modules mocha -b test/import-map.js test/system-core.js test/url-resolution.js","build-browser-dev":"rollup -c --environment dev","footprint:systemjs":"cat dist/system.min.js | gzip -9f | wc -c","test-browser-watch":"cross-env WATCH_MODE=true node test/server.cjs"},"_npmUser":{"name":"joeldenning","email":"joeldenning@gmail.com"},"collective":{"url":"https://opencollective.com/systemjs","type":"opencollective"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"6.14.4","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"13.13.0","_hasShrinkwrap":false,"devDependencies":{"open":"^7.0.3","mocha":"^7.1.1","mkdirp":"^1.0.4","rimraf":"^3.0.2","rollup":"^2.2.0","terser":"^4.6.7","bluebird":"^3.7.2","@zeit/ncc":"^0.22.1","cross-env":"^7.0.2","node-fetch":"^2.6.0","symbol-es6":"^0.1.2","concurrently":"^5.1.0","whatwg-fetch":"^3.0.0","source-map-support":"^0.5.16","@rollup/plugin-json":"^4.0.2","rollup-plugin-terser":"^5.3.0","@rollup/plugin-replace":"^2.3.1","@rollup/plugin-node-resolve":"^7.1.1","construct-style-sheets-polyfill":"^2.3.5","@jsenv/github-pull-request-filesize-impact":"^3.0.2"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_6.3.1_1586901263867_0.012941269183675441","host":"s3://npm-registry-packages"}},"6.3.2":{"name":"systemjs","version":"6.3.2","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@6.3.2","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"2c3407f949260fdfb3b837c191869db933d1fe0f","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-6.3.2.tgz","fileCount":32,"integrity":"sha512-zcALS1RIYtsQBG4fbaE+cJzKx+UoEuSM8xCkGGH99i7p7Ym3ALvhi9QrpF2lo0CMQaejqrE1GnbkuG2m/+H7ew==","signatures":[{"sig":"MEQCID0g752FK5PhLNbijpUfwCBLMekGMx1NHMywNYZMmestAiBlD3bBNmd5Du8FEUQpLAmF464fNytUThh4X4fH++GjMA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":429510,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJewq4kCRA9TVsSAnZWagAAZLsP/2ftbZKl5OKkMLap0tyG\n3KTdAeTWmtrpRxfG/R5IIhIcGKuZapK+mt2+txVX7u2dAQ0JqHTNqHDMaQKk\nLoi/d/NKlPzC6APyUd7c2JPciHGVEFztDlyKki0iDyDhMk6LmkiqefG+sd9s\nyMXcw3ni4beymg5V36uMAU9dWJ0abf3UizaZNarF7I2V0T4W5ywc8SzYLKh3\nom7AQ5siTV3BYJPkMyZFwDVbzCqL9Tt9x4Ei68hG+z+lSNVTSmFvb6JOOmen\n1wHU7LxcKD4JC2/plfhJ1kAj0/L6/gqKR5RKw+BXbLDsWELfUQD4A4Y4KyCj\nILlFbcJnOcDxkBQT+Od+UsbbvHS2c4vlAdN1c0f1yoLg/KQNzGGL5ZjHJjOg\n9fdg9xayPJFkBIx9rkksDrVwI3VytnAPwVTk2eA73+cqhIBkU9miHmAyHpO6\nIfI04pyd9+yIZt47kibMY0S9MzCADPgCmJ8xoINz3fH0O4ztUzN2mTASrUBx\nXONCBFIgOdHkvSYwhZL18ZtGkoZSFwTgnhbF/0ul+SglyKm2ifkTV6YCzrm2\ndIeIkiKS6U1IyqmSc8+0eY7QsI8/VmoLC4qBhMLkLBIwdqkD0/BxUbdxMev0\nSU25dP+5A4SOUUOyktDq3pBMNMA3uMQXIDr2AruQ1rXvNNaLhvFfPP+jh/IL\nXRPP\r\n=Y/LL\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/system-node.cjs","type":"module","exports":{".":{"node":"./dist/system-node.cjs","default":"./dist/system.min.js"},"./dist/":"./dist/"},"gitHead":"ff61409704a4528f68d746f5725ef4e27214790d","scripts":{"test":"concurrently -n w: 'npm:test:*'","build":"rimraf dist && mkdirp dist && concurrently -n w: 'npm:build:*'","footprint":"concurrently -n w: 'npm:footprint:*'","test:node":"cross-env NODE_OPTIONS=--experimental-modules mocha --timeout 5000 -b test/system-node.js","build:node":"node --experimental-modules build-node.js","prepublish":"npm run build","test:browser":"node test/server.cjs","build:browser":"rollup -c","footprint:sjs":"cat dist/s.min.js | gzip -9f | wc -c","test:internals":"cross-env NODE_OPTIONS=--experimental-modules mocha -b test/import-map.js test/system-core.js test/url-resolution.js","build-browser-dev":"rollup -c --environment dev","footprint:systemjs":"cat dist/system.min.js | gzip -9f | wc -c","test-browser-watch":"cross-env WATCH_MODE=true node test/server.cjs"},"_npmUser":{"name":"joeldenning","email":"joeldenning@gmail.com"},"collective":{"url":"https://opencollective.com/systemjs","type":"opencollective"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"6.14.4","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"14.2.0","_hasShrinkwrap":false,"devDependencies":{"open":"^7.0.3","mocha":"^7.1.1","mkdirp":"^1.0.4","rimraf":"^3.0.2","rollup":"^2.2.0","terser":"^4.6.7","bluebird":"^3.7.2","@zeit/ncc":"^0.22.1","cross-env":"^7.0.2","node-fetch":"^2.6.0","symbol-es6":"^0.1.2","concurrently":"^5.1.0","whatwg-fetch":"^3.0.0","source-map-support":"^0.5.16","@rollup/plugin-json":"^4.0.2","rollup-plugin-terser":"^5.3.0","@rollup/plugin-replace":"^2.3.1","@rollup/plugin-node-resolve":"^7.1.1","construct-style-sheets-polyfill":"^2.3.5","@jsenv/github-pull-request-filesize-impact":"^3.0.2"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_6.3.2_1589816868389_0.42863427848552993","host":"s3://npm-registry-packages"}},"6.3.0":{"name":"systemjs","version":"6.3.0","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@6.3.0","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"4fe5a2e09fa0e1e13ad7f30e1be603de87e20881","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-6.3.0.tgz","fileCount":33,"integrity":"sha512-+7CkkMP0PbrW5//dIKNHp8NiMWcQseV4KFV0YNfSyIeLkBHWjC2dpBcbDIn28kvS3ilstnWfcf2kFmHYt2aqQA==","signatures":[{"sig":"MEQCIA3w1p/0/eKTZTST876E81VztqDvvPx5O5l0vpAZSSEbAiBg1XMF42NJQTQMf0lskovidqrrrlQWOOeuv6npEwjy/w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1729977,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJej2kkCRA9TVsSAnZWagAApUgP/iH/iUY3rqX/+aEdHq7U\nUozfayC2l5DO1OswDdjXyow+LHNyx0A02iJUQCLpiMZslJPSn46nDrsjh7GX\n3thECe2fN3aY4RolTFUpLWDSOrCrrGtXPaek1gQzyo4/6DW+0tyTGhQMbMeu\nv+lMXKbPKQ30G0r1kNocIioIUr/4s+V4YGAD3sVYxoVyB8uxDrfE3xMSIt0Q\nMCgMmQcfmrbskT8Eh/DNY7td3dHhDSXXsZH2m2GImZqgOl8ozgRtZKulMvlA\n+xkNbG2OrgLnOtQSw+2NOO6N1lsIuT1FoE23EHx0cjvsh8cSjWuQpSX1EfYp\noVJzLw97DdQAADbSoCEuVD0BohVV5TXd0XUZVC0klv3QAPlBdymD3QXO+YQn\nlumTv56btCm8FCHRsh3nWlNMTCLB2oSTH/1x4IHNysMr/Nts4Q1gWJOpdmrJ\n5r9fbJeX3POQCsinBPW16UjvevBsjDs9JmjVzImMF0nCPJw3yzBYTUs3Khq0\nct8NytCnzAXAHYmoVCja+tMaWC52aSSOxJ6QrZ7TOzqh+u8Yjd10znAhTDpD\nXHkJZCZRr/XpCmheoWJzsLN42+P5aQIhlfE6cP1G6AP0+iF1y8FWZWnRvJB/\nLGPFf/kesc5PzxzJxTagLb6aGUlQQs9GU2fXbsW1jgrj70uh7HXWEri4PKRK\nebt9\r\n=/KId\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/system-node.cjs","type":"module","exports":{"node":"./dist/system-node.cjs","default":"./dist/system.min.js"},"gitHead":"87c63e5a0f7857440f75660e57831720fc0b8b48","scripts":{"test":"concurrently -n w: 'npm:test:*'","build":"rimraf dist && concurrently -n w: 'npm:build:*'","footprint":"concurrently -n w: 'npm:footprint:*'","test:node":"cross-env NODE_OPTIONS=--experimental-modules mocha -b test/system-node.js","build:node":"node --experimental-modules build-node.js","prepublish":"npm run build","test:browser":"node test/server.cjs","build:browser":"rollup -c","footprint:sjs":"cat dist/s.min.js | gzip -9f | wc -c","test:internals":"cross-env NODE_OPTIONS=--experimental-modules mocha -b test/import-map.js test/system-core.js test/url-resolution.js","build-browser-dev":"rollup -c --environment dev","footprint:systemjs":"cat dist/system.min.js | gzip -9f | wc -c","test-browser-watch":"cross-env WATCH_MODE=true node test/server.cjs"},"_npmUser":{"name":"joeldenning","email":"joeldenning@gmail.com"},"collective":{"url":"https://opencollective.com/systemjs","type":"opencollective"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"6.14.4","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"13.12.0","_hasShrinkwrap":false,"devDependencies":{"open":"^7.0.3","mocha":"^7.1.1","rimraf":"^3.0.2","rollup":"^2.2.0","terser":"^4.6.7","bluebird":"^3.7.2","@zeit/ncc":"^0.22.1","cross-env":"^7.0.2","symbol-es6":"^0.1.2","concurrently":"^5.1.0","whatwg-fetch":"^3.0.0","make-fetch-happen":"^8.0.4","source-map-support":"^0.5.16","@rollup/plugin-json":"^4.0.2","rollup-plugin-terser":"^5.3.0","@rollup/plugin-replace":"^2.3.1","@rollup/plugin-node-resolve":"^7.1.1","construct-style-sheets-polyfill":"^2.3.5","@jsenv/github-pull-request-filesize-impact":"^3.0.2"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_6.3.0_1586456868129_0.5503028335659488","host":"s3://npm-registry-packages"}},"0.19.9":{"name":"systemjs","version":"0.19.9","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.19.9","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"13beee50b7f62d9923b8ac13bf8a7dcf870766e8","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.19.9.tgz","integrity":"sha512-HdvzHsksurNJDeZgWtTp3vM2tUyY1TV/OmhZ4Fp5Cy2j1fURTgXvpE0/VV7fBFxBFEfLwCqlfLhQvSgq8T2gcg==","signatures":[{"sig":"MEUCIQDV6XMgSDeGi49NlyI811PrKMHGSN09ETxD2rMpmr/zawIgLq9kakR9zgJu1a6v3eXK7KxqudsIPHUwDOxYFsmcdlo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"13beee50b7f62d9923b8ac13bf8a7dcf870766e8","gitHead":"d80ea8dc89111fab92e7c8bed34e57686bf3eea7","scripts":{"test":"npm run test:babel && npm run test:traceur && npm run test:typescript","build":"make","test:babel":"qunit -c s:./index.js -t ./test/test-babel.js","test:browser":"make test","test:traceur":"qunit -c s:./index.js -t ./test/test-traceur.js","test:typescript":"qunit -c s:./index.js -t ./test/test-typescript.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"2.14.15","description":"Universal dynamic module loader","directories":{},"_nodeVersion":"5.1.1","dependencies":{"when":"^3.7.5","es6-module-loader":"^0.17.9"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.91","uglify-js":"~2.4.23","babel-core":"^5.8.22","typescript":"^1.6.2"}},"0.19.8":{"name":"systemjs","version":"0.19.8","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.19.8","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"4e881bdec6905bf4db129d393c2a53ef4b2b169e","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.19.8.tgz","integrity":"sha512-lZU92H0Wspfrq3B5mrz8s1nb2hyqFwuXbhzFKds2hxCirbpHCkjWcoV9YGMrC17wt2tsNXkZ6P12rta/4dEE7A==","signatures":[{"sig":"MEUCIQCjmb558TtidhVBzPMJx09HGGevJQTS/c4pKyagsYGBiQIgIl8qRDeEE16ImA05GfQkVqLXECQ6uzQNVwM2JDHLW4Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"4e881bdec6905bf4db129d393c2a53ef4b2b169e","gitHead":"f293873ea254c6298818e1cad32f6d6209a10a96","scripts":{"test":"npm run test:babel && npm run test:traceur && npm run test:typescript","build":"make","test:babel":"qunit -c s:./index.js -t ./test/test-babel.js","test:browser":"make test","test:traceur":"qunit -c s:./index.js -t ./test/test-traceur.js","test:typescript":"qunit -c s:./index.js -t ./test/test-typescript.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"2.14.15","description":"Universal dynamic module loader","directories":{},"_nodeVersion":"5.1.1","dependencies":{"when":"^3.7.5","es6-module-loader":"^0.17.4"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.91","uglify-js":"~2.4.23","babel-core":"^5.8.22","typescript":"^1.6.2"}},"0.18.16":{"name":"systemjs","version":"0.18.16","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.18.16","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"defd7bde90b0e43d1d2058f3d1b0750d86acdb05","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.18.16.tgz","integrity":"sha512-nJvv7a+BZoTqihoOvv9gBbZ+SdqsiXYjBl1/2OD+wsEJBeIojhyQc9HXqRXP2sR1XrZ0F8zzgYpPjDYrQNuBNQ==","signatures":[{"sig":"MEUCIQCFOgmWDcJGAq0Ovv5/0U2plefKFHjPqHse6JsJnfU7DAIgBSw30MvuJPqYN7F28H0dSd4lDG+DHp6FMoNXAzrnizI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"defd7bde90b0e43d1d2058f3d1b0750d86acdb05","gitHead":"114e8d4cd2caf5f1ae65042acf5049f9ab504709","scripts":{"test":"npm run test:babel && npm run test:traceur && npm run test:typescript","build":"make","test:babel":"qunit -c s:./index.js -t ./test/test-babel.js","test:browser":"make test","test:traceur":"qunit -c s:./index.js -t ./test/test-traceur.js","test:typescript":"qunit -c s:./index.js -t ./test/test-typescript.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"2.11.3","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"_nodeVersion":"0.12.7","dependencies":{"when":"^3.7.2","es6-module-loader":"^0.17.4"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.91","uglify-js":"~2.4.23","babel-core":"^5.8.22","typescript":"next"}},"0.18.17":{"name":"systemjs","version":"0.18.17","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.18.17","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"514f43b98b3e23670d136b0d6dc50b886ed5d4cb","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.18.17.tgz","integrity":"sha512-vt79Nnmg9uk66MJROzR7+Oejm0C8uiThpClP8li8mWnwPUkv5ssbcpS+cX+NTMBiN/QVw+AE3353Bd945g/PjQ==","signatures":[{"sig":"MEQCIDeDM/EkoyPr8pH6acKfxRmPxzb3aMUejpSq7EP2Cfv+AiBqUmC447GTgLGnQF+AYLbGS0dZXtHV1L6BB3BSiMMcYw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"514f43b98b3e23670d136b0d6dc50b886ed5d4cb","gitHead":"164cb7b247b0d45dd3204350073b82dbc5338dc3","scripts":{"test":"npm run test:babel && npm run test:traceur && npm run test:typescript","build":"make","test:babel":"qunit -c s:./index.js -t ./test/test-babel.js","test:browser":"make test","test:traceur":"qunit -c s:./index.js -t ./test/test-traceur.js","test:typescript":"qunit -c s:./index.js -t ./test/test-typescript.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"2.11.3","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"_nodeVersion":"0.12.7","dependencies":{"when":"^3.7.2","es6-module-loader":"^0.17.4"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.91","uglify-js":"~2.4.23","babel-core":"^5.8.22","typescript":"next"}},"0.18.14":{"name":"systemjs","version":"0.18.14","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.18.14","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"dd70154143990d659e1c34936a9d0efe2c05482d","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.18.14.tgz","integrity":"sha512-YW7DNi4h9SgWSDde8KGHP/VEse4Ku/Kmp6MzU99gKc1FHoysFRfWQIhqb834jYq8SNNK1FJLoU6pTowlDR/zRQ==","signatures":[{"sig":"MEQCIG6JGPCJiUIhGrOM3AeEmf4ivW1gzCr9tTge/Za9uXw7AiA48e/OKb+p+m8ngfW+GSRRvKBiFFirmizzbIc+j1zNZw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"dd70154143990d659e1c34936a9d0efe2c05482d","gitHead":"b5d6568b574622cec1a6cb98ae465e575436ba16","scripts":{"test":"npm run test:babel && npm run test:traceur && npm run test:typescript","build":"make","test:babel":"qunit -c s:./index.js -t ./test/test-babel.js","test:browser":"make test","test:traceur":"qunit -c s:./index.js -t ./test/test-traceur.js","test:typescript":"qunit -c s:./index.js -t ./test/test-typescript.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"2.11.3","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"_nodeVersion":"0.12.7","dependencies":{"when":"^3.7.2","es6-module-loader":"^0.17.4"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.91","uglify-js":"~2.4.23","babel-core":"^5.8.22","typescript":"next"}},"0.18.15":{"name":"systemjs","version":"0.18.15","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.18.15","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"bc4ad77915fc376d01c138f0bdd7c75c4a06eb0b","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.18.15.tgz","integrity":"sha512-d/Xhr/70/M8xEV+X4NbTut+xE2lymQYdthE4dzV5zaEvDiOmP5kxG104oBTURf6BvavjdYn9om+p6Flu1xsI2Q==","signatures":[{"sig":"MEQCICjJq5xusBuvyZb2qNhSOdqcR/DlSILOdL8isLtjRpjMAiBYADn5hh73+oiKOUv8IbLo+TnhTZBmkaaXxUQf7bj2eA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"bc4ad77915fc376d01c138f0bdd7c75c4a06eb0b","gitHead":"a7e3f6c92e9760c1389c2a8b35bf3d3727575fd9","scripts":{"test":"npm run test:babel && npm run test:traceur && npm run test:typescript","build":"make","test:babel":"qunit -c s:./index.js -t ./test/test-babel.js","test:browser":"make test","test:traceur":"qunit -c s:./index.js -t ./test/test-traceur.js","test:typescript":"qunit -c s:./index.js -t ./test/test-typescript.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"2.11.3","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"_nodeVersion":"0.12.7","dependencies":{"when":"^3.7.2","es6-module-loader":"^0.17.4"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.91","uglify-js":"~2.4.23","babel-core":"^5.8.22","typescript":"next"}},"0.18.12":{"name":"systemjs","version":"0.18.12","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.18.12","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"eed71d9515602d076a39f21b208be0e656383c2c","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.18.12.tgz","integrity":"sha512-7ewRbfyE6z1DnQZqA/ZXGmqhlkyfCnUJFdeN6GdJK5A0UYw9pxQ6ZucxzSerpv8EMoDY6jI30RFRDJGzowEsVw==","signatures":[{"sig":"MEQCIBsNw5ggbYZlM+NHIbGKtnJBinSO8JDcI9WMHBi/fxsjAiBs/9hBu4FCMsfXi82O8eV51L/3c40iX6kdE+mqgffJ7w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"eed71d9515602d076a39f21b208be0e656383c2c","gitHead":"62111757171d68b10a30884eff67e6de2343bb5d","scripts":{"test":"npm run test:babel && npm run test:traceur && npm run test:typescript","build":"make","test:babel":"qunit -c s:./index.js -t ./test/test-babel.js","test:browser":"make test","test:traceur":"qunit -c s:./index.js -t ./test/test-traceur.js","test:typescript":"qunit -c s:./index.js -t ./test/test-typescript.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"2.11.3","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"_nodeVersion":"0.12.7","dependencies":{"when":"^3.7.2","es6-module-loader":"^0.17.4"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.91","uglify-js":"~2.4.23","babel-core":"^5.8.22","typescript":"next"}},"0.18.13":{"name":"systemjs","version":"0.18.13","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.18.13","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"0548ff998646170442012d09748c839751f37eb4","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.18.13.tgz","integrity":"sha512-0mA1pwGFwiYP407JNN3SjpanTaE1zQcB0AUDkQHJmtAgjyAjx8fkaBGdzcNkV1+xZK4NbzD8EzdxOAyzKcwbqA==","signatures":[{"sig":"MEQCIGDPvtmrCCSkbzefNH75BzwqWM69WcNM4NE0+fl2TGWJAiA/V+oL7b7XEfjSnf01ZfZ9QFddHSOdJ/Aj+EDfuR1aDA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"0548ff998646170442012d09748c839751f37eb4","gitHead":"0ae88872838e9b2f16eb8b764035683fe30d7c0f","scripts":{"test":"npm run test:babel && npm run test:traceur && npm run test:typescript","build":"make","test:babel":"qunit -c s:./index.js -t ./test/test-babel.js","test:browser":"make test","test:traceur":"qunit -c s:./index.js -t ./test/test-traceur.js","test:typescript":"qunit -c s:./index.js -t ./test/test-typescript.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"2.11.3","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"_nodeVersion":"0.12.7","dependencies":{"when":"^3.7.2","es6-module-loader":"^0.17.4"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.91","uglify-js":"~2.4.23","babel-core":"^5.8.22","typescript":"next"}},"0.18.10":{"name":"systemjs","version":"0.18.10","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.18.10","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"4e679dc5bb04dffb9882d40b19c5daa1cd182102","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.18.10.tgz","integrity":"sha512-OzKOrUhTfjopwFlEUqKDyhcx7YqM6ZSRIEa+bk0+wEQLQoqh1RKUfa1+um9097cRqaTvNufxf3lyrzV2Dfv35Q==","signatures":[{"sig":"MEUCIQCbR+VQzm3tVxeW9hr1lII5JuCp5cgxoOFlHaKnGjH9FQIgIDrGGpL802V5X/pkUGzg/6tjjBcAEjn7xc0+WGn8K/M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"4e679dc5bb04dffb9882d40b19c5daa1cd182102","gitHead":"b093e1b9acd9dd6f45761086027974cfe775869c","scripts":{"test":"npm run test:babel && npm run test:traceur && npm run test:typescript","build":"make","test:babel":"qunit -c s:./index.js -t ./test/test-babel.js","test:browser":"make test","test:traceur":"qunit -c s:./index.js -t ./test/test-traceur.js","test:typescript":"qunit -c s:./index.js -t ./test/test-typescript.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"2.11.3","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"_nodeVersion":"0.12.7","dependencies":{"when":"^3.7.2","es6-module-loader":"^0.17.4"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.91","uglify-js":"~2.4.23","babel-core":"^5.8.20","typescript":"next"}},"0.18.11":{"name":"systemjs","version":"0.18.11","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.18.11","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"9f95ca200234fe5a7df99c26133c8643c24e377c","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.18.11.tgz","integrity":"sha512-GJNPO/4/UHhSHDd7AdTd+WjM+hFOFgwaCXJPEtYwMBD7HGxi9/eWOAilofVqWtmGFkTC1vX/kZFMNTRs7oXEmw==","signatures":[{"sig":"MEYCIQCSR5spntVE5ddbkyaY6vHtwo73biSL8ij5aK76gu8EcgIhAKlffyh0mYG/sGPOTU8ZBPrhjny8jXcuOY5mpYUqMhBo","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"9f95ca200234fe5a7df99c26133c8643c24e377c","gitHead":"0c9bef797f69e975b8596b628a28068f691d120e","scripts":{"test":"npm run test:babel && npm run test:traceur && npm run test:typescript","build":"make","test:babel":"qunit -c s:./index.js -t ./test/test-babel.js","test:browser":"make test","test:traceur":"qunit -c s:./index.js -t ./test/test-traceur.js","test:typescript":"qunit -c s:./index.js -t ./test/test-typescript.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"2.11.3","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"_nodeVersion":"0.12.7","dependencies":{"when":"^3.7.2","es6-module-loader":"^0.17.4"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.91","uglify-js":"~2.4.23","babel-core":"^5.8.22","typescript":"next"}},"0.4.2":{"name":"systemjs","version":"0.4.2","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.4.2","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/guybedford/systemjs","bugs":{"url":"https://github.com/guybedford/systemjs/issues"},"dist":{"shasum":"ff449af7b3cc8db1f91e09b09dacee20ad5019a4","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.4.2.tgz","integrity":"sha512-Eah6kFM+cRWX9XxRkCwi8M/eO6PNSPmnrobNQFY5FmneCXZrrgvYbXFTMaS50JSKVdqwD8VrGtOECj1B5TKGbg==","signatures":[{"sig":"MEQCIDgEupsEsO3H0a58L34qu7TUU6ROpb9fK0X3XufxUIv5AiAsACTrf+O6v2rFezk1WgVCnNzgYN37o/R8chonQAdScw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.js","_from":".","_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/guybedford/systemjs","type":"git"},"_npmVersion":"1.3.24","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"dependencies":{"es6-module-loader":"~0.4.0"}},"0.4.3":{"name":"systemjs","version":"0.4.3","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.4.3","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/guybedford/systemjs","bugs":{"url":"https://github.com/guybedford/systemjs/issues"},"dist":{"shasum":"ac3868bc3820c2f522faa2399e6a4a71a930a114","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.4.3.tgz","integrity":"sha512-QKuFxzqG6UdKBKNhRBSnKuEET/wsRVL6OWGcYSNWGL7pCl4MbhYfAmZShVD9CBK6OlLg1V4EYjOBpHYL1far1Q==","signatures":[{"sig":"MEQCIDPbYZhPcIHdnKF578I7SJwAQpZBjteoy3olQHm9N1EYAiAigpULROz5AebBqdk9FIsfUWj9aoI2Le6RUVX+aDWSpA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.js","_from":".","_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/guybedford/systemjs","type":"git"},"_npmVersion":"1.3.24","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"dependencies":{"es6-module-loader":"~0.4.0"}},"0.4.0":{"name":"systemjs","version":"0.4.0","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.4.0","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/guybedford/systemjs","bugs":{"url":"https://github.com/guybedford/systemjs/issues"},"dist":{"shasum":"b5c529ce52f2ab4e539d9ba9020e052677fcdc1e","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.4.0.tgz","integrity":"sha512-iAYgoFfY9QDjuTtm3CR2/7166hRuxOeo3s5Z6kNzkZ2Z2HfzP45QhWXV2iZMNKbJ14Mp6YOUTpH2b+kWXJAlXQ==","signatures":[{"sig":"MEUCIQDu3iNs67ybFFRgcKchzOqbfqP7lsOrYsBiEbwshTNGDQIgSEfE7b473GB38F8H3lz5n11uzGKf9MoNtmd+HHEiXiQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.js","_from":".","_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/guybedford/systemjs","type":"git"},"_npmVersion":"1.3.21","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"dependencies":{"es6-module-loader":"~0.4.0"}},"0.4.1":{"name":"systemjs","version":"0.4.1","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.4.1","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/guybedford/systemjs","bugs":{"url":"https://github.com/guybedford/systemjs/issues"},"dist":{"shasum":"c32058f1f4d7f4aed3a1f1c3ee33bef6e8a401ec","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.4.1.tgz","integrity":"sha512-SC4mIkdCYNDkAUwXAVas3yskHwKNMI9Y/IgWsumjrpzmCFk+PoAje775fYU9vAsSuNtw0ZF7LiEmax54GR7PwQ==","signatures":[{"sig":"MEQCIHjGvS74fPz/i/vr8cKDcN8JcJ2frod3NUwYECYbXVMKAiAtzVkoCyu7ONyjc0nWl9rJ/b4cV/hML2q0x8D64AWO5Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.js","_from":".","_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/guybedford/systemjs","type":"git"},"_npmVersion":"1.3.24","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"dependencies":{"es6-module-loader":"~0.4.0"}},"6.3.3":{"name":"systemjs","version":"6.3.3","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@6.3.3","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"c0f2bec5cc72d0b36a8b971b1fa32bfc828b50d4","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-6.3.3.tgz","fileCount":33,"integrity":"sha512-djQ6mZ4/cWKnVnhAWvr/4+5r7QHnC7WiA8sS9VuYRdEv3wYZYTIIQv8zPT79PdDSUwfX3bgvu5mZ8eTyLm2YQA==","signatures":[{"sig":"MEUCIQCO27iBh8yiPCAiOdkMYKCp4pAId7iCsSqrLEPOhXNODQIgBWJQgZ8CNxDAdf0CP0SlhQXCM0r4yRCW/l9YqKqZXX0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":431327,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe94WzCRA9TVsSAnZWagAA5WgP/27erspc7z/n0ol2whxC\nJtoAUVQRm+CqgNr9yzPgdN9r65FKUYdvnIqd/9GpvSZ94g9sDIg8u0QBoWLR\n/geJ1M60qf7BGZIwuuR4Z+WQ68DrFWeaPt4nSEINeSKx4vpXjsfhrZ8jBAwq\nTIOIbOdLBIw2GYcbCwMjr+Kn5cUumBvxMAbi5/Bh8vzcdv6r1+fTI/pD7PhA\nCjcR6eY69mSqCQl5usHr4BVNNuh2BQLEWUTWKVpKZ1LxMGewIEn2SjFDqC7X\ndg4lERzMYJhciknaHJIR6RxG2adigrNj49/E7Snjm9dYeRdbMbCujbXa+CDk\nYVHg96t9QkKT3ravvuMrk2G6ghyCei8lWxYGNWgfG+H7O2w1ne4H8B+BDfqE\naVyJZq0d/ENUHBNXQyo6hwI5+8xy4LrlugaM28Cq8cuDt6YL3j+T1MlqfgQG\nAi4yOK6RC2I8EaGNE0VvCpmxhqittEHwq/6VMZwa+HJPdqtIbYVJEKHrvbCK\n5mPWVKcAi2FJNKd9rpY6nYQEJKi5LXIHFy56mU9QJ4l+zjxU+E7JTbeg/YNT\nqXUT8yZcJejMbgHBizhz7AG4IIYR1rtTm8mFj8pyOaNhtBqWcD1RSHU07lxH\ndRugaTOT+8TrNw85/M/IuTaFEuSH+g3cTUiTBKOB+o30CPpwSHeg+89sENfL\nk92q\r\n=VV1n\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/system-node.cjs","type":"module","exports":{".":{"node":"./dist/system-node.cjs","default":"./dist/system.min.js"},"./dist/":"./dist/"},"gitHead":"435a797920f3e31947845089bafca73cda0e0950","scripts":{"test":"concurrently -n w: 'npm:test:*'","build":"rimraf dist && mkdirp dist && concurrently -n w: 'npm:build:*'","footprint":"concurrently -n w: 'npm:footprint:*'","test:node":"cross-env NODE_OPTIONS=--experimental-modules mocha --timeout 5000 -b test/system-node.js","build:node":"node --experimental-modules build-node.js","prepublish":"npm run build","test:browser":"node test/server.cjs","build:browser":"rollup -c","footprint:sjs":"cat dist/s.min.js | gzip -9f | wc -c","test:internals":"cross-env NODE_OPTIONS=--experimental-modules mocha -b test/import-map.js test/system-core.js test/url-resolution.js","build-browser-dev":"rollup -c --environment dev","footprint:systemjs":"cat dist/system.min.js | gzip -9f | wc -c","test-browser-watch":"cross-env WATCH_MODE=true node test/server.cjs"},"_npmUser":{"name":"joeldenning","email":"joeldenning@gmail.com"},"collective":{"url":"https://opencollective.com/systemjs","type":"opencollective"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"6.14.4","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"13.14.0","_hasShrinkwrap":false,"devDependencies":{"open":"^7.0.3","mocha":"^7.1.1","mkdirp":"^1.0.4","rimraf":"^3.0.2","rollup":"^2.2.0","terser":"^4.6.7","bluebird":"^3.7.2","@zeit/ncc":"^0.22.1","cross-env":"^7.0.2","node-fetch":"^2.6.0","symbol-es6":"^0.1.2","concurrently":"^5.1.0","whatwg-fetch":"^3.0.0","source-map-support":"^0.5.16","@rollup/plugin-json":"^4.0.2","rollup-plugin-terser":"^5.3.0","@rollup/plugin-replace":"^2.3.1","@rollup/plugin-node-resolve":"^7.1.1","construct-style-sheets-polyfill":"^2.3.5","@jsenv/github-pull-request-filesize-impact":"^3.0.2"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_6.3.3_1593279923017_0.4814036418339631","host":"s3://npm-registry-packages"}},"6.12.1":{"name":"systemjs","version":"6.12.1","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@6.12.1","maintainers":[{"name":"joeldenning","email":"joeldenning@gmail.com"},{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"47cdd23a6ec9f1b01cf5b5f70562c8550da229d3","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-6.12.1.tgz","fileCount":34,"integrity":"sha512-hqTN6kW+pN6/qro6G9OZ7ceDQOcYno020zBQKpZQLsJhYTDMCMNfXi/Y8duF5iW+4WWZr42ry0MMkcRGpbwG2A==","signatures":[{"sig":"MEYCIQCMDd0s+vOw0qmZ/SLbE6iBY+E2DJfjJLlLk/frPKkoiwIhAODLyhKzt2x4KPBZtg/2l8tQE5q100wmpJTOehGhtykV","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":775572,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh6zmHCRA9TVsSAnZWagAAH3EP/34v3078Rb+NKZqndf2A\nzE9pPQU8+NHMI87BT0R15ufrcKeE5usJTPPmwhBikG3JCZ5/87ayBdaG65Hq\n089ca6aq+5138w8JUOGv+wz4W8ThluO3WhFD+U2MFhOKC1DpnKKeHTbZq3Ox\nFPMXzCbucgoNb6ZZwCFZn6y+Sb4C2shRnjZZZK+smhQz1+1j6RJMuw+k7TpZ\n8mZ+f40eEt16mwiKtVszerMA3Scw2kfKSDEnD3eeE+3ypZ/F9MVAFVI3tIAm\nsrVqASniHemq6DKJbfD0S3UHS84llVV9HIzJweFHI302j3lAGLdLWU2VQtfY\n/Thdktjrj9VCZm9UJCQLmuwmW4Z5SFN3JVXNeiRYsMrxS3W1oPBeqRoPBEpe\nJ1GO/MvgjfQt4U4Yw/uLSs0A3FmWl5GgUi/CxuW4gLWMTAgAxBfSPqWHnkiX\nBaMToTrBVXsnDGZwdh0bacuMKYBQBVh6z77bw+P78NZwMLNhYJtCXsauaUG6\nuc6COHDjoVPCbp9WTMwKVIXrwjc72KOftqVsp65+iEn4YQZbjKSrHeThk627\n8hxtR3RNU0XqhgBqO18JE1TRuzbRaEW9UlUk0X/EW8xgyIDtWnNr1kcCEJpF\nosJQp2tyYFq3YOnHwAbRF1CoOIHA9ZSogRXDbSEuA8/ZOrta06i83fgvVlJo\n7pLI\r\n=SmVH\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/system-node.cjs","type":"script","exports":{".":{"node":"./dist/system-node.cjs","default":"./dist/system.min.js"},"./s.js":"./dist/s.min.js","./dist/*":"./dist/*","./package.json":"./package.json"},"gitHead":"949272a2a44f594d5b3dfdd7448f32245dfb3f1e","scripts":{"test":"concurrently -n w: 'npm:test:*'","build":"rimraf dist && mkdirp dist && concurrently -n w: 'npm:build:*'","footprint":"concurrently -n w: 'npm:footprint:*'","test:node":"cross-env NODE_OPTIONS=--experimental-modules mocha --timeout 5000 -b test/system-node.js","build:node":"node --experimental-modules build-node.mjs","prepublish":"npm run build","test:browser":"node test/server.cjs","build:browser":"rollup -c","footprint:sjs":"cat dist/s.min.js | gzip -9f | wc -c","test:internals":"cross-env NODE_OPTIONS=\"--unhandled-rejections=none\" mocha -b test/import-map.js test/system-core.js test/url-resolution.js","build-browser-dev":"rollup -c --environment dev","footprint:systemjs":"cat dist/system.min.js | gzip -9f | wc -c","test-browser-watch":"cross-env WATCH_MODE=true node test/server.cjs"},"_npmUser":{"name":"joeldenning","email":"joeldenning@gmail.com"},"collective":{"url":"https://opencollective.com/systemjs","type":"opencollective"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"8.1.2","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"16.13.2","_hasShrinkwrap":false,"devDependencies":{"open":"^7.0.3","mocha":"^7.1.1","mkdirp":"^1.0.4","rimraf":"^3.0.2","rollup":"^2.33.3","terser":"^5.5.0","bluebird":"^3.7.2","@zeit/ncc":"^0.22.1","cross-env":"^7.0.2","node-fetch":"^2.6.0","symbol-es6":"^0.1.2","concurrently":"^5.1.0","whatwg-fetch":"^3.0.0","source-map-support":"^0.5.16","@rollup/plugin-json":"^4.0.2","rollup-plugin-terser":"^5.3.0","@rollup/plugin-replace":"^2.3.1","@jsenv/file-size-impact":"^5.2.0","@rollup/plugin-node-resolve":"^7.1.1","construct-style-sheets-polyfill":"^2.3.5"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_6.12.1_1642805639195_0.8398986924523371","host":"s3://npm-registry-packages"}},"6.12.2":{"name":"systemjs","version":"6.12.2","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@6.12.2","maintainers":[{"name":"joeldenning","email":"joeldenning@gmail.com"},{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"b5be3591b8464c0f30d355e6d8838e38cfb70f63","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-6.12.2.tgz","fileCount":34,"integrity":"sha512-m8E/zVRcfwPiCVtj7iAtL5JdfewnBVvq1HfnPlg30U3SIRCCj1sH2kDLl/PJJvgGB8rSZI65ZXmeZyQshK4aYg==","signatures":[{"sig":"MEUCIAlj1hjxgnqbQREB+PtsazUHALM1TUmoDANPMnWiXcOqAiEA6TwwyccmBQNcPr/1e0OBtYNF/DQzkBbqqDH/Rx6bOKM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":780534,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi832PACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpTiw//f8WJjvExjOEbb+DoYPyAJgL+LA37JwBB6zyCdjjlhiYaFnFp\r\n2PVkPu/70nOfFHuLG3FjNODjn/OlJGTBRUwIAhUWOe/lNkwWyfOHTld87gFg\r\nb6aLusnYxddZHYC8PJyMczCx3zhG7WXl+F0wH0/9TM62nnihngVVI/23FLYJ\r\nW052dle0bmNcHsitmo4vmXFvmZdbR3EMZONJYf2KC3Z8YWQGpJxmngutcKd1\r\ngIe/JBEGqHGf7Ar/AVM3dOtu65FZjBqLSbzUIl9mMS0aTK4SnQepRCgSjFvy\r\nksBnqw/jnFWUZ2pqJLgfw6MSJNsEM+rcBBWD80YDj4ajdDwNCzeyY05gnLWC\r\nq4f92PmVNTh2oTdlLYDGY5oJCreP+3uStq5SBDpec0jHvOEO3IJ7dzvIv7Hj\r\ndevT7aNbC7ssj1BqBlvj0zDLhuaXQPke6WRaXo54K9lav0lI6si6GePcTsNL\r\nQ9ldPuFSuSauAZ0HzOA8754k3wuYhXOMjC0XLzwqE2iWnjKYZz8AwgjmcKje\r\n0CGqo4vmzHBbKCbvShEuHCJx3o1bWzSdj/Iq0HW34X6YsmgeBkOvCpfz3QvA\r\nCWz4ocY5RKVNjQ2kBOFyilqTPKBwoJVPzV56lQgd9xF30wvaApp10JeH1MXx\r\nTf/1wBYn2IAM7RgoxiwEAjjeqcSNVYmHH2w=\r\n=Yggr\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/system-node.cjs","type":"script","exports":{".":{"node":"./dist/system-node.cjs","default":"./dist/system.min.js"},"./s.js":"./dist/s.min.js","./dist/*":"./dist/*","./package.json":"./package.json"},"gitHead":"c16ae33194ff996f8ef68bb3a0bf9900b69119ee","scripts":{"test":"chomp test","build":"chomp build"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"collective":{"url":"https://opencollective.com/systemjs","type":"opencollective"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"8.5.5","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"17.8.0","_hasShrinkwrap":false,"devDependencies":{"open":"^8.4.0","kleur":"^4.1.5","mocha":"^7.1.1","mkdirp":"^1.0.4","rimraf":"^3.0.2","rollup":"^2.33.3","terser":"^5.5.0","bluebird":"^3.7.2","node-fetch":"^2.6.0","symbol-es6":"^0.1.2","@vercel/ncc":"^0.34.0","whatwg-fetch":"^3.0.0","source-map-support":"^0.5.16","@rollup/plugin-json":"^4.0.2","rollup-plugin-terser":"^5.3.0","@rollup/plugin-replace":"^2.3.1","@jsenv/file-size-impact":"^5.2.0","@rollup/plugin-node-resolve":"^7.1.1","construct-style-sheets-polyfill":"^2.3.5"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_6.12.2_1660124558668_0.26109346333504724","host":"s3://npm-registry-packages"}},"6.12.3":{"name":"systemjs","version":"6.12.3","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@6.12.3","maintainers":[{"name":"joeldenning","email":"joeldenning@gmail.com"},{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"9c4b614dea4445523d22cda0a7188714f0c4f64c","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-6.12.3.tgz","fileCount":34,"integrity":"sha512-TtYUN86Hs8V1QGAoj9ad1xmJmZS9Lurfi8Iu8QWOKaUDDuTH0Bpfdxz9qZIdxsmvAg3WMQnZ5/pkQvloh2sr/Q==","signatures":[{"sig":"MEQCIGx+zFMP6BMttveL904fsVQhnkjM/hZ57PfXx2I7YWsnAiAOyHHpSvg5itOCaiROzQ52uSKrvwC4o4w4VzI7/8TFOQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":780568,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi/kXAACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpAgRAAmzbosYwdRH9PtB6czmJ6hXoQ9L0SToQ1VFlOdIAD7O0HpZsF\r\n8GfQxhBdboHu0UmU8FQCGvtcV48jBns8ZPlv6bPa/V73T1Q2DjqfLSK5yc/7\r\noY2DbCj+NAFNjzyDGKnyU3SEXG8wo38FSb5JeTbERTvNB/4OR495SwopBUlO\r\nHWJMwZEQ+Kum9W4kDcLhKmqL8kGZZLul5ucBDH7FNJnQfdweyXf4TpVmA5ET\r\np3IHPecOq34gMVwGvi3ffpTAwTqNSPjVP+ASQCogIDp/z2KNrlJptDXfRf8V\r\ny2RtH/pKjnK6WiIggMZ24hMO6bW3wYdv6hRGO5VBkC6g5AWpusPmRxTUG2sG\r\nikoQQ/lwvb4sTT7at9xcUntb8HbbYQNJtzC+eHSsB+rK82zqCUVJwYvXzwpu\r\nQJwMl6DRcAYXTwZedxFI84gMrjC+SkiMkKVX68KvOkeWty1ioYNOLg6CpRf7\r\nMWTjU1CShdC/gQ1aHDYJRihMbFoKRoD2X1pKXLfgyDy4RTno3Mj6cvWvC+E4\r\n+8ivyy/AIg6eNCNTqjOEOaxzoXTF5KD8f2IqNZc2QOypB9aR2D5wgRnxDzJS\r\nccZaUAi0fMinq5YagOgTr7W564mKoDwR2W7wBYLjhey3/i8j9HL1R0QcVtSW\r\nPZ69tKfr1su3yxa+zbr+QRlJyubrJ30FWp0=\r\n=X2g3\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/system-node.cjs","type":"script","exports":{".":{"node":"./dist/system-node.cjs","default":"./dist/system.min.js"},"./s.js":"./dist/s.min.js","./dist/*":"./dist/*","./package.json":"./package.json"},"gitHead":"55dadf38c6515fec58c9e20026131a0982afbbdb","scripts":{"test":"chomp test","build":"chomp build"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"collective":{"url":"https://opencollective.com/systemjs","type":"opencollective"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"8.5.5","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"17.8.0","_hasShrinkwrap":false,"devDependencies":{"open":"^8.4.0","kleur":"^4.1.5","mocha":"^7.1.1","mkdirp":"^1.0.4","rimraf":"^3.0.2","rollup":"^2.33.3","terser":"^5.5.0","bluebird":"^3.7.2","node-fetch":"^2.6.0","symbol-es6":"^0.1.2","@vercel/ncc":"^0.34.0","whatwg-fetch":"^3.0.0","source-map-support":"^0.5.16","@rollup/plugin-json":"^4.0.2","rollup-plugin-terser":"^5.3.0","@rollup/plugin-replace":"^2.3.1","@jsenv/file-size-impact":"^5.2.0","@rollup/plugin-node-resolve":"^7.1.1","construct-style-sheets-polyfill":"^2.3.5"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_6.12.3_1660831168572_0.9871352611147957","host":"s3://npm-registry-packages"}},"6.12.4":{"name":"systemjs","version":"6.12.4","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@6.12.4","maintainers":[{"name":"joeldenning","email":"joeldenning@gmail.com"},{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"15132b9c8299f0a1568279989774f4a1d9f382f0","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-6.12.4.tgz","fileCount":34,"integrity":"sha512-ha/j+KULJmavOQY3ZQ5vQ5Qp4Y9uf+lWL5ulrC7FqbhKsIyEyPDOTkHYSSKSVTwN9HimZYc0UN7rwVVK+HKwwA==","signatures":[{"sig":"MEQCIDwT9F/mYGdEpGCsB3pW87QmqvuHEEgZzvBSEmVsB/9pAiA1u+qNnmGC12B2tRmDSYIt5xBLcWdmsSbJZZPSGo7Y0A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":780540,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjCM4sACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqZdQ//Tc6yX8mTLHkIPsjumWY0NL1ZcvHK/o01lpa+dM8U8J2/FY5b\r\n138CnjCn/arl5jnaTvfM3IkccEqsmtFIXdsSOBdwOzxad4F5ASNCF0uGFhjt\r\nksTFkZQqmF53+sqySD+euRz+heKxXlYqYkWnc0Usgv1otbSbMV/urUBK7JtA\r\nO06AaZVWsrEILujxjdDQbPliW7OlPYxUg88NAp6mhDmd0EWNf/qyVRjO6ljz\r\n+8BXjDbJbQja3Uq78oL3/WcsUBmZu3BT2VrqB2JBsqTmCACT19P6/sBfxo6B\r\nu0pUbV38sl7XDBTiehv+SrI2QwxkZnRgNAqrL5FuaMVO5MOwa0v6CwbeNx6u\r\nvxlN53fg9Rn07PqFkY7gBpXqzeCA+m2ykH1bGHLK8xN7JHrnBVwM71p/QPF+\r\nCNy9l2SQIePO6gyIkXyIAYAhaMI2KTRCqOIvXyvJxU89+y9VVrDkn0P5RKgy\r\n3P5n9AZDIXTVHT1RaFqWuMTC3wSLaF8nzqh0WzsAW1ZCgxrqdLFDCB6utk9r\r\nn3GJfjYvU+hmGDQKBtt7Vm+NvbuUW7vVdbrW0IYId5MBBhjlA7vADAzpFs4L\r\nh0PmLHviJy11ef43PJ7nk2bRwGcs6la86dgr8ZsfVu5RymkSbuTnL/hZT7SC\r\nC3scmFRyrZIWvMhyUtyiLS/BBwAK9L7MlQc=\r\n=poW8\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/system-node.cjs","type":"script","exports":{".":{"node":"./dist/system-node.cjs","default":"./dist/system.min.js"},"./s.js":"./dist/s.min.js","./dist/*":"./dist/*","./package.json":"./package.json"},"gitHead":"3c64fd57468fc74165557cf6d6ccb7aec98de0fc","scripts":{"test":"chomp test","build":"chomp build"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"collective":{"url":"https://opencollective.com/systemjs","type":"opencollective"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"8.1.4","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"17.2.0","_hasShrinkwrap":false,"devDependencies":{"open":"^8.4.0","kleur":"^4.1.5","mocha":"^7.1.1","mkdirp":"^1.0.4","rimraf":"^3.0.2","rollup":"^2.33.3","terser":"^5.5.0","bluebird":"^3.7.2","node-fetch":"^2.6.0","symbol-es6":"^0.1.2","@vercel/ncc":"^0.34.0","whatwg-fetch":"^3.0.0","source-map-support":"^0.5.16","@rollup/plugin-json":"^4.0.2","rollup-plugin-terser":"^5.3.0","@rollup/plugin-replace":"^2.3.1","@jsenv/file-size-impact":"^5.2.0","@rollup/plugin-node-resolve":"^7.1.1","construct-style-sheets-polyfill":"^2.3.5"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_6.12.4_1661521452543_0.23662005669643382","host":"s3://npm-registry-packages"}},"6.12.0":{"name":"systemjs","version":"6.12.0","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@6.12.0","maintainers":[{"name":"joeldenning","email":"joeldenning@gmail.com"},{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"c184f306c8d4627b201c86afc1140ec86811dfdd","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-6.12.0.tgz","fileCount":34,"integrity":"sha512-wpwJBRnljZ7LDTe5zcpgo1Z6qYCeB1wNhKHPKaBZ6MDISWfTQqCoO+3027kfEdw2O6y/N0I6X92WEFMTRSmgTA==","signatures":[{"sig":"MEUCIQDfCPYWIF8vieM9aw18x2Hj0ztnMyRrf0HJ9Vgqy9jSvQIgEeLO+nF4KKPjTw2qNu227qKvWMwLNKSUDOjejQp+2FI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":774260,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh6zj5CRA9TVsSAnZWagAA3YUP/2FpitmEvdn0c4+q/XOO\nL6WaAzScf1JhU0UbAT4q+Kv3gOUZJEzpZdvPLgpJlGXXEMvARqmbVGg0lMh1\nA2Z0mrot0jJHDEQjQWktOFshX9hwAAPJv+MBG7T0QuYL1u2ojhH7KgXT3i7V\nNo5ZyoxmjW74c2/BBjT4aHL841jrWrL9F2Ms41SQlR9xo7f+HdrWimTCHsEV\ncv9JK+2Z46zcvUmw6x2wsMrJ9f3tV8aRi9ZRgy5ooV5BrxE1Dln0u+sNvfND\nhrjLQZVK9zKUlWyXzyCtx+/f2epZZ/6g/4IITPZ7rxJDC1CraDQ7qAHF3QPi\nEODZ1k+AKuqPQtnrIb7EvTjXZRc/AeXZCuaFMq73LBGO/uCdninlECPWzJLl\nyXxnmMJpdrOhSfY99eP36lLFGp6JQloB1jwPXrFOqquzKVZ1Sb5UJ+ktjgxd\ni4JQtc4MFut2X90cKASQjvUL52W+nrdG2sYyqPptygzq6czIm0d8o54KL4PG\ne97MgVhiEIUsOnsVuhtKr5/5RljnWcN9/wUzwneze8AHprjISalnFN2gWZLL\nO4ked0oTtLFovrSdqx12YHJNU2nKCtj4dSt4rN7h2NRrIIDdGVu/M2zMJyTS\nRZ0kcVsJDdcSX6fAKWso/NMBfER2JxEc0vA9oka5P2kZ/xfDpEcbaPcw3sWd\nkk5q\r\n=P21g\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/system-node.cjs","type":"script","exports":{".":{"node":"./dist/system-node.cjs","default":"./dist/system.min.js"},"./s.js":"./dist/s.min.js","./dist/*":"./dist/*","./package.json":"./package.json"},"gitHead":"435defcea8a0fc1756b3bcb139c0fe84fa1f78d8","scripts":{"test":"concurrently -n w: 'npm:test:*'","build":"rimraf dist && mkdirp dist && concurrently -n w: 'npm:build:*'","footprint":"concurrently -n w: 'npm:footprint:*'","test:node":"cross-env NODE_OPTIONS=--experimental-modules mocha --timeout 5000 -b test/system-node.js","build:node":"node --experimental-modules build-node.mjs","prepublish":"npm run build","test:browser":"node test/server.cjs","build:browser":"rollup -c","footprint:sjs":"cat dist/s.min.js | gzip -9f | wc -c","test:internals":"cross-env NODE_OPTIONS=\"--unhandled-rejections=none\" mocha -b test/import-map.js test/system-core.js test/url-resolution.js","build-browser-dev":"rollup -c --environment dev","footprint:systemjs":"cat dist/system.min.js | gzip -9f | wc -c","test-browser-watch":"cross-env WATCH_MODE=true node test/server.cjs"},"_npmUser":{"name":"joeldenning","email":"joeldenning@gmail.com"},"collective":{"url":"https://opencollective.com/systemjs","type":"opencollective"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"8.1.2","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"16.13.2","_hasShrinkwrap":false,"devDependencies":{"open":"^7.0.3","mocha":"^7.1.1","mkdirp":"^1.0.4","rimraf":"^3.0.2","rollup":"^2.33.3","terser":"^5.5.0","bluebird":"^3.7.2","@zeit/ncc":"^0.22.1","cross-env":"^7.0.2","node-fetch":"^2.6.0","symbol-es6":"^0.1.2","concurrently":"^5.1.0","whatwg-fetch":"^3.0.0","source-map-support":"^0.5.16","@rollup/plugin-json":"^4.0.2","rollup-plugin-terser":"^5.3.0","@rollup/plugin-replace":"^2.3.1","@jsenv/file-size-impact":"^5.2.0","@rollup/plugin-node-resolve":"^7.1.1","construct-style-sheets-polyfill":"^2.3.5"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_6.12.0_1642805497385_0.2298551155385642","host":"s3://npm-registry-packages"}},"0.14.1":{"name":"systemjs","version":"0.14.1","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.14.1","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"07d33f6795494fe4f1c763eed7d34881b0bc50f9","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.14.1.tgz","integrity":"sha512-yT8e0wr9QXnFyEgBbv+KHM1GTnB6ymK36RCiOUd4oVSbAhwwa6Qid6z/C/mqXoRGHVguceZTEx/hUcAGonVikw==","signatures":[{"sig":"MEUCIQDKA0hZsc2qyQVWls6PraAHOJp0mHD7vF4Mw6YPa9K4EQIgL5d9EBi+ESTqhf+IP7AWou/hZxTGp21osihoi/MyFjg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.src.js","_from":".","_shasum":"07d33f6795494fe4f1c763eed7d34881b0bc50f9","gitHead":"3c8a87b4b115004c82a6479eab646d895c884a23","scripts":{"test":"npm run test:6to5 && npm run test:traceur","test:babel":"qunit -c s:./dist/system.js -t ./test/test-babel.js","test:traceur":"qunit -c s:./dist/system.js -t ./test/test.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs","type":"git"},"_npmVersion":"2.5.1","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"_nodeVersion":"0.12.0","dependencies":{"es6-module-loader":"~0.14.0"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.82","uglify-js":"~2.4.13","babel-core":"^4.1.1"}},"0.14.0":{"name":"systemjs","version":"0.14.0","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.14.0","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"438db1e202a1710d75b8841b8210168f03ba79e2","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.14.0.tgz","integrity":"sha512-mQT9+UkteN+M3kNTxe3T8XLB+pdpDfG3j0eB0p0xfLp2n0u2mzu8LslRrQ2652+LoX4Qhyf5Gc3JipVihQJG2w==","signatures":[{"sig":"MEUCIEuVj4ekONTSsfEatPerNdo3aaDTVeepwyVAD4ucRXarAiEAze1V/hO+sMf1FCbwSaGZc7JkV3Kdy9pl7Nu4pRD+dH8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.src.js","_from":".","_shasum":"438db1e202a1710d75b8841b8210168f03ba79e2","gitHead":"8b27e1fe3133148ce95dcbe7abef8131b3316abf","scripts":{"test":"npm run test:6to5 && npm run test:traceur","test:babel":"qunit -c s:./dist/system.js -t ./test/test-babel.js","test:traceur":"qunit -c s:./dist/system.js -t ./test/test.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs","type":"git"},"_npmVersion":"2.5.1","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"_nodeVersion":"1.2.0","dependencies":{"es6-module-loader":"~0.14.0"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.82","uglify-js":"~2.4.13","babel-core":"^4.1.1"}},"6.12.5":{"name":"systemjs","version":"6.12.5","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@6.12.5","maintainers":[{"name":"joeldenning","email":"joeldenning@gmail.com"},{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"964e55f64ca03827b7743e272336e86386eb3d85","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-6.12.5.tgz","fileCount":34,"integrity":"sha512-Hn+mrY9nUeQloVg8pJaQh7ZkUvK+m1sunfD9fXouVLEumujeJYu3qBTs4V+YfuL6LsxQIOOtkI9HjVzuCzZCZQ==","signatures":[{"sig":"MEYCIQD79hrh6YFEkCV1B0RGEA/NNH3gJ5hik7bGHTrPVZ7VqgIhANYTZsJU9MYmjbORnX1qQqmFpE8YMBHi7yUheHHPG4Gg","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":452734,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjD0FYACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpXVQ//ah6i9O+PNukh9yQTnavVm+3cah0ljburAvAqhPMAnyTHxv9x\r\nmztLpkllvDTlTOp1RoVelcHoTFVUIltPHBOk6XYQgIStmmEYT2/SgrjA/bw1\r\ne5k7qoXipk9BqKsUmGwRln9CWNC9i7MZ6SLtlmEg8M79cya3xtIrNQ0SWDr1\r\nb7ik3eqf4iQ5Rm4gZlF8EzIbKlBnJ9dFsmdVrSOb1isOphlfN/AOL9gtyKqc\r\n8wZb7NgTPrMdX+Nik4vmvLIUMJDGgkTeoV2MjOhliItLSc8BY/dQzY6wxGTv\r\ngp7/aMJ5IaS/8lk6keGO0YTHzxahmR9Hzt3jNb7jgvWjaQBVR/nx9/M3NzjV\r\n3tMhyxVZKzhyIhQaxsklpu1YHW7sUzwqlN0sK/r0BrAjRUxenDIzqZCG5MPL\r\nE9/Tvjhb6QpFON8Ovt/OEy+8d36iEhItjlPXJWSzKN4fqS/+/4KxlHkkQoDN\r\nzb5TIPCVmtjZiBulJzyZHwqJh0iqDvyHO1PfMh8PfdkYLO//5sOd0eh/ZOM1\r\nmQOXHJnpDlPPwiyA5hfu4HXcZFTpCV/+RODMtCEoLgWS0qkaZwD1v15aIgBA\r\numXQF11xGbu9CAteCunL8RWJlVi1VxcNYsp1OJOOcN/moi5A9zKgvl1YV5u7\r\njVchXn2p8YKkq3geqg11f7BbPqegyE80BSY=\r\n=xGLs\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/system-node.cjs","type":"script","exports":{".":{"node":"./dist/system-node.cjs","default":"./dist/system.min.js"},"./s.js":"./dist/s.min.js","./dist/*":"./dist/*","./package.json":"./package.json"},"gitHead":"5ec343445a78bc9113c9eee0b2c3baadacabf8ee","scripts":{"test":"chomp test","build":"chomp build"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"collective":{"url":"https://opencollective.com/systemjs","type":"opencollective"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"8.15.0","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"16.17.0","_hasShrinkwrap":false,"devDependencies":{"open":"^8.4.0","kleur":"^4.1.5","mocha":"^7.1.1","mkdirp":"^1.0.4","rimraf":"^3.0.2","rollup":"^2.33.3","terser":"^5.5.0","bluebird":"^3.7.2","node-fetch":"^2.6.0","symbol-es6":"^0.1.2","@vercel/ncc":"^0.34.0","whatwg-fetch":"^3.0.0","source-map-support":"^0.5.16","@rollup/plugin-json":"^4.0.2","rollup-plugin-terser":"^5.3.0","@rollup/plugin-replace":"^2.3.1","@jsenv/file-size-impact":"^5.2.0","@rollup/plugin-node-resolve":"^7.1.1","construct-style-sheets-polyfill":"^2.3.5"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_6.12.5_1661944151877_0.40103538570479613","host":"s3://npm-registry-packages"}},"6.12.6":{"name":"systemjs","version":"6.12.6","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@6.12.6","maintainers":[{"name":"joeldenning","email":"joeldenning@gmail.com"},{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"147a2a9137b8f3fddaafac1d5060adf3d11212a6","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-6.12.6.tgz","fileCount":34,"integrity":"sha512-SawLiWya8/uNR4p12OggSYZ35tP4U4QTpfV57DdZEOPr6+J6zlLSeeEpMmzYTEoBAsMhctdEE+SWJUDYX4EaKw==","signatures":[{"sig":"MEUCIQCP0siF0oBpra06bjrrUgVokna+V7ijUSwuzG/5fkpqIAIgHHRXeS5Wasi/IFK42u0KYRQNJDtEWRQokM2WJrEVBUc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":452774,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjD0JhACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp+ZA/+Jf47zxMEmjq7O7C6w1c39u3tTTDhZ+32MWR6bBJO9d1HKuf9\r\nRl2Rjn+9YzGJTkwliytfbhECrIOtCpt85N0jyPCreiuijlVR2WexCEod8icw\r\n7BEQwp+SRlUIf4NVVwi2TAnJYUPHJMMo1VzLNWJDcUyGiCBvWnoV5Y6UQh5J\r\nUQQw7t+BSHl/+zDSyRdA/EcMIUxyeyfU6fwSXJ/SKeaJD7ZXm3bd2xWA8Rxg\r\nnoIbbQuBzXd+dzM00J4xWpRRihkGsvMXKIew6yCsyPVy2/rEQTP8fXJc8e8s\r\nR+AgfVPOBi/7aVoVLJArIQ9yNRLm2j2n/N6TQR6xX+O0VEVRVpFTf42/hJEv\r\nm6nT2R+CDHgXY2Fdqqes9D6puQn8hcst78qPZNewUxswgG2ILaFLyrwwA4Tb\r\nOvZHI2RfdmPIjDbLauD9v1XVcT3fUdrerSNkHyP3MX6V95P01xUsgUYGBX+z\r\ntH79L2g35ZJlMbQNlQWBMqg2JDKwtUNj92CrJPXfpWVRHG2NQi0VlVCgIQMS\r\nUD1SCuHTU1Vor6jBu0FnupYahSqNuMLrOuPPuCDlTMlYlkuT9CcCxgRVJPQq\r\nOUSY0HWdX+pf0eoHbDG1Q1yS+8vuVHwJShokVFhE487B9cOvb1WwjagMqLcw\r\n0lL4wBBX0wV1N7wEjZL69mujMM+upkZdpgU=\r\n=f62z\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/system-node.cjs","type":"script","exports":{".":{"node":"./dist/system-node.cjs","default":"./dist/system.min.js"},"./s.js":"./dist/s.min.js","./dist/*":"./dist/*","./package.json":"./package.json"},"gitHead":"d44d41fe10c7e103ec0bd90bfcb5126b77fce344","scripts":{"test":"chomp test","build":"chomp build"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"collective":{"url":"https://opencollective.com/systemjs","type":"opencollective"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"8.15.0","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"16.17.0","_hasShrinkwrap":false,"devDependencies":{"open":"^8.4.0","kleur":"^4.1.5","mocha":"^7.1.1","mkdirp":"^1.0.4","rimraf":"^3.0.2","rollup":"^2.33.3","terser":"^5.5.0","bluebird":"^3.7.2","node-fetch":"^2.6.0","symbol-es6":"^0.1.2","@vercel/ncc":"^0.34.0","whatwg-fetch":"^3.0.0","source-map-support":"^0.5.16","@rollup/plugin-json":"^4.0.2","rollup-plugin-terser":"^5.3.0","@rollup/plugin-replace":"^2.3.1","@jsenv/file-size-impact":"^5.2.0","@rollup/plugin-node-resolve":"^7.1.1","construct-style-sheets-polyfill":"^2.3.5"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_6.12.6_1661944416858_0.6141672615399454","host":"s3://npm-registry-packages"}},"0.19.43":{"name":"systemjs","version":"0.19.43","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.19.43","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"9902ce5bdaaba03413575902c6bb18bad2ddab8e","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.19.43.tgz","integrity":"sha512-u7Pye+ligjXTi7jvbUFOMBaPWIQ1JGDQJakVTXKccbAcYRXr5KesKGRUVSTX2kkMIFg1ATAeHR8h+xji4lbHsw==","signatures":[{"sig":"MEUCIQCBbHuxcV1k6HXAPdiAugu91niiny0WS7OE/HNbB2+G8gIgZ89XPqTI6tqbZbm1FwatHagx9UI6kOg6BqBtkir5VUQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","dist"],"_shasum":"9902ce5bdaaba03413575902c6bb18bad2ddab8e","gitHead":"1c7f69b3909185af454add2a73f7f402f4560ba8","scripts":{"perf":"node bench/normalize-perf.js","test":"npm run test:babel && npm run test:traceur && npm run test:typescript","build":"make","test:babel":"qunit -c s:./index.js -t ./test/test-babel.js","test:browser":"make test","test:traceur":"qunit -c s:./index.js -t ./test/test-traceur.js","test:typescript":"qunit -c s:./index.js -t ./test/test-typescript.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"4.0.5","description":"Universal dynamic module loader","directories":{},"_nodeVersion":"7.4.0","dependencies":{"when":"^3.7.5"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.105","uglify-js":"~2.4.23","babel-core":"^5.8.22","typescript":"^1.6.2"},"_npmOperationalInternal":{"tmp":"tmp/systemjs-0.19.43.tgz_1484907908420_0.1910334788262844","host":"packages-18-east.internal.npmjs.com"}},"6.2.2":{"name":"systemjs","version":"6.2.2","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@6.2.2","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"87f6baeb63f095cb3d761e009b6355fb464db80b","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-6.2.2.tgz","fileCount":31,"integrity":"sha512-w/E0mvyvz+kEpMkHqFAcFaxclCgAuu+iLbAE1F/S8E4Lv4Pk/KpamcusDnHLIpwKwa518sVBPu95z7VMbN264Q==","signatures":[{"sig":"MEYCIQCYzzo0wg3FnU0edzTOHi2kaV9svZus3uDEhoP0M43tbgIhAOSiW94AVMqeDi5VRBmxhgbI4/9OXajJbOZMXOTdjiCY","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":138699,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJePYy1CRA9TVsSAnZWagAAfT4QAKNXET/2PPt4oeASpcfI\nzjy9344K63rM9hnIxlpapqlDEKbFoe/BQAS65rIhJ/cFZk2FDOGtHdDXxNLu\nUXLPbwOU1XKGJm0S7sNxbfeDogN06iVhLprlL2gz4iU7fwSLylZX9BBn6pai\njXsRd7H2YNMEDKmiFKI0veNP9MS8Cfz7mQQ8VGNdDW2WYGROEIt8E/tbfuF3\n9GKK0lXEWlkoCxFzIAePys8S49yu5IffZkdOKphSRJgtqDqLefbFkkSSmh6J\nPg+yp2fUj9KPNbXdhsu428UMv9yeCrEGxPTmI4u9zT9EDR3j6RFASV0JhNoM\nt49NyNbhMkBQEWQHZBA/7l6Don+W0cniPKnCDYMLp9lW6k1HX/owMt3beF4h\nAv4A8Pv1Afc2cJ0/uZX8iq9Ots4d09RHMGY4Qi7b6qZQeNA+yhNuFVtTGecP\nRT75dnOju05yfZk14J+Ke3fQvkYTUy+7wu0y5m7YZ33QTmZBpNU3refGxe6+\nujctgqpYBMQlhM8bbbfIvQ6PV1HMxjPzeL0CHO/dcZOHIWcEFkfm4OcQiFag\nSxgV3uhwXEe/CTnWLBmFej5itNw2eFWNm7Y2XL+0K/+gZX1JfBi8O9Qt1K+8\np55ZndnaYEtlhcOjlEXOU69CI7FdSN+Jvu13JTW64dLTMi+JX+NOZzvta4yt\neF2J\r\n=6Qqj\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","gitHead":"9cb84ba0ee5418872c4e731d3a8db307313a900e","scripts":{"min":"npm run min:systemjs && npm run min:sjs","test":"mocha -b -r esm test/import-map.js test/system-core.js test/url-resolution.js && npm run test-browser","build":"npm run build:systemjs && npm run build:sjs && npm run min && npm run build:extras","min:sjs":"cd dist && terser s.js -c passes=2 -m --source-map -o s.min.js","build:sjs":"rollup -c --environment sjs","footprint":"npm run footprint:systemjs && npm run footprint:sjs","prepublish":"npm run build","build:extras":"bash minify-extras.sh","min:systemjs":"cd dist && terser system.js -c passes=2 -m --source-map --comments \"/SystemJS \\d/\" -o system.min.js","test-browser":"node test/server.js","footprint:sjs":"terser dist/s.js -c passes=2 -m | gzip -9f | wc -c","build:systemjs":"rollup -c","footprint:systemjs":"terser dist/system.js -c passes=2 -m | gzip -9f | wc -c"},"_npmUser":{"name":"joeldenning","email":"joeldenning@gmail.com"},"collective":{"url":"https://opencollective.com/systemjs","type":"opencollective"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"6.13.4","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"10.18.1","_hasShrinkwrap":false,"devDependencies":{"esm":"^3.2.25","opn":"^6.0.0","mocha":"^5.2.0","rollup":"^0.64.1","terser":"^3.8.1","bluebird":"^3.5.1","whatwg-fetch":"^2.0.4","rollup-plugin-replace":"^2.0.0","construct-style-sheets-polyfill":"^2.1.0"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_6.2.2_1581092020996_0.8507632266847498","host":"s3://npm-registry-packages"}},"0.19.42":{"name":"systemjs","version":"0.19.42","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.19.42","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"3916fd35075d721872f9eb1f42ad827b371634be","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.19.42.tgz","integrity":"sha512-SHzz/zN6z9UT8eEzWvP+1nUsirEmX/FlNV5rryYXfpyYAizokc6ZtBqp4Vc+7WMXQaQsd2hykgfqhn4zRA2dIg==","signatures":[{"sig":"MEQCIBuGNQT0jdTuG8g+GUZD3xmOX+UcNhWgMsRFxMhKZShpAiAah7tPG9v4ilAcQG7ZLi5WgM/PZ1Kbu6v9bIp5efA5ZA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","dist"],"_shasum":"3916fd35075d721872f9eb1f42ad827b371634be","gitHead":"afdeb3b693f6c43715932c8c30dac4d07ccf30df","scripts":{"perf":"node bench/normalize-perf.js","test":"npm run test:babel && npm run test:traceur && npm run test:typescript","build":"make","test:babel":"qunit -c s:./index.js -t ./test/test-babel.js","test:browser":"make test","test:traceur":"qunit -c s:./index.js -t ./test/test-traceur.js","test:typescript":"qunit -c s:./index.js -t ./test/test-typescript.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"4.0.5","description":"Universal dynamic module loader","directories":{},"_nodeVersion":"7.4.0","dependencies":{"when":"^3.7.5"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.105","uglify-js":"~2.4.23","babel-core":"^5.8.22","typescript":"^1.6.2"},"_npmOperationalInternal":{"tmp":"tmp/systemjs-0.19.42.tgz_1484647681664_0.8498625536449254","host":"packages-18-east.internal.npmjs.com"}},"6.2.3":{"name":"systemjs","version":"6.2.3","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@6.2.3","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"4a3dd0e832b4be0516bfb947e1354e81d1e2c05d","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-6.2.3.tgz","fileCount":31,"integrity":"sha512-2ic0xO7gnFJmw/wqXU71oXNxSp9u8bNmDeP61STh987dgROiAn4noESJE9WPNdy5EgS/fGLmHC5OjKOE5be1qg==","signatures":[{"sig":"MEUCIQDLwWBzqHOxbA0LTsutQ5ULJt7jVqyad2paO5KVzn1q5wIgRvRRmsyTedXiBBcdVBcJbvBS8qQlHTR//9530a3wgIU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":138407,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeRs8bCRA9TVsSAnZWagAAy1sP/RYIFIwTNj31fJtb1bRx\nZyolef/QoYGHJH8vvMr3KtoyBgifx7hee8mUf3EX3nNYUCE3MQq696cy8Vw7\nW4BEo2JViga2FjEbtwGJVjGPcz6UbokuWJSBqrtTDAlYidrapm7zppRkbKR5\nhnQnhMNSioXXer64/hzQ6eTIt5jH5AKeJb8dUalvVN5JrWr3/zvbHSofPB6g\nHeX5WkapNJHciZMfN/Bac+jNmH+bbzG4Cj0he4i+dJWywI5CTO6Rb9ucGJhQ\nQcWI525dCLRZuL42lJDB25vp3oM75gTJmgM4DUWYfvlaMn3FJZWm/jGqL08O\nNWKc/D+e2ovxKpyTB1n/YFKmNxBHSVHNKprrLrhULieK9y3BI29QFt8tC3z0\ncDoAG3qVsfpyABhDkQndVfGxaPjBg2FQJajyrfwSuS4qLqo24zELmDhth7J4\nDdO9rcJ55+5rZYJK3nhbAPW24U7Bb2kKZNC+peFKi6Nw0g9e+OffjcIPC9vf\nynO4jRjAEmv/CDdcGQt4aXLZWcKww1U3DUoslSF46MVakiIjjEY8yzNgYeoP\nXkyEsaANYGAQOaHPlif2mXjhS0sq+6VTJt17uvcsnqygIMDW6CvtGdkODvBg\n4pTIqMCjEuEsdS7Z3Pjbq3xxiyP5+t2vr2PW4dPIAj4Ah3WGhRghcshMmSs8\ntLM1\r\n=IDXG\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","gitHead":"dc9a1dad19d29c1252b322d6d15c543901dd1dbe","scripts":{"min":"npm run min:systemjs && npm run min:sjs","test":"mocha -b -r esm test/import-map.js test/system-core.js test/url-resolution.js && npm run test-browser","build":"npm run build:systemjs && npm run build:sjs && npm run min && npm run build:extras","min:sjs":"cd dist && terser s.js -c passes=2 -m --source-map -o s.min.js","build:sjs":"rollup -c --environment sjs","footprint":"npm run footprint:systemjs && npm run footprint:sjs","prepublish":"npm run build","build:extras":"bash minify-extras.sh","min:systemjs":"cd dist && terser system.js -c passes=2 -m --source-map --comments \"/SystemJS \\d/\" -o system.min.js","test-browser":"node test/server.js","footprint:sjs":"terser dist/s.js -c passes=2 -m | gzip -9f | wc -c","build:systemjs":"rollup -c","footprint:systemjs":"terser dist/system.js -c passes=2 -m | gzip -9f | wc -c"},"_npmUser":{"name":"joeldenning","email":"joeldenning@gmail.com"},"collective":{"url":"https://opencollective.com/systemjs","type":"opencollective"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"6.13.4","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"10.19.0","_hasShrinkwrap":false,"devDependencies":{"esm":"^3.2.25","opn":"^6.0.0","mocha":"^5.2.0","rollup":"^0.64.1","terser":"^3.8.1","bluebird":"^3.5.1","whatwg-fetch":"^2.0.4","rollup-plugin-replace":"^2.0.0","construct-style-sheets-polyfill":"^2.1.0"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_6.2.3_1581698843291_0.6260398704133194","host":"s3://npm-registry-packages"}},"0.19.41":{"name":"systemjs","version":"0.19.41","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.19.41","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"835d2c0f10bf403b551fedc875f84bb44a02c4eb","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.19.41.tgz","integrity":"sha512-8E9CmZ01dIr52po2LNhc3QuKyeSTyvQfshHMi3lekSbEOdR9OAUOX2X+wPKunZX3CpudM6w3r8eTCjGQrK79Wg==","signatures":[{"sig":"MEQCIBz4RFgFU0a4I21CvYC31FpEsWOngE4Yzqb8v4hf597EAiBk1q+eqjz5gszJk04/ZJYlJzcbfZ4++QoyGXAW6OV06Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","dist"],"_shasum":"835d2c0f10bf403b551fedc875f84bb44a02c4eb","gitHead":"ab749f32a7c969686ae929f42518a925e8d9799b","scripts":{"perf":"node bench/normalize-perf.js","test":"npm run test:babel && npm run test:traceur && npm run test:typescript","build":"make","test:babel":"qunit -c s:./index.js -t ./test/test-babel.js","test:browser":"make test","test:traceur":"qunit -c s:./index.js -t ./test/test-traceur.js","test:typescript":"qunit -c s:./index.js -t ./test/test-typescript.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"3.10.3","description":"Universal dynamic module loader","directories":{},"_nodeVersion":"6.6.0","dependencies":{"when":"^3.7.5"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.105","uglify-js":"~2.4.23","babel-core":"^5.8.22","typescript":"^1.6.2"},"_npmOperationalInternal":{"tmp":"tmp/systemjs-0.19.41.tgz_1478789990263_0.5723878412973136","host":"packages-18-east.internal.npmjs.com"}},"6.2.0":{"name":"systemjs","version":"6.2.0","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@6.2.0","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"035fc59a0905d33d7a7f8d34227200c7904fddde","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-6.2.0.tgz","fileCount":31,"integrity":"sha512-lGqkCFHs/uwyzC64LRVA4gCubYbipBwueCyYVHE8UOm8tSA8ixwrkyxut0c/PyF8Kg4Iq9tt2PXsXyVffolrpw==","signatures":[{"sig":"MEQCIFYEIFBgmDpoB2GVC9wkc/X5VK6f0x4fdaNaeNah0wbtAiAMyh6emJK/tTyXfpYxtT70mRnNpzKKnn8K3aIvDwiFWA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":137398,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeNcWKCRA9TVsSAnZWagAAOIsP/ArQjMCqHAf8ZqZmU5EW\nQM2GU0904TJvH3KAFwtq5X568lft8paap+WdT75jNBYuPFsVweI8tpHnQwdo\na9A2GJVJzFNmrffWkb5k9fXblvq4iHNoY+kqbo6URyOkkCbVgtNnYVYFSrPr\nQotxSL8XRfoOUE8p4UxSgtMml+ue9VHuR+QAIIfZDMBxdT9bcDmInaU+UGbQ\nu9fhEuquC/BzKv86zta7sB90YvRB1fOowdAVGLQYL+C8rlA9yZ3fkOrRwRaz\nv1IjwySGDXqV+GhL4ukkRuJdexn9BNr5W2Igo/iOJX5XS8GWsM3nEn1LS8mF\n6JCe+oD+AwNgc4Csd8YcBoVu2I7JWZgfD3IcT7B7R14hUtITTgszN3WLBFRM\ntv0C6xifxhwWayooN3hq2lijmlFewvzgdjF/r2E2XWKBMEpyZj8mb7JQ49HM\nlnqDnxs5DwBM1pN0CmDbiKwB6BVRM6Ppmv0hivbGD3xj+Vhm1LlAH1I1ii+o\nb7gizEpETscZBVuSsM1IcgWc7tF/swRGayw3l8fNEXiQ7fmxPQqbEsC1bUfl\n+sbiqO3whbpvOpAe87Vbx1u7T/V4Sh5uSYtiLyxaa/+3LLWYC/8Dr+jKgVlF\nX6DQZTMtMJ5zYHB2RkqjkellhyrjYM0f/4W+UX7ax88dyuxN9b8YA3C/R0tO\n+uHD\r\n=QcWG\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","gitHead":"c0a3aa2e147f59194ec7f54fac6ec02bace3c6e4","scripts":{"min":"npm run min:systemjs && npm run min:sjs","test":"mocha -b -r esm test/import-map.js test/system-core.js test/url-resolution.js && npm run test-browser","build":"npm run build:systemjs && npm run build:sjs && npm run min && npm run build:extras","min:sjs":"cd dist && terser s.js -c passes=2 -m --source-map -o s.min.js","build:sjs":"rollup -c --environment sjs","footprint":"npm run footprint:systemjs && npm run footprint:sjs","prepublish":"npm run build","build:extras":"bash minify-extras.sh","min:systemjs":"cd dist && terser system.js -c passes=2 -m --source-map --comments \"/SystemJS \\d/\" -o system.min.js","test-browser":"node test/server.js","footprint:sjs":"terser dist/s.js -c passes=2 -m | gzip -9f | wc -c","build:systemjs":"rollup -c","footprint:systemjs":"terser dist/system.js -c passes=2 -m | gzip -9f | wc -c"},"_npmUser":{"name":"joeldenning","email":"joeldenning@gmail.com"},"collective":{"url":"https://opencollective.com/systemjs","type":"opencollective"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"6.13.4","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"12.14.1","_hasShrinkwrap":false,"devDependencies":{"esm":"^3.2.25","opn":"^6.0.0","mocha":"^5.2.0","rollup":"^0.64.1","terser":"^3.8.1","bluebird":"^3.5.1","whatwg-fetch":"^2.0.4","rollup-plugin-replace":"^2.0.0","construct-style-sheets-polyfill":"^2.1.0"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_6.2.0_1580582282371_0.15922007905714475","host":"s3://npm-registry-packages"}},"0.19.40":{"name":"systemjs","version":"0.19.40","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.19.40","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"158f64a9f4ef541a7fda6b40e527ee46b6c54cd0","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.19.40.tgz","integrity":"sha512-EPQiJqF4s5NUKupaGANd7UO8F52uXu0gcdGdwvssMURZGOYtMZyNYb5aFJxEYJszXLnY4uTsj+QCq/uQXKsNDw==","signatures":[{"sig":"MEUCIEvaQKE83hpAbiYnMsOZ9B1AruT8Y76a426p3dumuGg0AiEAhXgO+cN+G4flx6mgA+YeEntoPYSfgODb675z+JlPQ3s=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","dist"],"_shasum":"158f64a9f4ef541a7fda6b40e527ee46b6c54cd0","gitHead":"9ae69b905f93df449357310b0b53de8c3e919e17","scripts":{"perf":"node bench/normalize-perf.js","test":"npm run test:babel && npm run test:traceur && npm run test:typescript","build":"make","test:babel":"qunit -c s:./index.js -t ./test/test-babel.js","test:browser":"make test","test:traceur":"qunit -c s:./index.js -t ./test/test-traceur.js","test:typescript":"qunit -c s:./index.js -t ./test/test-typescript.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"3.10.3","description":"Universal dynamic module loader","directories":{},"_nodeVersion":"6.6.0","dependencies":{"when":"^3.7.5"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.105","uglify-js":"~2.4.23","babel-core":"^5.8.22","typescript":"^1.6.2"},"_npmOperationalInternal":{"tmp":"tmp/systemjs-0.19.40.tgz_1477399572911_0.7748872055672109","host":"packages-12-west.internal.npmjs.com"}},"6.2.1":{"name":"systemjs","version":"6.2.1","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@6.2.1","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"2ac3a78759643adffeb59033afdd84c780431ef5","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-6.2.1.tgz","fileCount":31,"integrity":"sha512-SKArYDm0BtIzWYXnBeEvcRrpAwTsHA2IEpq+Pcug/fKRk+RMyBKMi7ee+aG7Ws6tuaREW0Ottd6dA9zTFbwFfw==","signatures":[{"sig":"MEUCIF2OZ8xuOOQQQo3Kvgo4IVHUU3sxbzagxCPnWKoRoR9NAiEAto94wCAKlE317A8prq67mIacyVlh1tT1D03gMLl6ZrA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":138146,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJePEM2CRA9TVsSAnZWagAAIWoP/2Carcd0raZUXhLQAvOs\nkoSytdqC2a0zxPx82zdIvF+jZBu2KERe0ORQdDgFfOuy2CS5pEt6PbXa/nFH\nxdo/LvFbDvi2sIhy4guDQVDmN6p5PCv6D8mDdFisVz8pwmXmxkNM25ypWopm\nQXg5vv0k3pBaUFhzm5iYW8T2NVgl6rF2Hz8MT/odezULzs2GbNJirGJb5nMn\n+DS80UeP211MMhSJ7+ZNH9yyM2xs3TKb0KmJ9i0HlP8DZyDSVabjEY+91O3B\nVK4lqMMXWn8jkzrXTpJv1AY/eTfInEQTaiv0v15moA7UmFk24h/HB5boqGkU\nqFLd9x4ywduz5gJ0Q+nsaV2gdryuVzXwJe7UU9Kv57YsFE59PZZizkHguMPf\neONp0U3fzNUXyw52v6BMfXAx9ytcnQoEETNMpi1yV9rR8jOvReB+3uZbrmrP\nWf0ShUHKFjW5jcAgqY9N4c0YnmXjZWiZT+iQ3FnzmFlPTC801fZ6u4EA8hgO\nwn9akK9jVjs5GgEto0pOIdR1B9xoB83K0fyLN867ItV+Xto4Evjfph9oJ6BA\nGsbdqprIG1Q+aUbYMDx8P8FlzidyMKPbQRIzViReInwh2EBDTCfn/fppSrWt\nep9/FekXbBlnGdbABxbWk2SpzwjP1Xv7jR9YIOTKvXbVrUb6Mj2TJR3EhXnq\ngoLD\r\n=wuYL\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","gitHead":"2ff58c9e887d33345e9ad1e679f347374e770eac","scripts":{"min":"npm run min:systemjs && npm run min:sjs","test":"mocha -b -r esm test/import-map.js test/system-core.js test/url-resolution.js && npm run test-browser","build":"npm run build:systemjs && npm run build:sjs && npm run min && npm run build:extras","min:sjs":"cd dist && terser s.js -c passes=2 -m --source-map -o s.min.js","build:sjs":"rollup -c --environment sjs","footprint":"npm run footprint:systemjs && npm run footprint:sjs","prepublish":"npm run build","build:extras":"bash minify-extras.sh","min:systemjs":"cd dist && terser system.js -c passes=2 -m --source-map --comments \"/SystemJS \\d/\" -o system.min.js","test-browser":"node test/server.js","footprint:sjs":"terser dist/s.js -c passes=2 -m | gzip -9f | wc -c","build:systemjs":"rollup -c","footprint:systemjs":"terser dist/system.js -c passes=2 -m | gzip -9f | wc -c"},"_npmUser":{"name":"joeldenning","email":"joeldenning@gmail.com"},"collective":{"url":"https://opencollective.com/systemjs","type":"opencollective"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"6.13.4","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"10.18.1","_hasShrinkwrap":false,"devDependencies":{"esm":"^3.2.25","opn":"^6.0.0","mocha":"^5.2.0","rollup":"^0.64.1","terser":"^3.8.1","bluebird":"^3.5.1","whatwg-fetch":"^2.0.4","rollup-plugin-replace":"^2.0.0","construct-style-sheets-polyfill":"^2.1.0"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_6.2.1_1581007670068_0.2677664376476583","host":"s3://npm-registry-packages"}},"0.19.47":{"name":"systemjs","version":"0.19.47","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.19.47","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"c8c93937180f3f5481c769cd2720763fb4a31c6f","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.19.47.tgz","integrity":"sha512-6P+63y7bQhZXqOcim7QU0TKEjCmQArFkKa+CxlDchIerej7wrXLUoyGuWk+L0yC5rYrZ5LI6Eh1QOawttQq5xw==","signatures":[{"sig":"MEQCIBKGOtO9xK62K8EfWQXe8bId1EVJmX0Eqp0v+Bf7uPIRAiB7jM5JcqNKxKIa4fWz9rf9XkvxIDnBVLLPql0Bq52tvQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","dist"],"_shasum":"c8c93937180f3f5481c769cd2720763fb4a31c6f","gitHead":"fd7a34c5e356146be94b902aa974df9ed9f766ae","scripts":{"perf":"node bench/normalize-perf.js","test":"npm run test:babel && npm run test:traceur && npm run test:typescript","build":"make","test:babel":"qunit -c s:./index.js -t ./test/test-babel.js","test:browser":"make test","test:traceur":"qunit -c s:./index.js -t ./test/test-traceur.js","test:typescript":"qunit -c s:./index.js -t ./test/test-typescript.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"4.1.2","description":"Universal dynamic module loader","directories":{},"_nodeVersion":"8.0.0-nightly20170226813b312b0e","dependencies":{"when":"^3.7.5"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.105","uglify-js":"~2.4.23","babel-core":"^5.8.22","typescript":"^1.6.2"},"_npmOperationalInternal":{"tmp":"tmp/systemjs-0.19.47.tgz_1490257667612_0.4469820761587471","host":"packages-18-east.internal.npmjs.com"}},"0.19.46":{"name":"systemjs","version":"0.19.46","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.19.46","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"c04574b3335f052a0e3c7a00ee4188c6e4c1e38e","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.19.46.tgz","integrity":"sha512-zBLN6GA9RCXjW2he1QcXnto3b4JtEt7tIbnUI5vcDUuVyLpUWwOKTSMDItW/CXKNNtpdgWzP2RwCrmIbEue9MA==","signatures":[{"sig":"MEYCIQCOpLfR5DzES5EZWYp9zig70mt8YNUBfAsErSXZsGxHRwIhAKqrjt6PX5lk35MjpdgGEQW+z3toZv4yaKgt3UWMV2Hj","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","dist"],"_shasum":"c04574b3335f052a0e3c7a00ee4188c6e4c1e38e","gitHead":"e38941d64f3883b463fc7b4580265128910de6b3","scripts":{"perf":"node bench/normalize-perf.js","test":"npm run test:babel && npm run test:traceur && npm run test:typescript","build":"make","test:babel":"qunit -c s:./index.js -t ./test/test-babel.js","test:browser":"make test","test:traceur":"qunit -c s:./index.js -t ./test/test-traceur.js","test:typescript":"qunit -c s:./index.js -t ./test/test-typescript.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"4.0.5","description":"Universal dynamic module loader","directories":{},"_nodeVersion":"7.4.0","dependencies":{"when":"^3.7.5"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.105","uglify-js":"~2.4.23","babel-core":"^5.8.22","typescript":"^1.6.2"},"_npmOperationalInternal":{"tmp":"tmp/systemjs-0.19.46.tgz_1485846103700_0.5416357342619449","host":"packages-12-west.internal.npmjs.com"}},"0.19.45":{"name":"systemjs","version":"0.19.45","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.19.45","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"897010fb172f0016601b93b86e7f17568c52d495","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.19.45.tgz","integrity":"sha512-3FFI6GXxoak7iAXfaWB1GEPUcB19GFG9OoIdtGyORRolD+qBsqpofLZ359XLCdOa8fl10SqXYzsCRVw50VB6Tw==","signatures":[{"sig":"MEUCIQC48RlX6Civ7EZ7O9kndWPs8dZYTa6nTIZD6i/wqC6YlAIgTxTAkDfxXXrbHH6LML4wAPq3wMCalrnbWn6xP1b2KAc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","dist"],"_shasum":"897010fb172f0016601b93b86e7f17568c52d495","gitHead":"670ea33176dd4439fd15e8e2f0e346903bcb3237","scripts":{"perf":"node bench/normalize-perf.js","test":"npm run test:babel && npm run test:traceur && npm run test:typescript","build":"make","test:babel":"qunit -c s:./index.js -t ./test/test-babel.js","test:browser":"make test","test:traceur":"qunit -c s:./index.js -t ./test/test-traceur.js","test:typescript":"qunit -c s:./index.js -t ./test/test-typescript.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"4.0.5","description":"Universal dynamic module loader","directories":{},"_nodeVersion":"7.4.0","dependencies":{"when":"^3.7.5"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.105","uglify-js":"~2.4.23","babel-core":"^5.8.22","typescript":"^1.6.2"},"_npmOperationalInternal":{"tmp":"tmp/systemjs-0.19.45.tgz_1485503535434_0.25721343932673335","host":"packages-18-east.internal.npmjs.com"}},"0.19.44":{"name":"systemjs","version":"0.19.44","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.19.44","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"6ff92e241d5e288dce389f039f32a8a64a582707","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.19.44.tgz","integrity":"sha512-V5P9z7b5p7Y/bdW/liEPy1RUIV8ePyjipudZyzoC8TpshWgQCTFpNlzMTalhsujxocylzIU6Loi3LMCr4iK9EA==","signatures":[{"sig":"MEUCIFBnPYtbBzJWSSWaRXpZN06nsVVrDlpPVta8gdzST7cmAiEA5tWsYiJs8F0KzyY0w9btY44yhYU1oQL0n4CXVPYDshE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","dist"],"_shasum":"6ff92e241d5e288dce389f039f32a8a64a582707","gitHead":"b389c4141ec668db86e419212dd2d86cb7d8e5b1","scripts":{"perf":"node bench/normalize-perf.js","test":"npm run test:babel && npm run test:traceur && npm run test:typescript","build":"make","test:babel":"qunit -c s:./index.js -t ./test/test-babel.js","test:browser":"make test","test:traceur":"qunit -c s:./index.js -t ./test/test-traceur.js","test:typescript":"qunit -c s:./index.js -t ./test/test-typescript.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"4.0.5","description":"Universal dynamic module loader","directories":{},"_nodeVersion":"7.4.0","dependencies":{"when":"^3.7.5"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.105","uglify-js":"~2.4.23","babel-core":"^5.8.22","typescript":"^1.6.2"},"_npmOperationalInternal":{"tmp":"tmp/systemjs-0.19.44.tgz_1485410916183_0.40679145511239767","host":"packages-18-east.internal.npmjs.com"}},"6.2.6":{"name":"systemjs","version":"6.2.6","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@6.2.6","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"9e529d6eb4a17929d2052ca0e4699ad5fb0eeed1","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-6.2.6.tgz","fileCount":31,"integrity":"sha512-cIGKuf8PwDPsiuC+op7tiyvQTWLDzzXYSx9aYmSrHiz6mVal6VT7uAS0gTEBs5WIWc03RqhvnNbNgodaauBsbg==","signatures":[{"sig":"MEYCIQDx3Ug5WZ5WVHfQ7V5nhSE4oUfMSAqxn71InJaOB1i31wIhAKEjX4CFGP1FD3ceDZmEy5bUSB0tHZ0I7HmfHKXfU/DF","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":140491,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJebmjVCRA9TVsSAnZWagAAkvMP/1aELerglFMXJneEPcsA\n7vfV17IzPYyz06h/iHgvR+fph6SQXtLhk8oayAP/tbqxu4lT06fj9F6wW+Yj\n5L75Sken67UZEeB/Q6a8Ffn7J6935gEvHBlLXkezR+bIMltH7bkNkikc6GQU\n+MjzJd6ggvagS7zbBSjqDwPdbIEDbQ6VKgCCKdTbFAMjaN2XFt0tWvPcGRrN\nIB0bDy/Z5hveCp85t15taWss8a1mgAUzDSaxjrzx46Xm5cQlBT/IpuH8Seb6\nCa+AYe4b6rN9TlriPwcHAHp57HSUWkLYqETOa/Y2WjXMshLjPO5oxUDM5g6c\nkcV11lE2jmReNZ8eWFSdBl1BVWO7dFFzNk/3auvwpDwLdq9tsAO1u8FyJLdl\n9rjKXqiGaR85HbLyYtAbYs4PGrAJOcPcUBpSXOcpDSrWUg0fMnxiLZnVQ8iy\nnc+0PwYa93ciEOKwLQPUv9xK6TQiej+TMTfffJ+sSWKMzb3pJH2EAV/J6k/E\n79AxOotzpJr3RdbTdjkYovumEE0/vIuOwYh+QEZCMj3Wuumdhp5VLVX+Kqi/\n7p+KySyEzMAPTRw3rObXvWJ46UtLYjRx9PrZCScOP8GwiKVVBtAC+jgXfo+M\na5tZY3Mt7VZUdOggxFKc8PK2jP6p59OmLP7k5uANAZW6ErEr6tIb26iXXPEC\ny3ao\r\n=yKKO\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","gitHead":"0f1161d86e6d84642d2d94b3f686f0028959297b","scripts":{"min":"npm run min:systemjs && npm run min:sjs","test":"mocha -b -r esm test/import-map.js test/system-core.js test/url-resolution.js && npm run test-browser","build":"npm run build:systemjs && npm run build:sjs && npm run min && npm run build:extras","min:sjs":"cd dist && terser s.js -c passes=2 -m --source-map -o s.min.js","build:sjs":"rollup -c --environment sjs","footprint":"npm run footprint:systemjs && npm run footprint:sjs","prepublish":"npm run build","build:extras":"bash minify-extras.sh","min:systemjs":"cd dist && terser system.js -c passes=2 -m --source-map --comments \"/SystemJS \\d/\" -o system.min.js","test-browser":"node test/server.cjs","footprint:sjs":"terser dist/s.js -c passes=2 -m | gzip -9f | wc -c","build:systemjs":"rollup -c","footprint:systemjs":"terser dist/system.js -c passes=2 -m | gzip -9f | wc -c","test-browser-watch":"WATCH_MODE=true node test/server.cjs"},"_npmUser":{"name":"joeldenning","email":"joeldenning@gmail.com"},"collective":{"url":"https://opencollective.com/systemjs","type":"opencollective"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"6.13.7","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"12.15.0","_hasShrinkwrap":false,"devDependencies":{"esm":"^3.2.25","opn":"^6.0.0","mocha":"^5.2.0","rollup":"^0.64.1","terser":"^3.8.1","bluebird":"^3.5.1","whatwg-fetch":"^2.0.4","rollup-plugin-replace":"^2.0.0","construct-style-sheets-polyfill":"^2.1.0"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_6.2.6_1584294101244_0.4005991123275694","host":"s3://npm-registry-packages"}},"6.2.4":{"name":"systemjs","version":"6.2.4","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@6.2.4","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"14be849f3fe6822a9f9048038043f6dc37476ded","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-6.2.4.tgz","fileCount":31,"integrity":"sha512-e++CM66/hoVcpWyfj2TVdj4pqMq8PQQLPgQUjb17W0uD7fpRYmO/ahmNfSDwtLoXxF03YUrBcLgg8RahwpZVig==","signatures":[{"sig":"MEYCIQDqeRhtgalnSkOX8bhKycUGMj4k33Az3xa4OemdQiSF9QIhAIW2QRW6A8+zLEjoldxP4E4JCM/ESnV1rUERg6X1xj2d","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":138779,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeUzGLCRA9TVsSAnZWagAAQcMP/jnZbYa3uAVmhIWv7NF3\n89NflV6oKxpy5gU6ZB6uJdSKTqVixLDHoIvzE2rSTSSo09qrWRHBMHbdl+6e\nJ4oyv8rLnA7OXTWStgJqqQ/NFYiny4+bEzmRZIxDd+XzVscc4J9TYOrGEaJX\nlZ8cInFR5gNgiflYplIiClAhI2Zpbs37DOW0Ag3z8brUGmWZMjp8cVrCjYBS\nGa295c4pXQyagRropBp9p/B7mYAZuIG/DypaGoFNtdfbdOXrhjg0GW9Q3WUR\nlWrKmWnimcqKcx0gP5YNIl68Zgmdd+P0ANkT7ZFU+yAssunCYOKlhfyprSyZ\nSp7X3ZfFIPZtFcVBq93FQ5y+7j0XN0WGDtmuXIDVZZDGdmvlrZiz8bZHYhqP\nuVI+WBbLrA3wlfxiVJTn2IhlZd09yQPxqX6FUIHRpLMhA4i6dg5mtKbI7RCd\nx2m9V4cblpEPmcw5upNc+GD/HS/ozUXseL5G6oavqk2d+9L1P2r9aFPK3BTi\nbg+JOIbpbe3kqN7V6oPat0XlY4kkJxcYF0/i2S5VEIExL78EI5W46ZGuibTV\nRtxAjvYc1t/FRsNDNPnTEYTTTdMbN6wgNzUgJHNGDP02KX7BIBSs/QfgAWLF\nft1tPOZYJ8WKAGWHJVITii1by+MWiFHeXrR0s5wwbOdvp4vhdMvvCdw756Lw\nYqgi\r\n=FGsS\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","gitHead":"6caaee592172954bbf65bd8490212286f6e38754","scripts":{"min":"npm run min:systemjs && npm run min:sjs","test":"mocha -b -r esm test/import-map.js test/system-core.js test/url-resolution.js && npm run test-browser","build":"npm run build:systemjs && npm run build:sjs && npm run min && npm run build:extras","min:sjs":"cd dist && terser s.js -c passes=2 -m --source-map -o s.min.js","build:sjs":"rollup -c --environment sjs","footprint":"npm run footprint:systemjs && npm run footprint:sjs","prepublish":"npm run build","build:extras":"bash minify-extras.sh","min:systemjs":"cd dist && terser system.js -c passes=2 -m --source-map --comments \"/SystemJS \\d/\" -o system.min.js","test-browser":"node test/server.js","footprint:sjs":"terser dist/s.js -c passes=2 -m | gzip -9f | wc -c","build:systemjs":"rollup -c","footprint:systemjs":"terser dist/system.js -c passes=2 -m | gzip -9f | wc -c"},"_npmUser":{"name":"joeldenning","email":"joeldenning@gmail.com"},"collective":{"url":"https://opencollective.com/systemjs","type":"opencollective"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"6.13.4","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"12.15.0","_hasShrinkwrap":false,"devDependencies":{"esm":"^3.2.25","opn":"^6.0.0","mocha":"^5.2.0","rollup":"^0.64.1","terser":"^3.8.1","bluebird":"^3.5.1","whatwg-fetch":"^2.0.4","rollup-plugin-replace":"^2.0.0","construct-style-sheets-polyfill":"^2.1.0"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_6.2.4_1582510475116_0.19536346255812287","host":"s3://npm-registry-packages"}},"6.2.5":{"name":"systemjs","version":"6.2.5","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@6.2.5","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"6b01928066704af8d12c56dfb04dd9d8fabcbb36","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-6.2.5.tgz","fileCount":31,"integrity":"sha512-Jw1FOgzxG+wIi+ewEPyYKsqxR3IQOQWMwFh1o7C0VfLYoBcVDYSg8EFrKCisUD+5+/KecrDC+NSy4exkl7QRdw==","signatures":[{"sig":"MEYCIQDOHvr681Do7IvS5XAbXvv2+dQLjmIdhYCccoiyB5i9NAIhAMOgkcT2EWp80joh7BMUzOK1AQzmIdTQF46BZz6L4/PA","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":139036,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeWEHOCRA9TVsSAnZWagAA9EwP/06j8sVV+o8cM5/G+ced\nLQPjvcPWffhkFhGFZk3odIZqF4tEvnHI6XrZX4cTjReq53Abx2vH4njr7/Dh\nX/DJPl1brT8vP4qVyJ/mLjCAIJICaDElHdG+Km961U3Jrujb4KJXgN5gdaoE\nwUJZaWFNVvDhs5m9unye1PN+hmrXT0liKf34gnMy0xFu1PQbJyX4p2b3fIqh\nKU5fZeOR01jXFeajH5NWsJUYn2sCtj/yszyOn9WZo3n1ijAlzDJJYiI314yX\nZujf7/TIAqViIgBL6yWuS2WORqU/D25Sj6wcZh527Ebvah29OV5NSoesYONz\nkdvB/bo04oS5qEGDHd31wtedsq+5xr2sc4bQ8+sSJaWdtgFxNuBFUqUN/wXE\n2Vji+5EDdUqOTAnbZdkanxvQnFa2QKQlRLzwEy8ieJzfjFGty0JcPjqqTwcr\nxjftVeJTFDr1juW3ZXvlwras5hPFLhZ5+M940eKnTqX70Plu/y6z+SBFV6kB\nDQSQPW8RV6zoJlQ/fo3mp+Mdejj9zSP9sB6HAX4z3nEf/uGqMw0wYB96+qeu\n5LSkpUS/WZVOqtR+xjYv5t+hGcmMaJ95SOlQKUQHv5rxswtc8iJ2imnL4+vZ\nQ205d1A0EzLu3Yg5WKT7tg0dc3YLjqclqZCs5AhEHrv7Uh1M3/zSEjSV3Y+e\n6GTi\r\n=d257\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","gitHead":"10fae8c5801289bd4a4ecdc5be3d6b6c070f403d","scripts":{"min":"npm run min:systemjs && npm run min:sjs","test":"mocha -b -r esm test/import-map.js test/system-core.js test/url-resolution.js && npm run test-browser","build":"npm run build:systemjs && npm run build:sjs && npm run min && npm run build:extras","min:sjs":"cd dist && terser s.js -c passes=2 -m --source-map -o s.min.js","build:sjs":"rollup -c --environment sjs","footprint":"npm run footprint:systemjs && npm run footprint:sjs","prepublish":"npm run build","build:extras":"bash minify-extras.sh","min:systemjs":"cd dist && terser system.js -c passes=2 -m --source-map --comments \"/SystemJS \\d/\" -o system.min.js","test-browser":"node test/server.js","footprint:sjs":"terser dist/s.js -c passes=2 -m | gzip -9f | wc -c","build:systemjs":"rollup -c","footprint:systemjs":"terser dist/system.js -c passes=2 -m | gzip -9f | wc -c"},"_npmUser":{"name":"joeldenning","email":"joeldenning@gmail.com"},"collective":{"url":"https://opencollective.com/systemjs","type":"opencollective"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"6.13.7","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"13.9.0","_hasShrinkwrap":false,"devDependencies":{"esm":"^3.2.25","opn":"^6.0.0","mocha":"^5.2.0","rollup":"^0.64.1","terser":"^3.8.1","bluebird":"^3.5.1","whatwg-fetch":"^2.0.4","rollup-plugin-replace":"^2.0.0","construct-style-sheets-polyfill":"^2.1.0"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_6.2.5_1582842317579_0.07457306230614469","host":"s3://npm-registry-packages"}},"0.19.32":{"name":"systemjs","version":"0.19.32","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.19.32","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"02918a539f9b4c403fbe75139355d597ea612364","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.19.32.tgz","integrity":"sha512-YV27cS2yevMv9kGL/CJEtNOycD69AttAqhzdIO+85QiblBGSptVoKSQ0sv0EXXinoc06FUssqi42Yr/Lq5+enw==","signatures":[{"sig":"MEYCIQCVejGn5xm+Kz/hDOOdfKkY3YTxszg6NgsH7BvA4MgXPAIhANrn91EO5J2aUOY5EfBxJPbVsNkCCoFrEscEnziInzZ3","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","dist"],"_shasum":"02918a539f9b4c403fbe75139355d597ea612364","gitHead":"680f800c9e205cc24cc60f18006e55356c6e9570","scripts":{"perf":"node bench/normalize-perf.js","test":"npm run test:babel && npm run test:traceur && npm run test:typescript","build":"make","test:babel":"qunit -c s:./index.js -t ./test/test-babel.js","test:browser":"make test","test:traceur":"qunit -c s:./index.js -t ./test/test-traceur.js","test:typescript":"qunit -c s:./index.js -t ./test/test-typescript.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"3.10.3","description":"Universal dynamic module loader","directories":{},"_nodeVersion":"6.3.1","dependencies":{"when":"^3.7.5"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.105","uglify-js":"~2.4.23","babel-core":"^5.8.22","typescript":"^1.6.2"},"_npmOperationalInternal":{"tmp":"tmp/systemjs-0.19.32.tgz_1469448863946_0.39348947373218834","host":"packages-16-east.internal.npmjs.com"}},"0.19.31":{"name":"systemjs","version":"0.19.31","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.19.31","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"8bfbeb257323c46c0398fa5ccbfeb8dcb70c7353","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.19.31.tgz","integrity":"sha512-HdRq0zhtWNMCHwNMRrhzISa9aM8wxw9RPgFC+njx3ygFBd8lQ7d1mxEGJRTfU1t9CWBAbzNcMBoI66CQyZ3I1A==","signatures":[{"sig":"MEUCICrxOd2bFnInoFMBb2iamksbahI2vG59O0fvClCMZnHUAiEAi934mi1c69b2VucGxZ904M2S7uK+0cbj6USMY2sGkgs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","dist"],"_shasum":"8bfbeb257323c46c0398fa5ccbfeb8dcb70c7353","gitHead":"f94507b22bc5aff669e9d404d43a6bd6e60fcf42","scripts":{"perf":"node bench/normalize-perf.js","test":"npm run test:babel && npm run test:traceur && npm run test:typescript","build":"make","test:babel":"qunit -c s:./index.js -t ./test/test-babel.js","test:browser":"make test","test:traceur":"qunit -c s:./index.js -t ./test/test-traceur.js","test:typescript":"qunit -c s:./index.js -t ./test/test-typescript.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"3.8.9","description":"Universal dynamic module loader","directories":{},"_nodeVersion":"6.2.0","dependencies":{"when":"^3.7.5"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.105","uglify-js":"~2.4.23","babel-core":"^5.8.22","typescript":"^1.6.2"},"_npmOperationalInternal":{"tmp":"tmp/systemjs-0.19.31.tgz_1465688640040_0.31686317874118686","host":"packages-16-east.internal.npmjs.com"}},"0.19.30":{"name":"systemjs","version":"0.19.30","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.19.30","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"f33bbbd0c2c3ad8e04c3ccc47250bb67c1aa4ffa","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.19.30.tgz","integrity":"sha512-32u8/If6OT4s5J1GMjPRDEIBdiLuLq3oppHZgH0GShd5ni0uluufcopbs6kDYZbRrp2O9zOAP4RXo/F3EFpIVA==","signatures":[{"sig":"MEYCIQDDOTatW5TtMmNSHvdscxf1QjNHdNXrltteQUXWlGWR3gIhAKXNqyu+tv1JVXUH3BgQ/rAxltDG9vMf8WHPjcH2Nda6","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","dist"],"_shasum":"f33bbbd0c2c3ad8e04c3ccc47250bb67c1aa4ffa","gitHead":"263174f4aa5a87775772007bace49dcd013cd482","scripts":{"perf":"node bench/normalize-perf.js","test":"npm run test:babel && npm run test:traceur && npm run test:typescript","build":"make","test:babel":"qunit -c s:./index.js -t ./test/test-babel.js","test:browser":"make test","test:traceur":"qunit -c s:./index.js -t ./test/test-traceur.js","test:typescript":"qunit -c s:./index.js -t ./test/test-typescript.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"3.8.9","description":"Universal dynamic module loader","directories":{},"_nodeVersion":"6.2.0","dependencies":{"when":"^3.7.5"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.105","uglify-js":"~2.4.23","babel-core":"^5.8.22","typescript":"^1.6.2"},"_npmOperationalInternal":{"tmp":"tmp/systemjs-0.19.30.tgz_1465507059737_0.8034452153369784","host":"packages-16-east.internal.npmjs.com"}},"6.13.0":{"name":"systemjs","version":"6.13.0","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@6.13.0","maintainers":[{"name":"joeldenning","email":"joeldenning@gmail.com"},{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"7b28e74b44352e1650e8652499f42de724c3fc7f","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-6.13.0.tgz","fileCount":34,"integrity":"sha512-P3cgh2bpaPvAO2NE3uRp/n6hmk4xPX4DQf+UzTlCAycssKdqhp6hjw+ENWe+aUS7TogKRFtptMosTSFeC6R55g==","signatures":[{"sig":"MEQCIC8Qk9ZDRreHCK1Zrxvrz9K9VJpvfAHwg/KjbduUiZWnAiBq379GRN1Y4pjqSnuVQvW8pSrtr/wBZrf1MA/i/+2yLw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":782413,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjNbZkACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrUrQ//TNnGxtgzSyVsKDXGu5kHZRkrvb+XnOp07kaKADaX2fID054u\r\nxfXUZD/lQc1FFh/HKFOyfqv3IsuOmgnI/4IxkHzKbbsP4weEcBDr4rD5A0Ah\r\nvDBpFq17W+bJSZzMWvh+Z8rJZOAg8YqN9h2QXgPaUZ3ytNjGR7vHLx9X+rFy\r\nCvHP4cWnIqHE8n5AwaJPQjGrDoCQW3Hxs7bdXzGu8YREnxgz43QLf9omn/Hy\r\njCj8F3Gv5aHLJUgIp0HLhQiQT/Fe7ksspwL/JIReFpSRxCV3M7gFxNvt7jSK\r\nYkz5ySqHnSt9PV2rdi0lBCSpJwtwJ5ssU66uIok7u+JqYWLuB6xrqci7p0aM\r\nlf9HRgeEw1+BRdiPhIbDN+YssVUt4kleXNppVYQtKiE5kyyKuM9fLzFJ2pSd\r\nbpShKOI1S6YbtyGNo9jKQc5bT1JYaLsWD7aUUdKhWPOAKKM5Gg90tWPVNkOC\r\nU1MeXxD/TEPPf9rnII3KWCZJJgThezLK84DHi0gJBzJbUoM+jCp1oZFsHEY6\r\niZ3xZg7nhHM+RMeCKurQInDjEbtcLcrEhjrXvCKnMJBrz9NUfWCtRHDj/Anh\r\nR28Y/992u9H4q99QRf72L8St7ErHv5gDyhmvfdLaQLoom8BIEEAm194gU0BU\r\nQAwJ7ZaEkty6yAVVFsu4sI2VLhgNOJK9nEI=\r\n=RWvg\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/system-node.cjs","type":"script","exports":{".":{"node":"./dist/system-node.cjs","default":"./dist/system.min.js"},"./s.js":"./dist/s.min.js","./dist/*":"./dist/*","./package.json":"./package.json"},"gitHead":"9fd1675eb83b89e634a31cbd403049c8ae2c88d0","scripts":{"test":"chomp test","build":"chomp build"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"collective":{"url":"https://opencollective.com/systemjs","type":"opencollective"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"8.5.5","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"18.7.0","_hasShrinkwrap":false,"devDependencies":{"open":"^8.4.0","kleur":"^4.1.5","mocha":"^7.1.1","mkdirp":"^1.0.4","rimraf":"^3.0.2","rollup":"^2.79.1","terser":"^5.15.0","bluebird":"^3.7.2","node-fetch":"^2.6.0","symbol-es6":"^0.1.2","@vercel/ncc":"^0.34.0","whatwg-fetch":"^3.0.0","source-map-support":"^0.5.16","@rollup/plugin-json":"^4.0.2","rollup-plugin-terser":"^5.3.0","@rollup/plugin-replace":"^2.4.2","@jsenv/file-size-impact":"^5.2.0","@rollup/plugin-node-resolve":"^7.1.1","construct-style-sheets-polyfill":"^2.3.5"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_6.13.0_1664464483782_0.029628003173772788","host":"s3://npm-registry-packages"}},"0.19.39":{"name":"systemjs","version":"0.19.39","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.19.39","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"e513e6f91a25a37b8b607c51c7989ee0d67b9356","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.19.39.tgz","integrity":"sha512-Jd/v9x0X7dEPBoD7e8wEd3LuYBb4tHD6xdO34eRmuYoYEYFbYpGfEffrzDgnc2iTwBXtAdiSY433Gzj+xPbufw==","signatures":[{"sig":"MEYCIQCFBiJMDPF0CgX1Vu76scJ/fYrD88SAXX5uXEjhD77dEAIhAKoDvwVxsON1cLfT9/KdN3do8+sqD9T7bWWN/We+aHP6","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","dist"],"_shasum":"e513e6f91a25a37b8b607c51c7989ee0d67b9356","gitHead":"2ae1a1355519431b38071371627fed0d30a4c001","scripts":{"perf":"node bench/normalize-perf.js","test":"npm run test:babel && npm run test:traceur && npm run test:typescript","build":"make","test:babel":"qunit -c s:./index.js -t ./test/test-babel.js","test:browser":"make test","test:traceur":"qunit -c s:./index.js -t ./test/test-traceur.js","test:typescript":"qunit -c s:./index.js -t ./test/test-typescript.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"3.10.3","description":"Universal dynamic module loader","directories":{},"_nodeVersion":"6.6.0","dependencies":{"when":"^3.7.5"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.105","uglify-js":"~2.4.23","babel-core":"^5.8.22","typescript":"^1.6.2"},"_npmOperationalInternal":{"tmp":"tmp/systemjs-0.19.39.tgz_1474899103396_0.8730929894372821","host":"packages-16-east.internal.npmjs.com"}},"0.19.38":{"name":"systemjs","version":"0.19.38","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.19.38","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"e52e24d502d2b9f0b56d77c57ede67d0916bc4c5","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.19.38.tgz","integrity":"sha512-Cz15iSOsUYHCTY+slwB7Ac9mAYO831Plxg611lX+NGNHC3WOCoyl8DHEgWNIP+e/nV5D9Brk9Wcv+Xd681IcuA==","signatures":[{"sig":"MEUCIAOX5GTIrK1jAORgUBvXpv3rfrlw4F1BgKahi4rXvJy+AiEAjm7XOg5e2LFFZWQXvTWhrvDjIdSLTKBG1WDi9GVsxLs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","dist"],"_shasum":"e52e24d502d2b9f0b56d77c57ede67d0916bc4c5","gitHead":"8ff255f20daf6f149d59cfc226eee007e59dfa3d","scripts":{"perf":"node bench/normalize-perf.js","test":"npm run test:babel && npm run test:traceur && npm run test:typescript","build":"make","test:babel":"qunit -c s:./index.js -t ./test/test-babel.js","test:browser":"make test","test:traceur":"qunit -c s:./index.js -t ./test/test-traceur.js","test:typescript":"qunit -c s:./index.js -t ./test/test-typescript.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"3.10.3","description":"Universal dynamic module loader","directories":{},"_nodeVersion":"6.3.1","dependencies":{"when":"^3.7.5"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.105","uglify-js":"~2.4.23","babel-core":"^5.8.22","typescript":"^1.6.2"},"_npmOperationalInternal":{"tmp":"tmp/systemjs-0.19.38.tgz_1473177952122_0.14318925747647882","host":"packages-12-west.internal.npmjs.com"}},"0.19.37":{"name":"systemjs","version":"0.19.37","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.19.37","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"58b1528aa53b6cf65458ba165634333f39aadb9e","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.19.37.tgz","integrity":"sha512-ILUWMUmT2nIPutcZBSw78gVRwbuCN9k0r1oxMzyYSuRVQk1I5EwpcGOETasyfux98yPcPNtrG+b11m63CIn0kQ==","signatures":[{"sig":"MEUCIQDU1DxT/AEbJxRCQzdazodzzn0v5M4Bh8ZTscagnUcbHQIgIcohf+clgIB6ocueAE24e6wv/U+tltT/F6SlC7AEDZQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","dist"],"_shasum":"58b1528aa53b6cf65458ba165634333f39aadb9e","gitHead":"3454429e6dce5f38a4257da67eb4ea8adc17fbcb","scripts":{"perf":"node bench/normalize-perf.js","test":"npm run test:babel && npm run test:traceur && npm run test:typescript","build":"make","test:babel":"qunit -c s:./index.js -t ./test/test-babel.js","test:browser":"make test","test:traceur":"qunit -c s:./index.js -t ./test/test-traceur.js","test:typescript":"qunit -c s:./index.js -t ./test/test-typescript.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"3.10.3","description":"Universal dynamic module loader","directories":{},"_nodeVersion":"6.3.1","dependencies":{"when":"^3.7.5"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.105","uglify-js":"~2.4.23","babel-core":"^5.8.22","typescript":"^1.6.2"},"_npmOperationalInternal":{"tmp":"tmp/systemjs-0.19.37.tgz_1471799734649_0.1760647629853338","host":"packages-16-east.internal.npmjs.com"}},"0.19.36":{"name":"systemjs","version":"0.19.36","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.19.36","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"897951499d763a7f0086ebc9f32dfba481200144","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.19.36.tgz","integrity":"sha512-hlgJ4gSoBwMN8g6OKNEQIErCDO4HqASo44GY670mw1v+OLUyJYjUVFfO/Pka511cIK6tfBTnMgKlyMw/+7JV8g==","signatures":[{"sig":"MEUCIQCLcJn77fsInYusF1Wc0LU/RH/gZQjnCO+FMvcTUCjvgAIgUs6DaP92oN6ixvt2Rriz5d003qYdGmNniyZ7KqR/XR8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","dist"],"_shasum":"897951499d763a7f0086ebc9f32dfba481200144","gitHead":"6a4d7e1eb894b213ce46e710f38197b6d38395e2","scripts":{"perf":"node bench/normalize-perf.js","test":"npm run test:babel && npm run test:traceur && npm run test:typescript","build":"make","test:babel":"qunit -c s:./index.js -t ./test/test-babel.js","test:browser":"make test","test:traceur":"qunit -c s:./index.js -t ./test/test-traceur.js","test:typescript":"qunit -c s:./index.js -t ./test/test-typescript.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"3.10.3","description":"Universal dynamic module loader","directories":{},"_nodeVersion":"6.3.1","dependencies":{"when":"^3.7.5"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.105","uglify-js":"~2.4.23","babel-core":"^5.8.22","typescript":"^1.6.2"},"_npmOperationalInternal":{"tmp":"tmp/systemjs-0.19.36.tgz_1470068583862_0.23105229251086712","host":"packages-12-west.internal.npmjs.com"}},"0.19.35":{"name":"systemjs","version":"0.19.35","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.19.35","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"fe57951614d5dc152b88751b50ae51e98e91b891","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.19.35.tgz","integrity":"sha512-4X86hrN6ihPo12KunHJFImrUtBHjUGwpj2S79R/wckvCenNfAOkScwDGRL/1BSrXClfu9snSSHoKdv+oAKWnag==","signatures":[{"sig":"MEUCIQDvUYUkqzfVmyEYt70iboB8y9FmDY4IOVpgynCTNG3KkgIgD3HvqS0NWpXzIyuJYPZTx53DoWpkoYCWXVBttakBu/k=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","dist"],"_shasum":"fe57951614d5dc152b88751b50ae51e98e91b891","gitHead":"3d097d90485a3ceaf5751b5b2709ab7606502105","scripts":{"perf":"node bench/normalize-perf.js","test":"npm run test:babel && npm run test:traceur && npm run test:typescript","build":"make","test:babel":"qunit -c s:./index.js -t ./test/test-babel.js","test:browser":"make test","test:traceur":"qunit -c s:./index.js -t ./test/test-traceur.js","test:typescript":"qunit -c s:./index.js -t ./test/test-typescript.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"3.10.3","description":"Universal dynamic module loader","directories":{},"_nodeVersion":"6.3.1","dependencies":{"when":"^3.7.5"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.105","uglify-js":"~2.4.23","babel-core":"^5.8.22","typescript":"^1.6.2"},"_npmOperationalInternal":{"tmp":"tmp/systemjs-0.19.35.tgz_1469564174685_0.25462482729926705","host":"packages-12-west.internal.npmjs.com"}},"0.19.34":{"name":"systemjs","version":"0.19.34","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.19.34","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"a598a89b1d13844d7b96a21952d9b9ec16752254","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.19.34.tgz","integrity":"sha512-ZKT091PxsY2iWVxExeqxM7vbhiQw6j8SSlqUu/9rXocmt/EraEIpQjZRHboL5lR/OxWkx5qp/vtQ2xMqPwwrwA==","signatures":[{"sig":"MEUCIQDNRMH/wBKOcmfY3NrrDkJiSyn9zcSJJZwciVwkIBj7HgIgdZ7R8HMiMMETor+Ai0BZV8GS7QaClMhkk62I7wCVPi8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","dist"],"_shasum":"a598a89b1d13844d7b96a21952d9b9ec16752254","gitHead":"dd67bb2ba524c73867621df6ee1fd6bda9927194","scripts":{"perf":"node bench/normalize-perf.js","test":"npm run test:babel && npm run test:traceur && npm run test:typescript","build":"make","test:babel":"qunit -c s:./index.js -t ./test/test-babel.js","test:browser":"make test","test:traceur":"qunit -c s:./index.js -t ./test/test-traceur.js","test:typescript":"qunit -c s:./index.js -t ./test/test-typescript.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"3.10.3","description":"Universal dynamic module loader","directories":{},"_nodeVersion":"6.3.1","dependencies":{"when":"^3.7.5"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.105","uglify-js":"~2.4.23","babel-core":"^5.8.22","typescript":"^1.6.2"},"_npmOperationalInternal":{"tmp":"tmp/systemjs-0.19.34.tgz_1469544968481_0.8126100588124245","host":"packages-16-east.internal.npmjs.com"}},"0.19.33":{"name":"systemjs","version":"0.19.33","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.19.33","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"321815f297b6bd60a2af0bf00cdcfb4973a88f04","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.19.33.tgz","integrity":"sha512-W3v5r9GjqriyB718BVi7xTM2LturUP4ebjBVU8jUTNSXrX8k1oFD5uE08kLIE/gvSErL6lZNzIBgGtMRuZ+QPg==","signatures":[{"sig":"MEUCIFlxV7ycwwj2AObqp3PhNe1vJbRKhbLc1yo9CJ+WYX2eAiEAtXjN2vcZv45gNsRfjBKdRQA2grOXTi+ej9uPTPrJgKQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","dist"],"_shasum":"321815f297b6bd60a2af0bf00cdcfb4973a88f04","gitHead":"f3c15f436ad8fef9a0a234e965975136fcf02b93","scripts":{"perf":"node bench/normalize-perf.js","test":"npm run test:babel && npm run test:traceur && npm run test:typescript","build":"make","test:babel":"qunit -c s:./index.js -t ./test/test-babel.js","test:browser":"make test","test:traceur":"qunit -c s:./index.js -t ./test/test-traceur.js","test:typescript":"qunit -c s:./index.js -t ./test/test-typescript.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"3.10.3","description":"Universal dynamic module loader","directories":{},"_nodeVersion":"6.3.1","dependencies":{"when":"^3.7.5"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.105","uglify-js":"~2.4.23","babel-core":"^5.8.22","typescript":"^1.6.2"},"_npmOperationalInternal":{"tmp":"tmp/systemjs-0.19.33.tgz_1469537385521_0.32267450727522373","host":"packages-16-east.internal.npmjs.com"}},"2.0.0":{"name":"systemjs","version":"2.0.0","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@2.0.0","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"77b4420cbeaa852fcdf2f8faafbaf76d2218692c","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-2.0.0.tgz","fileCount":21,"integrity":"sha512-DQooqEwNevJ/3sYYfzbCzrdlCIuuicqDVCNP5JpMxIj7j+cw36VJPP4djH9Xd7OBU3G/LJNNQPROpAHwlCxBMw==","signatures":[{"sig":"MEYCIQDopQYng1vl327tnNV/JRuFYTuEOhSnSLY4ynWUTW7yuAIhAL103KKiKjtl03vj/RNfqXD/UAud45H2c/wdnhdV3cL8","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":89858,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbrilbCRA9TVsSAnZWagAAuwQP/j13b6o5J3QKjXICiueS\nsK8A6d6UTL0YzJq5hve815l9B4ADQxCBmQswKNkbRNtbxE+xuH8FDTTPYypM\nBKXtO7suKYf1E+/MmmJoKHlPG+5ZXfMaMi5uAJGf/Yxd/0L8KazfmiUiPSv7\nSjCrDVg5Fw9TUYOdlzM0G3Maw2PaD8C7QreprzXpPNepJlxK48mStdppSb0r\nVkqB7bUZrd8KAwhCED5eRdaM0ZRQ6n6vbdmwytvXm2h2OyOaEyHhcFiKewpM\nLx1PXORJf1Nzyt2xswuVhQqZdYHtvAG9ox+0OMFDCa0HOjnNEMHrwF+C3zwe\n0PgIXIaAWfuEjNgt2yf8tRRmxUv+ax7sNHS9pkSFbZw0JGysWvc71FWXVQH3\njmKJ3JyiktQYGJ/ESTuo1QM7v9kCRlHh0aoGAQJWmDhbxtcjEa05MXJa524k\np5LjJlYrbJ/lsf99NxM2K3sex9J/13cWtRO67dvxgxRkWX6jyFmIJIgNm4N9\nVwr7LZ+pMVoRRq9jlImXCpab1It8RcIL4Ufxg99p+Bo5IVRDoJ6/1CdAfUH1\nSpaJlUfe71RbR2t7EFaFz4nyxFc/rgj4ifK0WPXK38uiP5jvdZrLkZvYGI8g\nvjxuC3M7QJysGuhu33UxFPE0/1vxbrA276EkHyxCeh+9xNZngarh5yCPBofq\nAt+h\r\n=hOsd\r\n-----END PGP SIGNATURE-----\r\n"},"gitHead":"a0b95a50830ff97b58b29f19b885a058605fbe4c","scripts":{"min":"npm run min:systemjs && npm run min:sjs","test":"mocha -b -r esm","build":"npm run build:systemjs && npm run build:sjs && npm run min && npm run build:extras","min:sjs":"cd dist && terser s.js -c passes=2 -m --source-map -o s.min.js","test:sjs":"mocha test/test-production.js -u tdd --reporter dot","build:sjs":"rollup -c --environment sjs","footprint":"npm run footprint:systemjs && npm run footprint:sjs","prepublish":"npm run build","build:extras":"bash minify-extras.sh","min:systemjs":"cd dist && terser system.js -c passes=2 -m --source-map --comments \"/SystemJS \\d/\" -o system.min.js","test:rebuild":"babel test/fixtures/es-modules --plugins=@babel/plugin-syntax-import-meta,@babel/plugin-transform-modules-systemjs --out-dir test/fixtures/register-modules","footprint:sjs":"terser dist/s.js -c passes=2 -m | gzip -9f | wc -c","test:systemjs":"mocha test/test-traceur.js -u tdd --reporter dot","build:systemjs":"rollup -c","footprint:systemjs":"terser dist/system.js -c passes=2 -m | gzip -9f | wc -c"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"6.4.1","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"10.10.0","_hasShrinkwrap":false,"devDependencies":{"esm":"^3.0.77","mocha":"^5.2.0","rollup":"^0.64.1","terser":"^3.8.1","bluebird":"^3.5.1","@babel/cli":"^7.0.0-rc.1","@babel/core":"^7.0.0-rc.1","whatwg-fetch":"^2.0.4","rollup-plugin-replace":"^2.0.0","@babel/plugin-syntax-import-meta":"^7.0.0-rc.1","@babel/plugin-transform-modules-systemjs":"^7.0.0-rc.1"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_2.0.0_1538140506244_0.7299834492771375","host":"s3://npm-registry-packages"}},"2.0.1":{"name":"systemjs","version":"2.0.1","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@2.0.1","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"b6672e1c58a1ee50504645cca8a97cb738283cfe","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-2.0.1.tgz","fileCount":21,"integrity":"sha512-ha7E8+4hx/1UxbpsLcWOZI/Mf1VP+TyEEx8U3I60fPuKvbnu9tanAm0JfJteGqk0JggyYaB3R0u16gAjiJMFaQ==","signatures":[{"sig":"MEYCIQCOCIuBwmYY/To6TLVduAEJsujisqIgUca69mQH15fbGgIhAPuJC0rwHzoSxUF+o/TDeoQtbqeEQIu/RPbh8NqHLSis","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":90326,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbs5eHCRA9TVsSAnZWagAAshwP/1Kx5tLyywEtmZ5WXMNh\nPA7ppLeFV1JCXPo+kgAF1VN6HUBWN9L3O+ldXMaJ1oJpXGVPJnKIon2yvPJk\npuPC3zPVbfrzZ667Bttfz4QPczeqj+KZXlXu2/oC6MwOiE5dQaT7kNOOSvmb\nBcqjWPV0eB8xJw2WRPa63Xt9rEN9foPl39esJ72m9iKjd3shF6UlygNa6SWP\nudsE4zDukh+HF7t5QhSC6WNIg4VTjW+GP3fzzMhjcwjvTGjykzDEqV96ujKm\nfSqba9phnkCNGuDW4+moO6VsL8Q0Km9cO9AksXKby3MfbfoUmf4e0MCW+a39\nmnLK8WhWNSt/21MiaiOXmkY6TF9vwPpHVnvv3bYOX8Qdfo6T0/yGRsHd6l0b\nHyalwUgJaNOlc8T3ZpXuRRIevCeAc+YyIlJ0LGfjWCHNYUnnxDEyWFpGAAK/\nulAZZOh4tkhf4EC2j0hmgqSAUMYfKRFt3/oLhTTnjCwket03AcPtf9N6bmmi\nWScEZeHbZ5JyTyN/kCfahtHCPtlkEv0EneWynEjIvoIRuTSTecdvXjRN2IK6\nTSaU7wEbrtyEIaumGs8brNQ+GGYetfb+exi2t9xQAjQjNj++N2wF2tvzzArr\nFgOcI6Xpf46gVx25F2J4yMJ0RSSV5g3/obpBFoXthBJWyAVCd6Irm7MlQNNI\nzqhL\r\n=zlex\r\n-----END PGP SIGNATURE-----\r\n"},"mode":"esm","gitHead":"6953624846a4449b3697f32f6af934e0c4516bdb","scripts":{"min":"npm run min:systemjs && npm run min:sjs","test":"mocha -b -r esm","build":"npm run build:systemjs && npm run build:sjs && npm run min && npm run build:extras","min:sjs":"cd dist && terser s.js -c passes=2 -m --source-map -o s.min.js","test:sjs":"mocha test/test-production.js -u tdd --reporter dot","build:sjs":"rollup -c --environment sjs","footprint":"npm run footprint:systemjs && npm run footprint:sjs","prepublish":"npm run build","build:extras":"bash minify-extras.sh","min:systemjs":"cd dist && terser system.js -c passes=2 -m --source-map --comments \"/SystemJS \\d/\" -o system.min.js","test:rebuild":"babel test/fixtures/es-modules --plugins=@babel/plugin-syntax-import-meta,@babel/plugin-transform-modules-systemjs --out-dir test/fixtures/register-modules","footprint:sjs":"terser dist/s.js -c passes=2 -m | gzip -9f | wc -c","test:systemjs":"mocha test/test-traceur.js -u tdd --reporter dot","build:systemjs":"rollup -c","footprint:systemjs":"terser dist/system.js -c passes=2 -m | gzip -9f | wc -c"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"6.4.1","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"10.10.0","_hasShrinkwrap":false,"devDependencies":{"esm":"^3.0.77","mocha":"^5.2.0","rollup":"^0.64.1","terser":"^3.8.1","bluebird":"^3.5.1","@babel/cli":"^7.0.0-rc.1","@babel/core":"^7.0.0-rc.1","whatwg-fetch":"^2.0.4","rollup-plugin-replace":"^2.0.0","@babel/plugin-syntax-import-meta":"^7.0.0-rc.1","@babel/plugin-transform-modules-systemjs":"^7.0.0-rc.1"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_2.0.1_1538496391001_0.4309567923002062","host":"s3://npm-registry-packages"}},"0.13.2":{"name":"systemjs","version":"0.13.2","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.13.2","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"6135fffa9e0e8976cfb74d1089db9b31edb522b7","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.13.2.tgz","integrity":"sha512-dNZm+dV8m5Qnd1llFNKbUAve5z707hCvC+K2rrEUB8wGVnEspIxyOvjw13VOkuBhpyWdiYKxWdiCu0mGlc6XdQ==","signatures":[{"sig":"MEUCICIXN0VEAPDxqo+oLQpAvbcZswJjDOr3zRzmHq1msNOGAiEAsQCdkbLWAa+h7kYf8mKaj3u/3Xp0t0Rr3FLg5CREBJY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.src.js","_from":".","_shasum":"6135fffa9e0e8976cfb74d1089db9b31edb522b7","gitHead":"f1fa837c8aec784242e1346b1175845fc636e24e","scripts":{"test":"npm run test:6to5 && npm run test:traceur","test:6to5":"qunit -c s:./dist/system.js -t ./test/test-6to5.js","test:traceur":"qunit -c s:./dist/system.js -t ./test/test.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs","type":"git"},"_npmVersion":"2.5.1","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"_nodeVersion":"0.12.0","dependencies":{"es6-module-loader":"~0.13.1"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.82","6to5-core":"~3.5.3","uglify-js":"~2.4.13"}},"0.13.1":{"name":"systemjs","version":"0.13.1","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.13.1","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"579da15cba41f1a176b20495560adbc6ca5283bc","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.13.1.tgz","integrity":"sha512-2y6EhWDU3OqBqHf0uYNW/thQOKYerMp08N2hgB1LWSn2BsbB/lIoWOZBGyOUlQZSRawjets8OEg69ZgunuFqpA==","signatures":[{"sig":"MEYCIQDmrPxYf1BVUaVmYn8xAHxcFC4cy7pW5b4diS6TyHQXrgIhAPCTZcDiazCXDMDd2Lo0Cbvz5ZC3323cpEq0knUou9RR","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.src.js","_from":".","_shasum":"579da15cba41f1a176b20495560adbc6ca5283bc","gitHead":"8494055d5f6a007e66a9a0be43ffda9ae62f9219","scripts":{"test":"npm run test:6to5 && npm run test:traceur","test:6to5":"qunit -c s:./dist/system.js -t ./test/test-6to5.js","test:traceur":"qunit -c s:./dist/system.js -t ./test/test.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs","type":"git"},"_npmVersion":"2.4.1","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"_nodeVersion":"0.10.36","dependencies":{"es6-module-loader":"~0.13.0"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.82","6to5-core":"~3.3.2","uglify-js":"~2.4.13"}},"0.13.0":{"name":"systemjs","version":"0.13.0","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.13.0","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"9e7b8765b9516f3ad32f54ca08ed8aae676e7d3d","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.13.0.tgz","integrity":"sha512-Ik8D8gLseCd1qVX6anrgJMmRj9hL68oyHIEEArxrR2z1jAsz/Vmqj8KLfK/LJQ7ZD4pkULfBxXLov+ZfKvqqmA==","signatures":[{"sig":"MEQCIDh927+cJty7HfmuLq86k+18qqWVsc7HKWfI/OD1i6vaAiB+YPqCspW5YtA+MYWo6pwnJgOn12eLGl/5xGDmgHfaTg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.src.js","_from":".","_shasum":"9e7b8765b9516f3ad32f54ca08ed8aae676e7d3d","gitHead":"1fcfcd55c26c429f06ec7eb5de46f8ef60044391","scripts":{"test":"npm run test:6to5 && npm run test:traceur","test:6to5":"qunit -c s:./dist/system.js -t ./test/test-6to5.js","test:traceur":"qunit -c s:./dist/system.js -t ./test/test.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs","type":"git"},"_npmVersion":"1.4.28","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"dependencies":{"es6-module-loader":"~0.13.0"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.82","6to5-core":"~3.3.2","uglify-js":"~2.4.13"}},"2.0.2":{"name":"systemjs","version":"2.0.2","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@2.0.2","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"4cfc7d404be6952d0d630506f569aa3aaec12d27","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-2.0.2.tgz","fileCount":25,"integrity":"sha512-uNsbj+2RMKwrg/zxdqjBpb8JtksBrucQcLo6h/ZG0SCmLgLG1QVX0Al6b8YPz+lC+AsPs/hARf9DCXBdPXu31g==","signatures":[{"sig":"MEUCIQDXqP4+ZO6hUfLlQK8meaOcApyVdEC6kVHmlxiDJZU+VwIgfjp98YZeNx+wfC3EFiHl88CR83p6JAyo0RCceNRd+bU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":95109,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbuRdZCRA9TVsSAnZWagAA1scP/3IizA/aKlC1stmZivTS\nw7ehp+2hO/79lV56IyC7ZdB6mHI+CRx7ehdG27qLVyYWneQf8jJQPmnbvon2\nfAoHLNYI5U4oaw4PpqfZd+CoYc/Lx2RJzdmZktNVo3Ou/6Nb/jjuKIdGAzCy\n5FIQk/SzAm53lufJImtIqX8VOYBqVWYjKmZe75+a2X5fuayMdCdVN7EsTAx1\nz6q8OogCjJV9EIYb7qoChD6Pg7V4cfOU2HNUUos9uzc+7bJpQPW2teHeOvQL\nA8bAD3597DtZda3TiCMx6WxzpXHvY30P7QMuaj4Y+8BOhl1snsIdJIwnlZ+7\nFG0hnBhGZHhFSr33rDUd7Lw+FI8WhJ7gkyLkX/ew/D1OQKH+d3Ez2AR0NmoY\nYVCTOoip/ve4hyEqGj0/y5g3hwHcNvPv3ioveOLWCHSOM1RHijNJAmaUAbku\n7rRzNtuOw0H6InN3CVBVe/8510WEqG6Onkt8R/uu7ehWP8Aiq61x73G9z8MP\nIc6iUuwimwmsgxQSGmg91jl80aECnANhnK/tYQu1Bdc7mOKjVwXTC7TCj1CQ\ns6HS+RW8U9SgwiWGvI8VSaUT9kJMaAOgL7VTSCLLX79itjelIy4TVqQ+oj59\neYLFkD6VFDDa0EdnoUdPSToCSGL4McV35e+16KGbfZ+Rh5oliZOpc6TlITel\ngtPX\r\n=ZKsY\r\n-----END PGP SIGNATURE-----\r\n"},"mode":"esm","gitHead":"47f7429ea22f5f74218741286fac014860a789b3","scripts":{"min":"npm run min:systemjs && npm run min:sjs","test":"mocha -b -r esm","build":"npm run build:systemjs && npm run build:sjs && npm run min && npm run build:extras","min:sjs":"cd dist && terser s.js -c passes=2 -m --source-map -o s.min.js","test:sjs":"mocha test/test-production.js -u tdd --reporter dot","build:sjs":"rollup -c --environment sjs","footprint":"npm run footprint:systemjs && npm run footprint:sjs","prepublish":"npm run build","build:extras":"bash minify-extras.sh","min:systemjs":"cd dist && terser system.js -c passes=2 -m --source-map --comments \"/SystemJS \\d/\" -o system.min.js","test:rebuild":"babel test/fixtures/es-modules --plugins=@babel/plugin-syntax-import-meta,@babel/plugin-transform-modules-systemjs --out-dir test/fixtures/register-modules","footprint:sjs":"terser dist/s.js -c passes=2 -m | gzip -9f | wc -c","test:systemjs":"mocha test/test-traceur.js -u tdd --reporter dot","build:systemjs":"rollup -c","footprint:systemjs":"terser dist/system.js -c passes=2 -m | gzip -9f | wc -c"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"6.4.1","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"8.12.0","_hasShrinkwrap":false,"devDependencies":{"esm":"^3.0.77","mocha":"^5.2.0","rollup":"^0.64.1","terser":"^3.8.1","bluebird":"^3.5.1","@babel/cli":"^7.0.0-rc.1","@babel/core":"^7.0.0-rc.1","whatwg-fetch":"^2.0.4","rollup-plugin-replace":"^2.0.0","@babel/plugin-syntax-import-meta":"^7.0.0-rc.1","@babel/plugin-transform-modules-systemjs":"^7.0.0-rc.1"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_2.0.2_1538856792101_0.2275474391645842","host":"s3://npm-registry-packages"}},"0.19.21":{"name":"systemjs","version":"0.19.21","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.19.21","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"0846a0f50d38ce2d877509daef7ad8bb3a23ecef","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.19.21.tgz","integrity":"sha512-di68TPqKKEOayS/2K/2EC2nlR99X2AqWORLEaJGkpkSbtf+sj2bpAoK/QBp7AxhGrGq4R51ejgH2PgvazWNSDw==","signatures":[{"sig":"MEUCIEw0+CetA51VDnHVAaUZUL2eK1aKn7YwQj41vs4UmpmaAiEArUQk8I+UZ+9Aidu/UV0oZ0q1J2siJK+5cZ8QHt2+Wfg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"0846a0f50d38ce2d877509daef7ad8bb3a23ecef","gitHead":"44be6d1b17527572f07c63e84948f0adf44d6a57","scripts":{"test":"npm run test:babel && npm run test:traceur && npm run test:typescript","build":"make","test:babel":"qunit -c s:./index.js -t ./test/test-babel.js","test:browser":"make test","test:traceur":"qunit -c s:./index.js -t ./test/test-traceur.js","test:typescript":"qunit -c s:./index.js -t ./test/test-typescript.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"3.3.12","description":"Universal dynamic module loader","directories":{},"_nodeVersion":"5.5.0","dependencies":{"when":"^3.7.5","es6-module-loader":"^0.17.10"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.102","uglify-js":"~2.4.23","babel-core":"^5.8.22","typescript":"^1.6.2"},"_npmOperationalInternal":{"tmp":"tmp/systemjs-0.19.21.tgz_1455572022161_0.2827795729972422","host":"packages-6-west.internal.npmjs.com"}},"6.1.3":{"name":"systemjs","version":"6.1.3","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@6.1.3","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"e52d19831c927837c224e119936ac7f1ba6d32b0","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-6.1.3.tgz","fileCount":31,"integrity":"sha512-gchy3HVD7U7frun2RT3ApxjLtekG39KQXpLhNxRR5HSWqA1+p3dxPXrmvoevEsKAhCEPi2MjZ75zPBDiftic8A==","signatures":[{"sig":"MEUCIQCdQjoBzLKcn9lFHvx/BCNNNoX0QNBx/YGDRBb74XGhYAIgY+0BL9yVvKy5O557uJPOSXjS9n3SsZdTQPCbQEDzCHo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":131953,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdmh2TCRA9TVsSAnZWagAAVcsQAJqAH+CAj2c5NNOAYxZE\nCNc6GFoaI6LqFpJL7fgB33xvDvbcLvXp0YH7BWkOH8WBuneX1lahgHqKvKan\no/iVHT2xoX8JRMd4Uq6LINfWnUKSW/YM4rn42xPPgkNu6be3YPPlRFtJktxn\nwqnst2HH5OWA0ubT3sg7r8mFoF2VFlaRsUbDAb9KutN32nfTj5arHI6YAsP+\n/hNiVSJ/0mB+IGNqFl/To1aEB0DxY1FmcXoqyEuAtKX1sHKj/nMf0va+vWnd\nuNTPpAVyWnNYnvLYhKtwVr4W+bN+HjhIy0q2l6Mu7HRPTvtLK8UfESvQR+VG\n5WFQjv1+eA049T2wOAcssyVkSG2WyltCGaB9Vk4a4UxLb7LjJ1AZ3u2LzjWq\n1ewVjaMX1o03aYzC2fM4qtv/dIcmihCsoTH/4e/q9oySFPqCCEwu1A8JmowE\nOtV+47kmUmGzUHKnMpgar0nT0hvR+4R/ikSn/t05s+pZyj+u6Mj9Q/nCHuDc\nCJdEgth7pN4un8HpjPArNjHJzqdPL8eIIptR3RaKFsGBPWtTAUfPtIiFURxb\nlE4sceazjO8s7DnQRmcG7c6cmVyLORnLAvl9LxwN5d74YBx8EyhLWRSf/1Hc\n7FNQEn6JBst9lYcczeDcdA61a15BC8l57Jldj5QswdgzahGw93TUDHpEm3t+\nDHIP\r\n=w5No\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","gitHead":"2839f30af8804c5b7db3f9e8bb55b445f1f90bc2","scripts":{"min":"npm run min:systemjs && npm run min:sjs","test":"mocha -b -r esm test/import-map.js test/system-core.js test/url-resolution.js && npm run test-browser","build":"npm run build:systemjs && npm run build:sjs && npm run min && npm run build:extras","min:sjs":"cd dist && terser s.js -c passes=2 -m --source-map -o s.min.js","build:sjs":"rollup -c --environment sjs","footprint":"npm run footprint:systemjs && npm run footprint:sjs","prepublish":"npm run build","build:extras":"bash minify-extras.sh","min:systemjs":"cd dist && terser system.js -c passes=2 -m --source-map --comments \"/SystemJS \\d/\" -o system.min.js","test-browser":"node test/server.js","footprint:sjs":"terser dist/s.js -c passes=2 -m | gzip -9f | wc -c","build:systemjs":"rollup -c","footprint:systemjs":"terser dist/system.js -c passes=2 -m | gzip -9f | wc -c"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"6.9.0","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"10.16.3","_hasShrinkwrap":false,"devDependencies":{"esm":"^3.2.25","opn":"^6.0.0","mocha":"^5.2.0","rollup":"^0.64.1","terser":"^3.8.1","bluebird":"^3.5.1","whatwg-fetch":"^2.0.4","rollup-plugin-replace":"^2.0.0","construct-style-sheets-polyfill":"^2.1.0"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_6.1.3_1570381200473_0.4672651558772698","host":"s3://npm-registry-packages"}},"0.19.20":{"name":"systemjs","version":"0.19.20","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.19.20","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"b46605a985997e06fff62ecc67b6eb0909accc9a","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.19.20.tgz","integrity":"sha512-kj/loqEBBycdCFvoAckp4hjmutmig89PCONe/3ediO4NOifgHfUK4IIqAq77CI7iCsEepBl3k24uuCcqoaFk4w==","signatures":[{"sig":"MEUCIQCfgNBJdRtfHGB1wm5Z5bvYnd1RAmBPwihLDNr/MzUAZAIgKViXR5p5mLfelshDSkHqa1aB/dCJeEJ+2NbS9HWvf2g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"b46605a985997e06fff62ecc67b6eb0909accc9a","gitHead":"19942209d2454686c93d9a696452322fc82ac4d0","scripts":{"test":"npm run test:babel && npm run test:traceur && npm run test:typescript","build":"make","test:babel":"qunit -c s:./index.js -t ./test/test-babel.js","test:browser":"make test","test:traceur":"qunit -c s:./index.js -t ./test/test-traceur.js","test:typescript":"qunit -c s:./index.js -t ./test/test-typescript.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"2.14.15","description":"Universal dynamic module loader","directories":{},"_nodeVersion":"5.1.1","dependencies":{"when":"^3.7.5","es6-module-loader":"^0.17.10"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.102","uglify-js":"~2.4.23","babel-core":"^5.8.22","typescript":"^1.6.2"},"_npmOperationalInternal":{"tmp":"tmp/systemjs-0.19.20.tgz_1454612891836_0.14591855183243752","host":"packages-9-west.internal.npmjs.com"}},"6.1.4":{"name":"systemjs","version":"6.1.4","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@6.1.4","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"a51049341b0a8d3d85ad4d9be65060508786335a","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-6.1.4.tgz","fileCount":31,"integrity":"sha512-cFaMv91IpjxfsRvaqnUpWlCYy2kNsTHJyKZB25X393+AaZBAyGZdUU/gWZnlIW/mEd5a5ymsOm7X2IEMYdo37g==","signatures":[{"sig":"MEQCIE9fA3HtfnO4IJkMQvulH0HGAOfFDSuDOZ/6HEPK4izwAiBJILfdClp499BJhEPLJQtXICOnve3KJIoEMjMFraiwNQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":133082,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdomqjCRA9TVsSAnZWagAAiaYP/0FEXwleCWM+96cYRAne\nmZuUVgSgx2iomI6QKpJe1YFWvWOFVzAF3QUW01fy9fCr3NL8LnbBz8txYkgV\nHMzibq7/F7Pj4sFCALI3ybAqbn5AUJ9tEN0Lp1Hnhg9AGUzSOGFVsy2Bgz4h\npIbp4BD5qRd62lz465FY7NQHTBtU73oUNVlhK3xuWDFcCovgq5gRF5WQr0ZZ\nylrXGXcpo6AX2ubwNNFtszAXuV2kA+QF/oicIW+9mnEBfyWQdqh4JWebhxWY\nyRxkqaPBfMhNKqxPu+BtWSeViOc+bPmxdCuSmBDTNA1TPE7jnradS7sys6qP\n6sq/Tk3Nh06vwbqddTi/zf2NdJlhEEyCc258XCdhGIrt0YHKVU7QZI6XU2Ga\nKQcaNG+Q/ZRtsAfMRgAfvuNFX4dJKgF818neTmwU8TkHjziq2Iw1giSaHLX4\nJ4tftWO6L77ySCHi9qp1jsAHuHdEf1Gc57//L6TQepQrvhFm8lBF3bMhHZ9j\nhq3B/QhXVrxJXNW12O1WxsXGvSqr75Vw79yBbYO1+VtI85HIUeEiy1LQBuir\nAcDmL+v9adZUEdtpT0GihhRr3WiANYTQmpdHQb4752cQUBRM5judG2KlN+MB\n1u5OVvCc8Jbml2VSjuvyMN2gsS/ysAk3cA8UOMicVLqnPCPxL3f7+5EbqS6e\nChPv\r\n=Wyz4\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","gitHead":"23ebf588230277111a82f62032b96ccc0ab18c30","scripts":{"min":"npm run min:systemjs && npm run min:sjs","test":"mocha -b -r esm test/import-map.js test/system-core.js test/url-resolution.js && npm run test-browser","build":"npm run build:systemjs && npm run build:sjs && npm run min && npm run build:extras","min:sjs":"cd dist && terser s.js -c passes=2 -m --source-map -o s.min.js","build:sjs":"rollup -c --environment sjs","footprint":"npm run footprint:systemjs && npm run footprint:sjs","prepublish":"npm run build","build:extras":"bash minify-extras.sh","min:systemjs":"cd dist && terser system.js -c passes=2 -m --source-map --comments \"/SystemJS \\d/\" -o system.min.js","test-browser":"node test/server.js","footprint:sjs":"terser dist/s.js -c passes=2 -m | gzip -9f | wc -c","build:systemjs":"rollup -c","footprint:systemjs":"terser dist/system.js -c passes=2 -m | gzip -9f | wc -c"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"6.9.0","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"10.16.3","_hasShrinkwrap":false,"devDependencies":{"esm":"^3.2.25","opn":"^6.0.0","mocha":"^5.2.0","rollup":"^0.64.1","terser":"^3.8.1","bluebird":"^3.5.1","whatwg-fetch":"^2.0.4","rollup-plugin-replace":"^2.0.0","construct-style-sheets-polyfill":"^2.1.0"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_6.1.4_1570925219032_0.8563094867699077","host":"s3://npm-registry-packages"}},"6.1.1":{"name":"systemjs","version":"6.1.1","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@6.1.1","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"aece7369bad7d8a8766dde31b5dfb8492c5a7209","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-6.1.1.tgz","fileCount":31,"integrity":"sha512-R1YeS6gvfBHRboezVrKzZoOSL4BzpU4XOI3OG0G0YAU7UEaOW2UhwmV8n/YVxzMjDNy76QO3ONIA+sxW8bMcQA==","signatures":[{"sig":"MEUCIFG0qDhE25HdxePJE0eJgTaYWTjENmLB0Vtz7VwYB0pTAiEA3OnozP4Ub8ByCpIxPwNW/uGURevRLmoaWhLEyzl7gLE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":128950,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdfBAqCRA9TVsSAnZWagAAw6UP/0Aj7ACaJf4uORw1tcvq\nVE2Et6OFZn4Tz8r51SvosQqtFv4bw5xNZSHMU+6gMkI5SNAQsL5yPixHvXt+\nk6/bvvvOKhff/9fj1qkSYlHlk0sjnE5DbLpR8DnvY0Q814sMTSuqDmpgyXCm\nHEnueRIlPSAUshhn5mA9tuoWXJcMhvDR/Ut1CZtmV676r4KBRmCM+SBymPwu\nkE+kFybP69kclVATP63F23rhoPyokJya43HlGxB2YlsQ9KLNDg6UM4mRvSPf\n1/LC0u+hDjV95GtqZB6YY+BVBq4HOymfSkAtRmOb4H+8/aHs7oSn11Fbj5jU\n2VG0GQHcoU4vvpZ8cWesFoFbx6asdh1Cs+Zfc6nKexJvnN42JOhuEBnqnS45\nTOSn+bqf0T58UWb32UfCxF6CzEtTuqs5Uu5txVoRDwm/R/IFNRpTrchejTea\nps6M1wJi2bGhhmcQD40Ew2ddfuZTzvIboKwhVD/5KRYRYB7Rs4nxufxcjFiX\nB3gfZKp7LhA/MhcpoHYRUD4zu4qJ1ampREO12gPK4zeEqQ3CyQ4tcI5kvZKT\nC7ed996KzgRwEZjBk8Xu5qGOm6vfoomjJNiN1TKufK/v7vaZbbUP3xmIAcpm\nQJdeQjJWalzGUFYckPNJ1H15vQwu9lsTUzRtQR5MxNOVMvE9fkPRupqy1MP+\n8kNr\r\n=1BwX\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","gitHead":"de84d0137fff0c9ff8e83f6b8de26e9c15c98635","scripts":{"min":"npm run min:systemjs && npm run min:sjs","test":"mocha -b -r esm test/import-map.js test/system-core.js test/url-resolution.js && npm run test-browser","build":"npm run build:systemjs && npm run build:sjs && npm run min && npm run build:extras","min:sjs":"cd dist && terser s.js -c passes=2 -m --source-map -o s.min.js","build:sjs":"rollup -c --environment sjs","footprint":"npm run footprint:systemjs && npm run footprint:sjs","prepublish":"npm run build","build:extras":"bash minify-extras.sh","min:systemjs":"cd dist && terser system.js -c passes=2 -m --source-map --comments \"/SystemJS \\d/\" -o system.min.js","test-browser":"node test/server.js","footprint:sjs":"terser dist/s.js -c passes=2 -m | gzip -9f | wc -c","build:systemjs":"rollup -c","footprint:systemjs":"terser dist/system.js -c passes=2 -m | gzip -9f | wc -c"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"6.10.3","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"12.10.0","_hasShrinkwrap":false,"devDependencies":{"esm":"^3.2.25","opn":"^6.0.0","mocha":"^5.2.0","rollup":"^0.64.1","terser":"^3.8.1","bluebird":"^3.5.1","whatwg-fetch":"^2.0.4","rollup-plugin-replace":"^2.0.0","construct-style-sheets-polyfill":"^2.1.0"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_6.1.1_1568411689575_0.8335123677581764","host":"s3://npm-registry-packages"}},"6.1.2":{"name":"systemjs","version":"6.1.2","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@6.1.2","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"5b15020c1934d9e8f96a5c95b7a4a5e60b6d0ec3","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-6.1.2.tgz","fileCount":31,"integrity":"sha512-QN0E62xEGCjp4+Wwg5o50CgdlMkQdUkiw5rHKQNJ454iKJCsFmQjPBoCEs1xq8mM/J+eYtLkZS0JCcay/gaEFw==","signatures":[{"sig":"MEUCIQDbE8Pa9pypUdsQ7EMcnsljo1HmoxFrQ9ay3v+tsyIChQIgaIzXWhVxR2o0Yejz0bso6mznGbBjJcgyLKUWXzd7V8w=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":127403,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdh68RCRA9TVsSAnZWagAA+G4P/1WwEOCNSLxmlBwbdzFL\nAHIDNvpvj71/uVSY1+oBXBBRnUHFfyOJHcNEi+xzJCEUG8X11rWMkTuuwtw5\nsWz3gJQ3jiPsK1x0+joFkwt9mUJKPL2TKJG3fapJQVr+zbmsQRcs8SHyeNLj\nHTnwysxS87pdon89l3DF1jPHZ4ki3zX2SSybHLj0/RjZrMItC6EWYq4ZdHvR\nAlrD3nj+t37dM04pwDWUBZmS+eH2B37jHFbYmCE+jcF6Q8fF0JFeNsSrsSdW\nkmpwK8rzSDfgebQ9zHAofTFX70j9ZZPmTiuqlmO5oi+4mzLGcOXi0hj7GOaT\n8S7Yq1wPHxGSwE/+Z2wEs2k0BMKRffM9spb4TeaK9gdP1dmJxcj/8WqhZUBF\nnyrnSLVW6i4wjsprz02G5bn/UzoAFZOoH74y5+ng5DXCn5gT66dAWM8bKWMB\nAMLBO0bgxiw7FeV8FhVOGBR/vzUW57YM3CamTLXxjX9r1M7a0ju4+7uE+a6m\n8G+URdRE7ZGwTx4xlxnNReOBxoPMCOl7185dlVKTpnc3x68OrEAIaiMiKw4G\nuiiUwcSBUQS7D/TxsaRfjdrc1cz9znvq0o1xkO6C/qquFJY+R8egsBjGVXpL\nPhlpevoHYdbxDegZVCpV4aWb+QzpMb9ZV5Qul26eY68568iKBP/U5MhZ7v5p\nccg5\r\n=2uJT\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","gitHead":"a90e770c74f0e650a96946d20abe3c81ed161a25","scripts":{"min":"npm run min:systemjs && npm run min:sjs","test":"mocha -b -r esm test/import-map.js test/system-core.js test/url-resolution.js && npm run test-browser","build":"npm run build:systemjs && npm run build:sjs && npm run min && npm run build:extras","min:sjs":"cd dist && terser s.js -c passes=2 -m --source-map -o s.min.js","build:sjs":"rollup -c --environment sjs","footprint":"npm run footprint:systemjs && npm run footprint:sjs","prepublish":"npm run build","build:extras":"bash minify-extras.sh","min:systemjs":"cd dist && terser system.js -c passes=2 -m --source-map --comments \"/SystemJS \\d/\" -o system.min.js","test-browser":"node test/server.js","footprint:sjs":"terser dist/s.js -c passes=2 -m | gzip -9f | wc -c","build:systemjs":"rollup -c","footprint:systemjs":"terser dist/system.js -c passes=2 -m | gzip -9f | wc -c"},"_npmUser":{"name":"joeldenning","email":"joeldenning@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"6.10.3","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"12.10.0","_hasShrinkwrap":false,"devDependencies":{"esm":"^3.2.25","opn":"^6.0.0","mocha":"^5.2.0","rollup":"^0.64.1","terser":"^3.8.1","bluebird":"^3.5.1","whatwg-fetch":"^2.0.4","rollup-plugin-replace":"^2.0.0","construct-style-sheets-polyfill":"^2.1.0"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_6.1.2_1569173264118_0.3974685716792232","host":"s3://npm-registry-packages"}},"6.1.0":{"name":"systemjs","version":"6.1.0","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@6.1.0","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"cf631431272ba4d3c3192c1828e30307f6ceda93","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-6.1.0.tgz","fileCount":31,"integrity":"sha512-+mu3mwHDwfEk+N82NqmqqhkPmt+4gVLBjBkznY/3lyWT4lyE6PFoGk7kp2Gm/1aRkAQHjuRFuaOJd+C+Zko9Tg==","signatures":[{"sig":"MEUCIC/uf0uSNnwdW4TnQTQ1JNbNOYAEUZWqDsCnybnyIMz0AiEA/+YGplcn0a0YiXbHmH5WLDA/r8ANDFy60rPxv2RmbNE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":125565,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdeYOsCRA9TVsSAnZWagAA7eYP/0yLvzWR2PvGr2mHBnHq\neXKnxuR+uUHDtFnAQoPih6g3icW/guIhiAEdoT2IruqTyW4MTDXqfhkZMC/G\n4y50Uxykm1IhqqJexaUoOzBwwUPdxv4RDJhod8q6i9AJgKpEpkFkmVZpGUR5\nSaktoq9irlw22nG+bxhiS6tHrMiO0GvTmBLFWISK2TU/+2j/scjtIVFVFHTl\nSL/31kjTWBAW12OjnrANxk6cSO+QbSN+TrCM7qSbu4dN3kHFRz5fmaLay3kN\nlPRtK1EQ7B0Wp2RHyW5sfXvDKmJns1MHp5mqJUyqcMaRz0zpiJvOzY4Onhw/\nBfDs86NS9PsgAcaQdU/uY/cq0c1ALNBcs/V4u5SmKk8+dH3L5zinZOFX1hsn\nsAw+V3Wp+iDsyTgpD1wxz0l5KrghGkFySt7Ya2HO0Hia1FjrZsulK0gXOY64\nAdOrhJOHFM+sRR67IwGsms09VgyWxK32R/OUhWzYlfzQhz1EfkNOYtKlpx8N\n4tMwOZxe2VOxqhpoMH2IM1wXZsPkv/DI7d/mltkgN0YH7mfH/SJTTEdEaRU+\ndbABHlhzx1Ac1HJK/+Y4NfNEgiY5TzjTSlwbNcsoTVpa3MSAjduMVhKPnnH2\n0/Be0D9D+Ly5a68zMZQfdDrukpGJjCWnO0aV+Vs47p7F2VDHl/M3UP9sCwcq\nKn/U\r\n=63JD\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","gitHead":"022e5df8a61c16a0d77a502a1c471c963a925055","scripts":{"min":"npm run min:systemjs && npm run min:sjs","test":"mocha -b -r esm test/import-map.js test/system-core.js test/url-resolution.js && npm run test-browser","build":"npm run build:systemjs && npm run build:sjs && npm run min && npm run build:extras","min:sjs":"cd dist && terser s.js -c passes=2 -m --source-map -o s.min.js","build:sjs":"rollup -c --environment sjs","footprint":"npm run footprint:systemjs && npm run footprint:sjs","prepublish":"npm run build","build:extras":"bash minify-extras.sh","min:systemjs":"cd dist && terser system.js -c passes=2 -m --source-map --comments \"/SystemJS \\d/\" -o system.min.js","test-browser":"node test/server.js","footprint:sjs":"terser dist/s.js -c passes=2 -m | gzip -9f | wc -c","build:systemjs":"rollup -c","footprint:systemjs":"terser dist/system.js -c passes=2 -m | gzip -9f | wc -c"},"_npmUser":{"name":"joeldenning","email":"joeldenning@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"6.9.0","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"12.6.0","_hasShrinkwrap":false,"devDependencies":{"esm":"^3.2.25","opn":"^6.0.0","mocha":"^5.2.0","rollup":"^0.64.1","terser":"^3.8.1","bluebird":"^3.5.1","whatwg-fetch":"^2.0.4","rollup-plugin-replace":"^2.0.0","construct-style-sheets-polyfill":"^2.1.0"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_6.1.0_1568244651812_0.3791102658203347","host":"s3://npm-registry-packages"}},"0.19.29":{"name":"systemjs","version":"0.19.29","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.19.29","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"4cba023c10693259c1ca26eaa8d265d4495d298a","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.19.29.tgz","integrity":"sha512-Hd7E9L+lzDrrGWCfhHGplp6hjjzYXld1Xscn9a+nE3H+5YFVolY1jFqT0qYSeWpFIg5D1dRHNVaV/tMF8Lm8eA==","signatures":[{"sig":"MEUCIDOzuar0B7So58hxAfL10TYOxFhGAilClO+AmzrAWMFFAiEAsAglznNjZF5Djc/UMf0m6PcoHnukU4vi3UycDIoFXDU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","dist"],"_shasum":"4cba023c10693259c1ca26eaa8d265d4495d298a","gitHead":"3580ed2ff84635421d537b7fafa846c50af0c404","scripts":{"test":"npm run test:babel && npm run test:traceur && npm run test:typescript","build":"make","test:babel":"qunit -c s:./index.js -t ./test/test-babel.js","test:browser":"make test","test:traceur":"qunit -c s:./index.js -t ./test/test-traceur.js","test:typescript":"qunit -c s:./index.js -t ./test/test-typescript.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"3.8.9","description":"Universal dynamic module loader","directories":{},"_nodeVersion":"6.2.0","dependencies":{"when":"^3.7.5"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.105","uglify-js":"~2.4.23","babel-core":"^5.8.22","typescript":"^1.6.2","es6-module-loader":"^0.17.11"},"_npmOperationalInternal":{"tmp":"tmp/systemjs-0.19.29.tgz_1464181628985_0.15532964863814414","host":"packages-16-east.internal.npmjs.com"}},"0.19.28":{"name":"systemjs","version":"0.19.28","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.19.28","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"1778fa364db1f688728930f4c0b00e71305ba41a","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.19.28.tgz","integrity":"sha512-EvO9pkFF7cQ8ABz/8/t7R86i9ey4Y3Fz32dNe/4OuY4XRQ2b1P2EDkqYrufji4VFza0AAbAKpS69yjLCBQxOtA==","signatures":[{"sig":"MEUCIG/jp7h5Uv09tfZs8NT5G3IeMvhFMlIISsHEYG0RJb7VAiEA2pSUOYHqjfih/rDqgrFZe+wHLzKMPo5ZoYK7aQVAXBY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","dist"],"_shasum":"1778fa364db1f688728930f4c0b00e71305ba41a","gitHead":"3f1f9db1fc82690e229f123c6726edcb550f103b","scripts":{"test":"npm run test:babel && npm run test:traceur && npm run test:typescript","build":"make","test:babel":"qunit -c s:./index.js -t ./test/test-babel.js","test:browser":"make test","test:traceur":"qunit -c s:./index.js -t ./test/test-traceur.js","test:typescript":"qunit -c s:./index.js -t ./test/test-typescript.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"3.8.9","description":"Universal dynamic module loader","directories":{},"_nodeVersion":"6.2.0","dependencies":{"when":"^3.7.5"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.105","uglify-js":"~2.4.23","babel-core":"^5.8.22","typescript":"^1.6.2","es6-module-loader":"^0.17.11"},"_npmOperationalInternal":{"tmp":"tmp/systemjs-0.19.28.tgz_1463657772512_0.6342916255816817","host":"packages-16-east.internal.npmjs.com"}},"0.19.27":{"name":"systemjs","version":"0.19.27","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.19.27","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"f1740d565ce64371ac0de7072a4d1e5471ba7ba2","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.19.27.tgz","integrity":"sha512-s37wq2mSY9XaTULhMXYEFctwBYawyrBnOo2Ykv0vweinO9zHRiBA2i/9fmncXGYAYaVQfGGjqotDk9dvbnpzuw==","signatures":[{"sig":"MEUCIQDy1jrxvaTk+pnwA5y159U4XRxqazHXOXRr0swFh416MwIgdQ+7ZCKPOiyiPSxD5vRrvFHThIKjeI/nlRB7XS7V8wY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","dist"],"_shasum":"f1740d565ce64371ac0de7072a4d1e5471ba7ba2","gitHead":"596b751b531d960acc73ff41678c4681d137ae75","scripts":{"test":"npm run test:babel && npm run test:traceur && npm run test:typescript","build":"make","test:babel":"qunit -c s:./index.js -t ./test/test-babel.js","test:browser":"make test","test:traceur":"qunit -c s:./index.js -t ./test/test-traceur.js","test:typescript":"qunit -c s:./index.js -t ./test/test-typescript.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"2.14.20","description":"Universal dynamic module loader","directories":{},"_nodeVersion":"4.4.1","dependencies":{"when":"^3.7.5"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.105","uglify-js":"~2.4.23","babel-core":"^5.8.22","typescript":"^1.6.2","es6-module-loader":"^0.17.11"},"_npmOperationalInternal":{"tmp":"tmp/systemjs-0.19.27.tgz_1461935365619_0.16924894507974386","host":"packages-16-east.internal.npmjs.com"}},"0.19.26":{"name":"systemjs","version":"0.19.26","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.19.26","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"6cc3e6e08c60ab07a32eb23616d14ab5c96a43e1","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.19.26.tgz","integrity":"sha512-FtWvr+au1dLSkDpSqsfyOOQGSGf9V9dwC6ckOUU2x5tdS+fbibArTLpdlhuJA331W3esIgk2oPp6h1w9UCItJw==","signatures":[{"sig":"MEUCIQC24AL8qpwb0BsB7LFfYkTDsFMvysz6beq1V24AK4hdKAIgBUTqjRQX5K/g9cqNg+/NW27Db7emcBPUeq2YC3WaE6M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"6cc3e6e08c60ab07a32eb23616d14ab5c96a43e1","gitHead":"8703bf0f93c20a6e6a7ad976a5a49a0c4cedc2ec","scripts":{"test":"npm run test:babel && npm run test:traceur && npm run test:typescript","build":"make","test:babel":"qunit -c s:./index.js -t ./test/test-babel.js","test:browser":"make test","test:traceur":"qunit -c s:./index.js -t ./test/test-traceur.js","test:typescript":"qunit -c s:./index.js -t ./test/test-typescript.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"2.14.20","description":"Universal dynamic module loader","directories":{},"_nodeVersion":"4.4.1","dependencies":{"when":"^3.7.5"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.105","uglify-js":"~2.4.23","babel-core":"^5.8.22","typescript":"^1.6.2","es6-module-loader":"^0.17.11"},"_npmOperationalInternal":{"tmp":"tmp/systemjs-0.19.26.tgz_1460370205811_0.15223072795197368","host":"packages-16-east.internal.npmjs.com"}},"0.19.25":{"name":"systemjs","version":"0.19.25","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.19.25","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"e7e45e8b7f95c4a65d4d8c75087ae0d891dea951","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.19.25.tgz","integrity":"sha512-XwDPhBOKGAP/ouKODXylPAw8Ks1sOke6BKXrgkT2TS7Iuz1Xoy/Bjt1y6+7ywSP9CB9kNFgYiXt1S5un1LaOtQ==","signatures":[{"sig":"MEQCIGR2wa+5crX4o0ja0KUkWYBFy/9yfYte68VDqURtoHTEAiAr/BKmC7tQRcIG/i/BLsQ7wuqLUOfQSzZEn2gfZCtgIQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"e7e45e8b7f95c4a65d4d8c75087ae0d891dea951","gitHead":"d3196ce9fd877f423757f7ad415fd75110956043","scripts":{"test":"npm run test:babel && npm run test:traceur && npm run test:typescript","build":"make","test:babel":"qunit -c s:./index.js -t ./test/test-babel.js","test:browser":"make test","test:traceur":"qunit -c s:./index.js -t ./test/test-traceur.js","test:typescript":"qunit -c s:./index.js -t ./test/test-typescript.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"2.14.20","description":"Universal dynamic module loader","directories":{},"_nodeVersion":"4.4.1","dependencies":{"when":"^3.7.5"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.105","uglify-js":"~2.4.23","babel-core":"^5.8.22","typescript":"^1.6.2"},"_npmOperationalInternal":{"tmp":"tmp/systemjs-0.19.25.tgz_1459338580759_0.8134937535505742","host":"packages-12-west.internal.npmjs.com"}},"0.19.24":{"name":"systemjs","version":"0.19.24","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.19.24","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"2695c4a72a703e53c4d6dd0cf4f28c51adc96a12","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.19.24.tgz","integrity":"sha512-qOfsTZ0zLdybYdbqusxHomexDQXcOHtUDgZYDrbXWkhYyAyVckP3QzVKy169bZDs949oH7R+6+A+4+/orvmPiA==","signatures":[{"sig":"MEUCIQDRDy5lskw7pnoV+Q3X6Opld731GLsOG7LnCQwf8EEAJAIgX0kV7kuRbhNO5LO3gz7Ud/W/M7/gxKBYj+HxdLK4nRQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"2695c4a72a703e53c4d6dd0cf4f28c51adc96a12","gitHead":"bb588cee15403be37edb807b765fc69168014f36","scripts":{"test":"npm run test:babel && npm run test:traceur && npm run test:typescript","build":"make","test:babel":"qunit -c s:./index.js -t ./test/test-babel.js","test:browser":"make test","test:traceur":"qunit -c s:./index.js -t ./test/test-traceur.js","test:typescript":"qunit -c s:./index.js -t ./test/test-typescript.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"3.3.12","description":"Universal dynamic module loader","directories":{},"_nodeVersion":"5.5.0","dependencies":{"when":"^3.7.5","es6-module-loader":"^0.17.10"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.102","uglify-js":"~2.4.23","babel-core":"^5.8.22","typescript":"^1.6.2"},"_npmOperationalInternal":{"tmp":"tmp/systemjs-0.19.24.tgz_1457532083346_0.19155846070498228","host":"packages-13-west.internal.npmjs.com"}},"0.19.23":{"name":"systemjs","version":"0.19.23","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.19.23","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"efd592d9a49773d6e248d78671a5103c0aa36fbd","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.19.23.tgz","integrity":"sha512-wFg69JrYVrRqfGIzXbmeawjmDyMj/KYt9JQFxX5ylnjUe86+Ey2Y/RPazfxlrZ0178gNazVf4+Z+b1HOnFksWA==","signatures":[{"sig":"MEQCIBRuD7vtNFjgE4s8qYoDtnEJjqCQ8nIFjHIqPWEK7KMmAiBNIuPxRFykp5oK9E+LgdCNfL+50NPH5OS5BXIAHqNwcA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"efd592d9a49773d6e248d78671a5103c0aa36fbd","gitHead":"f4461c15867f056740181d97956ba78e2a505a10","scripts":{"test":"npm run test:babel && npm run test:traceur && npm run test:typescript","build":"make","test:babel":"qunit -c s:./index.js -t ./test/test-babel.js","test:browser":"make test","test:traceur":"qunit -c s:./index.js -t ./test/test-traceur.js","test:typescript":"qunit -c s:./index.js -t ./test/test-typescript.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"3.3.12","description":"Universal dynamic module loader","directories":{},"_nodeVersion":"5.5.0","dependencies":{"when":"^3.7.5","es6-module-loader":"^0.17.10"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.102","uglify-js":"~2.4.23","babel-core":"^5.8.22","typescript":"^1.6.2"},"_npmOperationalInternal":{"tmp":"tmp/systemjs-0.19.23.tgz_1456414549461_0.7517939889803529","host":"packages-9-west.internal.npmjs.com"}},"0.19.22":{"name":"systemjs","version":"0.19.22","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.19.22","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"30818d47662e4f443494035b24960c666977d152","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.19.22.tgz","integrity":"sha512-z2yXQS2NMUWjvgBg37dGLe3xaKPIl5Lg99FDd8oidHhQvcFWsYgCBHF7Zq469xFqpYT+3XRwoDDWep9ge7CCmw==","signatures":[{"sig":"MEUCIQD4LlS9aRqShnDxT74dGMK7zGAWQgjDNRtZL+HQcl+J7QIgaBZolopa3di4ALzuqKpc0n4ZNFG3anc0nFi+OKeACBM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"30818d47662e4f443494035b24960c666977d152","gitHead":"69fede0b62ad03c3609642b4353563fb3e03a6d3","scripts":{"test":"npm run test:babel && npm run test:traceur && npm run test:typescript","build":"make","test:babel":"qunit -c s:./index.js -t ./test/test-babel.js","test:browser":"make test","test:traceur":"qunit -c s:./index.js -t ./test/test-traceur.js","test:typescript":"qunit -c s:./index.js -t ./test/test-typescript.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"3.3.12","description":"Universal dynamic module loader","directories":{},"_nodeVersion":"5.5.0","dependencies":{"when":"^3.7.5","es6-module-loader":"^0.17.10"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.102","uglify-js":"~2.4.23","babel-core":"^5.8.22","typescript":"^1.6.2"},"_npmOperationalInternal":{"tmp":"tmp/systemjs-0.19.22.tgz_1455630669820_0.7214106200262904","host":"packages-6-west.internal.npmjs.com"}},"0.6.0":{"name":"systemjs","version":"0.6.0","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.6.0","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/guybedford/systemjs","bugs":{"url":"https://github.com/guybedford/systemjs/issues"},"dist":{"shasum":"82a893363a063828e69e2d23303f5782d40edb7f","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.6.0.tgz","integrity":"sha512-BWmNAX0JqCSXIBmD0CxsukI2ClKSW3TlpQ0odrrhq7zcViux88jaa54kPG7+g7osEnJgm9GGsOH2dLd+W8KZBw==","signatures":[{"sig":"MEQCIAIsGT/3jGwZN29o8HGH2IwyAQbqy6p1azbkgpnHJI7CAiBsc+uBfRb8Nt9d4FIMPJXLAszHLboqnUW1Qf/09ZIS8Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.js","_from":".","_shasum":"82a893363a063828e69e2d23303f5782d40edb7f","scripts":{"test":"qunit -c s:./dist/system.js -t ./test/test.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/guybedford/systemjs","type":"git"},"_npmVersion":"1.4.9","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"dependencies":{"es6-module-loader":"~0.6.0"},"devDependencies":{"qunit":"^0.6.2"}},"0.6.1":{"name":"systemjs","version":"0.6.1","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.6.1","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/guybedford/systemjs","bugs":{"url":"https://github.com/guybedford/systemjs/issues"},"dist":{"shasum":"b644da1b08928df58580328b79735c6226a01e8c","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.6.1.tgz","integrity":"sha512-ies8oHmCe5i57hXB9uQZlrof+5LBsvA0WPM2vSjV043mb05xypdkH7gsAIxsKaxoii+tkTPSp83XzX6X4CDSgQ==","signatures":[{"sig":"MEQCICcZeOvloWWm3wzgTUV7gYJghQ2XM7QsSitivMkRCXYdAiBj4YUwzq5ZBeLQEy92yZdV9HwJKxft+URwa91cJ7i5jQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.js","_from":".","_shasum":"b644da1b08928df58580328b79735c6226a01e8c","scripts":{"test":"qunit -c s:./dist/system.js -t ./test/test.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/guybedford/systemjs","type":"git"},"_npmVersion":"1.4.9","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"dependencies":{"es6-module-loader":"~0.6.0"},"devDependencies":{"qunit":"^0.6.2","uglify-js":"~2.4.13"}},"0.20.0-rc.1":{"name":"systemjs","version":"0.20.0-rc.1","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.20.0-rc.1","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"f8339c2f326111a3015ab2b5e01b13a343d5022a","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.20.0-rc.1.tgz","integrity":"sha512-09fzH5iDwMzY7cUWkTa7lkzMa7n13GIGt63SEaLGEGA7hoVDwde3pB8IvqsqLBX1GzSbneE16ceFgOVZLM5cfA==","signatures":[{"sig":"MEUCIQDw6KjIf8jhCsvCBelOTza8ofcRz7ClXqkEdPlHb4L8ggIgDeBRUo4CVcvtKMNW6+4+evarxjnxxEEgdKjV32wDKJ4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.src.js","_from":".","files":["dist"],"_shasum":"f8339c2f326111a3015ab2b5e01b13a343d5022a","gitHead":"fb990eefb050d625864ab7e5c395ae1be98cc670","scripts":{"min":"npm run min:dev && npm run min:production","test":"npm run test:production && npm run test:babel && npm run test:traceur && npm run test:typescript","build":"npm run build:dev && npm run build:production","irhydra":"node --trace-hydrogen --trace-phase=Z --trace-deopt --code-comments --hydrogen-track-positions --redirect-code-traces --redirect-code-traces-to=code.asm --print-opt-code --trace_hydrogen_file=hydrogen.cfg irhydra/load.js","min:dev":"uglifyjs dist/system.src.js -cm --in-source-map dist/system.src.js.map --source-map dist/system.js.map --screw-ie8 --comments '/SystemJS v/' > dist/system.js","build:dev":"rollup -c","footprint":"npm run footprint:dev && npm run footprint:production","test:babel":"mocha test/test-babel.js -u tdd --reporter dot","test:traceur":"mocha test/test-traceur.js -u tdd --reporter dot","footprint:dev":"uglifyjs dist/system.src.js -cm --screw-ie8 | gzip -9f | wc -c","min:production":"uglifyjs dist/system-production.src.js -cm --in-source-map dist/system-production.src.js.map --source-map dist/system-production.js.map --screw-ie8 --comments '/SystemJS v/' > dist/system-production.js","test:production":"mocha test/test-production.js -u tdd --reporter dot","test:typescript":"mocha test/test-typescript.js -u tdd --reporter dot","build:production":"rollup -c --environment production","footprint:production":"uglifyjs dist/system-production.src.js -cm --screw-ie8 | gzip -9f | wc -c"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"3.10.3","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"6.6.0","devDependencies":{"mocha":"^3.1.2","rollup":"^0.36.4","traceur":"0.0.111","bluebird":"^3.4.6","babel-core":"^6.21.0","typescript":"^2.0.6","es-module-loader":"github:moduleloader/es-module-loader#next","plugin-typescript":"^5.2.7","rollup-plugin-replace":"^1.1.1","systemjs-plugin-babel":"0.0.17","systemjs-plugin-traceur":"0.0.3","rollup-plugin-node-resolve":"^2.0.0","babel-plugin-syntax-dynamic-import":"^6.18.0","babel-plugin-transform-es2015-modules-systemjs":"^6.19.0"},"_npmOperationalInternal":{"tmp":"tmp/systemjs-0.20.0-rc.1.tgz_1483455080780_0.5944711279589683","host":"packages-12-west.internal.npmjs.com"}},"0.6.4":{"name":"systemjs","version":"0.6.4","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.6.4","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/guybedford/systemjs","bugs":{"url":"https://github.com/guybedford/systemjs/issues"},"dist":{"shasum":"0fc8abab63df44bbc22fa11aac4b92ff2cc9b08c","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.6.4.tgz","integrity":"sha512-aRLnfJhKatKRf6nZ11DGOXsYLVDINJwRMbJ0GAuweuC/kX3KQlLEoyLTft1qzh1HU9PPEolBCMrt4Hcn4Wylog==","signatures":[{"sig":"MEUCIFYJntS3Hkoc+X7bG88TH9YwW8ts2d72m0lU3GTLb74bAiEA9ATP6FNENFid3upF27pJmRT7RMLpda0x54Bf8NJhB9U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.js","_from":".","_shasum":"0fc8abab63df44bbc22fa11aac4b92ff2cc9b08c","scripts":{"test":"qunit -c s:./dist/system.js -t ./test/test.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/guybedford/systemjs","type":"git"},"_npmVersion":"1.4.9","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"dependencies":{"es6-module-loader":"~0.6.1"},"devDependencies":{"qunit":"^0.6.2","uglify-js":"~2.4.13"}},"0.20.0-rc.2":{"name":"systemjs","version":"0.20.0-rc.2","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.20.0-rc.2","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"e131d8c5665181a7b53949f1bfae1da4f3144b89","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.20.0-rc.2.tgz","integrity":"sha512-0eRcQVrH/VHzF7PtEGcB0dfnSlT7BNAul6NXyaKfMHLiSqmHxRM7H3KIaaoa5oqqzd74HJybdjVolxkfDX/sPQ==","signatures":[{"sig":"MEQCIDIZbIfWBcq2Cfa2MK8DEi2/SKL3Dy2Fun0NneHLxhESAiAr+3DZojJOCAmdTUoSgBRnGLyaRzkkhJh1i2UPvDvcLA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.src.js","_from":".","files":["dist"],"_shasum":"e131d8c5665181a7b53949f1bfae1da4f3144b89","gitHead":"4cb110cc4fd8c359c1aee016b04a9a2b66e7e308","scripts":{"min":"npm run min:dev && npm run min:production","test":"npm run test:production && npm run test:babel && npm run test:traceur && npm run test:typescript","build":"npm run build:dev && npm run build:production","irhydra":"node --trace-hydrogen --trace-phase=Z --trace-deopt --code-comments --hydrogen-track-positions --redirect-code-traces --redirect-code-traces-to=code.asm --print-opt-code --trace_hydrogen_file=hydrogen.cfg irhydra/load.js","min:dev":"cd dist && uglifyjs system.src.js -cm --in-source-map system.src.js.map --source-map system.js.map --screw-ie8 --comments '/SystemJS v/' > system.js","build:dev":"rollup -c","footprint":"npm run footprint:dev && npm run footprint:production","test:babel":"mocha test/test-babel.js -u tdd --reporter dot","test:traceur":"mocha test/test-traceur.js -u tdd --reporter dot","footprint:dev":"uglifyjs dist/system.src.js -cm --screw-ie8 | gzip -9f | wc -c","min:production":"cd dist && uglifyjs system-production.src.js -cm --in-source-map system-production.src.js.map --source-map system-production.js.map --screw-ie8 --comments '/SystemJS v/' > system-production.js","test:production":"mocha test/test-production.js -u tdd --reporter dot","test:typescript":"mocha test/test-typescript.js -u tdd --reporter dot","build:production":"rollup -c --environment production","footprint:production":"uglifyjs dist/system-production.src.js -cm --screw-ie8 | gzip -9f | wc -c"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"3.10.3","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"6.6.0","devDependencies":{"mocha":"^3.1.2","rollup":"^0.41.1","traceur":"0.0.111","bluebird":"^3.4.6","babel-core":"^6.21.0","typescript":"^2.0.6","es-module-loader":"github:moduleloader/es-module-loader#next","plugin-typescript":"^5.2.7","rollup-plugin-replace":"^1.1.1","systemjs-plugin-babel":"0.0.17","systemjs-plugin-traceur":"0.0.3","rollup-plugin-node-resolve":"^2.0.0","babel-plugin-syntax-dynamic-import":"^6.18.0","babel-plugin-transform-es2015-modules-systemjs":"^6.19.0"},"_npmOperationalInternal":{"tmp":"tmp/systemjs-0.20.0-rc.2.tgz_1484313516545_0.7040343277622014","host":"packages-12-west.internal.npmjs.com"}},"0.6.5":{"name":"systemjs","version":"0.6.5","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.6.5","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/guybedford/systemjs","bugs":{"url":"https://github.com/guybedford/systemjs/issues"},"dist":{"shasum":"394bebb7487705c1d8ea9c8a5f73c0152f68ae2b","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.6.5.tgz","integrity":"sha512-pmsl/vDj0sVmzZ58gq0Sj7bGj5blcKebQjjpbizZUQtiCYhLlutqDIh5m4CBNzKtukuIReFdRfIYdqerIBDxIg==","signatures":[{"sig":"MEUCIQCW5cSaBVB/FsGoXmhwmgwCMHPk+/UlTQQj4dWqNyynIQIgVKKgdAgtcEgQMh4qbcp4taPE8VGb7/jLtQkmGZSKwl4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.js","_from":".","_shasum":"394bebb7487705c1d8ea9c8a5f73c0152f68ae2b","scripts":{"test":"qunit -c s:./dist/system.js -t ./test/test.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/guybedford/systemjs","type":"git"},"_npmVersion":"1.4.9","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"dependencies":{"es6-module-loader":"~0.6.1"},"devDependencies":{"qunit":"^0.6.2","uglify-js":"~2.4.13"}},"0.20.0-rc.3":{"name":"systemjs","version":"0.20.0-rc.3","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.20.0-rc.3","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"b3f066f87f89f8e09c0b6f964ad03f113f41d510","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.20.0-rc.3.tgz","integrity":"sha512-wRmugkKZYosa2PkTtdR6rNXjMU4K1ASQPMWrd8ODCzhr4K/r8AOj7Sha+pxNTZ04fEqmS6NzvCwo0hHz8z2e2A==","signatures":[{"sig":"MEUCICPI5iJ+K5r+07Ouxw9UPv1TaBa8djlhxyH2bxlRI+6+AiEA8kv/FLMycnInyNC29R/oWeR5ny32YxYKJ5GJymbJFA4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.src.js","_from":".","files":["dist"],"_shasum":"b3f066f87f89f8e09c0b6f964ad03f113f41d510","gitHead":"2d60eda7e6cc5c44af17f4b542ed73a5fdb569dc","scripts":{"min":"npm run min:dev && npm run min:production","test":"npm run test:production && npm run test:babel && npm run test:traceur && npm run test:typescript","build":"npm run build:dev && npm run build:production","irhydra":"node --trace-hydrogen --trace-phase=Z --trace-deopt --code-comments --hydrogen-track-positions --redirect-code-traces --redirect-code-traces-to=code.asm --print-opt-code --trace_hydrogen_file=hydrogen.cfg irhydra/load.js","min:dev":"cd dist && uglifyjs system.src.js -cm --in-source-map system.src.js.map --source-map system.js.map --screw-ie8 --comments '/SystemJS v/' > system.js","build:dev":"rollup -c","footprint":"npm run footprint:dev && npm run footprint:production","test:babel":"mocha test/test-babel.js -u tdd --reporter dot","test:traceur":"mocha test/test-traceur.js -u tdd --reporter dot","footprint:dev":"uglifyjs dist/system.src.js -cm --screw-ie8 | gzip -9f | wc -c","min:production":"cd dist && uglifyjs system-production.src.js -cm --in-source-map system-production.src.js.map --source-map system-production.js.map --screw-ie8 --comments '/SystemJS v/' > system-production.js","test:production":"mocha test/test-production.js -u tdd --reporter dot","test:typescript":"mocha test/test-typescript.js -u tdd --reporter dot","build:production":"rollup -c --environment production","footprint:production":"uglifyjs dist/system-production.src.js -cm --screw-ie8 | gzip -9f | wc -c"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"3.10.3","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"6.6.0","devDependencies":{"mocha":"^3.1.2","rollup":"^0.41.1","traceur":"0.0.111","bluebird":"^3.4.6","babel-core":"^6.21.0","typescript":"^2.0.6","es-module-loader":"github:moduleloader/es-module-loader#next","plugin-typescript":"^5.2.7","rollup-plugin-replace":"^1.1.1","systemjs-plugin-babel":"0.0.17","systemjs-plugin-traceur":"0.0.3","rollup-plugin-node-resolve":"^2.0.0","babel-plugin-syntax-dynamic-import":"^6.18.0","babel-plugin-transform-es2015-modules-systemjs":"^6.19.0"},"_npmOperationalInternal":{"tmp":"tmp/systemjs-0.20.0-rc.3.tgz_1484315171895_0.08890748862177134","host":"packages-18-east.internal.npmjs.com"}},"0.6.2":{"name":"systemjs","version":"0.6.2","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.6.2","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/guybedford/systemjs","bugs":{"url":"https://github.com/guybedford/systemjs/issues"},"dist":{"shasum":"a4b5eb130e4401fe71efe6bfd886636d7db78e33","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.6.2.tgz","integrity":"sha512-U0oDhx+sijcYPEssbEMJLpDbtfyGj6gBLMiQ3QKaI2VFp/BC2DRgTnmbm8WSc1KV5O1J+DrZuA/WVUhsfkQHGw==","signatures":[{"sig":"MEYCIQCiAtTL9AebpMDS8a2DDklCktXem4JDHa71z7TNW82BBgIhAKO6bm4xUUcLqgxWQrM8+Xc3lS04Df+TUZERGcM31KLo","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.js","_from":".","_shasum":"a4b5eb130e4401fe71efe6bfd886636d7db78e33","scripts":{"test":"qunit -c s:./dist/system.js -t ./test/test.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/guybedford/systemjs","type":"git"},"_npmVersion":"1.4.9","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"dependencies":{"es6-module-loader":"~0.6.1"},"devDependencies":{"qunit":"^0.6.2","uglify-js":"~2.4.13"}},"0.20.0-rc.4":{"name":"systemjs","version":"0.20.0-rc.4","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.20.0-rc.4","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"9637d106753b13bf2564842b4efbc265248cf3d3","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.20.0-rc.4.tgz","integrity":"sha512-5tKLNPpMqg5XrK0WkO03zTKEIRTu5tzxdRcWIsrP190km5gHdOAqRIL+4nibRbvjEV+GkcoJt5jnNDmtkvw0iw==","signatures":[{"sig":"MEUCICs4fCCm08b0EGxCE6CoGdTNHA+UozkX6bmJmB2go2rvAiEA5f7SBddlEdOLH/xIVA6apjl7HiWHCpCLSDpjRrqXtIc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.src.js","_from":".","files":["dist"],"_shasum":"9637d106753b13bf2564842b4efbc265248cf3d3","gitHead":"6de2cc0c777397dbeb8f4b7fd2a6903b93489361","scripts":{"min":"npm run min:dev && npm run min:production","test":"npm run test:production && npm run test:babel && npm run test:traceur && npm run test:typescript","build":"npm run build:dev && npm run build:production","irhydra":"node --trace-hydrogen --trace-phase=Z --trace-deopt --code-comments --hydrogen-track-positions --redirect-code-traces --redirect-code-traces-to=code.asm --print-opt-code --trace_hydrogen_file=hydrogen.cfg irhydra/load.js","min:dev":"cd dist && uglifyjs system.src.js -cm --in-source-map system.src.js.map --source-map system.js.map --screw-ie8 --comments '/SystemJS v/' > system.js","build:dev":"rollup -c","footprint":"npm run footprint:dev && npm run footprint:production","test:babel":"mocha test/test-babel.js -u tdd --reporter dot","test:traceur":"mocha test/test-traceur.js -u tdd --reporter dot","footprint:dev":"uglifyjs dist/system.src.js -cm --screw-ie8 | gzip -9f | wc -c","min:production":"cd dist && uglifyjs system-production.src.js -cm --in-source-map system-production.src.js.map --source-map system-production.js.map --screw-ie8 --comments '/SystemJS v/' > system-production.js","test:production":"mocha test/test-production.js -u tdd --reporter dot","test:typescript":"mocha test/test-typescript.js -u tdd --reporter dot","build:production":"rollup -c --environment production","footprint:production":"uglifyjs dist/system-production.src.js -cm --screw-ie8 | gzip -9f | wc -c"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"3.10.3","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"6.6.0","devDependencies":{"mocha":"^3.1.2","rollup":"^0.41.1","traceur":"0.0.111","bluebird":"^3.4.6","babel-core":"^6.21.0","typescript":"^2.0.6","es-module-loader":"github:moduleloader/es-module-loader#next","plugin-typescript":"^5.2.7","rollup-plugin-replace":"^1.1.1","systemjs-plugin-babel":"0.0.17","systemjs-plugin-traceur":"0.0.3","rollup-plugin-node-resolve":"^2.0.0","babel-plugin-syntax-dynamic-import":"^6.18.0","babel-plugin-transform-es2015-modules-systemjs":"^6.19.0"},"_npmOperationalInternal":{"tmp":"tmp/systemjs-0.20.0-rc.4.tgz_1484377754878_0.703114622971043","host":"packages-12-west.internal.npmjs.com"}},"0.6.3":{"name":"systemjs","version":"0.6.3","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.6.3","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/guybedford/systemjs","bugs":{"url":"https://github.com/guybedford/systemjs/issues"},"dist":{"shasum":"83699db2f40d921791a5f7d67617d3e8c11bd972","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.6.3.tgz","integrity":"sha512-kbRiLPiBK66o07VWvpXqYfzjjaUArDAEwVXDJXMQWPgFKZaCY8pCd8jei8xZfkui1G8lsJHGUDKcVM1uSq3Jlw==","signatures":[{"sig":"MEQCIFwfbVCxnDA6mefpAAYWYrakBT0GUNglUPqRDCRt6Wv+AiANwhFIOJBswVHQUba+cFuO4XF4cjQMR2H8u0l66mM9BQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.js","_from":".","_shasum":"83699db2f40d921791a5f7d67617d3e8c11bd972","scripts":{"test":"qunit -c s:./dist/system.js -t ./test/test.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/guybedford/systemjs","type":"git"},"_npmVersion":"1.4.9","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"dependencies":{"es6-module-loader":"~0.6.1"},"devDependencies":{"qunit":"^0.6.2","uglify-js":"~2.4.13"}},"0.20.0-rc.5":{"name":"systemjs","version":"0.20.0-rc.5","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.20.0-rc.5","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"db06c1f7d6a4c216f3feb64bed521ccd29653cd2","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.20.0-rc.5.tgz","integrity":"sha512-Fj19mxU3smqDXQP7EJzq1JeqVeaK6IZaglnqezUugQDfVfVjkskVjzb9JHIgpDNOqcSIjzE10wHtQPKbipNwWg==","signatures":[{"sig":"MEQCIFr059o3MajX9bO7ufOkVAOvY6CNxsBiMrwT8ETq+tdbAiANF33PFWG7zEjK87889QTywQZVeEq0QPYGb/2EVsV9Pg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.src.js","_from":".","files":["dist"],"_shasum":"db06c1f7d6a4c216f3feb64bed521ccd29653cd2","gitHead":"7ce81424222157b8985e5958599cee8452d57638","scripts":{"min":"npm run min:dev && npm run min:production","test":"npm run test:production && npm run test:babel && npm run test:traceur && npm run test:typescript","build":"npm run build:dev && npm run build:production","irhydra":"node --trace-hydrogen --trace-phase=Z --trace-deopt --code-comments --hydrogen-track-positions --redirect-code-traces --redirect-code-traces-to=code.asm --print-opt-code --trace_hydrogen_file=hydrogen.cfg irhydra/load.js","min:dev":"cd dist && uglifyjs system.src.js -cm --in-source-map system.src.js.map --source-map system.js.map --screw-ie8 --comments '/SystemJS v/' > system.js","build:dev":"rollup -c","footprint":"npm run footprint:dev && npm run footprint:production","test:babel":"mocha test/test-babel.js -u tdd --reporter dot","test:traceur":"mocha test/test-traceur.js -u tdd --reporter dot","footprint:dev":"uglifyjs dist/system.src.js -cm --screw-ie8 | gzip -9f | wc -c","min:production":"cd dist && uglifyjs system-production.src.js -cm --in-source-map system-production.src.js.map --source-map system-production.js.map --screw-ie8 --comments '/SystemJS v/' > system-production.js","test:production":"mocha test/test-production.js -u tdd --reporter dot","test:typescript":"mocha test/test-typescript.js -u tdd --reporter dot","build:production":"rollup -c --environment production","footprint:production":"uglifyjs dist/system-production.src.js -cm --screw-ie8 | gzip -9f | wc -c"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"3.10.3","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"6.6.0","devDependencies":{"mocha":"^3.1.2","rollup":"^0.41.1","traceur":"0.0.111","bluebird":"^3.4.6","babel-core":"^6.21.0","typescript":"^2.0.6","es-module-loader":"github:moduleloader/es-module-loader#next","plugin-typescript":"^5.2.7","rollup-plugin-replace":"^1.1.1","systemjs-plugin-babel":"0.0.17","systemjs-plugin-traceur":"0.0.3","rollup-plugin-node-resolve":"^2.0.0","babel-plugin-syntax-dynamic-import":"^6.18.0","babel-plugin-transform-es2015-modules-systemjs":"^6.19.0"},"_npmOperationalInternal":{"tmp":"tmp/systemjs-0.20.0-rc.5.tgz_1484647845449_0.780008103698492","host":"packages-18-east.internal.npmjs.com"}},"0.20.0-rc.6":{"name":"systemjs","version":"0.20.0-rc.6","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.20.0-rc.6","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"c7c43ff8cdb49a803b059c2fca741900b64b4525","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.20.0-rc.6.tgz","integrity":"sha512-JUWFDtniCKg2eoaRoze0DoMx5r5RMce+7mSBeYJaEPvAZoMv61aUByxT7qa5dDYPylXyUlgR0yVFXzZ//MB45g==","signatures":[{"sig":"MEMCH1RW+bsdIIhicOBERCm3DVZfN7cCVluZGxsFbhyMIRACIDKhJTld3Y/ow78bIp5QebLjHK8AvFX2Jx5DGAfqKSaR","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.src.js","_from":".","files":["dist"],"_shasum":"c7c43ff8cdb49a803b059c2fca741900b64b4525","gitHead":"3db0792d93cd1d1cfb4db422ae5043d50de1810f","scripts":{"min":"npm run min:dev && npm run min:production","test":"npm run test:production && npm run test:babel && npm run test:traceur && npm run test:typescript","build":"npm run build:dev && npm run build:production","irhydra":"node --trace-hydrogen --trace-phase=Z --trace-deopt --code-comments --hydrogen-track-positions --redirect-code-traces --redirect-code-traces-to=code.asm --print-opt-code --trace_hydrogen_file=hydrogen.cfg irhydra/load.js","min:dev":"cd dist && uglifyjs system.src.js -cm --in-source-map system.src.js.map --source-map system.js.map --screw-ie8 --comments '/SystemJS v/' > system.js","build:dev":"rollup -c","footprint":"npm run footprint:dev && npm run footprint:production","test:babel":"mocha test/test-babel.js -u tdd --reporter dot","test:traceur":"mocha test/test-traceur.js -u tdd --reporter dot","footprint:dev":"uglifyjs dist/system.src.js -cm --screw-ie8 | gzip -9f | wc -c","min:production":"cd dist && uglifyjs system-production.src.js -cm --in-source-map system-production.src.js.map --source-map system-production.js.map --screw-ie8 --comments '/SystemJS v/' > system-production.js","test:production":"mocha test/test-production.js -u tdd --reporter dot","test:typescript":"mocha test/test-typescript.js -u tdd --reporter dot","build:production":"rollup -c --environment production","footprint:production":"uglifyjs dist/system-production.src.js -cm --screw-ie8 | gzip -9f | wc -c"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"3.10.3","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"6.6.0","devDependencies":{"mocha":"^3.1.2","rollup":"^0.41.1","traceur":"0.0.111","bluebird":"^3.4.6","babel-core":"^6.21.0","typescript":"^2.0.6","es-module-loader":"github:moduleloader/es-module-loader#next","plugin-typescript":"^5.2.7","rollup-plugin-replace":"^1.1.1","systemjs-plugin-babel":"0.0.17","systemjs-plugin-traceur":"0.0.3","rollup-plugin-node-resolve":"^2.0.0","babel-plugin-syntax-dynamic-import":"^6.18.0","babel-plugin-transform-es2015-modules-systemjs":"^6.19.0"},"_npmOperationalInternal":{"tmp":"tmp/systemjs-0.20.0-rc.6.tgz_1484648085312_0.17677010432817042","host":"packages-12-west.internal.npmjs.com"}},"0.20.2":{"name":"systemjs","version":"0.20.2","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.20.2","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"9e351656489d5311b3b498d3444d4d880e29c83f","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.20.2.tgz","integrity":"sha512-+al6dQDwIBPzmz5VyATX3fK8YefCY1jK1Y+22BhhrfstWkkJWKTVU0Fiu4JIi5AQRZ9rYPEdDKCuA2XojO3NvQ==","signatures":[{"sig":"MEUCIEaQHjwJwvej6HsRTIMrzqGmA4oaYd7TDtyrlidU7gcoAiEA4Mggo4KK+ELo9lD1z3a4dNvMxLD9U2cJzGL1QNLFpWs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.src.js","_from":".","files":["dist"],"_shasum":"9e351656489d5311b3b498d3444d4d880e29c83f","gitHead":"d45c15899a002801796ab83ac830a06aa6b37529","scripts":{"min":"npm run min:dev && npm run min:production","test":"npm run test:production && npm run test:babel && npm run test:traceur && npm run test:typescript","build":"npm run build:dev && npm run build:production","irhydra":"node --trace-hydrogen --trace-phase=Z --trace-deopt --code-comments --hydrogen-track-positions --redirect-code-traces --redirect-code-traces-to=code.asm --print-opt-code --trace_hydrogen_file=hydrogen.cfg irhydra/load.js","min:dev":"cd dist && uglifyjs system.src.js -cm --in-source-map system.src.js.map --source-map system.js.map --screw-ie8 --comments '/SystemJS v/' > system.js","publish":"rm -r dist && npm run build && npm run min && npm publish .","build:dev":"rollup -c","footprint":"npm run footprint:dev && npm run footprint:production","test:babel":"mocha test/test-babel.js -u tdd --reporter dot","test:traceur":"mocha test/test-traceur.js -u tdd --reporter dot","footprint:dev":"uglifyjs dist/system.src.js -cm --screw-ie8 | gzip -9f | wc -c","min:production":"cd dist && uglifyjs system-production.src.js -cm --in-source-map system-production.src.js.map --source-map system-production.js.map --screw-ie8 --comments '/SystemJS v/' > system-production.js","test:production":"mocha test/test-production.js -u tdd --reporter dot","test:typescript":"mocha test/test-typescript.js -u tdd --reporter dot","build:production":"rollup -c --environment production","footprint:production":"uglifyjs dist/system-production.src.js -cm --screw-ie8 | gzip -9f | wc -c"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"4.0.5","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"7.4.0","devDependencies":{"mocha":"^3.1.2","rollup":"^0.41.1","traceur":"0.0.111","bluebird":"^3.4.6","babel-core":"^6.21.0","typescript":"^2.0.6","es-module-loader":"^2.0.0","plugin-typescript":"^5.2.7","rollup-plugin-replace":"^1.1.1","systemjs-plugin-babel":"0.0.17","systemjs-plugin-traceur":"0.0.3","rollup-plugin-node-resolve":"^2.0.0","babel-plugin-syntax-dynamic-import":"^6.18.0","babel-plugin-transform-es2015-modules-systemjs":"^6.19.0"},"_npmOperationalInternal":{"tmp":"tmp/systemjs-0.20.2.tgz_1485504275136_0.492923028068617","host":"packages-12-west.internal.npmjs.com"}},"0.20.0-rc.7":{"name":"systemjs","version":"0.20.0-rc.7","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.20.0-rc.7","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"3006ce112916b4e7fd99440c6549c3b17cd4e649","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.20.0-rc.7.tgz","integrity":"sha512-3JIRsh8bGxA2MOkSZwJHgjKZNEAE+xH5yQT8Pwv4+jZ7m3RnWFOvEoA4J/MSnOZaeyEcKRluriyP/7LH6fJtYw==","signatures":[{"sig":"MEQCIDHHuRAXUdZAtmCsZAZWWGjCWx0Rf+677BfVBSxXohehAiBuOSRwEH18OH3ZovU70XHLxIB/fwbkwpFNyxDUs29YqA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.src.js","_from":".","files":["dist"],"_shasum":"3006ce112916b4e7fd99440c6549c3b17cd4e649","gitHead":"5becc8b68763ce473c64ff7e6160a1468dcfe36e","scripts":{"min":"npm run min:dev && npm run min:production","test":"npm run test:production && npm run test:babel && npm run test:traceur && npm run test:typescript","build":"npm run build:dev && npm run build:production","irhydra":"node --trace-hydrogen --trace-phase=Z --trace-deopt --code-comments --hydrogen-track-positions --redirect-code-traces --redirect-code-traces-to=code.asm --print-opt-code --trace_hydrogen_file=hydrogen.cfg irhydra/load.js","min:dev":"cd dist && uglifyjs system.src.js -cm --in-source-map system.src.js.map --source-map system.js.map --screw-ie8 --comments '/SystemJS v/' > system.js","build:dev":"rollup -c","footprint":"npm run footprint:dev && npm run footprint:production","test:babel":"mocha test/test-babel.js -u tdd --reporter dot","test:traceur":"mocha test/test-traceur.js -u tdd --reporter dot","footprint:dev":"uglifyjs dist/system.src.js -cm --screw-ie8 | gzip -9f | wc -c","min:production":"cd dist && uglifyjs system-production.src.js -cm --in-source-map system-production.src.js.map --source-map system-production.js.map --screw-ie8 --comments '/SystemJS v/' > system-production.js","test:production":"mocha test/test-production.js -u tdd --reporter dot","test:typescript":"mocha test/test-typescript.js -u tdd --reporter dot","build:production":"rollup -c --environment production","footprint:production":"uglifyjs dist/system-production.src.js -cm --screw-ie8 | gzip -9f | wc -c"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"4.0.5","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"7.4.0","devDependencies":{"mocha":"^3.1.2","rollup":"^0.41.1","traceur":"0.0.111","bluebird":"^3.4.6","babel-core":"^6.21.0","typescript":"^2.0.6","es-module-loader":"github:moduleloader/es-module-loader#next","plugin-typescript":"^5.2.7","rollup-plugin-replace":"^1.1.1","systemjs-plugin-babel":"0.0.17","systemjs-plugin-traceur":"0.0.3","rollup-plugin-node-resolve":"^2.0.0","babel-plugin-syntax-dynamic-import":"^6.18.0","babel-plugin-transform-es2015-modules-systemjs":"^6.19.0"},"_npmOperationalInternal":{"tmp":"tmp/systemjs-0.20.0-rc.7.tgz_1484745115922_0.7181251728907228","host":"packages-18-east.internal.npmjs.com"}},"0.20.3":{"name":"systemjs","version":"0.20.3","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.20.3","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"05cb65c7c0c41319808b5f3eb82e705d8756115a","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.20.3.tgz","integrity":"sha512-LdBo3WX3u9LJD4cN5MrMBTwEaV2N42kwpzwN4eRP2uwxK3/D8AvJAYZovhXHDRYbNaltjCLJIZX0C4/wPn/Vsw==","signatures":[{"sig":"MEQCIHAhpIOO+trVB5c2M4a3SbPS7zRUKM9vqzgRjei7XxR9AiBZSKAK5akZj3WrIeJa4O2RYGOqcqxxLsMQRMRoZJVFAw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.src.js","_from":".","files":["dist"],"_shasum":"05cb65c7c0c41319808b5f3eb82e705d8756115a","gitHead":"ee90da148fb1f4c4aa61bcbbf261fec82aba00e0","scripts":{"min":"npm run min:dev && npm run min:production","test":"npm run test:production && npm run test:babel && npm run test:traceur && npm run test:typescript","build":"npm run build:dev && npm run build:production","irhydra":"node --trace-hydrogen --trace-phase=Z --trace-deopt --code-comments --hydrogen-track-positions --redirect-code-traces --redirect-code-traces-to=code.asm --print-opt-code --trace_hydrogen_file=hydrogen.cfg irhydra/load.js","min:dev":"cd dist && uglifyjs system.src.js -cm --in-source-map system.src.js.map --source-map system.js.map --screw-ie8 --comments '/SystemJS v/' > system.js","build:dev":"rollup -c","footprint":"npm run footprint:dev && npm run footprint:production","prepublish":"rm -r dist && npm run build && npm run min","test:babel":"mocha test/test-babel.js -u tdd --reporter dot","test:traceur":"mocha test/test-traceur.js -u tdd --reporter dot","footprint:dev":"uglifyjs dist/system.src.js -cm --screw-ie8 | gzip -9f | wc -c","min:production":"cd dist && uglifyjs system-production.src.js -cm --in-source-map system-production.src.js.map --source-map system-production.js.map --screw-ie8 --comments '/SystemJS v/' > system-production.js","test:production":"mocha test/test-production.js -u tdd --reporter dot","test:typescript":"mocha test/test-typescript.js -u tdd --reporter dot","build:production":"rollup -c --environment production","footprint:production":"uglifyjs dist/system-production.src.js -cm --screw-ie8 | gzip -9f | wc -c"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"4.0.5","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"7.4.0","devDependencies":{"mocha":"^3.1.2","rollup":"^0.41.1","traceur":"0.0.111","bluebird":"^3.4.6","uglifyjs":"^2.4.10","babel-core":"^6.21.0","typescript":"^2.0.6","es-module-loader":"^2.0.0","plugin-typescript":"^5.2.7","rollup-plugin-replace":"^1.1.1","systemjs-plugin-babel":"0.0.17","systemjs-plugin-traceur":"0.0.3","rollup-plugin-node-resolve":"^2.0.0","babel-plugin-syntax-dynamic-import":"^6.18.0","babel-plugin-transform-es2015-modules-systemjs":"^6.19.0"},"_npmOperationalInternal":{"tmp":"tmp/systemjs-0.20.3.tgz_1485763170258_0.5553469525184482","host":"packages-18-east.internal.npmjs.com"}},"0.20.0-rc.8":{"name":"systemjs","version":"0.20.0-rc.8","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.20.0-rc.8","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"efe3628c3625156a1ac2ab744a0233c3a1204161","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.20.0-rc.8.tgz","integrity":"sha512-CLfKGR8VSANUcDzK5MhpRURpogYstALK7os24cS8uqhjt09IcGDAIqG/B2QrN8Kh6BkqfE4wvwhY3dKg8/eIwA==","signatures":[{"sig":"MEQCIHePJaaY8kkWaxjl0SulQMu1cEeisA3hJjFezgNu30BKAiAD23Y5JcK4s6H7YebnZscBgG5thAzsbVb5EIVU2RM7mQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.src.js","_from":".","files":["dist"],"_shasum":"efe3628c3625156a1ac2ab744a0233c3a1204161","gitHead":"e8ee8cf53988716109fcd7a174eee3c88eef4e32","scripts":{"min":"npm run min:dev && npm run min:production","test":"npm run test:production && npm run test:babel && npm run test:traceur && npm run test:typescript","build":"npm run build:dev && npm run build:production","irhydra":"node --trace-hydrogen --trace-phase=Z --trace-deopt --code-comments --hydrogen-track-positions --redirect-code-traces --redirect-code-traces-to=code.asm --print-opt-code --trace_hydrogen_file=hydrogen.cfg irhydra/load.js","min:dev":"cd dist && uglifyjs system.src.js -cm --in-source-map system.src.js.map --source-map system.js.map --screw-ie8 --comments '/SystemJS v/' > system.js","build:dev":"rollup -c","footprint":"npm run footprint:dev && npm run footprint:production","test:babel":"mocha test/test-babel.js -u tdd --reporter dot","test:traceur":"mocha test/test-traceur.js -u tdd --reporter dot","footprint:dev":"uglifyjs dist/system.src.js -cm --screw-ie8 | gzip -9f | wc -c","min:production":"cd dist && uglifyjs system-production.src.js -cm --in-source-map system-production.src.js.map --source-map system-production.js.map --screw-ie8 --comments '/SystemJS v/' > system-production.js","test:production":"mocha test/test-production.js -u tdd --reporter dot","test:typescript":"mocha test/test-typescript.js -u tdd --reporter dot","build:production":"rollup -c --environment production","footprint:production":"uglifyjs dist/system-production.src.js -cm --screw-ie8 | gzip -9f | wc -c"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"4.0.5","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"7.4.0","devDependencies":{"mocha":"^3.1.2","rollup":"^0.41.1","traceur":"0.0.111","bluebird":"^3.4.6","babel-core":"^6.21.0","typescript":"^2.0.6","es-module-loader":"github:moduleloader/es-module-loader#next","plugin-typescript":"^5.2.7","rollup-plugin-replace":"^1.1.1","systemjs-plugin-babel":"0.0.17","systemjs-plugin-traceur":"0.0.3","rollup-plugin-node-resolve":"^2.0.0","babel-plugin-syntax-dynamic-import":"^6.18.0","babel-plugin-transform-es2015-modules-systemjs":"^6.19.0"},"_npmOperationalInternal":{"tmp":"tmp/systemjs-0.20.0-rc.8.tgz_1485245731336_0.3526183196809143","host":"packages-12-west.internal.npmjs.com"}},"0.20.4":{"name":"systemjs","version":"0.20.4","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.20.4","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"40c2a5094e2ba9d8f7f4cff1a54324504a4542af","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.20.4.tgz","integrity":"sha512-TvC90FQ5uCHqvfteq0LUZrl8hgDsrBryXVq8FkWzn5Yc16ESWX9V9zoYeJbyG13anFRDLcvQwM/HPpmMhDQJbg==","signatures":[{"sig":"MEYCIQCB3Fo5B3eFPfv1OUHYXM6pdSzGWLJgS9FxBOVBbswerQIhAN8bdIw+Ffqk3cQ8B53IIfiFQwORKNh7cL/7S8GvJoc6","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.src.js","_from":".","files":["dist"],"_shasum":"40c2a5094e2ba9d8f7f4cff1a54324504a4542af","gitHead":"06988388d1c4ada494035a28405c6ca71f42ac8d","scripts":{"min":"npm run min:dev && npm run min:production","test":"npm run test:production && npm run test:babel && npm run test:traceur && npm run test:typescript","build":"npm run build:dev && npm run build:production","irhydra":"node --trace-hydrogen --trace-phase=Z --trace-deopt --code-comments --hydrogen-track-positions --redirect-code-traces --redirect-code-traces-to=code.asm --print-opt-code --trace_hydrogen_file=hydrogen.cfg irhydra/load.js","min:dev":"cd dist && uglifyjs system.src.js -cm --in-source-map system.src.js.map --source-map system.js.map --screw-ie8 --comments '/SystemJS v/' > system.js","build:dev":"rollup -c","footprint":"npm run footprint:dev && npm run footprint:production","prepublish":"rm -r dist && npm run build && npm run min","test:babel":"mocha test/test-babel.js -u tdd --reporter dot","test:traceur":"mocha test/test-traceur.js -u tdd --reporter dot","footprint:dev":"uglifyjs dist/system.src.js -cm --screw-ie8 | gzip -9f | wc -c","min:production":"cd dist && uglifyjs system-production.src.js -cm --in-source-map system-production.src.js.map --source-map system-production.js.map --screw-ie8 --comments '/SystemJS v/' > system-production.js","test:production":"mocha test/test-production.js -u tdd --reporter dot","test:typescript":"mocha test/test-typescript.js -u tdd --reporter dot","build:production":"rollup -c --environment production","footprint:production":"uglifyjs dist/system-production.src.js -cm --screw-ie8 | gzip -9f | wc -c"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"4.0.5","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"7.4.0","devDependencies":{"mocha":"^3.1.2","rollup":"^0.41.1","traceur":"0.0.111","bluebird":"^3.4.6","uglifyjs":"^2.4.10","babel-core":"^6.21.0","typescript":"^2.0.6","es-module-loader":"^2.0.0","plugin-typescript":"^5.2.7","rollup-plugin-replace":"^1.1.1","systemjs-plugin-babel":"0.0.17","systemjs-plugin-traceur":"0.0.3","rollup-plugin-node-resolve":"^2.0.0","babel-plugin-syntax-dynamic-import":"^6.18.0","babel-plugin-transform-es2015-modules-systemjs":"^6.19.0"},"_npmOperationalInternal":{"tmp":"tmp/systemjs-0.20.4.tgz_1485846878271_0.8544432672206312","host":"packages-12-west.internal.npmjs.com"}},"6.1.9":{"name":"systemjs","version":"6.1.9","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@6.1.9","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"17e5601867a9d1ee7a5dab71b050f38877d6992c","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-6.1.9.tgz","fileCount":31,"integrity":"sha512-pmmYAaI/bk1RIPFIOrvP94DlvSyqZ5/BcAXTcUo0sKBqOc3rMuZaLsh1ofhxuIYgxzB/wDeCmG8i6RpmZj6yqA==","signatures":[{"sig":"MEUCIDbkeixKX4SHHj3kcqaBVS7tTKFw4QEXqePh3jIetHK1AiEAvcjf1jx9YMx/QV9qfmx23cwOb9vLOsMjT0RU3CbM2Yk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":134133,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeGjrCCRA9TVsSAnZWagAA3WYP/itbx6JMgDCoNu4DX+FT\n588EyEJ9rwGokT/P/43LkGmijYO/PEKWHXc5HqFD4sFL9PC7LJ+vzraVdM7L\n3tKJjzksbKSBpAZPsD03VTc2ZCNOs52wLvrMItK9SzMcwd1S/aYX8JatPKYb\nrv7BwA4yqRImMuIi1RWvp2LmL7xyFyxLeSn51br6BrTI+8kkOwj+aVZum8dp\n/FEdrIijbX6OOHA3Ve18WeVCbN2nLVCtZaUDXZ34jmufgiKm4+E7C4y32JMB\nmuT2MYNphdgyv6EQFJB5BK7465luUVm5fdOpLax7y/xlY37+hoxO7fL0Zof6\nrvidbCABbVAaXq7Xkv7jdqBwsWXbNJ/Q0859+XO7EKjkq1mN5KW8LuBlPDZs\n7O/oR3TOU8cBhiGcmf1NjylMfxA0ZQlRR4owZwFot/tI6S+bS9vH8sHCHzH8\nNDw54W0MGwGWTZVxwGOZ5FsjEXAn+fr7ucFBiDnWaI5SB2V3Mf6sLQ6Py8q/\nQPW5DfOQTHSrzn+B/5zLb5iba1mzKiez4dw+rGpAbPi38b1jb7T7weZOL6iZ\nMjoOMfQwDkrYkc2euKpDGGbfZDL4X9VNyOQ7dXB2P2BMsJSo2m6SXsCLlpke\nJ45kGhmA8RXHZ5BQRTvUu5bVuZs9Hs266bd6TZApos7MkIyTdbT7VI8QxLqh\nty+a\r\n=TCXN\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","gitHead":"bfce71e44b92816ce1cfc5de2a70786d88c80f75","scripts":{"min":"npm run min:systemjs && npm run min:sjs","test":"mocha -b -r esm test/import-map.js test/system-core.js test/url-resolution.js && npm run test-browser","build":"npm run build:systemjs && npm run build:sjs && npm run min && npm run build:extras","min:sjs":"cd dist && terser s.js -c passes=2 -m --source-map -o s.min.js","build:sjs":"rollup -c --environment sjs","footprint":"npm run footprint:systemjs && npm run footprint:sjs","prepublish":"npm run build","build:extras":"bash minify-extras.sh","min:systemjs":"cd dist && terser system.js -c passes=2 -m --source-map --comments \"/SystemJS \\d/\" -o system.min.js","test-browser":"node test/server.js","footprint:sjs":"terser dist/s.js -c passes=2 -m | gzip -9f | wc -c","build:systemjs":"rollup -c","footprint:systemjs":"terser dist/system.js -c passes=2 -m | gzip -9f | wc -c"},"_npmUser":{"name":"joeldenning","email":"joeldenning@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"6.13.4","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"12.14.0","_hasShrinkwrap":false,"devDependencies":{"esm":"^3.2.25","opn":"^6.0.0","mocha":"^5.2.0","rollup":"^0.64.1","terser":"^3.8.1","bluebird":"^3.5.1","whatwg-fetch":"^2.0.4","rollup-plugin-replace":"^2.0.0","construct-style-sheets-polyfill":"^2.1.0"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_6.1.9_1578777281611_0.38398610313097037","host":"s3://npm-registry-packages"}},"0.20.5":{"name":"systemjs","version":"0.20.5","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.20.5","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"42dca26b521019faaf7c3e30be4e5ca1708841b2","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.20.5.tgz","integrity":"sha512-Ceh/kuBs8Q6+kHWSm0r6bBH2m20cNmyJEwDUEZ3upM4O1ukCZFeIW6+hYYLaTEUHi2WdXlQvDtLowUqRAixNjA==","signatures":[{"sig":"MEUCIA7JytPmflF7gEVdqU8ggpKvxYA1p9wzDXUi9XFWcSFsAiEA5Rh+602MZlSgDORRxszHuiNy0zVLhGT2XGnSD1Ugek4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.src.js","_from":".","files":["dist"],"_shasum":"42dca26b521019faaf7c3e30be4e5ca1708841b2","gitHead":"d22f3664d5e4963d9b18b3bb64e66a526e8c046d","scripts":{"min":"npm run min:dev && npm run min:production","test":"npm run test:production && npm run test:babel && npm run test:traceur && npm run test:typescript","build":"npm run build:dev && npm run build:production","irhydra":"node --trace-hydrogen --trace-phase=Z --trace-deopt --code-comments --hydrogen-track-positions --redirect-code-traces --redirect-code-traces-to=code.asm --print-opt-code --trace_hydrogen_file=hydrogen.cfg irhydra/load.js","min:dev":"cd dist && uglifyjs system.src.js -cm --in-source-map system.src.js.map --source-map system.js.map --screw-ie8 --comments '/SystemJS v/' > system.js","build:dev":"rollup -c","footprint":"npm run footprint:dev && npm run footprint:production","prepublish":"rm -r dist && npm run build && npm run min","test:babel":"mocha test/test-babel.js -u tdd --reporter dot","test:traceur":"mocha test/test-traceur.js -u tdd --reporter dot","footprint:dev":"uglifyjs dist/system.src.js -cm --screw-ie8 | gzip -9f | wc -c","min:production":"cd dist && uglifyjs system-production.src.js -cm --in-source-map system-production.src.js.map --source-map system-production.js.map --screw-ie8 --comments '/SystemJS v/' > system-production.js","test:production":"mocha test/test-production.js -u tdd --reporter dot","test:typescript":"mocha test/test-typescript.js -u tdd --reporter dot","build:production":"rollup -c --environment production","footprint:production":"uglifyjs dist/system-production.src.js -cm --screw-ie8 | gzip -9f | wc -c"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"4.0.5","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"7.4.0","devDependencies":{"mocha":"^3.1.2","rollup":"^0.41.1","traceur":"0.0.111","bluebird":"^3.4.6","uglifyjs":"^2.4.10","babel-core":"^6.21.0","typescript":"^2.0.6","es-module-loader":"^2.0.0","plugin-typescript":"^5.2.7","rollup-plugin-replace":"^1.1.1","systemjs-plugin-babel":"0.0.17","systemjs-plugin-traceur":"0.0.3","rollup-plugin-node-resolve":"^2.0.0","babel-plugin-syntax-dynamic-import":"^6.18.0","babel-plugin-transform-es2015-modules-systemjs":"^6.19.0"},"_npmOperationalInternal":{"tmp":"tmp/systemjs-0.20.5.tgz_1485939180500_0.2099118314217776","host":"packages-12-west.internal.npmjs.com"}},"0.20.6":{"name":"systemjs","version":"0.20.6","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.20.6","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"6079bb540bb5254e1f442726ae2235103b64bf8f","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.20.6.tgz","integrity":"sha512-sU3aCRHRukhyx0uL9Etm62BXj+bq53u9AGD+vmkcPYvwg80+usvzyYwruFZDiQkcML5e+c4CehBX7CyuJjQVvA==","signatures":[{"sig":"MEUCIQDvtKwOnsy6AoOP+9SIi1ieEq7NEi+kRYEI9gHH50nIKgIgA2DVLy+JAn0JUnF4BVRDilirmcF7gCojV37XEk/uzOE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.src.js","_from":".","files":["dist"],"_shasum":"6079bb540bb5254e1f442726ae2235103b64bf8f","gitHead":"e21c58c8e2c5d178235a1b1ed7906f7edcf51574","scripts":{"min":"npm run min:dev && npm run min:production","test":"npm run test:production && npm run test:babel && npm run test:traceur && npm run test:typescript","build":"npm run build:dev && npm run build:production","irhydra":"node --trace-hydrogen --trace-phase=Z --trace-deopt --code-comments --hydrogen-track-positions --redirect-code-traces --redirect-code-traces-to=code.asm --print-opt-code --trace_hydrogen_file=hydrogen.cfg irhydra/load.js","min:dev":"cd dist && uglifyjs system.src.js -cm --in-source-map system.src.js.map --source-map system.js.map --screw-ie8 --comments '/SystemJS v/' > system.js","build:dev":"rollup -c","footprint":"npm run footprint:dev && npm run footprint:production","prepublish":"rm -r dist && npm run build && npm run min","test:babel":"mocha test/test-babel.js -u tdd --reporter dot","test:traceur":"mocha test/test-traceur.js -u tdd --reporter dot","footprint:dev":"uglifyjs dist/system.src.js -cm --screw-ie8 | gzip -9f | wc -c","min:production":"cd dist && uglifyjs system-production.src.js -cm --in-source-map system-production.src.js.map --source-map system-production.js.map --screw-ie8 --comments '/SystemJS v/' > system-production.js","test:production":"mocha test/test-production.js -u tdd --reporter dot","test:typescript":"mocha test/test-typescript.js -u tdd --reporter dot","build:production":"rollup -c --environment production","footprint:production":"uglifyjs dist/system-production.src.js -cm --screw-ie8 | gzip -9f | wc -c"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"4.0.5","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"7.4.0","devDependencies":{"mocha":"^3.1.2","rollup":"^0.41.1","traceur":"0.0.111","bluebird":"^3.4.6","uglifyjs":"^2.4.10","babel-core":"^6.21.0","typescript":"^2.0.6","es-module-loader":"^2.0.0","plugin-typescript":"^5.2.7","rollup-plugin-replace":"^1.1.1","systemjs-plugin-babel":"0.0.17","systemjs-plugin-traceur":"0.0.3","rollup-plugin-node-resolve":"^2.0.0","babel-plugin-syntax-dynamic-import":"^6.18.0","babel-plugin-transform-es2015-modules-systemjs":"^6.19.0"},"_npmOperationalInternal":{"tmp":"tmp/systemjs-0.20.6.tgz_1486635787885_0.44333401159383357","host":"packages-18-east.internal.npmjs.com"}},"6.1.7":{"name":"systemjs","version":"6.1.7","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@6.1.7","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"631474f8d0d33412be215ab39a294663a90157d9","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-6.1.7.tgz","fileCount":31,"integrity":"sha512-v2tDs5HV7Ql8iZd7eBupzTOPIV6OUzNyJ1wNCAlQ7Et73yfQm4dbfQOSNLzcESLY2YEsLbn0K9WAnNsqwK7OFg==","signatures":[{"sig":"MEUCIQD9EUWfU9aJk0hZLo4ivHwrBcaiHsOrmjiob1yuJ+1U4wIgP/23S+oS85pamjrPD0aElwavLjfgqQxj1Em3kdEB9Bs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":133045,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd4SQpCRA9TVsSAnZWagAAavUQAJe5kZw5VPpoEh8f/z2W\n6JJOOSHZnjVYWD+2DU4TmPVI8gB8cTZG1uYkL1sFjsq/c2dxACeZ+iXNK8bm\nJ9oyVQjEIvY3sx+86WRv+nprlU485CI8AinJwF+dGnE7VEi1dfdzVeDU4Sed\nhbF++LO07F4YGtWF/+/kroNLq404DgRxDBf25GJSke9r92/q034hCWrgM11w\nEf/wOlrOSGHky7Bb9dxL4pRRLsPOd3D0PlUMfE0O0kRVxbxgy6YAIbHmDemY\nU4NSRkGv0k40kSpgQuYVXyu27vKYANOUCLgRBzPMSLNGq7P0WVUZerl9MbSF\nb4hbWDhIvPzCBgK4QHbNVtiXSDrTiPgQfzEPmJ2KZ6c9V4+b+sNyu9+VFS9a\nN83SqVGw6YVM3ms7FuPh+D0rf1fb2lXd+4uIaLCDbjZRAuLl5JCCetoyMXUF\nH4KTyFlfhl1ViNUoQ7cfzJdWO5nmRIlb7L1LHkwsr2z9w3lr+DuqqzkXfcLm\ncMDFb5m1nSOCSMTtYE8gw3IMXmEIFT7epKbxoiZ4FD1+rQOn+oYOedKUgy2M\nxHcXUr8Q5Gru0bOuBeVwdFAJqoYHhlLejUK4TGxvA3oQ85qz4PQzIslzu7UH\nRQqgKr69On1hF2LbxOQ7d0kMVICWpNFRg3bUXliQdBCz1d3E2vn0ueXWW0SP\nS0jT\r\n=Ens4\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","gitHead":"042fa6c07193513f98bfd4892dbda44e4bc8cae2","scripts":{"min":"npm run min:systemjs && npm run min:sjs","test":"mocha -b -r esm test/import-map.js test/system-core.js test/url-resolution.js && npm run test-browser","build":"npm run build:systemjs && npm run build:sjs && npm run min && npm run build:extras","min:sjs":"cd dist && terser s.js -c passes=2 -m --source-map -o s.min.js","build:sjs":"rollup -c --environment sjs","footprint":"npm run footprint:systemjs && npm run footprint:sjs","prepublish":"npm run build","build:extras":"bash minify-extras.sh","min:systemjs":"cd dist && terser system.js -c passes=2 -m --source-map --comments \"/SystemJS \\d/\" -o system.min.js","test-browser":"node test/server.js","footprint:sjs":"terser dist/s.js -c passes=2 -m | gzip -9f | wc -c","build:systemjs":"rollup -c","footprint:systemjs":"terser dist/system.js -c passes=2 -m | gzip -9f | wc -c"},"_npmUser":{"name":"joeldenning","email":"joeldenning@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"6.12.1","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"12.13.1","_hasShrinkwrap":false,"devDependencies":{"esm":"^3.2.25","opn":"^6.0.0","mocha":"^5.2.0","rollup":"^0.64.1","terser":"^3.8.1","bluebird":"^3.5.1","whatwg-fetch":"^2.0.4","rollup-plugin-replace":"^2.0.0","construct-style-sheets-polyfill":"^2.1.0"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_6.1.7_1575035945572_0.5880949467206547","host":"s3://npm-registry-packages"}},"0.20.7":{"name":"systemjs","version":"0.20.7","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.20.7","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"09e0b69180a84446bd4b7d2d2602ff4e567434bd","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.20.7.tgz","integrity":"sha512-F+Q49rVzMVHWUlnonsJgCa4pMiVWbRfdejjpy1QiU31kWftIT7wrwigmjfTvLC+ckL4rbuTDpvaSKqngz8/3Sg==","signatures":[{"sig":"MEUCIQDHoNY6u8LMwPBP/BOQrHSUFf3RjYAWuJ/Y9g+IHaSBWQIgZ6ltKckPBw8xscAw/T7b2MhX6KKPZiWvAVs0nLO+Gwo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.src.js","_from":".","files":["dist"],"_shasum":"09e0b69180a84446bd4b7d2d2602ff4e567434bd","gitHead":"43a1c8b494d38398c675008f0c0e02d8eba406ee","scripts":{"min":"npm run min:dev && npm run min:production","test":"npm run test:production && npm run test:babel && npm run test:traceur && npm run test:typescript","build":"npm run build:dev && npm run build:production","irhydra":"node --trace-hydrogen --trace-phase=Z --trace-deopt --code-comments --hydrogen-track-positions --redirect-code-traces --redirect-code-traces-to=code.asm --print-opt-code --trace_hydrogen_file=hydrogen.cfg irhydra/load.js","min:dev":"cd dist && uglifyjs system.src.js -cm --in-source-map system.src.js.map --source-map system.js.map --screw-ie8 --comments '/SystemJS v/' > system.js","build:dev":"rollup -c","footprint":"npm run footprint:dev && npm run footprint:production","prepublish":"rm -r dist && npm run build && npm run min","test:babel":"mocha test/test-babel.js -u tdd --reporter dot","test:traceur":"mocha test/test-traceur.js -u tdd --reporter dot","footprint:dev":"uglifyjs dist/system.src.js -cm --screw-ie8 | gzip -9f | wc -c","min:production":"cd dist && uglifyjs system-production.src.js -cm --in-source-map system-production.src.js.map --source-map system-production.js.map --screw-ie8 --comments '/SystemJS v/' > system-production.js","test:production":"mocha test/test-production.js -u tdd --reporter dot","test:typescript":"mocha test/test-typescript.js -u tdd --reporter dot","build:production":"rollup -c --environment production","footprint:production":"uglifyjs dist/system-production.src.js -cm --screw-ie8 | gzip -9f | wc -c"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"4.0.5","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"7.4.0","devDependencies":{"mocha":"^3.1.2","rollup":"^0.41.1","traceur":"0.0.111","bluebird":"^3.4.6","uglifyjs":"^2.4.10","babel-core":"^6.21.0","typescript":"^2.0.6","es-module-loader":"^2.1.0","plugin-typescript":"^5.2.7","rollup-plugin-replace":"^1.1.1","systemjs-plugin-babel":"0.0.17","systemjs-plugin-traceur":"0.0.3","rollup-plugin-node-resolve":"^2.0.0","babel-plugin-syntax-dynamic-import":"^6.18.0","babel-plugin-transform-es2015-modules-systemjs":"^6.19.0"},"_npmOperationalInternal":{"tmp":"tmp/systemjs-0.20.7.tgz_1486636915510_0.1235931240953505","host":"packages-12-west.internal.npmjs.com"}},"6.1.8":{"name":"systemjs","version":"6.1.8","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@6.1.8","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"d93d44f15f25fa01374921615a590bb08d43cd26","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-6.1.8.tgz","fileCount":31,"integrity":"sha512-hU1Sbuwn7dGJxuoJPTRpUZlLHnoXLd/Glk62MjkWMelFJ2VFReSCtr2Jb8olKwS+NZHTZpDFsW6f2CRUccvYGg==","signatures":[{"sig":"MEYCIQCIQgL8taXPWPKdXpyY+Opd5NWzrTFMhg7cTAIUXuVgrgIhAIKZt8gR+4JdYRJwnAl+UmXoTPhg01hNlvnT7ujyXXtf","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":133720,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeGMD1CRA9TVsSAnZWagAAZEoP/1x+aDM3uwKV5dIiQZH7\ntU7+Lz3zWxOUwLtP04rxUMEV4O+XgrZxu4x7RChJv8WTSy/4060C87vkslpc\nukFH64luUnzpGQ42URXRxlJJTRa6zYM/5FpEFoiMp+IQw8fkkiHOIjwx1p2s\nz/8bdJ8RtgsRFaNKqhVZhSpAafHVE3whaPbM9WbYtur5vGq1Jsju8WQtBsGm\n71OF8c4pt9TcjgOpL0W3RxGDBNmz8THyIpE9BB+j9akrxDisGdY1jOwnRPLt\nI6JKlsQbtE03T3MSWLis3XY6AUxR8f6AATh3cBR3kq6BjfZoM5YpXxcjagVS\n40J7YHZ1yKz8ykdwXcwi+NpHc2B82zsum9gW7kopthkZgtiNSdtMxBj7pLJQ\nwXhdUW4Hg53l+ZWzyM9ilZ5/SyLUtnChP0TxM390y71s5aXieF//pN47E5Tf\nJD+xRdhD2v76kKr4XMTEniSfWnm0vztFV+qUuMFTLlu0Ui4fyTT3MG66HfB1\nfjoVpb8WhBUKu3OXD06S76AFnbZ/mtwPWH6Z5nsgB+SZWitHIkznYyDxGV0Y\nFC7vhLURrHC70tyGXSnS1WYQzCa+1/nYEqqjtOjeE6e60pQHfkvDnmlLieRF\no8wcHeqmg8eLmxXhZRN7PaZ3NHVvLOYyENMqi78anbDfKTU1FVHjpPRFkNZS\nxj8w\r\n=cLyL\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","gitHead":"339cd3c3df32db8bc74243e235a1521ed540110a","scripts":{"min":"npm run min:systemjs && npm run min:sjs","test":"mocha -b -r esm test/import-map.js test/system-core.js test/url-resolution.js && npm run test-browser","build":"npm run build:systemjs && npm run build:sjs && npm run min && npm run build:extras","min:sjs":"cd dist && terser s.js -c passes=2 -m --source-map -o s.min.js","build:sjs":"rollup -c --environment sjs","footprint":"npm run footprint:systemjs && npm run footprint:sjs","prepublish":"npm run build","build:extras":"bash minify-extras.sh","min:systemjs":"cd dist && terser system.js -c passes=2 -m --source-map --comments \"/SystemJS \\d/\" -o system.min.js","test-browser":"node test/server.js","footprint:sjs":"terser dist/s.js -c passes=2 -m | gzip -9f | wc -c","build:systemjs":"rollup -c","footprint:systemjs":"terser dist/system.js -c passes=2 -m | gzip -9f | wc -c"},"_npmUser":{"name":"joeldenning","email":"joeldenning@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"6.13.4","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"12.14.0","_hasShrinkwrap":false,"devDependencies":{"esm":"^3.2.25","opn":"^6.0.0","mocha":"^5.2.0","rollup":"^0.64.1","terser":"^3.8.1","bluebird":"^3.5.1","whatwg-fetch":"^2.0.4","rollup-plugin-replace":"^2.0.0","construct-style-sheets-polyfill":"^2.1.0"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_6.1.8_1578680564522_0.4568644025271338","host":"s3://npm-registry-packages"}},"6.9.0":{"name":"systemjs","version":"6.9.0","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@6.9.0","maintainers":[{"name":"joeldenning","email":"joeldenning@gmail.com"},{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"f01a0093d4d70332fff59f2e5ff385de28284ff5","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-6.9.0.tgz","fileCount":35,"integrity":"sha512-THLzcb7WzoW0I+tHB4PQge0BqqN+CAUQJ9gPc1MieqD1gnhxNUKYrhRlN5ov94saOYVVR5NZFQqQhnxi9/WEGg==","signatures":[{"sig":"MEUCIQDvFmVnO1tgVPIumHQrAqr4hyoMrmhf8hqbIG4lWj5hwwIgWeVQjgaIN5gYM3vLnSc2P5f2xxcl2bYpoLyfP8Jd6Xc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":476145,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgnEVnCRA9TVsSAnZWagAAN3AP/Rlc59hCNXhg88l4PV8w\nLKVcp/dpbfCEvKZtlMR4T3YvqjcjHp0RFcaqFCQBBEF7pAruhtIvt0TzLpRT\nyYiMR/HUqC30BhoXrp8MU0CXne2jT+l3/Oh4LN2EpJq2IyeZ8WewTUqv0XjE\nW6UstHpDcC5XAKLCKKbUBThe0RCKOVHgO1CczqKjhsM/41mv/1evChQJLFUt\nOSkICuRuFpylYZKqBeH2Y0DYYGJpq63HPVxT8M37vAD71T/gSrjwEVYE1E6W\nqrW5+n0JVUMGt+qnXreWMbJfCSqF+lr7Rj0iUik4MTDxInYf3Mtbbp2W54Px\ne8VxiUifAghSMQwu5nGWlIvqJJBIwvQB3mlyx/2NbZchbKxqeH9oDywkk5my\nfa8C9NKgP3iUDES/j/LLDg1onpLZdpAmNGCWYFp3TASM3kPURSwIPXN6FnJt\n2MudbNCALpCk19gwuTAT7yFfoIOcqAFaSRilqG1P/p8VPqLmz+xW/1qRzcCw\ns0Zfiy4vIXR1KGIrEOCw7pg9iDlc+lcugdDc/q23BN7cyOGAA1zN1NAczZf0\noP8tDFH6QtKMfSs1XMkq+RNyFFRVmglflwsFMOnf7CIdUULONlzkI/ZAsYd/\nJnZVgGYv6m0AT6Pcorx+EVkrXOQSlskZm3fLOqeY8he2n+U5C0WzWVU6Y8BS\n+0Dk\r\n=LAeO\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/system-node.cjs","type":"script","exports":{".":{"node":"./dist/system-node.cjs","default":"./dist/system.min.js"},"./s.js":"./dist/s.min.js","./dist/":"./dist/"},"gitHead":"756c1b88cbc06e722a4c223d3b785658ed36b0ae","scripts":{"test":"concurrently -n w: 'npm:test:*'","build":"rimraf dist && mkdirp dist && concurrently -n w: 'npm:build:*'","footprint":"concurrently -n w: 'npm:footprint:*'","test:node":"cross-env NODE_OPTIONS=--experimental-modules mocha --timeout 5000 -b test/system-node.js","build:node":"node --experimental-modules build-node.mjs","prepublish":"npm run build","test:browser":"node test/server.cjs","build:browser":"rollup -c","footprint:sjs":"cat dist/s.min.js | gzip -9f | wc -c","test:internals":"cross-env NODE_OPTIONS=\"--unhandled-rejections=none\" mocha -b test/import-map.js test/system-core.js test/url-resolution.js","build-browser-dev":"rollup -c --environment dev","footprint:systemjs":"cat dist/system.min.js | gzip -9f | wc -c","test-browser-watch":"cross-env WATCH_MODE=true node test/server.cjs"},"_npmUser":{"name":"joeldenning","email":"joeldenning@gmail.com"},"collective":{"url":"https://opencollective.com/systemjs","type":"opencollective"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"6.14.11","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"14.16.0","_hasShrinkwrap":false,"devDependencies":{"open":"^7.0.3","mocha":"^7.1.1","mkdirp":"^1.0.4","rimraf":"^3.0.2","rollup":"^2.33.3","terser":"^5.5.0","bluebird":"^3.7.2","@zeit/ncc":"^0.22.1","cross-env":"^7.0.2","node-fetch":"^2.6.0","symbol-es6":"^0.1.2","concurrently":"^5.1.0","whatwg-fetch":"^3.0.0","source-map-support":"^0.5.16","@rollup/plugin-json":"^4.0.2","rollup-plugin-terser":"^5.3.0","@rollup/plugin-replace":"^2.3.1","@jsenv/file-size-impact":"^5.2.0","@rollup/plugin-node-resolve":"^7.1.1","construct-style-sheets-polyfill":"^2.3.5"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_6.9.0_1620854118624_0.6568203762900648","host":"s3://npm-registry-packages"}},"0.20.8":{"name":"systemjs","version":"0.20.8","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.20.8","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"cc959f7e5fa795ac5c0a79e967824c36f6b7c165","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.20.8.tgz","integrity":"sha512-3Q5nF7/2QHlfghm3YsPKhSWRF6A4ajzfJYmshZrmk43Gt2ZdfOeWUgbh8nxijT8JH6qFYBJNjygPbLCjG6Bwkg==","signatures":[{"sig":"MEYCIQD+vXCcEMD+MS0qVnwlkur236qlvTPFpBZC2P+Y9RPGlgIhAKZOAL/GHmbQR6uYnx6VsJUTDAENta1kSRKiNoSz4Aaf","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.src.js","_from":".","files":["dist"],"_shasum":"cc959f7e5fa795ac5c0a79e967824c36f6b7c165","gitHead":"5687daca61b7a4ec4e3134be132d03f05100d8ff","scripts":{"min":"npm run min:dev && npm run min:production","test":"npm run test:production && npm run test:babel && npm run test:traceur && npm run test:typescript","build":"npm run build:dev && npm run build:production","irhydra":"node --trace-hydrogen --trace-phase=Z --trace-deopt --code-comments --hydrogen-track-positions --redirect-code-traces --redirect-code-traces-to=code.asm --print-opt-code --trace_hydrogen_file=hydrogen.cfg irhydra/load.js","min:dev":"cd dist && uglifyjs system.src.js -cm --in-source-map system.src.js.map --source-map system.js.map --screw-ie8 --comments '/SystemJS v/' > system.js","build:dev":"rollup -c","footprint":"npm run footprint:dev && npm run footprint:production","prepublish":"rm -r dist && npm run build && npm run min","test:babel":"mocha test/test-babel.js -u tdd --reporter dot","test:traceur":"mocha test/test-traceur.js -u tdd --reporter dot","footprint:dev":"uglifyjs dist/system.src.js -cm --screw-ie8 | gzip -9f | wc -c","min:production":"cd dist && uglifyjs system-production.src.js -cm --in-source-map system-production.src.js.map --source-map system-production.js.map --screw-ie8 --comments '/SystemJS v/' > system-production.js","test:production":"mocha test/test-production.js -u tdd --reporter dot","test:typescript":"mocha test/test-typescript.js -u tdd --reporter dot","build:production":"rollup -c --environment production","footprint:production":"uglifyjs dist/system-production.src.js -cm --screw-ie8 | gzip -9f | wc -c"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"4.0.5","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"7.4.0","devDependencies":{"mocha":"^3.1.2","rollup":"^0.41.1","traceur":"0.0.111","bluebird":"^3.4.6","uglifyjs":"^2.4.10","babel-core":"^6.21.0","typescript":"^2.0.6","es-module-loader":"^2.1.0","plugin-typescript":"^5.2.7","rollup-plugin-replace":"^1.1.1","systemjs-plugin-babel":"0.0.17","systemjs-plugin-traceur":"0.0.3","rollup-plugin-node-resolve":"^2.0.0","babel-plugin-syntax-dynamic-import":"^6.18.0","babel-plugin-transform-es2015-modules-systemjs":"^6.19.0"},"_npmOperationalInternal":{"tmp":"tmp/systemjs-0.20.8.tgz_1487257335864_0.056545134633779526","host":"packages-12-west.internal.npmjs.com"}},"6.1.5":{"name":"systemjs","version":"6.1.5","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@6.1.5","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"9bdc6ed447cbb0173bc466f415b19f0a8ba2865d","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-6.1.5.tgz","fileCount":31,"integrity":"sha512-/GKRr2FfyL2zP8ztAe59nmys/cPwgwJlPbylmkKm8cetCe5xWLBPkjw18I04wMomjciZxKXwO8pzgA8VesIflA==","signatures":[{"sig":"MEUCIEqOs65np8gRAgYojytJlale2ZzAyi73xU8eQYU0/oVzAiEAjSNO43o9uS2dPn30DR5UqlUuCUURiADAdSavTDuYTHE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":132573,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd2E0mCRA9TVsSAnZWagAAuhIQAJuLZc9qRpuB9+0Op3Mw\naomlthMqjrzGbDKtxexbBEJUxFHKqWAZhDBGpkxWvSIraGIOwLLLGZrVhdy8\n+eL4ntHqgeyP5f3iFrr93eUAzU5c7SyykWJb2uA6qzaj0m/W58Ahy545oMCg\nyrpOEWsJlSKtpwqDjN3Y7iEFyLKLYN+UojXPK2WZWKQeNGn3XJriIsH2Ru9D\nDw+qKjochIgHq/+ADfcythx6dpJCPkm8AcBdcSL7IotytXPdR+bQ0CvjQE7t\nwJZMtvc7CUBqSxVZoIyTEAbTuMiuZtZgcNp5+TeurITn4SNMPo0VEUHaSHol\nwbUwV2F6/eoILLRJlpuU4qfgj4bRxXDAstLWjC4nukcMimXlivFJkyfKA+Wv\nRnnTh6tB/pmicSvZJI/Olodl6XpjS6CSsMO6KMvFyKeQpEgyBsEz5ayv+L2R\ndKH2E2GSSM/oetEklvlMAVhDwTg0u+Splseweo4yJJbxiNI/kbsRwdU1YU/d\nUa8rcpRwBuDFEl2mBV2NEBoXpS6wqvuqBslZlRrcjWwM3OZOD74ftuPCG36q\nDbVaNq4a7yxeAusNO/QsO51zTma30AiqfQ5kmBTZkKuO32br+pqrHjrPbo0o\nKoggX/O4d83y20TkpZvbiUd61rkHXdaxV6RCQkjQWNzKq1KQX9vUa4iz37nY\nMOyz\r\n=PSMP\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","gitHead":"5071ce27c7f1ae55316133465c9df7cf2fe6dcd2","scripts":{"min":"npm run min:systemjs && npm run min:sjs","test":"mocha -b -r esm test/import-map.js test/system-core.js test/url-resolution.js && npm run test-browser","build":"npm run build:systemjs && npm run build:sjs && npm run min && npm run build:extras","min:sjs":"cd dist && terser s.js -c passes=2 -m --source-map -o s.min.js","build:sjs":"rollup -c --environment sjs","footprint":"npm run footprint:systemjs && npm run footprint:sjs","prepublish":"npm run build","build:extras":"bash minify-extras.sh","min:systemjs":"cd dist && terser system.js -c passes=2 -m --source-map --comments \"/SystemJS \\d/\" -o system.min.js","test-browser":"node test/server.js","footprint:sjs":"terser dist/s.js -c passes=2 -m | gzip -9f | wc -c","build:systemjs":"rollup -c","footprint:systemjs":"terser dist/system.js -c passes=2 -m | gzip -9f | wc -c"},"_npmUser":{"name":"joeldenning","email":"joeldenning@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"6.12.1","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"13.1.0","_hasShrinkwrap":false,"devDependencies":{"esm":"^3.2.25","opn":"^6.0.0","mocha":"^5.2.0","rollup":"^0.64.1","terser":"^3.8.1","bluebird":"^3.5.1","whatwg-fetch":"^2.0.4","rollup-plugin-replace":"^2.0.0","construct-style-sheets-polyfill":"^2.1.0"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_6.1.5_1574456614237_0.3621560932612342","host":"s3://npm-registry-packages"}},"0.20.9":{"name":"systemjs","version":"0.20.9","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.20.9","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"80c00a89511a2064c3f57ce6e8f27784620477ec","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.20.9.tgz","integrity":"sha512-tXygzEHgY6Ue4yQrbSzpf468RR2lwPWMGD31Z88kMOi+uS1WyLZ3SKXh/8ayhbHThojSjUVKHbXZbHVz4ul2/A==","signatures":[{"sig":"MEUCIB4UbFuaOtX7JQkqoOuW5J7ScoE/DYZCyfgzeANI558CAiEAkIRxtjjb1S+f2lhakE6RtLQNb1YdeCbU3L12Hs1nEkU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.src.js","_from":".","files":["dist"],"_shasum":"80c00a89511a2064c3f57ce6e8f27784620477ec","gitHead":"72e0011564c983ef1dbc433b262585d0ab9b9f9e","scripts":{"min":"npm run min:dev && npm run min:production","test":"npm run test:production && npm run test:babel && npm run test:traceur && npm run test:typescript","build":"npm run build:dev && npm run build:production","irhydra":"node --trace-hydrogen --trace-phase=Z --trace-deopt --code-comments --hydrogen-track-positions --redirect-code-traces --redirect-code-traces-to=code.asm --print-opt-code --trace_hydrogen_file=hydrogen.cfg irhydra/load.js","min:dev":"cd dist && uglifyjs system.src.js -cm --in-source-map system.src.js.map --source-map system.js.map --screw-ie8 --comments '/SystemJS v/' > system.js","build:dev":"rollup -c","footprint":"npm run footprint:dev && npm run footprint:production","prepublish":"rm -r dist && npm run build && npm run min","test:babel":"mocha test/test-babel.js -u tdd --reporter dot","test:traceur":"mocha test/test-traceur.js -u tdd --reporter dot","footprint:dev":"uglifyjs dist/system.src.js -cm --screw-ie8 | gzip -9f | wc -c","min:production":"cd dist && uglifyjs system-production.src.js -cm --in-source-map system-production.src.js.map --source-map system-production.js.map --screw-ie8 --comments '/SystemJS v/' > system-production.js","test:production":"mocha test/test-production.js -u tdd --reporter dot","test:typescript":"mocha test/test-typescript.js -u tdd --reporter dot","build:production":"rollup -c --environment production","footprint:production":"uglifyjs dist/system-production.src.js -cm --screw-ie8 | gzip -9f | wc -c"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"4.0.5","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"7.4.0","devDependencies":{"mocha":"^3.1.2","rollup":"^0.41.1","traceur":"0.0.111","bluebird":"^3.4.6","uglifyjs":"^2.4.10","babel-core":"^6.21.0","typescript":"^2.0.6","es-module-loader":"^2.1.0","plugin-typescript":"^5.2.7","rollup-plugin-replace":"^1.1.1","systemjs-plugin-babel":"0.0.17","systemjs-plugin-traceur":"0.0.3","rollup-plugin-node-resolve":"^2.0.0","babel-plugin-syntax-dynamic-import":"^6.18.0","babel-plugin-transform-es2015-modules-systemjs":"^6.19.0"},"_npmOperationalInternal":{"tmp":"tmp/systemjs-0.20.9.tgz_1487305651388_0.20260762376710773","host":"packages-18-east.internal.npmjs.com"}},"6.1.6":{"name":"systemjs","version":"6.1.6","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@6.1.6","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"b8d0a966f509bb0e01df933e62d9e3d952f02a10","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-6.1.6.tgz","fileCount":31,"integrity":"sha512-EkXDClYsIrj68VNkw/oPSCQork+Ki+SeRnvPOMveczoolKwX7EDClDlgZe/9zozZrL2VBM2bY+C7go2ZEQkYDg==","signatures":[{"sig":"MEQCIAWchY5nVv9qqWOcSLyW/YAg2nwekudphkXBGNYNKk4qAiBcV/JER7wAbQP/YneJgSCaFpPbUxS6qPUNJcRVjFm02w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":132953,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd4SOyCRA9TVsSAnZWagAA0KwP/3CfgpvhftT8sitwZmd6\nhhQFvW6y2DwKwTYcJKDXda/TlCNRaWhYO0FwgdHgPxjp1IZtBfJoowhmDBns\nPU8y+Dua+1aHVEI1A+a+vrHFLEl28HcWJNHnisuktKn8PnOVMB13BfFIa6le\nrK39n5J/vHHSMpcLuG8yMFhotQPgOvSqDRsvQ/9lA6O2wMf/5kq5HhIIRnM1\nohvVTht5BEvFKG0AEdGwt4leuelwqWEssOusjClCv7+WntzLtyi2MYzacHBI\nllP+Sh2C2y16q3xl8qpM9YNaityY/ZkrPKJJFIItBxbNkHbkOzVdai+WfnMv\nHzbf5otXous28B5gZNIwuMv68XK9ovJ8foWBXCjFTkKPv681kYAWFZjQcxtd\nVT1pbRH/VXH9n9cNllwlVTRn/TC7je4S8OHL6r3DIiXuIeQIvfWZlx+gIHL6\nAaOlWy8QPBDgcfADjjq6pPX3NOg2CYHlITxqYjNxc3PWRik/XGorM9QWubV8\n14QdcF6WskCTMLd/hz1eo8BGtDtBrkp8DNNewp+LQ2UFqu/WAL7t1w3NFjkn\nhoC2gEH8yRf/xz0rBUAFu7DCVbsAkEdG3pMKTnD2aDZN+TDZ82LMDHTuO6KM\nBnLK3Jx0nZwBkZ/ZB+feu9rlxp38iBLDy/HZq4fWEhCgLLazWTO49ZeR08od\nnJtW\r\n=vvq5\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","gitHead":"58594f7d9c15863692a0b124f0d1b92c670d7de2","scripts":{"min":"npm run min:systemjs && npm run min:sjs","test":"mocha -b -r esm test/import-map.js test/system-core.js test/url-resolution.js && npm run test-browser","build":"npm run build:systemjs && npm run build:sjs && npm run min && npm run build:extras","min:sjs":"cd dist && terser s.js -c passes=2 -m --source-map -o s.min.js","build:sjs":"rollup -c --environment sjs","footprint":"npm run footprint:systemjs && npm run footprint:sjs","prepublish":"npm run build","build:extras":"bash minify-extras.sh","min:systemjs":"cd dist && terser system.js -c passes=2 -m --source-map --comments \"/SystemJS \\d/\" -o system.min.js","test-browser":"node test/server.js","footprint:sjs":"terser dist/s.js -c passes=2 -m | gzip -9f | wc -c","build:systemjs":"rollup -c","footprint:systemjs":"terser dist/system.js -c passes=2 -m | gzip -9f | wc -c"},"_npmUser":{"name":"joeldenning","email":"joeldenning@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"6.12.1","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"12.13.1","_hasShrinkwrap":false,"devDependencies":{"esm":"^3.2.25","opn":"^6.0.0","mocha":"^5.2.0","rollup":"^0.64.1","terser":"^3.8.1","bluebird":"^3.5.1","whatwg-fetch":"^2.0.4","rollup-plugin-replace":"^2.0.0","construct-style-sheets-polyfill":"^2.1.0"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_6.1.6_1575035826259_0.00946754077266121","host":"s3://npm-registry-packages"}},"6.14.0":{"name":"systemjs","version":"6.14.0","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@6.14.0","maintainers":[{"name":"joeldenning","email":"joeldenning@gmail.com"},{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"0b6665de005b49624e94a2a5b5b936231e3cf97e","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-6.14.0.tgz","fileCount":34,"integrity":"sha512-OMf+kFCYG9fLQerUyw/QVIPfZ+lo579R+usrDzSrZAkvMl6B0tHtc4rUP7DFaPCr7Sy6p5DYD4V9OCF1Sp6+vA==","signatures":[{"sig":"MEYCIQCIybixJNqtqoRFlMMmWCQ6kmdmsKIl8YUx9Qo3SD3PDgIhANnmM3Nfpy93AuBB6lKlhri/hmjvs5wt5bT19Mj8Ihx9","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":459480,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj+jNGACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqSSw/+J7LtZ58qydTPHQ/00dyU8tIjEcWAUfMi3lDPISf/E0NzsWPB\r\nRDrM6JfsokVpp34xKId727kYc7JOIqidVSeHmhdjoJ49ESTam6TlS8TYAZXe\r\nZ3+aTbc3APjo9i4zMy+ZPoq8sT+I3Wau/525KPsMebgUrPY+VytoT5BX/ytu\r\nyCBIqseuEhOEEIXAYr4on+NCV1YwWS1kb2JT4gULyGRxIIPb+ThHf1dlcNB7\r\nKZv5v6cKHLl+AZi9KcLp5TPFLWumSW4Bl6mT5MpwMncW7MC3Pmfe97W9TaTB\r\nysOJRQScxeZh4zOF5Zh4YgpoH57JDjiRZIi19NOu17jwWHHKwdRJpvcaiY3f\r\nnBMNKoKlpXFUCMiTRGS6cWr3aQJp0am9CCAqu4KXH5qf5M3YTLO3XRHZJf5R\r\nesq0UadgPYZp+bgkPWVyqogDUqo4/CNkWWCSjUPD0EGmHglQN6Ys2pXgpaaH\r\nnBqFacFI8/V03VJsDqKhn70+up5vY2JIvXaJqHM2odiaGo0Izqx1OSbSEO+8\r\nqCByaBARJKPeSICHmSUUN64+3Q1xX342If5Vcu+jewQK6+1A7byR5yNeSov9\r\nl25wx/KWuWpvusNcMhLcVZr+rc4ooJQhm+4sF00X4Xpwc7+IxSqWyadykSiF\r\no0QGTfBAJnliCjFC566t2hpEn40mY4x6Mto=\r\n=GEu4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/system-node.cjs","type":"script","exports":{".":{"node":"./dist/system-node.cjs","default":"./dist/system.min.js"},"./s.js":"./dist/s.min.js","./dist/*":"./dist/*","./package.json":"./package.json"},"gitHead":"6d95f116311256fcc2a8157210bd25c49d2a3978","scripts":{"test":"chomp test","build":"chomp build"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"collective":{"url":"https://opencollective.com/systemjs","type":"opencollective"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"8.15.0","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"16.17.0","_hasShrinkwrap":false,"devDependencies":{"open":"^8.4.0","kleur":"^4.1.5","mocha":"^7.1.1","mkdirp":"^1.0.4","rimraf":"^3.0.2","rollup":"^2.79.1","terser":"^5.16.5","bluebird":"^3.7.2","node-fetch":"^2.6.0","symbol-es6":"^0.1.2","@vercel/ncc":"^0.34.0","whatwg-fetch":"^3.0.0","source-map-support":"^0.5.16","@rollup/plugin-json":"^4.0.2","rollup-plugin-terser":"^5.3.0","@rollup/plugin-replace":"^2.4.2","@jsenv/file-size-impact":"^5.2.0","@rollup/plugin-node-resolve":"^7.1.1","construct-style-sheets-polyfill":"^2.3.5"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_6.14.0_1677341509905_0.9410680439612835","host":"s3://npm-registry-packages"}},"6.14.1":{"name":"systemjs","version":"6.14.1","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@6.14.1","maintainers":[{"name":"joeldenning","email":"joeldenning@gmail.com"},{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"95a580b91b50d0d69ff178ed4816f0ddbcea23c1","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-6.14.1.tgz","fileCount":34,"integrity":"sha512-8ftwWd+XnQtZ/aGbatrN4QFNGrKJzmbtixW+ODpci7pyoTajg4sonPP8aFLESAcuVxaC1FyDESt+SpfFCH9rZQ==","signatures":[{"sig":"MEQCIFGsMebz7eZu/0d7FJ/pQeZca35rZVN4zp7EVkCj9TeVAiBj0djlrpqYS9OLaPEVGQVhVQhq4Xxv1Cisaw1Ttw+wmA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":459527,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkGcySACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqdfhAAnePZzgg6OqJmugzEaw6V94ZpvgPLGDSCYF9J2ZiRKs2xmuY6\r\nICuqZcVqyLe3HEvq3W2/WJ/5c6vNUi9toQBULovmntWMXYsxERJ44F0PFHpo\r\nXJQ6F/Cy/iSz8r/yKCvzx4M9jpU3KsF7qoQKW3Gx1ag5s5qBD5tJVpUpZByC\r\n6vV8Rvis19y6jPbOOBLg988dTgk+LIjYDKxgesMwdIqxigjUmiYJKiwfDdoJ\r\n9esS76oHn0gvhllefASFKSJmJtW99x1yCNEOaONMjOP4pOkTHTJC3gJUzbJT\r\nW7FOSNglSMYjxYpQXehgF2AJRQOTq6NWvsN2VI0W80LNVlchc12dqOQnNMdB\r\nxgibqzp2uf+6/PglgDRQFAI4y0er3K3fCNI2v+Z1PLaXBRMXxctfgXTWVHv7\r\nJixI41LObWteshkYsDHXztLOsdstRdIIf/s1CSksrt4zoSiZXE8em0ETfL5V\r\nLNPJ+KPyE+k9qCvruY/rPBWlMbiEKh8ajzU3s6ttxOH8egiUE56TID1PzKKZ\r\nP7qvB/tzPwkdFGJXqlbdGfe/GjTB29TWKCJFACPWq8IKHTlf1IJ7pJ3fILIC\r\nFCUrjf2xNXuT3Zo2xEEVX9O9HuRH8XAnn1J83lFwi+0IYDKDe4HyVpooDSek\r\nSB1B6vSrPC/Wwlzt9ynkJPNjRFV+we246Q4=\r\n=bLrF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/system-node.cjs","type":"script","exports":{".":{"node":"./dist/system-node.cjs","default":"./dist/system.min.js"},"./s.js":"./dist/s.min.js","./dist/*":"./dist/*","./package.json":"./package.json"},"gitHead":"5019edad0456cee70228dff54771d5785bb4b35f","scripts":{"test":"chomp test","build":"chomp build"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"collective":{"url":"https://opencollective.com/systemjs","type":"opencollective"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"8.15.0","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"16.17.0","_hasShrinkwrap":false,"devDependencies":{"open":"^8.4.0","kleur":"^4.1.5","mocha":"^7.1.1","mkdirp":"^1.0.4","rimraf":"^3.0.2","rollup":"^2.79.1","terser":"^5.16.5","bluebird":"^3.7.2","node-fetch":"^2.6.0","symbol-es6":"^0.1.2","@vercel/ncc":"^0.34.0","whatwg-fetch":"^3.0.0","source-map-support":"^0.5.16","@rollup/plugin-json":"^4.0.2","rollup-plugin-terser":"^5.3.0","@rollup/plugin-replace":"^2.4.2","@jsenv/file-size-impact":"^5.2.0","@rollup/plugin-node-resolve":"^7.1.1","construct-style-sheets-polyfill":"^2.3.5"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_6.14.1_1679412370567_0.6019157855565753","host":"s3://npm-registry-packages"}},"6.14.2":{"name":"systemjs","version":"6.14.2","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@6.14.2","maintainers":[{"name":"joeldenning","email":"joeldenning@gmail.com"},{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"e289f959f8c8b407403bd39c6abaa16f2c13f316","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-6.14.2.tgz","fileCount":34,"integrity":"sha512-1TlOwvKWdXxAY9vba+huLu99zrQURDWA8pUTYsRIYDZYQbGyK+pyEP4h4dlySsqo7ozyJBmYD20F+iUHhAltEg==","signatures":[{"sig":"MEYCIQDsSh8fC9jtQRTR97L1itW0auop22WgXS1DbQ7GjqZh7QIhAMlF51xVUtmVNT9ESpBv6AXqj5oqUQQxKbUffUwu+BHF","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":785527},"main":"dist/system-node.cjs","type":"script","exports":{".":{"node":"./dist/system-node.cjs","default":"./dist/system.min.js"},"./s.js":"./dist/s.min.js","./dist/*":"./dist/*","./package.json":"./package.json"},"gitHead":"dcd8f3178c17e10d7ea01c25f739c49007bcd03d","scripts":{"test":"chomp test","build":"chomp build"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"collective":{"url":"https://opencollective.com/systemjs","type":"opencollective"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"9.7.1","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"19.3.0","_hasShrinkwrap":false,"devDependencies":{"open":"^8.4.0","kleur":"^4.1.5","mocha":"^7.1.1","mkdirp":"^1.0.4","rimraf":"^3.0.2","rollup":"^2.79.1","terser":"^5.16.5","bluebird":"^3.7.2","node-fetch":"^2.6.0","symbol-es6":"^0.1.2","@vercel/ncc":"^0.34.0","whatwg-fetch":"^3.0.0","source-map-support":"^0.5.16","@rollup/plugin-json":"^4.0.2","rollup-plugin-terser":"^5.3.0","@rollup/plugin-replace":"^2.4.2","@jsenv/file-size-impact":"^5.2.0","@rollup/plugin-node-resolve":"^7.1.1","construct-style-sheets-polyfill":"^2.3.5"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_6.14.2_1692163204629_0.2536965894504126","host":"s3://npm-registry-packages"}},"0.16.2":{"name":"systemjs","version":"0.16.2","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.16.2","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"1815eb6546cc11604bacd27a1558b6ef8f285242","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.16.2.tgz","integrity":"sha512-0/Fu6lwT2Kp8gwLDsSQv+ebttsIaPqkHkwgeCWBZtLdZ9alpIV6fq2iJYjRaMbD/hOM9SfnFpdVhr1GxS+66Cg==","signatures":[{"sig":"MEUCIHlrORld8DNLeclPr8bPhIwBXG79JzLOZPIjA/nsqX7lAiEA2NPWVKhU7LPZApkZgoCHhXuLu2wPfiCVjNDE5cZhMVU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.src.js","_from":".","_shasum":"1815eb6546cc11604bacd27a1558b6ef8f285242","gitHead":"4b66b87ff837a41d1ede71aa9e250cc0d35cbc1f","scripts":{"test":"npm run test:babel && npm run test:traceur","test:babel":"qunit -c s:./dist/system.js -t ./test/test-babel.js","test:traceur":"qunit -c s:./dist/system.js -t ./test/test.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs","type":"git"},"_npmVersion":"2.5.1","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"_nodeVersion":"0.12.0","dependencies":{"es6-module-loader":"^0.16.1"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.87","uglify-js":"~2.4.13","babel-core":"^4.7.16"}},"0.16.1":{"name":"systemjs","version":"0.16.1","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.16.1","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"fc6f2a8d978e9c2601f17a071cd28cb4ce28e920","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.16.1.tgz","integrity":"sha512-G8SSgGEDVrmkbvl2/cGvBWFJvZinoQhAfpaouxZZ0vbdAmZI3hncO8jB4B1OAxdMIiO4QdwzL/4VnRfJQakMmg==","signatures":[{"sig":"MEUCIF+W4dbm47/2jmdGfre/hC44J3maBOnYMkqNcU+QwRB4AiEA6SdzC0HDmz3VugFUjR/TD1afuWkwl44P+TQ0MI5XI2M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.src.js","_from":".","_shasum":"fc6f2a8d978e9c2601f17a071cd28cb4ce28e920","gitHead":"9ebbc3d974a81e0c00a1fe3c8c1c3756085b766d","scripts":{"test":"npm run test:babel && npm run test:traceur","test:babel":"qunit -c s:./dist/system.js -t ./test/test-babel.js","test:traceur":"qunit -c s:./dist/system.js -t ./test/test.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs","type":"git"},"_npmVersion":"2.5.1","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"_nodeVersion":"0.12.0","dependencies":{"es6-module-loader":"^0.16.0"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.87","uglify-js":"~2.4.13","babel-core":"^4.7.16"}},"2.1.0":{"name":"systemjs","version":"2.1.0","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@2.1.0","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"46c64b890338f3cbe2ff684beae30ce71cd118ff","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-2.1.0.tgz","fileCount":25,"integrity":"sha512-FouU9ZDEhF9DoYgEKQEt9ckT4S4OcF0lTtOzQffHpCkssOWH6BWU1ZnOQz5It02e5E/YKej0O+1GtYg6GJiOCg==","signatures":[{"sig":"MEUCIQDpsODTdyPa6Hc2SQ7Uz9uafet7AVvYlxSpyBrppCUM+wIgSlXl3du/mQuKHqLWS5GM6TWwTZ291a7trWoOVXp/vMs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":95869,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb2tynCRA9TVsSAnZWagAAdI4P/joqNvlN7aomDHhD2jWI\nFNfUEISHJd9tCIGX/qzUj2aVhUXZxrMdAfyBheBXyJ/vWqRht/uwNClsswKA\nxefrxzGcYM2nq5fM2/QdQIAqyDA3J4nxBVKsjXwF8B8FDpsDx0uAQxB4tAHX\n37AJ28D+k40u2mu7jMfxx8kFjPN1BwifcPVkKJNIndWKAoJmaXJiupt0l0vZ\nGtipQZgtEPIMWRp+eACVZ81p/UOAgHXXLlbXbbRIaP9xkj2eHwd1rkCPbWYN\niq6vJFuuVPBTW0WMVQvQ2LfCWc6o/aoXSM+PkCe+0VxcGvcUO/QIxc6p4Lyi\nfQotjWlNRhF+fzI+yI1CsF25UALlJW+mVQqk+JLjTsn5hUPrJaQa0E51dY8l\nhrBzo1Kkxm44wE5HkVPiBRK/QRzF+9jyoX3JlAM4DkxPVxCYQhlv7fuACu42\nwXjI6LtQ/SW0ma+e6qfpTodRbI3mdHxNxiTWEYHZPNfONIoPkd1SY+WlO2c5\nGswLTQdxpLzFxs9/U81eGkTY4olk6J+DwTEQZMD13OF77D5YDsGOwQcPbf61\njOfYZ+SXkfOiehHs5jlaZPisjx02Mdad211bOKAtw2JmaJkARUwZTBamgiLh\nGMwM5FBE3so38flCWoin20+VuU07AWHH6pnAZ4BUZYvfgrAtkyJmhXoCRokr\n09ox\r\n=ar8g\r\n-----END PGP SIGNATURE-----\r\n"},"mode":"esm","gitHead":"27a010efd850104867a0e91424ff297e0989cdbc","scripts":{"min":"npm run min:systemjs && npm run min:sjs","test":"mocha -b -r esm","build":"npm run build:systemjs && npm run build:sjs && npm run min && npm run build:extras","min:sjs":"cd dist && terser s.js -c passes=2 -m --source-map -o s.min.js","test:sjs":"mocha test/test-production.js -u tdd --reporter dot","build:sjs":"rollup -c --environment sjs","footprint":"npm run footprint:systemjs && npm run footprint:sjs","prepublish":"npm run build","build:extras":"bash minify-extras.sh","min:systemjs":"cd dist && terser system.js -c passes=2 -m --source-map --comments \"/SystemJS \\d/\" -o system.min.js","test:rebuild":"babel test/fixtures/es-modules --plugins=@babel/plugin-syntax-import-meta,@babel/plugin-transform-modules-systemjs --out-dir test/fixtures/register-modules","footprint:sjs":"terser dist/s.js -c passes=2 -m | gzip -9f | wc -c","test:systemjs":"mocha test/test-traceur.js -u tdd --reporter dot","build:systemjs":"rollup -c","footprint:systemjs":"terser dist/system.js -c passes=2 -m | gzip -9f | wc -c"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"6.4.1","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"8.12.0","_hasShrinkwrap":false,"devDependencies":{"esm":"^3.0.77","mocha":"^5.2.0","rollup":"^0.64.1","terser":"^3.8.1","bluebird":"^3.5.1","@babel/cli":"^7.0.0-rc.1","@babel/core":"^7.0.0-rc.1","whatwg-fetch":"^2.0.4","rollup-plugin-replace":"^2.0.0","@babel/plugin-syntax-import-meta":"^7.0.0-rc.1","@babel/plugin-transform-modules-systemjs":"^7.0.0-rc.1"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_2.1.0_1541069990759_0.9417172115465737","host":"s3://npm-registry-packages"}},"0.16.0":{"name":"systemjs","version":"0.16.0","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.16.0","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"18ceb23a965f545d293b20414a9d04ae19247698","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.16.0.tgz","integrity":"sha512-HINJSg9BRr5QhvnHBYrvUfEEfHfHQta9TpOMz2U7i15TwWx6aiMPUwqwLJSbllGAQWt/19OjE/OuYmvSPGyBCQ==","signatures":[{"sig":"MEUCIQCyu4w1g5s+Wjv9OA0A3/eb2FH7iOlqv7u0sncUVL/nwgIgUBnv0jTrpeWL0C0lCdmvWDefpXQzEW8ey7SkgLvLMnw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.src.js","_from":".","_shasum":"18ceb23a965f545d293b20414a9d04ae19247698","gitHead":"00d0f73c2766985aa6a9eca4df5996662b7819a0","scripts":{"test":"npm run test:babel && npm run test:traceur","test:babel":"qunit -c s:./dist/system.js -t ./test/test-babel.js","test:traceur":"qunit -c s:./dist/system.js -t ./test/test.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs","type":"git"},"_npmVersion":"2.5.1","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"_nodeVersion":"0.12.0","dependencies":{"es6-module-loader":"^0.16.0"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.87","uglify-js":"~2.4.13","babel-core":"^4.7.16"}},"6.14.3":{"name":"systemjs","version":"6.14.3","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@6.14.3","maintainers":[{"name":"joeldenning","email":"joeldenning@gmail.com"},{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"c1d6e4ff5f9ff7106e5bb3d451360b1a066bde8a","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-6.14.3.tgz","fileCount":34,"integrity":"sha512-hQv45irdhXudAOr8r6SVSpJSGtogdGZUbJBRKCE5nsIS7tsxxvnIHqT4IOPWj+P+HcSzeWzHlGCGpmhPDIKe+w==","signatures":[{"sig":"MEUCIDX4H2HEiYvvdkk3dGNALf0QFrP4+1kXuIF7b8Oh6etoAiEA2Q8lZ6oKnM45hr9pZ+DeIT5/Ve95EJno+SfFijjInzw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":785609},"main":"dist/system-node.cjs","type":"script","exports":{".":{"node":"./dist/system-node.cjs","default":"./dist/system.min.js"},"./s.js":"./dist/s.min.js","./dist/*":"./dist/*","./package.json":"./package.json"},"gitHead":"3400f5900204eb5f56e59d68f3a0c07acf4db204","scripts":{"test":"chomp test","build":"chomp build"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"collective":{"url":"https://opencollective.com/systemjs","type":"opencollective"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"9.7.1","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"21.2.0","_hasShrinkwrap":false,"devDependencies":{"open":"^8.4.0","kleur":"^4.1.5","mocha":"^7.1.1","mkdirp":"^1.0.4","rimraf":"^3.0.2","rollup":"^2.79.1","terser":"^5.16.5","bluebird":"^3.7.2","node-fetch":"^2.6.0","symbol-es6":"^0.1.2","@vercel/ncc":"^0.34.0","whatwg-fetch":"^3.0.0","source-map-support":"^0.5.16","@rollup/plugin-json":"^4.0.2","rollup-plugin-terser":"^5.3.0","@rollup/plugin-replace":"^2.4.2","@jsenv/file-size-impact":"^5.2.0","@rollup/plugin-node-resolve":"^7.1.1","construct-style-sheets-polyfill":"^2.3.5"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_6.14.3_1704118543014_0.9636766374452057","host":"s3://npm-registry-packages"}},"0.16.9":{"name":"systemjs","version":"0.16.9","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.16.9","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"},{"name":"crisptrutski","email":"jeffpalentine@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"ce6256589708f2fbbcf7b915b7e4597d1657724e","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.16.9.tgz","integrity":"sha512-FCZrnPeYhhJ2n8L2FfPNWupxqvtjGzOgIS/Ck02M9JSq6ujQrsbWxuFfXabisCMmILDQ/tzGIN0zHalcH/nAxA==","signatures":[{"sig":"MEYCIQDgnUC2mYJGvyutveuo6AdvFlwE3n4fxx4hcnArzwcomQIhAP6VfP6aZQkrjKwV0+wHRKbV7V8rlDwLJQzyztu+l+Yb","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.src.js","_from":".","_shasum":"ce6256589708f2fbbcf7b915b7e4597d1657724e","gitHead":"518e0b18720101a2716d0f58ac37c876ffcffe99","scripts":{"test":"npm run test:babel && npm run test:traceur","test:babel":"qunit -c s:./dist/system.js -t ./test/test-babel.js","test:traceur":"qunit -c s:./dist/system.js -t ./test/test.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs","type":"git"},"_npmVersion":"2.5.1","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"_nodeVersion":"0.12.0","dependencies":{"es6-module-loader":"^0.16.5"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.88","uglify-js":"~2.4.13","babel-core":"^5.0.10"}},"0.16.8":{"name":"systemjs","version":"0.16.8","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.16.8","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"},{"name":"crisptrutski","email":"jeffpalentine@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"3cc1254c67e9cd93fa25bb98cf53fcbff1f0fbc0","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.16.8.tgz","integrity":"sha512-hBA41bWF1fCMnTjBXfFl2btZRfx5pTOKZiPfZHz//Pw1V2xVm4w/8h3Pvgs3rQlfXctH+Yx8hcQNqhbSg0SRKg==","signatures":[{"sig":"MEYCIQDvsmBiQaOtSPsiTifuyYkCJfAYDOMpSCRqCcXT1zWhlgIhAMw0289aV7g+2892Q9A5QQ3Db5MMnaMCSX8nDIV6dyWg","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.src.js","_from":".","_shasum":"3cc1254c67e9cd93fa25bb98cf53fcbff1f0fbc0","gitHead":"4be7ce9da2de6932a7189e256b744b9c7cd7bd3e","scripts":{"test":"npm run test:babel && npm run test:traceur","test:babel":"qunit -c s:./dist/system.js -t ./test/test-babel.js","test:traceur":"qunit -c s:./dist/system.js -t ./test/test.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs","type":"git"},"_npmVersion":"2.5.1","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"_nodeVersion":"0.12.0","dependencies":{"es6-module-loader":"^0.16.5"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.88","uglify-js":"~2.4.13","babel-core":"^5.0.10"}},"0.16.7":{"name":"systemjs","version":"0.16.7","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.16.7","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"},{"name":"crisptrutski","email":"jeffpalentine@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"d546bff9f51d470b7a62ed2b05519962e0bd532c","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.16.7.tgz","integrity":"sha512-ZmbYdfeuchEJGwHGyS4ZAUhyppPsSq8H5QeHONKbdnqKQbRSQK6fAk0S6hRBnpwOUq0751N4TmeNzYxWsq5xlg==","signatures":[{"sig":"MEUCIQD7DI/Dse95phthxaT0ABLgKVYGl0Iwsn+d1ilr4mkuhgIgJN+xi5fVuhIxb0dqfIWkQkcd1KWEknQWfFMWU2yOybI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.src.js","_from":".","_shasum":"d546bff9f51d470b7a62ed2b05519962e0bd532c","gitHead":"f4cd324888b9662d6ef2d5023b85b4ee181d5643","scripts":{"test":"npm run test:babel && npm run test:traceur","test:babel":"qunit -c s:./dist/system.js -t ./test/test-babel.js","test:traceur":"qunit -c s:./dist/system.js -t ./test/test.js"},"_npmUser":{"name":"crisptrutski","email":"jeffpalentine@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs","type":"git"},"_npmVersion":"2.1.17","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"_nodeVersion":"0.10.35","dependencies":{"es6-module-loader":"^0.16.4"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.87","uglify-js":"~2.4.13","babel-core":"^5.0.10"}},"0.16.6":{"name":"systemjs","version":"0.16.6","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.16.6","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"9bb543353d2df03b4f37967fab644e75c1175d63","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.16.6.tgz","integrity":"sha512-ndNpHQj5j/aFFb96zVAMVwhtn+gwjO9CjSJgX5zearkXrhxYNDrP1RpRpbI0ujHGwtptkiIijgjMUmGTuy8v9Q==","signatures":[{"sig":"MEYCIQCWAX9YKQbV9GAX7QlMLhVfkJ/tlk9l9uShALqDrUZCHgIhAI71at+18LqnVs/zAs6mXT3igs9X3Iugu0j/6RvmNOHE","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.src.js","_from":".","_shasum":"9bb543353d2df03b4f37967fab644e75c1175d63","gitHead":"ff9f716f735de3b32cefa9975c4214d9afde0252","scripts":{"test":"npm run test:babel && npm run test:traceur","test:babel":"qunit -c s:./dist/system.js -t ./test/test-babel.js","test:traceur":"qunit -c s:./dist/system.js -t ./test/test.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs","type":"git"},"_npmVersion":"2.5.1","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"_nodeVersion":"0.12.0","dependencies":{"es6-module-loader":"^0.16.1"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.87","uglify-js":"~2.4.13","babel-core":"^4.7.16"}},"0.16.5":{"name":"systemjs","version":"0.16.5","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.16.5","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"95742e4eb4a2fefa4575819d1f945d118f601320","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.16.5.tgz","integrity":"sha512-O7RDFVZi5bGz9ddyk3u05Q2qm1xN8AQhDGRtcz7rcIKnXydfuy9w/12GzjHHLKf1Nsxs60OmnQmBLlCE5nLfFQ==","signatures":[{"sig":"MEYCIQCmfYYE+yVfWZk397Zr9/cXWoeWCEH5GMp+xl+8OU02+gIhAIuyTkjwz17OlaFkB+L/p41KfxJU1IHAV0IBIGHcDr9w","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.src.js","_from":".","_shasum":"95742e4eb4a2fefa4575819d1f945d118f601320","gitHead":"d7132e5ead136efa36544a5d4ce33545dddb961a","scripts":{"test":"npm run test:babel && npm run test:traceur","test:babel":"qunit -c s:./dist/system.js -t ./test/test-babel.js","test:traceur":"qunit -c s:./dist/system.js -t ./test/test.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs","type":"git"},"_npmVersion":"2.5.1","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"_nodeVersion":"0.12.0","dependencies":{"es6-module-loader":"^0.16.1"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.87","uglify-js":"~2.4.13","babel-core":"^4.7.16"}},"0.16.4":{"name":"systemjs","version":"0.16.4","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.16.4","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"85662c9310474f4d3d26492fe14bad0d2d27898e","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.16.4.tgz","integrity":"sha512-qcEEsXZZGvt4TXEZ5w7OwRd8M4E6v1cak3QuAWLhucelberJfP4X8w5wWEihKexvD6yZZX57E6cjPAahm5FpYQ==","signatures":[{"sig":"MEQCIGh3/50y9ZmIilw/nJZwMIqQZAUXBwwzMGiOHgVmPuLlAiBY2YU0gU4IlUi/+oua2PxKybP+sWEXCyrB0b+YUDi/RQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.src.js","_from":".","_shasum":"85662c9310474f4d3d26492fe14bad0d2d27898e","gitHead":"e49abc735187164d6a457a2bab1643648355266c","scripts":{"test":"npm run test:babel && npm run test:traceur","test:babel":"qunit -c s:./dist/system.js -t ./test/test-babel.js","test:traceur":"qunit -c s:./dist/system.js -t ./test/test.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs","type":"git"},"_npmVersion":"2.5.1","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"_nodeVersion":"0.12.0","dependencies":{"es6-module-loader":"^0.16.1"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.87","uglify-js":"~2.4.13","babel-core":"^4.7.16"}},"2.1.1":{"name":"systemjs","version":"2.1.1","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@2.1.1","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"453a123aa3bb2dcb581d0e99fabd2f29eadbe10d","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-2.1.1.tgz","fileCount":25,"integrity":"sha512-T8bqkkIl56bLGrMzQh3+Ug2Oxg7NSyj+JFHv5Gi8V81mQr5XQKHEDooqvixbchYM9ZoeZedJFCMiPyN+nIEj4Q==","signatures":[{"sig":"MEUCIQCg6BJjorPzU4ShMYitF+cuGy6idNxpybVWAwzjWudBrwIgWMpj9syntbUiMbmU3I5kG82TmMPFu6aAqO79c1eimG0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":98115,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb2uqiCRA9TVsSAnZWagAAzfUP/iZg6mkXPEOiVFkOHj9k\nRA56KC5WQMiAGv+zxSpNKkDYu0KQhZk3S7WJQ+mmBqRbCsDVLJaf0U6dmCSR\nVfnUxf7ZMhxdy1VeLXqhdcVvh/l7UOuThp/b2A9NbKERUjcxQnm/N2PlYTgD\nGg43mXb80GdkXyr/SqOzvwkLf7VrXT3ZWWkGLjT8MxINB/oQMrhfdl5LCvjS\npLzFWT6fzzamtdRLiuXoRjsYIah7Qp74zrk/bYDhNm09atQBJAiUU6dL1Iuo\nABiNEP3iw9zxUH6hj4N+UWdOAeTZgueieh3R1eEbfStccMfkN+4hkBXtmnHJ\nZOhHsTZVkuQ3BJIIJwC+a4OdSWeW5y9XA/ciTckK33ZIH/rNvafCk3Au1T/2\n9j203I0lZYu+fdwAL87u5eoVKTqjQ3x3daSi9mqQEI9x5u/43C+iJeAwuAfH\nYIiUebz0FZZDYUWv2Mw4QhbGST2BvIUDl1wl6wCl66C9eW4RNyMBYKsyFEbU\ngUuXcQ5gFSjPGhTUHkRaR1DsFafkBV5IEOl4dL4iqBSgvGKt+iXVcU2kmXFf\nR214FH3oqH9/m/9uBc2J++0LmZ7P6pf1h6ptH/jZr/7BzgjftUTm7S2wpGp+\ngnbtvaaVqXFO2fNWc+Qv+FTj6lP8A3Nm+EMewF/B8PNgeZzUggAq8RQXSHdj\nuHy1\r\n=PHqs\r\n-----END PGP SIGNATURE-----\r\n"},"mode":"esm","gitHead":"0a7f2b27198ee1af8b78e93f98a0d74568074d9b","scripts":{"min":"npm run min:systemjs && npm run min:sjs","test":"mocha -b -r esm","build":"npm run build:systemjs && npm run build:sjs && npm run min && npm run build:extras","min:sjs":"cd dist && terser s.js -c passes=2 -m --source-map -o s.min.js","test:sjs":"mocha test/test-production.js -u tdd --reporter dot","build:sjs":"rollup -c --environment sjs","footprint":"npm run footprint:systemjs && npm run footprint:sjs","prepublish":"npm run build","build:extras":"bash minify-extras.sh","min:systemjs":"cd dist && terser system.js -c passes=2 -m --source-map --comments \"/SystemJS \\d/\" -o system.min.js","test:rebuild":"babel test/fixtures/es-modules --plugins=@babel/plugin-syntax-import-meta,@babel/plugin-transform-modules-systemjs --out-dir test/fixtures/register-modules","footprint:sjs":"terser dist/s.js -c passes=2 -m | gzip -9f | wc -c","test:systemjs":"mocha test/test-traceur.js -u tdd --reporter dot","build:systemjs":"rollup -c","footprint:systemjs":"terser dist/system.js -c passes=2 -m | gzip -9f | wc -c"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"6.4.1","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"8.12.0","_hasShrinkwrap":false,"devDependencies":{"esm":"^3.0.77","mocha":"^5.2.0","rollup":"^0.64.1","terser":"^3.8.1","bluebird":"^3.5.1","@babel/cli":"^7.0.0-rc.1","@babel/core":"^7.0.0-rc.1","whatwg-fetch":"^2.0.4","rollup-plugin-replace":"^2.0.0","@babel/plugin-syntax-import-meta":"^7.0.0-rc.1","@babel/plugin-transform-modules-systemjs":"^7.0.0-rc.1"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_2.1.1_1541073569379_0.2766475325850901","host":"s3://npm-registry-packages"}},"0.16.3":{"name":"systemjs","version":"0.16.3","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.16.3","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"8e71fb366464741a01df05105ce74398a3f6dad1","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.16.3.tgz","integrity":"sha512-4Z2GDZX/Z//rpUNqFyA1PKpBXOfWnZ+VD3NNmQZDHSgdk51pAsJhnTp5MwMXF5IF9B98PaNw2AaEXChfvWscgw==","signatures":[{"sig":"MEUCIQDtLEUgMYGllgGe+IMbEwhwO0sEaL4mGsF4B9E9EprcmAIgE5QLTobWrRJOle0H1MaV1GzbDzYKBfLIjF7ksCK0f7c=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.src.js","_from":".","_shasum":"8e71fb366464741a01df05105ce74398a3f6dad1","gitHead":"95a0491c4f4811dada185eb69da3bc8f8843ff14","scripts":{"test":"npm run test:babel && npm run test:traceur","test:babel":"qunit -c s:./dist/system.js -t ./test/test-babel.js","test:traceur":"qunit -c s:./dist/system.js -t ./test/test.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs","type":"git"},"_npmVersion":"2.5.1","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"_nodeVersion":"0.12.0","dependencies":{"es6-module-loader":"^0.16.1"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.87","uglify-js":"~2.4.13","babel-core":"^4.7.16"}},"2.1.2":{"name":"systemjs","version":"2.1.2","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@2.1.2","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"f97b31352583dde393ff86e412146490488c50b7","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-2.1.2.tgz","fileCount":25,"integrity":"sha512-zWKz0FMcnqnMuqSQ9htSeDCAWSLWmBaY6VypVtcVhY4VWJzp7RfNGuOT+2ABAHZR7GuPmEjDmvBV48khHfqxAw==","signatures":[{"sig":"MEQCIGyPASMhqf00FxONUzt3E1kPqEt+Nvtpm2fRP+U46Qm8AiApB0QXkrU2naSFzqpaYn4QJkY39Qczbi0Zy8oVFwYrdQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":97640,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcOSe7CRA9TVsSAnZWagAAVgoP/22che9VygeRC5QPAWS9\neSyHQ85zlirNG/ZzRj5scuhYrO5Zx49Ppc9fOYHYGvY9oD1TAtrWcrqbKjM+\n+nJnXhKx6KSJZXb702soDLa8J9Jrk0XCX/bhNWOjr71QdQMPEbQxJFANHaXH\nBn7xyVAsx/wez89TZPCDX3gITp1LJLIFwl0/lSF5K9XetKaZAkDMq9gg3cvB\nc2r/lLDkZVEaTJHQT4TdNr3+5kWvKwMxNb3OxQHNcLNuvYnf6DrQO2o//t4J\nErMqv7W6J+G3bAe1Z9ytQ8meP99BeDCqxKU803quk1fVDRwBpqKDKZmwW/6C\nub7gscoRPj9hYxsvjqWHp/OeaQnBp0vULduhemriOt0nXK+o204yors3RJw2\nwEimF+bdXf2bRUo8sC2i9yqWMjuHVwB9TSIA2pnTgf2ipPir6j0od02kTJRY\njfGQ6eMJFxDzV60FieJDJal8RGqxTiA+U0dW4jm9bx8AVvYckLOEJyMGNtwv\nElKFphlzD+bXyk4B6r7BGP0bIlI6WOMfkbRAbYiQ9J28K8CVrjuSDMP4KU3p\nUqgdWSstsWq/tMR1Vfz6BEqFY60dbU3S3zZqeRN6v6/ghob7CkkSsY4MBrvB\nE62AGf62Bb/Re/Oy0024kq6EmCRFi1wlScdzs03L2TzyXGDVaZALJf9hwObz\nesUS\r\n=7tgH\r\n-----END PGP SIGNATURE-----\r\n"},"mode":"esm","gitHead":"3588eddfd960db8c93429e7bbd39bca6bbc1445e","scripts":{"min":"npm run min:systemjs && npm run min:sjs","test":"mocha -b -r esm","build":"npm run build:systemjs && npm run build:sjs && npm run min && npm run build:extras","min:sjs":"cd dist && terser s.js -c passes=2 -m --source-map -o s.min.js","test:sjs":"mocha test/test-production.js -u tdd --reporter dot","build:sjs":"rollup -c --environment sjs","footprint":"npm run footprint:systemjs && npm run footprint:sjs","prepublish":"npm run build","build:extras":"bash minify-extras.sh","min:systemjs":"cd dist && terser system.js -c passes=2 -m --source-map --comments \"/SystemJS \\d/\" -o system.min.js","test:rebuild":"babel test/fixtures/es-modules --plugins=@babel/plugin-syntax-import-meta,@babel/plugin-transform-modules-systemjs --out-dir test/fixtures/register-modules","footprint:sjs":"terser dist/s.js -c passes=2 -m | gzip -9f | wc -c","test:systemjs":"mocha test/test-traceur.js -u tdd --reporter dot","build:systemjs":"rollup -c","footprint:systemjs":"terser dist/system.js -c passes=2 -m | gzip -9f | wc -c"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"6.5.0","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"10.15.0","_hasShrinkwrap":false,"devDependencies":{"esm":"^3.0.77","mocha":"^5.2.0","rollup":"^0.64.1","terser":"^3.8.1","bluebird":"^3.5.1","@babel/cli":"^7.0.0-rc.1","@babel/core":"^7.0.0-rc.1","whatwg-fetch":"^2.0.4","rollup-plugin-replace":"^2.0.0","@babel/plugin-syntax-import-meta":"^7.0.0-rc.1","@babel/plugin-transform-modules-systemjs":"^7.0.0-rc.1"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_2.1.2_1547249594796_0.062013553795642995","host":"s3://npm-registry-packages"}},"6.0.0":{"name":"systemjs","version":"6.0.0","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@6.0.0","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"167fdb7c15195ee2773e25c958cd9a0351ac85fe","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-6.0.0.tgz","fileCount":31,"integrity":"sha512-Dc7TBShsS8baQKZBsh+bOZOHPS82V7IQWQ6IxR+HCWz4+jN2WSQjj+LIS2KbX0tdB2QAG/isSexgFFk40Z+UYg==","signatures":[{"sig":"MEQCIF1WYyqxwNY/RQCglAHejnCgQMN7uhS5aF2V/Ur9COCeAiBeA9+VUjWClEyxh+f+aKQpiHhkjO3U28+BbMDjHzg2jA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":124518,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdaC5WCRA9TVsSAnZWagAAWM0QAIMvEVdBVn+E6fx6cwKe\n7dBS0Zird7wlywWmBgwGsxnLOlh1PUyOWrhfnulj8fw7l3NfWY/KcHw/Qxor\nMzLKI1lOjZyuDLdQ4kVoDaTxkb07Yl/shOYi77ua/1Wny8M9LS01uNiRpze2\n9u2o0mAntP+KZC1243C5szvx5MzhEYCRB5aeBGbeIJS0sovQ7FvYBrKkPXCH\nROrbnDcXpbUepoljOMPCwM7VgEv/dGSM/uq4S+eE0MiwkPdo2Ez0XD9Dtsve\njQHAB1sIVQCfLSPqMBcX870zxU9yOi31azYEMWS2MVY9A7pbPZ0pXA33GAr3\nNrS9eSNZtXGxkFi4dIhxn+PY1fWtSLRkAWN6yxmSKIA6w+Er4cpMRBwZDfSm\nDkrKaOWR3Ko3s37LUlku0jiaZG2ys6u2aMJsL2vzGhYhORxMwULeBtQ+lMsn\nZzvm7YX/Yk5DYp9drYZNESsznvzOuiXrCC/D3M/y4r1XhDd9fTItA5su+kzV\nzTrxbP1hOPJ+oLaw6LGcEjDEtksm3s881z53q1vVKmx7SX1bjIKJaz7BrKj0\nd4zq405HkeCVSrO1znwbYcCieQEB/NFoFQfq4ZzL9Rg3S+JIBEVBF0o7ZQsY\no0I5Db/IwsZHj+ZE7R1BMOoBDk2nIxaPdeunGfN+QN819K0R55QBJhb3YNaR\nQ/5n\r\n=3NXc\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","gitHead":"5727e9bce54daa9cb4d804872e93136e7c9d1c24","scripts":{"min":"npm run min:systemjs && npm run min:sjs","test":"mocha -b -r esm test/import-map.js test/system-core.js test/url-resolution.js && npm run test-browser","build":"npm run build:systemjs && npm run build:sjs && npm run min && npm run build:extras","min:sjs":"cd dist && terser s.js -c passes=2 -m --source-map -o s.min.js","build:sjs":"rollup -c --environment sjs","footprint":"npm run footprint:systemjs && npm run footprint:sjs","prepublish":"npm run build","build:extras":"bash minify-extras.sh","min:systemjs":"cd dist && terser system.js -c passes=2 -m --source-map --comments \"/SystemJS \\d/\" -o system.min.js","test-browser":"node test/server.js","footprint:sjs":"terser dist/s.js -c passes=2 -m | gzip -9f | wc -c","build:systemjs":"rollup -c","footprint:systemjs":"terser dist/system.js -c passes=2 -m | gzip -9f | wc -c"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"6.9.0","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"10.16.3","_hasShrinkwrap":false,"devDependencies":{"esm":"^3.2.25","opn":"^6.0.0","mocha":"^5.2.0","rollup":"^0.64.1","terser":"^3.8.1","bluebird":"^3.5.1","whatwg-fetch":"^2.0.4","rollup-plugin-replace":"^2.0.0","construct-style-sheets-polyfill":"^2.1.0"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_6.0.0_1567108693602_0.1317306076521163","host":"s3://npm-registry-packages"}},"0.16.11":{"name":"systemjs","version":"0.16.11","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.16.11","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"},{"name":"crisptrutski","email":"jeffpalentine@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"4870dfa549a503822b322c1837563bc8209911c9","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.16.11.tgz","integrity":"sha512-UcXNB7+1IdbJgQD8F+6EuzxFW3zrKWsZrhKzfF2w2FbPcxLkNDxWrPilGfNKh6l4mgcaD44gjN7EUNGcjQjCGg==","signatures":[{"sig":"MEUCIQDiEEoTXYMVvWwl8rhtazclFtz8zu4tsO0bhtgT9vLyeAIgDWhkA87t4/cdLMcGOCkObUNd1nkNVCYfltTAeKdXpKE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.src.js","_from":".","_shasum":"4870dfa549a503822b322c1837563bc8209911c9","gitHead":"e8d0707c6b9bf63fd23de1ac1c07523272b9c7bd","scripts":{"test":"npm run test:babel && npm run test:traceur","test:babel":"qunit -c s:./dist/system.js -t ./test/test-babel.js","test:traceur":"qunit -c s:./dist/system.js -t ./test/test.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs","type":"git"},"_npmVersion":"2.5.1","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"_nodeVersion":"0.12.0","dependencies":{"es6-module-loader":"^0.16.6"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.88","uglify-js":"~2.4.13","babel-core":"^5.0.10"}},"0.16.10":{"name":"systemjs","version":"0.16.10","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.16.10","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"},{"name":"crisptrutski","email":"jeffpalentine@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"97624f7a834faad6d57085a4ddfbc8b5a1d71961","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.16.10.tgz","integrity":"sha512-uwwJj67Jz5+YEt+uwSUDhnGv0PZ0+7NAhY+qfMXrKuVG8KKwFu/1fo5sV+rRpynXTE53khWyG5TkYqsWgbYkFw==","signatures":[{"sig":"MEUCIQDMOMn/fifaOwdFeFiK79twTl4mHNLiPrspdl6qSPQnfAIgE3tVz4Zn13YRb21nS7GqTQbj6pSk6YWo44X4ImJmwLc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.src.js","_from":".","_shasum":"97624f7a834faad6d57085a4ddfbc8b5a1d71961","gitHead":"92173c1c4869c077d340cb2665053a44b7a66472","scripts":{"test":"npm run test:babel && npm run test:traceur","test:babel":"qunit -c s:./dist/system.js -t ./test/test-babel.js","test:traceur":"qunit -c s:./dist/system.js -t ./test/test.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs","type":"git"},"_npmVersion":"2.5.1","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"_nodeVersion":"0.12.0","dependencies":{"es6-module-loader":"^0.16.6"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.88","uglify-js":"~2.4.13","babel-core":"^5.0.10"}},"0.5.1":{"name":"systemjs","version":"0.5.1","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.5.1","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/guybedford/systemjs","bugs":{"url":"https://github.com/guybedford/systemjs/issues"},"dist":{"shasum":"b8b76ea4f41b67f6edb2a1e87a020422d6706c70","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.5.1.tgz","integrity":"sha512-Dc/gDlT0zSX6JATIySDOMibms1fpVTZ7ZD8z/+R/OQtiPootzLtyr/4rUMKt2rBBzjq3SR7ADnBRXbOq4KG8rg==","signatures":[{"sig":"MEYCIQCnpwezyco21joiwu1TMAwL4pryi2GNiRRAJD6aLp61wQIhAOsnnKgLJbbqWTu1X7zZmgqVOT2duHcmrAMjWsuMQ4gV","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.js","_from":".","_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/guybedford/systemjs","type":"git"},"_npmVersion":"1.4.3","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"dependencies":{"es6-module-loader":"~0.5.0"}},"0.5.2":{"name":"systemjs","version":"0.5.2","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.5.2","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/guybedford/systemjs","bugs":{"url":"https://github.com/guybedford/systemjs/issues"},"dist":{"shasum":"0caa1e480541437781af01bfa16d540f98de7b45","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.5.2.tgz","integrity":"sha512-mUhHgN/0QqMz3pMsruPI4ehDV5Qc7mw27RJWSJLCq7i59EkhhvplKTFnmFlUkiHuR7x0oMF3JZM2l06KnJo+Yw==","signatures":[{"sig":"MEQCIAzHGTJf1TzOyTAW4XjL9CEw2uag5k05pPMHDstF0ToRAiBXcvWSi1qukFZSB6mFtudFpmnC4b+nmcWkh2uXTZ0BAw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.js","_from":".","_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/guybedford/systemjs","type":"git"},"_npmVersion":"1.4.3","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"dependencies":{"es6-module-loader":"~0.5.0"}},"0.5.0":{"name":"systemjs","version":"0.5.0","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.5.0","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/guybedford/systemjs","bugs":{"url":"https://github.com/guybedford/systemjs/issues"},"dist":{"shasum":"24241db4849af2563d16f65816c281e06eec45b3","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.5.0.tgz","integrity":"sha512-lywIKgcJbY0Y5Za3YGdsmtfccyIcv4R3lXbM7XnsE3emVMZtJISulajsP0hv8p9lkAhHPTVfcqwDzBlmAGIFIw==","signatures":[{"sig":"MEYCIQD/TcJmITLZf7Y+jIlsdGLGfryOMI68mF7v/FTBKAfS8AIhAJlVyDYbeARZViWddV6BLP2fypT+A+pHk7Oo5GtPQjeu","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.js","_from":".","_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/guybedford/systemjs","type":"git"},"_npmVersion":"1.4.3","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"dependencies":{"es6-module-loader":"~0.5.0"}},"0.5.5":{"name":"systemjs","version":"0.5.5","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.5.5","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/guybedford/systemjs","bugs":{"url":"https://github.com/guybedford/systemjs/issues"},"dist":{"shasum":"765339ec55f5665caee5e095bb40ccb2cff529cb","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.5.5.tgz","integrity":"sha512-4b2vFGYJpJHrOv5ysqrWpf4pUwkTbYnQk+Q4IpfqlqvApyJoqJ1Is7RF3AZtRLfFI63MiGTtxthG8joSCcqCEQ==","signatures":[{"sig":"MEYCIQDVDEhcxahz8+XB4m3FUHSYDksDM0S4wdil/d/n9UgSjwIhAO0uGtrQzZajsquZS+EPsm29z/bm6O+cotS1d9GACP7n","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.js","_from":".","_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/guybedford/systemjs","type":"git"},"_npmVersion":"1.4.4","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"dependencies":{"es6-module-loader":"~0.5.4"}},"6.8.2":{"name":"systemjs","version":"6.8.2","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@6.8.2","maintainers":[{"name":"joeldenning","email":"joeldenning@gmail.com"},{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"6200ce215ee5eb8d6c2815b9470c52015cb3c867","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-6.8.2.tgz","fileCount":35,"integrity":"sha512-YknH4S+Xq7Rlwdnvyj4QKHWm5YQGPJnnkVXFQLC/Wl/O21nZ+NrV9IjwUQQ0Pl0Jh0Wgf91IeGzSHGELsv5kkA==","signatures":[{"sig":"MEQCIF0ls2Z+7EKePjuck8jZ0ZkmyF/z4misyj2q7+CrPssJAiB4p7sDGiJSqm5OFXWLS49PYkzg7X3kPU+Zt0ZFJ7ihUQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":458429,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf2VGdCRA9TVsSAnZWagAAyucP/iDqdBXDapjcHwuZtaIa\n6WMAmYX5Bmd9llOzwtmYL3zZE3dwAHgKMoPwNngv/JXP6aB18OQACReiV6ZD\n3WHSxddc/7iviNjiTIING/NL3IwUzoZb8CusjnNtoEhzxo+DI/tw4nG0rZG+\nZFTAHJu2vkc8oMNLSrm4iN7rR6q25slKFXf3bilo9I0QZNCMTGCU9dQzLXls\nmQd4Q896L5TO2V66ltdgcPeGvQrbpmQngWor9C5bmX5KURkEdglKcp4J7WQa\nBsgN63ljd0/lP9hbU36xOAsJHRl4H0rdKOfxTX9uyVdPXLMbMjDYzUzUwfrj\nEjc3IpA02S+2tLalgNJIyp/U4My8q0joCO5TBQ5A3q3opwxT1/S8x4sLZcKN\nuqH2tiPgttJSJrTNfOYC58MGHUg018wTvu2JSnGOwbZQGI+E8rRNqqy5XS45\nitbzdTBUl3HxCAwg+jSbahR+KLQ1N2vsg8CtA+rtCozMdzX4om0hkjLMwgxY\nzV4IHz5dxokzUHy3qSh1cW7VCgMepHlUx+UU1LidrwbHCu3CuVmWlD0jFR2w\nwrVUZhBIiy3bS6M36rzsLXvuF3v2I4YiWdNqamhJB2o371Y4Ybajd+R1PHSR\noKBIEtiUsSv9ysY6wFUPu9snutbgmJBaF6tg9lOnulVn1j5zarOEy5jnnt6d\nOLjP\r\n=Kefq\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/system-node.cjs","type":"script","exports":{".":{"node":"./dist/system-node.cjs","default":"./dist/system.min.js"},"./s.js":"./dist/s.min.js","./dist/":"./dist/"},"gitHead":"5f97d91aacad384195cc3ccc8d9fd7fb4ae80920","scripts":{"test":"concurrently -n w: 'npm:test:*'","build":"rimraf dist && mkdirp dist && concurrently -n w: 'npm:build:*'","footprint":"concurrently -n w: 'npm:footprint:*'","test:node":"cross-env NODE_OPTIONS=--experimental-modules mocha --timeout 5000 -b test/system-node.js","build:node":"node --experimental-modules build-node.mjs","prepublish":"npm run build","test:browser":"node test/server.cjs","build:browser":"rollup -c","footprint:sjs":"cat dist/s.min.js | gzip -9f | wc -c","test:internals":"cross-env NODE_OPTIONS=\"--unhandled-rejections=none\" mocha -b test/import-map.js test/system-core.js test/url-resolution.js","build-browser-dev":"rollup -c --environment dev","footprint:systemjs":"cat dist/system.min.js | gzip -9f | wc -c","test-browser-watch":"cross-env WATCH_MODE=true node test/server.cjs"},"_npmUser":{"name":"joeldenning","email":"joeldenning@gmail.com"},"collective":{"url":"https://opencollective.com/systemjs","type":"opencollective"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"6.14.8","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"14.15.0","_hasShrinkwrap":false,"devDependencies":{"open":"^7.0.3","mocha":"^7.1.1","mkdirp":"^1.0.4","rimraf":"^3.0.2","rollup":"^2.33.3","terser":"^5.5.0","bluebird":"^3.7.2","@zeit/ncc":"^0.22.1","cross-env":"^7.0.2","node-fetch":"^2.6.0","symbol-es6":"^0.1.2","concurrently":"^5.1.0","whatwg-fetch":"^3.0.0","source-map-support":"^0.5.16","@rollup/plugin-json":"^4.0.2","rollup-plugin-terser":"^5.3.0","@rollup/plugin-replace":"^2.3.1","@jsenv/file-size-impact":"^5.2.0","@rollup/plugin-node-resolve":"^7.1.1","construct-style-sheets-polyfill":"^2.3.5"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_6.8.2_1608077725337_0.872693511790001","host":"s3://npm-registry-packages"}},"6.8.3":{"name":"systemjs","version":"6.8.3","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@6.8.3","maintainers":[{"name":"joeldenning","email":"joeldenning@gmail.com"},{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"67e27f49242e9d81c2b652b204ae54e8bfcc75a3","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-6.8.3.tgz","fileCount":35,"integrity":"sha512-UcTY+FEA1B7e+bpJk1TI+a9Na6LG7wFEqW7ED16cLqLuQfI/9Ri0rsXm3tKlIgNoHyLHZycjdAOijzNbzelgwA==","signatures":[{"sig":"MEUCIGJQ97ueh8BMCnaZwwRf0Z5u/Bw5HB6VZn0n08VemQNQAiEAiTnp+FBA5K6wIjszy8dNoZpKWNdrZVaFhgPwDeaKZYs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":458791,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf7i+7CRA9TVsSAnZWagAARdsP/196k4LJNmzpE8zLveZu\n7oCYxWITBJI2VfpIhhULPixOIu+ThEvTLxp+WyEoPTHRnTpYk19l7RDThXfT\nTG6qNxLpfnU/ieVQDEEqRd7eTocD8xfyNBQi64ovYoASXWy4FgQlay1UamFz\noRWcJckyGZKlNY/y/APo14bNmo6qsI+azDyeBk5q+Pk8jmm6E3dyMt4Un9FK\ncUqzSCdg28STiQIgb7icMhTf1g8rO4eYWJmHbNNT8wb/7lgXzsoYeHkyEIyM\nMA6uDeS4wWGhoZvo0pfQQrV+qOp5x8G5HahQQQeVsl43YrMu3ADYhfNzQbnT\n60R+EmIIU8f/4A3Omj8cA/UZwOzaUrRDaRJNeFmyO+AEZPRjIc+xwBkCLp5B\n6T+GJ/g03NrrUorwEzGfv3t6nVMCNRQ6ZLyWtw/9HD08QC3fbnjoMHTt2qsd\nXhHGUwjXeWYXquhKGSR7xGUhj9eS8XUjKK82YCKI5rIEInLTSrsg4FAU48HL\n1TjJgAPuozgg+AFs9Oxp9hJhKCSQN9gYqddFK5rwBWHiSVg46yTrgMXlfaAW\nqQv/Wc05YKeMuStPBjJY598WIzYvxa7xD6s0WzF9Ez7Y263t7fK6BpJWeoEr\nCQ/KEIDUDlpO8O0aXZqCQBMj57ABDVuuTdzxEbhW5ixBLuJoVYsdiNv2aET7\ngV28\r\n=X4a1\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/system-node.cjs","type":"script","exports":{".":{"node":"./dist/system-node.cjs","default":"./dist/system.min.js"},"./s.js":"./dist/s.min.js","./dist/":"./dist/"},"gitHead":"895ebaf41c3d01025256934cd0fd78f3b2eb70de","scripts":{"test":"concurrently -n w: 'npm:test:*'","build":"rimraf dist && mkdirp dist && concurrently -n w: 'npm:build:*'","footprint":"concurrently -n w: 'npm:footprint:*'","test:node":"cross-env NODE_OPTIONS=--experimental-modules mocha --timeout 5000 -b test/system-node.js","build:node":"node --experimental-modules build-node.mjs","prepublish":"npm run build","test:browser":"node test/server.cjs","build:browser":"rollup -c","footprint:sjs":"cat dist/s.min.js | gzip -9f | wc -c","test:internals":"cross-env NODE_OPTIONS=\"--unhandled-rejections=none\" mocha -b test/import-map.js test/system-core.js test/url-resolution.js","build-browser-dev":"rollup -c --environment dev","footprint:systemjs":"cat dist/system.min.js | gzip -9f | wc -c","test-browser-watch":"cross-env WATCH_MODE=true node test/server.cjs"},"_npmUser":{"name":"joeldenning","email":"joeldenning@gmail.com"},"collective":{"url":"https://opencollective.com/systemjs","type":"opencollective"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"6.14.8","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"14.15.0","_hasShrinkwrap":false,"devDependencies":{"open":"^7.0.3","mocha":"^7.1.1","mkdirp":"^1.0.4","rimraf":"^3.0.2","rollup":"^2.33.3","terser":"^5.5.0","bluebird":"^3.7.2","@zeit/ncc":"^0.22.1","cross-env":"^7.0.2","node-fetch":"^2.6.0","symbol-es6":"^0.1.2","concurrently":"^5.1.0","whatwg-fetch":"^3.0.0","source-map-support":"^0.5.16","@rollup/plugin-json":"^4.0.2","rollup-plugin-terser":"^5.3.0","@rollup/plugin-replace":"^2.3.1","@jsenv/file-size-impact":"^5.2.0","@rollup/plugin-node-resolve":"^7.1.1","construct-style-sheets-polyfill":"^2.3.5"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_6.8.3_1609445307165_0.09038852176331802","host":"s3://npm-registry-packages"}},"6.8.0":{"name":"systemjs","version":"6.8.0","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@6.8.0","maintainers":[{"name":"joeldenning","email":"joeldenning@gmail.com"},{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"0c522ee38ecbe6d3fbe50591d7576f2cd265314a","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-6.8.0.tgz","fileCount":35,"integrity":"sha512-qX17+SWVfKN6cKf+74D44Mo8ywxYmnNmBOVWSq05lyAl/6rSYoAdpQWWpPt04/+n9gxSRMLhxBGtqXsf2XIh+Q==","signatures":[{"sig":"MEUCIQCj9TtZidAEZ1F+Bpq1A1s7nj7yEod4bi7OwnMWCcqtmAIgW3Cce9RnC/up2bm/6TrWRG9YQwY3Fp6Gce+eOHaZ56E=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":458934,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfvxuSCRA9TVsSAnZWagAA4KkQAJc0KsSW/U80ThNTa/J3\npQ8EOYFnS0XLGB0hg4keqo8O7szLItxZorzPonQh6Bi9rPx4JFW6TIZzXkR0\nephp4I0xADetk64cGoAH/kc/3yBLbsb+Oya7Yngspt1KgU1N7JgispiiOXsM\niCzyN8U2CyhJt1zyfREY+ALnSrW1fjOzDIzxHiL8r9KuSRPHE1Ro9H6z9qVd\nIp5BSKR0VjE/cofweJxPTzUF7C1/DzXqhQvxHXYFJkQkt2Vq95yi1c1xvq1u\nnEYJ3hsfyaBZ83e9lpi57VpUT2DHwFAwU2ORdANCMtW4eqXJrvXloL5u90OE\nC12IcuCPgB0rA6ytSBTY9Mr+iu+T7JFzYwuzh064vqkZQJT+YpT0jTKFPVF/\nOA7oFn5toaPqEVlTTJVXUE/TRIq1Tmad0cIUd4gJE+2oQG3osCsdMgALHsVN\nSHb+QS13QH4JgLBcO7v8OYo10tPMWl9EQQ68azsW1Z/wYtw/d3UedsYX/fJH\n4x/9D1iaFtXZCzgyT0xaPgu0EUtNNcDK6OCuJ9MHjUYJyJMDX7+uHZ8i/BuT\nM5lghsFWSOaeVOiLDUktmudcbtPw7DGCnJnOeB8HCPa7wZP+riEbZZV5GvaT\nmUkfYGzGkDPdEOzCgh87ioB7PYkynSy3PDAR1Rgogv8BmFvJ/pYhL3kHzDkE\nXWiS\r\n=u9Ty\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/system-node.cjs","type":"script","exports":{".":{"node":"./dist/system-node.cjs","default":"./dist/system.min.js"},"./s.js":"./dist/s.min.js","./dist/":"./dist/"},"gitHead":"d762870f49ee36cb2125d6f9fbae7e1ff6a25c81","scripts":{"test":"concurrently -n w: 'npm:test:*'","build":"rimraf dist && mkdirp dist && concurrently -n w: 'npm:build:*'","footprint":"concurrently -n w: 'npm:footprint:*'","test:node":"cross-env NODE_OPTIONS=--experimental-modules mocha --timeout 5000 -b test/system-node.js","build:node":"node --experimental-modules build-node.mjs","prepublish":"npm run build","test:browser":"node test/server.cjs","build:browser":"rollup -c","footprint:sjs":"cat dist/s.min.js | gzip -9f | wc -c","test:internals":"cross-env NODE_OPTIONS=--experimental-modules mocha -b test/import-map.js test/system-core.js test/url-resolution.js","build-browser-dev":"rollup -c --environment dev","footprint:systemjs":"cat dist/system.min.js | gzip -9f | wc -c","test-browser-watch":"cross-env WATCH_MODE=true node test/server.cjs"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"collective":{"url":"https://opencollective.com/systemjs","type":"opencollective"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"7.0.8","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"15.2.1","_hasShrinkwrap":false,"devDependencies":{"open":"^7.0.3","mocha":"^7.1.1","mkdirp":"^1.0.4","rimraf":"^3.0.2","rollup":"^2.33.3","terser":"^5.5.0","bluebird":"^3.7.2","@zeit/ncc":"^0.22.1","cross-env":"^7.0.2","node-fetch":"^2.6.0","symbol-es6":"^0.1.2","concurrently":"^5.1.0","whatwg-fetch":"^3.0.0","source-map-support":"^0.5.16","@rollup/plugin-json":"^4.0.2","rollup-plugin-terser":"^5.3.0","@rollup/plugin-replace":"^2.3.1","@jsenv/file-size-impact":"^5.2.0","@rollup/plugin-node-resolve":"^7.1.1","construct-style-sheets-polyfill":"^2.3.5"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_6.8.0_1606359953635_0.15587429520101703","host":"s3://npm-registry-packages"}},"6.8.1":{"name":"systemjs","version":"6.8.1","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@6.8.1","maintainers":[{"name":"joeldenning","email":"joeldenning@gmail.com"},{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"556f9254b3867568d6b3e43c4732aca8c29bc981","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-6.8.1.tgz","fileCount":35,"integrity":"sha512-HjxELHbx2LpfHfrsrYFMvkK1Hfh3IpUxPUNUzClxThW0POUlv53qb8N0FZ48+hlfIC4OANFwzxwRp4fTXSfYKw==","signatures":[{"sig":"MEQCICdj4v/W5Na9gcybdtPnExPl+ZrozWltES5y+UkmJiPjAiApev+U3wSAkDj0S3qdFwgSDwzAuthSl+ntYq0dITBdeg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":459400,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfxTGtCRA9TVsSAnZWagAAA+MP/ibHbqhKAawGaRYOS5O0\nzi+q75a1VGy/3EAmEfAASbHrl0PeVwk5ep/Ecg4702A+GjR3Ek7/rdSZwkj9\npYp00CFR6iwWAIbw6AzGBl4ZA4vNmSNctCY7FIo1ZHy8xWOrY7yDYyla3vtC\nCcCRhUk8NSISCLBIov/IbGg6MdwMAMbgABx0324BmbVuP9EmEYm2v293nNfV\nAF+pRIDk2bpcc+LQjNmCBz9znjr6aKkIoKei905kJXAdeuvqmcBXmBi+jwJu\noBzFpLTdGKah/Fh0EEGiGGoWl5l4h4sx/QDCPCvgoZ2m7YHepM9r9nkJlLmc\nKqwdGPSyuePnRSoRnIg5OP9UK+KqElbjUPnRA5Zkycn9KlHGaKGyXWOZd4yU\nKCaPJrDAMWjRtfU0CBmy/MFzuJvpqV0fMaSdG0ndx5JAIZyLMKk5dbTtdGbz\nV1dqNSTJRxOwp/ZM8w1Mfb1n23zw+BPlql25sACPN7VcPWEPRKkFXmLhJ1bT\n/ydYk08tXqUiqo4mcMVvYHAePhwGYcNZg6SSa+yFjUwc4whD4vOhJIvzFjl7\naNKBpKvGhb11tl1DCExYoupLm3PUvVpy51iGj2mAI/3Ug8lsk2+ee0QGQMF4\n5JV2OxaTxhgwbvqE1Cwb5v3iliIWIJfZBB9mARHWGracSGRw5XFhcDzo29mX\nj/mr\r\n=5paY\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/system-node.cjs","type":"script","exports":{".":{"node":"./dist/system-node.cjs","default":"./dist/system.min.js"},"./s.js":"./dist/s.min.js","./dist/":"./dist/"},"gitHead":"4ddf6dcde1f8f0a9d7f109f73cb1a8407d22e64f","scripts":{"test":"concurrently -n w: 'npm:test:*'","build":"rimraf dist && mkdirp dist && concurrently -n w: 'npm:build:*'","footprint":"concurrently -n w: 'npm:footprint:*'","test:node":"cross-env NODE_OPTIONS=--experimental-modules mocha --timeout 5000 -b test/system-node.js","build:node":"node --experimental-modules build-node.mjs","prepublish":"npm run build","test:browser":"node test/server.cjs","build:browser":"rollup -c","footprint:sjs":"cat dist/s.min.js | gzip -9f | wc -c","test:internals":"cross-env NODE_OPTIONS=--experimental-modules mocha -b test/import-map.js test/system-core.js test/url-resolution.js","build-browser-dev":"rollup -c --environment dev","footprint:systemjs":"cat dist/system.min.js | gzip -9f | wc -c","test-browser-watch":"cross-env WATCH_MODE=true node test/server.cjs"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"collective":{"url":"https://opencollective.com/systemjs","type":"opencollective"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"7.0.8","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"15.2.1","_hasShrinkwrap":false,"devDependencies":{"open":"^7.0.3","mocha":"^7.1.1","mkdirp":"^1.0.4","rimraf":"^3.0.2","rollup":"^2.33.3","terser":"^5.5.0","bluebird":"^3.7.2","@zeit/ncc":"^0.22.1","cross-env":"^7.0.2","node-fetch":"^2.6.0","symbol-es6":"^0.1.2","concurrently":"^5.1.0","whatwg-fetch":"^3.0.0","source-map-support":"^0.5.16","@rollup/plugin-json":"^4.0.2","rollup-plugin-terser":"^5.3.0","@rollup/plugin-replace":"^2.3.1","@jsenv/file-size-impact":"^5.2.0","@rollup/plugin-node-resolve":"^7.1.1","construct-style-sheets-polyfill":"^2.3.5"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_6.8.1_1606758829067_0.97813518858508","host":"s3://npm-registry-packages"}},"3.0.0":{"name":"systemjs","version":"3.0.0","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@3.0.0","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"7e15ec942db9abacd484b53f30de11b018333560","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-3.0.0.tgz","fileCount":25,"integrity":"sha512-EkC2dGhRkGJy0Ug5eZWIveIFTyPNXjW1J7PIBpPtzHuw6nDRJEFQr/rAOdfclD6PN/2YIAeexpP4LrgLZhmNrw==","signatures":[{"sig":"MEUCIHiib6rAjy8QJ2vbTmr63J7u1Db0PmUTkXPSSFOM/G8qAiEA1rA8N7mgbk7vZt2Z7hTzC8B4T6UNaI9LwcVdMwBkdIU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":96529,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcOgX5CRA9TVsSAnZWagAAG4UQAJIzOhJZfj2hxIzDf9Zt\nIN6oiU/h1K5V+5DQoO7H45klE0fiuThCEvS5LQevEiksDfskXhafwcBRDMpr\nQvGMbv/SlaAlMZG7JsIUKeEObmsicI/GFZVB9nS6XaFFb3gCl93bTKgfjwTd\nxO9joJ3QiyQn6yS6pJ9rCFcsRTSPgrzT/sCwthhJIXrf7YGREJkakkjbU4Yz\neJXCvBYqTIZv7DZqnL71h4p51eNF1HOADMDKYYcU61GHOHZB1d9gk+ReH19B\n1LOyF9RkcYq7IYcaK7QeSU0SICtuAyU9eeMPf/Fkzrly8MK+ou2lIU81NyA/\nvle2RXPFtGQVkFHnbUsF2V7gKJb7bfIXz3un9Aq6IPeEHOmcPrYMALG2gDWy\nB8olF3DiVb5YqL0o4ze7Bvqip1Mjs2LCbpTwvg3pcF3+6antf+651OU+MlBv\nY1qQu+uAQBhlHRG9aUMokt5ZwaF25DhbCnoSvL6ql2X9xhay3jCJ5oZRT0io\nf3UbSjbAYwXozSzGDH6eVVyK97j3PZ2KLUMS2q2I15Nel/eC5ojWHEX7d8uM\nWQNbV2VJx4BxEH2RdX9nhlhPwuc73aN1P1P6WSTS0N3jk3uquwsZmvAm3DWi\nQL7TGehv58xX8YUag/AvXc03rk+lW3ftcJ5v5994VLE3Y+pK+lSsSNNpm86e\nwRMG\r\n=CxRp\r\n-----END PGP SIGNATURE-----\r\n"},"mode":"esm","gitHead":"60cd9e2c3d2d7c3765c9afa10b5bd205ed7a71d9","scripts":{"min":"npm run min:systemjs && npm run min:sjs","test":"mocha -b -r esm","build":"npm run build:systemjs && npm run build:sjs && npm run min && npm run build:extras","min:sjs":"cd dist && terser s.js -c passes=2 -m --source-map -o s.min.js","test:sjs":"mocha test/test-production.js -u tdd --reporter dot","build:sjs":"rollup -c --environment sjs","footprint":"npm run footprint:systemjs && npm run footprint:sjs","prepublish":"npm run build","build:extras":"bash minify-extras.sh","min:systemjs":"cd dist && terser system.js -c passes=2 -m --source-map --comments \"/SystemJS \\d/\" -o system.min.js","test:rebuild":"babel test/fixtures/es-modules --plugins=@babel/plugin-syntax-import-meta,@babel/plugin-transform-modules-systemjs --out-dir test/fixtures/register-modules","footprint:sjs":"terser dist/s.js -c passes=2 -m | gzip -9f | wc -c","test:systemjs":"mocha test/test-traceur.js -u tdd --reporter dot","build:systemjs":"rollup -c","footprint:systemjs":"terser dist/system.js -c passes=2 -m | gzip -9f | wc -c"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"6.5.0","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"10.15.0","_hasShrinkwrap":false,"devDependencies":{"esm":"^3.0.77","mocha":"^5.2.0","rollup":"^0.64.1","terser":"^3.8.1","bluebird":"^3.5.1","@babel/cli":"^7.0.0-rc.1","@babel/core":"^7.0.0-rc.1","whatwg-fetch":"^2.0.4","rollup-plugin-replace":"^2.0.0","@babel/plugin-syntax-import-meta":"^7.0.0-rc.1","@babel/plugin-transform-modules-systemjs":"^7.0.0-rc.1"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_3.0.0_1547306489241_0.14936527605179561","host":"s3://npm-registry-packages"}},"6.15.0":{"name":"systemjs","version":"6.15.0","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@6.15.0","maintainers":[{"name":"joeldenning","email":"joeldenning@gmail.com"},{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"2ae40af31bd5d438acf5835a5de89324787b4d50","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-6.15.0.tgz","fileCount":34,"integrity":"sha512-kBNMlR/C+4WUWVvDDqhymNjlsNzzYcSme5Q2mOvPC2nihAGGlaEyJ4YMoPj8tY0GMr+Zlxv9XpdfzHRqYc6ocA==","signatures":[{"sig":"MEUCIQCDRgmwy2xXnkFh9KnHMxV4VrafH7rA7+U3VgBUQMAIBwIgAPMcmU107JXRA2W98244ibY4+p+WlBM9CI6CwEBnkJQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":786779},"main":"dist/system-node.cjs","type":"script","exports":{".":{"node":"./dist/system-node.cjs","default":"./dist/system.min.js"},"./s.js":"./dist/s.min.js","./dist/*":"./dist/*","./package.json":"./package.json"},"gitHead":"f6648c4f0ba15b744fb47685e2cca15c297410fb","scripts":{"test":"chomp test","build":"chomp build"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"collective":{"url":"https://opencollective.com/systemjs","type":"opencollective"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"9.7.1","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"21.2.0","_hasShrinkwrap":false,"devDependencies":{"open":"^8.4.0","kleur":"^4.1.5","mocha":"^7.1.1","mkdirp":"^1.0.4","rimraf":"^3.0.2","rollup":"^2.79.1","terser":"^5.16.5","bluebird":"^3.7.2","node-fetch":"^2.6.0","symbol-es6":"^0.1.2","@vercel/ncc":"^0.34.0","whatwg-fetch":"^3.0.0","source-map-support":"^0.5.16","@rollup/plugin-json":"^4.0.2","rollup-plugin-terser":"^5.3.0","@rollup/plugin-replace":"^2.4.2","@jsenv/file-size-impact":"^5.2.0","@rollup/plugin-node-resolve":"^7.1.1","construct-style-sheets-polyfill":"^2.3.5"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_6.15.0_1714255155330_0.7645335284452357","host":"s3://npm-registry-packages"}},"6.15.1":{"name":"systemjs","version":"6.15.1","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@6.15.1","maintainers":[{"name":"joeldenning","email":"joeldenning@gmail.com"},{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"74175b6810e27a79e1177d21db5f0e3057118cea","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-6.15.1.tgz","fileCount":34,"integrity":"sha512-Nk8c4lXvMB98MtbmjX7JwJRgJOL8fluecYCfCeYBznwmpOs8Bf15hLM6z4z71EDAhQVrQrI+wt1aLWSXZq+hXA==","signatures":[{"sig":"MEYCIQCaFD3o4KrWiA8k4Kq5GsHJJH88RshyuzErB+uSry0gQwIhAP04RWUz3cBhAxycxBRH7j2Pjyukqu9ZhDxu0+KagY1P","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":787044},"main":"dist/system-node.cjs","type":"script","exports":{".":{"node":"./dist/system-node.cjs","default":"./dist/system.min.js"},"./s.js":"./dist/s.min.js","./dist/*":"./dist/*","./package.json":"./package.json"},"gitHead":"240a07038fb208306daecd9ab46dac5bf41d8ffb","scripts":{"test":"chomp test","build":"chomp build"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"collective":{"url":"https://opencollective.com/systemjs","type":"opencollective"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"9.7.1","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"21.2.0","_hasShrinkwrap":false,"devDependencies":{"open":"^8.4.0","kleur":"^4.1.5","mocha":"^7.1.1","mkdirp":"^1.0.4","rimraf":"^3.0.2","rollup":"^2.79.1","terser":"^5.16.5","bluebird":"^3.7.2","node-fetch":"^2.6.0","symbol-es6":"^0.1.2","@vercel/ncc":"^0.34.0","whatwg-fetch":"^3.0.0","source-map-support":"^0.5.16","@rollup/plugin-json":"^4.0.2","rollup-plugin-terser":"^5.3.0","@rollup/plugin-replace":"^2.4.2","@jsenv/file-size-impact":"^5.2.0","@rollup/plugin-node-resolve":"^7.1.1","construct-style-sheets-polyfill":"^2.3.5"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_6.15.1_1714255275866_0.7862753783560505","host":"s3://npm-registry-packages"}},"3.0.1":{"name":"systemjs","version":"3.0.1","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@3.0.1","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"56a8856a3387dc56e3fa51c9f1d2734f05e76cf6","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-3.0.1.tgz","fileCount":25,"integrity":"sha512-nwFFWa59Gixur08OaUFpPVZs34Jt0T1fz9jfV4A7QS2MdEpxjZp++jF9HidIfIiweF5fhReWFz0Rop7AiLrYYA==","signatures":[{"sig":"MEQCIAaVbWZKaF+2STaKWKfHEUZThGA30vWn5OfPwRTgeLcDAiA89GqiY1LeqG4sBrVOWYSEdrjk4ncgOVbVM/Y1enTaCw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":98643,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcfBL4CRA9TVsSAnZWagAACVsP/RIpK3rQAg6wQevJ6uyF\nT2NKECJvdonhyktYS7+gfJSQOlZYZ81EpBKC9OAryPHXTQPytFL3+fuM+ek/\noingSvkmCY4DK+IMBXCDBF/Fxaat5yYW9hvsmLTivCFgsMjjYF0Nn7bF7EG/\nJj/tTSAe4ciK80iezycWtEkaYWun8/lMqdC8WXnFql8MW2jOdH8HTZxIR8sd\n9I1CTljwnae5RGNGHpnGmYDsdXygofArDO9A9yJFhP3Wiu3QVsGEps+LILIb\nhB1QRRkIBrmCifIZZK15qV0NWD3e7MW/s/gBNQeRtus5nyOAx/B4pNpGlziI\nDME0crEI65aKWplv+6QyMy4xn7MOJSe25c1N6qg8MfjEVvNQZOo5SCuqyJij\n9qq5o/Yb7r9paqa1MTxtD6AqP8hwx9/BWPHCACitr0r72fSBulmvV63ZhODb\nobeKm0iuBq7Bx/3Ckofp2KHGe02tef3qHCTcwz2uLrKIdtLeevdWuM8mfnid\n+0O6vUUy5JLEmvdyF4X8z6xPgykR3Uvpl7ImpnC1ruhav77C/nq+1vJCzPrZ\n7TeAtN4owU+0FcWlskNgQtvzyVFVRjanT4dufp3hsHteGEZZsqqBvdatx/ss\ndG/94HHCdDm3y4LxEb21rTcv2SE0JdlQ8ZoVhaVsTnfCJU+a2djHMFUZnxzK\nAFbu\r\n=fjfF\r\n-----END PGP SIGNATURE-----\r\n"},"mode":"esm","gitHead":"836db7bca7416287d1a815f60b30dbf2d9d48d97","scripts":{"min":"npm run min:systemjs && npm run min:sjs","test":"mocha -b -r esm","build":"npm run build:systemjs && npm run build:sjs && npm run min && npm run build:extras","min:sjs":"cd dist && terser s.js -c passes=2 -m --source-map -o s.min.js","test:sjs":"mocha test/test-production.js -u tdd --reporter dot","build:sjs":"rollup -c --environment sjs","footprint":"npm run footprint:systemjs && npm run footprint:sjs","prepublish":"npm run build","build:extras":"bash minify-extras.sh","min:systemjs":"cd dist && terser system.js -c passes=2 -m --source-map --comments \"/SystemJS \\d/\" -o system.min.js","test:rebuild":"babel test/fixtures/es-modules --plugins=@babel/plugin-syntax-import-meta,@babel/plugin-transform-modules-systemjs --out-dir test/fixtures/register-modules","footprint:sjs":"terser dist/s.js -c passes=2 -m | gzip -9f | wc -c","test:systemjs":"mocha test/test-traceur.js -u tdd --reporter dot","build:systemjs":"rollup -c","footprint:systemjs":"terser dist/system.js -c passes=2 -m | gzip -9f | wc -c"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"6.4.1","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"10.15.1","_hasShrinkwrap":false,"devDependencies":{"esm":"^3.0.77","mocha":"^5.2.0","rollup":"^0.64.1","terser":"^3.8.1","bluebird":"^3.5.1","@babel/cli":"^7.0.0-rc.1","@babel/core":"^7.0.0-rc.1","whatwg-fetch":"^2.0.4","rollup-plugin-replace":"^2.0.0","@babel/plugin-syntax-import-meta":"^7.0.0-rc.1","@babel/plugin-transform-modules-systemjs":"^7.0.0-rc.1"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_3.0.1_1551635191541_0.9757491788706811","host":"s3://npm-registry-packages"}},"3.0.2":{"name":"systemjs","version":"3.0.2","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@3.0.2","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"63c1bf7612ecf669f8779803d390d5fada09311d","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-3.0.2.tgz","fileCount":25,"integrity":"sha512-FLtU3infVIudyWsAcAqAKQz9SNWTWzRcDhIOvDqo8xK9kMd4QinFgTvT1SJqBKfPsscx2FGo4wcYra5aM/ehqg==","signatures":[{"sig":"MEYCIQDafEpXx2wfJfhE/Lz4298YDyQ+rWhB7W24+hSnDFX/4gIhAKbBHMmKE3Q1VUv7qvXTOtI2htvK1cO5N9aonbcqvuvZ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":100690,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcjmmwCRA9TVsSAnZWagAA/jkP/1Ptb52LZwpfAOjkwXSU\nhhw/G8Q7w5tzvvvdDeMNBD43FC1KwELQHXNIp+ESdnsZ3pgpkSdwtREYZ76U\nXM+FitC+42AGfKV1hrcbZQ1/LlCpl4yZJoHfG1gC1i1KtcIWkTtLg41y/ki+\ntBjAXEK71jvgs7Ejyb7faWN9DX8KgSBl3F2ObKYB+yglRdIWnxy1+3LS36DR\n5p+SqCTUh7P/hNsh44GK29Ja3pKlyqgCiC7e0u7hOiJYqE+l1KzEps4CE55u\nPnXAXtMY5tlJBuRV+UfuIJ1Qn+q1+WTC5UJ8ZEfqs/Qf/orHVHLA7E9FBohf\nE7yys6BBL2gRxv/T82cEHVF1g2yztppXOMfxzqaajssbnnbvlahDR9CEGOmw\niV0Ehi+ZxWfs9wGlMHhWo0hPGPOM7Obbwd5kgXwX9xBZu2v6DmNCigNPx5UH\nO+yRNo56yfv+kB3aTmhI1DEdRwv/+P3LTpixDPR6M+rE5HZPaVJWrsX0H7K+\nZKldt9dneInbKF+B8LgXa3DI0BgNPjpVz/UcFiZzcV8az7ayPM9BzQ3tA3B3\nWLgE+auCRsLNrYyX/s3YOGYRgsoq0Z1Z4fUg1d9y4wGdOC7s1bkcw/bkuZxf\nivvrKGj8PFPyOmvPqOGEDatJry0NECB0mm1wdL8wh0euHHpO2AKWEM92muxm\nW6q3\r\n=Q5qT\r\n-----END PGP SIGNATURE-----\r\n"},"mode":"esm","gitHead":"1da68208589aa6c2ee5d68fd9fdfaece63e46810","scripts":{"min":"npm run min:systemjs && npm run min:sjs","test":"mocha -b -r esm","build":"npm run build:systemjs && npm run build:sjs && npm run min && npm run build:extras","min:sjs":"cd dist && terser s.js -c passes=2 -m --source-map -o s.min.js","test:sjs":"mocha test/test-production.js -u tdd --reporter dot","build:sjs":"rollup -c --environment sjs","footprint":"npm run footprint:systemjs && npm run footprint:sjs","prepublish":"npm run build","build:extras":"bash minify-extras.sh","min:systemjs":"cd dist && terser system.js -c passes=2 -m --source-map --comments \"/SystemJS \\d/\" -o system.min.js","test:rebuild":"babel test/fixtures/es-modules --plugins=@babel/plugin-syntax-import-meta,@babel/plugin-transform-modules-systemjs --out-dir test/fixtures/register-modules","footprint:sjs":"terser dist/s.js -c passes=2 -m | gzip -9f | wc -c","test:systemjs":"mocha test/test-traceur.js -u tdd --reporter dot","build:systemjs":"rollup -c","footprint:systemjs":"terser dist/system.js -c passes=2 -m | gzip -9f | wc -c"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"6.4.1","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"10.15.3","_hasShrinkwrap":false,"devDependencies":{"esm":"^3.0.77","mocha":"^5.2.0","rollup":"^0.64.1","terser":"^3.8.1","bluebird":"^3.5.1","@babel/cli":"^7.0.0-rc.1","@babel/core":"^7.0.0-rc.1","whatwg-fetch":"^2.0.4","rollup-plugin-replace":"^2.0.0","@babel/plugin-syntax-import-meta":"^7.0.0-rc.1","@babel/plugin-transform-modules-systemjs":"^7.0.0-rc.1"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_3.0.2_1552837039943_0.6522433441656372","host":"s3://npm-registry-packages"}},"0.20.0-alpha.1":{"name":"systemjs","version":"0.20.0-alpha.1","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.20.0-alpha.1","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"1d0f1ff32da01ffbf0bb9a26fd5517f50cd75f3c","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.20.0-alpha.1.tgz","integrity":"sha512-2R9nkj0U6xUAS2lIeNrlOy04FWY9uOilNnRmgI4tTvmfWXXCoq3sXxC3Xu8tX2sc7iQU/YzTNziP9+w1ozlIZw==","signatures":[{"sig":"MEUCIHvDT0ZdlC0Lg2blvZcgNzTVIZZXig+nUKvOtZikmq2FAiEA5c0xEbQBQY/8D4dr0JcmSqqZA8x2+OYp1hHhDrkeLMQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.src.js","_from":".","files":["dist"],"_shasum":"1d0f1ff32da01ffbf0bb9a26fd5517f50cd75f3c","gitHead":"7b235b52980c6b9c313e60afa8337c101141b9c8","scripts":{"min":"uglifyjs dist/system.src.js -cm --in-source-map dist/system.src.js.map --source-map dist/system.js.map --screw-ie8 --comments '/SystemJS v/' > dist/system.js","test":"npm run test:babel && npm run test:traceur && npm run test:typescript","build":"rollup -c","footprint":"uglifyjs dist/system.src.js -cm --screw-ie8 | gzip -9f | wc -c","test:babel":"mocha test/test-babel.js -u tdd --reporter dot","test:traceur":"mocha test/test-traceur.js -u tdd --reporter dot","test:typescript":"mocha test/test-typescript.js -u tdd --reporter dot"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"3.10.3","description":"Universal dynamic module loader","directories":{},"_nodeVersion":"6.6.0","devDependencies":{"mocha":"^3.1.2","rollup":"^0.34.13","traceur":"0.0.111","bluebird":"^3.4.6","typescript":"^2.0.6","es-module-loader":"^1.3.5","plugin-typescript":"^5.2.7","rollup-plugin-replace":"^1.1.1","systemjs-plugin-babel":"0.0.17","systemjs-plugin-traceur":"0.0.3","rollup-plugin-node-resolve":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/systemjs-0.20.0-alpha.1.tgz_1479204868213_0.6814316208474338","host":"packages-18-east.internal.npmjs.com"}},"0.15.0":{"name":"systemjs","version":"0.15.0","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.15.0","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"4baf311257fc29789f9ad58323c7218ca0e08702","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.15.0.tgz","integrity":"sha512-29GSKuxXWuJG4z9wXneWt1eIoQlAPc+fiNAwmGC7YWdf6cExDKLnMWAqDTXGFNNVLtDbJpBC6qLLmOOb2ydF3w==","signatures":[{"sig":"MEQCIAg9sFc2vCPZZPUGIwOqHomKz/0e6YYV1+6KD7o+Pmq0AiBQK9tpJlZNMmeEE2KfaVvQlTE2zpoh1jfVNY7Q5V3geQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.src.js","_from":".","_shasum":"4baf311257fc29789f9ad58323c7218ca0e08702","gitHead":"db3156342503cf3b731f3419a0ccd24390a46a1e","scripts":{"test":"npm run test:babel && npm run test:traceur","test:babel":"qunit -c s:./dist/system.js -t ./test/test-babel.js","test:traceur":"qunit -c s:./dist/system.js -t ./test/test.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs","type":"git"},"_npmVersion":"2.5.1","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"_nodeVersion":"0.12.0","dependencies":{"es6-module-loader":"~0.15.0"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.86","uglify-js":"~2.4.13","babel-core":"^4.6.6"}},"6.1.10":{"name":"systemjs","version":"6.1.10","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@6.1.10","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"5ce3278ea60a85fd97298d42b90e5b94c9736e62","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-6.1.10.tgz","fileCount":31,"integrity":"sha512-yd5w1lbZoghSs/SD3TwY8Gmd7yxihYvQPregRc2hDd6FmkL32kll7gwLCE7a/fz5W66HIgzRdg1YbV6L2hXkyA==","signatures":[{"sig":"MEYCIQDCq3SpUJgtRZJuTBmoDdDX+3O8dtvZ/SoV9c2Arh+xvgIhAJH9LcsCZvEc6M+XYSiJYQtSjb2zgQEgl11f5G9nFdG+","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":136548,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeMLBnCRA9TVsSAnZWagAAfb0P/18ErKd7Qu3oauwVKx22\nNiNfKjWAjBceB/1KHohNrphig6K05lR9w6egTJTURO8Yp/UBqgD2xU3D0odb\nTtPTG2i3WOczjWudQLuhmIk25Glwx0FrZSCGDF7BQLBoQF0jpDNtMUkCbDjM\nraVmVRkVhI+YYUL5bVRIUseJFHEVSrwK5MCOW6bz7gvNqHNniIxsiwyZYL6p\nOmd9gAahbq5iuHHlBsBlcAV5QGBsAt6N8TMNcXqV9BK9QD2uIgyV6xEYTkdF\nPdWbtiynuFqDVZ2zW4L/dEj5yJoVo7Qu8QsvhXK01APVD+qJUodFVxDOBlLw\nJk/A26/9PMAEO5Yblu3KRbEvae+mwNrkiJXvrKZ3kG9jyzv3MnJxOQ5EXwsb\nUKFVald+ZE1TD5Q2XnLihN3aWcX78hr7JmxwbkY7+hm8tvyiEgSvDYZ5AOPV\nQMl0UaAKLwSQzwXdECxky2rPWZOpS9Dqad4vCuLlqituQenT4dPy5t8yxYse\n6dM7pafkcKs8t65lV8nJt6BhnP3VicW5rUO6nGvBApDvh7hTAjZ7+KjhmyXt\n18ky0MCfztcutkIULJDmdmhvEcD6zlu9xryIgIFYIxFkKjzkJGcU4DneXxg/\nvpO89pYXHpam3NP8BPB9taU5cdvceGXT6JnfFJYEupQkjY1IPs8mJmVhi3A+\nR7ub\r\n=gBNf\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","gitHead":"ac6c35e3d4b363efa4fc45709e8052a92fa181a1","scripts":{"min":"npm run min:systemjs && npm run min:sjs","test":"mocha -b -r esm test/import-map.js test/system-core.js test/url-resolution.js && npm run test-browser","build":"npm run build:systemjs && npm run build:sjs && npm run min && npm run build:extras","min:sjs":"cd dist && terser s.js -c passes=2 -m --source-map -o s.min.js","build:sjs":"rollup -c --environment sjs","footprint":"npm run footprint:systemjs && npm run footprint:sjs","prepublish":"npm run build","build:extras":"bash minify-extras.sh","min:systemjs":"cd dist && terser system.js -c passes=2 -m --source-map --comments \"/SystemJS \\d/\" -o system.min.js","test-browser":"node test/server.js","footprint:sjs":"terser dist/s.js -c passes=2 -m | gzip -9f | wc -c","build:systemjs":"rollup -c","footprint:systemjs":"terser dist/system.js -c passes=2 -m | gzip -9f | wc -c"},"_npmUser":{"name":"joeldenning","email":"joeldenning@gmail.com"},"collective":{"url":"https://opencollective.com/systemjs","type":"opencollective"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"6.13.6","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"13.7.0","_hasShrinkwrap":false,"devDependencies":{"esm":"^3.2.25","opn":"^6.0.0","mocha":"^5.2.0","rollup":"^0.64.1","terser":"^3.8.1","bluebird":"^3.5.1","whatwg-fetch":"^2.0.4","rollup-plugin-replace":"^2.0.0","construct-style-sheets-polyfill":"^2.1.0"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_6.1.10_1580249190778_0.377634340747397","host":"s3://npm-registry-packages"}},"0.6.8":{"name":"systemjs","version":"0.6.8","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.6.8","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"3fa44c961a02f68abf2cd85dbbe9fa92fa3fd681","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.6.8.tgz","integrity":"sha512-QWnnWpS4iiMhzpTYS2bfoyyglGa6oRNNqLXpQpUQNPWQlZZF4qI4TafaMFqxDL5kbwvMVv9OEJMBl0KJCPo8kg==","signatures":[{"sig":"MEQCIEUMUvr3+tgCVKQRCwAFHhP/d6twZR7h1O9d4ZwwjAVrAiAOfhfLYHURWZj7qDxH1hQK3M2QClgonVTb0m/fXcO4iQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.js","_from":".","_shasum":"3fa44c961a02f68abf2cd85dbbe9fa92fa3fd681","gitHead":"2d456d32ea61d362d925002be42ab5d3769785f9","scripts":{"test":"qunit -c s:./dist/system.js -t ./test/test.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs","type":"git"},"_npmVersion":"1.4.13","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"dependencies":{"es6-module-loader":"~0.7.2"},"devDependencies":{"qunit":"^0.6.2","uglify-js":"~2.4.13"}},"0.6.6":{"name":"systemjs","version":"0.6.6","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.6.6","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/guybedford/systemjs","bugs":{"url":"https://github.com/guybedford/systemjs/issues"},"dist":{"shasum":"4537e5f4da23bf2783144521faf901332368428e","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.6.6.tgz","integrity":"sha512-QBuAawUdENC0f4p/mr1lgz3mABTDBELG0Jbuu1frMBRlLzm3alJed9vGjVAJBe46Ql3gOW9BQE8XMc4t56AiPw==","signatures":[{"sig":"MEUCIAhnkAMC7c+YoXXdayWuDQ8tdPGhrLsHuEFoM2SyoRlZAiEAv87lKID3T28lM2qgV0AC4sME95woG2ZxKAJyU/c699k=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.js","_from":".","_shasum":"4537e5f4da23bf2783144521faf901332368428e","scripts":{"test":"qunit -c s:./dist/system.js -t ./test/test.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/guybedford/systemjs","type":"git"},"_npmVersion":"1.4.9","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"dependencies":{"es6-module-loader":"~0.6.1"},"devDependencies":{"qunit":"^0.6.2","uglify-js":"~2.4.13"}},"0.6.7":{"name":"systemjs","version":"0.6.7","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.6.7","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"aa8987a26525200672dca729d0dec6328cd36103","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.6.7.tgz","integrity":"sha512-isnLwkxN9VNu8kyJ6aWlKEVSdY4nq29RWIWYCNQulNMNaxI/PPbQ3ZEFOfC7OL+0M9zRdAs3XQaWIfEIfIIy8A==","signatures":[{"sig":"MEQCIBcDheEIg1FVwF/eNBqXWO2BOV47e4WmvrPY1LRs2UZlAiAVe9AfAUY/vETYoDaedvGjtMruSmjia7f+TV00g8WX8g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.js","_from":".","_shasum":"aa8987a26525200672dca729d0dec6328cd36103","gitHead":"c14cea43dd528a6c2e2dd3d768193b29d302cedd","scripts":{"test":"qunit -c s:./dist/system.js -t ./test/test.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs","type":"git"},"_npmVersion":"1.4.13","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"dependencies":{"es6-module-loader":"~0.7.1"},"devDependencies":{"qunit":"^0.6.2","uglify-js":"~2.4.13"}},"0.8.2":{"name":"systemjs","version":"0.8.2","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.8.2","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"9a136c30f4f25e15057a04aafda0bafb0ff42e7a","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.8.2.tgz","integrity":"sha512-WXR+xJbvkolxy4w6TNDuoowH2reTFgmCJwFz0EWRMPD51iKv3iNjeeS5kdV59c7xMo9AcmcgFGTOplqZMVVs/g==","signatures":[{"sig":"MEQCICgy7McI+481dXD6B6HbVOMfJ/giCj4X2c6pCDy3iJwlAiA5GypCC3K0SedleZIFriNfzA/LrX2SlI0T8rmYXGxE/A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.js","_from":".","_shasum":"9a136c30f4f25e15057a04aafda0bafb0ff42e7a","gitHead":"324aa27d3203aae4139b0d0c4a893b68abc04e8a","scripts":{"test":"qunit -c s:./dist/system.js -t ./test/test.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs","type":"git"},"_npmVersion":"1.4.13","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"dependencies":{"es6-module-loader":"~0.8.2"},"devDependencies":{"qunit":"^0.6.2","uglify-js":"~2.4.13"}},"0.8.0":{"name":"systemjs","version":"0.8.0","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.8.0","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"459799872ded5eff1623769d1df9a1e1c4e72a77","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.8.0.tgz","integrity":"sha512-DTvf+WhY1PX+S/b7ZuxGJH1EJySyitlaHChWi0n+BfqlnUF60gDwJxcdXZhNTeV+OoROBU8T20AMhLuNN9s95w==","signatures":[{"sig":"MEQCICAeGXC57yMn4UUAr8WedvELbGLl7+KgKK8rlLXQMQyRAiBpav9msGOYP8Buhm7N+nZ1AfTTafYoayXtGn89XCiUPA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.js","_from":".","_shasum":"459799872ded5eff1623769d1df9a1e1c4e72a77","gitHead":"b1456e4319148896b0ce8f99f5cd5a05c89e2f00","scripts":{"test":"qunit -c s:./dist/system.js -t ./test/test.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs","type":"git"},"_npmVersion":"1.4.13","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"dependencies":{"es6-module-loader":"~0.8.1"},"devDependencies":{"qunit":"^0.6.2","uglify-js":"~2.4.13"}},"0.8.1":{"name":"systemjs","version":"0.8.1","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.8.1","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"1ab3074cd845f1d7557c4144fdc9e860caa38e90","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.8.1.tgz","integrity":"sha512-7sqlX/RoulolnQWFy2AqeO91F8O/tm+08TDCk65ht/7CTqLLKf0D47j/dJUGPuE6l1ptnrpyCUfJglQCpLePuA==","signatures":[{"sig":"MEUCIQDdL5kaG55Jv0EyZ4W2hKdkj7sc4/CCQrBTnOEEp/WUIgIge+3trWANTrpdhIlyQKsjOhI03u79fYAAnP+Osqmns28=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.js","_from":".","_shasum":"1ab3074cd845f1d7557c4144fdc9e860caa38e90","gitHead":"00999242a03e924fa81ab49c785e7e7271c3c030","scripts":{"test":"qunit -c s:./dist/system.js -t ./test/test.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs","type":"git"},"_npmVersion":"1.4.13","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"dependencies":{"es6-module-loader":"~0.8.2"},"devDependencies":{"qunit":"^0.6.2","uglify-js":"~2.4.13"}},"6.7.1":{"name":"systemjs","version":"6.7.1","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@6.7.1","maintainers":[{"name":"joeldenning","email":"joeldenning@gmail.com"},{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"3db5036f450180a0701e078fbb5b434a690026f0","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-6.7.1.tgz","fileCount":35,"integrity":"sha512-Q78H/SYy9ErC8PH8r9vA/FcQ3X+Hf33dOpx2JKP/Ma6f2gHuSScPFuCKZH+6CIj7EsIJlzODxSG4mMIpjOh5oA==","signatures":[{"sig":"MEYCIQDB5sXT4zbaKiwhwQElDPuWDC3FxxKRDkUBEenXY4CusAIhAMpnT0EMa+ws1XjXa0jS6eN2gohdt8H4Z/Bstr51t4wA","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":451189,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfhDDTCRA9TVsSAnZWagAAW70P/RuEIA7cdF1+XpUDq7jI\npefyFfsvV6NxZ36eG1DufrzTHZfsVK5cjgE+QKQeM01kQCDC+vv37p7lbOq3\nIM8neJk2Zknx6/dk18Z3uRD0UrdPRhYblWwv90n/Bgn891eQsLbEjdg3oAaD\n+2ba/056KEIc5zxvQay+yOSMu0wBkbaTzbq7mh8j5SRVdXymJjjlN8tRaYzq\n/Elbc9pchI1poJG00AguHkPF2q3vNJFHUCSKuK23E8gTcJ/McgtJ673yC1ip\nP0VlRMpgZTW/xWQ3Eim3tI25eirf9UPt8BNLd2xWvyhNNGq9b7qdvK0KDRCa\noEGtCIjLCdiGE2u7V1zXDkN87qZjylYhPSUWqXnnlIFz3vTcO77sXAoCeumW\nhIa11eWqJdskXIDeYDMMBIS1jALeSyyAI47L10B3RJs1plHc8pXt1YXYkjUP\nCoEUED4cH6YF9wIv7hyklXXznX68+6VbKdFC+gDz8L66/6pEKe0oaWdsXwox\n5a/QDg73WYqQXkw9tSr9hDseyqWaBqxOH7qkZ98X7sMbfXAYVbX5yuczQfgB\nUjsXyLzkMgvXOpHMAJjwaLRQtpFQs0fl8v1LARjPIAN1ZkuQC6CnGuw8dQhc\nGmUXJPkOgqjmosp75rfuG8f8HN2XRJlMiHLoG69og7Wn+6HXlxGLYFZ1lXDp\nS5EM\r\n=X9xk\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/system-node.cjs","type":"script","exports":{".":{"node":"./dist/system-node.cjs","default":"./dist/system.min.js"},"./s.js":"./dist/s.min.js","./dist/":"./dist/"},"gitHead":"abccaf09a54b125150a8be663218d0ba08a5ce90","scripts":{"test":"concurrently -n w: 'npm:test:*'","build":"rimraf dist && mkdirp dist && concurrently -n w: 'npm:build:*'","footprint":"concurrently -n w: 'npm:footprint:*'","test:node":"cross-env NODE_OPTIONS=--experimental-modules mocha --timeout 5000 -b test/system-node.js","build:node":"node --experimental-modules build-node.mjs","prepublish":"npm run build","test:browser":"node test/server.cjs","build:browser":"rollup -c","footprint:sjs":"cat dist/s.min.js | gzip -9f | wc -c","test:internals":"cross-env NODE_OPTIONS=--experimental-modules mocha -b test/import-map.js test/system-core.js test/url-resolution.js","build-browser-dev":"rollup -c --environment dev","footprint:systemjs":"cat dist/system.min.js | gzip -9f | wc -c","test-browser-watch":"cross-env WATCH_MODE=true node test/server.cjs"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"collective":{"url":"https://opencollective.com/systemjs","type":"opencollective"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"6.14.6","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"12.18.3","_hasShrinkwrap":false,"devDependencies":{"open":"^7.0.3","mocha":"^7.1.1","mkdirp":"^1.0.4","rimraf":"^3.0.2","rollup":"^2.2.0","terser":"^4.6.7","bluebird":"^3.7.2","@zeit/ncc":"^0.22.1","cross-env":"^7.0.2","node-fetch":"^2.6.0","symbol-es6":"^0.1.2","concurrently":"^5.1.0","whatwg-fetch":"^3.0.0","source-map-support":"^0.5.16","@rollup/plugin-json":"^4.0.2","rollup-plugin-terser":"^5.3.0","@rollup/plugin-replace":"^2.3.1","@jsenv/file-size-impact":"^5.2.0","@rollup/plugin-node-resolve":"^7.1.1","construct-style-sheets-polyfill":"^2.3.5"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_6.7.1_1602498771297_0.8971621406530839","host":"s3://npm-registry-packages"}},"6.7.0":{"name":"systemjs","version":"6.7.0","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@6.7.0","maintainers":[{"name":"joeldenning","email":"joeldenning@gmail.com"},{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"915be04c9d1a65160ec4d6081dfc381da19d0e40","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-6.7.0.tgz","fileCount":35,"integrity":"sha512-DKuMJvn8JT1c/fL2VDx33SdOQ4kFHLawhWnGpiIYM26KGBjFST9Pf2o5hbDLe9UAD4cNCrFvg0BdJAfgJImJKg==","signatures":[{"sig":"MEUCIBOGZk9N/Xv1poo6NDb2NYJBKNNrwISFK5liS74mfD6lAiEAqUCqyCsQ2jC0cDG9ZHzKHBye+b9+XWAJZCYFm/jJZ1o=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":451153,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfgMgpCRA9TVsSAnZWagAArp4P/1hqakBHT2bqw5algAaR\nFEx2WGJWKKxkeNG7MlN1dB6dvK3Pw3TxdWfrae/m3nj0CtlR8vaOy9J1K4a7\ndKyJLEiYpeu0p+YynMx64aENwnQVd9pkL6QXOKGoeGIEEEGR0dERKTC3qU4f\nqJuamgPN40yWiVuGuXtOF+H3OjYaf9SHSF799M0s+2+lNnpuXte2dFbS5nX1\nvL3xPr1DmI5SxTYePJzZjKq96NdOuTwn8RLymEmgvRpcjbO4vGiaxnUySvcB\nuXyM2GZuIG6EhSTc31zkE4KZp9qFJRcvqjlD18p2Ak5P4s7b7zQNFdGUCNlN\nl5dNQul9law2WEmV6os5+rLpW1dnq03K1/c8e5GwORDY+CVgorOHuD2/tX94\nMkjP3dP55KMxXYTF5ytYwpccfOuju11sfD7pOZjEJcIzZDCEspNL6NrajrSU\ntRsJFyyEHYpfBxNCQ5shiaP7Vu+jSDgI1WVEBuGrDY3vaKswSWg8MKpsVx1+\nifpaHcnOrjeEUVBAtykeJtJJQhK6mM3sCSh7TBH+EeA64iI0m9Nfbyz8E6fh\nK6Jv/GqdYslNnF4ZdresRuZyjmRVXiS2THLx1sJ4J3Gt1+2FfQlUXi105fFv\nsfdzkUBQIqCbxTt8PYdYSr3o9H7pB7GAYJs9jybTOCZ77agWW4eGGFCzJ4xt\ng32X\r\n=ksxQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/system-node.cjs","type":"script","exports":{".":{"node":"./dist/system-node.cjs","default":"./dist/system.min.js"},"./s.js":"./dist/s.min.js","./dist/":"./dist/"},"gitHead":"de36f16f9ebef0861bfd374568563ee30f3737ab","scripts":{"test":"concurrently -n w: 'npm:test:*'","build":"rimraf dist && mkdirp dist && concurrently -n w: 'npm:build:*'","footprint":"concurrently -n w: 'npm:footprint:*'","test:node":"cross-env NODE_OPTIONS=--experimental-modules mocha --timeout 5000 -b test/system-node.js","build:node":"node --experimental-modules build-node.mjs","prepublish":"npm run build","test:browser":"node test/server.cjs","build:browser":"rollup -c","footprint:sjs":"cat dist/s.min.js | gzip -9f | wc -c","test:internals":"cross-env NODE_OPTIONS=--experimental-modules mocha -b test/import-map.js test/system-core.js test/url-resolution.js","build-browser-dev":"rollup -c --environment dev","footprint:systemjs":"cat dist/system.min.js | gzip -9f | wc -c","test-browser-watch":"cross-env WATCH_MODE=true node test/server.cjs"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"collective":{"url":"https://opencollective.com/systemjs","type":"opencollective"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"6.14.8","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"14.10.0","_hasShrinkwrap":false,"devDependencies":{"open":"^7.0.3","mocha":"^7.1.1","mkdirp":"^1.0.4","rimraf":"^3.0.2","rollup":"^2.2.0","terser":"^4.6.7","bluebird":"^3.7.2","@zeit/ncc":"^0.22.1","cross-env":"^7.0.2","node-fetch":"^2.6.0","symbol-es6":"^0.1.2","concurrently":"^5.1.0","whatwg-fetch":"^3.0.0","source-map-support":"^0.5.16","@rollup/plugin-json":"^4.0.2","rollup-plugin-terser":"^5.3.0","@rollup/plugin-replace":"^2.3.1","@jsenv/file-size-impact":"^5.2.0","@rollup/plugin-node-resolve":"^7.1.1","construct-style-sheets-polyfill":"^2.3.5"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_6.7.0_1602275368915_0.019837378542788997","host":"s3://npm-registry-packages"}},"0.10.0":{"name":"systemjs","version":"0.10.0","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.10.0","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"ba8beecbfa7c8b39c4eb16ce3e229c44b61a6c8c","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.10.0.tgz","integrity":"sha512-sj+FuggEarljwERRVP27K9GJpIRX02TZ0HcvFJLpgpjlQD0Wmjy5q2CTuwkCLcCIuzz+9fFPiLTrU38YxwDd2w==","signatures":[{"sig":"MEYCIQDGktP77kh+RneMKcqAKtB+Fbdghi7y+LT1gJgJgqvnhgIhAM0KumqKU3D8K+f5WL68hcSDGvYPf2u7YUNHaMhiVPQb","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.src.js","_from":".","_shasum":"ba8beecbfa7c8b39c4eb16ce3e229c44b61a6c8c","gitHead":"0b8527b7c357242ca48de4715f3a67f075af61d0","scripts":{"test":"qunit -c s:./dist/system.js -t ./test/test.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs","type":"git"},"_npmVersion":"2.0.0","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"dependencies":{"es6-module-loader":"~0.10.0"},"devDependencies":{"qunit":"^0.6.2","uglify-js":"~2.4.13"}},"3.1.4":{"name":"systemjs","version":"3.1.4","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@3.1.4","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"ddd78ece66bca21c306703921115d163a5b4206d","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-3.1.4.tgz","fileCount":25,"integrity":"sha512-aWCYOe0YzVRz+yn6DM0hiSY+/He1kfvVL3sXvUXZCj25RzvGiQ9Km16exDI6R8TZPgtmcUaQOJbKSxBU+kxvVQ==","signatures":[{"sig":"MEUCIGdFgwllJrN+a+4nAJZ/d4O/SXNM/51GnHV14zPgi81gAiEA48z7zk7cgHzJco/XMMrJ06uzeS4j2Lm06CCVwPV6Vyg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":103949,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcuhQ2CRA9TVsSAnZWagAA7A0P/RMaaWUVzksQeJTQ6zzy\nteB1vaSWlT48DshE/cB34bExhN53jMhxioH8zDGFeTCpfoEa509YF2hD3t1m\nDELa7hnd9zHY4Bjezni1JObM3DAb9NKMw36TN7j3G6Qk9N7sHwWO/uocX0Ib\nL7k8MlIDPTDl9b6obeGJwI9Nq+/hhHRrU8DJerdsy0xGLS+X0QdiTkJclPcb\nBEIBaRN6s5MVFc68FcwTp8cohDv2WX0Uxksmh0thQJwPvGwsyZoR46Q3IA7x\nj+4xlwvZXfOSlgL+gN23iuoN1l5a32LNw9g1KXoL27quwC+NmRKeIYPTtWCp\ngIzXF2mkIwQ212uAy+2sr9FzaTL2LZNtSdR6K1WaK9hPjP0YcmI8Kr6JHfFS\ngA/CR4SoIsV1mIE6XYsUqRDaBa5RG5GatV5GFH77CJvFNd/6imhtRyO0Hemh\nOCM8TmrPhCTjLQ0lx+fFby9buSPdTj68vhBNnZ8nVfeNfOq7VdhYETt7HBkZ\njGFiYzcvd9bv0SlwGwOODcnMKFGp7jixJ/SJyzjOK+/w9ToFFTTI0jDpt+84\nakbughXrjFH0z+64RuT6R2Wq9p7WT11YHApv+3kAO1aV3rQbYZQz7VCdpIdu\nlWldkYc+kSsApqeGKxe+AQsh5BvpT/qdSNxL3SCSXKzH3YSUWi+RyQLTAfYu\ncXfP\r\n=wIud\r\n-----END PGP SIGNATURE-----\r\n"},"mode":"esm","gitHead":"fb5491bc38515a4a036ff994067f11b2a09872b7","scripts":{"min":"npm run min:systemjs && npm run min:sjs","test":"mocha -b -r esm","build":"npm run build:systemjs && npm run build:sjs && npm run min && npm run build:extras","min:sjs":"cd dist && terser s.js -c passes=2 -m --source-map -o s.min.js","build:sjs":"rollup -c --environment sjs","footprint":"npm run footprint:systemjs && npm run footprint:sjs","prepublish":"npm run build","build:extras":"bash minify-extras.sh","min:systemjs":"cd dist && terser system.js -c passes=2 -m --source-map --comments \"/SystemJS \\d/\" -o system.min.js","footprint:sjs":"terser dist/s.js -c passes=2 -m | gzip -9f | wc -c","build:systemjs":"rollup -c","footprint:systemjs":"terser dist/system.js -c passes=2 -m | gzip -9f | wc -c"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"6.7.0","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"11.14.0","_hasShrinkwrap":false,"devDependencies":{"esm":"^3.0.77","mocha":"^5.2.0","rollup":"^0.64.1","terser":"^3.8.1","bluebird":"^3.5.1","whatwg-fetch":"^2.0.4","rollup-plugin-replace":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_3.1.4_1555698741828_0.3296427801701729","host":"s3://npm-registry-packages"}},"3.1.5":{"name":"systemjs","version":"3.1.5","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@3.1.5","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"7d32d56f07236012be6bdc5a137c9b8e198fa962","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-3.1.5.tgz","fileCount":25,"integrity":"sha512-MpVWBcDvYBE2JrM+V8PkpIHw+nNQUnSg2l24DCvPG01mp9dQbBJSM/W6xK09VRN0DQRvzC9ktQXTYcVjBdqThw==","signatures":[{"sig":"MEYCIQCUVBdFDIlyzGZ2xyr3vZer6WU43VCoyDTukYEVAZn3SwIhANNd+qrwwBhMz3ZHeMZwFBBjWHT3js+2hnKtWRjMHwZ/","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":104210,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcujsxCRA9TVsSAnZWagAA71gQAI3D7pRYkUXju1bHGp0n\nynJN2ak3gm0hcIxrvuiMExOxeWnenAMlSal8ELIKdU6OG4/iRdDlyTHxuSbj\nUwe1Qh+jnUnOv/Ln8i02dDx8MV56lFbQ3z/Ff7vxc3Zkfm3olqxFp2ao53cK\nbXz5WPjrDBRit0dE5g2ggBxq5o69vZ7E/footVIn5puKSmInLXLD8WpV2rid\nqBPvbVEs5OFVv9uyMOZte5MlCHOXqssSy2K/7vhwUcIliYgAiSb+xGdfRefm\nDBVcoWu1SXzNlIJMqmdmVvxZg5b1+cTexuxN6SGIuK0rbZxhNwv+9aBf/kXr\nur78k7cwdXB9PBM4cNXjXBJCYT/PH9SLfXi8zwBiU69yIC4iOtRBEs1YAGaC\noUPOa3Io/GTPStVeAAJdbk2Bmr/YJ0k/HUsogCPCRmN82scuzOzyCZnUMfqR\nISnPF3KPfABHDqK4OHxlWBEoO0OqVg3kQiEItSqSqWCldgP1E8Cw9hbn+fpL\nedod0jxPc43L7z1EOF6pfcVy61NnaljYmhgyaUBas5dUK8ayKPux8nqRv6RV\nYR483kh7Y+Z7pj1IkKVL8vzmDziRsrVsYgrFuTpcVuB3P61H1gQoZk4TAi8E\neLQIf3fKWlBoOjWBMOdY7m3DYAP4H8ANcDuipuej3hDth9GHPAQhZR+JRgPR\naSpH\r\n=yzC/\r\n-----END PGP SIGNATURE-----\r\n"},"mode":"esm","gitHead":"a72c23a57e15945adb953977fc1dfa450ef64abe","scripts":{"min":"npm run min:systemjs && npm run min:sjs","test":"mocha -b -r esm","build":"npm run build:systemjs && npm run build:sjs && npm run min && npm run build:extras","min:sjs":"cd dist && terser s.js -c passes=2 -m --source-map -o s.min.js","build:sjs":"rollup -c --environment sjs","footprint":"npm run footprint:systemjs && npm run footprint:sjs","prepublish":"npm run build","build:extras":"bash minify-extras.sh","min:systemjs":"cd dist && terser system.js -c passes=2 -m --source-map --comments \"/SystemJS \\d/\" -o system.min.js","footprint:sjs":"terser dist/s.js -c passes=2 -m | gzip -9f | wc -c","build:systemjs":"rollup -c","footprint:systemjs":"terser dist/system.js -c passes=2 -m | gzip -9f | wc -c"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"6.7.0","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"11.14.0","_hasShrinkwrap":false,"devDependencies":{"esm":"^3.0.77","mocha":"^5.2.0","rollup":"^0.64.1","terser":"^3.8.1","bluebird":"^3.5.1","whatwg-fetch":"^2.0.4","rollup-plugin-replace":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_3.1.5_1555708720503_0.2697742934076828","host":"s3://npm-registry-packages"}},"3.1.6":{"name":"systemjs","version":"3.1.6","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@3.1.6","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"0a13f45d2c3f7509824be46033a61115eda1903d","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-3.1.6.tgz","fileCount":25,"integrity":"sha512-cXin4Z7FWf/eANmvuR5uE8qfPqMlkjyNZbayO/Mf3+AvSOegYY/3myiWgioKLOWUeB16if3VYqdk7HXXmgOL8Q==","signatures":[{"sig":"MEYCIQD+sAz0zOzD9+wTCIVg078JxoDR9ygEFyrEq8ib8jHdwAIhANPf11Y1fKx/6MWLgTdrshxKKOgdSUgDYK/nLms4jx6q","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":106103,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcvL9FCRA9TVsSAnZWagAAfsEQAJLAzyFqudNGYrHqT6wi\nGhN6FdG/m4ZOmaBeh43Hlp5YeaPvbkU0Uel3+Vj7E38Wb+SaBMC3CCacStT9\n7YK9oYXvIPL2jg0Add08m40ocZ8a+MyZMa6TQeeB4Gd7GljucoHXECkk7ko1\ny70ZkCWqRb36DR5Kg5kKqdm+M1ShRSNVt+qIONSb1JXXO7UpY56z7MD5LMgP\nF9ybe4SfHLVi+bEzlA4bp8mbfRvEoOlF1fZy/G4pAcsjo7QYFobK2Ej34ciX\nP6U9O6Vc6LhuJ9USbOljtjFGxw0lyUta3hVmMYm76ZTuCeqGHN4KN7IP0vaV\nKDyoZ2nXjboonVelX3GNfbW77QUEpnHBuxBq9odLV6B9U5iA59UGd9qt+fP0\nHDkZwXFthQCRTZyefBATJkZjedqW5M16F8zmtlKUQXwWEAyopATvczaSULEJ\nkJSvHSDgXcM+X8GSbul7JV4NP9hz39kiNkbqA24ALo1fKL9UeBEjw3scJR/j\nCt2hSieTHQDsdtopvPredE16OoMIHVidwc8R8nRUuydZmXVPOrlkUFuabpZr\n1CIX6W20GCt2a3wrfcidwIbpY+SNcrAYreJtQ9KY5kAt3PJHTC63FYPmnEg/\ntk2jJz0hdrkMislxDMnvLLOuVAYYFTc+akU7LGHsCv6zxWV5XH0YpoQ7jehB\nLT5C\r\n=ztmS\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","gitHead":"5b4e56c406d24c40ddb438adc20b56739879ab89","scripts":{"min":"npm run min:systemjs && npm run min:sjs","test":"mocha -b -r esm","build":"npm run build:systemjs && npm run build:sjs && npm run min && npm run build:extras","min:sjs":"cd dist && terser s.js -c passes=2 -m --source-map -o s.min.js","build:sjs":"rollup -c --environment sjs","footprint":"npm run footprint:systemjs && npm run footprint:sjs","prepublish":"npm run build","build:extras":"bash minify-extras.sh","min:systemjs":"cd dist && terser system.js -c passes=2 -m --source-map --comments \"/SystemJS \\d/\" -o system.min.js","footprint:sjs":"terser dist/s.js -c passes=2 -m | gzip -9f | wc -c","build:systemjs":"rollup -c","footprint:systemjs":"terser dist/system.js -c passes=2 -m | gzip -9f | wc -c"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"6.4.1","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"10.15.3","_hasShrinkwrap":false,"devDependencies":{"esm":"^3.0.77","mocha":"^5.2.0","rollup":"^0.64.1","terser":"^3.8.1","bluebird":"^3.5.1","whatwg-fetch":"^2.0.4","rollup-plugin-replace":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_3.1.6_1555873604908_0.6575952233333711","host":"s3://npm-registry-packages"}},"3.1.0":{"name":"systemjs","version":"3.1.0","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@3.1.0","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"135f3e7a32e4f6f2d50b41e09a02d5ef8aa46633","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-3.1.0.tgz","fileCount":25,"integrity":"sha512-91NK7BcuqGbfP/CjL4N3uaT+pupmNp7nCtEQr0gzCfn7SrpPpl6j0EIidLGnuO/E4NfWIDbQkTK2X2Pmdfw+kg==","signatures":[{"sig":"MEUCIDbHKz4sq8YuJxNlNwKbhT9/pg642xHmlFJexsPkLZtxAiEAjXLzcoGYHoswdIyt78ePf2Zch8tNhkhL0SbpkpzUYTA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":100668,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcl/5tCRA9TVsSAnZWagAAEPIP/21mKyjPh0DZ4Mp+9znh\n9SOppI41yFoLr380+YkNrlutZlF2Q3nXt8CW4341Ujeqaz3OnzIa6ht4oQLg\n6JVIFS0XLRW29VTcMBn2Hc+YBJErnJIySqm0l2HrwFQssvzvkBzRwmHZkiGC\nJCauiCDLTDeduUeVnohG8GtS937J7Cu7+hodWQ3hAFAMQRjiib6yFOV0+nfB\njQGpR/kKB54Mbb8xmCATr67UTCrYufwonvIkJypOdbjrEQYCxL4u9aioX9ya\nxAfSMgroeWazivNlAadSQ46rN3c8PJS+lvSVsxQXaHiYvz+IPAfJ7cn5Hhsp\nkTce5MZpEGv2HJFocYR4S41EWOX7UFs6JMmIJeuaXfX14/YVsDWcaBT+sc+1\nhx8rtGuAFUOisO+mluopx3HVmX4kmkZJI8WOtU5K/W/Gzgqv6viDHSu00fRx\nlbYIalsUbR5XMmITu+q8YeErlsUeThuLMFVsv7f3O6hRzQAs3Nybs0nhV+0s\nykZ0+ZojW2PyqhtH2ufP9ADaOkW6s1OJ4GWNyjBarJdOJEqCj3EF8paskMuf\no2p32Y/8EboGdttypgLP0VjhQaNu8cjY8o20lpqcVmdLAnOYiZw7yyTVeq5B\nSIDyKhhZIQs8hR08gH5CIUwTGKJfDagnFTT0+wic80msW/70wVU1VVRi1fDn\nqqxV\r\n=cL2L\r\n-----END PGP SIGNATURE-----\r\n"},"mode":"esm","gitHead":"ff3c39af93b22a9290e2ee561bb6639eac908f35","scripts":{"min":"npm run min:systemjs && npm run min:sjs","test":"mocha -b -r esm","build":"npm run build:systemjs && npm run build:sjs && npm run min && npm run build:extras","min:sjs":"cd dist && terser s.js -c passes=2 -m --source-map -o s.min.js","build:sjs":"rollup -c --environment sjs","footprint":"npm run footprint:systemjs && npm run footprint:sjs","prepublish":"npm run build","build:extras":"bash minify-extras.sh","min:systemjs":"cd dist && terser system.js -c passes=2 -m --source-map --comments \"/SystemJS \\d/\" -o system.min.js","footprint:sjs":"terser dist/s.js -c passes=2 -m | gzip -9f | wc -c","build:systemjs":"rollup -c","footprint:systemjs":"terser dist/system.js -c passes=2 -m | gzip -9f | wc -c"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"6.4.1","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"10.15.3","_hasShrinkwrap":false,"devDependencies":{"esm":"^3.0.77","mocha":"^5.2.0","rollup":"^0.64.1","terser":"^3.8.1","bluebird":"^3.5.1","whatwg-fetch":"^2.0.4","rollup-plugin-replace":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_3.1.0_1553464939961_0.9435175973685039","host":"s3://npm-registry-packages"}},"3.1.1":{"name":"systemjs","version":"3.1.1","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@3.1.1","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"54dd6e3f7c9e89b7c353b32828d499e7110b0e63","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-3.1.1.tgz","fileCount":25,"integrity":"sha512-Sfbn/RwJjEb88kQDbLlsj7vxuYwt1eFOd3rXD3olxATmrNSwBAuwwt/3H/2kj6hGHiw0kqywqeYw0bXfUe+KNg==","signatures":[{"sig":"MEQCIHQS54RfZYelGOTYi2eC2+YZ2GkRH0Le+sIZH5p+NsfnAiBeOuzxXZ19MEBMECHUEi9+9f71TWrDuCfJdGTI1Iw7hQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":102185,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcqjmwCRA9TVsSAnZWagAAsYcP/A+1KNEUwuUD571HbJC7\noUMGt+DbBuO2Ftfdxy9YKBvqlF8CSsSXHFO9UHNK0yZsioZPxtuQH6G0Eeoo\nAuIZ33MO/xsJ3GpQMhu3hzr5zAQ2oWmI51Wbr19l1MXB1vu6Rpx1VqrrX6uZ\ngZ+LIwjqzsP+LvfbSplrNuMAUu43zwe3ZdugEwvRxJLOFBUinLyrUuV6PzhD\nyZntIJvT+CSD57VxH8cpN1c8Nr0dY1yKBH3yP7NA/idJcpkvIqoQTCc1y4P+\n7jCXN1ipU6px8QPyc8rGb70Psxkid1N+6VIpnwaqc7U31xYN8gMP8/yKKwNM\niRALBgx3xq9/px07T4KSj7V7H4AwCoPagm8GCW1bpb+NNmxyjkoyWOuTmZUy\n5cF/SNDjbLHxLpuqLqPseWhZbQA7uEzSB+On0+7i4c7y5GLlFVrRGyK0CCem\no0zon4KJsCaEcnN9ixOqJrzwJDumCTQncUj/w/bkyS66N3vr++0gtD85ZkM3\n57BdqdfDFhBtXCPCGe3aWIYrVvHM5P86KXi3yqW4ylwfzyQ2cWeEgIK+WM5m\noMvbefH9Yp0LGovfq9P1TBQG3dpS8grOPUQ+kQPYmj499wWWVSYsY3JmLlY0\n+sv3cUfsKzxm1yq2E4/yJxFvbTggEBAvGgfkmzDFO7qA8B6PHu5V+suV9LlA\nFdVu\r\n=1+6d\r\n-----END PGP SIGNATURE-----\r\n"},"mode":"esm","gitHead":"7363bccee2f2515d92212cbd4fda21afe512cbd4","scripts":{"min":"npm run min:systemjs && npm run min:sjs","test":"mocha -b -r esm","build":"npm run build:systemjs && npm run build:sjs && npm run min && npm run build:extras","min:sjs":"cd dist && terser s.js -c passes=2 -m --source-map -o s.min.js","build:sjs":"rollup -c --environment sjs","footprint":"npm run footprint:systemjs && npm run footprint:sjs","prepublish":"npm run build","build:extras":"bash minify-extras.sh","min:systemjs":"cd dist && terser system.js -c passes=2 -m --source-map --comments \"/SystemJS \\d/\" -o system.min.js","footprint:sjs":"terser dist/s.js -c passes=2 -m | gzip -9f | wc -c","build:systemjs":"rollup -c","footprint:systemjs":"terser dist/system.js -c passes=2 -m | gzip -9f | wc -c"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"6.9.0","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"10.15.3","_hasShrinkwrap":false,"devDependencies":{"esm":"^3.0.77","mocha":"^5.2.0","rollup":"^0.64.1","terser":"^3.8.1","bluebird":"^3.5.1","whatwg-fetch":"^2.0.4","rollup-plugin-replace":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_3.1.1_1554659759366_0.7858936630072271","host":"s3://npm-registry-packages"}},"3.1.2":{"name":"systemjs","version":"3.1.2","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@3.1.2","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"f75445af42bcdc97d225e8a3f3b1830874c1d615","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-3.1.2.tgz","fileCount":25,"integrity":"sha512-W4M4aybLxyL2g90dvQGYapuWBYPNDdGjd5ZjtPPu89iR9Zk6AK6F2BRt82l8DoFZzBRq8QBBIn6UHu57BrmSFA==","signatures":[{"sig":"MEUCIGrv+MXNMMUImqFUAXUbNmKc8pwtLsZqmDzYYhWY/Q/OAiEAs4woZFC01Xc/YiyaFME0+1p/pGqMl6XYlEv+AGGH0fo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":102493,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcsfeUCRA9TVsSAnZWagAAZbIQAJ6OWkG413ptSrtOalf2\neB1hvY9RycqQVGgz+4JEFQbyYssL3QwfrU1b1nO2MwThDpMgRO1yBCp3/UQF\n0fbyAUg1Dhisu94i6BxiSO7lOKuFwx9HqhHVHAM1bFagnOt6YgwzkupZNJvs\nz/9UnXvA66GTcBsy4UrDJF6avL7+nAzBV2iNGI5Z6dD1t8yngkYIF1RV5iVU\nmoXHSjnr+KPzWT2ckQQwFaGKWPHfjkC2dRS9DlFfLnl4w25mLIf7zE2A5Fiy\nwcF+DqFUOtjtg+OQQbLkwGIyWLhKwRK5YbtSqVOlgU96j3DPuDR8fofczSIQ\naak04ImHmL1URyV+p+5Me32JEkRIplrugcBEmA1OLle+XX8BpcfL4pNSgO62\nHqMuZcRbYPR0fx3dxjJCRnw1A4KLMSBr0zGpDGRhCYZ7ygJNV+sW+0qAVb8P\njHzuVuaQbDwiTxnHYmPw/BAsxMgDNf997M77zH126mKVc/+oCPn2GPx6eB85\nxnV/CPu/97nNsP5bHIwxJrCLn2TaciXB/GD5CN8y8ppaFzlEUfrNJ43TGb7e\n/M/jGRpubCipfPIoC3WwVonjWpqyRn8UTYvfeMK9n8u4JgwFsUjtQaQADquN\nTwHG/y8P/OgJyFyBd3BCrO9hSfjGhqaROwAzxvPOiMmn5hy1MEeH2D26QIGn\nLwLi\r\n=9DLl\r\n-----END PGP SIGNATURE-----\r\n"},"mode":"esm","gitHead":"6bd37727e3eabb4f9756d2e0b33aad0a5bc777e8","scripts":{"min":"npm run min:systemjs && npm run min:sjs","test":"mocha -b -r esm","build":"npm run build:systemjs && npm run build:sjs && npm run min && npm run build:extras","min:sjs":"cd dist && terser s.js -c passes=2 -m --source-map -o s.min.js","build:sjs":"rollup -c --environment sjs","footprint":"npm run footprint:systemjs && npm run footprint:sjs","prepublish":"npm run build","build:extras":"bash minify-extras.sh","min:systemjs":"cd dist && terser system.js -c passes=2 -m --source-map --comments \"/SystemJS \\d/\" -o system.min.js","footprint:sjs":"terser dist/s.js -c passes=2 -m | gzip -9f | wc -c","build:systemjs":"rollup -c","footprint:systemjs":"terser dist/system.js -c passes=2 -m | gzip -9f | wc -c"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"6.7.0","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"11.14.0","_hasShrinkwrap":false,"devDependencies":{"esm":"^3.0.77","mocha":"^5.2.0","rollup":"^0.64.1","terser":"^3.8.1","bluebird":"^3.5.1","whatwg-fetch":"^2.0.4","rollup-plugin-replace":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_3.1.2_1555167123454_0.8510943529863901","host":"s3://npm-registry-packages"}},"3.1.3":{"name":"systemjs","version":"3.1.3","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@3.1.3","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"e7867bcc3ef7e6c07bb24b7b46cb5708f426d0d6","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-3.1.3.tgz","fileCount":25,"integrity":"sha512-9NjJRnABGoIAu/Mwdj3eMP8viiE3NPFvjnqsMCEuiTC2qGR9kzV209GnBi93U/PBkzoZJt1aydQlQvUDUDI7LQ==","signatures":[{"sig":"MEQCIAw+yVafHAmM7zhFm4lA4knoTATf3xonrKACUOMAnfacAiBnS+Wa1Y+2kTo/47hdA1uOZG4S4YsatHQDRYwyEzDoYg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":105333,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcuK38CRA9TVsSAnZWagAA9b0QAIGssc8cgPgtFWx7vlDl\n9Nal8/wzkUJT8vsZIuirDObyBDTkctN/mHuE+gwusJWbVHAg66tv7dE1qH4j\n7Tqa4Fi6qOJq4OUaRn+cE7lgmaTlW4WYV3nbyU2hlXv0ihrk/BSYIfYP320k\n8it7TeOhUxiQnD0npmL6qeUP1dD2pIhozF29qb8ng2fQfvjxjlE5J3+mlj6q\nXkIdScUru1EDyQnQ1Prh/0pUbXxvN4M2StIEAAMtnUecI2SJC6TJ600U2zYl\nGlPDO3tXuIB5ln6KuO0eHrrwUjCjVzorMrEmIhhluYhvrpgJ6OseXFjyPxvp\nmA+pffihWNeJuyc/Dgu53ZR+VqMthlU722orBYHsWopX0kQgvGDBDSRqyqht\n3q1cZGTrCGL4vCFAHPpS8xLvVgXVXSmBqEj1l3rsQdafJjpENXMBFFxwvZg9\nnPRxgdoWUVKDMdP4Dtlll6X7Z9X0OABbvq161J690/wMB0/J4x3f08RnWgZv\nl7nTHzN/UXxnkaV363aRQ+k1jN3RfMUWVN62PUxIzS6t0enN8GJORRgLCjdj\no/GKJOFGMPGCmsxGJXyaD4pHE0M9KUGf1FTH1JLU6/yUEsBDD5lN2OfEFQB6\np3pG+GCbIdAsFqzVLY32o4TGXnITYNAH7j4FQ5z5LpUF/qJDM+Kkca2gbvns\nwTmT\r\n=3Our\r\n-----END PGP SIGNATURE-----\r\n"},"mode":"esm","gitHead":"e57027fd407c6ffb617b5ec72cf0dd013cdcd1da","scripts":{"min":"npm run min:systemjs && npm run min:sjs","test":"mocha -b -r esm","build":"npm run build:systemjs && npm run build:sjs && npm run min && npm run build:extras","min:sjs":"cd dist && terser s.js -c passes=2 -m --source-map -o s.min.js","build:sjs":"rollup -c --environment sjs","footprint":"npm run footprint:systemjs && npm run footprint:sjs","prepublish":"npm run build","build:extras":"bash minify-extras.sh","min:systemjs":"cd dist && terser system.js -c passes=2 -m --source-map --comments \"/SystemJS \\d/\" -o system.min.js","footprint:sjs":"terser dist/s.js -c passes=2 -m | gzip -9f | wc -c","build:systemjs":"rollup -c","footprint:systemjs":"terser dist/system.js -c passes=2 -m | gzip -9f | wc -c"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"6.4.1","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"10.15.3","_hasShrinkwrap":false,"devDependencies":{"esm":"^3.0.77","mocha":"^5.2.0","rollup":"^0.64.1","terser":"^3.8.1","bluebird":"^3.5.1","whatwg-fetch":"^2.0.4","rollup-plugin-replace":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_3.1.3_1555607035900_0.3719212610263696","host":"s3://npm-registry-packages"}},"0.18.0":{"name":"systemjs","version":"0.18.0","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.18.0","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"46103f94d25f733bb83c8a0577050f1e1a94b997","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.18.0.tgz","integrity":"sha512-0irwKyHlaBJdzMTXa65wic3HwOZdLl/ozwiYa00ygXWZ1sb9od8CuFaBEIppuJMTwIsO8xeYJiVVPxVGlpB8hQ==","signatures":[{"sig":"MEUCIQCTq5riOZvKYfAc/XliwFguUp0YT332/mCHwZFWqRyuAAIgdt7tixyMGQPL5adQUOujZDY9NU/FpXo3gmoNIX84Utc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"46103f94d25f733bb83c8a0577050f1e1a94b997","gitHead":"a9fb1c9cbf1f650ee1c9dd019c2a948cea4f0426","scripts":{"test":"npm run test:babel && npm run test:traceur && npm run test:typescript","test:babel":"qunit -c s:./index.js -t ./test/test-babel.js","test:browser":"make test","test:traceur":"qunit -c s:./index.js -t ./test/test-traceur.js","test:typescript":"qunit -c s:./index.js -t ./test/test-typescript.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"2.10.1","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"_nodeVersion":"0.12.4","dependencies":{"when":"^3.7.2","es6-module-loader":"^0.17.1"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.90","uglify-js":"~2.4.23","babel-core":"^5.5.8","typescript":"github:mhegazy/typescript#v1.5-beta2"}},"0.10.2":{"name":"systemjs","version":"0.10.2","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.10.2","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"ee8032cce10d03429a09b30e54551d27d3ce1979","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.10.2.tgz","integrity":"sha512-AsB9QZS522Dl+SAyeVRPDjlSRxudAzjNIJYhOntkIoJzqFsPsMQ5OkzJ3hV/Yb2mw83lNlyzsSOqTD+a61xXEQ==","signatures":[{"sig":"MEQCIHIwuLGdN7bx/n+MLZCYm+6YYoAAwy8VHdJ8XrC+YCW5AiBYX8OuWX6DlTZeTsvQGcctygy95nlsjN5VejitUWtmBw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.src.js","_from":".","_shasum":"ee8032cce10d03429a09b30e54551d27d3ce1979","gitHead":"ba271aa257bb0f8270197720c0dba15b0012ea42","scripts":{"test":"qunit -c s:./dist/system.js -t ./test/test.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs","type":"git"},"_npmVersion":"1.4.28","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"dependencies":{"es6-module-loader":"~0.10.0"},"devDependencies":{"qunit":"^0.6.2","uglify-js":"~2.4.13"}},"0.10.1":{"name":"systemjs","version":"0.10.1","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.10.1","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"f72775467cc0a151556ca3e80c847e1b3660b5af","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.10.1.tgz","integrity":"sha512-rZobKzfeoau4WV6/uF83esFsf3VzUol9SZbF//erTUl4KrNDixxxtLjBafxdnTL6HF9tE4G0VerS+RHNEISMHA==","signatures":[{"sig":"MEYCIQCq54jNveKNEv1J/bryQ6mbsitendipb4dpKVwHiHoWlwIhAO7UflQ8JwXsFNg+v7LAYob38AitKtRkJfxSxGmMC4oR","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.src.js","_from":".","_shasum":"f72775467cc0a151556ca3e80c847e1b3660b5af","gitHead":"530e2ee55d3cb7d942b6ca5ebc1a59d9ae93ea03","scripts":{"test":"qunit -c s:./dist/system.js -t ./test/test.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs","type":"git"},"_npmVersion":"2.0.0","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"dependencies":{"es6-module-loader":"~0.10.0"},"devDependencies":{"qunit":"^0.6.2","uglify-js":"~2.4.13"}},"0.18.8":{"name":"systemjs","version":"0.18.8","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.18.8","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"767e505cca1af4904667fe0533666999cc48357a","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.18.8.tgz","integrity":"sha512-Ria1r95xmdpKXT+GA5f1dLaUstlgkxC9R+4zMqZgjX92f2S59KP2ifHnUrRhFRJSC9seXiit5zl1dLVsn4ft0g==","signatures":[{"sig":"MEUCIGrMrwAHL68DiXd40M2NRG0Wc3b/I8koUANuOu/njoUzAiEA/CSFB4fsU4N6hCjqd6nUzsqDdo3OdCQQdrAcMuXb5VE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"767e505cca1af4904667fe0533666999cc48357a","gitHead":"73bef11de4eff9aa30897b2c791d298a85503633","scripts":{"test":"npm run test:babel && npm run test:traceur && npm run test:typescript","build":"make","test:babel":"qunit -c s:./index.js -t ./test/test-babel.js","test:browser":"make test","test:traceur":"qunit -c s:./index.js -t ./test/test-traceur.js","test:typescript":"qunit -c s:./index.js -t ./test/test-typescript.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"2.11.3","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"_nodeVersion":"0.12.7","dependencies":{"when":"^3.7.2","es6-module-loader":"^0.17.4"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.91","uglify-js":"~2.4.23","babel-core":"^5.8.20","typescript":"next"}},"0.18.7":{"name":"systemjs","version":"0.18.7","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.18.7","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"c2cb08c9b0bdac1b61566ba99f92781ad4c96342","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.18.7.tgz","integrity":"sha512-BO6Cc5eCJ+Ok8peg7CHDT36R0lO6+Xe70+EX6NDfkRe/aPIJAps2gL5hR2mh0x1s+ygUEbOKaLbqPf8c2ZfmPQ==","signatures":[{"sig":"MEUCIQDNjRRxs0T8ffycejR+ysl+hO96h/OUHdlxRJA+vuuYKgIgUzeuSQvn2l6BihyxL3KBcYs85QWItRawmHUPVuXWHss=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"c2cb08c9b0bdac1b61566ba99f92781ad4c96342","gitHead":"b8d4bd23f4cdc1e79f1e569e96b96622a40de5c8","scripts":{"test":"npm run test:babel && npm run test:traceur && npm run test:typescript","build":"make","test:babel":"qunit -c s:./index.js -t ./test/test-babel.js","test:browser":"make test","test:traceur":"qunit -c s:./index.js -t ./test/test-traceur.js","test:typescript":"qunit -c s:./index.js -t ./test/test-typescript.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"2.11.3","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"_nodeVersion":"0.12.7","dependencies":{"when":"^3.7.2","es6-module-loader":"^0.17.4"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.91","uglify-js":"~2.4.23","babel-core":"^5.8.20","typescript":"next"}},"0.18.6":{"name":"systemjs","version":"0.18.6","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.18.6","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"568e35cb921b8d8c099457f51dcba1891578516a","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.18.6.tgz","integrity":"sha512-npCE1+8qlt+5sZMm2f4fVABArmoAr3ZeFrMnTvjEKNfsVCIThgftZeNScimVQ/kwuyRm5n5318ZiUZAp8zsT8g==","signatures":[{"sig":"MEUCIQDhlGfeQ56r0CTAxTEZXJ3Yk0Gqw5x4vlyvvSYaE1y9YgIgY8rNCPJ8A8Jg33Y9Z7sVpqZ0fL+zMTzgiZTBGr+luWQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"568e35cb921b8d8c099457f51dcba1891578516a","gitHead":"381491ace80b190e3f496d329447237cfd6fef09","scripts":{"test":"npm run test:babel && npm run test:traceur && npm run test:typescript","build":"make","test:babel":"qunit -c s:./index.js -t ./test/test-babel.js","test:browser":"make test","test:traceur":"qunit -c s:./index.js -t ./test/test-traceur.js","test:typescript":"qunit -c s:./index.js -t ./test/test-typescript.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"2.11.3","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"_nodeVersion":"0.12.7","dependencies":{"when":"^3.7.2","es6-module-loader":"^0.17.4"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.91","uglify-js":"~2.4.23","babel-core":"^5.8.20","typescript":"next"}},"0.18.5":{"name":"systemjs","version":"0.18.5","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.18.5","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"17181aab50c29e4cf0e8759f088ae8c5f269e22d","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.18.5.tgz","integrity":"sha512-LaHoiVUtShRf7MF6VugBA37lZI/O93YCgiMHn6G4U/VQ9alj7GmDU75BEjZXfm14j0/Sbio+YPzKFZsE1RjmZg==","signatures":[{"sig":"MEUCIEFAPehFzaRNjrmfkVFvjqDBlTZca0pfxPaoJjteqqZ+AiEAkMUHUNumZuicoLsYaSh5e7fF4dQNpbH2tV3nkVGq57U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"17181aab50c29e4cf0e8759f088ae8c5f269e22d","gitHead":"ce9d34e636414e12b772310b6e0b6f4b3336d711","scripts":{"test":"npm run test:babel && npm run test:traceur && npm run test:typescript","build":"make","test:babel":"qunit -c s:./index.js -t ./test/test-babel.js","test:browser":"make test","test:traceur":"qunit -c s:./index.js -t ./test/test-traceur.js","test:typescript":"qunit -c s:./index.js -t ./test/test-typescript.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"2.11.3","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"_nodeVersion":"0.12.7","dependencies":{"when":"^3.7.2","es6-module-loader":"^0.17.4"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.91","uglify-js":"~2.4.23","babel-core":"^5.8.20","typescript":"next"}},"0.18.4":{"name":"systemjs","version":"0.18.4","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.18.4","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"b71fe777ed668841dc0fd7a8821c9b732bc5d0a8","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.18.4.tgz","integrity":"sha512-VE8mQUxOmna+4RHNXjRaDKPxFapbjaB9Bxt/e8CRVtfcBnyDrMH4tl0GK8A1+KN220lkOckImYNvK8HVUr11wg==","signatures":[{"sig":"MEQCICGAyvQy5SiYGT5J8wo4K50MzYXAIP1sidY3B56FjbkFAiBn8itNC8jeVZ0cNeohsE8j58N33gQiIuaRC73BfgejqQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"b71fe777ed668841dc0fd7a8821c9b732bc5d0a8","gitHead":"ecd982ad0ad4d4e23cb2dca095980645f2bd2be4","scripts":{"test":"npm run test:babel && npm run test:traceur && npm run test:typescript","test:babel":"qunit -c s:./index.js -t ./test/test-babel.js","test:browser":"make test","test:traceur":"qunit -c s:./index.js -t ./test/test-traceur.js","test:typescript":"qunit -c s:./index.js -t ./test/test-typescript.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"2.11.2","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"_nodeVersion":"0.12.5","dependencies":{"when":"^3.7.2","es6-module-loader":"^0.17.3"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.90","uglify-js":"~2.4.23","babel-core":"^5.6.5","typescript":"github:mhegazy/typescript#v1.5-beta2"}},"0.18.3":{"name":"systemjs","version":"0.18.3","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.18.3","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"195d30a51e63b1bbff2a2590716de774d2abbbe3","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.18.3.tgz","integrity":"sha512-egcZbq9CzUH/sSCcqZLiCPSdCnQBnW7M+gtnis9KCBuj1Sc3ZMBGILfg+mxsPDONCwutzqUnK/IKGKU3JLfYPA==","signatures":[{"sig":"MEYCIQCxX02KIz1z0c1/8ES8ps+vqO7mu65Rot7lewhr6KQNhwIhAIVp5tizIgsIT4jiwDjNOePp/pZOOSEOWbT2xAJOxa/z","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"195d30a51e63b1bbff2a2590716de774d2abbbe3","gitHead":"4c890dbe898c5ab8e9cae5f28eb716ed5e3adaad","scripts":{"test":"npm run test:babel && npm run test:traceur && npm run test:typescript","test:babel":"qunit -c s:./index.js -t ./test/test-babel.js","test:browser":"make test","test:traceur":"qunit -c s:./index.js -t ./test/test-traceur.js","test:typescript":"qunit -c s:./index.js -t ./test/test-typescript.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"2.10.1","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"_nodeVersion":"0.12.4","dependencies":{"when":"^3.7.2","es6-module-loader":"^0.17.3"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.90","uglify-js":"~2.4.23","babel-core":"^5.6.5","typescript":"github:mhegazy/typescript#v1.5-beta2"}},"0.18.2":{"name":"systemjs","version":"0.18.2","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.18.2","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"3d9dde0e670156411a7c2c315e749b0bdcb17f1e","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.18.2.tgz","integrity":"sha512-9dc20IEvfKCn/kdV6lwKALkbmYFTxiCDMsyv/pTIcDDRNcjVjega/XPOcXGoPD85L8R4KIXhsh1LPITc9kEWGQ==","signatures":[{"sig":"MEQCIBOYDVE9zSSTOl6kbyNAHyy4tkUB0rGZCJn9q/reB5QfAiBFPPdc+aLJl61pNcJHYu5jX/Ke7cqH1g4ijVhTKWD72g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"3d9dde0e670156411a7c2c315e749b0bdcb17f1e","gitHead":"4ad4490ccb8c8faaf88517841ba3a3f41932fb3c","scripts":{"test":"npm run test:babel && npm run test:traceur && npm run test:typescript","test:babel":"qunit -c s:./index.js -t ./test/test-babel.js","test:browser":"make test","test:traceur":"qunit -c s:./index.js -t ./test/test-traceur.js","test:typescript":"qunit -c s:./index.js -t ./test/test-typescript.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"2.10.1","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"_nodeVersion":"0.12.4","dependencies":{"when":"^3.7.2","es6-module-loader":"^0.17.2"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.90","uglify-js":"~2.4.23","babel-core":"^5.5.8","typescript":"github:mhegazy/typescript#v1.5-beta2"}},"0.18.1":{"name":"systemjs","version":"0.18.1","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.18.1","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"2979f79193320b9747ede0c7f80059a3ff48fb48","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.18.1.tgz","integrity":"sha512-mCTvAGCzm031jvoLHJB/m3RkG/H8dTSAN6h4rPJ6p+p42XDjArmUSgtt8feSmwZ2qlz1Lx6iwmplYa1wJrCCCw==","signatures":[{"sig":"MEYCIQDg8+Sa3sBSz7SW0NqxU2zmEdtHoIvSCN4kSna1/JGOEQIhANMMhHXyxhzibLSmy0cOMfUQN8s1x9t2+H34yguysJkX","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"2979f79193320b9747ede0c7f80059a3ff48fb48","gitHead":"f42698b3f55a410d6d94dc83bab9c15b2cdd5bd6","scripts":{"test":"npm run test:babel && npm run test:traceur && npm run test:typescript","test:babel":"qunit -c s:./index.js -t ./test/test-babel.js","test:browser":"make test","test:traceur":"qunit -c s:./index.js -t ./test/test-traceur.js","test:typescript":"qunit -c s:./index.js -t ./test/test-typescript.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"2.10.1","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"_nodeVersion":"0.12.4","dependencies":{"when":"^3.7.2","es6-module-loader":"^0.17.1"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.90","uglify-js":"~2.4.23","babel-core":"^5.5.8","typescript":"github:mhegazy/typescript#v1.5-beta2"}},"0.18.9":{"name":"systemjs","version":"0.18.9","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.18.9","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"9a3d8fa8e6f0a30d5a64c8c3e2dcd1d4cf352b4c","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.18.9.tgz","integrity":"sha512-dDxj8Bs3GwKcjN9KM4YNL0o+GTT9KEULI/7dlsDWVKYxdKueoITfLWOY+fE8asZXtREsrF38R6I+wYpNmTc0Dw==","signatures":[{"sig":"MEYCIQCDl9Guhw3+d0XNVvbRh8aqZf+C1qF/+dbCR1pRmLpCZQIhAPIFPAuPoddad9MPe1RWWfhroaaQx/n6+zeD0QoCPOwS","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"9a3d8fa8e6f0a30d5a64c8c3e2dcd1d4cf352b4c","gitHead":"b622cc16e293c71448e6bc9f2bfc8945c09f0ce0","scripts":{"test":"npm run test:babel && npm run test:traceur && npm run test:typescript","build":"make","test:babel":"qunit -c s:./index.js -t ./test/test-babel.js","test:browser":"make test","test:traceur":"qunit -c s:./index.js -t ./test/test-traceur.js","test:typescript":"qunit -c s:./index.js -t ./test/test-typescript.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"2.11.3","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"_nodeVersion":"0.12.7","dependencies":{"when":"^3.7.2","es6-module-loader":"^0.17.4"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.91","uglify-js":"~2.4.23","babel-core":"^5.8.20","typescript":"next"}},"0.21.0":{"name":"systemjs","version":"0.21.0","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.21.0","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"e3e61dd7beacaae421a52703c9679fb2543862f2","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.21.0.tgz","integrity":"sha512-Ly/H3MUDaxl5OzMJ/loGFLWPao0h6WHcN6LHlI2HdsTJfZY9sYyn5B2SDnifuBlOUFlTr65rLAP+vSAXDsxOtg==","signatures":[{"sig":"MEUCICTrIBSGFezS4ejvQEoW9Ipe51oIvg0ZqIbK8noV7/eOAiEAszrUUNPhBnJd0V9YQP9KX8Cqvjzo0jmoZFZkTJXDbKQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.src.js","files":["dist"],"gitHead":"2580a1c98e9b2274f21d8d232163f2b384814d03","scripts":{"min":"npm run min:dev && npm run min:production","test":"npm run test:production && npm run test:babel && npm run test:traceur","build":"npm run build:dev && npm run build:production","irhydra":"node --trace-hydrogen --trace-phase=Z --trace-deopt --code-comments --hydrogen-track-positions --redirect-code-traces --redirect-code-traces-to=code.asm --print-opt-code --trace_hydrogen_file=hydrogen.cfg irhydra/load.js","min:dev":"cd dist && uglifyjs system.src.js -cm --source-map content=system.src.js.map --comments \"/SystemJS v/\" -o system.js","build:dev":"rollup -c","footprint":"npm run footprint:dev && npm run footprint:production","prepublish":"rimraf dist && npm run build && npm run min","test:babel":"mocha test/test-babel.js -u tdd --reporter dot","test:traceur":"mocha test/test-traceur.js -u tdd --reporter dot","footprint:dev":"uglifyjs dist/system.src.js -cm | gzip -9f | wc -c","min:production":"cd dist && uglifyjs system-production.src.js -cm --source-map content=system-production.src.js.map --comments \"/SystemJS v/\" -o system-production.js","test:production":"mocha test/test-production.js -u tdd --reporter dot","build:production":"rollup -c --environment production","footprint:production":"uglifyjs dist/system-production.src.js -cm | gzip -9f | wc -c"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"5.5.1","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"8.9.3","devDependencies":{"mocha":"^3.1.2","rimraf":"^2.6.1","rollup":"^0.41.1","traceur":"0.0.111","bluebird":"^3.4.6","uglify-js":"^3.0.11","babel-core":"^6.21.0","es-module-loader":"^2.2.8","rollup-plugin-replace":"^1.1.1","systemjs-plugin-babel":"0.0.17","systemjs-plugin-traceur":"0.0.3","rollup-plugin-node-resolve":"^2.0.0","babel-plugin-syntax-dynamic-import":"^6.18.0","babel-plugin-transform-es2015-modules-systemjs":"^6.19.0"},"_npmOperationalInternal":{"tmp":"tmp/systemjs-0.21.0.tgz_1517915680860_0.1009026796091348","host":"s3://npm-registry-packages"}},"5.0.0":{"name":"systemjs","version":"5.0.0","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@5.0.0","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"8d8fb57c0ad32d73e34b7a7c0c63bd39b318008f","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-5.0.0.tgz","fileCount":28,"integrity":"sha512-hnD/IMQhH0UmawiIGlYVnkCPUbbO/WDQjOC+Q4PewHBdsagI1OHH1re1sg1AYFqq7p9ps6b1Bsx4xCeoeIZSCw==","signatures":[{"sig":"MEQCIHLPsfc7x2IXi7AWICOcoanWZolyukt+QEvzlG7dlw+aAiArx9LDHDM4GDRCZzm0jorcPdKxGg3kld8X34gg5Kk4zw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":111003,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdQQvKCRA9TVsSAnZWagAA0QIP/3a+h8QjdkpryDDSZEOb\nhTX6F2OVCWcIU7PYIpsdxYfDtCiBD/2gKMT2F+GJ1vEGfAh/+nToAMKXrynp\nj2+71mzr/AzgHEJIZCKx26D/kW+eJpvmWpm9DIhI3NVj67Exvt+D7SRNJocC\nTXCWAwGmVCVo9RgmRZ+pIuA4eRl4uCkafD1//X/AlP6X5NXy4O5PEbyFXaHY\nqGN4FKI5OTWPCaNCRxTvOiOC/2mO0Uxlc9SdOLcYHOHgr9jI2K4IMnFQTSmp\nlFxTYB3Fnfi7R3nth0MBI4dkdT37y8+RYCjvarkGrcDiMfR9f4wT8meVzSRB\npgleyhzPgvyreyVmcT44+w+ZxV1cEj+WcfkI64LVK20IruQCC+fhan+3RIq3\nMGmUfMNxkaBAvl6Ntu1fYwXCSZ2DlXc3wu2hPaPiQvfuZKkvUyrDneZHGASp\nHk1ZxXEqTTqp+4I3IVSCOVf8g4wyo5O76uPHTz4LYIGctzZoyAVBxzgHwsNF\nm1AWYSsCjCxRnA1G7MI53lBbgy22gPe/K+EeDBLJeOuAwInuLTd1w0uVqpZ2\n0BqSP7y0rXljtTlHF9NZIfil6UKgG0jp0JZkLexFlwOG5mEgpEIIXNkTvVlc\nCA+wO4fKFdS1Mz1nCh4nn+q2B1gaeRtu6G0ky8bkyOdQCFr+Pv/vxEnbJKNI\nd7ur\r\n=n8m3\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","gitHead":"a8d4dc57dacae6e33e3c9967b9919c8f1afa1d76","scripts":{"min":"npm run min:systemjs && npm run min:sjs","test":"mocha -b -r esm","build":"npm run build:systemjs && npm run build:sjs && npm run min && npm run build:extras","min:sjs":"cd dist && terser s.js -c passes=2 -m --source-map -o s.min.js","build:sjs":"rollup -c --environment sjs","footprint":"npm run footprint:systemjs && npm run footprint:sjs","prepublish":"npm run build","build:extras":"bash minify-extras.sh","min:systemjs":"cd dist && terser system.js -c passes=2 -m --source-map --comments \"/SystemJS \\d/\" -o system.min.js","footprint:sjs":"terser dist/s.js -c passes=2 -m | gzip -9f | wc -c","build:systemjs":"rollup -c","footprint:systemjs":"terser dist/system.js -c passes=2 -m | gzip -9f | wc -c"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"6.10.2","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"12.7.0","_hasShrinkwrap":false,"devDependencies":{"esm":"^3.2.25","mocha":"^5.2.0","rollup":"^0.64.1","terser":"^3.8.1","bluebird":"^3.5.1","whatwg-fetch":"^2.0.4","rollup-plugin-replace":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_5.0.0_1564543945930_0.7044369900854892","host":"s3://npm-registry-packages"}},"0.9.3":{"name":"systemjs","version":"0.9.3","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.9.3","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"92eae56f84af1b11aacb238d6b7c0fd0cce3fe15","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.9.3.tgz","integrity":"sha512-5hvsAzqj/h8AwiPWAo+Z64DGkAue/j3Swh9WlMx33wPz6DWKvY2fRhORnkhXIEk9itklcfTo1BkaEq/ftcVqNw==","signatures":[{"sig":"MEYCIQCMMnypyZTS1oUzb/lZhDv+H+wqSxx9RIkaETMV39QCtgIhALyGyqBHtTM1lBWFt9gyvh7wuVTW6DhtP9oKxTE5tUn/","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.src.js","_from":".","scripts":{"test":"qunit -c s:./dist/system.js -t ./test/test.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs","type":"git"},"_npmVersion":"1.4.3","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"dependencies":{"es6-module-loader":"~0.9.4"},"devDependencies":{"qunit":"^0.6.2","uglify-js":"~2.4.13"}},"0.7.0":{"name":"systemjs","version":"0.7.0","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.7.0","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"aaff88a430a4e01919199ad25b9f206f47bdaca0","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.7.0.tgz","integrity":"sha512-QsQBzfsb4AIohTwUhGMGjHJmdvbGi7xnz1Kzv4Q+uJhKXEGwnr+EdT8N/saOZDnkHp3lQWG3ZtXLUBNhxJq17w==","signatures":[{"sig":"MEUCICLUB866LCD/8jD6++8sx04dM71xeuOz66EDjcnMriNPAiEAo4j2G+bcouU+3f4jz4qKOoqU1yas/wFZ6RW4W6t1Hjc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.js","_from":".","_shasum":"aaff88a430a4e01919199ad25b9f206f47bdaca0","gitHead":"348c97c487ddfcc499766f40f86d4a0c5fd7fccd","scripts":{"test":"qunit -c s:./dist/system.js -t ./test/test.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs","type":"git"},"_npmVersion":"1.4.13","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"dependencies":{"es6-module-loader":"~0.8.0"},"devDependencies":{"qunit":"^0.6.2","uglify-js":"~2.4.13"}},"0.21.1":{"name":"systemjs","version":"0.21.1","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.21.1","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"96fea96acbf8bbae81aa91c31645fc724e1ac22e","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.21.1.tgz","fileCount":11,"integrity":"sha512-dp9rF+Y1V2OPHw6TuMzIFWNml2ZJ2MMr3+WclOkW2crzrRwNXr6mHUeaZNdKKTgaFHii+Y7dAXEwSAlGEfXzQQ==","signatures":[{"sig":"MEUCIQCSSZRxVIdUbVJ8dc5b3wvu+VGasD1wEYjsCbKdd2r53wIgam+JYjrB9X5Tk1Qa9/VUyZxJa6PllIP7Su0SCLKRpRM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":980252},"main":"dist/system.src.js","files":["dist"],"gitHead":"b2dba015c4f30eca8602feab2d341cd7f135387b","scripts":{"min":"npm run min:dev && npm run min:production","test":"npm run test:production && npm run test:babel && npm run test:traceur","build":"npm run build:dev && npm run build:production","irhydra":"node --trace-hydrogen --trace-phase=Z --trace-deopt --code-comments --hydrogen-track-positions --redirect-code-traces --redirect-code-traces-to=code.asm --print-opt-code --trace_hydrogen_file=hydrogen.cfg irhydra/load.js","min:dev":"cd dist && uglifyjs system.src.js -cm --source-map content=system.src.js.map --comments \"/SystemJS v/\" -o system.js","build:dev":"rollup -c","footprint":"npm run footprint:dev && npm run footprint:production","prepublish":"rimraf dist && npm run build && npm run min","test:babel":"mocha test/test-babel.js -u tdd --reporter dot","test:traceur":"mocha test/test-traceur.js -u tdd --reporter dot","footprint:dev":"uglifyjs dist/system.src.js -cm | gzip -9f | wc -c","min:production":"cd dist && uglifyjs system-production.src.js -cm --source-map content=system-production.src.js.map --comments \"/SystemJS v/\" -o system-production.js","test:production":"mocha test/test-production.js -u tdd --reporter dot","build:production":"rollup -c --environment production","footprint:production":"uglifyjs dist/system-production.src.js -cm | gzip -9f | wc -c"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"5.6.0","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"9.8.0","_hasShrinkwrap":false,"devDependencies":{"mocha":"^3.1.2","rimraf":"^2.6.1","rollup":"~0.57.1","traceur":"0.0.111","bluebird":"^3.4.6","uglify-js":"^3.0.11","babel-core":"^6.21.0","es-module-loader":"^2.2.8","rollup-plugin-replace":"^1.1.1","systemjs-plugin-babel":"0.0.17","systemjs-plugin-traceur":"0.0.3","rollup-plugin-node-resolve":"^2.0.0","babel-plugin-syntax-dynamic-import":"^6.18.0","babel-plugin-transform-es2015-modules-systemjs":"^6.19.0"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_0.21.1_1522425096389_0.32738670840801354","host":"s3://npm-registry-packages"}},"4.0.2":{"name":"systemjs","version":"4.0.2","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@4.0.2","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"9ccab407bb1e7ef774e0a8e6ebab1a2104045585","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-4.0.2.tgz","fileCount":25,"integrity":"sha512-pwVxyK545WKMi4Duw1LQprulXi1Z8/xiT8P4TkXAXd3oEsusOI2XFTSfldg+/NMfPC+CfQGI5B7MUpqdhflHpg==","signatures":[{"sig":"MEUCIQCEOLCrW93KHUiqHqdavVFugQCIhUQcwfW3JZbagKcYyAIgciedWy/ELuak51qox3JLwQYbDxOuFXBA9wHUOi67wyw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":108135,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdI1gSCRA9TVsSAnZWagAAiMQP/1eEj0P1PlHSwrGD46Nf\nAOeyVeLPXq7bpyM1dtCXZ/j3QHOz6zWlpeM+AIWVRsJ2btl4RwW6mnR2nCAi\n75dI+9HZWThKjgNtrZNI5bXy9C+RfLBftEZo8PChLmSug5j8cYbRvxjy3wRE\nni1kmZUUR+Ymd0XGupZVOJgylPhg4wKsUrqVeLAnWgOWO6pJ3A5v4UF4/7hC\nDDiATrPqEVGRL9y7jBqdbSXgulYT+XRwZO5Ijo+O/X7EQPXyzCQ1/1G1fk3i\n977D5hhWmezDHD0UUc3Q5T9BZoGPewe9YkxVRAisQqirXruX/EdqwZctHVCy\n6JJYspdKAz3H18Rb+/r6yOkcETs50tQPE85NtfftrFsZScX8H20QY5mueesX\na+Fw/R2cPvqFkzg+AhSZ5W1B1s3MU6rgiVPnD4/+IGJchJ/hy0minKdVUtuJ\nmD2D9Rgfin837uZi/agtY6u70D6QIUEQ3zpBjbLC2LRZBmeQ/0FkGWcoUYx6\ny3udjftOMAvjkNcECqPdK88z0HpKiWF6FoCY0QuaWQeTge6gH7Vqhc3/sacP\nnZMMTRYKRnQDq5xLYAjsNMf/k0R5Jo3SOS0CpYOeCbfOXZk+OJRetAcYKVkm\n18iBE6TiaS/vtFpR+wYKHwnu0+kKYjHHbkLbPnWrI7O6fMx1t80+LnQyZ8R9\neLAO\r\n=xjNZ\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","gitHead":"d06139071a9402aa3717d05779a6d92a49cb7b03","scripts":{"min":"npm run min:systemjs && npm run min:sjs","test":"mocha -b -r esm","build":"npm run build:systemjs && npm run build:sjs && npm run min && npm run build:extras","min:sjs":"cd dist && terser s.js -c passes=2 -m --source-map -o s.min.js","build:sjs":"rollup -c --environment sjs","footprint":"npm run footprint:systemjs && npm run footprint:sjs","prepublish":"npm run build","build:extras":"bash minify-extras.sh","min:systemjs":"cd dist && terser system.js -c passes=2 -m --source-map --comments \"/SystemJS \\d/\" -o system.min.js","footprint:sjs":"terser dist/s.js -c passes=2 -m | gzip -9f | wc -c","build:systemjs":"rollup -c","footprint:systemjs":"terser dist/system.js -c passes=2 -m | gzip -9f | wc -c"},"_npmUser":{"name":"joeldenning","email":"joeldenning@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"6.9.0","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"12.6.0","_hasShrinkwrap":false,"devDependencies":{"esm":"^3.2.25","mocha":"^5.2.0","rollup":"^0.64.1","terser":"^3.8.1","bluebird":"^3.5.1","whatwg-fetch":"^2.0.4","rollup-plugin-replace":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_4.0.2_1562597393985_0.11016521088517095","host":"s3://npm-registry-packages"}},"0.21.2":{"name":"systemjs","version":"0.21.2","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.21.2","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"1fc17f3a6ac7db47151c4b11fa8185599295b9c1","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.21.2.tgz","fileCount":11,"integrity":"sha512-jWyrotOEF5g/ofWVRUIQddGt92XU59jsIaFiQ73TIMyjDuEjhSrXKI4y2a29FtMkqHksDH9wHXPCWiZKH/A2gA==","signatures":[{"sig":"MEYCIQCeORMkpUWgL3vIzSdMvWfR91PfOMb4iTZpiVSlFAKOBAIhAKAdwoYNCgqDSxq6kasE/RY91Y+Q6LEsmOetw9neMshD","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":981652},"main":"dist/system.src.js","files":["dist"],"gitHead":"c7a81389f163195f0add4d5eda7432f574f17501","scripts":{"min":"npm run min:dev && npm run min:production","test":"npm run test:production && npm run test:babel && npm run test:traceur","build":"npm run build:dev && npm run build:production","irhydra":"node --trace-hydrogen --trace-phase=Z --trace-deopt --code-comments --hydrogen-track-positions --redirect-code-traces --redirect-code-traces-to=code.asm --print-opt-code --trace_hydrogen_file=hydrogen.cfg irhydra/load.js","min:dev":"cd dist && uglifyjs system.src.js -cm --source-map content=system.src.js.map --comments \"/SystemJS v/\" -o system.js","build:dev":"rollup -c","footprint":"npm run footprint:dev && npm run footprint:production","prepublish":"rimraf dist && npm run build && npm run min","test:babel":"mocha test/test-babel.js -u tdd --reporter dot","test:traceur":"mocha test/test-traceur.js -u tdd --reporter dot","footprint:dev":"uglifyjs dist/system.src.js -cm | gzip -9f | wc -c","min:production":"cd dist && uglifyjs system-production.src.js -cm --source-map content=system-production.src.js.map --comments \"/SystemJS v/\" -o system-production.js","test:production":"mocha test/test-production.js -u tdd --reporter dot","build:production":"rollup -c --environment production","footprint:production":"uglifyjs dist/system-production.src.js -cm | gzip -9f | wc -c"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"5.6.0","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"9.8.0","_hasShrinkwrap":false,"devDependencies":{"mocha":"^3.1.2","rimraf":"^2.6.1","rollup":"~0.57.1","traceur":"0.0.111","bluebird":"^3.4.6","uglify-js":"^3.0.11","babel-core":"^6.21.0","es-module-loader":"^2.2.8","rollup-plugin-replace":"^1.1.1","systemjs-plugin-babel":"0.0.17","systemjs-plugin-traceur":"0.0.3","rollup-plugin-node-resolve":"^2.0.0","babel-plugin-syntax-dynamic-import":"^6.18.0","babel-plugin-transform-es2015-modules-systemjs":"^6.19.0"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_0.21.2_1522856482045_0.7503563875135486","host":"s3://npm-registry-packages"}},"0.21.3":{"name":"systemjs","version":"0.21.3","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.21.3","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"76467a34a9a12ead3b11028a27345f7649e46204","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.21.3.tgz","fileCount":11,"integrity":"sha512-1x0kczVnT83fq/nE3ysXra9EEhOKv4+cMS95YkexWY8128J2VL8rk/nTWZig8qoY4/ZKZwZQWOECPx3XgAjjiA==","signatures":[{"sig":"MEYCIQDor/nXeVZSiTNSeip+afyeuy1aZunY6a1IaFVd0ZWrAwIhAPwWkqqZQ2DxaOiQMJiuod7FI6tLQMIHF6fPWVGLq3PA","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":967554,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa1L++CRA9TVsSAnZWagAAYeEP/j7ZStKt3VppDMMZl3mE\nXElos4LZHJkqmBDglalv/rVnjgrY+SdJyV37g3+SBZETMYlgQBLqQXVgOh/Z\nT5M23BcktS/aT85HvcZ07ii/tHwmYa7V8RekORqQ9tEOC6eBZDNEyxXkL6FO\nOyroMocDnqbXEknb76DrZYr39DFz1sQ6ulQhSOxqcUUlNqpQ9OJvKnIf4uHX\nWA2WPkW3Rfvkq3UjYZfpARYAZohotC4D12vtogINJv19H4lUC+DoPUxFwehs\nOgM3qff+rsYuH6ubAAmNIIsDiYDCH8V2U79c4+Rc9Hx5yJ3PVXu3x0FBrO4R\nf75tcnxQOTQIvifbpL7nISq1oTtpE1z2t+OS3dlyXf7G0Co8JJydE5RXKBt8\nk/Vv/09AYbWRImI+TkeTzC4Bs82abHEsQIFsJSZ3U+pd4aion/B+HLpOkHYs\nRDZBU2bHYq9NbaH8I9OT/GYHtdzjOkP+0QRNKhuRIjDva90a7LQwrd99yD5R\ncjrqYI0WsBZU29DKF/2iFY65mDvNXSalwZ+rXkMC6INeR96g6Cldlf2bhstM\nKZc1y/gPtlx946I2v8/owZ7I/5PlC0x8wt/1DBcfu969Eo0dqYiWGgj8cNac\ntFLszKlCHecpQUPi2leWnufjwVReMfrj81fyGfyoUpsPrd2oZluJlzaoDRfI\nd9fd\r\n=8DF9\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/system.src.js","files":["dist"],"gitHead":"21555dcdbbdc5796089a4d1f6d1c2225fb6907f1","scripts":{"min":"npm run min:dev && npm run min:production","test":"npm run test:production && npm run test:babel && npm run test:traceur","build":"npm run build:dev && npm run build:production","irhydra":"node --trace-hydrogen --trace-phase=Z --trace-deopt --code-comments --hydrogen-track-positions --redirect-code-traces --redirect-code-traces-to=code.asm --print-opt-code --trace_hydrogen_file=hydrogen.cfg irhydra/load.js","min:dev":"cd dist && uglifyjs system.src.js -cm --source-map content=system.src.js.map --comments \"/SystemJS v/\" -o system.js","build:dev":"rollup -c","footprint":"npm run footprint:dev && npm run footprint:production","prepublish":"rimraf dist && npm run build && npm run min","test:babel":"mocha test/test-babel.js -u tdd --reporter dot","test:traceur":"mocha test/test-traceur.js -u tdd --reporter dot","footprint:dev":"uglifyjs dist/system.src.js -cm | gzip -9f | wc -c","min:production":"cd dist && uglifyjs system-production.src.js -cm --source-map content=system-production.src.js.map --comments \"/SystemJS v/\" -o system-production.js","test:production":"mocha test/test-production.js -u tdd --reporter dot","build:production":"rollup -c --environment production","footprint:production":"uglifyjs dist/system-production.src.js -cm | gzip -9f | wc -c"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"5.6.0","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"9.8.0","_hasShrinkwrap":false,"devDependencies":{"mocha":"^3.1.2","rimraf":"^2.6.1","rollup":"^0.58.0","traceur":"0.0.111","bluebird":"^3.4.6","uglify-js":"^3.0.11","babel-core":"^6.21.0","es-module-loader":"^2.2.8","rollup-plugin-replace":"^1.1.1","systemjs-plugin-babel":"0.0.17","systemjs-plugin-traceur":"0.0.3","rollup-plugin-node-resolve":"^2.0.0","babel-plugin-syntax-dynamic-import":"^6.18.0","babel-plugin-transform-es2015-modules-systemjs":"^6.19.0"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_0.21.3_1523892157631_0.7804820163030213","host":"s3://npm-registry-packages"}},"4.0.0":{"name":"systemjs","version":"4.0.0","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@4.0.0","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"8b2310ccf774242b492e35b8037b6e6ce580c24a","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-4.0.0.tgz","fileCount":25,"integrity":"sha512-asE0z8PeNmCGEo6vxYYFvXTjUMnD3/CMoM8daFDNSI40y4CVm/Tc5pqF1c4uYqn0pREC6QQKxqRR1xHe+ckqsA==","signatures":[{"sig":"MEUCIQDPTngxE88IXtjDqMGWB2RFwsQ3wJeMLboQpRf0u+QzqwIgQzlCEPwt/BmCyp/nIKe8mpVD1AvwOh/PGM6jmNT09Sk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":106877,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdGB6uCRA9TVsSAnZWagAAg0IQAJAvpK69Y+W29BPaYfgw\nKSw2Z7hJrch5QlVe7syuwbdUv0V+7i69chOVnORRoQNqzhJaoP9BeMD9NGa3\n6lFJrUGTDGtwIqyEMBTGj7eBCK81V9jHqdnM5kztTlQvmhN5v9Zmj4MuGcLI\nZDZ11a+8x3Egg2LFzACieAZJ+RKizB3jOTC24Ews9HZ5S9dueSeVvSD8w2do\nzrI0ZUKkNgTzLhad8qqoLno5ehVyG9ecTFhK+FhM5En8E+P6+aWr16mMIc1s\nvqMHeA5k1Pd0GZVEtDltfJtsbcfuIcctQcMy2Ol6eQlW4XC6rYW/5XUa+5qN\nKc1+LV1hrSfMJEnSh9gAqzNq8gZMO2VogtvDMgis7s/1rouycg4XF20VKGQ+\nOn7ZexgaybjhJgdMeczAEWuQ4dRUMW47lZ5TGlMjNri/ZXh9SV3NkAzWoR/L\nvbxu81QT0+ZLL02np3GV9V66GdTDrZvaA0af+M3sglT2ezZXPYpdw4lgIwEs\n5ImUNr1pGLRZiTVAtrNkU0a2AUH6l9pwrvQlj+OIGkg+0g1iV0XX1X7nEOJU\nejM5RbuD2xmDsBPUTfkEIcBjh+UTfbfBDnCqwZwbFF+mY9Xz7IvUlT4YoThA\noCCJJ8efX3T6msAbfWzoDOjgRt2gxfg7FbTw8Po3+uxBDZa2XpkTajGvN1Jl\nCgbu\r\n=9pbX\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","gitHead":"80600cb1a6849681a702c32c3856c3d2da79f4a4","scripts":{"min":"npm run min:systemjs && npm run min:sjs","test":"mocha -b -r esm","build":"npm run build:systemjs && npm run build:sjs && npm run min && npm run build:extras","min:sjs":"cd dist && terser s.js -c passes=2 -m --source-map -o s.min.js","build:sjs":"rollup -c --environment sjs","footprint":"npm run footprint:systemjs && npm run footprint:sjs","prepublish":"npm run build","build:extras":"bash minify-extras.sh","min:systemjs":"cd dist && terser system.js -c passes=2 -m --source-map --comments \"/SystemJS \\d/\" -o system.min.js","footprint:sjs":"terser dist/s.js -c passes=2 -m | gzip -9f | wc -c","build:systemjs":"rollup -c","footprint:systemjs":"terser dist/system.js -c passes=2 -m | gzip -9f | wc -c"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"6.9.0","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"10.16.0","_hasShrinkwrap":false,"devDependencies":{"esm":"^3.2.25","mocha":"^5.2.0","rollup":"^0.64.1","terser":"^3.8.1","bluebird":"^3.5.1","whatwg-fetch":"^2.0.4","rollup-plugin-replace":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_4.0.0_1561861805484_0.6220532003082757","host":"s3://npm-registry-packages"}},"0.21.4":{"name":"systemjs","version":"0.21.4","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.21.4","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"043996efcac3fefcb7d62e8c40457a42e9c86e1e","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.21.4.tgz","fileCount":11,"integrity":"sha512-l1O8boHjAIY5UG74Xk4B63LK9QbFxv/FkQa//GGGWaTeQoMhTsWnFrYwPWBScSF4xQFMO/+v9QB4i633h8Oytw==","signatures":[{"sig":"MEYCIQD/gz12T1tt/c40OjvOeojbNxi65gii1IaP+zQIFyMtgQIhAPjgvXyphuZ1jHeIbL5agmTc79cVVVz3+QeHUErEaDe+","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1003271,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbEBYpCRA9TVsSAnZWagAA47sP/iJxpRcwYvye0zYbLvXY\n9RoA0izfYNIDSSrSYLCrw1dZA8ssSypNENpRn/COSC8pbLOEZtKQXvddsU5z\nbSCdGoEGaRo40xSlUYXWIhuC2LMTyS8qmR2lwxbtRH13JwBmzvxLiAnxl4vE\n2GehrCQahiafssFLS2SAfKpkWebz5URMEyFD64xxw9m1i7B0QpHH0DU7PXnt\nZKG8PX/LJeZY4CJwaCmNOzNyXju37G/8+6zcgoeCsaDRYJmrzjHntr34H8zB\nrEvs0jeWHxYkFcP+8DWo1MbWkXTHv6X9kaNPgLueXPYvlHUijdQXr19Oa1nR\n6LK9MD7zIjcB6Klv2az7FboqN8uTx3Yy3SdEV0k+pLlUQY8GjxIAO+mSOsXG\nw5poDJ+Hl4o8cxHBF2rk4PjXi+hjJqlqdzQs2sLHCjj7pzej67/A2IPXMpG3\nSRTf7Bj89Bh5MMRHAxeNiYiHRYILExYUsxtHqa8o0HOpyvFVkMo2/ncUtgDH\nMJ+/oRUrzS5rcpLjiK63QiS+T1dzmbL0PTWbC4A7Y6gDe3DufqrW9JGt8459\n7lr10YJZs/NE8PwTVpTeDRlNA6MNSg5hpJMA67sAnFt15J8WxB0hHZnbNoq5\nXRUx8/gPg6P4LMEMSf/LBmUW8Ra5vmvtkD9tfAfbhw4Ab3yTi4heGAtZ9Jr6\n24EV\r\n=pG+W\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/system.src.js","files":["dist"],"gitHead":"1bfd4b72d87e2eb93ac9e8058a21a4ae0c054308","scripts":{"min":"npm run min:dev && npm run min:production","test":"npm run test:production && npm run test:babel && npm run test:traceur","build":"npm run build:dev && npm run build:production","irhydra":"node --trace-hydrogen --trace-phase=Z --trace-deopt --code-comments --hydrogen-track-positions --redirect-code-traces --redirect-code-traces-to=code.asm --print-opt-code --trace_hydrogen_file=hydrogen.cfg irhydra/load.js","min:dev":"cd dist && uglifyjs system.src.js -cm --source-map content=system.src.js.map --comments \"/SystemJS v/\" -o system.js","build:dev":"rollup -c","footprint":"npm run footprint:dev && npm run footprint:production","prepublish":"rimraf dist && npm run build && npm run min","test:babel":"mocha test/test-babel.js -u tdd --reporter dot","test:traceur":"mocha test/test-traceur.js -u tdd --reporter dot","footprint:dev":"uglifyjs dist/system.src.js -cm | gzip -9f | wc -c","min:production":"cd dist && uglifyjs system-production.src.js -cm --source-map content=system-production.src.js.map --comments \"/SystemJS v/\" -o system-production.js","test:production":"mocha test/test-production.js -u tdd --reporter dot","build:production":"rollup -c --environment production","footprint:production":"uglifyjs dist/system-production.src.js -cm | gzip -9f | wc -c"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"5.6.0","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"8.11.1","_hasShrinkwrap":false,"devDependencies":{"mocha":"^3.1.2","rimraf":"^2.6.1","rollup":"^0.58.0","traceur":"0.0.111","bluebird":"^3.4.6","uglify-js":"^3.0.11","babel-core":"^6.21.0","es-module-loader":"^2.3.0","rollup-plugin-replace":"^1.1.1","systemjs-plugin-babel":"0.0.17","systemjs-plugin-traceur":"0.0.3","rollup-plugin-node-resolve":"^2.0.0","babel-plugin-syntax-dynamic-import":"^6.18.0","babel-plugin-transform-es2015-modules-systemjs":"^6.19.0"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_0.21.4_1527780904358_0.5845536606932757","host":"s3://npm-registry-packages"}},"4.0.1":{"name":"systemjs","version":"4.0.1","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@4.0.1","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"38365642beb295a933459205794aefb723f1781e","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-4.0.1.tgz","fileCount":25,"integrity":"sha512-/0Mu06EgSBZvxtxPoKRY2dN1Y7ymjFUtJ8SDIBIXNV7OXoCBNzFaH3rYfY2qG+k+4u13ZjJvvRv0IunxhhbDvg==","signatures":[{"sig":"MEUCIQDgGkMRH2IzKtldimFUSPrRiMzG35BuArjOpQvCkQVc3wIgLV0zBUMw62mstlSZTLKIJ2Nrx3Owx3tJ8UD/PHZqSCo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":108053,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdISHrCRA9TVsSAnZWagAA7dEP/2P4SP61XPQdSNWfhQZX\nF7sMfi4K38N+QcR9WNnJdEoAqePq/LfReyBYWqpXviOXvqR+hNrjcDO0Ziq+\nLwIY/yP+Btnd1uizSIKVWYa5gAlaYPwYpOmoy1bCNvAUorJ2Gu7XVWw/20Ga\nxkQhB2cvxLpoW5jp1HhF9eEOx83WIIHOBOhn1AkF6LGDY8iCTGFAsWyXOl4r\nVs1jlBbBIzid3auUvq8oGFNVhM5+jH8DgTPM7lMtf/7pTXBrn6Yb/ixgsqNF\nM1n5zPmcRbZdlDD7us2LnxSkTyM6A1OAVln5Atw6SpuQ5Mo6ZOHtkkNNKvRA\nSiTMJYaUD+S5H2Set1oDJ1qRBqpsWSBvrnbXU6tNs8dF615vnvr1t4/pd3co\nZfeq3xA4P/MVM4j2e8lv8zrrgIuQbGwUPfb2zYwOyrO7etkbCHkDpqK+evwg\nIgfPhn8OD4LZDoKW9AW7JEnjtTRA/wGwZ4nFbW5vsR43tl9kaEWaoD/PgwCf\n9oTO+dTBVHLIq+DqVEf6yx6VmDBrC93mS9qbvSLoUnXReRxm4vYv6HD2jony\nVPOjc8huwqFMbe0vaZIqAgeok8u/9ZxMIDUwkHopjaqpxxqpowY/DAVOBfUw\naYoACTWknBVBKITYqpDSzFldVwPmx5zr9HHz/POVL42j/zekz+55yXwRvh7Z\nGiw0\r\n=MCDT\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","gitHead":"e6775c4cfd35813d1d72a97be0e3042e9de73ea5","scripts":{"min":"npm run min:systemjs && npm run min:sjs","test":"mocha -b -r esm","build":"npm run build:systemjs && npm run build:sjs && npm run min && npm run build:extras","min:sjs":"cd dist && terser s.js -c passes=2 -m --source-map -o s.min.js","build:sjs":"rollup -c --environment sjs","footprint":"npm run footprint:systemjs && npm run footprint:sjs","prepublish":"npm run build","build:extras":"bash minify-extras.sh","min:systemjs":"cd dist && terser system.js -c passes=2 -m --source-map --comments \"/SystemJS \\d/\" -o system.min.js","footprint:sjs":"terser dist/s.js -c passes=2 -m | gzip -9f | wc -c","build:systemjs":"rollup -c","footprint:systemjs":"terser dist/system.js -c passes=2 -m | gzip -9f | wc -c"},"_npmUser":{"name":"joeldenning","email":"joeldenning@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"6.9.0","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"12.6.0","_hasShrinkwrap":false,"devDependencies":{"esm":"^3.2.25","mocha":"^5.2.0","rollup":"^0.64.1","terser":"^3.8.1","bluebird":"^3.5.1","whatwg-fetch":"^2.0.4","rollup-plugin-replace":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_4.0.1_1562452458417_0.8213255359569733","host":"s3://npm-registry-packages"}},"0.21.5":{"name":"systemjs","version":"0.21.5","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.21.5","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"2fcef4edfe744003da4787f3f3d45d73f94462d2","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.21.5.tgz","fileCount":11,"integrity":"sha512-GWzZhN/x7Fsae2CYkz2GF7OgOS+YDgKulcgd5L1kTogZHMKDrPx5T8zI8I0y5RoU9Dx78Z7j1XMfuFa1thD84A==","signatures":[{"sig":"MEYCIQCcNzwCUHFS9PSonCPk5TWR7zaO2yhIYoV9LWMo4VHcKAIhAOXfwyZNz+fSQM3WtS3EUaO5jiFUqKwH6vnYafdkl41U","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":783353,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbqAuhCRA9TVsSAnZWagAAOFwP/Rx43PgzL3TUXdG9xGBr\nTGJ3plIGU/g9ZNrgsLEykJeraTcNoHJC+VIAmj5lP5NvkthGY2pIXg045pZY\n+YzUnRZHIVyygQHsU+Q6NVflHImjQDHeT91mYwTLHJ8wIp21nuYGiZCYoR6q\nAsX18SMQ2Q158iYe7EFsYYYDZn23lE4tcIvy0pYwB+bHUDNM/hIt86fL197/\n66/9Qsk1lb2qeh8l/6m1BazIcU/cIM2/Jo1uo3WLwRn5Qg4EoczqmVqOaRKy\niAc0zmutloh3qhnAcVxjJfjJibLD0j+ZNZsD2j2VUS1LYPr9aZgCRx/Ql1Gv\ncXE2jjgrM7gOjPHLwKwwTyfyYBMFY2tK3tVnutCIap/6cAEnAx/B3GZENMzL\n4/tWOjtS1dklRu3bNcgek/xpIbvphxsyk9nroQJsHljR9W24n1KmAjYTr+Vg\ndpaP8GuQGqeQGl1x6LgEedUDPmA4cNhxqwJjfXRnlPos0ctxv0bhqwr5pS0A\nppB7YTTYacOfx1VRNJCs1lY4NYmWxzRjWqDEsAWNPVV9czLHHQ01VIFFQbo4\npYfkwhfwp8Yr7jwVsa7l4K8sR+swqo6FUpBV10LxnOkFid+JgPySHspbr2fY\nS8/A2kKwk1m5wEHA5lM5ml55bvwNZ2I12oX9woOVdunDMuc0rQqUz7dJyOoh\nY79u\r\n=sCLk\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/system.src.js","gitHead":"fe02b0ec628821ebd7ace2d0d96f701ed9dd153a","scripts":{"min":"npm run min:dev && npm run min:production","test":"npm run test:production && npm run test:babel && npm run test:traceur","build":"npm run build:dev && npm run build:production","irhydra":"node --trace-hydrogen --trace-phase=Z --trace-deopt --code-comments --hydrogen-track-positions --redirect-code-traces --redirect-code-traces-to=code.asm --print-opt-code --trace_hydrogen_file=hydrogen.cfg irhydra/load.js","min:dev":"cd dist && uglifyjs system.src.js -cm --source-map content=system.src.js.map --comments \"/SystemJS v/\" -o system.js","build:dev":"rollup -c","footprint":"npm run footprint:dev && npm run footprint:production","prepublish":"rimraf dist && npm run build && npm run min","test:babel":"mocha test/test-babel.js -u tdd --reporter dot","test:traceur":"mocha test/test-traceur.js -u tdd --reporter dot","footprint:dev":"uglifyjs dist/system.src.js -cm | gzip -9f | wc -c","min:production":"cd dist && uglifyjs system-production.src.js -cm --source-map content=system-production.src.js.map --comments \"/SystemJS v/\" -o system-production.js","test:production":"mocha test/test-production.js -u tdd --reporter dot","build:production":"rollup -c --environment production","footprint:production":"uglifyjs dist/system-production.src.js -cm | gzip -9f | wc -c"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"5.6.0","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"10.10.0","_hasShrinkwrap":false,"devDependencies":{"mocha":"^3.1.2","rimraf":"^2.6.1","rollup":"^0.58.0","traceur":"0.0.111","bluebird":"^3.4.6","uglify-js":"^3.0.11","babel-core":"^6.21.0","es-module-loader":"^2.3.0","rollup-plugin-replace":"^1.1.1","systemjs-plugin-babel":"0.0.17","systemjs-plugin-traceur":"0.0.3","rollup-plugin-node-resolve":"^2.0.0","babel-plugin-syntax-dynamic-import":"^6.18.0","babel-plugin-transform-es2015-modules-systemjs":"^6.19.0"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_0.21.5_1537739680258_0.45771936276916736","host":"s3://npm-registry-packages"}},"0.21.6":{"name":"systemjs","version":"0.21.6","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.21.6","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"9d15e79d9f60abbac23f0d179f887ec01f260a1b","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.21.6.tgz","fileCount":11,"integrity":"sha512-R+5S9eV9vcQgWOoS4D87joZ4xkFJHb19ZsyKY07D1+VBDE9bwYcU+KXE0r5XlDA8mFoJGyuWDbfrNoh90JsA8g==","signatures":[{"sig":"MEYCIQDU3Rd1cq1LmEV9h9awDnp6iqsnfmCndxFez2OuWsDVewIhAK4Mxw/oW3d0+TPE9WvE1vTtVC0zebMWdqHtC6RKbAK1","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":771597,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcPmyXCRA9TVsSAnZWagAAgYYQAIL/+MEfyZNIIYkhB7ps\nLznxrPtkTzZmncxxTpZne+fqMG4JU4E2spq7JuGWobyQaFpb3z3whlkZ+9JZ\no/2nikUmp6gklND5nbExW7tHb001M54qv07R5ant/PF3VnPoAef/9JPr9XR6\nWcUsONK+UtF9kH863JranXvoYgZErFomMas6K5BzEUYPBQOCpnH90IjdZ6WO\ncBqdYKQNi83X9uXKjcPsKgjUgHHAF0Lh35ImKKDi82/ZXzjoxy6aYq4IhBw+\nY8Hqp0YpmuiPjz2UusMdqIgJMU0aHa3okQBBAtrb63iHRG/7poEGcRzcVMDn\ntGeJA6IyawefzdP9HfQL8G5F6xTJ3psikz1vxy9MHj0KoGHXULASLaYHO3zZ\nKVycpLDR9By3jECbBSWEi+qQkkl+WT+z5gK4nklwZunDgWEzgMVnNt5rcfw8\nig8thWaPw4xmVEiJ8v0X2HpjRJRco+xpk2xNpYqcb0rwOUEeqaO+4q7Kt9d+\nvtHa2j2DOLaaiwdVt0Osuxcbb/pKhCfY82jYLheDzRbFCzN87zHjIL1AvM2W\n/HVUzvc1LRKlmeczDZDceJQWMkhMdsARGciXZ1RqPvv0edGJZk70kRe9YWJx\nUnsmPQ1onwRetaIavKSkVdvNxsUnsNQgzo8RP3HhmH3e/10/Z2V7hnd64iBI\nvocc\r\n=Epmq\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/system.src.js","readme":"SystemJS\n========\n\n[![Build Status][travis-image]][travis-url]\n[![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/systemjs/systemjs?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\n[![Sponsor](https://cdn.canopytax.com/images/canopy-sponsorship.svg)](https://canopytax.github.io/post/systemjs-sponsorship/?utm_source=systemjs)\n\nConfigurable module loader enabling dynamic ES module workflows in browsers and NodeJS.\n\n_[Try out the SystemJS 2.0 alpha release](https://github.com/systemjs/systemjs/tree/2.0)_\n\n_SystemJS is [currently sponsored by Canopy Tax](https://canopytax.github.io/post/systemjs-sponsorship/?utm_source=systemjs)._\n\n* [Loads any module format](docs/module-formats.md) when running the ~15KB development build.\n* Loads ES modules compiled into the `System.register` module format for production with [exact circular reference and binding support](https://github.com/ModuleLoader/es6-module-loader/blob/v0.17.0/docs/circular-references-bindings.md)\n* Supports RequireJS-style [map](docs/getting-started.md#map-config), [paths](https://github.com/systemjs/systemjs/blob/master/docs/config-api.md#paths), and [bundles](docs/production-workflows.md#bundle-extension) configuration.\n\nBuilt with the [ES Module Loader project](https://github.com/ModuleLoader/es-module-loader), which is based on principles and APIs from the WhatWG Loader specification, modules in HTML and NodeJS.\n\nFor discussion, join the [Gitter Room](https://gitter.im/systemjs/systemjs).\n\nDocumentation\n---\n\n* [Getting Started](docs/getting-started.md)\n* [Module Formats](docs/module-formats.md)\n* [Production Workflows](docs/production-workflows.md)\n* [Configuration API](docs/config-api.md)\n* [System API](docs/system-api.md)\n* [Plugins](docs/plugins.md)\n* [Creating Plugins](docs/creating-plugins.md)\n* [Production Build and Resolution](docs/production-build.md)\n\nBasic Use\n---\n\n### Browser Development\n\n```html\n<script src=\"systemjs/dist/system.js\"></script>\n<script>\n  SystemJS.import('/js/main.js');\n</script>\n```\n\nThe above will support loading all module formats.\n\n**To load ES6 code with in-browser transpilation, one of the following transpiler plugins must be configured**:\n\n* [Babel](https://github.com/systemjs/plugin-babel)\n* [TypeScript](https://github.com/frankwallis/plugin-typescript)\n* [Traceur](http://github.com/systemjs/plugin-traceur)\n\n### Browser Production\n\nWhen all modules are available as either `system`, `amd` or global module formats, and no package configurations or plugins are needed, a production-only loader can be used:\n\n```html\n<script src=\"systemjs/dist/system-production.js\"></script>\n<script>\n  SystemJS.import('/js/main.js');\n</script>\n```\n\nConfiguration support in the production loader includes baseURL, paths, map, depCache and wasm.\n\n### NodeJS\n\nTo load modules in NodeJS, install SystemJS with:\n\n```\n  npm install systemjs\n```\n\nIf transpiling ES modules, install the transpiler plugin following the instructions from the transpiler project page.\n\nWe can then load modules equivalently in NodeJS as we do in the browser:\n\n```javascript\nvar SystemJS = require('systemjs');\n\n// loads './app.js' from the current directory\nSystemJS.import('./app.js').then(function (m) {\n  console.log(m);\n});\n```\n\nTo import a module with the NodeJS module resolution, import with `import moduleName from '@node/module-name'`.\n\n#### Running the tests\n\n```\n  npm run build && npm run test\n```\n\nLicense\n---\n\nMIT\n\n[travis-url]: https://travis-ci.org/systemjs/systemjs\n[travis-image]: https://travis-ci.org/systemjs/systemjs.svg?branch=master\n","gitHead":"457f5b7e8af6bd120a279540477552a07d5de086","scripts":{"min":"npm run min:dev && npm run min:production","test":"npm run test:production && npm run test:babel && npm run test:traceur","build":"npm run build:dev && npm run build:production","irhydra":"node --trace-hydrogen --trace-phase=Z --trace-deopt --code-comments --hydrogen-track-positions --redirect-code-traces --redirect-code-traces-to=code.asm --print-opt-code --trace_hydrogen_file=hydrogen.cfg irhydra/load.js","min:dev":"cd dist && uglifyjs system.src.js -cm --source-map content=system.src.js.map --comments \"/SystemJS v/\" -o system.js","build:dev":"rollup -c","footprint":"npm run footprint:dev && npm run footprint:production","prepublish":"rimraf dist && npm run build && npm run min","test:babel":"mocha test/test-babel.js -u tdd --reporter dot","test:traceur":"mocha test/test-traceur.js -u tdd --reporter dot","footprint:dev":"uglifyjs dist/system.src.js -cm | gzip -9f | wc -c","min:production":"cd dist && uglifyjs system-production.src.js -cm --source-map content=system-production.src.js.map --comments \"/SystemJS v/\" -o system-production.js","test:production":"mocha test/test-production.js -u tdd --reporter dot","build:production":"rollup -c --environment production","footprint:production":"uglifyjs dist/system-production.src.js -cm | gzip -9f | wc -c"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"6.5.0","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"10.15.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"mocha":"^3.1.2","rimraf":"^2.6.1","rollup":"^0.58.0","traceur":"0.0.111","bluebird":"^3.4.6","uglify-js":"^3.0.11","babel-core":"^6.21.0","es-module-loader":"^2.3.0","rollup-plugin-replace":"^1.1.1","systemjs-plugin-babel":"0.0.17","systemjs-plugin-traceur":"0.0.3","rollup-plugin-node-resolve":"^2.0.0","babel-plugin-syntax-dynamic-import":"^6.18.0","babel-plugin-transform-es2015-modules-systemjs":"^6.19.0"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_0.21.6_1547594903364_0.9224309058035736","host":"s3://npm-registry-packages"}},"6.6.0":{"name":"systemjs","version":"6.6.0","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@6.6.0","maintainers":[{"name":"joeldenning","email":"joeldenning@gmail.com"},{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"52a5a16e183bf01bd6a307c22bc8fbbba03f1ba5","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-6.6.0.tgz","fileCount":35,"integrity":"sha512-b+wUE6xWZALnymk/pG0xMP0uPRJbtRrAfODQDw5uc01jVCabifQTicr3oSTPZNFZrUrc01xlMsdIDf6hCabDkw==","signatures":[{"sig":"MEQCIGNR9TEq0ukbGkY7aqWorkiEUrHJo37k3Vli+I+1TZE8AiA4FlHzS2csAUrO2UJmk0mQqGsLr/+ZhQ253mYA97StOA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":451452,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfXBL7CRA9TVsSAnZWagAAumYQAIxmWQMhNiPBz5kVr/FN\nGTVjNGbMR278/GAm6vd76RBQsR0WLAYscIweuazvVnp//F1znkU1IgFTsYK4\n9iOlP4grUUDWl4QVvPpF7EUfF6IV0daI/8f1MOQH3V4BKyww+jwkLOQpuIuj\naqIgnoQW9np3LJRF7gxE40Rl+GlSShatyHeLuj2t2DIpAPsjyqGYMvDHzRAx\n4fZbiTPzYauG24U1s4hJF5s5UoUWbV6DZnP+bprbIXyxv328f48WQcd5BFQd\nijP58ZYZLTUNipy4FRsMOxboxCF/2IcPipvDfD5LXjtkH/YC3vN7eab2C/Jj\nbBvl++K0xCzdmMfsS0mNuNCDeSI8z9QLOnMqH2EPdhJfZRdB1wdJpTYaKxm6\nlNZyCe24rl7gIOqa56at0nZ7gvP/ipoJUXDwJOeKgrLJVrYEAV9UsO3yU65E\nNptht3w06YFp5xJ/sNJGsobWNNOXVbJw++Ss4n2v6/eVbL5Yc9YCvvsRvdMm\nqoTzpBa4QAtDXhODzigVNw6QICGpbTQH6mjjqbYBMycc21p+nn+uUs2mlmt8\nMl2RrrY1DbBllicQEE0O5BruH8kw/8xgxrsaJOXfYCL1bv6GEQvS3g7HyIMY\nsyop299iKCJfkkBcA0Xo+Us+yKzr/V+8KRMt9+7gnKVNv7sB7gsCATVHQsvT\nGTfe\r\n=468Y\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/system-node.cjs","type":"script","exports":{".":{"node":"./dist/system-node.cjs","default":"./dist/system.min.js"},"./s.js":"./dist/s.min.js","./dist/":"./dist/"},"gitHead":"94a07a5cafb7a5f509427f813919adfcd4a4b924","scripts":{"test":"concurrently -n w: 'npm:test:*'","build":"rimraf dist && mkdirp dist && concurrently -n w: 'npm:build:*'","footprint":"concurrently -n w: 'npm:footprint:*'","test:node":"cross-env NODE_OPTIONS=--experimental-modules mocha --timeout 5000 -b test/system-node.js","build:node":"node --experimental-modules build-node.mjs","prepublish":"npm run build","test:browser":"node test/server.cjs","build:browser":"rollup -c","footprint:sjs":"cat dist/s.min.js | gzip -9f | wc -c","test:internals":"cross-env NODE_OPTIONS=--experimental-modules mocha -b test/import-map.js test/system-core.js test/url-resolution.js","build-browser-dev":"rollup -c --environment dev","footprint:systemjs":"cat dist/system.min.js | gzip -9f | wc -c","test-browser-watch":"cross-env WATCH_MODE=true node test/server.cjs"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"collective":{"url":"https://opencollective.com/systemjs","type":"opencollective"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"6.14.6","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"12.18.3","_hasShrinkwrap":false,"devDependencies":{"open":"^7.0.3","mocha":"^7.1.1","mkdirp":"^1.0.4","rimraf":"^3.0.2","rollup":"^2.2.0","terser":"^4.6.7","bluebird":"^3.7.2","@zeit/ncc":"^0.22.1","cross-env":"^7.0.2","node-fetch":"^2.6.0","symbol-es6":"^0.1.2","concurrently":"^5.1.0","whatwg-fetch":"^3.0.0","source-map-support":"^0.5.16","@rollup/plugin-json":"^4.0.2","rollup-plugin-terser":"^5.3.0","@rollup/plugin-replace":"^2.3.1","@jsenv/file-size-impact":"^5.1.1","@rollup/plugin-node-resolve":"^7.1.1","construct-style-sheets-polyfill":"^2.3.5"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_6.6.0_1599869690540_0.23514719929055605","host":"s3://npm-registry-packages"}},"6.6.1":{"name":"systemjs","version":"6.6.1","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@6.6.1","maintainers":[{"name":"joeldenning","email":"joeldenning@gmail.com"},{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"4bc6f5a9f6d3cfa85449c6fe10940b73bc39188b","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-6.6.1.tgz","fileCount":35,"integrity":"sha512-Niw/DZwTPmdLGC0CCe+n/MdRu927XyN/jzxKZyU6tUfeNqGQlxO5oVXuVMsJHxPO2cnXyHh0/zIGdXaocOMLVQ==","signatures":[{"sig":"MEUCIQCdBclKv1rmRjg2zRGPvjyxkjpUFWkhkRlgoK87OIDCcgIgcfHEo0oXJ/9Np+wlxUXx03QnLc1pQ3T15Mw3UOFncq8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":451151,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfXCuMCRA9TVsSAnZWagAAgV8P/jADT0uloLIiQ7J63rgj\nt7IQK8z/osdFzbs59qgQ7eLZYwg21Ox5TjULQq6Ws0MLwa4YkA67vf61OS18\nKN9HRRlMMxaC4pA34tHf1y3dlJ3ShhVlpB4rjJ5EhrLk5c+jaqOgdv48kXJt\nrTzoouyNacwJ1OAMxerr92EF4Wu6w3ZuDFeulyBxGS9tlt+17Bbf6uw5MvIQ\nSt5jJO9B8iuvyHTWuDq4IvjkPX/Ux1AcsPA7j84kVVQO73Z6yGRXbPlPCnXM\nQCELEBdmwM+KTl4RCEHzbTka6OiKcauvWJSqYsSwyC8IbMQsvXSdHHGvQHCJ\njs/H21Ox7ZWCd1rCNOsxEDNM75n/GdLzqaALnMLKn3Ip3EHq8f+LCS1hkXeG\nx9bG4zs5rJMmoWdPOUnphrjB+Zqju3SnJLA+JJNS3zj3RGyGkJCdcIKxK9dx\ndT/ue+/+t5KOBxSpcTvkN/VQthPt5rk/en0R6DWw66jH8FlvqHKQEm/MCunV\n+FGQwZpKcM7wFDf6WJ0BIHoAQU2cr2iEZXHVKihWTiBBiAOnqfpsCRSYQQ2+\nrQwu3AQ5gWmVApuPY77HFgQ0ZNQhGZV+MpQ/jRhMDre8U4oRIbTIJEHO5VoV\nfxOsOcyT9IGuVEvGL38heLAzw2fMtPkP+/p21HfpJADZ/jK8liazHwHuMAmQ\n4TDC\r\n=68yi\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/system-node.cjs","type":"script","exports":{".":{"node":"./dist/system-node.cjs","default":"./dist/system.min.js"},"./s.js":"./dist/s.min.js","./dist/":"./dist/"},"gitHead":"64d99d2e60906057189e6984a23b55892972448f","scripts":{"test":"concurrently -n w: 'npm:test:*'","build":"rimraf dist && mkdirp dist && concurrently -n w: 'npm:build:*'","footprint":"concurrently -n w: 'npm:footprint:*'","test:node":"cross-env NODE_OPTIONS=--experimental-modules mocha --timeout 5000 -b test/system-node.js","build:node":"node --experimental-modules build-node.mjs","prepublish":"npm run build","test:browser":"node test/server.cjs","build:browser":"rollup -c","footprint:sjs":"cat dist/s.min.js | gzip -9f | wc -c","test:internals":"cross-env NODE_OPTIONS=--experimental-modules mocha -b test/import-map.js test/system-core.js test/url-resolution.js","build-browser-dev":"rollup -c --environment dev","footprint:systemjs":"cat dist/system.min.js | gzip -9f | wc -c","test-browser-watch":"cross-env WATCH_MODE=true node test/server.cjs"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"collective":{"url":"https://opencollective.com/systemjs","type":"opencollective"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"6.14.6","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"12.18.3","_hasShrinkwrap":false,"devDependencies":{"open":"^7.0.3","mocha":"^7.1.1","mkdirp":"^1.0.4","rimraf":"^3.0.2","rollup":"^2.2.0","terser":"^4.6.7","bluebird":"^3.7.2","@zeit/ncc":"^0.22.1","cross-env":"^7.0.2","node-fetch":"^2.6.0","symbol-es6":"^0.1.2","concurrently":"^5.1.0","whatwg-fetch":"^3.0.0","source-map-support":"^0.5.16","@rollup/plugin-json":"^4.0.2","rollup-plugin-terser":"^5.3.0","@rollup/plugin-replace":"^2.3.1","@jsenv/file-size-impact":"^5.1.1","@rollup/plugin-node-resolve":"^7.1.1","construct-style-sheets-polyfill":"^2.3.5"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_6.6.1_1599875980261_0.5954474783936725","host":"s3://npm-registry-packages"}},"0.17.1":{"name":"systemjs","version":"0.17.1","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.17.1","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"d475e21d52491fb8b742bba84ac9caf49a335d5a","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.17.1.tgz","integrity":"sha512-ZC0KI3IBvhZsMhxfNl3igTDpjJVdkxdOKsUGMnahBuyqeqJQYytFabjCrBsMbnxxadwMh6RMyTha7f4mwvkD3g==","signatures":[{"sig":"MEQCIBLxGi56g2FV7EG+JTaVlh8ukms9TzO5vHc0mr/UUFSOAiAXbLSnc+lHxxXDRZSfZm28pFNd3fvBRYuDWjZ96Se5/A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"d475e21d52491fb8b742bba84ac9caf49a335d5a","gitHead":"f8e84c80952476bf0fd47d7ed240a0c5a17d5363","scripts":{"test":"npm run test:babel && npm run test:traceur && npm run test:typescript && make test","test:babel":"qunit -c s:./index.js -t ./test/test-babel.js","test:traceur":"qunit -c s:./index.js -t ./test/test-traceur.js","test:typescript":"qunit -c s:./index.js -t ./test/test-typescript.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs","type":"git"},"_npmVersion":"2.5.1","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"_nodeVersion":"0.12.0","dependencies":{"when":"^3.7.2","es6-module-loader":"^0.17.0"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.88","uglify-js":"~2.4.13","babel-core":"^5.0.10","typescript":"git+https://github.com/mhegazy/typescript#v1.5-beta2"}},"0.17.0":{"name":"systemjs","version":"0.17.0","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.17.0","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"f16ed07ed14eeb37985383c86af922518760a743","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.17.0.tgz","integrity":"sha512-ISA5e9Mhz5EW57vM3kpJWuQJpQ0Ik/eIFsEHOPZZc/4jvmM8ZWPfiJIVmzMXnN9iFtp/wIFomZb6UeBnrGvEtA==","signatures":[{"sig":"MEQCIDW7lNznpQml8+IyrcQb+SNQWyJ5uK0GkdeSP/mxSiifAiBkfaJY5F1EymBaswumKBvynhVeTe6QUNG8R8KsBuK94g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"f16ed07ed14eeb37985383c86af922518760a743","gitHead":"425a82c95a7d29bf613ab1f6b64366d9238ad721","scripts":{"test":"npm run test:babel && npm run test:traceur && npm run test:typescript && make test","test:babel":"qunit -c s:./index.js -t ./test/test-babel.js","test:traceur":"qunit -c s:./index.js -t ./test/test-traceur.js","test:typescript":"qunit -c s:./index.js -t ./test/test-typescript.js"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs","type":"git"},"_npmVersion":"2.5.1","description":"System loader extension for flexible AMD & CommonJS support","directories":{},"_nodeVersion":"0.12.0","dependencies":{"when":"^3.7.2","es6-module-loader":"^0.17.0"},"devDependencies":{"qunit":"^0.6.2","traceur":"0.0.88","uglify-js":"~2.4.13","babel-core":"^5.0.10","typescript":"git+https://github.com/mhegazy/typescript#v1.5-beta2"}},"2.0.0-alpha.1":{"name":"systemjs","version":"2.0.0-alpha.1","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@2.0.0-alpha.1","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"227fca52eeff58d44e6096b729e9528a796dd633","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-2.0.0-alpha.1.tgz","fileCount":18,"integrity":"sha512-pWC4zF/vT4crtPsOSOT/IQ0LOKLnXQGQwIcieRUe8gseGPEcvPY81gnt88Ql0TZXKE+sIy4mPVLtJPl68nDmFQ==","signatures":[{"sig":"MEYCIQC/30eeMTW8HALUrT/wPJdeJ5m3Spixm2feEv9Uol2D3gIhALX/atJeX7sCTusUbNxIVM4mlfJdCWecHbD/BQLB8O8/","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":83884,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbiWPOCRA9TVsSAnZWagAAmeYP/3KH4Fpps9NdmTyf+YCA\nQt32M9iivWjLI1UHdy4mLMxadG8tOfYeL3JdafNdO+tZPpAqczvfrit36yVE\nhUyT0Bh5IapMEhyf15pmeSrHrzeonvB3IdnsBiLDPKCH6W1myaMTqPEIQUMZ\nwYYOUcizAcCiT3EJwZMQOgoEcLze0Vo/Lbn8xSXinrd9O/IKzfdKBc52oxg1\newjg4phN8OhG2kwAFYT6ppw0fAM4eOmbEGUxVrISD6kFwczuRlwLIxVhsVsN\nUOe/8dvMwlJDV8qS827K5sItPgYk2rQivNSWIcdVNPMfcxuNklIP5uScnhBf\nhzAw7IeK7xUcAhCwxS+o5cEvyIlA99oSbnZIjKfy+D1FsXqIo5c4GUSFFOaJ\nXDn9nWzJRmn57Yo5REMGphr7rVI4dgdRVw24Yl+vRx2lHKRREJ/kqdvtI3MR\nrpzo5UkupWNa/2SGDmohnb7zkIDioQ5uifIPdJkYQCp77uI8uBn8no/ScKmF\niwJQqGGBivQ/Sd8Ki8ihHGwKr7AcTFvute0z7qXwmX2UYrWmwgg3NbfOt62M\ntAX+Z0ha3xbX0VZfI1fiWB0bnoMd9BeZqrx0aarw6Z+LHI8KxLYmLLeuywVK\nEq0DEN/CuCaqDQBLhno6k3hrZsTOVE9ezPKemTxYCGYw9eoKdbenmbwgUPof\nPGjN\r\n=hJTw\r\n-----END PGP SIGNATURE-----\r\n"},"readme":"# SystemJS 2.0\r\n\r\n[![Build Status][travis-image]][travis-url]\r\n[![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/systemjs/systemjs?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n[![Sponsor](https://cdn.canopytax.com/images/canopy-sponsorship.svg)](https://canopytax.github.io/post/systemjs-sponsorship/?utm_source=systemjs)\r\n\r\nConfigurable module loader enabling backwards compatibility workflows for ES modules in browsers.\r\n\r\n[Read the SystemJS 2.0 announcement post](https://guybedford.com/systemjs-2.0-alpha)\r\n\r\n_[For the previous release see the SystemJS 0.21.x branch](https://github.com/systemjs/systemjs/tree/0.21)_\r\n\r\n_SystemJS is [currently sponsored by Canopy Tax](https://canopytax.github.io/post/systemjs-sponsorship/?utm_source=systemjs)._\r\n\r\nSystemJS 2.0 provides two hookable base builds:\r\n\r\n#### 1. s.js minimal loader\r\n\r\nThe 1.5KB [s.js](dist/s.min.js) minimal loader supports:\r\n\r\n  * Loads [System.register](docs/system-register.md) modules [supporting all ES module semantics](docs/system-register.md#semantics)\r\n  * Loads and resolves URLs only, excluding support for [bare specifier names](docs/package-name-maps.md#bare-specifiers) (eg `/lodash.js` but not `lodash`)\r\n  * Hookable loader supporting [custom extensions](docs/hooks.md)\r\n  * Works in IE11+ when [Promises are polyfilled](#promise-polyfill)\r\n  * Ideal for use in [Rollup code-splitting builds](https://rollupjs.org/guide/en#experimental-code-splitting)\r\n\r\n#### 2. system.js loader\r\n\r\nThe 2.5KB [system.js](dist/system.min.js) loader supports:\r\n\r\n  * [Tracing hooks](docs/hooks.md#trace-hooks) and [registry deletion API](docs/api.md#registry) for reloading workflows\r\n  * Supports loading global scripts as modules, as well as [Sytem.register](docs/system-regsiter.md) modules\r\n  * Supports [package name maps](docs/package-name-maps.md) for resolving [bare specifier names](docs/package-name-maps.md#bare-specifiers), loaded via `<script type=\"systemjs-packagenamemap\">`\r\n  * Supports loading WASM based on the `.wasm` file extension\r\n  * Works in IE11+ when [Fetch (for WASM) and Promises are polyfilled](#promise-polyfill)\r\n\r\n#### Extras\r\n\r\nThe following [pluggable extras](dist/extras) are provided:\r\n\r\n* [AMD loading](dist/extras/amd.js) support (through `Window.define` which is created)\r\n* [Named exports](dist/extras/named-exports.js) convenience extension support for global and AMD module formats (`import { x } from './global.js'` instead of `import G from './global.js'; G.x`)\r\n* [Transform loader](dist/extras/transform.js) support, using fetch and eval, supporting a hookable `loader.transform`\r\n\r\nSince all loader features are hookable, custom extensions can be easily made following the same approach as the bundled extras. See the [hooks documentation](docs/hooks.md) for more information.\r\n\r\nFor discussion, join the [Gitter Room](https://gitter.im/systemjs/systemjs).\r\n\r\n## Installation\r\n\r\n```\r\nnpm install systemjs@alpha\r\n```\r\n\r\n## Documentation\r\n\r\n* [Package Name Maps](docs/package-name-maps.md)\r\n* [API](docs/api.md)\r\n* [System.register](docs/system-register.md)\r\n* [Loader Hooks](docs/hooks.md)\r\n\r\n## Example Usage\r\n\r\n### Loading a System.register module\r\n\r\n```html\r\n<script src=\"system.js\"></script>\r\n<script>\r\n  System.import('/js/main.js');\r\n</script>\r\n```\r\n\r\nwhere `main.js` is a module available in the System.register module format.\r\n\r\n### Package Name Maps\r\n\r\nSay `main.js` depends on loading `'lodash'`, then we can define a package name map:\r\n\r\n```html\r\n\r\n<script type=\"systemjs-packagemap\">\r\n{\r\n  \"packages\": {\r\n    \"lodash\": \"https://unpkg.com/lodash@4.17.10/lodash.js\"\r\n  }\r\n}\r\n</script>\r\n<!-- Alternatively:\r\n<script type=\"systemjs-packagemap\" src=\"path/to/map.json\">\r\n-->\r\n<!-- SystemJS must be loaded after the package map -->\r\n<script src=\"system.js\"></script>\r\n<script>\r\n  System.import('/js/main.js');\r\n</script>\r\n```\r\n\r\n### Browser transpilation\r\n\r\nTo load ES modules directly in older browsers with SystemJS we can install and use the Babel plugin:\r\n\r\n```html\r\n<script src=\"system.js\"></script>\r\n<script src=\"extras/transform.js\"></script>\r\n<script src=\"plugin-babel/dist/babel-transform.js\"></script>\r\n<script>\r\n  // main and all its dependencies will now run through transform before loading\r\n  System.import('/js/main.js');\r\n</script>\r\n```\r\n\r\n### Polyfills for Older Browsers\r\n\r\n#### Promises\r\n\r\nBoth builds of SystemJS need Promises in the environment to work, which aren't supported in older browsers like IE11.\r\n\r\nPromises can be conditionally polyfilled using, for example, [Bluebird](http://bluebirdjs.com/docs/getting-started.html) (generally the fastest Promise polyfill):\r\n\r\n```html\r\n<script>\r\n  if (typeof Promise === 'undefined')\r\n    document.write('<script src=\"node_modules/bluebird/js/browser/bluebird.core.js\"><\\/script>');\r\n</script>\r\n```\r\n\r\n> Generally `document.write` is not recommended when writing web applications, but for this use case\r\n  it works really well and will only apply in older browsers anyway.\r\n\r\n#### Fetch\r\n\r\nTo support package maps in the system.js build, a fetch polyfill is need. The [GitHub polyfill](https://github.github.io/fetch/) is recommended:\r\n\r\n```html\r\n<script>\r\n  if (typeof fetch === 'undefined')\r\n    document.write('<script src=\"node_modules/whatwg-fetch/fetch.js\"><\\/script>');\r\n</script>\r\n```\r\n\r\n### Loader Extensions\r\n\r\nThis list can be extended to include third-party loader extensions. Feel free to [post a PR to share your work](https://github.com/systemjs/systemjs/edit/2.0/README.md).\r\n\r\n* [transform-babel](https://github.com/systemjs/systemjs-transform-babel) Supports ES module transformation into System.register with Babel.\r\n\r\n### Contributing to SystemJS\r\n\r\nProject bug fixes and changes are welcome for discussion, provided the project footprint remains minimal.\r\n\r\nTo run the tests:\r\n\r\n```\r\nnpm run build && npm run test\r\n```\r\n\r\n## License\r\n\r\nMIT\r\n\r\n[travis-url]: https://travis-ci.org/systemjs/systemjs\r\n[travis-image]: https://travis-ci.org/systemjs/systemjs.svg?branch=master\r\n","gitHead":"5fb91ef9e2bd8eef332be9c8567ccafa909c279c","scripts":{"min":"npm run min:systemjs && npm run min:sjs","test":"mocha -b -r esm","build":"npm run build:systemjs && npm run build:sjs && npm run min && npm run build:extras","min:sjs":"cd dist && terser s.js -c passes=2 -m --source-map --comments \"/SJS \\d/\" -o s.min.js","test:sjs":"mocha test/test-production.js -u tdd --reporter dot","build:sjs":"rollup -c --environment sjs","footprint":"npm run footprint:systemjs && npm run footprint:sjs","prepublish":"npm run build","build:extras":"bash minify-extras.sh","min:systemjs":"cd dist && terser system.js -c passes=2 -m --source-map --comments \"/SystemJS \\d/\" -o system.min.js","test:rebuild":"babel test/fixtures/es-modules --plugins=@babel/plugin-syntax-import-meta,@babel/plugin-transform-modules-systemjs --out-dir test/fixtures/register-modules","footprint:sjs":"terser dist/s.js -c passes=2 -m | gzip -9f | wc -c","test:systemjs":"mocha test/test-traceur.js -u tdd --reporter dot","build:systemjs":"rollup -c","footprint:systemjs":"terser dist/system.js -c passes=2 -m | gzip -9f | wc -c"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"5.6.0","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"8.11.4","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"esm":"^3.0.77","mocha":"^5.2.0","rollup":"^0.64.1","terser":"^3.8.1","bluebird":"^3.5.1","@babel/cli":"^7.0.0-rc.1","@babel/core":"^7.0.0-rc.1","whatwg-fetch":"^2.0.4","rollup-plugin-replace":"^2.0.0","@babel/plugin-syntax-import-meta":"^7.0.0-rc.1","@babel/plugin-transform-modules-systemjs":"^7.0.0-rc.1"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_2.0.0-alpha.1_1535730637300_0.38303676952826216","host":"s3://npm-registry-packages"}},"6.5.0":{"name":"systemjs","version":"6.5.0","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@6.5.0","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"42e5e19e324e99b6e96a946697fddb3de9f6f3d5","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-6.5.0.tgz","fileCount":35,"integrity":"sha512-B+NzKJD1srC/URfNVBdDExAUAsAVXpVQxZxX54AtqU0xiK9imkqurQu3qi6JdyA2GBAw2ssjolYIa7kh+xY1uw==","signatures":[{"sig":"MEYCIQDyG1HXELRLGMj8zJS9eqzXH5zz1iKTPhpm8a4tthD7+QIhAIAAFa7/o9izCapgTxpSfCUx5yc6w1s2qTotkxrbDbJu","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":449738,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfMapYCRA9TVsSAnZWagAAlrYQAIPK1EOVjS8LfJ54kQwy\nwyLIIFvdCDA0tLSC5iz7qX9YvHE4ZCMB5vwL95xkcBGeRqkrnVzDaUoaTb7a\n1EtYMMET9+KbGnGoIy//U7/j/eaQsP5LHXf2wWLHV3dB1hjWF7E/LvyISRBl\nxZJi/WAmUoN0NZWyjhZtvl+Y8I+7IMxFekunkT2h8l01th9gjtlH0vyTM/kV\nbXi0D8XUbXWdXy5C2YCQ6Zuk4RZP9DO5y4ocQ+L6tznUJ3AA/HVlycyPFD6T\neX0aEgSjCoou5SZTJqeonXceugQRaeAsQO9xWAaE/0EtkTCKj+xVvW3oG9dZ\nJ5QBeV08FmsesYokSodVpbHi/Y9eZmSI93P2WV5iuGIIjX+u+F3zPuTz6T1K\npbQCKxzjGqTxr7n8zUCui8T5nUT3T0ileeF6OieQWjAZtqWpdzrbnMJ2OEi+\nZgsZR+t419SYjsunxQpJoStv7OJUNVYziwoIGO5Y/8jdqhXDBQaeunpjjERP\nEIa1U8THcKyvTmFg1aPcLHKnuY1gmlCUkJQqIDRCZc/ElXdSLNtaXBtxz8vQ\n/SJ96S1sJfsa8M6KY95UQaOnhxo7SH/T78m2eW5XBs2i6ZtprOv1cWPTsen+\ngfcovo/7cf5h1Fd9jdVBtw7M0R2QlQeaeyZz3+nab++oW3E0+vOFNjCqbvYD\nyUox\r\n=LfK6\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/system-node.cjs","type":"module","exports":{".":{"node":"./dist/system-node.cjs","default":"./dist/system.min.js"},"./s.js":"./dist/s.min.js","./dist/":"./dist/"},"gitHead":"74dee574f7f2d5c3089555d9a72187735e59db0e","scripts":{"test":"concurrently -n w: 'npm:test:*'","build":"rimraf dist && mkdirp dist && concurrently -n w: 'npm:build:*'","footprint":"concurrently -n w: 'npm:footprint:*'","test:node":"cross-env NODE_OPTIONS=--experimental-modules mocha --timeout 5000 -b test/system-node.js","build:node":"node --experimental-modules build-node.js","prepublish":"npm run build","test:browser":"node test/server.cjs","build:browser":"rollup -c","footprint:sjs":"cat dist/s.min.js | gzip -9f | wc -c","test:internals":"cross-env NODE_OPTIONS=--experimental-modules mocha -b test/import-map.js test/system-core.js test/url-resolution.js","build-browser-dev":"rollup -c --environment dev","footprint:systemjs":"cat dist/system.min.js | gzip -9f | wc -c","test-browser-watch":"cross-env WATCH_MODE=true node test/server.cjs"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"collective":{"url":"https://opencollective.com/systemjs","type":"opencollective"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"6.14.6","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"14.6.0","_hasShrinkwrap":false,"devDependencies":{"open":"^7.0.3","mocha":"^7.1.1","mkdirp":"^1.0.4","rimraf":"^3.0.2","rollup":"^2.2.0","terser":"^4.6.7","bluebird":"^3.7.2","@zeit/ncc":"^0.22.1","cross-env":"^7.0.2","node-fetch":"^2.6.0","symbol-es6":"^0.1.2","concurrently":"^5.1.0","whatwg-fetch":"^3.0.0","source-map-support":"^0.5.16","@rollup/plugin-json":"^4.0.2","rollup-plugin-terser":"^5.3.0","@rollup/plugin-replace":"^2.3.1","@rollup/plugin-node-resolve":"^7.1.1","construct-style-sheets-polyfill":"^2.3.5","@jsenv/github-pull-request-filesize-impact":"^3.0.2"},"_npmOperationalInternal":{"tmp":"tmp/systemjs_6.5.0_1597090391781_0.8143330054535751","host":"s3://npm-registry-packages"}},"0.20.0":{"name":"systemjs","version":"0.20.0","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.20.0","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"ba68fb7f8491de18f68aa3b5ca4176f4d2d37abb","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.20.0.tgz","integrity":"sha512-3wy0KYLdh6Y3EnBkme+P3Mn+4RafrsjpLKfDxilq2dlOKW4Hg7p4oU+vruck8l4KlVvQRKK6NVPwFLVA/joDZg==","signatures":[{"sig":"MEUCIQCmOQUiYuzLq/z0otG7680SMLBTyU8giS5XiWLmZG55/QIgOq/JKDAQwHQEPcMtE+26sX+N+kM7VRLpEkHrPer1uo4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.src.js","_from":".","files":["dist"],"_shasum":"ba68fb7f8491de18f68aa3b5ca4176f4d2d37abb","gitHead":"96f9ec1edf9507491b981044f68d30672f199fb8","scripts":{"min":"npm run min:dev && npm run min:production","test":"npm run test:production && npm run test:babel && npm run test:traceur && npm run test:typescript","build":"npm run build:dev && npm run build:production","irhydra":"node --trace-hydrogen --trace-phase=Z --trace-deopt --code-comments --hydrogen-track-positions --redirect-code-traces --redirect-code-traces-to=code.asm --print-opt-code --trace_hydrogen_file=hydrogen.cfg irhydra/load.js","min:dev":"cd dist && uglifyjs system.src.js -cm --in-source-map system.src.js.map --source-map system.js.map --screw-ie8 --comments '/SystemJS v/' > system.js","build:dev":"rollup -c","footprint":"npm run footprint:dev && npm run footprint:production","test:babel":"mocha test/test-babel.js -u tdd --reporter dot","test:traceur":"mocha test/test-traceur.js -u tdd --reporter dot","footprint:dev":"uglifyjs dist/system.src.js -cm --screw-ie8 | gzip -9f | wc -c","min:production":"cd dist && uglifyjs system-production.src.js -cm --in-source-map system-production.src.js.map --source-map system-production.js.map --screw-ie8 --comments '/SystemJS v/' > system-production.js","test:production":"mocha test/test-production.js -u tdd --reporter dot","test:typescript":"mocha test/test-typescript.js -u tdd --reporter dot","build:production":"rollup -c --environment production","footprint:production":"uglifyjs dist/system-production.src.js -cm --screw-ie8 | gzip -9f | wc -c"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"4.0.5","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"7.4.0","devDependencies":{"mocha":"^3.1.2","rollup":"^0.41.1","traceur":"0.0.111","bluebird":"^3.4.6","babel-core":"^6.21.0","typescript":"^2.0.6","es-module-loader":"^2.0.0","plugin-typescript":"^5.2.7","rollup-plugin-replace":"^1.1.1","systemjs-plugin-babel":"0.0.17","systemjs-plugin-traceur":"0.0.3","rollup-plugin-node-resolve":"^2.0.0","babel-plugin-syntax-dynamic-import":"^6.18.0","babel-plugin-transform-es2015-modules-systemjs":"^6.19.0"},"_npmOperationalInternal":{"tmp":"tmp/systemjs-0.20.0.tgz_1485261614065_0.06968366983346641","host":"packages-12-west.internal.npmjs.com"}},"0.20.1":{"name":"systemjs","version":"0.20.1","author":{"name":"Guy Bedford"},"license":"MIT","_id":"systemjs@0.20.1","maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"}],"homepage":"https://github.com/systemjs/systemjs#readme","bugs":{"url":"https://github.com/systemjs/systemjs/issues"},"dist":{"shasum":"0b6ef42f4473e6b7ec2660e9bce45692aad2c7de","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/systemjs/-/systemjs-0.20.1.tgz","integrity":"sha512-nmotghqGgsphxNJ3vE3ANw4wNX5pQpDuBPr/EVKz9WHIZV8uZaTV8dTtm3a818p2NRp3jAVL7wTGjLmLFg8xUw==","signatures":[{"sig":"MEUCIGpizRB1y95tjQHVaNmGT+R09NC0llXj/kr6YgrvqwvyAiEAxKgj/14lgB8K9DlSsfbtQQQkQuVuv7p3H5sYwAStV98=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/system.src.js","_from":".","files":["dist"],"_shasum":"0b6ef42f4473e6b7ec2660e9bce45692aad2c7de","gitHead":"458cfc4168f8bc20f5a30fb8e1fbbdc05404fe75","scripts":{"min":"npm run min:dev && npm run min:production","test":"npm run test:production && npm run test:babel && npm run test:traceur && npm run test:typescript","build":"npm run build:dev && npm run build:production","irhydra":"node --trace-hydrogen --trace-phase=Z --trace-deopt --code-comments --hydrogen-track-positions --redirect-code-traces --redirect-code-traces-to=code.asm --print-opt-code --trace_hydrogen_file=hydrogen.cfg irhydra/load.js","min:dev":"cd dist && uglifyjs system.src.js -cm --in-source-map system.src.js.map --source-map system.js.map --screw-ie8 --comments '/SystemJS v/' > system.js","build:dev":"rollup -c","footprint":"npm run footprint:dev && npm run footprint:production","test:babel":"mocha test/test-babel.js -u tdd --reporter dot","test:traceur":"mocha test/test-traceur.js -u tdd --reporter dot","footprint:dev":"uglifyjs dist/system.src.js -cm --screw-ie8 | gzip -9f | wc -c","min:production":"cd dist && uglifyjs system-production.src.js -cm --in-source-map system-production.src.js.map --source-map system-production.js.map --screw-ie8 --comments '/SystemJS v/' > system-production.js","test:production":"mocha test/test-production.js -u tdd --reporter dot","test:typescript":"mocha test/test-typescript.js -u tdd --reporter dot","build:production":"rollup -c --environment production","footprint:production":"uglifyjs dist/system-production.src.js -cm --screw-ie8 | gzip -9f | wc -c"},"_npmUser":{"name":"guybedford","email":"guybedford@gmail.com"},"repository":{"url":"git://github.com/systemjs/systemjs.git","type":"git"},"_npmVersion":"4.0.5","description":"Dynamic ES module loader","directories":{},"_nodeVersion":"7.4.0","devDependencies":{"mocha":"^3.1.2","rollup":"^0.41.1","traceur":"0.0.111","bluebird":"^3.4.6","babel-core":"^6.21.0","typescript":"^2.0.6","es-module-loader":"^2.0.0","plugin-typescript":"^5.2.7","rollup-plugin-replace":"^1.1.1","systemjs-plugin-babel":"0.0.17","systemjs-plugin-traceur":"0.0.3","rollup-plugin-node-resolve":"^2.0.0","babel-plugin-syntax-dynamic-import":"^6.18.0","babel-plugin-transform-es2015-modules-systemjs":"^6.19.0"},"_npmOperationalInternal":{"tmp":"tmp/systemjs-0.20.1.tgz_1485411529471_0.109649219783023","host":"packages-12-west.internal.npmjs.com"}}},"name":"systemjs","time":{"0.19.19":"2016-02-04T13:28:59.770Z","4.1.1":"2019-07-31T03:19:11.906Z","4.1.0":"2019-07-14T20:34:34.268Z","6.5.1":"2020-09-02T04:25:07.868Z","0.19.10":"2016-01-05T18:13:52.022Z","0.20.10":"2017-03-16T11:40:05.488Z","0.20.12":"2017-04-06T12:48:45.625Z","0.20.11":"2017-03-30T11:10:17.456Z","0.20.14":"2017-06-14T11:44:39.171Z","0.20.13":"2017-05-30T09:06:53.250Z","0.20.16":"2017-07-23T08:21:50.168Z","0.20.15":"2017-07-10T13:42:38.404Z","0.19.18":"2016-02-01T14:15:00.968Z","0.20.18":"2017-08-20T11:06:26.386Z","6.10.3":"2021-08-17T16:09:09.589Z","0.19.17":"2016-01-19T23:11:32.905Z","0.20.17":"2017-07-26T09:56:40.227Z","0.19.16":"2016-01-13T15:20:37.291Z","0.19.15":"2016-01-11T22:04:04.989Z","0.20.19":"2017-09-18T12:54:10.141Z","0.19.14":"2016-01-09T19:02:55.379Z","0.19.13":"2016-01-07T14:51:06.653Z","6.10.0":"2021-06-07T18:09:31.566Z","0.19.12":"2016-01-06T19:32:47.684Z","6.10.1":"2021-06-14T14:01:28.396Z","0.19.11":"2016-01-06T00:54:47.928Z","6.10.2":"2021-07-04T00:42:26.246Z","0.12.1":"2015-01-30T12:35:13.571Z","0.12.0":"2015-01-28T12:42:59.337Z","6.4.0":"2020-07-23T21:03:28.765Z","6.4.1":"2020-07-31T16:27:03.541Z","0.9.1":"2014-10-03T11:25:30.872Z","0.9.2":"2014-10-21T09:41:17.108Z","0.9.0":"2014-09-26T10:51:56.272Z","6.4.2":"2020-08-05T17:57:19.984Z","6.4.3":"2020-08-06T13:58:26.086Z","6.11.0":"2021-10-18T22:35:30.459Z","0.11.3":"2015-01-19T13:15:17.183Z","0.11.2":"2015-01-15T09:16:50.911Z","0.11.1":"2015-01-03T12:48:24.232Z","0.11.0":"2014-12-23T15:24:43.647Z","0.19.7":"2015-12-15T11:35:01.970Z","0.19.6":"2015-11-16T15:19:40.820Z","0.19.5":"2015-10-19T07:55:14.182Z","0.19.4":"2015-10-08T15:57:24.638Z","0.19.3":"2015-09-24T12:33:17.557Z","0.19.2":"2015-09-23T09:56:15.929Z","0.19.1":"2015-09-22T21:17:09.841Z","0.19.0":"2015-09-18T13:06:50.167Z","6.3.1":"2020-04-14T21:54:23.996Z","6.3.2":"2020-05-18T15:47:48.526Z","6.3.0":"2020-04-09T18:27:48.505Z","0.19.9":"2015-12-17T10:04:55.209Z","0.19.8":"2015-12-15T14:38:55.196Z","0.18.16":"2015-08-26T13:17:38.639Z","0.18.17":"2015-08-27T14:31:06.935Z","0.18.14":"2015-08-24T13:35:58.161Z","0.18.15":"2015-08-26T12:36:46.698Z","0.18.12":"2015-08-24T10:38:09.893Z","0.18.13":"2015-08-24T12:48:55.366Z","0.18.10":"2015-08-13T14:46:33.798Z","0.18.11":"2015-08-18T09:53:00.259Z","0.4.2":"2014-02-11T15:21:28.742Z","0.4.3":"2014-02-14T17:23:21.848Z","0.4.0":"2014-02-02T12:35:37.135Z","0.4.1":"2014-02-09T20:49:14.261Z","6.3.3":"2020-06-27T17:45:23.144Z","6.12.1":"2022-01-21T22:53:59.407Z","6.12.2":"2022-08-10T09:42:38.981Z","6.12.3":"2022-08-18T13:59:28.746Z","6.12.4":"2022-08-26T13:44:12.779Z","6.12.0":"2022-01-21T22:51:37.519Z","0.14.1":"2015-02-18T17:02:32.083Z","0.14.0":"2015-02-18T11:28:27.986Z","6.12.5":"2022-08-31T11:09:12.112Z","6.12.6":"2022-08-31T11:13:37.091Z","0.19.43":"2017-01-20T10:25:09.143Z","6.2.2":"2020-02-07T16:13:41.124Z","0.19.42":"2017-01-17T10:08:02.332Z","6.2.3":"2020-02-14T16:47:23.476Z","0.19.41":"2016-11-10T14:59:50.813Z","6.2.0":"2020-02-01T18:38:02.500Z","0.19.40":"2016-10-25T12:46:15.277Z","6.2.1":"2020-02-06T16:47:50.169Z","0.19.47":"2017-03-23T08:27:48.346Z","0.19.46":"2017-01-31T07:01:45.879Z","0.19.45":"2017-01-27T07:52:16.144Z","0.19.44":"2017-01-26T06:08:36.871Z","6.2.6":"2020-03-15T17:41:41.364Z","6.2.4":"2020-02-24T02:14:35.418Z","6.2.5":"2020-02-27T22:25:17.680Z","0.19.32":"2016-07-25T12:14:26.050Z","0.19.31":"2016-06-11T23:44:02.691Z","0.19.30":"2016-06-09T21:17:42.126Z","6.13.0":"2022-09-29T15:14:44.032Z","0.19.39":"2016-09-26T14:11:44.849Z","0.19.38":"2016-09-06T16:05:54.458Z","0.19.37":"2016-08-21T17:15:36.102Z","0.19.36":"2016-08-01T16:23:06.026Z","0.19.35":"2016-07-26T20:16:16.728Z","0.19.34":"2016-07-26T14:56:10.715Z","0.19.33":"2016-07-26T12:49:47.743Z","2.0.0":"2018-09-28T13:15:06.444Z","2.0.1":"2018-10-02T16:06:31.137Z","0.13.2":"2015-02-12T14:28:46.365Z","0.13.1":"2015-02-04T14:27:12.698Z","0.13.0":"2015-02-01T15:48:49.402Z","2.0.2":"2018-10-06T20:13:12.428Z","0.19.21":"2016-02-15T21:33:46.433Z","6.1.3":"2019-10-06T17:00:00.675Z","0.19.20":"2016-02-04T19:08:15.078Z","6.1.4":"2019-10-13T00:06:59.157Z","6.1.1":"2019-09-13T21:54:49.694Z","6.1.2":"2019-09-22T17:27:44.382Z","6.1.0":"2019-09-11T23:30:51.988Z","0.19.29":"2016-05-25T13:07:10.380Z","0.19.28":"2016-05-19T11:36:15.628Z","0.19.27":"2016-04-29T13:09:26.619Z","0.19.26":"2016-04-11T10:23:26.932Z","0.19.25":"2016-03-30T11:49:43.318Z","0.19.24":"2016-03-09T14:01:28.840Z","0.19.23":"2016-02-25T15:35:52.587Z","0.19.22":"2016-02-16T13:51:14.150Z","0.6.0":"2014-05-12T17:57:12.110Z","0.6.1":"2014-05-19T03:42:44.750Z","0.20.0-rc.1":"2017-01-03T14:51:23.126Z","0.6.4":"2014-05-23T17:24:57.477Z","0.20.0-rc.2":"2017-01-13T13:18:38.522Z","0.6.5":"2014-05-23T17:33:23.340Z","0.20.0-rc.3":"2017-01-13T13:46:12.514Z","0.6.2":"2014-05-19T20:33:01.754Z","0.20.0-rc.4":"2017-01-14T07:09:16.905Z","0.6.3":"2014-05-19T21:23:54.778Z","0.20.0-rc.5":"2017-01-17T10:10:46.039Z","0.20.0-rc.6":"2017-01-17T10:14:47.532Z","0.20.2":"2017-01-27T08:04:37.339Z","0.20.0-rc.7":"2017-01-18T13:11:58.193Z","0.20.3":"2017-01-30T07:59:30.855Z","0.20.0-rc.8":"2017-01-24T08:15:33.385Z","0.20.4":"2017-01-31T07:14:40.145Z","6.1.9":"2020-01-11T21:14:41.815Z","0.20.5":"2017-02-01T08:53:02.895Z","0.20.6":"2017-02-09T10:23:08.591Z","6.1.7":"2019-11-29T13:59:05.668Z","0.20.7":"2017-02-09T10:41:57.571Z","6.1.8":"2020-01-10T18:22:44.689Z","6.9.0":"2021-05-12T21:15:18.766Z","0.20.8":"2017-02-16T15:02:18.192Z","6.1.5":"2019-11-22T21:03:34.362Z","0.20.9":"2017-02-17T04:27:31.982Z","6.1.6":"2019-11-29T13:57:06.397Z","6.14.0":"2023-02-25T16:11:50.071Z","6.14.1":"2023-03-21T15:26:10.761Z","6.14.2":"2023-08-16T05:20:04.953Z","0.16.2":"2015-03-26T15:57:25.550Z","0.16.1":"2015-03-24T23:18:06.995Z","2.1.0":"2018-11-01T10:59:50.960Z","0.16.0":"2015-03-24T18:49:49.375Z","6.14.3":"2024-01-01T14:15:43.214Z","0.16.9":"2015-04-25T19:29:47.115Z","0.16.8":"2015-04-23T15:44:18.524Z","0.16.7":"2015-04-08T13:45:39.054Z","0.16.6":"2015-03-27T22:05:51.468Z","0.16.5":"2015-03-27T21:55:27.242Z","0.16.4":"2015-03-26T21:10:35.169Z","2.1.1":"2018-11-01T11:59:29.539Z","0.16.3":"2015-03-26T17:26:58.657Z","2.1.2":"2019-01-11T23:33:14.992Z","6.0.0":"2019-08-29T19:58:13.748Z","0.16.11":"2015-05-04T07:26:09.118Z","0.16.10":"2015-04-28T20:32:10.557Z","0.5.1":"2014-03-04T22:57:12.278Z","0.5.2":"2014-03-04T23:14:40.874Z","0.5.0":"2014-03-04T22:42:21.036Z","0.5.5":"2014-03-27T23:58:55.357Z","6.8.2":"2020-12-16T00:15:25.471Z","6.8.3":"2020-12-31T20:08:27.317Z","6.8.0":"2020-11-26T03:05:53.785Z","6.8.1":"2020-11-30T17:53:49.303Z","3.0.0":"2019-01-12T15:21:29.405Z","6.15.0":"2024-04-27T21:59:15.560Z","6.15.1":"2024-04-27T22:01:16.054Z","3.0.1":"2019-03-03T17:46:31.731Z","3.0.2":"2019-03-17T15:37:20.161Z","0.20.0-alpha.1":"2016-11-15T10:14:28.811Z","0.15.0":"2015-03-04T12:46:42.875Z","6.1.10":"2020-01-28T22:06:30.935Z","0.6.8":"2014-08-02T21:23:34.198Z","0.6.6":"2014-05-23T18:02:50.639Z","0.6.7":"2014-06-27T02:29:28.986Z","0.8.2":"2014-08-21T01:25:40.473Z","0.8.0":"2014-08-11T16:06:48.136Z","0.8.1":"2014-08-13T18:12:41.462Z","6.7.1":"2020-10-12T10:32:51.532Z","6.7.0":"2020-10-09T20:29:29.072Z","0.10.0":"2014-11-18T14:41:15.998Z","3.1.4":"2019-04-19T18:32:22.003Z","modified":"2025-05-07T15:16:24.207Z","3.1.5":"2019-04-19T21:18:40.699Z","3.1.6":"2019-04-21T19:06:45.094Z","3.1.0":"2019-03-24T22:02:20.519Z","3.1.1":"2019-04-07T17:55:59.482Z","3.1.2":"2019-04-13T14:52:03.564Z","3.1.3":"2019-04-18T17:03:56.090Z","0.18.0":"2015-06-16T14:41:04.895Z","created":"2014-02-02T12:35:37.135Z","0.10.2":"2014-12-01T11:38:10.379Z","0.10.1":"2014-11-24T12:59:36.491Z","0.18.8":"2015-08-06T21:51:33.758Z","0.18.7":"2015-08-06T21:27:54.848Z","0.18.6":"2015-08-03T23:33:14.496Z","0.18.5":"2015-08-03T16:18:41.779Z","0.18.4":"2015-06-30T14:46:48.696Z","0.18.3":"2015-06-24T14:21:41.969Z","0.18.2":"2015-06-22T22:19:08.872Z","0.18.1":"2015-06-16T15:56:00.937Z","0.18.9":"2015-08-09T10:06:23.671Z","0.21.0":"2018-02-06T11:14:40.982Z","5.0.0":"2019-07-31T03:32:26.036Z","0.9.3":"2014-10-21T10:44:55.616Z","0.7.0":"2014-08-06T01:32:41.279Z","0.21.1":"2018-03-30T15:51:36.440Z","4.0.2":"2019-07-08T14:49:54.118Z","0.21.2":"2018-04-04T15:41:22.149Z","0.21.3":"2018-04-16T15:22:37.895Z","4.0.0":"2019-06-30T02:30:05.678Z","0.21.4":"2018-05-31T15:35:04.498Z","4.0.1":"2019-07-06T22:34:18.642Z","0.21.5":"2018-09-23T21:54:40.392Z","0.21.6":"2019-01-15T23:28:23.453Z","6.6.0":"2020-09-12T00:14:50.626Z","6.6.1":"2020-09-12T01:59:40.395Z","0.17.1":"2015-06-04T15:35:46.960Z","0.17.0":"2015-06-04T14:44:28.561Z","2.0.0-alpha.1":"2018-08-31T15:50:37.485Z","6.5.0":"2020-08-10T20:13:11.958Z","0.20.0":"2017-01-24T12:40:16.184Z","0.20.1":"2017-01-26T06:18:51.743Z"},"readmeFilename":"README.md","homepage":"https://github.com/systemjs/systemjs#readme"}