forked from jemishgopani/wdio-json-reporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.39 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
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "wdio-json-reporter",
"version": "2.0.0",
"description": "A WebdriverIO plugin. Report results in json format compatible with xray import.",
"main": "./src/index.js",
"files": [
"src",
"mergeResults.js"
],
"scripts": {
"test": "jest",
"lint": "eslint ./src test/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PerionNet/wdio-xray-json-reporter.git"
},
"keywords": [
"json-xray",
"reporter",
"webdriverio",
"wdio",
"wdio-plugin",
"wdio-reporter"
],
"author": "Jim Davis <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/PerionNet/wdio-xray-json-reporter/issues"
},
"homepage": "https://github.com/PerionNet/wdio-xray-json-reporter#readme",
"dependencies": {
"@wdio/reporter": "^6.0.14",
"jest-matchers": "^20.0.3"
},
"devDependencies": {
"eslint": "~4.18.2",
"eslint-config-standard": "~10.2.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "~5.1.0",
"eslint-plugin-promise": "~3.5.0",
"eslint-plugin-standard": "~3.0.1",
"jest": "^24.3.0"
},
"resolutions": {
"braces": "~2.3.0",
"set-value": "~2.0.1"
},
"contributors": [
"Jim Davis",
"Taia Dimitrova"
],
"peerDependencies": {
"@wdio/cli": "^6.0.15"
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/node_modules/"
]
}
}