Telegram Web, preconfigured for usage in I2P. http://web.telegram.i2p/
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.

70 lines
2.8 KiB

11 years ago
{
"name": "karma-phantomjs-launcher",
"version": "0.1.1",
"description": "A Karma plugin. Launcher for PhantomJS.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git://github.com/karma-runner/karma-phantomjs-launcher.git"
},
"keywords": [
"karma-plugin",
"karma-launcher",
"phantomjs"
],
"author": {
"name": "Vojta Jina",
"email": "vojta.jina@gmail.com"
},
"dependencies": {
"phantomjs": "~1.9"
},
"peerDependencies": {
"karma": ">=0.9"
},
"license": "MIT",
"devDependencies": {
"grunt": "~0.4.1",
"grunt-npm": "~0.0.2",
"grunt-bump": "~0.0.7",
"grunt-auto-release": "~0.0.2"
},
"contributors": [
{
"name": "Friedel Ziegelmayer",
"email": "friedel.ziegelmayer@gmail.com"
},
{
"name": "Edward Hutchins",
"email": "eahutchins@gmail.com"
},
{
"name": "Eryk Napierała",
"email": "eryk.piast@gmail.com"
},
{
"name": "Jason Dobry",
"email": "jason.dobry@gmail.com"
},
{
"name": "Rob Barreca",
"email": "rob.barreca@inmobi.com"
},
{
"name": "nherzing",
"email": "nherzing@gmail.com"
}
],
"readme": "# karma-phantomjs-launcher\n\n> Launcher for [PhantomJS].\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-phantomjs-launcher` as a devDependency in your `package.json`.\n```json\n{\n \"devDependencies\": {\n \"karma\": \"~0.10\",\n \"karma-phantomjs-launcher\": \"~0.1\"\n }\n}\n```\n\nYou can simple do it by:\n```bash\nnpm install karma-phantomjs-launcher --save-dev\n```\n\n## Configuration\n```js\n// karma.conf.js\nmodule.exports = function(config) {\n config.set({\n browsers: ['PhantomJS', 'PhantomJS_custom'],\n\n // you can define custom flags\n customLaunchers: {\n 'PhantomJS_custom': {\n base: 'PhantomJS',\n options: {\n windowName: 'my-window',\n settings: {\n webSecurityEnabled: false\n }\n },\n flags: ['--remote-debugger-port=9000']\n }\n }\n });\n};\n```\n\nYou can pass list of browsers as a CLI argument too:\n```bash\nkarma start --browsers PhantomJS_custom\n```\n\n----\n\nFor more information on Karma see the [homepage].\n\n\n[homepage]: http://karma-runner.github.com\n[PhantomJS]: http://phantomjs.org/\n",
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/karma-runner/karma-phantomjs-launcher/issues"
},
"homepage": "https://github.com/karma-runner/karma-phantomjs-launcher",
"_id": "karma-phantomjs-launcher@0.1.1",
"_from": "karma-phantomjs-launcher@*"
}