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.
58 lines
2.2 KiB
58 lines
2.2 KiB
11 years ago
|
{
|
||
|
"name": "karma-junit-reporter",
|
||
|
"version": "0.2.1",
|
||
|
"description": "A Karma plugin. Report results in junit xml format.",
|
||
|
"main": "index.js",
|
||
|
"scripts": {
|
||
|
"test": "echo \"Error: no test specified\" && exit 1"
|
||
|
},
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "git://github.com/karma-runner/karma-junit-reporter.git"
|
||
|
},
|
||
|
"keywords": [
|
||
|
"karma-plugin",
|
||
|
"karma-reporter",
|
||
|
"junit"
|
||
|
],
|
||
|
"author": {
|
||
|
"name": "Vojta Jina",
|
||
|
"email": "vojta.jina@gmail.com"
|
||
|
},
|
||
|
"dependencies": {
|
||
|
"xmlbuilder": "0.4.2"
|
||
|
},
|
||
|
"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": "Trey Hyde",
|
||
|
"email": "thyde@centraldesktop.com"
|
||
|
}
|
||
|
],
|
||
|
"readme": "# karma-junit-reporter\n\n> Reporter for the JUnit XML format.\n\n## Installation\n\nThe easiest way is to keep `karma-junit-reporter` as a devDependency in your `package.json`.\n```json\n{\n \"devDependencies\": {\n \"karma\": \"~0.10\",\n \"karma-junit-reporter\": \"~0.1\"\n }\n}\n```\n\nYou can simple do it by:\n```bash\nnpm install karma-junit-reporter --save-dev\n```\n\n## Configuration\n```js\n// karma.conf.js\nmodule.exports = function(config) {\n config.set({\n reporters: ['progress', 'junit'],\n\n // the default configuration\n junitReporter: {\n outputFile: 'test-results.xml',\n suite: ''\n }\n });\n};\n```\n\nYou can pass list of reporters as a CLI argument too:\n```bash\nkarma start --reporters junit,dots\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-junit-reporter/issues"
|
||
|
},
|
||
|
"homepage": "https://github.com/karma-runner/karma-junit-reporter",
|
||
|
"_id": "karma-junit-reporter@0.2.1",
|
||
|
"dist": {
|
||
|
"shasum": "e7abb70b82d2d04fbc5fb9d3ba86a1963828b598"
|
||
|
},
|
||
|
"_from": "karma-junit-reporter@",
|
||
|
"_resolved": "https://registry.npmjs.org/karma-junit-reporter/-/karma-junit-reporter-0.2.1.tgz"
|
||
|
}
|