forked from webdriverio-community/wdio-html-reporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2 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
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "wdio-html-nice-reporter",
"version": "7.8.4",
"description": "WebdriverIO report plugin. Create an HTML formatted report. compatible with webdriverio version 7",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"symlink": "npm link",
"use:symlink": "npm link wdio-html-nice-reporter",
"clean": "rimraf ./lib ./reports ./logs",
"clean:build": "rimraf ./lib",
"clean:reports": "rimraf ./reports",
"clean:logs": "rimraf ./logs",
"test": "mocha ./test/**/*.ts",
"test:invalid": "mocha ./test/invalid.test.spec.ts",
"test:reporter": "mocha ./test/reporter.spec.ts"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/%40rpii/wdio-html-reporter.git"
},
"directories": {
"lib": "lib",
"test": "test"
},
"keywords": [
"html",
"reporter",
"webdriverio",
"wdio",
"wdio-plugin",
"wdio-reporter",
"wdio-html-reporter"
],
"author": "Rich Peters <[email protected]>",
"license": "MIT",
"bugs": {
"url": "http://github.com/rpii/wdio-html-reporter/issues"
},
"homepage": "http://github.com/rpii/wdio-html-reporter#readme",
"dependencies": {
"@log4js-node/log4js-api": "^1.0.2",
"copyfiles": "^2.3.0",
"fs-extra": "^9.0.0",
"nunjucks": "^3.2.3",
"image-to-base64": "^2.2.0",
"dayjs": "^1.10.5",
"open": "^8.2.0",
"typescript-string-operations": "^1.4.1"
},
"devDependencies": {
"@types/node": "^14.14.31",
"@types/chai": "^4.2.18",
"@types/mocha": "^8.2.2",
"@types/nunjucks": "^3.1.5",
"@wdio/types": "^7.8.0",
"@rpii/wdio-report-events": "^0.1.4",
"@wdio/reporter": "^7.9.0",
"@wdio/cli": "^7.9.1",
"ts-node": "^10.0.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.3.2",
"concat": "^1.0.3",
"chai": "^4.3.4",
"log4js": "^6.3.0",
"mocha": "^8.4.0",
"rimraf": "^3.0.2"
},
"contributors": [
"Rich Peters <[email protected]>"
]
}