-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 2.05 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 2.05 KB
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
{
"name": "protractor-trx-reporter",
"version": "0.1.2",
"description": "Visual Studio TRX format reporter for Protractor",
"main": "./src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git://github.com/hatchteam/protractor-trx-reporter.git"
},
"keywords": [
"protractor-plugin",
"protractor-reporter",
"trx"
],
"author": {
"name": "Stefan Barthel",
"email": "bas@zuehlke.com"
},
"dependencies": {
"xmlbuilder": "0.4.2"
},
"devDependencies": {
"protractor": "~0.16",
"protractor-trx-reporter": "~0.1"
},
"license": "MIT",
"contributors": [
{
"name": "Michael Lehman",
"email": "leh@zuehlke.com"
}
],
"readme": "# protractor-trx-reporter Reporter for the VisualStudio TRX format.\n\n## Disclaimer\n\nThe trx reporter is provided by [Zuehlke Engineering AG] \"as is\" and the author disclaims all warranties with regard to this software.\n\n## Installation\n\nThe easiest way is to keep `protractor-trx-reporter` as a devDependency in your `package.json`.\n```json\n{\n \"devDependencies\": {\n \"protractor\": \"~0.16\",\n \"protractor-trx-reporter\": \"~0.1\"\n }\n}\n ```\n\nYou can simple do it by:\n```bash\nnpm install protractor-trx-reporter --save-dev\n```\n\n## Configuration\n```js\n// protractor.conf.js\nmodule.exports = function(config) {\n// creates the trx test report output xml\n onPrepare: function () {\n console.log('Adding TRX reporter');\n require('protractor-trx-reporter');\n jasmine.getEnv().addReporter(new jasmine.TrxReporter('ProtractorTestResults.trx'));\n },\n};\n```\n\n----\n\nFor more information on Protractor see the [homepage].\n\n\n[Zuehlke Engineering AG]: http://www.zuehlke.com/\n[homepage]: https://github.com/angular/protractor\n",
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/hatchteam/protractor-trx-reporter/issues"
},
"_id": "protractor-trx-reporter@0.1.1",
"_from": "protractor-trx-reporter@~0.1.1"
}