-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
59 lines (59 loc) · 1.29 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
{
"name": "wdio-json-reporter",
"version": "3.0.1",
"description": "A WebdriverIO plugin. Report results in json format.",
"main": "./src/index.js",
"files": [
"src",
"mergeResults.js"
],
"scripts": {
"test": "jest",
"lint": "eslint ./src test/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fijijavis/wdio-json-reporter.git"
},
"keywords": [
"json",
"reporter",
"webdriverio",
"wdio",
"wdio-plugin",
"wdio-reporter"
],
"author": "Jim Davis <jim.davis@kroger.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/fijijavis/wdio-json-reporter/issues"
},
"homepage": "https://github.com/fijijavis/wdio-json-reporter#readme",
"dependencies": {
"@wdio/reporter": "^7.16.3",
"jest-matcher-utils": "^27.3.1"
},
"devDependencies": {
"eslint": "~8.1.0",
"eslint-config-standard": "~16.0.3",
"eslint-plugin-import": "~2.25.2",
"eslint-plugin-node": "~11.1.0",
"eslint-plugin-promise": "~5.1.1",
"jest": "~27.3.1"
},
"resolutions": {
"braces": "~3.0.2",
"set-value": "~4.1.0"
},
"contributors": [
"Jim Davis"
],
"peerDependencies": {
"@wdio/cli": "^7.16.3"
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/node_modules/"
]
}
}