You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
2.3 KiB
55 lines
2.3 KiB
{ |
||
"name": "karma-chrome-launcher", |
||
"version": "0.1.1", |
||
"description": "A Karma plugin. Launcher for Chrome and Chrome Canary.", |
||
"main": "index.js", |
||
"scripts": { |
||
"test": "echo \"Error: no test specified\" && exit 1" |
||
}, |
||
"repository": { |
||
"type": "git", |
||
"url": "git://github.com/karma-runner/karma-chrome-launcher.git" |
||
}, |
||
"keywords": [ |
||
"karma-plugin", |
||
"karma-launcher", |
||
"chrome" |
||
], |
||
"author": { |
||
"name": "Vojta Jina", |
||
"email": "[email protected]" |
||
}, |
||
"dependencies": {}, |
||
"peerDependencies": { |
||
"karma": ">=0.9.3" |
||
}, |
||
"license": "MIT", |
||
"devDependencies": { |
||
"grunt": "~0.4.1", |
||
"grunt-npm": "~0.0.2", |
||
"grunt-bump": "~0.0.6", |
||
"grunt-auto-release": "~0.0.2" |
||
}, |
||
"contributors": [ |
||
{ |
||
"name": "Friedel Ziegelmayer", |
||
"email": "[email protected]" |
||
}, |
||
{ |
||
"name": "Joe Doyle", |
||
"email": "[email protected]" |
||
}, |
||
{ |
||
"name": "Michał Gołębiowski", |
||
"email": "[email protected]" |
||
} |
||
], |
||
"readme": "# karma-chrome-launcher\n\n> Launcher for Google Chrome and Google Chrome Canary.\n\n## Installation\n\n**This plugin ships with Karma by default, so you don't need to install it, it should just work ;-)**\n\nThe easiest way is to keep `karma-chrome-launcher` as a devDependency in your `package.json`.\n```json\n{\n \"devDependencies\": {\n \"karma\": \"~0.10\",\n \"karma-chrome-launcher\": \"~0.1\"\n }\n}\n```\n\nYou can simple do it by:\n```bash\nnpm install karma-chrome-launcher --save-dev\n```\n\n## Configuration\n```js\n// karma.conf.js\nmodule.exports = function(config) {\n config.set({\n browsers: ['Chrome', 'Chrome_without_security'],\n\n // you can define custom flags\n customLaunchers: {\n Chrome_without_security: {\n base: 'Chrome',\n flags: ['--disable-web-security']\n }\n }\n });\n};\n```\n\nYou can pass list of browsers as a CLI argument too:\n```bash\nkarma start --browsers Chrome,Chrome_without_security\n```\n\n----\n\nFor more information on Karma see the [homepage].\n\n\n[homepage]: http://karma-runner.github.com\n", |
||
"readmeFilename": "README.md", |
||
"bugs": { |
||
"url": "https://github.com/karma-runner/karma-chrome-launcher/issues" |
||
}, |
||
"homepage": "https://github.com/karma-runner/karma-chrome-launcher", |
||
"_id": "[email protected]", |
||
"_from": "karma-chrome-launcher@*" |
||
}
|
||
|