-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.25 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
48
49
{
"name": "@valentin.condurache/wdio-junit-reporter",
"version": "8.12.3",
"description": "A WebdriverIO reporter that creates Jenkins compatible XML based JUnit reports",
"author": "Christian Bromann <mail@bromann.dev>",
"homepage": "https://github.com/webdriverio/webdriverio/tree/main/packages/wdio-junit-reporter",
"license": "MIT",
"engines": {
"node": "^16.13 || >=18"
},
"repository": {
"type": "git",
"url": "git://github.com/webdriverio/webdriverio.git",
"directory": "packages/wdio-junit-reporter"
},
"keywords": [
"webdriver",
"wdio",
"wdio-reporter",
"junit",
"reporter"
],
"bugs": {
"url": "https://github.com/webdriverio/webdriverio/issues"
},
"type": "module",
"types": "./build/index.d.ts",
"exports": {
".": "./build/index.js",
"./package.json": "./package.json"
},
"typeScriptVersion": "3.8.3",
"dependencies": {
"@wdio/reporter": "8.12.2",
"@wdio/types": "8.10.4",
"json-stringify-safe": "^5.0.1",
"junit-report-builder": "^3.0.0"
},
"devDependencies": {
"@types/json-stringify-safe": "^5.0.0"
},
"publishConfig": {
"access": "public"
},
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
}
}