forked from LironEr/cypress-mochawesome-reporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.07 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
{
"name": "@caplin/cypress-mochawesome-reporter",
"version": "3.2.4",
"description": "Zero config Mochawesome reporter for Cypress with screenshots",
"engines": {
"node": ">=14"
},
"author": "Liron Er",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/caplin/cypress-mochawesome-reporter"
},
"main": "lib/reporter.js",
"scripts": {
"lerna": "lerna",
"install-examples": "lerna exec --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"
],
"dependencies": {
"fs-extra": "^10.0.1",
"mochawesome": "^7.1.3",
"mochawesome-merge": "^4.2.1",
"mochawesome-report-generator": "^6.2.0"
},
"devDependencies": {
"cypress": "^10.0.2",
"lerna": "^5.6.1"
},
"peerDependencies": {
"cypress": ">=6.2.0"
},
"files": [
"lib",
"register.js",
"plugin.js"
]
}