-
-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
57 lines (57 loc) · 1.35 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
{
"name": "cypress-mochawesome-reporter",
"version": "3.8.3",
"description": "Zero config Mochawesome reporter for Cypress with screenshots",
"engines": {
"node": ">=14"
},
"author": "Liron Er",
"license": "MIT",
"funding": "https://github.com/sponsors/LironEr",
"repository": {
"type": "git",
"url": "https://github.com/LironEr/cypress-mochawesome-reporter"
},
"main": "lib/reporter.js",
"types": "index.d.ts",
"bin": {
"generate-mochawesome-report": "cli.js"
},
"scripts": {
"lerna": "lerna",
"install-examples": "lerna exec --concurrency 1 --scope @example/* \"npm i\"",
"test:prepare": "lerna run --stream --no-bail --concurrency 1 --scope @example/* test",
"test": "cypress run",
"cypress:open": "cypress open"
},
"keywords": [
"cypress",
"mochawesome",
"mocha",
"reporter",
"screenshot",
"video"
],
"dependencies": {
"commander": "^10.0.1",
"fs-extra": "^10.0.1",
"mochawesome": "^7.1.3",
"mochawesome-merge": "^4.2.1",
"mochawesome-report-generator": "^6.2.0"
},
"devDependencies": {
"@badeball/cypress-cucumber-preprocessor": "^19.2.0",
"cypress": "^13.1.0",
"lerna": "^7.1.4"
},
"peerDependencies": {
"cypress": ">=6.2.0"
},
"files": [
"lib",
"register.js",
"plugin.js",
"index.d.ts",
"cucumberSupport.js"
]
}