-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
59 lines (59 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
{
"name": "wdio-mochawesome-reporter",
"version": "4.0.0",
"description": "A WebdriverIO plugin. Generates json results in Mochawesome format.",
"author": "Jemish Gopani <[email protected]>",
"homepage": "https://github.com/jemishgopani/wdio-mochawesome-reporter.git#readme",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jemishgopani/wdio-mochawesome-reporter.git"
},
"main": "src/index.js",
"files": [
"src",
"mergeResults.js"
],
"scripts": {
"lint": "eslint ./src test/",
"test": "jest"
},
"keywords": [
"mochawesome",
"reporter",
"webdriverio",
"wdio",
"wdio-reporter"
],
"bugs": {
"url": "https://github.com/jemishgopani/wdio-mochawesome-reporter/issues"
},
"dependencies": {
"@wdio/reporter": "^5.7.8",
"strip-ansi": "^5.2.0",
"uuid": "^3.0.1"
},
"devDependencies": {
"eslint": "^4.4.0",
"eslint-config-standard": "^10.2.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"jest": "^24.8.0",
"jest-matchers": "^20.0.3"
},
"contributors": [
"Jemish Gopani",
"Jim Davis"
],
"peerDependencies": {
"@wdio/cli": "^5.8.4",
"mochawesome-report-generator": "^3.1.5"
},
"jest": {
"testPathIgnorePatterns": [
"./src"
]
}
}