{
  "name": "karma-ie-launcher",
  "version": "0.2.0",
  "description": "A Karma plugin. Launcher for Internet Explorer.",
  "main": "index.js",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "repository": {
    "type": "git",
    "url": "git://github.com/karma-runner/karma-ie-launcher.git"
  },
  "keywords": [
    "karma-plugin",
    "karma-launcher",
    "ie"
  ],
  "author": {
    "name": "Vojta Jina",
    "email": "vojta.jina@gmail.com"
  },
  "dependencies": {
    "lodash": "^3.9.3"
  },
  "peerDependencies": {
    "karma": ">=0.9"
  },
  "license": "MIT",
  "devDependencies": {
    "chai": "^2.3.0",
    "di": "^0.0.1",
    "eslint": "^0.22.1",
    "eslint-config-standard": "^2.0.1",
    "eslint-plugin-react": "^2.5.0",
    "grunt": "^0.4.1",
    "grunt-auto-release": "^0.0.2",
    "grunt-bump": "^0.3.1",
    "grunt-contrib-watch": "^0.6.1",
    "grunt-conventional-changelog": "^1.2.2",
    "grunt-eslint": "^14.0.0",
    "grunt-npm": "^0.0.2",
    "grunt-simple-mocha": "^0.4.0",
    "karma": "^0.12.0",
    "load-grunt-tasks": "^3.2.0",
    "mocks": "0.0.11",
    "sinon": "^1.14.1",
    "sinon-chai": "^2.8.0"
  },
  "contributors": [
    {
      "name": "sylvain-hamel",
      "email": "sylvainhamel0@gmail.com"
    },
    {
      "name": "Sylvain Hamel",
      "email": "sylvainhamel0@gmail.com"
    },
    {
      "name": "dignifiedquire",
      "email": "dignifiedquire@gmail.com"
    },
    {
      "name": "Andreas Krummsdorf",
      "email": "a.krummsdorf@litixsoft.de"
    },
    {
      "name": "Nikita Khomyakov",
      "email": "dr.evil@krtn.eu"
    },
    {
      "name": "Christopher Currie",
      "email": "ccurrie@impresys.com"
    }
  ],
  "readme": "# karma-ie-launcher\n\n[![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat-square)](https://github.com/karma-runner/karma-ie-launcher)\n [![npm version](https://img.shields.io/npm/v/karma-ie-launcher.svg?style=flat-square)](https://www.npmjs.com/package/karma-ie-launcher) [![npm downloads](https://img.shields.io/npm/dm/karma-ie-launcher.svg?style=flat-square)](https://www.npmjs.com/package/karma-ie-launcher)\n\n[![Build Status](https://img.shields.io/travis/karma-runner/karma-ie-launcher/master.svg?style=flat-square)](https://travis-ci.org/karma-runner/karma-ie-launcher) [![Dependency Status](https://img.shields.io/david/karma-runner/karma-ie-launcher.svg?style=flat-square)](https://david-dm.org/karma-runner/karma-ie-launcher) [![devDependency Status](https://img.shields.io/david/dev/karma-runner/karma-ie-launcher.svg?style=flat-square)](https://david-dm.org/karma-runner/karma-ie-launcher#info=devDependencies)\n\n> Launcher for Internet Explorer.\n\n## Installation\n\nThe easiest way is to keep `karma-ie-launcher` as a devDependency, by running\n\n```bash\nnpm install karma-ie-launcher --save-dev\n```\n\n## Configuration\n```js\n// karma.conf.js\nmodule.exports = function(config) {\n  config.set({\n    browsers: ['IE']\n  });\n};\n```\n\nYou can pass list of browsers as a CLI argument too:\n```bash\nkarma start --browsers IE\n```\n\nYou can run IE in emulation mode by setting the 'x-ua-compatible' option:\n```js\ncustomLaunchers: {\n  IE9: {\n    base: 'IE',\n    'x-ua-compatible': 'IE=EmulateIE9'\n  },\n  IE8: {\n    base: 'IE',\n    'x-ua-compatible': 'IE=EmulateIE8'\n  }\n}\n```\nSee [Specifying legacy document modes] on MSDN.\n\n### Running IE in \"No add-ons mode\"\n\nPlease note that since **v0.2.0** default behaviour of launching Internet Explorer has changed.\nNow it runs using system-wide configuration (uses same settings as if you would run it manually) but prior to **v0.2.0** it was spawned with `-extoff` flag set explicitly, so all extensions were disabled.\n\nIf you expect the same behaviour as it was before **v0.2.0**, Karma configuration should be slightly changed:\n- create new `customLauncher` configuration (`IE_no_addons` is used in an example below) with custom flags (in our case it is `-extoff` only)\n- browser `IE` in `browsers` field should be replaced with your new custom launcher name\n```js\n  browsers: ['IE_no_addons'],\n  customLaunchers: {\n    IE_no_addons: {\n      base:  'IE',\n      flags: ['-extoff']\n    }\n  }\n```\n\nSee [IE Command-Line Options] on MSDN.\n\n----\n\nFor more information on Karma see the [homepage].\n\n\n[homepage]: http://karma-runner.github.com\n[Specifying legacy document modes]: http://msdn.microsoft.com/en-us/library/ie/jj676915(v=vs.85).aspx\n[IE Command-Line Options]: https://msdn.microsoft.com/en-us/library/hh826025(v=vs.85).aspx\n",
  "readmeFilename": "README.md",
  "bugs": {
    "url": "https://github.com/karma-runner/karma-ie-launcher/issues"
  },
  "_id": "karma-ie-launcher@0.2.0",
  "dist": {
    "shasum": "c87d751dc0d4964464e881ee6f8deaca926f9501"
  },
  "_from": "karma-ie-launcher@^0.2.0",
  "_resolved": "https://registry.npmjs.org/karma-ie-launcher/-/karma-ie-launcher-0.2.0.tgz"
}
