forked from webdriverio-community/wdio-video-reporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.18 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
{
"name": "wdio-video-reporter",
"version": "6.1.1",
"description": "Makes videos of failed tests and has optional allure integration",
"author": "Johan Hernefeldt",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/webdriverio-community/wdio-video-reporter.git"
},
"bugs": {
"url": "https://github.com/webdriverio-community/wdio-video-reporter/issues"
},
"homepage": "https://github.com/webdriverio-community/wdio-video-reporter#readme",
"exports": "./dist/wdio-video-reporter.mjs",
"types": "dist/src/index.d.ts",
"type": "module",
"scripts": {
"build": "rollup -c rollup.config.ts --configPlugin @rollup/plugin-typescript",
"ci": "npm run build",
"clean": "rimraf _results_ allure-report coverage dist tests/_results_ demo/_results_",
"demo:mocha": "npx wdio run demo/wdio.conf.ts",
"demo:cucumber": "npx wdio run demo/wdio.cucumber.conf.ts",
"release": "release-it --github.release",
"release:ci": "npm run release -- --ci --npm.skipChecks --no-git.requireCleanWorkingDir",
"test": "run-s test:*",
"test:lint": "eslint .",
"test:unit": "LC_ALL=en_US:en npx vitest --coverage --run",
"watch": "npm run build -- -w"
},
"dependencies": {
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"@wdio/allure-reporter": "^9.1.3",
"@wdio/globals": "^9.2.6",
"@wdio/logger": "^9.1.3",
"@wdio/reporter": "^9.1.3",
"@wdio/types": "^9.1.3",
"glob": "^11.0.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-typescript": "^12.1.0",
"@rollup/pluginutils": "^5.1.3",
"@types/mocha": "^10.0.9",
"@vitest/coverage-v8": "^2.1.2",
"@wdio/cli": "^9.2.6",
"@wdio/eslint": "^0.0.5",
"@wdio/cucumber-framework": "^9.2.5",
"@wdio/jasmine-framework": "^9.2.6",
"@wdio/local-runner": "^9.2.6",
"@wdio/spec-reporter": "^9.1.3",
"allure-commandline": "^2.32.0",
"eslint": "^9.15.0",
"npm-run-all2": "^7.0.1",
"release-it": "^18.0.0",
"rollup": "^4.24.3",
"rollup-plugin-delete": "^2.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"vitest": "^2.1.2",
"wdio-cucumberjs-json-reporter": "^6.0.1"
}
}