{
  "name": "karma-sauce-launcher",
  "version": "0.1.8",
  "description": "A Karma plugin. Launch any browser on SauceLabs!",
  "main": "index.js",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "repository": {
    "type": "git",
    "url": "git://github.com/karma-runner/karma-sauce-launcher.git"
  },
  "keywords": [
    "karma-plugin",
    "karma-launcher",
    "sauce",
    "labs",
    "saucelabs"
  ],
  "author": {
    "name": "Vojta Jina",
    "email": "vojta.jina@gmail.com"
  },
  "dependencies": {
    "wd": "~0.2.8",
    "sauce-connect-launcher": "~0.2.2",
    "q": "~0.9.6",
    "saucelabs": "~0.1.0"
  },
  "peerDependencies": {
    "karma": ">=0.9"
  },
  "license": "MIT",
  "devDependencies": {
    "grunt": "~0.4.1",
    "grunt-bump": "~0.0.7",
    "grunt-npm": "~0.0.2",
    "grunt-auto-release": "~0.0.2"
  },
  "contributors": [
    {
      "name": "Johannes Würbach",
      "email": "johannes.wuerbach@googlemail.com"
    },
    {
      "name": "Santiago Suarez Ordoñez",
      "email": "santiycr@gmail.com"
    },
    {
      "name": "Johannes Würbach",
      "email": "johannes.wuerbach@googlemail.com"
    },
    {
      "name": "Parashuram",
      "email": "code@nparashuram.com"
    },
    {
      "name": "Parashuram N",
      "email": "code@r.nparashuram.com"
    },
    {
      "name": "Ralf Kistner",
      "email": "ralf@embarkmobile.com"
    },
    {
      "name": "yhwh",
      "email": "ferrero.nicolas@gmail.com"
    }
  ],
  "readme": "# karma-sauce-launcher\n\n> Use any browser on [SauceLabs](https://saucelabs.com/)!\n\n\n## Installation\n\nThe easiest way is to keep `karma-sauce-launcher` as a devDependency in your `package.json`.\n```json\n{\n  \"devDependencies\": {\n    \"karma\": \"~0.10\",\n    \"karma-sauce-launcher\": \"~0.1\"\n  }\n}\n```\n\nYou can also add it by this command:\n```bash\nnpm install karma-sauce-launcher --save-dev\n```\n\n\n## Configuration\n\n```js\n// karma.conf.js\nmodule.exports = function(config) {\n  config.set({\n    // global config for SauceLabs\n    sauceLabs: {\n      username: 'jamesbond',\n      accessKey: '007',\n      startConnect: false,\n      testName: 'my unit tests'\n    },\n\n    // define SL browsers\n    customLaunchers: {\n      sl_chrome_linux: {\n        base: 'SauceLabs',\n        browserName: 'chrome',\n        platform: 'linux'\n      }\n    },\n\n    browsers: ['sl_chrome_linux']\n  });\n};\n```\n\n### Global options\n- `username` your SL username, you can also use `SAUCE_USERNAME` env variable.\n- `accessKey` your SL access key, you can also use `SAUCE_ACCESS_KEY` env variable.\n- `tunnelIdentifier` Sauce Connect can proxy multiple sessions, this is an id of a session.\n- `startConnect` do you wanna start Sauce Connect ? (defaults to `true`)\n- `tags` an array of tags (will show up in SL web interface)\n- `testName` test name (will show up in SL web interface)\n- `build` build id (will show up in SL web interface)\n- `recordVideo` do you wanna record video of the session ? (defaults to `false`)\n- `recordScreenshots` do you wanna take screenshots ? (defaults to `true`)\n\n\n### Per browser options\n- `browserName` name of the browser\n- `version` version of the browser (defaults to the latest available)\n- `platform` which platform ? (defaults to any)\n- `deviceOrientation` portrait or landscape (mobile testing option only)\n\nFor an example project of, check out [AngularJS](https://github.com/angular/angular.js/blob/master/.travis.yml).\n\n\n----\n\nFor more information on Karma see the [homepage](http://karma-runner.github.com).\n",
  "readmeFilename": "README.md",
  "bugs": {
    "url": "https://github.com/karma-runner/karma-sauce-launcher/issues"
  },
  "homepage": "https://github.com/karma-runner/karma-sauce-launcher",
  "_id": "karma-sauce-launcher@0.1.8",
  "_from": "karma-sauce-launcher@>=0.1.8 <0.2.0"
}
