{"maintainers":[{"name":"anonymous","email":"shlomiasaf@gmail.com"}],"keywords":["angular","compiler","webpack","laoder","plugin"],"dist-tags":{"latest":"4.1.2"},"author":{"name":"Shlomi Assaf","email":"shlomiasaf@gmail.com"},"description":"A wrapper for the @ngtools/webpack with hooks into the compilation process","readme":"[![Build Status](https://travis-ci.org/shlomiassaf/ngc-webpack.svg?branch=master)](https://travis-ci.org/shlomiassaf/ngc-webpack)\n\n# ngc-webpack\n[@ngtools/webpack](https://github.com/angular/angular-cli/tree/master/packages/%40ngtools/webpack) wrapper with hooks into\nthe compilation process and library mode compilation support.\n\n - [Background](#background)\n - [Porting to/from `@ngtools/webpack](#porting)\n - [Usage](#usage)\n   - [Advanced AOT production builds](#advanced-aot-production-builds)\n   - [Options](#ngcwebpackpluginoptions)\n - [Optional Patching](#optional-patching)\n\n# Library mode:\nLibrary mode is the simple **compile** process we know from `tsc` / `ngc`\nwhere each module (`TS` file) is compiled into a matching `JS` file.\n\nThe output files are then bundled with RollUp to create various bundle\nformats for published libraries (FESM, FESM2015, UMD, etc.)\n\nThis process is fairly simple as is but with the angular AOT compiler\nin the middle things are a bit more complex.\n\n`@ngtools/webpack` does not support library compilation and it is (1.8.x)\ndesign for application bundling only.\n\nThe `@angular/compiler-cli` does support library compilation through its\n`ngc` command line utility but it does not know about webpack,\nresources will not go through the loader chain and so using formats not\nsupported by the angular cli will not work (SCSS, LESS etc).\n\nAdditionally, `templareUrl` and `stylesUrls` are left as is which is not\nsuitable for libraries, resources must get inlined into the sources code (JS)\nand the AOT generated `metadata.json` files.\n\n### Webpack based projects:\n`ngc-webpack` library mode allows AOT compilation for libraries through\na CLI interface (`ngc-w`) or directly using it via node API with\nfull support for inline and complete webpack loader chain compilation (for resources).\n\n### Angular CLI based projects:\n`ngc-webpack` also support library compilation for `@angular/cli` projects\nby importing the configuration from the cli and using it to build libraries.\nThis works great with monorepos and setup's based on [nrwl's `Nx`](https://github.com/nrwl/nx).\nAlso available by CLI interface (`ngc-w-cli`) or node API.\n\n\nFor more information see:\n - [Library compilation mode](#LIBRARY_MODE.md)\n\n\n## Background:\n`ngc-webpack` started as a wrapper for `@angular/compiler-cli` when angular\nbuild tools were limited.\n\nIt offered non `@angular/cli` users the ability to perform an AOT builds\nwith all the required operations while still using a dedicated typescript\nloader (e.g. `ts-loader`, `awesome-typescript-loader`).\n\nWith version 5 of angular, the `compiler-cli` introduces a dramatic\nrefactor in the compilation process, enabling watch mode for AOT and\nmoving to a (almost) native TS compilation process using transformers.\n\nThe support angular 5, a complete rewrite for `ngc-webpack` was required.\nSince `@ngtools/webpack` is now a mature plugin with a rich feature set\nand core team support it is not smart (IMHO) to try and re-implement it.\n\nThis is why, from version 4 of `ngc-webpack`, the library will wrap\n`@ngtools/webpack` and only provide hooks into the compilation process.\n\nThe implications are:\n  - Using `ngc-webpack` is safe, at any point you can move to `@ngtools/webpack`.\n  - All features of `@ngtools/webpack` will work since `ngc-webpack` acts as a proxy.\n    This includes i18n support which was not included in `ngc-webpack` 3.x.x\n  - You can hack your way into the AOT compilation process, which opens\n    a lot of options, especially for library compilation.\n  - Using a custom typescript loader is no longer supported, you need to\n    use the loader provided with `@ngtools/webpack` (for JIT see Using custom TypeScript loaders)\n\n## <a name=\"porting\">Porting to/from `@ngtools/webpack\nUsing `ngc-webpack` as a proxy to `@ngtools/webpack` is safe and allows\nquick and transparent porting between the libraries.\n\nIn fact, if you use `ngc-webpack` without using it's extensibility\nfeatures you probably better of using `@ngtools/webpack` directly instead.\n\nWhen using `ngc-webpack` features, including library compilation mode,\nyou should be aware that `ngc-webpack` is using experimental angular APIs\nas well as internal implementation of angular code to allow extensibility.\n\n## Usage:\n```bash\nnpm install ngc-webpack -D\n```\n\n**webpack.config.js**\n```js\n{\n    module: {\n        rules: [\n            {\n                test: /(?:\\.ngfactory\\.js|\\.ngstyle\\.js|\\.ts)$/,\n                use: [ '@ngtools/webpack' ]\n            }\n        ]\n    },\n    plugins: [\n        new ngcWebpack.NgcWebpackPlugin({\n          AOT: true,                            // alias for skipCodeGeneration: false\n          tsConfigPath: './tsconfig.json',\n          mainPath: 'src/main.ts'               // will auto-detect the root NgModule.\n        })\n    ]\n}\n```\n\n### Advanced AOT production builds:\nProduction builds must be AOT compiled, this is clear, but we can optimize\nthe build even further, and the angular team has us covered using\n`'@angular-devkit/build-optimizer`:\n\n**webpack.config.js**\n```js\nconst PurifyPlugin = require('@angular-devkit/build-optimizer').PurifyPlugin;\n\nconst AOT = true;\n\nconst tsLoader = {\n    test: /(?:\\.ngfactory\\.js|\\.ngstyle\\.js|\\.ts)$/,\n    use: [ '@ngtools/webpack' ]\n};\n\nif (AOT) {\n    tsLoader.use.unshift({\n        loader: '@angular-devkit/build-optimizer/webpack-loader',\n        // options: { sourceMap: true }\n    });\n}\n\nreturn {\n    module: {\n        rules: [\n            tsLoader\n        ]\n    },\n    plugins: [\n        new ngcWebpack.NgcWebpackPlugin({\n          AOT,                            // alias for skipCodeGeneration: false\n          tsConfigPath: './tsconfig.json',\n          mainPath: 'src/main.ts'               // will auto-detect the root NgModule.\n        }).concat(AOT ? [ new PurifyPlugin() ] : []),\n    ]\n}\n```\n\n> The examples above are super simplified and describe the basic units\nfor compilation, the `@angular/cli` uses them but with a lot more loaders/plugins/logic.\n\nFor more information about setting up the plugin see [@ngtools/webpack](https://github.com/angular/angular-cli/tree/master/packages/%40ngtools/webpack)\n\n### NgcWebpackPluginOptions:\nThe plugin accepts an options object of type `NgcWebpackPluginOptions`.\n\n`NgcWebpackPluginOptions` extends [AngularCompilerPluginOptions](https://github.com/angular/angular-cli/blob/master/packages/%40ngtools/webpack/src/plugin.ts) so\nall `@ngtools/webpack` options apply.\n\n`NgcWebpackPluginOptions` adds the following options:\n```ts\nexport interface NgcWebpackPluginOptions extends AngularCompilerPluginOptions {\n\n  /**\n   * An alias for `AngularCompilerPluginOptions.skipCodeGeneration` simply to make it more readable.\n   * If `skipCodeGeneration` is set, this value is ignored.\n   * If this value is not set, the default value is taken from `skipCodeGeneration`\n   * (which means AOT = true)\n   */\n  AOT?: boolean;\n\n  /**\n   * A hook that invokes before the plugin start the compilation process (compiler 'run' event).\n   * ( resourceCompiler: { get(filename: string): Promise<string> }) => Promise<void>;\n   *\n   * The hook accepts a resource compiler which able (using webpack) to perform compilation on\n   * files using webpack's loader chain and return the final content.\n   * @param resourceCompiler\n   */\n  beforeRun?: BeforeRunHandler\n\n  /**\n   * Transform a source file (ts, js, metadata.json, summery.json).\n   * If `predicate` is true invokes `transform`\n   *\n   * > Run's in both AOT and JIT mode on all files, internal and external as well as resources.\n   *\n   *\n   *  - Do not apply changes to resource files using this hook when in AOT mode, it will not commit.\n   *  - Do not apply changes to resource files in watch mode.\n   *\n   * Note that source code transformation is sync, you can't return a promise (contrary to `resourcePathTransformer`).\n   * This means that you can not use webpack compilation (or any other async process) to alter source code context.\n   * If you know the files you need to transform, use the `beforeRun` hook.\n   */\n  readFileTransformer?: ReadFileTransformer;\n\n\n  /**\n   * Transform the path of a resource (html, css, etc)\n   * (path: string) => string;\n   *\n   * > Run's in AOT mode only and on metadata resource files (templateUrl, styleUrls)\n   */\n  resourcePathTransformer?: ResourcePathTransformer;\n\n  /**\n   * Transform a resource (html, css etc)\n   * (path: string, source: string) => string | Promise<string>;\n   *\n   * > Run's in AOT mode only and on metadata resource files (templateUrl, styleUrls)\n   */\n  resourceTransformer?: ResourceTransformer;\n\n  /**\n   * Add custom TypeScript transformers to the compilation process.\n   *\n   * Transformers are applied after the transforms added by `@angular/compiler-cli` and\n   * `@ngtools/webpack`.\n   *\n   * > `after` transformers are currently not supported.\n   */\n  tsTransformers?: ts.CustomTransformers;\n}\n```\n\n## Optional Patching:\n`ngc-webpack` comes with optional patches to angular, these are workarounds\nto existing issue that will probably get fixed in the future making the patch\nobsolete. Patch's address specific use case so make sure you apply them only\nif required.\n\n### `disableExpressionLowering` fix (`@angular/compiler-cli`):\nThe `compiler-cli` (version 5.0.1) comes with a new feature called\n**lowering expressions** which basically means we can now use arrow\nfunctions in decorator metadata (usually provider metadata)\n\nThis feature has bug the will throw when setting an arrow function:\n```ts\nexport function MyPropDecorator(value: () => any) {\n  return (target: Object, key: string) => {  }\n}\n\nexport class MyClass {\n  @MyPropDecorator(() => 15) // <- will throw because of this\n  prop: string;\n}\n```\n\nThe compiler will lower the expression to:\n```ts\nexport const ɵ0 = function () { return 15; };\n```\n\nbut in the TS compilation process will fail because of a TS bug.\n\nThis is an edge case which you probably don't care about, but if so\nthere are 2 options to workaround:\n\n  1. Set `disableExpressionLowering` to false in `tsconfig.json` `angularCompilerOptions`\n  2. Import a patch, at the top of your webpack config module:\n  ```js\n   require('ngc-webpack/src/patch-angular-compiler-cli');\n  ```\n\nThe issue should be fixed in next versions.\nSee https://github.com/angular/angular/issues/20216\n\n#### Using custom TypeScript loaders\nFrom `ngc-webpack` 4 using a custom ts loader is not supported for AOT\ncompilation and partially supported for JIT.\n\nIf you must use your own TS Loader for JIT, you can do so.\nThis is not recommended mainly because of the mis alignment between the\ncompilations.\n\nTo use a custom loader (JIT only), remove the `@ngtools/webpack` loader\nand set your own loader. To support lazy loaded modules, use a module\nloader that can detect them (e.g. [ng-router-loader](https://github.com/shlomiassaf/ng-router-loader))\n\n## Use case\nThe feature set within `ngc-webpack` is getting more and more specific.\nThe target audience is small as most developers will not require hooking\ninto the compilation.\n\nIt is mostly suitable for library builds, where you can control the\nmetadata output, inline code and more...\n\nI personally use it to restyle material from the ground.\nThe plugin enables re-writing of the `index.metadata.json` files on\nthe fly which allows sending custom styles to the compiler instead of\nthe ones that comes with material.\n\n\n## Future\nBecause `ngc-webpack` becomes a niche, I believe integrating the hooks\ninto `@ngtools/webpack` makes sense and then deprecating the library while\neasy porting to `@ngtools/webpack`. If someone would like to help working\non it, please come forward :)\n\nI believe it angular team is open to such idea since `@ngtools/webpack`\nis separated from the cli.\n\n","repository":{"type":"git","url":"git+https://github.com/shlomiassaf/ngc-webpack.git"},"license":"MIT","bugs":{"url":"https://github.com/shlomiassaf/ngc-webpack/issues"},"versions":{"1.0.0":{"name":"ngc-webpack","version":"1.0.0","license":"MIT","main":"src/main.js","typings":"src/main.d.ts","bin":{"ngc-w":"./src/main.js"},"devDependencies":{"@types/node":"^6.0.54","@types/webpack":"^2.0.0","minimist":"^1.2.0","@angular/compiler":"^2.0.0","@angular/compiler-cli":"^2.0.0","@angular/tsc-wrapped":"0.5.0","typescript":"^2.0.0","webpack":"2.2.0-rc.3"},"description":"**compiler-cli** with webpack's loader chain.","_id":"ngc-webpack@1.0.0","scripts":{},"_shasum":"c70f966a61cc0a3910c60d08c6f037cd473415a3","_from":"dist","_resolved":"file:dist","_npmVersion":"3.10.9","_nodeVersion":"6.9.1","_npmUser":{"name":"anonymous","email":"shlomiasaf@gmail.com"},"dist":{"shasum":"c70f966a61cc0a3910c60d08c6f037cd473415a3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ngc-webpack/-/ngc-webpack-1.0.0.tgz","integrity":"sha512-Kcg9cnX2n7N0L+aKfV14+Z0E84m8Jklzvw6HDH6MPfojwhLYysAHYVTLZNooiczrKHsFqlipYXxnikFD/lGzBA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCGjQfn/TXsQWWAIhVDr2aKtErZxpg9BR1KMjDbEe/xMQIgIjHEvSkkZrR8cMvNy8yK+OorVAfZjxlNcbEtoCgt8b8="}]},"maintainers":[{"name":"anonymous","email":"shlomiasaf@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ngc-webpack-1.0.0.tgz_1482962143774_0.7063937599305063"}},"1.0.1":{"name":"ngc-webpack","version":"1.0.1","license":"MIT","main":"src/main.js","typings":"src/main.d.ts","bin":{"ngc-w":"./src/main.js"},"devDependencies":{"@types/node":"^6.0.54","@types/webpack":"^2.0.0","minimist":"^1.2.0","@angular/compiler":"^2.0.0","@angular/compiler-cli":"^2.0.0","@angular/tsc-wrapped":"0.5.0","typescript":"^2.0.0","webpack":"2.2.0-rc.3"},"description":"**compiler-cli** with webpack's loader chain.","_id":"ngc-webpack@1.0.1","scripts":{},"_shasum":"ddf70fee899e5e62204756e434281ca5c32d6a4c","_from":"dist","_resolved":"file:dist","_npmVersion":"3.10.9","_nodeVersion":"6.9.1","_npmUser":{"name":"anonymous","email":"shlomiasaf@gmail.com"},"dist":{"shasum":"ddf70fee899e5e62204756e434281ca5c32d6a4c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ngc-webpack/-/ngc-webpack-1.0.1.tgz","integrity":"sha512-0NbOwntixdMqYjX1saeryLHzY99oBNhcH4YWagY8a4xJx9s+s5p5hcKtq9f9doZbfr2aEh/p3l2sbbSIMmxHhQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCSGRny0ptcFuVEUoZetvctv8pTAA/RX3cU2PbsVUTAogIhANjnUh+J8c+vCF0WXeyUk5SjdJEQyjijGlCfw2k0MF00"}]},"maintainers":[{"name":"anonymous","email":"shlomiasaf@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/ngc-webpack-1.0.1.tgz_1482962449036_0.2874498509336263"}},"1.0.2":{"name":"ngc-webpack","version":"1.0.2","license":"MIT","main":"src/main.js","typings":"src/main.d.ts","bin":{"ngc-w":"./src/main.js"},"dependencies":{"reflect-metadata":"^0.1.2","@angular/tsc-wrapped":"0.5.0","minimist":"^1.2.0"},"devDependencies":{"@types/node":"^6.0.54","@types/webpack":"^2.0.0","@angular/compiler":"^2.0.0","@angular/compiler-cli":"^2.0.0","typescript":"^2.0.0","webpack":"2.2.0-rc.3"},"description":"**compiler-cli** with webpack's loader chain.","_id":"ngc-webpack@1.0.2","scripts":{},"_shasum":"4b129a5859387fd2a78b6c7f17332eb13deb1476","_from":"dist","_resolved":"file:dist","_npmVersion":"3.10.9","_nodeVersion":"6.9.1","_npmUser":{"name":"anonymous","email":"shlomiasaf@gmail.com"},"dist":{"shasum":"4b129a5859387fd2a78b6c7f17332eb13deb1476","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ngc-webpack/-/ngc-webpack-1.0.2.tgz","integrity":"sha512-iiBRp52be4Yv5TA84bvTNoXNn05vpK+c+UjKaOT2JTjgvMDEJ5il/Ybp9rG8A3H16wv/ag0uN7+t9T2XWsAdMA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCxOG25PgeC52tBGWduFXp0kwdvFhGs49e1QMJS77tyggIgPeVR2yY7ZXfCaNcsF1wR1Z6VmZQXlyTaHCVp5ooici4="}]},"maintainers":[{"name":"anonymous","email":"shlomiasaf@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/ngc-webpack-1.0.2.tgz_1482967469175_0.7283325635362417"}},"1.0.3":{"name":"ngc-webpack","version":"1.0.3","license":"MIT","main":"index.js","typings":"index.d.ts","bin":{"ngc-w":"./src/main.js"},"dependencies":{"reflect-metadata":"^0.1.2","@angular/tsc-wrapped":"0.5.0","minimist":"^1.2.0"},"devDependencies":{"@types/node":"^6.0.54","@types/webpack":"^2.0.0","@angular/compiler":"^2.0.0","@angular/compiler-cli":"^2.0.0","typescript":"^2.0.0","webpack":"2.2.0-rc.3"},"description":"**compiler-cli** with webpack's loader chain.","_id":"ngc-webpack@1.0.3","scripts":{},"_shasum":"8241771f0298413f44932d44a783970511e2d42f","_from":"dist","_resolved":"file:dist","_npmVersion":"3.10.9","_nodeVersion":"6.9.1","_npmUser":{"name":"anonymous","email":"shlomiasaf@gmail.com"},"dist":{"shasum":"8241771f0298413f44932d44a783970511e2d42f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ngc-webpack/-/ngc-webpack-1.0.3.tgz","integrity":"sha512-WPYqubDhCji7Mqz+nRdZiiAlQYO03kRvg/Y/esNqMCAKxgDk0iJj7JVLAW135LxSdwB4zLhesXjfQE/wGG7N9g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAU17SetUyMFnTuFRARRRMAco2sZmRGQoUIlP3ZDMqhCAiEA3yMt0cPgrUv0o2QaQLQkmD0pZ/khazNCPLW18esWrJ4="}]},"maintainers":[{"name":"anonymous","email":"shlomiasaf@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/ngc-webpack-1.0.3.tgz_1483041992200_0.6076390880625695"}},"1.0.4":{"name":"ngc-webpack","version":"1.0.4","license":"MIT","main":"index.js","typings":"index.d.ts","bin":{"ngc-w":"./src/main.js"},"dependencies":{"reflect-metadata":"^0.1.2","@angular/tsc-wrapped":"0.5.0","minimist":"^1.2.0"},"devDependencies":{"@types/node":"^6.0.54","@types/webpack":"^2.0.0","@angular/compiler":"^2.0.0","@angular/compiler-cli":"^2.0.0","typescript":"^2.0.0","webpack":"2.2.0-rc.3"},"description":"**compiler-cli** with webpack's loader chain.","_id":"ngc-webpack@1.0.4","scripts":{},"_shasum":"260aaa7cf9e2f34e5840d6b8bdd847c161dd015a","_from":"dist","_resolved":"file:dist","_npmVersion":"3.10.9","_nodeVersion":"6.9.1","_npmUser":{"name":"anonymous","email":"shlomiasaf@gmail.com"},"dist":{"shasum":"260aaa7cf9e2f34e5840d6b8bdd847c161dd015a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ngc-webpack/-/ngc-webpack-1.0.4.tgz","integrity":"sha512-AMVuBj747Nh8J2ywfGhEBiv/9WqEpOqtNk6UR1WpKNdRaK5M84P6/pDTZqhw2Lrxw2kgQ7bIcwHZIYVBB6/wuA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDZ442fLZho0eDmlO1b29xlyD6iAoUzcDqcLI2RiCYxewIhAIS0LhhkQnoNehbKAq/UsGmfuxdotkBhVfdgtkEz59om"}]},"maintainers":[{"name":"anonymous","email":"shlomiasaf@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ngc-webpack-1.0.4.tgz_1483048005809_0.684715686365962"}},"1.0.5":{"name":"ngc-webpack","version":"1.0.5","license":"MIT","main":"index.js","typings":"index.d.ts","bin":{"ngc-w":"./src/main.js"},"dependencies":{"reflect-metadata":"^0.1.2","@angular/tsc-wrapped":"0.5.0","minimist":"^1.2.0"},"devDependencies":{"@types/node":"^6.0.54","@types/webpack":"^2.0.0","@angular/compiler":"^2.0.0","@angular/compiler-cli":"^2.0.0","typescript":"^2.0.0","webpack":"2.2.0-rc.3"},"description":"**compiler-cli** with webpack's loader chain.","_id":"ngc-webpack@1.0.5","scripts":{},"_shasum":"f9c92d7ce81723243e9c1ecc6d6c49c9f2d433d2","_from":"dist","_resolved":"file:dist","_npmVersion":"3.10.9","_nodeVersion":"6.9.1","_npmUser":{"name":"anonymous","email":"shlomiasaf@gmail.com"},"dist":{"shasum":"f9c92d7ce81723243e9c1ecc6d6c49c9f2d433d2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ngc-webpack/-/ngc-webpack-1.0.5.tgz","integrity":"sha512-o0aNiAhMJydVDmDiYYsctil/GRRCjvQRtMsyA2jCkbTBmWEJuxkQuUkid32JidZXUbjTNS8OQyBSQbv7kHWx8Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCdwaHANsF3ynUmmuwLN7G+fo4QNyrZfBniassoteGGKQIgH7fWc3i7g+Oi+f3tQb5nQYxVzXMtI9J2+3HUPX3ddf8="}]},"maintainers":[{"name":"anonymous","email":"shlomiasaf@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/ngc-webpack-1.0.5.tgz_1483148182750_0.012057314859703183"}},"1.0.6":{"name":"ngc-webpack","version":"1.0.6","description":"A wrapper for the angular compiler-cli with webpack integration","author":{"name":"Shlomi Assaf","email":"shlomiasaf@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/shlomiassaf/ngc-webpack.git"},"main":"index.js","typings":"index.d.ts","keywords":["angular","compiler","webpack","laoder","plugin"],"bin":{"ngc-w":"./src/main.js"},"dependencies":{"reflect-metadata":"^0.1.2","@angular/tsc-wrapped":"0.5.0","minimist":"^1.2.0"},"devDependencies":{"@types/node":"^6.0.54","@types/webpack":"^2.0.0","@angular/compiler":"^2.0.0","@angular/compiler-cli":"^2.0.0","typescript":"^2.0.0","webpack":"2.2.0-rc.3"},"bugs":{"url":"https://github.com/shlomiassaf/ngc-webpack/issues"},"homepage":"https://github.com/shlomiassaf/ngc-webpack#readme","_id":"ngc-webpack@1.0.6","scripts":{},"_shasum":"8f326b9820200b45f3ff4b0b1dcebcc5de72ae00","_from":"dist","_resolved":"file:dist","_npmVersion":"3.10.9","_nodeVersion":"6.9.1","_npmUser":{"name":"anonymous","email":"shlomiasaf@gmail.com"},"dist":{"shasum":"8f326b9820200b45f3ff4b0b1dcebcc5de72ae00","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ngc-webpack/-/ngc-webpack-1.0.6.tgz","integrity":"sha512-kdhzZ3h4F/MK5HQhOibBWhGv7M6l14cOL8UzuBdjFLEBG3XekM+6z962tBnmcqB4mqNIgNCruNVEqPEqVXRfzg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDcscKlADV8BCuJNXo6P8dE7pRsOovaS9vDnUCYgDfWuQIhAPlT1eOi+KxnepjSDEyOde5et/YpVvME/cTXuba475Bs"}]},"maintainers":[{"name":"anonymous","email":"shlomiasaf@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/ngc-webpack-1.0.6.tgz_1483459151232_0.11889533651992679"}},"1.0.7":{"name":"ngc-webpack","version":"1.0.7","description":"A wrapper for the angular compiler-cli with webpack integration","author":{"name":"Shlomi Assaf","email":"shlomiasaf@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/shlomiassaf/ngc-webpack.git"},"main":"index.js","typings":"index.d.ts","keywords":["angular","compiler","webpack","laoder","plugin"],"bin":{"ngc-w":"./src/main.js"},"dependencies":{"@angular/tsc-wrapped":"0.5.0","minimist":"^1.2.0","reflect-metadata":"^0.1.2","ts-node":"^2.0.0"},"devDependencies":{"@angular/compiler":"^2.0.0","@angular/compiler-cli":"^2.0.0","@types/node":"^6.0.54","@types/webpack":"^2.0.0","typescript":"^2.0.0","webpack":"2.2.0-rc.3"},"bugs":{"url":"https://github.com/shlomiassaf/ngc-webpack/issues"},"homepage":"https://github.com/shlomiassaf/ngc-webpack#readme","_id":"ngc-webpack@1.0.7","scripts":{},"_shasum":"c8fbade64ed238e31568a1b6d0f8d52360ab7349","_from":"dist","_resolved":"file:dist","_npmVersion":"3.10.9","_nodeVersion":"6.9.1","_npmUser":{"name":"anonymous","email":"shlomiasaf@gmail.com"},"dist":{"shasum":"c8fbade64ed238e31568a1b6d0f8d52360ab7349","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ngc-webpack/-/ngc-webpack-1.0.7.tgz","integrity":"sha512-96Iko2CpbUZBWhkOMdNCOy63CXReRW5XwvEpCqH7qmoUs7EzLiJekUo+ZwdbgmoSxqjVuSTYAROVjvFU7zObuw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIA9AlOPf6npgLGq5mdnNSrockhCcGMzNj/KVM9saE9C3AiB3wS6DhKOPuLpWPSnQe3aY/rzNzxVaQ5VF7KAbOJ0lPQ=="}]},"maintainers":[{"name":"anonymous","email":"shlomiasaf@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/ngc-webpack-1.0.7.tgz_1483545904408_0.47205366916023195"}},"1.0.8":{"name":"ngc-webpack","version":"1.0.8","description":"A wrapper for the angular compiler-cli with webpack integration","author":{"name":"Shlomi Assaf","email":"shlomiasaf@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/shlomiassaf/ngc-webpack.git"},"main":"index.js","typings":"index.d.ts","keywords":["angular","compiler","webpack","laoder","plugin"],"bin":{"ngc-w":"./src/main.js"},"dependencies":{"@angular/tsc-wrapped":"0.5.0","minimist":"^1.2.0","reflect-metadata":"^0.1.2","ts-node":"^2.0.0"},"devDependencies":{"@angular/compiler":"^2.0.0","@angular/compiler-cli":"^2.0.0","@types/node":"^6.0.54","@types/webpack":"^2.0.0","typescript":"^2.0.0","webpack":"2.2.0-rc.3"},"bugs":{"url":"https://github.com/shlomiassaf/ngc-webpack/issues"},"homepage":"https://github.com/shlomiassaf/ngc-webpack#readme","_id":"ngc-webpack@1.0.8","scripts":{},"_shasum":"456c0905f4ac9f12e73313225eb95e9d7e2c267a","_from":"dist","_resolved":"file:dist","_npmVersion":"3.10.9","_nodeVersion":"6.9.1","_npmUser":{"name":"anonymous","email":"shlomiasaf@gmail.com"},"dist":{"shasum":"456c0905f4ac9f12e73313225eb95e9d7e2c267a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ngc-webpack/-/ngc-webpack-1.0.8.tgz","integrity":"sha512-2Tk53cM9Xc8prWp9Cj/oTa8i1o5lR4PQmV8lbuRwHQdzTWg0WfFgkhZlud/2K+ujSKt0FQJxF0rFDV8VncTH2A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD8jhey1grZ5nPJqFl9u5vMKa3FXeRx8EKX3fvBpm0YmgIhAMqY6jwm6403cuBvzjpXHOrOCLoLqsqT2D19pNK+slQZ"}]},"maintainers":[{"name":"anonymous","email":"shlomiasaf@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ngc-webpack-1.0.8.tgz_1483551646657_0.12113583320751786"}},"1.1.0":{"name":"ngc-webpack","version":"1.1.0","description":"A wrapper for the angular compiler-cli with webpack integration","author":{"name":"Shlomi Assaf","email":"shlomiasaf@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/shlomiassaf/ngc-webpack.git"},"main":"index.js","typings":"index.d.ts","keywords":["angular","compiler","webpack","laoder","plugin"],"scripts":{"clean:build":"npm run rimraf -- dist","clean:test":"npm run rimraf -- __codegen__","ci":"npm run test","test":"npm run build && ./node_modules/.bin/mocha dist/test spec --recursive","watch":"npm run build -- -w","build":"npm run clean:build && tsc --project tsconfig.json","rimraf":"rimraf"},"bin":{"ngc-w":"./src/main.js"},"dependencies":{"@angular/tsc-wrapped":"0.5.0","minimist":"^1.2.0","reflect-metadata":"^0.1.2","ts-node":"^2.0.0"},"devDependencies":{"@angular/common":"^2.4.1","@angular/compiler":"^2.4.1","@angular/compiler-cli":"^2.4.1","@angular/core":"^2.4.1","@angular/forms":"^2.4.1","@angular/http":"^2.4.1","@angular/platform-browser":"^2.4.1","@angular/platform-browser-dynamic":"^2.4.1","@angular/router":"^3.4.1","@types/chai":"^3.4.34","@types/mocha":"^2.2.35","@types/node":"^6.0.55","@types/webpack":"^2.1.0","angular2-template-loader":"^0.6.0","awesome-typescript-loader":"~3.0.0-beta.17","chai":"^3.5.0","css-loader":"^0.26.0","mocha":"^3.2.0","ng-router-loader":"^1.0.2","node-map-directory":"0.1.0","node-sass":"^4.1.1","raw-loader":"0.5.1","rimraf":"~2.5.4","rxjs":"^5.0.2","sass-loader":"^4.1.1","string-replace-loader":"1.0.5","style-loader":"^0.13.1","to-string-loader":"^1.1.4","typescript":"2.0.10","webpack":"2.2.0-rc.3","zone.js":"~0.7.4"},"bugs":{"url":"https://github.com/shlomiassaf/ngc-webpack/issues"},"homepage":"https://github.com/shlomiassaf/ngc-webpack#readme","_id":"ngc-webpack@1.1.0","_shasum":"d95b934ff04fa1b9f899c7d32d0d6e6592f9b479","_from":"dist","_resolved":"file:dist","_npmVersion":"3.10.9","_nodeVersion":"6.9.1","_npmUser":{"name":"anonymous","email":"shlomiasaf@gmail.com"},"dist":{"shasum":"d95b934ff04fa1b9f899c7d32d0d6e6592f9b479","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ngc-webpack/-/ngc-webpack-1.1.0.tgz","integrity":"sha512-4pBslxlxCtLvQ+oVOdEgfV/99ml+yrhNOym/SYznjsahQEDA9gvZbGarCTysEAnXi7Yhi8DkX8zaSfUETv6Qqw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDLXGK1emyYAbTreLAdQv4OEEeJm6Oyd9a4FEk6hLis+AIhAOdEE+wo8L72yjLLL51Jp7OrFZc1XHCKvQ1w/2VRCf7/"}]},"maintainers":[{"name":"anonymous","email":"shlomiasaf@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ngc-webpack-1.1.0.tgz_1483682253024_0.6176783128175884"}},"1.1.2":{"name":"ngc-webpack","version":"1.1.2","description":"A wrapper for the angular compiler-cli with webpack integration","author":{"name":"Shlomi Assaf","email":"shlomiasaf@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/shlomiassaf/ngc-webpack.git"},"main":"index.js","typings":"index.d.ts","keywords":["angular","compiler","webpack","laoder","plugin"],"scripts":{"clean:build":"npm run rimraf -- dist","ci":"npm run test","test":"npm run build && ./node_modules/.bin/mocha dist/test/*.spec.js --recursive","watch":"npm run build -- -w","build":"npm run clean:build && tsc --project tsconfig.json","rimraf":"rimraf"},"bin":{"ngc-w":"./src/main.js"},"dependencies":{"minimist":"^1.2.0","reflect-metadata":"^0.1.2","ts-node":"^2.0.0"},"peerDependencies":{"@angular/compiler-cli":"^2.4.1"},"devDependencies":{"@angular/common":"^2.4.1","@angular/compiler":"^2.4.1","@angular/compiler-cli":"^2.4.1","@angular/core":"^2.4.1","@angular/forms":"^2.4.1","@angular/http":"^2.4.1","@angular/platform-browser":"^2.4.1","@angular/platform-browser-dynamic":"^2.4.1","@angular/router":"^3.4.1","@types/chai":"^3.4.34","@types/mocha":"^2.2.35","@types/node":"^6.0.55","@types/webpack":"^2.1.0","angular2-template-loader":"^0.6.0","awesome-typescript-loader":"~3.0.0-beta.17","chai":"^3.5.0","css-loader":"^0.26.0","mocha":"^3.2.0","ng-router-loader":"^1.0.2","node-map-directory":"0.1.0","node-sass":"^4.1.1","raw-loader":"0.5.1","rimraf":"~2.5.4","rxjs":"^5.0.2","sass-loader":"^4.1.1","string-replace-loader":"1.0.5","style-loader":"^0.13.1","to-string-loader":"^1.1.4","typescript":"2.0.10","webpack":"2.2.0-rc.3","zone.js":"~0.7.4"},"bugs":{"url":"https://github.com/shlomiassaf/ngc-webpack/issues"},"homepage":"https://github.com/shlomiassaf/ngc-webpack#readme","_id":"ngc-webpack@1.1.2","_shasum":"1a9cb84046e720d1c6f381bd07336904cea9ef18","_from":"dist","_resolved":"file:dist","_npmVersion":"3.10.9","_nodeVersion":"6.9.1","_npmUser":{"name":"anonymous","email":"shlomiasaf@gmail.com"},"dist":{"shasum":"1a9cb84046e720d1c6f381bd07336904cea9ef18","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ngc-webpack/-/ngc-webpack-1.1.2.tgz","integrity":"sha512-11W/S+1dHv9K32nSMtD8vRxVMGAXDzYgnVOtoLOjcTRlIqsZT8ElAUiTHMnvY8FZ59wTxoHKc4woLN3NY7mi7g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD62t4oM2RzbrPJy/HZQrL23oLOr3SL+8GO0zeXLJYi+wIgL1qt8wRVTI5wZ6zHBDvQ38eY0WRVLAqTp+LFZGLcB4k="}]},"maintainers":[{"name":"anonymous","email":"shlomiasaf@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/ngc-webpack-1.1.2.tgz_1484580198630_0.9611210378352553"}},"1.1.3":{"name":"ngc-webpack","version":"1.1.3","description":"A wrapper for the angular compiler-cli with webpack integration","author":{"name":"Shlomi Assaf","email":"shlomiasaf@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/shlomiassaf/ngc-webpack.git"},"main":"index.js","typings":"index.d.ts","keywords":["angular","compiler","webpack","laoder","plugin"],"scripts":{"clean:build":"npm run rimraf -- dist","ci":"npm run test","test":"npm run build && ./node_modules/.bin/mocha dist/test/*.spec.js --recursive","watch":"npm run build -- -w","build":"npm run clean:build && tsc --project tsconfig.json","rimraf":"rimraf"},"bin":{"ngc-w":"./src/main.js"},"dependencies":{"minimist":"^1.2.0","reflect-metadata":"^0.1.2","ts-node":"^2.0.0"},"peerDependencies":{"@angular/compiler-cli":"^2.4.1"},"devDependencies":{"@angular/common":"^2.4.3","@angular/compiler":"^2.4.3","@angular/compiler-cli":"^2.4.3","@angular/core":"^2.4.3","@angular/forms":"^2.4.3","@angular/http":"^2.4.3","@angular/platform-browser":"^2.4.3","@angular/platform-browser-dynamic":"^2.4.3","@angular/router":"^3.4.3","@types/chai":"^3.4.34","@types/mocha":"^2.2.37","@types/node":"^7.0.0","@types/webpack":"^2.2.0","angular2-template-loader":"^0.6.0","awesome-typescript-loader":"^3.0.0-beta.18","chai":"^3.5.0","css-loader":"^0.26.0","mocha":"^3.2.0","ng-router-loader":"^1.0.2","node-map-directory":"0.1.0","node-sass":"^4.3.0","raw-loader":"0.5.1","rimraf":"~2.5.4","rxjs":"^5.0.3","sass-loader":"^4.1.1","string-replace-loader":"1.0.5","style-loader":"^0.13.1","to-string-loader":"^1.1.4","typescript":"2.1.4","webpack":"2.2.0-rc.3","zone.js":"^0.7.5"},"bugs":{"url":"https://github.com/shlomiassaf/ngc-webpack/issues"},"homepage":"https://github.com/shlomiassaf/ngc-webpack#readme","_id":"ngc-webpack@1.1.3","_shasum":"c3482f51fb005a1cf3800589c186e0d2a58c7166","_from":"dist","_resolved":"file:dist","_npmVersion":"4.0.5","_nodeVersion":"6.9.1","_npmUser":{"name":"anonymous","email":"shlomiasaf@gmail.com"},"dist":{"shasum":"c3482f51fb005a1cf3800589c186e0d2a58c7166","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ngc-webpack/-/ngc-webpack-1.1.3.tgz","integrity":"sha512-GvvRquAZWwE4nj3QSisslFVB/TKf5JkjWbHMfT/ceIen6r4Z1PVqVBaFj/nlvdwrx0yNydP+z8BB+LgpIIjxPg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIARpi3u+C4DFrDJJh9QeTO3FjPkLFbvB9s2oYFr8kCrjAiEA5WhiZk64b0Faqfg85exaRkDyrGsKkTts2gF19Bh1jZw="}]},"maintainers":[{"name":"anonymous","email":"shlomiasaf@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ngc-webpack-1.1.3.tgz_1485369574824_0.15141126606613398"}},"1.1.4":{"name":"ngc-webpack","version":"1.1.4","description":"A wrapper for the angular compiler-cli with webpack integration","author":{"name":"Shlomi Assaf","email":"shlomiasaf@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/shlomiassaf/ngc-webpack.git"},"main":"index.js","typings":"index.d.ts","keywords":["angular","compiler","webpack","laoder","plugin"],"scripts":{"clean:build":"npm run rimraf -- dist","ci":"npm run test","test":"npm run build && ./node_modules/.bin/mocha dist/test/*.spec.js --recursive","watch":"npm run build -- -w","build":"npm run clean:build && tsc --project tsconfig.json","rimraf":"rimraf"},"bin":{"ngc-w":"./src/main.js"},"dependencies":{"minimist":"^1.2.0","reflect-metadata":"^0.1.2","ts-node":"^2.0.0"},"peerDependencies":{"@angular/compiler-cli":"^2.4.1"},"devDependencies":{"@angular/common":"^2.4.3","@angular/compiler":"^2.4.3","@angular/compiler-cli":"^2.4.3","@angular/core":"^2.4.3","@angular/forms":"^2.4.3","@angular/http":"^2.4.3","@angular/platform-browser":"^2.4.3","@angular/platform-browser-dynamic":"^2.4.3","@angular/router":"^3.4.3","@types/chai":"^3.4.34","@types/mocha":"^2.2.37","@types/node":"^7.0.0","@types/webpack":"^2.2.0","angular2-template-loader":"^0.6.0","awesome-typescript-loader":"^3.0.0-beta.18","chai":"^3.5.0","css-loader":"^0.26.0","mocha":"^3.2.0","ng-router-loader":"^1.0.2","node-map-directory":"0.1.0","node-sass":"^4.3.0","raw-loader":"0.5.1","rimraf":"~2.5.4","rxjs":"^5.0.3","sass-loader":"^4.1.1","string-replace-loader":"1.0.5","style-loader":"^0.13.1","to-string-loader":"^1.1.4","typescript":"2.1.4","webpack":"2.2.0-rc.3","zone.js":"^0.7.5"},"bugs":{"url":"https://github.com/shlomiassaf/ngc-webpack/issues"},"homepage":"https://github.com/shlomiassaf/ngc-webpack#readme","_id":"ngc-webpack@1.1.4","_shasum":"d2ebd4a985aa0cebe983d3c27a0ccf9c83e8ef36","_from":"dist","_resolved":"file:dist","_npmVersion":"4.0.5","_nodeVersion":"6.9.1","_npmUser":{"name":"anonymous","email":"shlomiasaf@gmail.com"},"dist":{"shasum":"d2ebd4a985aa0cebe983d3c27a0ccf9c83e8ef36","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ngc-webpack/-/ngc-webpack-1.1.4.tgz","integrity":"sha512-C7s0mVAPBnU8NdpV63LylrNnXbW7OPTb/RDGljZ0S/Ym/QlrkFzcaI+PcP5oX6T6N/CuRttc6eGlslXfRY8ZdA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAl/Z2nVTiwP4ofB+cGsed3MN8PC0/oP+jusQtrLCtQSAiEA1wizPf5hlZBE0ysWokKKz1yFl3/rbR+TbGXVm7jp1KI="}]},"maintainers":[{"name":"anonymous","email":"shlomiasaf@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/ngc-webpack-1.1.4.tgz_1485878012910_0.9558699505869299"}},"1.2.0":{"name":"ngc-webpack","version":"1.2.0","description":"A wrapper for the angular compiler-cli with webpack integration","author":{"name":"Shlomi Assaf","email":"shlomiasaf@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/shlomiassaf/ngc-webpack.git"},"main":"index.js","typings":"index.d.ts","keywords":["angular","compiler","webpack","laoder","plugin"],"scripts":{"clean:build":"npm run rimraf -- dist","ci":"npm run test","test":"npm run build && ./node_modules/.bin/mocha dist/test/*.spec.js --recursive","watch":"npm run build -- -w","build":"npm run clean:build && tsc --project tsconfig.json","rimraf":"rimraf"},"bin":{"ngc-w":"./src/main.js"},"dependencies":{"minimist":"^1.2.0","reflect-metadata":"^0.1.2","ts-node":"^2.0.0"},"peerDependencies":{"@angular/compiler-cli":"^2.4.1"},"devDependencies":{"@angular/common":"^2.4.3","@angular/compiler":"^2.4.3","@angular/compiler-cli":"^2.4.3","@angular/core":"^2.4.3","@angular/forms":"^2.4.3","@angular/http":"^2.4.3","@angular/platform-browser":"^2.4.3","@angular/platform-browser-dynamic":"^2.4.3","@angular/router":"^3.4.3","@types/chai":"^3.4.34","@types/mocha":"^2.2.37","@types/node":"^7.0.0","@types/webpack":"^2.2.0","angular2-template-loader":"^0.6.0","awesome-typescript-loader":"^3.0.0-beta.18","chai":"^3.5.0","css-loader":"^0.26.0","mocha":"^3.2.0","ng-router-loader":"^1.0.2","node-map-directory":"0.1.0","node-sass":"^4.3.0","raw-loader":"0.5.1","rimraf":"~2.5.4","rxjs":"^5.0.3","sass-loader":"^4.1.1","string-replace-loader":"1.0.5","style-loader":"^0.13.1","to-string-loader":"^1.1.4","typescript":"2.1.4","webpack":"2.2.0-rc.3","zone.js":"^0.7.5"},"bugs":{"url":"https://github.com/shlomiassaf/ngc-webpack/issues"},"homepage":"https://github.com/shlomiassaf/ngc-webpack#readme","_id":"ngc-webpack@1.2.0","_shasum":"d4b71f733997b8ee26c669ffb77dbfae21c221ba","_from":"dist","_resolved":"file:dist","_npmVersion":"4.0.5","_nodeVersion":"6.9.1","_npmUser":{"name":"anonymous","email":"shlomiasaf@gmail.com"},"dist":{"shasum":"d4b71f733997b8ee26c669ffb77dbfae21c221ba","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ngc-webpack/-/ngc-webpack-1.2.0.tgz","integrity":"sha512-J57MFxDnpu3NdYCv4uM/ioFm8LmRAz7YekJ0j5jP/Ub2Kr160mICX6lTk6g5e+YsuItVmTWjkHyqXnMf3Jw63A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDelT0n5Qs8vk8ANb4Fsr6o705GHyS3nojhrS4ZFw+kSwIgECivtHt/h8/ZlSgDubpVSXyiRUBnqTwF+7LJ/pXlHw8="}]},"maintainers":[{"name":"anonymous","email":"shlomiasaf@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ngc-webpack-1.2.0.tgz_1485896836025_0.5795312696136534"}},"2.0.0":{"name":"ngc-webpack","version":"2.0.0","description":"A wrapper for the angular compiler-cli with webpack integration","author":{"name":"Shlomi Assaf","email":"shlomiasaf@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/shlomiassaf/ngc-webpack.git"},"main":"index.js","typings":"index.d.ts","keywords":["angular","compiler","webpack","laoder","plugin"],"scripts":{"clean:build":"npm run rimraf -- dist","ci":"npm run test","test":"npm run build && ./node_modules/.bin/mocha dist/test/*.spec.js --recursive","watch":"npm run build -- -w","build":"npm run clean:build && tsc --project tsconfig.json","rimraf":"rimraf"},"bin":{"ngc-w":"./src/main.js"},"dependencies":{"minimist":"^1.2.0","reflect-metadata":"^0.1.2","ts-node":"^2.0.0"},"peerDependencies":{"@angular/compiler-cli":"^4.0.0"},"devDependencies":{"@angular/common":"^2.4.3","@angular/compiler":"^2.4.3","@angular/compiler-cli":"^2.4.3","@angular/core":"^2.4.3","@angular/forms":"^2.4.3","@angular/http":"^2.4.3","@angular/platform-browser":"^2.4.3","@angular/platform-browser-dynamic":"^2.4.3","@angular/router":"^3.4.3","@types/chai":"^3.4.34","@types/mocha":"^2.2.37","@types/node":"^7.0.0","@types/webpack":"^2.2.0","angular2-template-loader":"^0.6.0","awesome-typescript-loader":"^3.0.0-beta.18","chai":"^3.5.0","css-loader":"^0.26.0","mocha":"^3.2.0","ng-router-loader":"^1.0.2","node-map-directory":"0.1.0","node-sass":"^4.3.0","raw-loader":"0.5.1","rimraf":"~2.5.4","rxjs":"^5.0.3","sass-loader":"^4.1.1","string-replace-loader":"1.0.5","style-loader":"^0.13.1","to-string-loader":"^1.1.4","typescript":"2.1.4","webpack":"2.2.0-rc.3","zone.js":"^0.7.5"},"bugs":{"url":"https://github.com/shlomiassaf/ngc-webpack/issues"},"homepage":"https://github.com/shlomiassaf/ngc-webpack#readme","_id":"ngc-webpack@2.0.0","_shasum":"ebd1f6937b7b81cbcd6d9d1bd1fa9001c6be145f","_from":"dist","_resolved":"file:dist","_npmVersion":"4.0.5","_nodeVersion":"6.9.1","_npmUser":{"name":"anonymous","email":"shlomiasaf@gmail.com"},"dist":{"shasum":"ebd1f6937b7b81cbcd6d9d1bd1fa9001c6be145f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ngc-webpack/-/ngc-webpack-2.0.0.tgz","integrity":"sha512-etr8r9pD/wJapg60FETbBR0Pryk0UvvNIR30wYVIuXm8cSVUTylFU8IYWgoK2x41RFFMWK9OSYkWkyB69guHfg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDxtt3LIivWTWSfhzgA8OXeih/G17mmdh3j7aUcVaW3JgIhAP7ioDz5ou3nsOOUOjS3bJgmK2xQGj/V9dl9MjrvIqQO"}]},"maintainers":[{"name":"anonymous","email":"shlomiasaf@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/ngc-webpack-2.0.0.tgz_1492013466822_0.6936930757947266"}},"3.0.0":{"name":"ngc-webpack","version":"3.0.0","description":"A wrapper for the angular compiler-cli with webpack integration","author":{"name":"Shlomi Assaf","email":"shlomiasaf@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/shlomiassaf/ngc-webpack.git"},"main":"index.js","typings":"index.d.ts","keywords":["angular","compiler","webpack","laoder","plugin"],"scripts":{"clean:build":"npm run rimraf -- dist","ci":"npm run test","test":"npm run build && ./node_modules/.bin/mocha dist/test/*.spec.js --recursive","watch":"npm run build -- -w","build":"npm run clean:build && tsc --project tsconfig.json","rimraf":"rimraf"},"bin":{"ngc-w":"./src/main.js"},"dependencies":{"minimist":"^1.2.0","reflect-metadata":"^0.1.2","ts-node":"^2.0.0"},"peerDependencies":{"@angular/compiler-cli":"^4.0.0"},"devDependencies":{"@angular/common":"^2.4.3","@angular/compiler":"^2.4.3","@angular/compiler-cli":"^2.4.3","@angular/core":"^2.4.3","@angular/forms":"^2.4.3","@angular/http":"^2.4.3","@angular/platform-browser":"^2.4.3","@angular/platform-browser-dynamic":"^2.4.3","@angular/router":"^3.4.3","@types/chai":"^3.4.34","@types/mocha":"^2.2.37","@types/node":"^7.0.0","@types/webpack":"^2.2.0","angular2-template-loader":"^0.6.0","awesome-typescript-loader":"^3.0.0-beta.18","chai":"^3.5.0","css-loader":"^0.26.0","mocha":"^3.2.0","ng-router-loader":"^1.0.2","node-map-directory":"0.1.0","node-sass":"^4.3.0","raw-loader":"0.5.1","rimraf":"~2.5.4","rxjs":"^5.0.3","sass-loader":"^4.1.1","string-replace-loader":"1.0.5","style-loader":"^0.13.1","to-string-loader":"^1.1.4","typescript":"2.1.4","webpack":"2.2.0-rc.3","zone.js":"^0.7.5"},"bugs":{"url":"https://github.com/shlomiassaf/ngc-webpack/issues"},"homepage":"https://github.com/shlomiassaf/ngc-webpack#readme","_id":"ngc-webpack@3.0.0","_shasum":"b7caf724e367c22c10f100c5b460f266a0189b63","_from":"dist","_resolved":"file:dist","_npmVersion":"4.2.0","_nodeVersion":"7.4.0","_npmUser":{"name":"anonymous","email":"shlomiasaf@gmail.com"},"dist":{"shasum":"b7caf724e367c22c10f100c5b460f266a0189b63","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ngc-webpack/-/ngc-webpack-3.0.0.tgz","integrity":"sha512-F6NQ/Txh1Dmx+jeYt8RtDWzwZ4dpaPUYB5amqTBKnmJerA5+YkuvyQzAxdF+8Ni+XVOeikkgV0d7kUvtHpt5yQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBE5QJmjH/bzCgUi0mdTXAItWlPI8KLoU4YUndbv8eN9AiARqutVv1P5EF8aAA36TaM1NpQURPH6CMCOBtzW6/GTqg=="}]},"maintainers":[{"name":"anonymous","email":"shlomiasaf@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ngc-webpack-3.0.0.tgz_1497820506563_0.41375087038613856"}},"3.1.0":{"name":"ngc-webpack","version":"3.1.0","description":"A wrapper for the angular compiler-cli with webpack integration","author":{"name":"Shlomi Assaf","email":"shlomiasaf@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/shlomiassaf/ngc-webpack.git"},"main":"index.js","typings":"index.d.ts","keywords":["angular","compiler","webpack","laoder","plugin"],"scripts":{"clean:build":"npm run rimraf -- dist","ci":"npm run test","test":"npm run build && ./node_modules/.bin/mocha dist/test/*.spec.js --recursive","watch":"npm run build -- -w","build":"npm run clean:build && tsc --project tsconfig.json","rimraf":"rimraf"},"bin":{"ngc-w":"./src/main.js"},"dependencies":{"magic-string":"^0.22.3","minimist":"^1.2.0","reflect-metadata":"^0.1.10","semver":"^5.4.1","source-map":"^0.5.6","ts-node":"^3.2.0"},"peerDependencies":{"@angular/compiler-cli":"^4.0.0"},"devDependencies":{"@angular/common":"^4.3.1","@angular/compiler":"^4.3.1","@angular/compiler-cli":"^4.3.1","@angular/core":"^4.3.1","@angular/forms":"^4.3.1","@angular/http":"^4.3.1","@angular/platform-browser":"^4.3.1","@angular/platform-browser-dynamic":"^4.3.1","@angular/router":"^4.3.1","@ngtools/webpack":"^1.5.2","@types/chai":"^3.4.34","@types/jest":"^20.0.4","@types/mocha":"^2.2.37","@types/node":"^7.0.0","@types/semver":"^5.3.32","@types/source-map":"^0.5.0","@types/webpack":"^3.0.4","angular2-template-loader":"^0.6.2","awesome-typescript-loader":"^3.2.1","chai":"^3.5.0","css-loader":"^0.28.4","jest":"^20.0.4","mocha":"^3.4.2","ng-router-loader":"^2.1.0","node-map-directory":"0.1.0","node-sass":"^4.5.3","raw-loader":"0.5.1","rimraf":"~2.5.4","rxjs":"^5.4.2","sass-loader":"^6.0.6","string-replace-loader":"^1.3.0","style-loader":"^0.18.2","to-string-loader":"^1.1.4","ts-jest":"^20.0.7","typescript":"^2.4.2","webpack":"2.6.1","zone.js":"^0.8.14"},"bugs":{"url":"https://github.com/shlomiassaf/ngc-webpack/issues"},"homepage":"https://github.com/shlomiassaf/ngc-webpack#readme","_id":"ngc-webpack@3.1.0","_shasum":"e7530ce95db80fbdbfb38b2df1b3e3a9c783010e","_from":"dist","_resolved":"file:dist","_npmVersion":"4.2.0","_nodeVersion":"7.4.0","_npmUser":{"name":"anonymous","email":"shlomiasaf@gmail.com"},"dist":{"shasum":"e7530ce95db80fbdbfb38b2df1b3e3a9c783010e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ngc-webpack/-/ngc-webpack-3.1.0.tgz","integrity":"sha512-42qDfYeRzZ6dx5JbS4RVtyAbbITYKBIbsJEajTelWm46vyHGgUY2bT7lWrapi0kWrKSIklSTYIuER4GOdgkytw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBoQlqzWGLE8+cyBZF70pbtm3W+dwPNN4obFhwOpYl86AiBjjm2J1e+7sbiOU7b6jfakwDwW3V2m2fPUJyLTcU+dZw=="}]},"maintainers":[{"name":"anonymous","email":"shlomiasaf@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ngc-webpack-3.1.0.tgz_1501206039233_0.12636929540894926"}},"3.1.1":{"name":"ngc-webpack","version":"3.1.1","description":"A wrapper for the angular compiler-cli with webpack integration","author":{"name":"Shlomi Assaf","email":"shlomiasaf@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/shlomiassaf/ngc-webpack.git"},"main":"index.js","typings":"index.d.ts","keywords":["angular","compiler","webpack","laoder","plugin"],"scripts":{"clean:build":"npm run rimraf -- dist","ci":"npm run test","test":"npm run build && ./node_modules/.bin/mocha dist/test/*.spec.js --recursive","watch":"npm run build -- -w","build":"npm run clean:build && tsc --project tsconfig.json","rimraf":"rimraf"},"bin":{"ngc-w":"./src/main.js"},"dependencies":{"loader-utils":"^1.1.0","magic-string":"^0.22.3","minimist":"^1.2.0","reflect-metadata":"^0.1.10","semver":"^5.4.1","source-map":"^0.5.6","ts-node":"^3.2.0"},"peerDependencies":{"@angular/compiler-cli":"^4.0.0"},"devDependencies":{"@angular/common":"^4.3.1","@angular/compiler":"^4.3.1","@angular/compiler-cli":"^4.3.1","@angular/core":"^4.3.1","@angular/forms":"^4.3.1","@angular/http":"^4.3.1","@angular/platform-browser":"^4.3.1","@angular/platform-browser-dynamic":"^4.3.1","@angular/router":"^4.3.1","@ngtools/webpack":"^1.5.2","@types/chai":"^3.4.34","@types/jest":"^20.0.4","@types/mocha":"^2.2.37","@types/node":"^7.0.0","@types/semver":"^5.3.32","@types/source-map":"^0.5.0","@types/webpack":"^3.0.4","angular2-template-loader":"^0.6.2","awesome-typescript-loader":"^3.2.1","chai":"^3.5.0","css-loader":"^0.28.4","jest":"^20.0.4","mocha":"^3.4.2","ng-router-loader":"^2.1.0","node-map-directory":"0.1.0","node-sass":"^4.5.3","raw-loader":"0.5.1","rimraf":"~2.5.4","rxjs":"^5.4.2","sass-loader":"^6.0.6","string-replace-loader":"^1.3.0","style-loader":"^0.18.2","to-string-loader":"^1.1.4","ts-jest":"^20.0.7","typescript":"^2.4.2","webpack":"2.6.1","zone.js":"^0.8.14"},"bugs":{"url":"https://github.com/shlomiassaf/ngc-webpack/issues"},"homepage":"https://github.com/shlomiassaf/ngc-webpack#readme","_id":"ngc-webpack@3.1.1","_npmVersion":"5.3.0","_nodeVersion":"7.4.0","_npmUser":{"name":"anonymous","email":"shlomiasaf@gmail.com"},"dist":{"integrity":"sha512-ueXqa0QHYFabM2fIr8UHDDH4Qv96d8K83arwvj8k+3LmR4kiW9F8pAABqWFHPuRzj0MRYGOelRoZbWK9o/Q9AQ==","shasum":"8637ffa4774eb56c2c7a36cfd82cfb59c508cbdc","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ngc-webpack/-/ngc-webpack-3.1.1.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICZj+mW3LggJ9hUWFKLmWPQWrNnvoeKwONreOEd1iP+XAiA1VS2XW7FuHpodUCuX9WUq9/qvKfGL5DhmJ5CDQVB+yQ=="}]},"maintainers":[{"name":"anonymous","email":"shlomiasaf@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ngc-webpack-3.1.1.tgz_1501542321900_0.31290045427158475"}},"3.2.0":{"name":"ngc-webpack","version":"3.2.0","description":"A wrapper for the angular compiler-cli with webpack integration","author":{"name":"Shlomi Assaf","email":"shlomiasaf@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/shlomiassaf/ngc-webpack.git"},"main":"index.js","typings":"index.d.ts","keywords":["angular","compiler","webpack","laoder","plugin"],"scripts":{"clean:build":"npm run rimraf -- dist","ci":"npm run test","test":"npm run build && ./node_modules/.bin/mocha dist/test/*.spec.js --recursive","watch":"npm run build -- -w","build":"npm run clean:build && tsc --project tsconfig.json","rimraf":"rimraf"},"bin":{"ngc-w":"./src/main.js"},"dependencies":{"loader-utils":"^1.1.0","magic-string":"^0.22.3","minimist":"^1.2.0","reflect-metadata":"^0.1.10","semver":"^5.4.1","source-map":"^0.5.6","ts-node":"^3.2.0"},"peerDependencies":{"@angular/compiler-cli":"^4.0.0"},"devDependencies":{"@angular/common":"^4.3.1","@angular/compiler":"^4.3.1","@angular/compiler-cli":"^4.3.1","@angular/core":"^4.3.1","@angular/forms":"^4.3.1","@angular/http":"^4.3.1","@angular/platform-browser":"^4.3.1","@angular/platform-browser-dynamic":"^4.3.1","@angular/router":"^4.3.1","@ngtools/webpack":"1.6.0-rc.3","@types/chai":"^3.4.34","@types/jest":"^20.0.4","@types/mocha":"^2.2.37","@types/node":"^7.0.0","@types/semver":"^5.3.32","@types/source-map":"^0.5.0","@types/webpack":"^3.0.4","angular2-template-loader":"^0.6.2","awesome-typescript-loader":"^3.2.1","chai":"^3.5.0","cli-table":"^0.3.1","css-loader":"^0.28.4","extract-text-webpack-plugin":"2.1.2","file-loader":"^0.11.2","html-loader":"^0.5.0","html-webpack-plugin":"^2.30.1","jest":"^20.0.4","mocha":"^3.4.2","ng-router-loader":"^2.1.0","node-map-directory":"0.1.0","node-sass":"^4.5.3","raw-loader":"0.5.1","rimraf":"~2.5.4","rxjs":"^5.4.2","sass-loader":"^6.0.6","string-replace-loader":"^1.3.0","style-loader":"^0.18.2","to-string-loader":"^1.1.4","ts-jest":"^20.0.7","typescript":"^2.4.2","webpack":"2.6.1","zone.js":"^0.8.14"},"bugs":{"url":"https://github.com/shlomiassaf/ngc-webpack/issues"},"homepage":"https://github.com/shlomiassaf/ngc-webpack#readme","_id":"ngc-webpack@3.2.0","_npmVersion":"5.3.0","_nodeVersion":"7.4.0","_npmUser":{"name":"anonymous","email":"shlomiasaf@gmail.com"},"dist":{"integrity":"sha512-vmTSxG+gpD5a41gNnyePwO6gJbwsv5OzuoU3kZ1RodFQPzD33ko1GmpgCGXStNNkivd+g8n5AiZJgotjTenVLA==","shasum":"e4261c5bb03b04e5807015c5f907d28173e1d9a1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ngc-webpack/-/ngc-webpack-3.2.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICatAFejLVq4hxTN6FvtaIvj6lpo17sX6uVrGhG3i5mrAiEAoQZoLnbL3jQsRAjgCP4UFIbOhvdNpTlFejOMF96Dm0A="}]},"maintainers":[{"name":"anonymous","email":"shlomiasaf@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ngc-webpack-3.2.0.tgz_1501742300447_0.44111047126352787"}},"3.2.1":{"name":"ngc-webpack","version":"3.2.1","description":"A wrapper for the angular compiler-cli with webpack integration","author":{"name":"Shlomi Assaf","email":"shlomiasaf@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/shlomiassaf/ngc-webpack.git"},"main":"index.js","typings":"index.d.ts","keywords":["angular","compiler","webpack","laoder","plugin"],"scripts":{"clean:build":"npm run rimraf -- dist","ci":"npm run test","test":"npm run build && ./node_modules/.bin/mocha dist/test/*.spec.js --recursive","watch":"npm run build -- -w","build":"npm run clean:build && tsc --project tsconfig.json","rimraf":"rimraf"},"bin":{"ngc-w":"./src/main.js"},"dependencies":{"loader-utils":"^1.1.0","magic-string":"^0.22.3","minimist":"^1.2.0","reflect-metadata":"^0.1.10","semver":"^5.4.1","source-map":"^0.5.6","ts-node":"^3.2.0"},"peerDependencies":{"@angular/compiler-cli":"^4.0.0"},"devDependencies":{"@angular/common":"^4.3.1","@angular/compiler":"^4.3.1","@angular/compiler-cli":"^4.3.1","@angular/core":"^4.3.1","@angular/forms":"^4.3.1","@angular/http":"^4.3.1","@angular/platform-browser":"^4.3.1","@angular/platform-browser-dynamic":"^4.3.1","@angular/router":"^4.3.1","@ngtools/webpack":"1.6.0-rc.3","@types/chai":"^3.4.34","@types/jest":"^20.0.4","@types/mocha":"^2.2.37","@types/node":"^7.0.0","@types/semver":"^5.3.32","@types/source-map":"^0.5.0","@types/webpack":"^3.0.4","angular2-template-loader":"^0.6.2","awesome-typescript-loader":"^3.2.1","chai":"^3.5.0","cli-table":"^0.3.1","css-loader":"^0.28.4","extract-text-webpack-plugin":"2.1.2","file-loader":"^0.11.2","html-loader":"^0.5.0","html-webpack-plugin":"^2.30.1","jest":"^20.0.4","mocha":"^3.4.2","ng-router-loader":"^2.1.0","node-map-directory":"0.1.0","node-sass":"^4.5.3","raw-loader":"0.5.1","rimraf":"~2.5.4","rxjs":"^5.4.2","sass-loader":"^6.0.6","string-replace-loader":"^1.3.0","style-loader":"^0.18.2","to-string-loader":"^1.1.4","ts-jest":"^20.0.7","typescript":"^2.4.2","webpack":"2.6.1","zone.js":"^0.8.14"},"bugs":{"url":"https://github.com/shlomiassaf/ngc-webpack/issues"},"homepage":"https://github.com/shlomiassaf/ngc-webpack#readme","_id":"ngc-webpack@3.2.1","_npmVersion":"5.3.0","_nodeVersion":"7.4.0","_npmUser":{"name":"anonymous","email":"shlomiasaf@gmail.com"},"dist":{"integrity":"sha512-5FCFIz2iBDR8amKLpVM1u+PWvBogDvjgxXc7RS3LQlpnnYQW+1akdLnkpmbqOxJoEyV7Yk2OosRACoRWI0c9Lw==","shasum":"37923f4863fd8a08918654e3a35dc9f212d4c1a1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ngc-webpack/-/ngc-webpack-3.2.1.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDRjKUHn1oRboRNocwz7XiNOlTWCG3mYwgTd30pN5GZqAiEA1EHOJ+NY6oyJofUvKSa0pA7qpdOszxKmADNYEcDOUeg="}]},"maintainers":[{"name":"anonymous","email":"shlomiasaf@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ngc-webpack-3.2.1.tgz_1502455657543_0.5567995007149875"}},"3.2.2":{"name":"ngc-webpack","version":"3.2.2","description":"A wrapper for the angular compiler-cli with webpack integration","author":{"name":"Shlomi Assaf","email":"shlomiasaf@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/shlomiassaf/ngc-webpack.git"},"main":"index.js","typings":"index.d.ts","keywords":["angular","compiler","webpack","laoder","plugin"],"scripts":{"clean:build":"npm run rimraf -- dist","ci":"npm run test","test":"npm run build && ./node_modules/.bin/mocha dist/test/*.spec.js --recursive","watch":"npm run build -- -w","build":"npm run clean:build && tsc --project tsconfig.json","rimraf":"rimraf"},"bin":{"ngc-w":"./src/main.js"},"dependencies":{"loader-utils":"^1.1.0","magic-string":"^0.22.3","minimist":"^1.2.0","reflect-metadata":"^0.1.10","semver":"^5.4.1","source-map":"^0.5.6","ts-node":"^3.2.0"},"peerDependencies":{"@angular/compiler-cli":"^4.0.0"},"devDependencies":{"@angular/common":"^4.3.1","@angular/compiler":"^4.3.1","@angular/compiler-cli":"^4.3.1","@angular/core":"^4.3.1","@angular/forms":"^4.3.1","@angular/http":"^4.3.1","@angular/platform-browser":"^4.3.1","@angular/platform-browser-dynamic":"^4.3.1","@angular/router":"^4.3.1","@ngtools/webpack":"1.6.0-rc.3","@types/chai":"^3.4.34","@types/jest":"^20.0.4","@types/mocha":"^2.2.37","@types/node":"^7.0.0","@types/semver":"^5.3.32","@types/source-map":"^0.5.0","@types/webpack":"^3.0.4","angular2-template-loader":"^0.6.2","awesome-typescript-loader":"^3.2.1","chai":"^3.5.0","cli-table":"^0.3.1","css-loader":"^0.28.4","extract-text-webpack-plugin":"2.1.2","file-loader":"^0.11.2","html-loader":"^0.5.0","html-webpack-plugin":"^2.30.1","jest":"^20.0.4","mocha":"^3.4.2","ng-router-loader":"^2.1.0","node-map-directory":"0.1.0","node-sass":"^4.5.3","raw-loader":"0.5.1","rimraf":"~2.5.4","rxjs":"^5.4.2","sass-loader":"^6.0.6","string-replace-loader":"^1.3.0","style-loader":"^0.18.2","to-string-loader":"^1.1.4","ts-jest":"^20.0.7","typescript":"^2.4.2","webpack":"2.6.1","zone.js":"^0.8.14"},"bugs":{"url":"https://github.com/shlomiassaf/ngc-webpack/issues"},"homepage":"https://github.com/shlomiassaf/ngc-webpack#readme","_id":"ngc-webpack@3.2.2","_npmVersion":"5.3.0","_nodeVersion":"7.4.0","_npmUser":{"name":"anonymous","email":"shlomiasaf@gmail.com"},"dist":{"integrity":"sha512-sBMFulGCHvYz6uydR9PgpmGua54/1PUDgJRNdrAYlP0nltDK2eIlH7DMoT5GOFrTPUaE615Oq/menCiN70FaoQ==","shasum":"1905c40e3c7d30c86fe029c7a7fda71cb4dc59df","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ngc-webpack/-/ngc-webpack-3.2.2.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCeZ8ts6RsYS6uFmT1w2dzdBt58Gc3injjXBg+u2hPnNwIgLZK+5Qibgly1pFlfv+OdhwYQqtVHVizK1+xb4RS76F4="}]},"maintainers":[{"name":"anonymous","email":"shlomiasaf@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ngc-webpack-3.2.2.tgz_1502731640412_0.501381419133395"}},"4.0.0":{"name":"ngc-webpack","version":"4.0.0","description":"A wrapper for the @ngtools/webpack with hooks into the compilation process","author":{"name":"Shlomi Assaf","email":"shlomiasaf@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/shlomiassaf/ngc-webpack.git"},"main":"index.js","typings":"index.d.ts","keywords":["angular","compiler","webpack","laoder","plugin"],"scripts":{"clean:build":"npm run rimraf -- dist","ci":"npm run test","test":"npm run build && ./node_modules/.bin/mocha dist/test/*.spec.js --recursive","watch":"npm run build -- -w","build":"npm run clean:build && tsc --project tsconfig.json","rimraf":"rimraf"},"dependencies":{"loader-utils":"^1.1.0","magic-string":"^0.22.3","minimist":"^1.2.0","reflect-metadata":"^0.1.10","semver":"^5.4.1","source-map":"^0.5.6","ts-node":"^3.2.0"},"peerDependencies":{"@ngtools/webpack":"^5.0.0","@angular/compiler-cli":"^5.0.0"},"devDependencies":{"@angular-devkit/build-optimizer":"^0.0.32","@angular/cli":"^1.5.0","@angular/common":"5.0.0","@angular/compiler":"5.0.0","@angular/compiler-cli":"^5.0.0","@angular/core":"5.0.0","@angular/forms":"5.0.0","@angular/http":"5.0.0","@angular/platform-browser":"5.0.0","@angular/platform-browser-dynamic":"5.0.0","@angular/router":"5.0.0","@ngtools/webpack":"^1.8.0","@types/chai":"^3.4.34","@types/fs-extra":"^4.0.3","@types/jest":"^20.0.4","@types/mocha":"^2.2.37","@types/node":"^7.0.0","@types/semver":"^5.3.32","@types/source-map":"^0.5.2","@types/webpack":"^3.0.14","angular2-template-loader":"^0.6.2","awesome-typescript-loader":"^3.2.1","chai":"^3.5.0","cli-table":"^0.3.1","css-loader":"^0.28.4","extract-text-webpack-plugin":"^3.0.2","file-loader":"^0.11.2","fs-extra":"^4.0.2","html-loader":"^0.5.0","html-webpack-plugin":"^2.30.1","jest":"^20.0.4","mocha":"^3.4.2","ng-router-loader":"^2.1.0","node-map-directory":"0.1.0","node-sass":"^4.6.0","raw-loader":"0.5.1","rimraf":"~2.5.4","rxjs":"^5.5.2","sass-loader":"^6.0.6","string-replace-loader":"^1.3.0","style-loader":"^0.18.2","to-string-loader":"^1.1.4","ts-jest":"^20.0.7","typescript":"^2.4.2","webpack":"^3.8.1","zone.js":"^0.8.14"},"bugs":{"url":"https://github.com/shlomiassaf/ngc-webpack/issues"},"homepage":"https://github.com/shlomiassaf/ngc-webpack#readme","_id":"ngc-webpack@4.0.0","_npmVersion":"5.3.0","_nodeVersion":"8.4.0","_npmUser":{"name":"anonymous","email":"shlomiasaf@gmail.com"},"dist":{"integrity":"sha512-aNu5Sd/F/L/v3NZg3QwQN81EgaLWIN2wBQH4rNmfcjVL1N84Fh/wDk2Cf3pZdY/4JsdahUBZ+hC8ArHbQN+tdg==","shasum":"7a8ec659dce5d59c4049f08ee605a3ffa91e8aab","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ngc-webpack/-/ngc-webpack-4.0.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDTUV/kZJ527ytd3pthFLF/WY0q0l18vWnI3lkR5Ws6XAIgHHgerRXqSEl/cqjbaFG1R+Boe8goO9PYZcrTythAw1Y="}]},"maintainers":[{"name":"anonymous","email":"shlomiasaf@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ngc-webpack-4.0.0.tgz_1509981540679_0.37701392523013055"}},"4.0.1":{"name":"ngc-webpack","version":"4.0.1","description":"A wrapper for the @ngtools/webpack with hooks into the compilation process","author":{"name":"Shlomi Assaf","email":"shlomiasaf@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/shlomiassaf/ngc-webpack.git"},"main":"index.js","typings":"index.d.ts","keywords":["angular","compiler","webpack","laoder","plugin"],"scripts":{"clean:build":"npm run rimraf -- dist","ci":"npm run test","test":"npm run build && ./node_modules/.bin/mocha dist/test/*.spec.js --recursive","watch":"npm run build -- -w","build":"npm run clean:build && tsc --project tsconfig.json","rimraf":"rimraf"},"dependencies":{"loader-utils":"^1.1.0","magic-string":"^0.22.3","minimist":"^1.2.0","reflect-metadata":"^0.1.10","semver":"^5.4.1","source-map":"^0.5.6","ts-node":"^3.2.0"},"peerDependencies":{"@ngtools/webpack":"^5.0.0","@angular/compiler-cli":"^5.0.0"},"devDependencies":{"@angular-devkit/build-optimizer":"^0.0.32","@angular/cli":"^1.5.0","@angular/common":"5.0.0","@angular/compiler":"5.0.0","@angular/compiler-cli":"^5.0.0","@angular/core":"5.0.0","@angular/forms":"5.0.0","@angular/http":"5.0.0","@angular/platform-browser":"5.0.0","@angular/platform-browser-dynamic":"5.0.0","@angular/router":"5.0.0","@ngtools/webpack":"^1.8.0","@types/chai":"^3.4.34","@types/fs-extra":"^4.0.3","@types/jest":"^20.0.4","@types/mocha":"^2.2.37","@types/node":"^7.0.0","@types/semver":"^5.3.32","@types/source-map":"^0.5.2","@types/webpack":"^3.0.14","angular2-template-loader":"^0.6.2","awesome-typescript-loader":"^3.2.1","chai":"^3.5.0","cli-table":"^0.3.1","css-loader":"^0.28.4","extract-text-webpack-plugin":"^3.0.2","file-loader":"^0.11.2","fs-extra":"^4.0.2","html-loader":"^0.5.0","html-webpack-plugin":"^2.30.1","jest":"^20.0.4","mocha":"^3.4.2","ng-router-loader":"^2.1.0","node-map-directory":"0.1.0","node-sass":"^4.6.0","raw-loader":"0.5.1","rimraf":"~2.5.4","rxjs":"^5.5.2","sass-loader":"^6.0.6","string-replace-loader":"^1.3.0","style-loader":"^0.18.2","to-string-loader":"^1.1.4","ts-jest":"^20.0.7","typescript":"^2.4.2","webpack":"^3.8.1","zone.js":"^0.8.14"},"bugs":{"url":"https://github.com/shlomiassaf/ngc-webpack/issues"},"homepage":"https://github.com/shlomiassaf/ngc-webpack#readme","_id":"ngc-webpack@4.0.1","_npmVersion":"5.3.0","_nodeVersion":"8.4.0","_npmUser":{"name":"anonymous","email":"shlomiasaf@gmail.com"},"dist":{"integrity":"sha512-/a0YDvZ+OHQ6S2y4q8YCtbQAwRKwGbeJGWWWXFYxFWfBDvnHhpALPtvQ0pJyrOuU5kgN97wJ4IskNJ26A7Xdyw==","shasum":"f4e2351648433c7108a9ff10133e743c514e4b3b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ngc-webpack/-/ngc-webpack-4.0.1.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCp2tmHQDeC083ql7SlwARmUsUT31C0lHh4HvI3/Cb5BwIhAJR/G9HShtyxVjluDUJ8JBer+w89XEWQRFhdnLhXATF8"}]},"maintainers":[{"name":"anonymous","email":"shlomiasaf@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ngc-webpack-4.0.1.tgz_1510013951902_0.8726807998027653"}},"4.0.2":{"name":"ngc-webpack","version":"4.0.2","description":"A wrapper for the @ngtools/webpack with hooks into the compilation process","author":{"name":"Shlomi Assaf","email":"shlomiasaf@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/shlomiassaf/ngc-webpack.git"},"main":"index.js","typings":"index.d.ts","keywords":["angular","compiler","webpack","laoder","plugin"],"scripts":{"clean:build":"npm run rimraf -- dist","ci":"npm run test","test":"npm run build && ./node_modules/.bin/mocha dist/test/*.spec.js --recursive","watch":"npm run build -- -w","build":"npm run clean:build && tsc --project tsconfig.json","rimraf":"rimraf"},"dependencies":{"loader-utils":"^1.1.0","magic-string":"^0.22.3","minimist":"^1.2.0","reflect-metadata":"^0.1.10","semver":"^5.4.1","source-map":"^0.5.6","ts-node":"^3.2.0"},"peerDependencies":{"@ngtools/webpack":"^1.8.0","@angular/compiler-cli":"^5.0.0"},"devDependencies":{"@angular-devkit/build-optimizer":"^0.0.32","@angular/cli":"^1.5.0","@angular/common":"5.0.0","@angular/compiler":"5.0.0","@angular/compiler-cli":"^5.0.0","@angular/core":"5.0.0","@angular/forms":"5.0.0","@angular/http":"5.0.0","@angular/platform-browser":"5.0.0","@angular/platform-browser-dynamic":"5.0.0","@angular/router":"5.0.0","@ngtools/webpack":"^1.8.0","@types/chai":"^3.4.34","@types/fs-extra":"^4.0.3","@types/jest":"^20.0.4","@types/mocha":"^2.2.37","@types/node":"^7.0.0","@types/semver":"^5.3.32","@types/source-map":"^0.5.2","@types/webpack":"^3.0.14","angular2-template-loader":"^0.6.2","awesome-typescript-loader":"^3.2.1","chai":"^3.5.0","cli-table":"^0.3.1","css-loader":"^0.28.4","extract-text-webpack-plugin":"^3.0.2","file-loader":"^0.11.2","fs-extra":"^4.0.2","html-loader":"^0.5.0","html-webpack-plugin":"^2.30.1","jest":"^20.0.4","mocha":"^3.4.2","ng-router-loader":"^2.1.0","node-map-directory":"0.1.0","node-sass":"^4.6.0","raw-loader":"0.5.1","rimraf":"~2.5.4","rxjs":"^5.5.2","sass-loader":"^6.0.6","string-replace-loader":"^1.3.0","style-loader":"^0.18.2","to-string-loader":"^1.1.4","ts-jest":"^20.0.7","typescript":"^2.4.2","webpack":"^3.8.1","zone.js":"^0.8.14"},"bugs":{"url":"https://github.com/shlomiassaf/ngc-webpack/issues"},"homepage":"https://github.com/shlomiassaf/ngc-webpack#readme","_id":"ngc-webpack@4.0.2","_npmVersion":"5.3.0","_nodeVersion":"8.4.0","_npmUser":{"name":"anonymous","email":"shlomiasaf@gmail.com"},"dist":{"integrity":"sha512-eP7u0L4wyIadkSj7Etbzpi3kgv5tW6ZF2XIr6fw73vyN+W4tPPpd3tcWcKwAcRi1fWxpHDwY5zixZeK9P3BBCw==","shasum":"2769c51f07864032e97c01befca824aabe706a93","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ngc-webpack/-/ngc-webpack-4.0.2.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEtYiEwKypjxWQvem0HXSQoeuQu6PeSTPvL4FauK4ak+AiAbF9tHCKDpumQ6fSjjAsWrpMxGVVb54k97nx2Cm2JFog=="}]},"maintainers":[{"name":"anonymous","email":"shlomiasaf@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ngc-webpack-4.0.2.tgz_1510014059009_0.9212070545181632"}},"4.1.0":{"name":"ngc-webpack","version":"4.1.0","description":"A wrapper for the @ngtools/webpack with hooks into the compilation process","author":{"name":"Shlomi Assaf","email":"shlomiasaf@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/shlomiassaf/ngc-webpack.git"},"main":"index.js","bin":{"ngc-w":"src/cli.js"},"typings":"index.d.ts","keywords":["angular","compiler","webpack","laoder","plugin"],"scripts":{"clean:build":"npm run rimraf -- dist","ci":"npm run test","test":"npm run build-test && ./node_modules/.bin/mocha dist/test/*.spec.js --recursive","watch":"npm run build -- -w","build":"npm run clean:build && tsc --project tsconfig.json","watch-test":"npm run build-test -- -w","build-test":"npm run clean:build && tsc --project tsconfig.test.json","rimraf":"rimraf"},"dependencies":{"@types/minimist":"^1.2.0","loader-utils":"^1.1.0","magic-string":"^0.22.3","minimist":"^1.2.0","reflect-metadata":"^0.1.10","semver":"^5.4.1","source-map":"^0.5.6","ts-node":"^3.2.0"},"peerDependencies":{"@angular/compiler-cli":"^5.0.0","@ngtools/webpack":"^1.8.0"},"devDependencies":{"@angular-devkit/build-optimizer":"^0.0.32","@angular/cli":"^1.5.0","@angular/common":"^5.0.0","@angular/compiler":"^5.0.0","@angular/compiler-cli":"^5.0.0","@angular/core":"^5.0.0","@angular/forms":"^5.0.0","@angular/http":"^5.0.0","@angular/platform-browser":"^5.0.0","@angular/platform-browser-dynamic":"^5.0.0","@angular/router":"^5.0.0","@ngtools/webpack":"^1.8.0","@types/chai":"^3.4.34","@types/fs-extra":"^4.0.3","@types/jest":"^20.0.4","@types/mocha":"^2.2.37","@types/node":"^7.0.0","@types/rimraf":"^2.0.2","@types/semver":"^5.3.32","@types/source-map":"^0.5.2","@types/webpack":"^3.0.14","angular2-template-loader":"^0.6.2","awesome-typescript-loader":"^3.2.1","chai":"^3.5.0","cli-table":"^0.3.1","css-loader":"^0.28.4","extract-text-webpack-plugin":"^3.0.2","file-loader":"^0.11.2","fs-extra":"^4.0.2","html-loader":"^0.5.0","html-webpack-plugin":"^2.30.1","jest":"^20.0.4","mocha":"^3.4.2","ng-router-loader":"^2.1.0","node-map-directory":"0.1.0","node-sass":"^4.6.0","raw-loader":"0.5.1","rimraf":"~2.5.4","rxjs":"^5.5.2","sass-loader":"^6.0.6","string-replace-loader":"^1.3.0","style-loader":"^0.18.2","to-string-loader":"^1.1.4","ts-jest":"^20.0.7","tsconfig-paths":"^2.3.0","typescript":"^2.4.2","webpack":"^3.8.1","zone.js":"^0.8.14"},"bugs":{"url":"https://github.com/shlomiassaf/ngc-webpack/issues"},"homepage":"https://github.com/shlomiassaf/ngc-webpack#readme","_id":"ngc-webpack@4.1.0","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"anonymous","email":"shlomiasaf@gmail.com"},"dist":{"integrity":"sha512-DUs93z40DvUmUb1+Tk84FuamXGukT6xLdoo3vsj+Z1NP9crR5MIx8NhCS8KHfItFMCqlqmXjtONMNGRXP8sx1g==","shasum":"5a241e5ea409209f043353cc139ba8f9c232ceb9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ngc-webpack/-/ngc-webpack-4.1.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCiTxX6lEvoiLqmK81lTqyRIjBEHLAlBDE/v9WKGFeGRQIhAOekMmIgY0/NZZkJnssPR02pxlBcUwUD3S+WZrNrMEki"}]},"maintainers":[{"name":"anonymous","email":"shlomiasaf@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ngc-webpack-4.1.0.tgz_1511151313847_0.6858910568989813"}},"4.1.1":{"name":"ngc-webpack","version":"4.1.1","description":"A wrapper for the @ngtools/webpack with hooks into the compilation process","author":{"name":"Shlomi Assaf","email":"shlomiasaf@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/shlomiassaf/ngc-webpack.git"},"main":"index.js","bin":{"ngc-w":"src/cli/cli.js"},"typings":"index.d.ts","keywords":["angular","compiler","webpack","laoder","plugin"],"scripts":{"clean:build":"npm run rimraf -- dist","ci":"npm run test","test":"npm run build-test && ./node_modules/.bin/mocha dist/test/*.spec.js --recursive","watch":"npm run build -- -w","build":"npm run clean:build && tsc --project tsconfig.json","watch-test":"npm run build-test -- -w","build-test":"npm run clean:build && tsc --project tsconfig.test.json","rimraf":"rimraf"},"dependencies":{"@types/minimist":"^1.2.0","loader-utils":"^1.1.0","magic-string":"^0.22.3","minimist":"^1.2.0","reflect-metadata":"^0.1.10","semver":"^5.4.1","source-map":"^0.5.6","ts-node":"^3.2.0"},"peerDependencies":{"@angular/compiler-cli":"^5.0.0","@ngtools/webpack":"^1.8.0"},"devDependencies":{"@angular-devkit/build-optimizer":"^0.0.32","@angular/cli":"^1.5.0","@angular/common":"^5.0.0","@angular/compiler":"^5.0.0","@angular/compiler-cli":"^5.0.0","@angular/core":"^5.0.0","@angular/forms":"^5.0.0","@angular/http":"^5.0.0","@angular/platform-browser":"^5.0.0","@angular/platform-browser-dynamic":"^5.0.0","@angular/router":"^5.0.0","@ngtools/webpack":"^1.8.0","@types/chai":"^3.4.34","@types/fs-extra":"^4.0.3","@types/jest":"^20.0.4","@types/mocha":"^2.2.37","@types/node":"^7.0.0","@types/rimraf":"^2.0.2","@types/semver":"^5.3.32","@types/source-map":"^0.5.2","@types/webpack":"^3.0.14","angular2-template-loader":"^0.6.2","awesome-typescript-loader":"^3.2.1","chai":"^3.5.0","cli-table":"^0.3.1","css-loader":"^0.28.4","extract-text-webpack-plugin":"^3.0.2","file-loader":"^0.11.2","fs-extra":"^4.0.2","html-loader":"^0.5.0","html-webpack-plugin":"^2.30.1","jest":"^20.0.4","mocha":"^3.4.2","ng-router-loader":"^2.1.0","node-map-directory":"0.1.0","node-sass":"^4.6.0","raw-loader":"0.5.1","rimraf":"~2.5.4","rxjs":"^5.5.2","sass-loader":"^6.0.6","string-replace-loader":"^1.3.0","style-loader":"^0.18.2","to-string-loader":"^1.1.4","ts-jest":"^20.0.7","tsconfig-paths":"^2.3.0","typescript":"^2.4.2","webpack":"^3.8.1","zone.js":"^0.8.14"},"bugs":{"url":"https://github.com/shlomiassaf/ngc-webpack/issues"},"homepage":"https://github.com/shlomiassaf/ngc-webpack#readme","_id":"ngc-webpack@4.1.1","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"anonymous","email":"shlomiasaf@gmail.com"},"dist":{"integrity":"sha512-GjYZU9bWN5w0q89CZ7TdvzoFICCVy2SifMsdnbuColK8vdzZ3Xfzu6Eo1IuZVjwMHCHflZoECkPENvypPtqJWg==","shasum":"1d7f0f3f0b57be8b03979d697fb46f95a8649d5f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ngc-webpack/-/ngc-webpack-4.1.1.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDnIxgg+hUjULUUDVmRW3HnORSROnerqYylEHNwaNUOCQIhAMMnsBsOCJ6iSBYUHTag2d9QyDVLvZII/rk6E2fPYeFq"}]},"maintainers":[{"name":"anonymous","email":"shlomiasaf@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ngc-webpack-4.1.1.tgz_1511168736710_0.5736461349297315"}},"4.1.2":{"name":"ngc-webpack","version":"4.1.2","description":"A wrapper for the @ngtools/webpack with hooks into the compilation process","author":{"name":"Shlomi Assaf","email":"shlomiasaf@gmail.com"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/shlomiassaf/ngc-webpack.git"},"main":"index.js","bin":{"ngc-w":"src/cli/cli.js","ngc-w-cli":"src/cli/ng-cli.js"},"typings":"index.d.ts","keywords":["angular","compiler","webpack","laoder","plugin"],"scripts":{"clean:build":"npm run rimraf -- dist","ci":"node -e \"console.log('TypeScript VERSION: ' + require('typescript').version)\" && npm run test","test":"npm run build-test && ./node_modules/.bin/mocha dist/test/*.spec.js --recursive","watch":"npm run build -- -w","build":"npm run clean:build && tsc --project tsconfig.json","watch-test":"npm run build-test -- -w","build-test":"npm run clean:build && tsc --project tsconfig.test.json","rimraf":"rimraf"},"dependencies":{"@types/minimist":"^1.2.0","loader-utils":"^1.1.0","magic-string":"^0.22.3","minimist":"^1.2.0","reflect-metadata":"^0.1.10","resolve":"^1.5.0","semver":"^5.4.1","source-map":"^0.5.6","ts-node":"^3.2.0"},"peerDependencies":{"@angular/compiler-cli":"^5.0.0","@ngtools/webpack":"^1.8.0"},"devDependencies":{"@angular-devkit/build-optimizer":"^0.0.32","@angular/cli":"^1.5.0","@angular/common":"^5.0.0","@angular/compiler":"^5.0.0","@angular/compiler-cli":"^5.0.0","@angular/core":"^5.0.0","@angular/forms":"^5.0.0","@angular/http":"^5.0.0","@angular/platform-browser":"^5.0.0","@angular/platform-browser-dynamic":"^5.0.0","@angular/router":"^5.0.0","@ngtools/webpack":"^1.8.0","@types/chai":"^3.4.34","@types/fs-extra":"^4.0.3","@types/jest":"^20.0.4","@types/mocha":"^2.2.37","@types/node":"^7.0.0","@types/resolve":"^0.0.4","@types/rimraf":"^2.0.2","@types/semver":"^5.3.32","@types/source-map":"^0.5.2","@types/webpack":"^3.0.14","angular2-template-loader":"^0.6.2","awesome-typescript-loader":"^3.2.1","chai":"^3.5.0","cli-table":"^0.3.1","css-loader":"^0.28.4","extract-text-webpack-plugin":"^3.0.2","file-loader":"^0.11.2","fs-extra":"^4.0.2","html-loader":"^0.5.0","html-webpack-plugin":"^2.30.1","jest":"^20.0.4","mocha":"^3.4.2","ng-router-loader":"^2.1.0","node-map-directory":"0.1.0","node-sass":"^4.6.0","raw-loader":"0.5.1","rimraf":"~2.5.4","rxjs":"^5.5.2","sass-loader":"^6.0.6","string-replace-loader":"^1.3.0","style-loader":"^0.18.2","to-string-loader":"^1.1.4","ts-jest":"^20.0.7","tsconfig-paths":"^2.3.0","typescript":"~2.4.2","webpack":"^3.8.1","zone.js":"^0.8.14"},"bugs":{"url":"https://github.com/shlomiassaf/ngc-webpack/issues"},"homepage":"https://github.com/shlomiassaf/ngc-webpack#readme","_id":"ngc-webpack@4.1.2","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"anonymous","email":"shlomiasaf@gmail.com"},"dist":{"integrity":"sha512-ih9p0sABt/9UHsKSFuFzcmiBljcDcAEp+fVbpOP/yurE0UXWoXbBVZEzK8UGHqcGNKS4nVsz9SIErJkvesQXaQ==","shasum":"1f28e0baab8af34d079cda4141145396d627daa0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ngc-webpack/-/ngc-webpack-4.1.2.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCcdDYGk1sORK/2IDEG5cP62GWEiGYcD/DrsNocdBMrkgIhAKn6zLYaoo4y8Qaii26E/e2vL/LbIfzaKG+s4QTKfY3S"}]},"maintainers":[{"name":"anonymous","email":"shlomiasaf@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ngc-webpack-4.1.2.tgz_1511267159748_0.8574276380240917"}}},"name":"ngc-webpack","time":{"modified":"2022-06-21T07:09:42.964Z","created":"2016-12-28T21:55:45.651Z","1.0.0":"2016-12-28T21:55:45.651Z","1.0.1":"2016-12-28T22:00:49.625Z","1.0.2":"2016-12-28T23:24:29.854Z","1.0.3":"2016-12-29T20:06:32.889Z","1.0.4":"2016-12-29T21:46:47.950Z","1.0.5":"2016-12-31T01:36:23.384Z","1.0.6":"2017-01-03T15:59:11.876Z","1.0.7":"2017-01-04T16:05:05.013Z","1.0.8":"2017-01-04T17:40:48.785Z","1.1.0":"2017-01-06T05:57:35.302Z","1.1.2":"2017-01-16T15:23:19.353Z","1.1.3":"2017-01-25T18:39:37.048Z","1.1.4":"2017-01-31T15:53:33.666Z","1.2.0":"2017-01-31T21:07:18.166Z","2.0.0":"2017-04-12T16:11:07.443Z","3.0.0":"2017-06-18T21:15:07.635Z","3.1.0":"2017-07-28T01:40:40.455Z","3.1.1":"2017-07-31T23:05:23.239Z","3.2.0":"2017-08-03T06:38:21.907Z","3.2.1":"2017-08-11T12:47:38.744Z","3.2.2":"2017-08-14T17:27:21.634Z","4.0.0":"2017-11-06T15:19:01.752Z","4.0.1":"2017-11-07T00:19:13.023Z","4.0.2":"2017-11-07T00:20:59.191Z","4.1.0":"2017-11-20T04:15:15.044Z","4.1.1":"2017-11-20T09:05:37.949Z","4.1.2":"2017-11-21T12:26:01.287Z"},"readmeFilename":"README.md","homepage":"https://github.com/shlomiassaf/ngc-webpack#readme"}