-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
executable file
·63 lines (63 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
60
61
62
63
{
"name": "cypress-terminal-report",
"version": "7.1.0",
"description": "Better terminal and file output for cypress test logs.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"format": "npx prettier . --write",
"format:check": "npx prettier . --check",
"build": "tsc",
"watch": "tsc --watch",
"prepublishOnly": "npm run build"
},
"engines": {
"node": ">= 12"
},
"repository": {
"type": "git",
"url": "git+https://github.com/archfz/cypress-terminal-report.git"
},
"keywords": [
"terminal",
"cli",
"output",
"info",
"report",
"cypress",
"console",
"logs"
],
"author": "Fodor Zoltan",
"standard": {
"globals": [
"cy",
"Cypress",
"beforeEach",
"afterEach"
]
},
"license": "MIT",
"bugs": {
"url": "https://github.com/archfz/cypress-terminal-report/issues"
},
"homepage": "https://github.com/archfz/cypress-terminal-report#readme",
"dependencies": {
"chalk": "^4.0.0",
"compare-versions": "^6.1.1",
"fs-extra": "^10.1.0",
"process": "^0.11.10",
"superstruct": "0.14.2"
},
"peerDependencies": {
"cypress": ">=10.0.0"
},
"devDependencies": {
"@types/mocha": "^10.0.8",
"@types/node": "^22.5.5",
"cypress": ">=10.0.0",
"mocha": ">=3.5.0",
"prettier": "^3.3.3",
"typescript": "^5.6.2"
}
}