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.
43 lines
2.0 KiB
43 lines
2.0 KiB
11 years ago
|
{
|
||
|
"name": "karma-script-launcher",
|
||
|
"version": "0.1.0",
|
||
|
"description": "A Karma plugin. Launcher for shell scripts.",
|
||
|
"main": "index.js",
|
||
|
"scripts": {
|
||
|
"test": "echo \"Error: no test specified\" && exit 1"
|
||
|
},
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "git://github.com/karma-runner/karma-script-launcher.git"
|
||
|
},
|
||
|
"keywords": [
|
||
|
"karma-plugin",
|
||
|
"karma-launcher",
|
||
|
"script"
|
||
|
],
|
||
|
"author": {
|
||
|
"name": "Vojta Jina",
|
||
|
"email": "vojta.jina@gmail.com"
|
||
|
},
|
||
|
"dependencies": {},
|
||
|
"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": [],
|
||
|
"readme": "# karma-scripts-launcher\n\n> Launcher for a shell script.\n\nThis plugin allows you to use a shell script as a browser launcher. The script has to accept\na single argument - the url that the browser should open.\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-scripts-launcher` as a devDependency in your `package.json`.\n```json\n{\n \"devDependencies\": {\n \"karma\": \"~0.10\",\n \"karma-scripts-launcher\": \"~0.1\"\n }\n}\n```\n\nYou can simple do it by:\n```bash\nnpm install karma-scripts-launcher --save-dev\n```\n\n## Configuration\n```js\n// karma.conf.js\nmodule.exports = function(config) {\n config.set({\n browsers: ['/usr/local/bin/my-custom.sh'],\n });\n};\n```\n\nYou can pass list of browsers as a CLI argument too:\n```bash\nkarma start --browsers /some/custom/script.sh\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-script-launcher/issues"
|
||
|
},
|
||
|
"homepage": "https://github.com/karma-runner/karma-script-launcher",
|
||
|
"_id": "karma-script-launcher@0.1.0",
|
||
|
"_from": "karma-script-launcher@*"
|
||
|
}
|