-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 2.14 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "karma-chrome-extra-launcher",
"version": "0.1.0",
"description": "A Karma plugin. Launcher for Chrome with custom Agent.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git://github.com/tin-nguyen/karma-chrome-extra-launcher.git"
},
"keywords": [
"karma-plugin",
"karma-launcher",
"chrome",
"iPhone"
],
"author": {
"name": "Vojta Jína",
"email": "vojta.jina@gmail.com"
},
"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": "Tin Nguyen",
"email": "ntin87@gmail.com"
}
],
"readme": "# karma-chrome-extra-launcher\n\n> Launcher for Google Chrome with custom agent.\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-extra-launcher` as a devDependency in your `package.json`.\n```json\n{\n \"devDependencies\": {\n \"karma\": \"~0.10\",\n \"karma-chrome-extra-launcher\": \"~0.1\"\n }\n}\n```\n\nYou can simple do it by:\n```bash\nnpm install karma-chrome-extra-launcher --save-dev\n```\n\n## Configuration\n```js\n// karma.conf.js\nmodule.exports = function(config) {\n config.set({\n browsers: ['ChromeExtra'],\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, ChromeExtra,Chrome_without_security\n```\n\n----\n\nFor more information on Karma see the [homepage].\n\n\n[homepage]: http://tin-nguyen.github.com\n",
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/tin-nguyen/karma-chrome-extra-launcher/issues"
},
"_id": "karma-chrome-extra-launcher@0.1.0",
"_from": "karma-chrome-extra-launcher@"
}