{"maintainers":[{"name":"blakeembrey","email":"hello@blakeembrey.com"},{"name":"jbrantly","email":"james@jbrantly.com"},{"name":"johnnyreilly","email":"johnny_reilly@hotmail.com"}],"keywords":["ts-loader","typescript-loader","webpack","loader","typescript","ts"],"dist-tags":{"latest":"2.0.3","beta":"1.0.0-beta.1"},"author":{"name":"James Brantly","email":"james@jbrantly.com","url":"http://www.jbrantly.com/"},"description":"TypeScript loader for webpack","readme":"[![Build Status](https://travis-ci.org/TypeStrong/ts-loader.svg?branch=master)](https://travis-ci.org/TypeStrong/ts-loader)\r\n[![Build Status](https://ci.appveyor.com/api/projects/status/bjh0r0d4ckspgkh9/branch/master?svg=true)](https://ci.appveyor.com/project/JohnReilly/ts-loader/branch/master)\r\n[![Downloads](http://img.shields.io/npm/dm/ts-loader.svg)](https://npmjs.org/package/ts-loader)\r\n[![Join the chat at https://gitter.im/TypeStrong/ts-loader](https://img.shields.io/badge/gitter-join%20chat-brightgreen.svg)](https://gitter.im/TypeStrong/ts-loader)\r\n\r\n# TypeScript loader for webpack\r\n\r\nThis is the typescript loader for webpack.\r\n\r\n## Getting Started\r\n\r\nTake a look at our [examples](examples/).  You can also find some older tutorials and examples [here](https://github.com/TypeStrong/ts-loader/wiki/Tutorials-&-Examples).\r\n\r\n### Compatibility\r\n\r\n#### TypeScript\r\n\r\nts-loader supports the latest and greatest version of TypeScript right back to v1.6.  (Including the [nightly build](http://blogs.msdn.com/b/typescript/archive/2015/07/27/introducing-typescript-nightlies.aspx).)\r\n\r\nA full test suite runs each night (and on each pull request). It runs both on [Linux](https://travis-ci.org/TypeStrong/ts-loader) and [Windows](https://ci.appveyor.com/project/JohnReilly/ts-loader), testing ts-loader against the following versions of TypeScript:\r\n- TypeScript 2.2\r\n- TypeScript 2.1\r\n- TypeScript 2.0\r\n- TypeScript 1.8\r\n- TypeScript 1.7\r\n- TypeScript 1.6\r\n\r\nand also:\r\n- TypeScript@next (because we want to use it as much as you do)\r\n\r\nIf you become aware of issues not caught by the test suite then please let us know. Better yet, write a test and submit it in a PR!\r\n\r\n#### Webpack\r\n\r\nts-loader was originally designed for Webpack 1.  It may well still work with webpack 1 but it does not officially support webpack 1 any more.  All development now targets webpack 2.  Our continuous integration test suites run against webpack 2; **not** webpack 1. \r\n\r\nIf you'd like to see a setup that works with webpack 2 take a look [at our example](examples/webpack2-gulp-react-flux-babel-karma) or at some of our [tests](test/comparison-tests); they all target webpack 2.\r\n\r\n#### `LoaderOptionsPlugin`\r\n\r\n[There's a known \"gotcha\"](https://github.com/TypeStrong/ts-loader/issues/283) if you are using webpack 2 with the `LoaderOptionsPlugin`.  If you are faced with the `Cannot read property 'unsafeCache' of undefined` error then you probably need to supply a `resolve` object as below: (Thanks @jeffijoe!)\r\n \t\t\r\n ```js\t\t\r\n new LoaderOptionsPlugin({\t\t\r\n   debug: false,\t\t\r\n   options: {\t\t\r\n     resolve: {\r\n       extensions: ['.ts', '.tsx', '.js']\r\n     }\t\r\n   }\t\t\r\n })\t\t\r\n ```\r\n\r\nIt's worth noting that use of the `LoaderOptionsPlugin` is [only supposed to be a stopgap measure](https://webpack.js.org/plugins/loader-options-plugin/).  You may want to look at removing it entirely.\r\n\r\n### Babel\r\n\r\nts-loader works very well in combination with [babel](https://babeljs.io/) and [babel-loader](https://github.com/babel/babel-loader).  To see an example of this in practice take a look at the [example](https://github.com/Microsoft/TypeScriptSamples/tree/master/react-flux-babel-karma) in the official [TypeScript Samples](https://github.com/Microsoft/TypeScriptSamples).\r\n\r\nAlternatively take a look at this [webpack 2 example](examples/webpack2-gulp-react-flux-babel-karma).\r\n\r\n### Contributing\r\n\r\nThis is your TypeScript loader! We want you to help make it even better. Please feel free to contribute; see the [contributor's guide](CONTRIBUTING.md) to get started.\r\n\r\n### Installation\r\n\r\n```\r\nnpm install ts-loader\r\n```\r\n\r\nYou will also need to install TypeScript if you have not already.\r\n\r\n```\r\nnpm install typescript\r\n```\r\n\r\nor if you want to install TypeScript globally\r\n\r\n```\r\nnpm install typescript -g\r\nnpm link typescript\r\n```\r\n\r\n### Running\r\n\r\nUse webpack like normal, including `webpack --watch` and `webpack-dev-server`, or through another\r\nbuild system using the [Node.js API](http://webpack.github.io/docs/node.js-api.html).\r\n\r\n### Configuration\r\n\r\n1. Create or update `webpack.config.js` like so:\r\n\r\n    ```javascript\r\n    module.exports = {\r\n      entry: './app.ts',\r\n      output: {\r\n        filename: 'bundle.js'\r\n      },\r\n      resolve: {\r\n        // Add `.ts` and `.tsx` as a resolvable extension.\r\n        extensions: ['.ts', '.tsx', '.js'] // note if using webpack 1 you'd also need a '' in the array as well\r\n      },\r\n      module: {\r\n        loaders: [ // loaders will work with webpack 1 or 2; but will be renamed \"rules\" in future\r\n          // all files with a `.ts` or `.tsx` extension will be handled by `ts-loader`\r\n          { test: /\\.tsx?$/, loader: 'ts-loader' }\r\n        ]\r\n      }\r\n    }\r\n    ```\r\n\r\n2. Add a [`tsconfig.json`](https://www.typescriptlang.org/docs/handbook/tsconfig-json.html) file. (The one below is super simple; but you can tweak this to your hearts desire)\r\n\r\n    ```json\r\n    {\r\n      \"compilerOptions\": {\r\n      }\r\n    }\r\n    ```\r\n\r\nThe [tsconfig.json](http://www.typescriptlang.org/docs/handbook/tsconfig-json.html) file controls\r\nTypeScript-related options so that your IDE, the `tsc` command, and this loader all share the\r\nsame options.\r\n\r\n### Failing the build on TypeScript compilation error\r\n\r\nWhen the build fails (i.e. at least one typescript compile error occured), ts-loader does **not** propagate the build failure to webpack.  The upshot of this is you can fail to notice an erroring build. This is inconvenient; particularly in continuous integration scenarios.  If you want to ensure that the build failure is propogated it is advised that you make use of the [webpack-fail-plugin](https://www.npmjs.com/package/webpack-fail-plugin).  This plugin that will make the process return status code 1 when it finishes with errors in single-run mode. Et voilà! Build failure.\r\n\r\nFor more background have a read of [this issue](https://github.com/TypeStrong/ts-loader/issues/108).\r\n\r\n#### Options\r\n\r\nThere are two types of options: TypeScript options (aka \"compiler options\") and loader options. TypeScript options should be set using a tsconfig.json file. Loader options can be set either using a query when specifying the loader or through the `options` property in the webpack configuration:\r\n\r\n```javascript\r\nmodule.exports = {\r\n  ...\r\n  module: {\r\n    rules: [\r\n      { \r\n        test: /\\.tsx?$/, \r\n        loader: 'ts-loader', \r\n        options: {\r\n          transpileOnly: true\r\n        } \r\n      }\r\n    ]\r\n  }\r\n}\r\n```\r\n\r\nAlternatively this can be configured using a query:\r\n\r\n```javascript\r\nmodule.exports = {\r\n  ...\r\n  module: {\r\n    loaders: [\r\n      // specify option using query\r\n      { \r\n        test: /\\.tsx?$/,\r\n        loader: 'ts-loader?' + JSON.stringify({\r\n          transpileOnly: true\r\n        }) }\r\n    ]\r\n  }\r\n}\r\n```\r\n\r\nFor a full breakdown of the power of query syntax have a read of [this](https://github.com/webpack/loader-utils#getoptions).\r\n\r\n#### Available Options\r\n\r\n##### transpileOnly *(boolean) (default=false)*\r\n\r\nIf you want to speed up compilation significantly you can set this flag.\r\nHowever, many of the benefits you get from static type checking between\r\ndifferent dependencies in your application will be lost. You should also\r\nset the `isolatedModules` TypeScript option if you plan to ever make use\r\nof this.\r\n\r\n##### logInfoToStdOut *(boolean) (default=false)*\r\n\r\nThis is important if you read from stdout or stderr and for proper error handling.\r\nThe default value ensures that you can read from stdout e.g. via pipes or you use webpack -j to generate json output.\r\n\r\n##### logLevel *(string) (default=info)*\r\n\r\nCan be `info`, `warn` or `error` which limits the log output to the specified log level.\r\nBeware of the fact that errors are written to stderr and everything else is written to stderr (or stdout if logInfoToStdOut is true).\r\n\r\n##### silent *(boolean) (default=false)*\r\n\r\nIf true, no console.log messages will be emitted. Note that most error\r\nmessages are emitted via webpack which is not affected by this flag.\r\n\r\n##### ignoreDiagnostics *(number[]) (default=[])*\r\n\r\nYou can squelch certain TypeScript errors by specifying an array of diagnostic\r\ncodes to ignore.\r\n\r\n##### compiler *(string) (default='typescript')*\r\n\r\nAllows use of TypeScript compilers other than the official one. Should be\r\nset to the NPM name of the compiler, eg [`ntypescript`](https://github.com/basarat/ntypescript).\r\n\r\n##### configFileName *(string) (default='tsconfig.json')*\r\n\r\nAllows you to specify a custom configuration file.\r\n\r\n##### visualStudioErrorFormat *(boolean) (default=false)*\r\n\r\nIf `true`, the TypeScript compiler output for an error or a warning, e.g. `(3,14): error TS4711: you did something very wrong`, in file `myFile` will instead be `myFile(3,14): error TS4711: you did something very wrong` (notice the file name at the beginning). This way Visual Studio will interpret this line and show any errors or warnings in the *error list*. This enables navigation to the file/line/column through double click.\r\n\r\n##### compilerOptions *(object) (default={})*\r\n\r\nAllows overriding TypeScript options. Should be specified in the same format\r\nas you would do for the `compilerOptions` property in tsconfig.json.\r\n\r\n##### instance *(string)*\r\n\r\nAdvanced option to force files to go through different instances of the\r\nTypeScript compiler. Can be used to force segregation between different parts\r\nof your code.\r\n\r\n#### entryFileIsJs *(boolean) (default=false)*\r\n\r\nTo be used in concert with the `allowJs` compiler option. If your entry file is JS then you'll need to set this option to true.  Please note that this is rather unusual and will generally not be necessary when using `allowJs`.\r\n\r\n#### appendTsSuffixTo *(RegExp[]) (default=[])*\r\nA list of regular expressions to be matched against filename. If filename matches one of the regular expressions, a `.ts` suffix will be appended to that filename.\r\n\r\nThis is useful for `*.vue` [file format](https://vuejs.org/v2/guide/single-file-components.html) for now. (Probably will benefit from the new single file format in the future.)\r\n\r\nExample:\r\n\r\nwebpack.config.js:\r\n\r\n```javascript\r\nmodule.exports = {\r\n    entry: './index.vue',\r\n    output: { filename: 'bundle.js' },\r\n    resolve: {\r\n        extensions: ['.ts', '.vue']\r\n    },\r\n    module: {\r\n        loaders: [\r\n            { test: /\\.vue$/, loader: 'vue' },\r\n            { test: /\\.ts$/, loader: 'ts', options: { appendTsSuffixTo: [/\\.vue$/] } }\r\n        ]\r\n    } \r\n}\r\n```\r\n\r\nindex.vue\r\n\r\n```vue\r\n<template><p>hello {{msg}}</p></template>\r\n<script lang=\"ts\">\r\nexport default {\r\n  data(): Object {\r\n    return {\r\n      msg: \"world\"\r\n    }\r\n  },\r\n}\r\n</script>\r\n```\r\n\r\n\r\n### Loading other resources and code splitting\r\n\r\nLoading css and other resources is possible but you will need to make sure that\r\nyou have defined the `require` function in a [declaration file](https://www.typescriptlang.org/docs/handbook/writing-declaration-files.html).\r\n\r\n```typescript\r\ndeclare var require: {\r\n    <T>(path: string): T;\r\n    (paths: string[], callback: (...modules: any[]) => void): void;\r\n    ensure: (paths: string[], callback: (require: <T>(path: string) => T) => void) => void;\r\n};\r\n```\r\n\r\nThen you can simply require assets or chunks per the [webpack documentation](http://webpack.github.io/docs).\r\n\r\n```js\r\nrequire('!style!css!./style.css');\r\n```\r\n\r\nThe same basic process is required for code splitting. In this case, you `import` modules you need but you\r\ndon't directly use them. Instead you require them at [split points](http://webpack.github.io/docs/code-splitting.html#defining-a-split-point).\r\nSee [this example](test/comparison-tests/codeSplitting) and [this example](test/comparison-tests/es6codeSplitting) for more details.\r\n\r\n## License\r\n\r\nMIT License\r\n","repository":{"type":"git","url":"git+https://github.com/TypeStrong/ts-loader.git"},"users":{"linhmtran168":true,"silhouettes":true,"ridermansb":true,"wfalkwallace":true,"dawud-tan":true,"a3.ivanenko":true,"ackhub":true,"fadihania":true,"cfleschhut":true,"jruif":true,"enigmasama":true,"darwinniwrad":true,"drewigg":true,"mtgibbs":true,"johnnyreilly":true,"danielye":true,"kodekracker":true},"bugs":{"url":"https://github.com/TypeStrong/ts-loader/issues"},"license":"MIT","versions":{"0.1.0":{"name":"ts-loader","version":"0.1.0","description":"TypeScript loader for webpack","main":"index.js","scripts":{"prepublish":"tsc index.ts --module commonjs"},"repository":{"type":"git","url":"https://github.com/jbrantly/ts-loader.git"},"keywords":["ts-loader","typescript-loader","webpack","loader","typescript","ts"],"author":{"name":"James Brantly","email":"james@jbrantly.com","url":"http://www.jbrantly.com/"},"license":"MIT","bugs":{"url":"https://github.com/jbrantly/ts-loader/issues"},"homepage":"https://github.com/jbrantly/ts-loader","dependencies":{"q":"^1.1.2","typescript":"^1.4.1"},"gitHead":"a54f551c179a1a92dd364ff325ca7fe98a74379d","_id":"ts-loader@0.1.0","_shasum":"8856a916ba234e96ad5b65079d590332e243194e","_from":".","_npmVersion":"2.3.0","_nodeVersion":"0.10.35","_npmUser":{"name":"jbrantly","email":"james@jbrantly.com"},"maintainers":[{"name":"jbrantly","email":"james@jbrantly.com"}],"dist":{"shasum":"8856a916ba234e96ad5b65079d590332e243194e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/ts-loader/-/ts-loader-0.1.0.tgz"},"directories":{}},"0.2.0":{"name":"ts-loader","version":"0.2.0","description":"TypeScript loader for webpack","main":"index.js","scripts":{"pretest":"tsc index.ts --module commonjs","test":"node ./node_modules/mocha/bin/mocha --reporter spec test/run.js","prepublish":"tsc index.ts --module commonjs"},"repository":{"type":"git","url":"https://github.com/jbrantly/ts-loader.git"},"keywords":["ts-loader","typescript-loader","webpack","loader","typescript","ts"],"author":{"name":"James Brantly","email":"james@jbrantly.com","url":"http://www.jbrantly.com/"},"license":"MIT","bugs":{"url":"https://github.com/jbrantly/ts-loader/issues"},"homepage":"https://github.com/jbrantly/ts-loader","dependencies":{"loader-utils":"^0.2.6","object-assign":"^2.0.0","q":"^1.1.2","typescript":"^1.4.1"},"devDependencies":{"mocha":"^2.1.0","webpack":"^1.5.3"},"gitHead":"08b059f0b43decf57630406604564160b85baf55","_id":"ts-loader@0.2.0","_shasum":"96b3a3327a889af083d2194166148e84f4a5f0e0","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"jbrantly","email":"james@jbrantly.com"},"maintainers":[{"name":"jbrantly","email":"james@jbrantly.com"}],"dist":{"shasum":"96b3a3327a889af083d2194166148e84f4a5f0e0","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/ts-loader/-/ts-loader-0.2.0.tgz"},"directories":{}},"0.2.1":{"name":"ts-loader","version":"0.2.1","description":"TypeScript loader for webpack","main":"index.js","scripts":{"pretest":"tsc index.ts --module commonjs","test":"node ./node_modules/mocha/bin/mocha --reporter spec test/run.js","prepublish":"tsc index.ts --module commonjs"},"repository":{"type":"git","url":"https://github.com/jbrantly/ts-loader.git"},"keywords":["ts-loader","typescript-loader","webpack","loader","typescript","ts"],"author":{"name":"James Brantly","email":"james@jbrantly.com","url":"http://www.jbrantly.com/"},"license":"MIT","bugs":{"url":"https://github.com/jbrantly/ts-loader/issues"},"homepage":"https://github.com/jbrantly/ts-loader","dependencies":{"colors":"^1.0.3","loader-utils":"^0.2.6","object-assign":"^2.0.0","q":"^1.1.2","typescript":"^1.4.1"},"devDependencies":{"mocha":"^2.1.0","webpack":"^1.5.3"},"gitHead":"1fe24ed8b9d35f0346ee7b3cad868ddf08e384af","_id":"ts-loader@0.2.1","_shasum":"f5d3873c291199713f83efaadd9bb7cabba2938f","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"jbrantly","email":"james@jbrantly.com"},"maintainers":[{"name":"jbrantly","email":"james@jbrantly.com"}],"dist":{"shasum":"f5d3873c291199713f83efaadd9bb7cabba2938f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/ts-loader/-/ts-loader-0.2.1.tgz"},"directories":{}},"0.2.2":{"name":"ts-loader","version":"0.2.2","description":"TypeScript loader for webpack","main":"index.js","scripts":{"pretest":"tsc index.ts --module commonjs","test":"node ./node_modules/mocha/bin/mocha --reporter spec test/run.js","prepublish":"tsc index.ts --module commonjs"},"repository":{"type":"git","url":"https://github.com/jbrantly/ts-loader.git"},"keywords":["ts-loader","typescript-loader","webpack","loader","typescript","ts"],"author":{"name":"James Brantly","email":"james@jbrantly.com","url":"http://www.jbrantly.com/"},"license":"MIT","bugs":{"url":"https://github.com/jbrantly/ts-loader/issues"},"homepage":"https://github.com/jbrantly/ts-loader","dependencies":{"colors":"^1.0.3","loader-utils":"^0.2.6","object-assign":"^2.0.0","q":"^1.1.2","typescript":"^1.4.1"},"devDependencies":{"mocha":"^2.1.0","webpack":"^1.5.3"},"gitHead":"17ca8406a84c0b1ad2bfed30ee920f7647114a84","_id":"ts-loader@0.2.2","_shasum":"73da3084f694b2fabd1e94ecc74b1b93bcfe7f12","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"jbrantly","email":"james@jbrantly.com"},"maintainers":[{"name":"jbrantly","email":"james@jbrantly.com"}],"dist":{"shasum":"73da3084f694b2fabd1e94ecc74b1b93bcfe7f12","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/ts-loader/-/ts-loader-0.2.2.tgz"},"directories":{}},"0.2.3":{"name":"ts-loader","version":"0.2.3","description":"TypeScript loader for webpack","main":"index.js","scripts":{"pretest":"tsc index.ts --module commonjs","test":"node ./node_modules/mocha/bin/mocha --reporter spec test/run.js","prepublish":"tsc index.ts --module commonjs"},"repository":{"type":"git","url":"https://github.com/jbrantly/ts-loader.git"},"keywords":["ts-loader","typescript-loader","webpack","loader","typescript","ts"],"author":{"name":"James Brantly","email":"james@jbrantly.com","url":"http://www.jbrantly.com/"},"license":"MIT","bugs":{"url":"https://github.com/jbrantly/ts-loader/issues"},"homepage":"https://github.com/jbrantly/ts-loader","dependencies":{"colors":"^1.0.3","loader-utils":"^0.2.6","object-assign":"^2.0.0","q":"^1.1.2","typescript":"^1.4.1"},"devDependencies":{"mocha":"^2.1.0","webpack":"^1.5.3"},"gitHead":"ebfb95f9084fdb9f05c00da871255ab10594e140","_id":"ts-loader@0.2.3","_shasum":"47a72e46ad735144abd3c7be84de091ab2db0216","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"jbrantly","email":"james@jbrantly.com"},"maintainers":[{"name":"jbrantly","email":"james@jbrantly.com"}],"dist":{"shasum":"47a72e46ad735144abd3c7be84de091ab2db0216","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/ts-loader/-/ts-loader-0.2.3.tgz"},"directories":{}},"0.3.0":{"name":"ts-loader","version":"0.3.0","description":"TypeScript loader for webpack","main":"index.js","scripts":{"pretest":"tsc index.ts --module commonjs","test":"node ./node_modules/mocha/bin/mocha --reporter spec test/run.js","prepublish":"tsc index.ts --module commonjs"},"repository":{"type":"git","url":"https://github.com/jbrantly/ts-loader.git"},"keywords":["ts-loader","typescript-loader","webpack","loader","typescript","ts"],"author":{"name":"James Brantly","email":"james@jbrantly.com","url":"http://www.jbrantly.com/"},"license":"MIT","bugs":{"url":"https://github.com/jbrantly/ts-loader/issues"},"homepage":"https://github.com/jbrantly/ts-loader","dependencies":{"colors":"^1.0.3","loader-utils":"^0.2.6","object-assign":"^2.0.0","typescript":"^1.4.1"},"devDependencies":{"mocha":"^2.1.0","webpack":"^1.5.3"},"gitHead":"425a830f7aaca2c4ef53f12e7dc9fd4b09cdac36","_id":"ts-loader@0.3.0","_shasum":"0d33e54242cd660858f4401f697442c7bdd147f8","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"jbrantly","email":"james@jbrantly.com"},"maintainers":[{"name":"jbrantly","email":"james@jbrantly.com"}],"dist":{"shasum":"0d33e54242cd660858f4401f697442c7bdd147f8","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/ts-loader/-/ts-loader-0.3.0.tgz"},"directories":{}},"0.3.1":{"name":"ts-loader","version":"0.3.1","description":"TypeScript loader for webpack","main":"index.js","scripts":{"pretest":"tsc index.ts --module commonjs","test":"node ./node_modules/mocha/bin/mocha --reporter spec test/run.js","prepublish":"tsc index.ts --module commonjs"},"repository":{"type":"git","url":"https://github.com/jbrantly/ts-loader.git"},"keywords":["ts-loader","typescript-loader","webpack","loader","typescript","ts"],"author":{"name":"James Brantly","email":"james@jbrantly.com","url":"http://www.jbrantly.com/"},"license":"MIT","bugs":{"url":"https://github.com/jbrantly/ts-loader/issues"},"homepage":"https://github.com/jbrantly/ts-loader","dependencies":{"colors":"^1.0.3","loader-utils":"^0.2.6","object-assign":"^2.0.0","typescript":"^1.4.1"},"devDependencies":{"jsx-typescript":"^1.5.0-alpha.4","mocha":"^2.1.0","webpack":"^1.5.3"},"gitHead":"9d5a3d0f1a7240a280ae4a1614625415b077d793","_id":"ts-loader@0.3.1","_shasum":"874fef4e66affad3b1e880445f5b0fa7f1dd87cf","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"jbrantly","email":"james@jbrantly.com"},"maintainers":[{"name":"jbrantly","email":"james@jbrantly.com"}],"dist":{"shasum":"874fef4e66affad3b1e880445f5b0fa7f1dd87cf","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/ts-loader/-/ts-loader-0.3.1.tgz"},"directories":{}},"0.3.2":{"name":"ts-loader","version":"0.3.2","description":"TypeScript loader for webpack","main":"index.js","scripts":{"pretest":"tsc index.ts --module commonjs","test":"node ./node_modules/mocha/bin/mocha --reporter spec test/run.js","prepublish":"tsc index.ts --module commonjs"},"repository":{"type":"git","url":"https://github.com/jbrantly/ts-loader.git"},"keywords":["ts-loader","typescript-loader","webpack","loader","typescript","ts"],"author":{"name":"James Brantly","email":"james@jbrantly.com","url":"http://www.jbrantly.com/"},"license":"MIT","bugs":{"url":"https://github.com/jbrantly/ts-loader/issues"},"homepage":"https://github.com/jbrantly/ts-loader","dependencies":{"colors":"^1.0.3","loader-utils":"^0.2.6","object-assign":"^2.0.0","typescript":"^1.4.1"},"devDependencies":{"jsx-typescript":"^1.5.0-alpha.4","mocha":"^2.1.0","webpack":"^1.5.3"},"gitHead":"99a6c7a0da9c1974897a85c5a5fda3ba1a1dbfd9","_id":"ts-loader@0.3.2","_shasum":"cff54cb7dcf885ac736a759169bc52a7b4542de9","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"jbrantly","email":"james@jbrantly.com"},"maintainers":[{"name":"jbrantly","email":"james@jbrantly.com"}],"dist":{"shasum":"cff54cb7dcf885ac736a759169bc52a7b4542de9","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/ts-loader/-/ts-loader-0.3.2.tgz"},"directories":{}},"0.3.3":{"name":"ts-loader","version":"0.3.3","description":"TypeScript loader for webpack","main":"index.js","scripts":{"pretest":"tsc index.ts --module commonjs","test":"node ./node_modules/mocha/bin/mocha --reporter spec test/run.js","prepublish":"tsc index.ts --module commonjs"},"repository":{"type":"git","url":"https://github.com/jbrantly/ts-loader.git"},"keywords":["ts-loader","typescript-loader","webpack","loader","typescript","ts"],"author":{"name":"James Brantly","email":"james@jbrantly.com","url":"http://www.jbrantly.com/"},"license":"MIT","bugs":{"url":"https://github.com/jbrantly/ts-loader/issues"},"homepage":"https://github.com/jbrantly/ts-loader","dependencies":{"colors":"^1.0.3","loader-utils":"^0.2.6","object-assign":"^2.0.0","typescript":"^1.4.1"},"devDependencies":{"jsx-typescript":"^1.5.0-alpha.4","mocha":"^2.1.0","webpack":"^1.5.3"},"gitHead":"fc74b86ffdd2c40474f804fd16163c5dfcc2b99d","_id":"ts-loader@0.3.3","_shasum":"16301cde54729e0375938d7420465d20710b7025","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"jbrantly","email":"james@jbrantly.com"},"maintainers":[{"name":"jbrantly","email":"james@jbrantly.com"}],"dist":{"shasum":"16301cde54729e0375938d7420465d20710b7025","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/ts-loader/-/ts-loader-0.3.3.tgz"},"directories":{}},"0.3.4":{"name":"ts-loader","version":"0.3.4","description":"TypeScript loader for webpack","main":"index.js","scripts":{"pretest":"tsc index.ts --module commonjs","test":"node ./node_modules/mocha/bin/mocha --reporter spec test/run.js","prepublish":"tsc index.ts --module commonjs"},"repository":{"type":"git","url":"https://github.com/jbrantly/ts-loader.git"},"keywords":["ts-loader","typescript-loader","webpack","loader","typescript","ts"],"author":{"name":"James Brantly","email":"james@jbrantly.com","url":"http://www.jbrantly.com/"},"license":"MIT","bugs":{"url":"https://github.com/jbrantly/ts-loader/issues"},"homepage":"https://github.com/jbrantly/ts-loader","dependencies":{"colors":"^1.0.3","loader-utils":"^0.2.6","object-assign":"^2.0.0","typescript":"~1.4.1"},"devDependencies":{"jsx-typescript":"^1.5.0-alpha.4","mocha":"^2.1.0","webpack":"^1.5.3"},"gitHead":"6f1c154ab4ad97407d9d472b721b1ee647ac995d","_id":"ts-loader@0.3.4","_shasum":"eec150898a05ce6f14c11fe27cd429eb6f9bd710","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"jbrantly","email":"james@jbrantly.com"},"maintainers":[{"name":"jbrantly","email":"james@jbrantly.com"}],"dist":{"shasum":"eec150898a05ce6f14c11fe27cd429eb6f9bd710","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/ts-loader/-/ts-loader-0.3.4.tgz"},"directories":{}},"0.4.0":{"name":"ts-loader","version":"0.4.0","description":"TypeScript loader for webpack","main":"index.js","scripts":{"pretest":"tsc index.ts --module commonjs","test":"node ./node_modules/mocha/bin/mocha --reporter spec test/run.js","prepublish":"tsc index.ts --module commonjs"},"repository":{"type":"git","url":"https://github.com/jbrantly/ts-loader.git"},"keywords":["ts-loader","typescript-loader","webpack","loader","typescript","ts"],"author":{"name":"James Brantly","email":"james@jbrantly.com","url":"http://www.jbrantly.com/"},"license":"MIT","bugs":{"url":"https://github.com/jbrantly/ts-loader/issues"},"homepage":"https://github.com/jbrantly/ts-loader","dependencies":{"colors":"^1.0.3","loader-utils":"^0.2.6","object-assign":"^2.0.0","typescript":"~1.5.0"},"devDependencies":{"jsx-typescript":"^1.5.0-alpha.4","mocha":"^2.1.0","webpack":"^1.5.3"},"gitHead":"66cb9c52d9b22e0afa7790c2350477a33c02d6ce","_id":"ts-loader@0.4.0","_shasum":"2bea7e8f1956accc205a15c8b172591f9144edce","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"jbrantly","email":"james@jbrantly.com"},"maintainers":[{"name":"jbrantly","email":"james@jbrantly.com"}],"dist":{"shasum":"2bea7e8f1956accc205a15c8b172591f9144edce","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/ts-loader/-/ts-loader-0.4.0.tgz"},"directories":{}},"0.4.1":{"name":"ts-loader","version":"0.4.1","description":"TypeScript loader for webpack","main":"index.js","scripts":{"pretest":"tsc index.ts --module commonjs","test":"node ./node_modules/mocha/bin/mocha --reporter spec test/run.js","prepublish":"tsc index.ts --module commonjs"},"repository":{"type":"git","url":"https://github.com/jbrantly/ts-loader.git"},"keywords":["ts-loader","typescript-loader","webpack","loader","typescript","ts"],"author":{"name":"James Brantly","email":"james@jbrantly.com","url":"http://www.jbrantly.com/"},"license":"MIT","bugs":{"url":"https://github.com/jbrantly/ts-loader/issues"},"homepage":"https://github.com/jbrantly/ts-loader","dependencies":{"colors":"^1.0.3","loader-utils":"^0.2.6","object-assign":"^2.0.0","typescript":"~1.5.0"},"devDependencies":{"jsx-typescript":"^1.5.0-alpha.4","mocha":"^2.1.0","webpack":"^1.5.3"},"gitHead":"c4394142f71e1565f10b0fd24225f2ce615ee3b8","_id":"ts-loader@0.4.1","_shasum":"786772f4eec0a9e2891ca18cbcc188518a2c701b","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"jbrantly","email":"james@jbrantly.com"},"maintainers":[{"name":"jbrantly","email":"james@jbrantly.com"}],"dist":{"shasum":"786772f4eec0a9e2891ca18cbcc188518a2c701b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/ts-loader/-/ts-loader-0.4.1.tgz"},"directories":{}},"0.4.2":{"name":"ts-loader","version":"0.4.2","description":"TypeScript loader for webpack","main":"index.js","scripts":{"pretest":"tsc index.ts --module commonjs","test":"node ./node_modules/mocha/bin/mocha --reporter spec test/run.js","prepublish":"tsc index.ts --module commonjs"},"repository":{"type":"git","url":"https://github.com/jbrantly/ts-loader.git"},"keywords":["ts-loader","typescript-loader","webpack","loader","typescript","ts"],"author":{"name":"James Brantly","email":"james@jbrantly.com","url":"http://www.jbrantly.com/"},"license":"MIT","bugs":{"url":"https://github.com/jbrantly/ts-loader/issues"},"homepage":"https://github.com/jbrantly/ts-loader","dependencies":{"colors":"^1.0.3","loader-utils":"^0.2.6","object-assign":"^2.0.0","typescript":"~1.5.0-beta"},"devDependencies":{"jsx-typescript":"^1.5.0-alpha.4","mocha":"^2.1.0","webpack":"^1.5.3"},"gitHead":"56fc8435575d088c970c4455291e12a2606bc1e3","_id":"ts-loader@0.4.2","_shasum":"8f35f106da0186cda6b6f5b6a9583fc388f61532","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"jbrantly","email":"james@jbrantly.com"},"maintainers":[{"name":"jbrantly","email":"james@jbrantly.com"}],"dist":{"shasum":"8f35f106da0186cda6b6f5b6a9583fc388f61532","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/ts-loader/-/ts-loader-0.4.2.tgz"},"directories":{}},"0.4.3":{"name":"ts-loader","version":"0.4.3","description":"TypeScript loader for webpack","main":"index.js","scripts":{"pretest":"tsc index.ts --module commonjs","test":"node ./node_modules/mocha/bin/mocha --reporter spec test/run.js","prepublish":"tsc index.ts --module commonjs"},"repository":{"type":"git","url":"https://github.com/jbrantly/ts-loader.git"},"keywords":["ts-loader","typescript-loader","webpack","loader","typescript","ts"],"author":{"name":"James Brantly","email":"james@jbrantly.com","url":"http://www.jbrantly.com/"},"license":"MIT","bugs":{"url":"https://github.com/jbrantly/ts-loader/issues"},"homepage":"https://github.com/jbrantly/ts-loader","dependencies":{"colors":"^1.0.3","loader-utils":"^0.2.6","object-assign":"^2.0.0","typescript":"~1.5.0-beta"},"devDependencies":{"jsx-typescript":"^1.5.0-alpha.4","mocha":"^2.1.0","webpack":"^1.5.3"},"gitHead":"6be0184449950b4fe200099cac32fb310cb98255","_id":"ts-loader@0.4.3","_shasum":"d6ffd8e6c0cc78917911f2765ae31f09db26bf77","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"jbrantly","email":"james@jbrantly.com"},"maintainers":[{"name":"jbrantly","email":"james@jbrantly.com"}],"dist":{"shasum":"d6ffd8e6c0cc78917911f2765ae31f09db26bf77","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/ts-loader/-/ts-loader-0.4.3.tgz"},"directories":{}},"0.4.4":{"name":"ts-loader","version":"0.4.4","description":"TypeScript loader for webpack","main":"index.js","scripts":{"pretest":"tsc index.ts --module commonjs","test":"node ./node_modules/mocha/bin/mocha --reporter spec test/run.js","prepublish":"tsc index.ts --module commonjs"},"repository":{"type":"git","url":"https://github.com/jbrantly/ts-loader.git"},"keywords":["ts-loader","typescript-loader","webpack","loader","typescript","ts"],"author":{"name":"James Brantly","email":"james@jbrantly.com","url":"http://www.jbrantly.com/"},"license":"MIT","bugs":{"url":"https://github.com/jbrantly/ts-loader/issues"},"homepage":"https://github.com/jbrantly/ts-loader","dependencies":{"colors":"^1.0.3","loader-utils":"^0.2.6","object-assign":"^2.0.0","typescript":"~1.5.0-beta"},"devDependencies":{"jsx-typescript":"^1.5.0-alpha.4","mocha":"^2.1.0","webpack":"^1.9.11"},"gitHead":"969e0f5279da4fc455ca234169205c97f28c3276","_id":"ts-loader@0.4.4","_shasum":"3d970110377e932b745ce79b2f8932e839442a37","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"jbrantly","email":"james@jbrantly.com"},"maintainers":[{"name":"jbrantly","email":"james@jbrantly.com"}],"dist":{"shasum":"3d970110377e932b745ce79b2f8932e839442a37","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/ts-loader/-/ts-loader-0.4.4.tgz"},"directories":{}},"0.4.5":{"name":"ts-loader","version":"0.4.5","description":"TypeScript loader for webpack","main":"index.js","scripts":{"pretest":"tsc index.ts --module commonjs","test":"node ./node_modules/mocha/bin/mocha --reporter spec test/run.js","prepublish":"tsc index.ts --module commonjs"},"repository":{"type":"git","url":"https://github.com/jbrantly/ts-loader.git"},"keywords":["ts-loader","typescript-loader","webpack","loader","typescript","ts"],"author":{"name":"James Brantly","email":"james@jbrantly.com","url":"http://www.jbrantly.com/"},"license":"MIT","bugs":{"url":"https://github.com/jbrantly/ts-loader/issues"},"homepage":"https://github.com/jbrantly/ts-loader","dependencies":{"colors":"^1.0.3","loader-utils":"^0.2.6","object-assign":"^2.0.0","typescript":"~1.5.0-beta"},"devDependencies":{"jsx-typescript":"^1.5.0-alpha.4","mocha":"^2.1.0","webpack":"^1.9.11"},"gitHead":"49c20afa1e46e14aa46cdeb84df965dfc6fa5833","_id":"ts-loader@0.4.5","_shasum":"aff7b2b6099cfefd85f2d2f5765205f2996af2ff","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"jbrantly","email":"james@jbrantly.com"},"maintainers":[{"name":"jbrantly","email":"james@jbrantly.com"}],"dist":{"shasum":"aff7b2b6099cfefd85f2d2f5765205f2996af2ff","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/ts-loader/-/ts-loader-0.4.5.tgz"},"directories":{}},"0.4.6":{"name":"ts-loader","version":"0.4.6","description":"TypeScript loader for webpack","main":"index.js","scripts":{"pretest":"tsc index.ts --module commonjs","test":"node ./node_modules/mocha/bin/mocha --reporter spec test/run.js","prepublish":"tsc index.ts --module commonjs"},"repository":{"type":"git","url":"https://github.com/jbrantly/ts-loader.git"},"keywords":["ts-loader","typescript-loader","webpack","loader","typescript","ts"],"author":{"name":"James Brantly","email":"james@jbrantly.com","url":"http://www.jbrantly.com/"},"license":"MIT","bugs":{"url":"https://github.com/jbrantly/ts-loader/issues"},"homepage":"https://github.com/jbrantly/ts-loader","dependencies":{"colors":"^1.0.3","loader-utils":"^0.2.6","object-assign":"^2.0.0","typescript":"~1.5.0-beta"},"devDependencies":{"mocha":"^2.1.0","webpack":"^1.9.11"},"gitHead":"e53d7979469c78b1b778f7a8eede62411139bd3c","_id":"ts-loader@0.4.6","_shasum":"ee36a0812ffb566f629a2347f8926209e948c8bb","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"jbrantly","email":"james@jbrantly.com"},"maintainers":[{"name":"jbrantly","email":"james@jbrantly.com"}],"dist":{"shasum":"ee36a0812ffb566f629a2347f8926209e948c8bb","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/ts-loader/-/ts-loader-0.4.6.tgz"},"directories":{}},"0.4.7":{"name":"ts-loader","version":"0.4.7","description":"TypeScript loader for webpack","main":"index.js","scripts":{"pretest":"tsc index.ts --module commonjs","test":"node ./node_modules/mocha/bin/mocha --reporter spec test/run.js","prepublish":"tsc index.ts --module commonjs"},"repository":{"type":"git","url":"https://github.com/jbrantly/ts-loader.git"},"keywords":["ts-loader","typescript-loader","webpack","loader","typescript","ts"],"author":{"name":"James Brantly","email":"james@jbrantly.com","url":"http://www.jbrantly.com/"},"license":"MIT","bugs":{"url":"https://github.com/jbrantly/ts-loader/issues"},"homepage":"https://github.com/jbrantly/ts-loader","dependencies":{"colors":"^1.0.3","loader-utils":"^0.2.6","object-assign":"^2.0.0","typescript":"~1.5.3"},"devDependencies":{"mocha":"^2.1.0","webpack":"^1.9.11"},"gitHead":"a642a4e9200390f3bc8dabd0036231975f86e3a5","_id":"ts-loader@0.4.7","_shasum":"184b930b9f054a8550fb9162f9adce3d556e1f3d","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"jbrantly","email":"james@jbrantly.com"},"maintainers":[{"name":"jbrantly","email":"james@jbrantly.com"}],"dist":{"shasum":"184b930b9f054a8550fb9162f9adce3d556e1f3d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/ts-loader/-/ts-loader-0.4.7.tgz"},"directories":{}},"0.5.0":{"name":"ts-loader","version":"0.5.0","description":"TypeScript loader for webpack","main":"index.js","scripts":{"pretest":"tsc index.ts --module commonjs","test":"node ./node_modules/mocha/bin/mocha --reporter spec test/run.js","prepublish":"tsc index.ts --module commonjs"},"repository":{"type":"git","url":"https://github.com/jbrantly/ts-loader.git"},"keywords":["ts-loader","typescript-loader","webpack","loader","typescript","ts"],"author":{"name":"James Brantly","email":"james@jbrantly.com","url":"http://www.jbrantly.com/"},"license":"MIT","bugs":{"url":"https://github.com/jbrantly/ts-loader/issues"},"homepage":"https://github.com/jbrantly/ts-loader","dependencies":{"colors":"^1.0.3","loader-utils":"^0.2.6","object-assign":"^2.0.0"},"devDependencies":{"babel-core":"^5.8.20","babel-loader":"^5.3.2","escape-string-regexp":"^1.0.3","fs-extra":"^0.22.1","mkdirp":"^0.5.1","mocha":"^2.1.0","rimraf":"^2.4.2","semver":"^5.0.1","webpack":"^1.9.11"},"gitHead":"cee02a7e08352058ab4de161067a39f8c0ed8822","_id":"ts-loader@0.5.0","_shasum":"6f7dd2919fa08293eec59bec7bd4221e920a6951","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"jbrantly","email":"james@jbrantly.com"},"maintainers":[{"name":"jbrantly","email":"james@jbrantly.com"}],"dist":{"shasum":"6f7dd2919fa08293eec59bec7bd4221e920a6951","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/ts-loader/-/ts-loader-0.5.0.tgz"},"directories":{}},"0.5.1":{"name":"ts-loader","version":"0.5.1","description":"TypeScript loader for webpack","main":"index.js","scripts":{"pretest":"tsc index.ts --module commonjs","test":"node ./node_modules/mocha/bin/mocha --reporter spec test/run.js","prepublish":"tsc index.ts --module commonjs"},"repository":{"type":"git","url":"https://github.com/jbrantly/ts-loader.git"},"keywords":["ts-loader","typescript-loader","webpack","loader","typescript","ts"],"author":{"name":"James Brantly","email":"james@jbrantly.com","url":"http://www.jbrantly.com/"},"license":"MIT","bugs":{"url":"https://github.com/jbrantly/ts-loader/issues"},"homepage":"https://github.com/jbrantly/ts-loader","dependencies":{"colors":"^1.0.3","loader-utils":"^0.2.6","object-assign":"^2.0.0","semver":"^5.0.1"},"devDependencies":{"babel-core":"^5.8.20","babel-loader":"^5.3.2","escape-string-regexp":"^1.0.3","fs-extra":"^0.22.1","mkdirp":"^0.5.1","mocha":"^2.1.0","rimraf":"^2.4.2","webpack":"^1.11.0"},"gitHead":"0294e47174d15ede13dcf31366a5bf9cbaaa8e72","_id":"ts-loader@0.5.1","_shasum":"296d9c04cf5b381a8f61ac72906e7e85b3b22d44","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"jbrantly","email":"james@jbrantly.com"},"maintainers":[{"name":"jbrantly","email":"james@jbrantly.com"}],"dist":{"shasum":"296d9c04cf5b381a8f61ac72906e7e85b3b22d44","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/ts-loader/-/ts-loader-0.5.1.tgz"},"directories":{}},"0.5.2":{"name":"ts-loader","version":"0.5.2","description":"TypeScript loader for webpack","main":"index.js","scripts":{"pretest":"tsc index.ts --module commonjs","test":"node ./node_modules/mocha/bin/mocha --reporter spec test/run.js","prepublish":"tsc index.ts --module commonjs"},"repository":{"type":"git","url":"https://github.com/jbrantly/ts-loader.git"},"keywords":["ts-loader","typescript-loader","webpack","loader","typescript","ts"],"author":{"name":"James Brantly","email":"james@jbrantly.com","url":"http://www.jbrantly.com/"},"license":"MIT","bugs":{"url":"https://github.com/jbrantly/ts-loader/issues"},"homepage":"https://github.com/jbrantly/ts-loader","dependencies":{"colors":"^1.0.3","loader-utils":"^0.2.6","object-assign":"^2.0.0","semver":"^5.0.1"},"devDependencies":{"babel-core":"^5.8.20","babel-loader":"^5.3.2","escape-string-regexp":"^1.0.3","fs-extra":"^0.22.1","mkdirp":"^0.5.1","mocha":"^2.1.0","rimraf":"^2.4.2","webpack":"^1.11.0"},"gitHead":"9fd522ab2c9ac64880a71f8bbd89c961129290f4","_id":"ts-loader@0.5.2","_shasum":"dbf98dbfe4359aaaf466a1404405ade440aa2f0f","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"jbrantly","email":"james@jbrantly.com"},"maintainers":[{"name":"jbrantly","email":"james@jbrantly.com"}],"dist":{"shasum":"dbf98dbfe4359aaaf466a1404405ade440aa2f0f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/ts-loader/-/ts-loader-0.5.2.tgz"},"directories":{}},"0.5.3":{"name":"ts-loader","version":"0.5.3","description":"TypeScript loader for webpack","main":"index.js","scripts":{"pretest":"node build","test":"node ./node_modules/mocha/bin/mocha --reporter spec test/run.js","prepublish":"node build"},"repository":{"type":"git","url":"git+https://github.com/jbrantly/ts-loader.git"},"keywords":["ts-loader","typescript-loader","webpack","loader","typescript","ts"],"author":{"name":"James Brantly","email":"james@jbrantly.com","url":"http://www.jbrantly.com/"},"license":"MIT","bugs":{"url":"https://github.com/jbrantly/ts-loader/issues"},"homepage":"https://github.com/jbrantly/ts-loader","dependencies":{"colors":"^1.0.3","enhanced-resolve":"^0.9.0","loader-utils":"^0.2.6","object-assign":"^2.0.0","semver":"^5.0.1"},"devDependencies":{"babel-core":"^5.8.20","babel-loader":"^5.3.2","escape-string-regexp":"^1.0.3","fs-extra":"^0.22.1","mkdirp":"^0.5.1","mocha":"^2.1.0","rimraf":"^2.4.2","webpack":"^1.11.0"},"gitHead":"d87604729a44b493ae0ef8aec2eeb35bad9d7f3c","_id":"ts-loader@0.5.3","_shasum":"f2e890a7c6423c19b58d32ddc77383913fc55167","_from":".","_npmVersion":"2.14.1","_nodeVersion":"0.10.36","_npmUser":{"name":"jbrantly","email":"james@jbrantly.com"},"maintainers":[{"name":"jbrantly","email":"james@jbrantly.com"}],"dist":{"shasum":"f2e890a7c6423c19b58d32ddc77383913fc55167","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/ts-loader/-/ts-loader-0.5.3.tgz"},"directories":{}},"0.5.4":{"name":"ts-loader","version":"0.5.4","description":"TypeScript loader for webpack","main":"index.js","scripts":{"pretest":"node build","test":"node ./node_modules/mocha/bin/mocha --reporter spec test/run.js","prepublish":"node build"},"repository":{"type":"git","url":"git+https://github.com/jbrantly/ts-loader.git"},"keywords":["ts-loader","typescript-loader","webpack","loader","typescript","ts"],"author":{"name":"James Brantly","email":"james@jbrantly.com","url":"http://www.jbrantly.com/"},"license":"MIT","bugs":{"url":"https://github.com/jbrantly/ts-loader/issues"},"homepage":"https://github.com/jbrantly/ts-loader","dependencies":{"colors":"^1.0.3","enhanced-resolve":"^0.9.0","loader-utils":"^0.2.6","object-assign":"^2.0.0","semver":"^5.0.1"},"devDependencies":{"babel-core":"^5.8.20","babel-loader":"^5.3.2","escape-string-regexp":"^1.0.3","fs-extra":"^0.22.1","mkdirp":"^0.5.1","mocha":"^2.1.0","rimraf":"^2.4.2","webpack":"^1.11.0"},"gitHead":"16fb6b40c5b129991eaae2da9385f4ada3639889","_id":"ts-loader@0.5.4","_shasum":"0b60246a9c81e7336cefff1e316da87c07a99cb3","_from":".","_npmVersion":"2.14.1","_nodeVersion":"0.10.36","_npmUser":{"name":"jbrantly","email":"james@jbrantly.com"},"maintainers":[{"name":"jbrantly","email":"james@jbrantly.com"}],"dist":{"shasum":"0b60246a9c81e7336cefff1e316da87c07a99cb3","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/ts-loader/-/ts-loader-0.5.4.tgz"},"directories":{}},"0.5.5":{"name":"ts-loader","version":"0.5.5","description":"TypeScript loader for webpack","main":"index.js","scripts":{"pretest":"node build","test":"node ./node_modules/mocha/bin/mocha --reporter spec test/run.js","prepublish":"node build"},"repository":{"type":"git","url":"git+https://github.com/jbrantly/ts-loader.git"},"keywords":["ts-loader","typescript-loader","webpack","loader","typescript","ts"],"author":{"name":"James Brantly","email":"james@jbrantly.com","url":"http://www.jbrantly.com/"},"license":"MIT","bugs":{"url":"https://github.com/jbrantly/ts-loader/issues"},"homepage":"https://github.com/jbrantly/ts-loader","dependencies":{"colors":"^1.0.3","enhanced-resolve":"^0.9.0","loader-utils":"^0.2.6","object-assign":"^2.0.0","semver":"^5.0.1"},"devDependencies":{"babel-core":"^5.8.20","babel-loader":"^5.3.2","escape-string-regexp":"^1.0.3","fs-extra":"^0.22.1","mkdirp":"^0.5.1","mocha":"^2.1.0","rimraf":"^2.4.2","webpack":"^1.11.0"},"gitHead":"b66bfec6c3f51d717597fa5d47652618b7af2fb9","_id":"ts-loader@0.5.5","_shasum":"8683c270ab67b4aa262ff1105c3c5f3f4bebe656","_from":".","_npmVersion":"2.14.1","_nodeVersion":"0.10.36","_npmUser":{"name":"jbrantly","email":"james@jbrantly.com"},"maintainers":[{"name":"jbrantly","email":"james@jbrantly.com"}],"dist":{"shasum":"8683c270ab67b4aa262ff1105c3c5f3f4bebe656","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/ts-loader/-/ts-loader-0.5.5.tgz"},"directories":{}},"0.5.6":{"name":"ts-loader","version":"0.5.6","description":"TypeScript loader for webpack","main":"index.js","scripts":{"pretest":"node build","test":"node ./node_modules/mocha/bin/mocha --reporter spec test/run.js","prepublish":"node build"},"repository":{"type":"git","url":"git+https://github.com/TypeStrong/ts-loader.git"},"keywords":["ts-loader","typescript-loader","webpack","loader","typescript","ts"],"author":{"name":"James Brantly","email":"james@jbrantly.com","url":"http://www.jbrantly.com/"},"license":"MIT","bugs":{"url":"https://github.com/TypeStrong/ts-loader/issues"},"homepage":"https://github.com/TypeStrong/ts-loader","dependencies":{"arrify":"^1.0.0","colors":"^1.0.3","enhanced-resolve":"^0.9.0","loader-utils":"^0.2.6","object-assign":"^2.0.0","semver":"^5.0.1"},"devDependencies":{"babel-core":"^5.8.20","babel-loader":"^5.3.2","escape-string-regexp":"^1.0.3","fs-extra":"^0.22.1","mkdirp":"^0.5.1","mocha":"^2.1.0","rimraf":"^2.4.2","webpack":"^1.11.0"},"gitHead":"d65f574d559c89afee5ff476ff78684d3ba46fb0","_id":"ts-loader@0.5.6","_shasum":"f92decde29ec4d76bb63d36f0058f8842d798808","_from":".","_npmVersion":"2.14.1","_nodeVersion":"0.10.36","_npmUser":{"name":"jbrantly","email":"james@jbrantly.com"},"maintainers":[{"name":"jbrantly","email":"james@jbrantly.com"}],"dist":{"shasum":"f92decde29ec4d76bb63d36f0058f8842d798808","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/ts-loader/-/ts-loader-0.5.6.tgz"},"directories":{}},"0.6.0":{"name":"ts-loader","version":"0.6.0","description":"TypeScript loader for webpack","main":"index.js","scripts":{"build":"tsc","test":"mocha --reporter spec test/run.js","prepublish":"npm run build"},"repository":{"type":"git","url":"git+https://github.com/TypeStrong/ts-loader.git"},"keywords":["ts-loader","typescript-loader","webpack","loader","typescript","ts"],"author":{"name":"James Brantly","email":"james@jbrantly.com","url":"http://www.jbrantly.com/"},"license":"MIT","bugs":{"url":"https://github.com/TypeStrong/ts-loader/issues"},"homepage":"https://github.com/TypeStrong/ts-loader","dependencies":{"arrify":"^1.0.0","colors":"^1.0.3","enhanced-resolve":"^0.9.0","loader-utils":"^0.2.6","object-assign":"^2.0.0","semver":"^5.0.1"},"devDependencies":{"babel-core":"^5.8.20","babel-loader":"^5.3.2","escape-string-regexp":"^1.0.3","fs-extra":"^0.22.1","mkdirp":"^0.5.1","mocha":"^2.1.0","rimraf":"^2.4.2","webpack":"^1.11.0","typescript":"^1.6.2"},"gitHead":"98f65aba49813b142fa7bf788225bd5ec369aa3a","_id":"ts-loader@0.6.0","_shasum":"c7341ec4078e658fc69dbd42c1197152941b5559","_from":".","_npmVersion":"2.14.1","_nodeVersion":"0.10.36","_npmUser":{"name":"jbrantly","email":"james@jbrantly.com"},"maintainers":[{"name":"blakeembrey","email":"hello@blakeembrey.com"},{"name":"jbrantly","email":"james@jbrantly.com"}],"dist":{"shasum":"c7341ec4078e658fc69dbd42c1197152941b5559","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/ts-loader/-/ts-loader-0.6.0.tgz"},"directories":{}},"0.6.1":{"name":"ts-loader","version":"0.6.1","description":"TypeScript loader for webpack","main":"index.js","scripts":{"build":"tsc","test":"mocha --reporter spec test/run.js","prepublish":"npm run build"},"repository":{"type":"git","url":"git+https://github.com/TypeStrong/ts-loader.git"},"keywords":["ts-loader","typescript-loader","webpack","loader","typescript","ts"],"author":{"name":"James Brantly","email":"james@jbrantly.com","url":"http://www.jbrantly.com/"},"license":"MIT","bugs":{"url":"https://github.com/TypeStrong/ts-loader/issues"},"homepage":"https://github.com/TypeStrong/ts-loader","dependencies":{"arrify":"^1.0.0","colors":"^1.0.3","enhanced-resolve":"^0.9.0","loader-utils":"^0.2.6","object-assign":"^2.0.0","semver":"^5.0.1"},"devDependencies":{"babel-core":"^5.8.20","babel-loader":"^5.3.2","escape-string-regexp":"^1.0.3","fs-extra":"^0.22.1","mkdirp":"^0.5.1","mocha":"^2.1.0","rimraf":"^2.4.2","webpack":"^1.11.0","typescript":"^1.6.2"},"gitHead":"4e20e153b36a26e6e29fa2e2be38753efa63b006","_id":"ts-loader@0.6.1","_shasum":"98e29d8c3ecad951d544a4c57939f808866f67ac","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"jbrantly","email":"james@jbrantly.com"},"maintainers":[{"name":"blakeembrey","email":"hello@blakeembrey.com"},{"name":"jbrantly","email":"james@jbrantly.com"}],"dist":{"shasum":"98e29d8c3ecad951d544a4c57939f808866f67ac","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/ts-loader/-/ts-loader-0.6.1.tgz"},"directories":{}},"0.7.0":{"name":"ts-loader","version":"0.7.0","description":"TypeScript loader for webpack","main":"index.js","scripts":{"build":"tsc","test":"mocha --reporter spec test/run.js","prepublish":"npm run build"},"repository":{"type":"git","url":"git+https://github.com/TypeStrong/ts-loader.git"},"keywords":["ts-loader","typescript-loader","webpack","loader","typescript","ts"],"author":{"name":"James Brantly","email":"james@jbrantly.com","url":"http://www.jbrantly.com/"},"license":"MIT","bugs":{"url":"https://github.com/TypeStrong/ts-loader/issues"},"homepage":"https://github.com/TypeStrong/ts-loader","dependencies":{"arrify":"^1.0.0","colors":"^1.0.3","enhanced-resolve":"^0.9.0","loader-utils":"^0.2.6","object-assign":"^2.0.0","semver":"^5.0.1"},"devDependencies":{"babel-core":"^5.8.20","babel-loader":"^5.3.2","escape-string-regexp":"^1.0.3","fs-extra":"^0.22.1","mkdirp":"^0.5.1","mocha":"^2.1.0","rimraf":"^2.4.2","webpack":"^1.11.0","typescript":"^1.6.2"},"gitHead":"3dcece7c193389e5db94296887124a9b28d3be22","_id":"ts-loader@0.7.0","_shasum":"3861f370daab83fb23ca577540b91f43d1493514","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"jbrantly","email":"james@jbrantly.com"},"maintainers":[{"name":"blakeembrey","email":"hello@blakeembrey.com"},{"name":"jbrantly","email":"james@jbrantly.com"}],"dist":{"shasum":"3861f370daab83fb23ca577540b91f43d1493514","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/ts-loader/-/ts-loader-0.7.0.tgz"},"directories":{}},"0.7.1":{"name":"ts-loader","version":"0.7.1","description":"TypeScript loader for webpack","main":"index.js","scripts":{"build":"tsc","test":"mocha --reporter spec test/run.js","prepublish":"npm run build"},"repository":{"type":"git","url":"git+https://github.com/TypeStrong/ts-loader.git"},"keywords":["ts-loader","typescript-loader","webpack","loader","typescript","ts"],"author":{"name":"James Brantly","email":"james@jbrantly.com","url":"http://www.jbrantly.com/"},"license":"MIT","bugs":{"url":"https://github.com/TypeStrong/ts-loader/issues"},"homepage":"https://github.com/TypeStrong/ts-loader","dependencies":{"arrify":"^1.0.0","colors":"^1.0.3","enhanced-resolve":"^0.9.0","loader-utils":"^0.2.6","object-assign":"^2.0.0","semver":"^5.0.1"},"devDependencies":{"babel-core":"^5.8.20","babel-loader":"^5.3.2","escape-string-regexp":"^1.0.3","fs-extra":"^0.22.1","mkdirp":"^0.5.1","mocha":"^2.1.0","rimraf":"^2.4.2","webpack":"^1.11.0","typescript":"^1.6.2"},"gitHead":"c5af49bc268d335ec8168887736da078973a94ca","_id":"ts-loader@0.7.1","_shasum":"e5c0bcf72bd0b6cd08882aed8cc18a940df286db","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"jbrantly","email":"james@jbrantly.com"},"maintainers":[{"name":"blakeembrey","email":"hello@blakeembrey.com"},{"name":"jbrantly","email":"james@jbrantly.com"}],"dist":{"shasum":"e5c0bcf72bd0b6cd08882aed8cc18a940df286db","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/ts-loader/-/ts-loader-0.7.1.tgz"},"directories":{}},"0.7.2":{"name":"ts-loader","version":"0.7.2","description":"TypeScript loader for webpack","main":"index.js","scripts":{"build":"tsc","test":"mocha --reporter spec test/run.js","prepublish":"npm run build"},"repository":{"type":"git","url":"git+https://github.com/TypeStrong/ts-loader.git"},"keywords":["ts-loader","typescript-loader","webpack","loader","typescript","ts"],"author":{"name":"James Brantly","email":"james@jbrantly.com","url":"http://www.jbrantly.com/"},"license":"MIT","bugs":{"url":"https://github.com/TypeStrong/ts-loader/issues"},"homepage":"https://github.com/TypeStrong/ts-loader","dependencies":{"arrify":"^1.0.0","colors":"^1.0.3","enhanced-resolve":"^0.9.0","loader-utils":"^0.2.6","object-assign":"^2.0.0","semver":"^5.0.1"},"devDependencies":{"babel-core":"^5.8.20","babel-loader":"^5.3.2","escape-string-regexp":"^1.0.3","fs-extra":"^0.22.1","mkdirp":"^0.5.1","mocha":"^2.1.0","rimraf":"^2.4.2","webpack":"^1.11.0","typescript":"^1.6.2"},"gitHead":"6b9bbaca05bc4498de17aefa36dfa85aa3cca418","_id":"ts-loader@0.7.2","_shasum":"0988b43b50515646b4e173fdaf3e7d1cb56c2311","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"jbrantly","email":"james@jbrantly.com"},"maintainers":[{"name":"blakeembrey","email":"hello@blakeembrey.com"},{"name":"jbrantly","email":"james@jbrantly.com"}],"dist":{"shasum":"0988b43b50515646b4e173fdaf3e7d1cb56c2311","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/ts-loader/-/ts-loader-0.7.2.tgz"},"directories":{}},"0.8.0":{"name":"ts-loader","version":"0.8.0","description":"TypeScript loader for webpack","main":"index.js","scripts":{"build":"tsc","test":"npm link ./test/testLib && mocha --reporter spec test/run.js","prepublish":"npm run build"},"repository":{"type":"git","url":"git+https://github.com/TypeStrong/ts-loader.git"},"keywords":["ts-loader","typescript-loader","webpack","loader","typescript","ts"],"author":{"name":"James Brantly","email":"james@jbrantly.com","url":"http://www.jbrantly.com/"},"license":"MIT","bugs":{"url":"https://github.com/TypeStrong/ts-loader/issues"},"homepage":"https://github.com/TypeStrong/ts-loader","dependencies":{"arrify":"^1.0.0","colors":"^1.0.3","enhanced-resolve":"^0.9.0","loader-utils":"^0.2.6","object-assign":"^2.0.0","semver":"^5.0.1"},"devDependencies":{"babel-core":"^5.8.20","babel-loader":"^5.3.2","escape-string-regexp":"^1.0.3","fs-extra":"^0.22.1","glob":"^6.0.3","mkdirp":"^0.5.1","mocha":"^2.1.0","rimraf":"^2.4.2","typescript":"^1.6.2","webpack":"^1.11.0"},"gitHead":"46e79c0e986422448c0a547cc308221f8cb8fe9c","_id":"ts-loader@0.8.0","_shasum":"11769727053faf2187f316cb6125624c8ad1c229","_from":".","_npmVersion":"2.14.9","_nodeVersion":"0.12.9","_npmUser":{"name":"jbrantly","email":"james@jbrantly.com"},"dist":{"shasum":"11769727053faf2187f316cb6125624c8ad1c229","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/ts-loader/-/ts-loader-0.8.0.tgz"},"maintainers":[{"name":"blakeembrey","email":"hello@blakeembrey.com"},{"name":"jbrantly","email":"james@jbrantly.com"}],"directories":{}},"0.8.1":{"name":"ts-loader","version":"0.8.1","description":"TypeScript loader for webpack","main":"index.js","scripts":{"build":"tsc","test":"npm link ./test/testLib && mocha --reporter spec test/run.js","prepublish":"npm run build"},"repository":{"type":"git","url":"git+https://github.com/TypeStrong/ts-loader.git"},"keywords":["ts-loader","typescript-loader","webpack","loader","typescript","ts"],"author":{"name":"James Brantly","email":"james@jbrantly.com","url":"http://www.jbrantly.com/"},"license":"MIT","bugs":{"url":"https://github.com/TypeStrong/ts-loader/issues"},"homepage":"https://github.com/TypeStrong/ts-loader","dependencies":{"arrify":"^1.0.0","colors":"^1.0.3","enhanced-resolve":"^0.9.0","loader-utils":"^0.2.6","object-assign":"^2.0.0","semver":"^5.0.1"},"devDependencies":{"babel-core":"^5.8.20","babel-loader":"^5.3.2","escape-string-regexp":"^1.0.3","fs-extra":"^0.22.1","glob":"^6.0.3","html-webpack-plugin":"^2.8.1","mkdirp":"^0.5.1","mocha":"^2.1.0","rimraf":"^2.4.2","typescript":"^1.6.2","webpack":"^1.11.0"},"gitHead":"b0d10da4c4c623aa40de45d625904dad321e7fa0","_id":"ts-loader@0.8.1","_shasum":"aa5d3aa013cd18c7e0535d47f85512850227564e","_from":".","_npmVersion":"2.14.9","_nodeVersion":"0.12.9","_npmUser":{"name":"jbrantly","email":"james@jbrantly.com"},"dist":{"shasum":"aa5d3aa013cd18c7e0535d47f85512850227564e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/ts-loader/-/ts-loader-0.8.1.tgz"},"maintainers":[{"name":"blakeembrey","email":"hello@blakeembrey.com"},{"name":"jbrantly","email":"james@jbrantly.com"}],"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/ts-loader-0.8.1.tgz_1455080385624_0.5911382131744176"},"directories":{}},"0.8.2":{"name":"ts-loader","version":"0.8.2","description":"TypeScript loader for webpack","main":"index.js","scripts":{"build":"tsc","test":"npm link ./test/testLib && mocha --reporter spec test/run.js","prepublish":"npm run build"},"repository":{"type":"git","url":"git+https://github.com/TypeStrong/ts-loader.git"},"keywords":["ts-loader","typescript-loader","webpack","loader","typescript","ts"],"author":{"name":"James Brantly","email":"james@jbrantly.com","url":"http://www.jbrantly.com/"},"license":"MIT","bugs":{"url":"https://github.com/TypeStrong/ts-loader/issues"},"homepage":"https://github.com/TypeStrong/ts-loader","dependencies":{"arrify":"^1.0.0","colors":"^1.0.3","enhanced-resolve":"^0.9.0","loader-utils":"^0.2.6","object-assign":"^2.0.0","semver":"^5.0.1"},"devDependencies":{"babel-core":"^5.8.20","babel-loader":"^5.3.2","escape-string-regexp":"^1.0.3","fs-extra":"^0.22.1","glob":"^6.0.3","html-webpack-plugin":"^2.8.1","mkdirp":"^0.5.1","mocha":"^2.1.0","rimraf":"^2.4.2","typescript":"^1.6.2","webpack":"^1.11.0"},"gitHead":"77ba9ed2856806a62297623f07ff37daa19c99b3","_id":"ts-loader@0.8.2","_shasum":"7331296d13d5b3105cd905cebca39143eed2b255","_from":".","_npmVersion":"2.14.9","_nodeVersion":"0.12.9","_npmUser":{"name":"jbrantly","email":"james@jbrantly.com"},"dist":{"shasum":"7331296d13d5b3105cd905cebca39143eed2b255","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/ts-loader/-/ts-loader-0.8.2.tgz"},"maintainers":[{"name":"blakeembrey","email":"hello@blakeembrey.com"},{"name":"jbrantly","email":"james@jbrantly.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/ts-loader-0.8.2.tgz_1460344596927_0.6438094042241573"},"directories":{}},"0.9.0":{"name":"ts-loader","version":"0.9.0","description":"TypeScript loader for webpack","main":"index.js","scripts":{"build":"tsc","comparison-tests":"npm link ./test/testLib && mocha --reporter spec test/run.js","test":"npm link ./test/testLib && node test/run-tests-as-child.js ","prepublish":"npm run build"},"repository":{"type":"git","url":"git+https://github.com/TypeStrong/ts-loader.git"},"keywords":["ts-loader","typescript-loader","webpack","loader","typescript","ts"],"author":{"name":"James Brantly","email":"james@jbrantly.com","url":"http://www.jbrantly.com/"},"license":"MIT","bugs":{"url":"https://github.com/TypeStrong/ts-loader/issues"},"homepage":"https://github.com/TypeStrong/ts-loader","dependencies":{"arrify":"^1.0.0","colors":"^1.0.3","enhanced-resolve":"^0.9.0","loader-utils":"^0.2.6","object-assign":"^2.0.0","semver":"^5.0.1"},"devDependencies":{"babel-core":"^5.8.20","babel-loader":"^5.3.2","escape-string-regexp":"^1.0.3","fs-extra":"^0.22.1","glob":"^6.0.3","html-webpack-plugin":"^2.17.0","mkdirp":"^0.5.1","mocha":"^2.1.0","rimraf":"^2.4.2","typescript":"^2.0.3","webpack":"^1.11.0"},"gitHead":"b46b39ff593288d4e2fcc8d481e53d5577ec5a1c","_id":"ts-loader@0.9.0","_shasum":"14efda4516e3fcb11b5d1a526a1b4376fe554d11","_from":".","_npmVersion":"3.10.8","_nodeVersion":"4.5.0","_npmUser":{"name":"johnnyreilly","email":"johnny_reilly@hotmail.com"},"dist":{"shasum":"14efda4516e3fcb11b5d1a526a1b4376fe554d11","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/ts-loader/-/ts-loader-0.9.0.tgz"},"maintainers":[{"name":"blakeembrey","email":"hello@blakeembrey.com"},{"name":"jbrantly","email":"james@jbrantly.com"},{"name":"johnnyreilly","email":"johnny_reilly@hotmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/ts-loader-0.9.0.tgz_1475952893632_0.8918870112393051"},"directories":{}},"0.9.1":{"name":"ts-loader","version":"0.9.1","description":"TypeScript loader for webpack","main":"index.js","scripts":{"build":"tsc","comparison-tests":"npm link ./test/comparison-tests/testLib && node test/comparison-tests/run-tests.js","execution-tests":"node test/execution-tests/run-tests.js","test":"node test/run-tests.js","prepublish":"npm run build"},"repository":{"type":"git","url":"git+https://github.com/TypeStrong/ts-loader.git"},"keywords":["ts-loader","typescript-loader","webpack","loader","typescript","ts"],"author":{"name":"James Brantly","email":"james@jbrantly.com","url":"http://www.jbrantly.com/"},"license":"MIT","bugs":{"url":"https://github.com/TypeStrong/ts-loader/issues"},"homepage":"https://github.com/TypeStrong/ts-loader","dependencies":{"arrify":"^1.0.0","colors":"^1.0.3","enhanced-resolve":"^0.9.0","loader-utils":"^0.2.6","object-assign":"^4.1.0","semver":"^5.0.1"},"devDependencies":{"babel":"^6.0.0","babel-core":"^6.0.0","babel-loader":"^6.0.0","babel-polyfill":"^6.16.0","babel-preset-es2015":"^6.0.0","babel-preset-es2016":"^6.16.0","babel-preset-react":"^6.0.0","escape-string-regexp":"^1.0.3","fs-extra":"^0.30.0","glob":"^7.1.1","html-webpack-plugin":"^2.17.0","jasmine-core":"^2.5.2","karma":"^1.3.0","karma-jasmine":"^1.0.0","karma-mocha-reporter":"^2.0.0","karma-phantomjs-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.6","karma-webpack":"^1.7.0","mkdirp":"^0.5.1","mocha":"^3.1.0","phantomjs-prebuilt":"^2.1.2","rimraf":"^2.4.2","typescript":"^2.0.3","typings":"^1.4.0","webpack":"^1.11.0"},"gitHead":"28bd1df39b8dfc249c2d6930bbfed4f6001a12b7","_id":"ts-loader@0.9.1","_shasum":"ff560bf73fba7beada492996eae6cf17287130b6","_from":".","_npmVersion":"3.10.8","_nodeVersion":"4.5.0","_npmUser":{"name":"johnnyreilly","email":"johnny_reilly@hotmail.com"},"dist":{"shasum":"ff560bf73fba7beada492996eae6cf17287130b6","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/ts-loader/-/ts-loader-0.9.1.tgz"},"maintainers":[{"name":"blakeembrey","email":"hello@blakeembrey.com"},{"name":"jbrantly","email":"james@jbrantly.com"},{"name":"johnnyreilly","email":"johnny_reilly@hotmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ts-loader-0.9.1.tgz_1476216385917_0.9023842888418585"},"directories":{}},"0.9.2":{"name":"ts-loader","version":"0.9.2","description":"TypeScript loader for webpack","main":"index.js","scripts":{"build":"tsc","comparison-tests":"npm link ./test/comparison-tests/testLib && node test/comparison-tests/run-tests.js","execution-tests":"node test/execution-tests/run-tests.js","test":"node test/run-tests.js","prepublish":"npm run build"},"repository":{"type":"git","url":"git+https://github.com/TypeStrong/ts-loader.git"},"keywords":["ts-loader","typescript-loader","webpack","loader","typescript","ts"],"author":{"name":"James Brantly","email":"james@jbrantly.com","url":"http://www.jbrantly.com/"},"license":"MIT","bugs":{"url":"https://github.com/TypeStrong/ts-loader/issues"},"homepage":"https://github.com/TypeStrong/ts-loader","dependencies":{"arrify":"^1.0.0","colors":"^1.0.3","enhanced-resolve":"^0.9.0","loader-utils":"^0.2.6","object-assign":"^4.1.0","semver":"^5.0.1"},"devDependencies":{"babel":"^6.0.0","babel-core":"^6.0.0","babel-loader":"^6.0.0","babel-polyfill":"^6.16.0","babel-preset-es2015":"^6.0.0","babel-preset-es2016":"^6.16.0","babel-preset-react":"^6.0.0","escape-string-regexp":"^1.0.3","fs-extra":"^0.30.0","glob":"^7.1.1","html-webpack-plugin":"^2.17.0","jasmine-core":"^2.5.2","karma":"^1.3.0","karma-jasmine":"^1.0.0","karma-mocha-reporter":"^2.0.0","karma-phantomjs-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.6","karma-webpack":"^1.7.0","mkdirp":"^0.5.1","mocha":"^3.1.0","phantomjs-prebuilt":"^2.1.2","rimraf":"^2.4.2","typescript":"^2.0.3","typings":"^1.4.0","webpack":"^1.11.0"},"gitHead":"8de89979f8873341aa4d57f7cd0828d3c84e8d9e","_id":"ts-loader@0.9.2","_shasum":"bfe927a5e2f83ab8522ea5461b80c48c22c1e7e6","_from":".","_npmVersion":"3.10.8","_nodeVersion":"4.5.0","_npmUser":{"name":"johnnyreilly","email":"johnny_reilly@hotmail.com"},"dist":{"shasum":"bfe927a5e2f83ab8522ea5461b80c48c22c1e7e6","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/ts-loader/-/ts-loader-0.9.2.tgz"},"maintainers":[{"name":"blakeembrey","email":"hello@blakeembrey.com"},{"name":"jbrantly","email":"james@jbrantly.com"},{"name":"johnnyreilly","email":"johnny_reilly@hotmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ts-loader-0.9.2.tgz_1476628908377_0.10667267977260053"},"directories":{}},"0.9.3":{"name":"ts-loader","version":"0.9.3","description":"TypeScript loader for webpack","main":"index.js","scripts":{"build":"tsc","comparison-tests":"npm link ./test/comparison-tests/testLib && node test/comparison-tests/run-tests.js","execution-tests":"node test/execution-tests/run-tests.js","test":"node test/run-tests.js","prepublish":"npm run build"},"repository":{"type":"git","url":"git+https://github.com/TypeStrong/ts-loader.git"},"keywords":["ts-loader","typescript-loader","webpack","loader","typescript","ts"],"author":{"name":"James Brantly","email":"james@jbrantly.com","url":"http://www.jbrantly.com/"},"license":"MIT","bugs":{"url":"https://github.com/TypeStrong/ts-loader/issues"},"homepage":"https://github.com/TypeStrong/ts-loader","dependencies":{"arrify":"^1.0.0","colors":"^1.0.3","enhanced-resolve":"^0.9.0","loader-utils":"^0.2.6","object-assign":"^4.1.0","semver":"^5.0.1"},"devDependencies":{"babel":"^6.0.0","babel-core":"^6.0.0","babel-loader":"^6.0.0","babel-polyfill":"^6.16.0","babel-preset-es2015":"^6.0.0","babel-preset-es2016":"^6.16.0","babel-preset-react":"^6.0.0","escape-string-regexp":"^1.0.3","fs-extra":"^0.30.0","glob":"^7.1.1","html-webpack-plugin":"^2.17.0","jasmine-core":"^2.5.2","karma":"^1.3.0","karma-jasmine":"^1.0.0","karma-mocha-reporter":"^2.0.0","karma-phantomjs-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.6","karma-webpack":"^1.7.0","mkdirp":"^0.5.1","mocha":"^3.1.0","phantomjs-prebuilt":"^2.1.2","rimraf":"^2.4.2","typescript":"^2.0.3","typings":"^1.4.0","webpack":"^1.11.0"},"gitHead":"6e298e4bc4faa1f628ca0fb93aff6f720778505f","_id":"ts-loader@0.9.3","_shasum":"a967b151f342d04d485a37ef074d3b77904689fc","_from":".","_npmVersion":"3.10.8","_nodeVersion":"4.5.0","_npmUser":{"name":"johnnyreilly","email":"johnny_reilly@hotmail.com"},"dist":{"shasum":"a967b151f342d04d485a37ef074d3b77904689fc","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/ts-loader/-/ts-loader-0.9.3.tgz"},"maintainers":[{"name":"blakeembrey","email":"hello@blakeembrey.com"},{"name":"jbrantly","email":"james@jbrantly.com"},{"name":"johnnyreilly","email":"johnny_reilly@hotmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ts-loader-0.9.3.tgz_1476651700532_0.44546297402121127"},"directories":{}},"0.9.4":{"name":"ts-loader","version":"0.9.4","description":"TypeScript loader for webpack","main":"index.js","scripts":{"build":"tsc","comparison-tests":"npm link ./test/comparison-tests/testLib && node test/comparison-tests/run-tests.js","execution-tests":"node test/execution-tests/run-tests.js","test":"node test/run-tests.js","prepublish":"npm run build"},"repository":{"type":"git","url":"git+https://github.com/TypeStrong/ts-loader.git"},"keywords":["ts-loader","typescript-loader","webpack","loader","typescript","ts"],"author":{"name":"James Brantly","email":"james@jbrantly.com","url":"http://www.jbrantly.com/"},"license":"MIT","bugs":{"url":"https://github.com/TypeStrong/ts-loader/issues"},"homepage":"https://github.com/TypeStrong/ts-loader","dependencies":{"arrify":"^1.0.0","colors":"^1.0.3","enhanced-resolve":"^0.9.0","loader-utils":"^0.2.6","object-assign":"^4.1.0","semver":"^5.0.1"},"devDependencies":{"babel":"^6.0.0","babel-core":"^6.0.0","babel-loader":"^6.0.0","babel-polyfill":"^6.16.0","babel-preset-es2015":"^6.0.0","babel-preset-es2016":"^6.16.0","babel-preset-react":"^6.0.0","escape-string-regexp":"^1.0.3","fs-extra":"^0.30.0","glob":"^7.1.1","html-webpack-plugin":"^2.17.0","jasmine-core":"^2.5.2","karma":"^1.3.0","karma-jasmine":"^1.0.0","karma-mocha-reporter":"^2.0.0","karma-phantomjs-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.6","karma-webpack":"^1.7.0","mkdirp":"^0.5.1","mocha":"^3.1.0","phantomjs-prebuilt":"^2.1.2","rimraf":"^2.4.2","typescript":"^2.0.3","typings":"^1.4.0","webpack":"^1.11.0"},"gitHead":"14b33ac3c2c79c1724363a7989bfcfb3936dd45c","_id":"ts-loader@0.9.4","_shasum":"d5620cfb58a67552a2f34da1fd345f479af923ca","_from":".","_npmVersion":"3.10.8","_nodeVersion":"4.5.0","_npmUser":{"name":"johnnyreilly","email":"johnny_reilly@hotmail.com"},"dist":{"shasum":"d5620cfb58a67552a2f34da1fd345f479af923ca","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/ts-loader/-/ts-loader-0.9.4.tgz"},"maintainers":[{"name":"blakeembrey","email":"hello@blakeembrey.com"},{"name":"jbrantly","email":"james@jbrantly.com"},{"name":"johnnyreilly","email":"johnny_reilly@hotmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/ts-loader-0.9.4.tgz_1476730391190_0.4055555211380124"},"directories":{}},"0.9.5":{"name":"ts-loader","version":"0.9.5","description":"TypeScript loader for webpack","main":"index.js","scripts":{"build":"tsc","comparison-tests":"npm link ./test/comparison-tests/testLib && node test/comparison-tests/run-tests.js","execution-tests":"node test/execution-tests/run-tests.js","test":"node test/run-tests.js","prepublish":"npm run build"},"repository":{"type":"git","url":"git+https://github.com/TypeStrong/ts-loader.git"},"keywords":["ts-loader","typescript-loader","webpack","loader","typescript","ts"],"author":{"name":"James Brantly","email":"james@jbrantly.com","url":"http://www.jbrantly.com/"},"license":"MIT","bugs":{"url":"https://github.com/TypeStrong/ts-loader/issues"},"homepage":"https://github.com/TypeStrong/ts-loader","dependencies":{"arrify":"^1.0.0","colors":"^1.0.3","enhanced-resolve":"^0.9.0","loader-utils":"^0.2.6","object-assign":"^4.1.0","semver":"^5.0.1"},"devDependencies":{"babel":"^6.0.0","babel-core":"^6.0.0","babel-loader":"^6.0.0","babel-polyfill":"^6.16.0","babel-preset-es2015":"^6.0.0","babel-preset-es2016":"^6.16.0","babel-preset-react":"^6.0.0","escape-string-regexp":"^1.0.3","fs-extra":"^0.30.0","glob":"^7.1.1","html-webpack-plugin":"^2.17.0","jasmine-core":"^2.5.2","karma":"^1.3.0","karma-jasmine":"^1.0.0","karma-mocha-reporter":"^2.0.0","karma-phantomjs-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.6","karma-webpack":"^1.7.0","mkdirp":"^0.5.1","mocha":"^3.1.0","phantomjs-prebuilt":"^2.1.2","rimraf":"^2.4.2","typescript":"^2.0.3","typings":"^1.4.0","webpack":"^1.11.0"},"gitHead":"3cfa69eb4f694ea9b95b49927826a224833d8063","_id":"ts-loader@0.9.5","_shasum":"7149b386c61bab9c6c3fd1d5d70a0145b7d3d3a1","_from":".","_npmVersion":"3.10.8","_nodeVersion":"4.5.0","_npmUser":{"name":"johnnyreilly","email":"johnny_reilly@hotmail.com"},"dist":{"shasum":"7149b386c61bab9c6c3fd1d5d70a0145b7d3d3a1","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/ts-loader/-/ts-loader-0.9.5.tgz"},"maintainers":[{"name":"blakeembrey","email":"hello@blakeembrey.com"},{"name":"jbrantly","email":"james@jbrantly.com"},{"name":"johnnyreilly","email":"johnny_reilly@hotmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ts-loader-0.9.5.tgz_1476942267828_0.2022570907138288"},"directories":{}},"1.0.0-beta.1":{"name":"ts-loader","version":"1.0.0-beta.1","description":"TypeScript loader for webpack","main":"index.js","scripts":{"build":"tsc --version && tsc --project \"./src\"","comparison-tests":"npm link ./test/comparison-tests/testLib && node test/comparison-tests/run-tests.js","execution-tests":"node test/execution-tests/run-tests.js","test":"node test/run-tests.js"},"repository":{"type":"git","url":"git+https://github.com/TypeStrong/ts-loader.git"},"keywords":["ts-loader","typescript-loader","webpack","loader","typescript","ts"],"author":{"name":"James Brantly","email":"james@jbrantly.com","url":"http://www.jbrantly.com/"},"license":"MIT","bugs":{"url":"https://github.com/TypeStrong/ts-loader/issues"},"homepage":"https://github.com/TypeStrong/ts-loader","dependencies":{"arrify":"^1.0.0","colors":"^1.0.3","enhanced-resolve":"^0.9.0","loader-utils":"^0.2.6","object-assign":"^4.1.0","semver":"^5.0.1"},"devDependencies":{"babel":"^6.0.0","babel-core":"^6.0.0","babel-loader":"^6.0.0","babel-polyfill":"^6.16.0","babel-preset-es2015":"^6.0.0","babel-preset-es2016":"^6.16.0","babel-preset-react":"^6.0.0","escape-string-regexp":"^1.0.3","fs-extra":"^0.30.0","glob":"^7.1.1","html-webpack-plugin":"^2.17.0","jasmine-core":"^2.5.2","karma":"^1.3.0","karma-jasmine":"^1.0.0","karma-mocha-reporter":"^2.0.0","karma-phantomjs-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.6","karma-webpack":"^1.7.0","mkdirp":"^0.5.1","mocha":"^3.1.0","phantomjs-prebuilt":"^2.1.2","rimraf":"^2.4.2","typescript":"^2.0.3","typings":"^1.4.0","webpack":"^1.11.0"},"gitHead":"036cd69363323f8c477941ae02582d73fce38b0b","_id":"ts-loader@1.0.0-beta.1","_shasum":"092d692e7eb4b838d4df256cd06d20fe6754e9aa","_from":".","_npmVersion":"3.10.8","_nodeVersion":"4.5.0","_npmUser":{"name":"johnnyreilly","email":"johnny_reilly@hotmail.com"},"dist":{"shasum":"092d692e7eb4b838d4df256cd06d20fe6754e9aa","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/ts-loader/-/ts-loader-1.0.0-beta.1.tgz"},"maintainers":[{"name":"blakeembrey","email":"hello@blakeembrey.com"},{"name":"jbrantly","email":"james@jbrantly.com"},{"name":"johnnyreilly","email":"johnny_reilly@hotmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ts-loader-1.0.0-beta.1.tgz_1477818776022_0.013246990274637938"},"directories":{}},"1.0.0":{"name":"ts-loader","version":"1.0.0","description":"TypeScript loader for webpack","main":"index.js","scripts":{"build":"tsc --version && tsc --project \"./src\"","comparison-tests":"npm link ./test/comparison-tests/testLib && node test/comparison-tests/run-tests.js","execution-tests":"node test/execution-tests/run-tests.js","test":"node test/run-tests.js"},"repository":{"type":"git","url":"git+https://github.com/TypeStrong/ts-loader.git"},"keywords":["ts-loader","typescript-loader","webpack","loader","typescript","ts"],"author":{"name":"James Brantly","email":"james@jbrantly.com","url":"http://www.jbrantly.com/"},"license":"MIT","bugs":{"url":"https://github.com/TypeStrong/ts-loader/issues"},"homepage":"https://github.com/TypeStrong/ts-loader","dependencies":{"arrify":"^1.0.0","colors":"^1.0.3","enhanced-resolve":"^0.9.0","loader-utils":"^0.2.6","object-assign":"^4.1.0","semver":"^5.0.1"},"devDependencies":{"babel":"^6.0.0","babel-core":"^6.0.0","babel-loader":"^6.0.0","babel-polyfill":"^6.16.0","babel-preset-es2015":"^6.0.0","babel-preset-es2016":"^6.16.0","babel-preset-react":"^6.0.0","escape-string-regexp":"^1.0.3","fs-extra":"^0.30.0","glob":"^7.1.1","html-webpack-plugin":"^2.17.0","jasmine-core":"^2.5.2","karma":"^1.3.0","karma-jasmine":"^1.0.0","karma-mocha-reporter":"^2.0.0","karma-phantomjs-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.6","karma-webpack":"^1.7.0","mkdirp":"^0.5.1","mocha":"^3.1.0","phantomjs-prebuilt":"^2.1.2","rimraf":"^2.4.2","typescript":"^2.0.3","typings":"^1.4.0","webpack":"^1.11.0"},"gitHead":"ad9c175aa74ffad080542364e85105073b5049be","_id":"ts-loader@1.0.0","_shasum":"0fbefb6ca9460e3d5398f7f9f96f4c67c3c7ce64","_from":".","_npmVersion":"3.10.8","_nodeVersion":"4.5.0","_npmUser":{"name":"johnnyreilly","email":"johnny_reilly@hotmail.com"},"dist":{"shasum":"0fbefb6ca9460e3d5398f7f9f96f4c67c3c7ce64","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/ts-loader/-/ts-loader-1.0.0.tgz"},"maintainers":[{"name":"blakeembrey","email":"hello@blakeembrey.com"},{"name":"jbrantly","email":"james@jbrantly.com"},{"name":"johnnyreilly","email":"johnny_reilly@hotmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ts-loader-1.0.0.tgz_1478037417230_0.42231323197484016"},"directories":{}},"1.1.0":{"name":"ts-loader","version":"1.1.0","description":"TypeScript loader for webpack","main":"index.js","scripts":{"build":"tsc --version && tsc --project \"./src\"","comparison-tests":"npm link ./test/comparison-tests/testLib && node test/comparison-tests/run-tests.js","execution-tests":"node test/execution-tests/run-tests.js","test":"node test/run-tests.js"},"repository":{"type":"git","url":"git+https://github.com/TypeStrong/ts-loader.git"},"keywords":["ts-loader","typescript-loader","webpack","loader","typescript","ts"],"author":{"name":"James Brantly","email":"james@jbrantly.com","url":"http://www.jbrantly.com/"},"license":"MIT","bugs":{"url":"https://github.com/TypeStrong/ts-loader/issues"},"homepage":"https://github.com/TypeStrong/ts-loader","dependencies":{"arrify":"^1.0.0","colors":"^1.0.3","enhanced-resolve":"^0.9.0","loader-utils":"^0.2.6","object-assign":"^4.1.0","semver":"^5.0.1"},"devDependencies":{"babel":"^6.0.0","babel-core":"^6.0.0","babel-loader":"^6.0.0","babel-polyfill":"^6.16.0","babel-preset-es2015":"^6.0.0","babel-preset-es2016":"^6.16.0","babel-preset-react":"^6.0.0","escape-string-regexp":"^1.0.3","fs-extra":"^1.0.0","glob":"^7.1.1","html-webpack-plugin":"^2.17.0","jasmine-core":"^2.5.2","karma":"^1.3.0","karma-jasmine":"^1.0.0","karma-mocha-reporter":"^2.0.0","karma-phantomjs-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.6","karma-webpack":"^1.7.0","mkdirp":"^0.5.1","mocha":"^3.1.0","phantomjs-prebuilt":"^2.1.2","rimraf":"^2.4.2","typescript":"^2.0.3","typings":"^1.4.0","vue":"^2.0.3","vue-loader":"^9.7.0","webpack":"^1.11.0"},"gitHead":"4f5003c08af4e08a262b5d1a727d1fb236ec9abc","_id":"ts-loader@1.1.0","_shasum":"f5f7d2dc404580d70433082d696d70d719662211","_from":".","_npmVersion":"4.0.2","_nodeVersion":"7.0.0","_npmUser":{"name":"johnnyreilly","email":"johnny_reilly@hotmail.com"},"dist":{"shasum":"f5f7d2dc404580d70433082d696d70d719662211","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/ts-loader/-/ts-loader-1.1.0.tgz"},"maintainers":[{"name":"blakeembrey","email":"hello@blakeembrey.com"},{"name":"jbrantly","email":"james@jbrantly.com"},{"name":"johnnyreilly","email":"johnny_reilly@hotmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ts-loader-1.1.0.tgz_1478588726882_0.1699994090013206"},"directories":{}},"1.2.0":{"name":"ts-loader","version":"1.2.0","description":"TypeScript loader for webpack","main":"index.js","scripts":{"build":"tsc --version && tsc --project \"./src\"","comparison-tests":"npm link ./test/comparison-tests/testLib && node test/comparison-tests/run-tests.js","execution-tests":"node test/execution-tests/run-tests.js","test":"node test/run-tests.js"},"repository":{"type":"git","url":"git+https://github.com/TypeStrong/ts-loader.git"},"keywords":["ts-loader","typescript-loader","webpack","loader","typescript","ts"],"author":{"name":"James Brantly","email":"james@jbrantly.com","url":"http://www.jbrantly.com/"},"license":"MIT","bugs":{"url":"https://github.com/TypeStrong/ts-loader/issues"},"homepage":"https://github.com/TypeStrong/ts-loader","dependencies":{"arrify":"^1.0.0","colors":"^1.0.3","enhanced-resolve":"^0.9.0","loader-utils":"^0.2.6","object-assign":"^4.1.0","semver":"^5.0.1"},"devDependencies":{"babel":"^6.0.0","babel-core":"^6.0.0","babel-loader":"^6.0.0","babel-polyfill":"^6.16.0","babel-preset-es2015":"^6.0.0","babel-preset-es2016":"^6.16.0","babel-preset-react":"^6.0.0","escape-string-regexp":"^1.0.3","fs-extra":"^1.0.0","glob":"^7.1.1","html-webpack-plugin":"^2.17.0","jasmine-core":"^2.5.2","karma":"^1.3.0","karma-jasmine":"^1.0.0","karma-mocha-reporter":"^2.0.0","karma-phantomjs-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.6","karma-webpack":"^1.7.0","mkdirp":"^0.5.1","mocha":"^3.1.0","phantomjs-prebuilt":"^2.1.2","rimraf":"^2.4.2","typescript":"^2.0.3","typings":"^1.4.0","vue":"^2.0.3","vue-loader":"^9.7.0","webpack":"^1.11.0"},"gitHead":"dd91672b6ba84b9c3f013cb06c80462111aa34fb","_id":"ts-loader@1.2.0","_shasum":"9833f7024ce157200c6f9b169c49422ef3976e27","_from":".","_npmVersion":"4.0.2","_nodeVersion":"7.0.0","_npmUser":{"name":"johnnyreilly","email":"johnny_reilly@hotmail.com"},"dist":{"shasum":"9833f7024ce157200c6f9b169c49422ef3976e27","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/ts-loader/-/ts-loader-1.2.0.tgz"},"maintainers":[{"name":"blakeembrey","email":"hello@blakeembrey.com"},{"name":"jbrantly","email":"james@jbrantly.com"},{"name":"johnnyreilly","email":"johnny_reilly@hotmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/ts-loader-1.2.0.tgz_1478845620727_0.12615453777834773"},"directories":{}},"1.2.1":{"name":"ts-loader","version":"1.2.1","description":"TypeScript loader for webpack","main":"index.js","scripts":{"build":"tsc --version && tsc --project \"./src\"","comparison-tests":"npm link ./test/comparison-tests/testLib && node test/comparison-tests/run-tests.js","execution-tests":"node test/execution-tests/run-tests.js","test":"node test/run-tests.js"},"repository":{"type":"git","url":"git+https://github.com/TypeStrong/ts-loader.git"},"keywords":["ts-loader","typescript-loader","webpack","loader","typescript","ts"],"author":{"name":"James Brantly","email":"james@jbrantly.com","url":"http://www.jbrantly.com/"},"license":"MIT","bugs":{"url":"https://github.com/TypeStrong/ts-loader/issues"},"homepage":"https://github.com/TypeStrong/ts-loader","dependencies":{"arrify":"^1.0.0","colors":"^1.0.3","enhanced-resolve":"^0.9.0","loader-utils":"^0.2.6","object-assign":"^4.1.0","semver":"^5.0.1"},"devDependencies":{"babel":"^6.0.0","babel-core":"^6.0.0","babel-loader":"^6.0.0","babel-polyfill":"^6.16.0","babel-preset-es2015":"^6.0.0","babel-preset-es2016":"^6.16.0","babel-preset-react":"^6.0.0","escape-string-regexp":"^1.0.3","fs-extra":"^1.0.0","glob":"^7.1.1","html-webpack-plugin":"^2.17.0","jasmine-core":"^2.5.2","karma":"^1.3.0","karma-jasmine":"^1.0.0","karma-mocha-reporter":"^2.0.0","karma-phantomjs-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.6","karma-webpack":"^1.7.0","mkdirp":"^0.5.1","mocha":"^3.1.0","phantomjs-prebuilt":"^2.1.2","rimraf":"^2.4.2","typescript":"^2.0.3","typings":"^1.4.0","vue":"^2.0.5","vue-loader":"^9.7.0","webpack":"^1.11.0"},"gitHead":"65c7016456598c3718ed72de4664d1ff8ea4326a","_id":"ts-loader@1.2.1","_shasum":"c9d495b57bb1e134dcd42cf5e0804300e58872c6","_from":".","_npmVersion":"4.0.2","_nodeVersion":"7.0.0","_npmUser":{"name":"johnnyreilly","email":"johnny_reilly@hotmail.com"},"dist":{"shasum":"c9d495b57bb1e134dcd42cf5e0804300e58872c6","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/ts-loader/-/ts-loader-1.2.1.tgz"},"maintainers":[{"name":"blakeembrey","email":"hello@blakeembrey.com"},{"name":"jbrantly","email":"james@jbrantly.com"},{"name":"johnnyreilly","email":"johnny_reilly@hotmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/ts-loader-1.2.1.tgz_1479158106165_0.8931902402546257"},"directories":{}},"1.2.2":{"name":"ts-loader","version":"1.2.2","description":"TypeScript loader for webpack","main":"index.js","scripts":{"build":"tsc --version && tsc --project \"./src\"","comparison-tests":"npm link ./test/comparison-tests/testLib && node test/comparison-tests/run-tests.js","execution-tests":"node test/execution-tests/run-tests.js","test":"node test/run-tests.js"},"repository":{"type":"git","url":"git+https://github.com/TypeStrong/ts-loader.git"},"keywords":["ts-loader","typescript-loader","webpack","loader","typescript","ts"],"author":{"name":"James Brantly","email":"james@jbrantly.com","url":"http://www.jbrantly.com/"},"license":"MIT","bugs":{"url":"https://github.com/TypeStrong/ts-loader/issues"},"homepage":"https://github.com/TypeStrong/ts-loader","dependencies":{"arrify":"^1.0.0","colors":"^1.0.3","enhanced-resolve":"^0.9.0","loader-utils":"^0.2.6","object-assign":"^4.1.0","semver":"^5.0.1"},"devDependencies":{"babel":"^6.0.0","babel-core":"^6.0.0","babel-loader":"^6.0.0","babel-polyfill":"^6.16.0","babel-preset-es2015":"^6.0.0","babel-preset-es2016":"^6.16.0","babel-preset-react":"^6.0.0","escape-string-regexp":"^1.0.3","fs-extra":"^1.0.0","glob":"^7.1.1","html-webpack-plugin":"^2.17.0","jasmine-core":"^2.5.2","karma":"^1.3.0","karma-jasmine":"^1.0.0","karma-mocha-reporter":"^2.0.0","karma-phantomjs-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.6","karma-webpack":"^1.7.0","mkdirp":"^0.5.1","mocha":"^3.1.0","phantomjs-prebuilt":"^2.1.2","rimraf":"^2.4.2","typescript":"^2.0.3","typings":"^1.4.0","vue":"^2.0.5","vue-loader":"^9.7.0","webpack":"^1.11.0"},"gitHead":"84a2d9b1b53a128363316d37b9c30c585509c694","_id":"ts-loader@1.2.2","_shasum":"b4445a621e688e25db8c75afe6b7ccb635014e5c","_from":".","_npmVersion":"4.0.2","_nodeVersion":"7.0.0","_npmUser":{"name":"johnnyreilly","email":"johnny_reilly@hotmail.com"},"dist":{"shasum":"b4445a621e688e25db8c75afe6b7ccb635014e5c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/ts-loader/-/ts-loader-1.2.2.tgz"},"maintainers":[{"name":"blakeembrey","email":"hello@blakeembrey.com"},{"name":"jbrantly","email":"james@jbrantly.com"},{"name":"johnnyreilly","email":"johnny_reilly@hotmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/ts-loader-1.2.2.tgz_1479451699160_0.28004960622638464"},"directories":{}},"1.3.0":{"name":"ts-loader","version":"1.3.0","description":"TypeScript loader for webpack","main":"index.js","scripts":{"build":"tsc --version && tsc --project \"./src\"","comparison-tests":"npm link ./test/comparison-tests/testLib && node test/comparison-tests/run-tests.js","execution-tests":"node test/execution-tests/run-tests.js","test":"node test/run-tests.js"},"repository":{"type":"git","url":"git+https://github.com/TypeStrong/ts-loader.git"},"keywords":["ts-loader","typescript-loader","webpack","loader","typescript","ts"],"author":{"name":"James Brantly","email":"james@jbrantly.com","url":"http://www.jbrantly.com/"},"license":"MIT","bugs":{"url":"https://github.com/TypeStrong/ts-loader/issues"},"homepage":"https://github.com/TypeStrong/ts-loader","dependencies":{"arrify":"^1.0.0","colors":"^1.0.3","enhanced-resolve":"^0.9.0","loader-utils":"^0.2.6","object-assign":"^4.1.0","semver":"^5.0.1"},"devDependencies":{"babel":"^6.0.0","babel-core":"^6.0.0","babel-loader":"^6.0.0","babel-polyfill":"^6.16.0","babel-preset-es2015":"^6.0.0","babel-preset-es2016":"^6.16.0","babel-preset-react":"^6.0.0","escape-string-regexp":"^1.0.3","fs-extra":"^1.0.0","glob":"^7.1.1","html-webpack-plugin":"^2.17.0","jasmine-core":"^2.5.2","karma":"^1.3.0","karma-jasmine":"^1.0.0","karma-mocha-reporter":"^2.0.0","karma-phantomjs-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.6","karma-webpack":"^1.7.0","mkdirp":"^0.5.1","mocha":"^3.1.0","phantomjs-prebuilt":"^2.1.2","rimraf":"^2.4.2","typescript":"^2.0.3","typings":"^1.4.0","vue":"^2.0.5","vue-loader":"^9.7.0","webpack":"^1.11.0"},"gitHead":"a664bd3f649aaf22c8d0fc0dc98e8702b37fda79","_id":"ts-loader@1.3.0","_shasum":"a94128fcfda5528f19d7d23344265ed56111013f","_from":".","_npmVersion":"4.0.2","_nodeVersion":"7.0.0","_npmUser":{"name":"johnnyreilly","email":"johnny_reilly@hotmail.com"},"dist":{"shasum":"a94128fcfda5528f19d7d23344265ed56111013f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/ts-loader/-/ts-loader-1.3.0.tgz"},"maintainers":[{"name":"blakeembrey","email":"hello@blakeembrey.com"},{"name":"jbrantly","email":"james@jbrantly.com"},{"name":"johnnyreilly","email":"johnny_reilly@hotmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/ts-loader-1.3.0.tgz_1480972328556_0.8862991910427809"},"directories":{}},"1.3.1":{"name":"ts-loader","version":"1.3.1","description":"TypeScript loader for webpack","main":"index.js","scripts":{"build":"tsc --version && tsc --project \"./src\"","comparison-tests":"npm link ./test/comparison-tests/testLib && node test/comparison-tests/run-tests.js","execution-tests":"node test/execution-tests/run-tests.js","test":"node test/run-tests.js"},"repository":{"type":"git","url":"git+https://github.com/TypeStrong/ts-loader.git"},"keywords":["ts-loader","typescript-loader","webpack","loader","typescript","ts"],"author":{"name":"James Brantly","email":"james@jbrantly.com","url":"http://www.jbrantly.com/"},"license":"MIT","bugs":{"url":"https://github.com/TypeStrong/ts-loader/issues"},"homepage":"https://github.com/TypeStrong/ts-loader","dependencies":{"arrify":"^1.0.0","colors":"^1.0.3","enhanced-resolve":"^0.9.0","loader-utils":"^0.2.6","object-assign":"^4.1.0","semver":"^5.0.1"},"devDependencies":{"babel":"^6.0.0","babel-core":"^6.0.0","babel-loader":"^6.0.0","babel-polyfill":"^6.16.0","babel-preset-es2015":"^6.0.0","babel-preset-es2016":"^6.16.0","babel-preset-react":"^6.0.0","escape-string-regexp":"^1.0.3","fs-extra":"^1.0.0","glob":"^7.1.1","html-webpack-plugin":"^2.17.0","jasmine-core":"^2.5.2","karma":"^1.3.0","karma-jasmine":"^1.0.0","karma-mocha-reporter":"^2.0.0","karma-phantomjs-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.6","karma-webpack":"^1.7.0","mkdirp":"^0.5.1","mocha":"^3.1.0","phantomjs-prebuilt":"^2.1.2","rimraf":"^2.4.2","typescript":"^2.0.3","typings":"^1.4.0","vue":"^2.0.5","vue-loader":"^9.7.0","webpack":"^1.11.0"},"gitHead":"b74b7e3feba59fd9b434b277e80a95504b16f9a6","_id":"ts-loader@1.3.1","_shasum":"13af9e50735d4b9fe32238ac38d570c2d60d46f4","_from":".","_npmVersion":"4.0.2","_nodeVersion":"7.0.0","_npmUser":{"name":"johnnyreilly","email":"johnny_reilly@hotmail.com"},"dist":{"shasum":"13af9e50735d4b9fe32238ac38d570c2d60d46f4","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/ts-loader/-/ts-loader-1.3.1.tgz"},"maintainers":[{"name":"blakeembrey","email":"hello@blakeembrey.com"},{"name":"jbrantly","email":"james@jbrantly.com"},{"name":"johnnyreilly","email":"johnny_reilly@hotmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ts-loader-1.3.1.tgz_1481230256911_0.8949935743585229"},"directories":{}},"1.3.2":{"name":"ts-loader","version":"1.3.2","description":"TypeScript loader for webpack","main":"index.js","scripts":{"build":"tsc --version && tsc --project \"./src\"","comparison-tests":"npm link ./test/comparison-tests/testLib && node test/comparison-tests/run-tests.js","execution-tests":"node test/execution-tests/run-tests.js","test":"node test/run-tests.js"},"repository":{"type":"git","url":"git+https://github.com/TypeStrong/ts-loader.git"},"keywords":["ts-loader","typescript-loader","webpack","loader","typescript","ts"],"author":{"name":"James Brantly","email":"james@jbrantly.com","url":"http://www.jbrantly.com/"},"license":"MIT","bugs":{"url":"https://github.com/TypeStrong/ts-loader/issues"},"homepage":"https://github.com/TypeStrong/ts-loader","dependencies":{"colors":"^1.0.3","enhanced-resolve":"^3.0.0","loader-utils":"^0.2.6","object-assign":"^4.1.0","semver":"^5.0.1"},"devDependencies":{"babel":"^6.0.0","babel-core":"^6.0.0","babel-loader":"^6.0.0","babel-polyfill":"^6.16.0","babel-preset-es2015":"^6.0.0","babel-preset-es2016":"^6.16.0","babel-preset-react":"^6.0.0","escape-string-regexp":"^1.0.3","fs-extra":"^1.0.0","glob":"^7.1.1","html-webpack-plugin":"^2.17.0","jasmine-core":"^2.5.2","karma":"^1.3.0","karma-jasmine":"^1.0.0","karma-mocha-reporter":"^2.0.0","karma-phantomjs-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.6","karma-webpack":"^1.7.0","mkdirp":"^0.5.1","mocha":"^3.1.0","phantomjs-prebuilt":"^2.1.2","rimraf":"^2.4.2","typescript":"^2.0.3","typings":"^2.0.0","vue":"^2.0.5","vue-loader":"^9.7.0","webpack":"^1.11.0"},"gitHead":"c3d707c50190f2ea6d00b99e0e438fda5f86aa23","_id":"ts-loader@1.3.2","_shasum":"55b21ebb3fc41b854861df9ccab5ff52817e79a9","_from":".","_npmVersion":"4.0.2","_nodeVersion":"7.0.0","_npmUser":{"name":"johnnyreilly","email":"johnny_reilly@hotmail.com"},"dist":{"shasum":"55b21ebb3fc41b854861df9ccab5ff52817e79a9","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/ts-loader/-/ts-loader-1.3.2.tgz"},"maintainers":[{"name":"blakeembrey","email":"hello@blakeembrey.com"},{"name":"jbrantly","email":"james@jbrantly.com"},{"name":"johnnyreilly","email":"johnny_reilly@hotmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/ts-loader-1.3.2.tgz_1481481706680_0.9469679303001612"},"directories":{}},"1.3.3":{"name":"ts-loader","version":"1.3.3","description":"TypeScript loader for webpack","main":"index.js","scripts":{"build":"tsc --version && tsc --project \"./src\"","comparison-tests":"npm link ./test/comparison-tests/testLib && node test/comparison-tests/run-tests.js","execution-tests":"node test/execution-tests/run-tests.js","test":"node test/run-tests.js"},"repository":{"type":"git","url":"git+https://github.com/TypeStrong/ts-loader.git"},"keywords":["ts-loader","typescript-loader","webpack","loader","typescript","ts"],"author":{"name":"James Brantly","email":"james@jbrantly.com","url":"http://www.jbrantly.com/"},"license":"MIT","bugs":{"url":"https://github.com/TypeStrong/ts-loader/issues"},"homepage":"https://github.com/TypeStrong/ts-loader","dependencies":{"colors":"^1.0.3","enhanced-resolve":"^3.0.0","loader-utils":"^0.2.6","object-assign":"^4.1.0","semver":"^5.0.1"},"devDependencies":{"babel":"^6.0.0","babel-core":"^6.0.0","babel-loader":"^6.0.0","babel-polyfill":"^6.16.0","babel-preset-es2015":"^6.0.0","babel-preset-es2016":"^6.16.0","babel-preset-react":"^6.0.0","escape-string-regexp":"^1.0.3","fs-extra":"^1.0.0","glob":"^7.1.1","html-webpack-plugin":"^2.17.0","jasmine-core":"^2.5.2","karma":"^1.3.0","karma-jasmine":"^1.0.0","karma-mocha-reporter":"^2.0.0","karma-phantomjs-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.6","karma-webpack":"^1.7.0","mkdirp":"^0.5.1","mocha":"^3.1.0","phantomjs-prebuilt":"^2.1.2","rimraf":"^2.4.2","typescript":"^2.1.4","typings":"^2.0.0","vue":"^2.0.5","vue-loader":"^9.7.0","webpack":"^1.11.0"},"gitHead":"3486e06e586f5f84aa41d99841a9368fd4510692","_id":"ts-loader@1.3.3","_shasum":"30c6203e1e66b841a88701ed8858f1725d94b026","_from":".","_npmVersion":"4.0.2","_nodeVersion":"7.0.0","_npmUser":{"name":"johnnyreilly","email":"johnny_reilly@hotmail.com"},"dist":{"shasum":"30c6203e1e66b841a88701ed8858f1725d94b026","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/ts-loader/-/ts-loader-1.3.3.tgz"},"maintainers":[{"name":"blakeembrey","email":"hello@blakeembrey.com"},{"name":"jbrantly","email":"james@jbrantly.com"},{"name":"johnnyreilly","email":"johnny_reilly@hotmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/ts-loader-1.3.3.tgz_1481835879171_0.2713284983765334"},"directories":{}},"2.0.0":{"name":"ts-loader","version":"2.0.0","description":"TypeScript loader for webpack","main":"index.js","scripts":{"build":"tsc --version && tsc --project \"./src\"","comparison-tests":"npm link ./test/comparison-tests/testLib && node test/comparison-tests/run-tests.js","execution-tests":"node test/execution-tests/run-tests.js","test":"node test/run-tests.js"},"repository":{"type":"git","url":"git+https://github.com/TypeStrong/ts-loader.git"},"keywords":["ts-loader","typescript-loader","webpack","loader","typescript","ts"],"engines":{"node":">=4.3.0 <5.0.0 || >=5.10"},"author":{"name":"James Brantly","email":"james@jbrantly.com","url":"http://www.jbrantly.com/"},"license":"MIT","bugs":{"url":"https://github.com/TypeStrong/ts-loader/issues"},"homepage":"https://github.com/TypeStrong/ts-loader","dependencies":{"colors":"^1.0.3","enhanced-resolve":"^3.0.0","loader-utils":"^0.2.6","semver":"^5.0.1"},"devDependencies":{"babel":"^6.0.0","babel-core":"^6.0.0","babel-loader":"^6.0.0","babel-polyfill":"^6.16.0","babel-preset-es2015":"^6.0.0","babel-preset-es2016":"^6.16.0","babel-preset-react":"^6.0.0","escape-string-regexp":"^1.0.3","fs-extra":"^2.0.0","glob":"^7.1.1","html-webpack-plugin":"^2.17.0","jasmine-core":"^2.5.2","karma":"^1.3.0","karma-jasmine":"^1.0.0","karma-mocha-reporter":"^2.0.0","karma-phantomjs-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.6","karma-webpack":"^2.0.1","mkdirp":"^0.5.1","mocha":"^3.1.0","phantomjs-prebuilt":"^2.1.2","rimraf":"^2.4.2","typescript":"^2.1.4","typings":"^2.0.0","webpack":"^2.2.0"},"gitHead":"97f937b8d6a6f3531158661356b848fea792304b","_id":"ts-loader@2.0.0","_shasum":"26f382b51951bf5db4c88ea5f3b156c1cfdd813f","_from":".","_npmVersion":"4.0.2","_nodeVersion":"7.0.0","_npmUser":{"name":"johnnyreilly","email":"johnny_reilly@hotmail.com"},"dist":{"shasum":"26f382b51951bf5db4c88ea5f3b156c1cfdd813f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/ts-loader/-/ts-loader-2.0.0.tgz"},"maintainers":[{"name":"blakeembrey","email":"hello@blakeembrey.com"},{"name":"jbrantly","email":"james@jbrantly.com"},{"name":"johnnyreilly","email":"johnny_reilly@hotmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ts-loader-2.0.0.tgz_1484984979741_0.002484559081494808"},"directories":{}},"2.0.1":{"name":"ts-loader","version":"2.0.1","description":"TypeScript loader for webpack","main":"index.js","scripts":{"build":"tsc --version && tsc --project \"./src\"","comparison-tests":"npm link ./test/comparison-tests/testLib && node test/comparison-tests/run-tests.js","comparison-tests-generate":"node test/comparison-tests/stub-new-version.js","execution-tests":"node test/execution-tests/run-tests.js","test":"node test/run-tests.js"},"repository":{"type":"git","url":"git+https://github.com/TypeStrong/ts-loader.git"},"keywords":["ts-loader","typescript-loader","webpack","loader","typescript","ts"],"engines":{"node":">=4.3.0 <5.0.0 || >=5.10"},"author":{"name":"James Brantly","email":"james@jbrantly.com","url":"http://www.jbrantly.com/"},"license":"MIT","bugs":{"url":"https://github.com/TypeStrong/ts-loader/issues"},"homepage":"https://github.com/TypeStrong/ts-loader","dependencies":{"colors":"^1.0.3","enhanced-resolve":"^3.0.0","loader-utils":"^1.0.2","semver":"^5.0.1"},"devDependencies":{"babel":"^6.0.0","babel-core":"^6.0.0","babel-loader":"^6.0.0","babel-polyfill":"^6.16.0","babel-preset-es2015":"^6.0.0","babel-preset-es2016":"^6.16.0","babel-preset-react":"^6.0.0","escape-string-regexp":"^1.0.3","fs-extra":"^2.0.0","glob":"^7.1.1","html-webpack-plugin":"^2.17.0","jasmine-core":"^2.5.2","karma":"^1.3.0","karma-jasmine":"^1.0.0","karma-mocha-reporter":"^2.0.0","karma-phantomjs-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.6","karma-webpack":"^2.0.1","mkdirp":"^0.5.1","mocha":"^3.1.0","phantomjs-prebuilt":"^2.1.2","rimraf":"^2.4.2","typescript":"^2.2.1","typings":"^2.0.0","webpack":"^2.2.0"},"gitHead":"a8886e88a32e7ea785c24895fc406478dc47e7b3","_id":"ts-loader@2.0.1","_shasum":"2ec8fa5e20ef01062a4a2c28c9d6ac828c32e75d","_from":".","_npmVersion":"4.0.2","_nodeVersion":"7.0.0","_npmUser":{"name":"johnnyreilly","email":"johnny_reilly@hotmail.com"},"dist":{"shasum":"2ec8fa5e20ef01062a4a2c28c9d6ac828c32e75d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/ts-loader/-/ts-loader-2.0.1.tgz"},"maintainers":[{"name":"blakeembrey","email":"hello@blakeembrey.com"},{"name":"jbrantly","email":"james@jbrantly.com"},{"name":"johnnyreilly","email":"johnny_reilly@hotmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/ts-loader-2.0.1.tgz_1487796233128_0.5169765227474272"},"directories":{}},"2.0.2":{"name":"ts-loader","version":"2.0.2","description":"TypeScript loader for webpack","main":"index.js","scripts":{"build":"tsc --version && tsc --project \"./src\"","comparison-tests":"npm link ./test/comparison-tests/testLib && node test/comparison-tests/run-tests.js","comparison-tests-generate":"node test/comparison-tests/stub-new-version.js","execution-tests":"node test/execution-tests/run-tests.js","test":"node test/run-tests.js"},"repository":{"type":"git","url":"git+https://github.com/TypeStrong/ts-loader.git"},"keywords":["ts-loader","typescript-loader","webpack","loader","typescript","ts"],"engines":{"node":">=4.3.0 <5.0.0 || >=5.10"},"author":{"name":"James Brantly","email":"james@jbrantly.com","url":"http://www.jbrantly.com/"},"license":"MIT","bugs":{"url":"https://github.com/TypeStrong/ts-loader/issues"},"homepage":"https://github.com/TypeStrong/ts-loader","dependencies":{"colors":"^1.0.3","enhanced-resolve":"^3.0.0","loader-utils":"^1.0.2","semver":"^5.0.1"},"devDependencies":{"babel":"^6.0.0","babel-core":"^6.0.0","babel-loader":"^6.0.0","babel-polyfill":"^6.16.0","babel-preset-es2015":"^6.0.0","babel-preset-es2016":"^6.16.0","babel-preset-react":"^6.0.0","escape-string-regexp":"^1.0.3","fs-extra":"^2.0.0","glob":"^7.1.1","html-webpack-plugin":"^2.17.0","jasmine-core":"^2.5.2","karma":"^1.3.0","karma-jasmine":"^1.0.0","karma-mocha-reporter":"^2.0.0","karma-phantomjs-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.6","karma-webpack":"^2.0.1","mkdirp":"^0.5.1","mocha":"^3.1.0","phantomjs-prebuilt":"^2.1.2","rimraf":"^2.4.2","typescript":"^2.2.1","typings":"^2.0.0","webpack":"^2.2.0"},"gitHead":"8987ac68fe2b02d46717ac13c4c43433f0fae4b8","_id":"ts-loader@2.0.2","_shasum":"74abc2f15a9f1d8432873dfa35eef8e513caa622","_from":".","_npmVersion":"4.0.2","_nodeVersion":"7.0.0","_npmUser":{"name":"johnnyreilly","email":"johnny_reilly@hotmail.com"},"dist":{"shasum":"74abc2f15a9f1d8432873dfa35eef8e513caa622","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/ts-loader/-/ts-loader-2.0.2.tgz"},"maintainers":[{"name":"blakeembrey","email":"hello@blakeembrey.com"},{"name":"jbrantly","email":"james@jbrantly.com"},{"name":"johnnyreilly","email":"johnny_reilly@hotmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ts-loader-2.0.2.tgz_1489697693723_0.9608758580870926"},"directories":{}},"2.0.3":{"name":"ts-loader","version":"2.0.3","description":"TypeScript loader for webpack","main":"index.js","scripts":{"build":"tsc --version && tsc --project \"./src\"","comparison-tests":"npm link ./test/comparison-tests/testLib && node test/comparison-tests/run-tests.js","comparison-tests-generate":"node test/comparison-tests/stub-new-version.js","execution-tests":"node test/execution-tests/run-tests.js","test":"node test/run-tests.js"},"repository":{"type":"git","url":"git+https://github.com/TypeStrong/ts-loader.git"},"keywords":["ts-loader","typescript-loader","webpack","loader","typescript","ts"],"engines":{"node":">=4.3.0 <5.0.0 || >=5.10"},"author":{"name":"James Brantly","email":"james@jbrantly.com","url":"http://www.jbrantly.com/"},"license":"MIT","bugs":{"url":"https://github.com/TypeStrong/ts-loader/issues"},"homepage":"https://github.com/TypeStrong/ts-loader","dependencies":{"colors":"^1.0.3","enhanced-resolve":"^3.0.0","loader-utils":"^1.0.2","semver":"^5.0.1"},"devDependencies":{"babel":"^6.0.0","babel-core":"^6.0.0","babel-loader":"^6.0.0","babel-polyfill":"^6.16.0","babel-preset-es2015":"^6.0.0","babel-preset-es2016":"^6.16.0","babel-preset-react":"^6.0.0","escape-string-regexp":"^1.0.3","fs-extra":"^2.0.0","glob":"^7.1.1","html-webpack-plugin":"^2.17.0","jasmine-core":"^2.5.2","karma":"^1.3.0","karma-jasmine":"^1.0.0","karma-mocha-reporter":"^2.0.0","karma-phantomjs-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.6","karma-webpack":"^2.0.1","mkdirp":"^0.5.1","mocha":"^3.1.0","phantomjs-prebuilt":"^2.1.2","rimraf":"^2.4.2","typescript":"^2.2.1","typings":"^2.0.0","webpack":"^2.2.0"},"gitHead":"6c733272a02bfc9cc99aad8e91a1ab9be5a2be61","_id":"ts-loader@2.0.3","_shasum":"89b8c87598f048df065766e07e1538f0eaeb1165","_from":".","_npmVersion":"4.0.2","_nodeVersion":"7.0.0","_npmUser":{"name":"johnnyreilly","email":"johnny_reilly@hotmail.com"},"dist":{"shasum":"89b8c87598f048df065766e07e1538f0eaeb1165","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/ts-loader/-/ts-loader-2.0.3.tgz"},"maintainers":[{"name":"blakeembrey","email":"hello@blakeembrey.com"},{"name":"jbrantly","email":"james@jbrantly.com"},{"name":"johnnyreilly","email":"johnny_reilly@hotmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ts-loader-2.0.3.tgz_1490206185532_0.8174544558860362"},"directories":{}}},"name":"ts-loader","time":{"modified":"2017-04-07T08:07:14.971Z","created":"2015-01-21T00:04:42.322Z","0.1.0":"2015-01-21T00:04:42.322Z","0.2.0":"2015-01-25T04:16:38.718Z","0.2.1":"2015-01-27T03:47:15.039Z","0.2.2":"2015-01-29T07:36:11.480Z","0.2.3":"2015-02-03T13:52:27.392Z","0.3.0":"2015-02-08T21:43:44.532Z","0.3.1":"2015-02-09T17:58:38.676Z","0.3.2":"2015-02-23T20:38:36.407Z","0.3.3":"2015-03-13T04:51:32.525Z","0.3.4":"2015-04-21T02:21:55.811Z","0.4.0":"2015-05-06T04:53:15.384Z","0.4.1":"2015-05-06T06:08:37.692Z","0.4.2":"2015-05-09T01:57:50.176Z","0.4.3":"2015-05-28T03:37:29.005Z","0.4.4":"2015-06-23T04:36:20.391Z","0.4.5":"2015-06-26T23:40:07.844Z","0.4.6":"2015-07-06T03:23:39.093Z","0.4.7":"2015-07-20T15:11:44.599Z","0.5.0":"2015-08-03T03:42:24.373Z","0.5.1":"2015-08-26T02:15:26.449Z","0.5.2":"2015-08-26T13:25:31.741Z","0.5.3":"2015-09-01T03:51:28.334Z","0.5.4":"2015-09-08T12:48:43.598Z","0.5.5":"2015-09-13T01:18:43.624Z","0.5.6":"2015-10-07T02:55:32.814Z","0.6.0":"2015-10-25T14:24:24.768Z","0.6.1":"2015-11-07T12:58:41.375Z","0.7.0":"2015-11-10T01:47:32.579Z","0.7.1":"2015-11-10T14:33:07.768Z","0.7.2":"2015-11-25T12:26:21.093Z","0.8.0":"2016-01-20T04:22:03.455Z","0.8.1":"2016-02-10T04:59:49.252Z","0.8.2":"2016-04-11T03:16:38.118Z","0.9.0":"2016-10-08T18:54:54.260Z","0.9.1":"2016-10-11T20:06:28.041Z","0.9.2":"2016-10-16T14:41:50.279Z","0.9.3":"2016-10-16T21:01:42.711Z","0.9.4":"2016-10-17T18:53:13.191Z","0.9.5":"2016-10-20T05:44:30.000Z","1.0.0-beta.1":"2016-10-30T09:12:58.075Z","1.0.0":"2016-11-01T21:56:59.598Z","1.1.0":"2016-11-08T07:05:29.148Z","1.2.0":"2016-11-11T06:27:01.398Z","1.2.1":"2016-11-14T21:15:06.862Z","1.2.2":"2016-11-18T06:48:19.843Z","1.3.0":"2016-12-05T21:12:09.637Z","1.3.1":"2016-12-08T20:50:58.762Z","1.3.2":"2016-12-11T18:41:47.523Z","1.3.3":"2016-12-15T21:04:40.073Z","2.0.0":"2017-01-21T07:49:41.572Z","2.0.1":"2017-02-22T20:43:53.804Z","2.0.2":"2017-03-16T20:54:55.985Z","2.0.3":"2017-03-22T18:09:47.844Z"},"readmeFilename":"README.md","homepage":"https://github.com/TypeStrong/ts-loader"}