-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
89 lines (89 loc) · 3.15 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "monocart-reporter",
"version": "2.9.10",
"description": "A playwright test reporter. Shows suites/cases/steps with tree style, markdown annotations, custom columns/formatters/data collection visitors, console logs, style tags, send email.",
"main": "lib/index.js",
"bin": {
"monocart": "lib/cli.js"
},
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.mjs",
"require": "./lib/index.js",
"default": "./lib/index.js"
},
"./cli": "./lib/cli.js",
"./package.json": "./package.json"
},
"types": "./lib/index.d.ts",
"scripts": {
"link": "node ./scripts/link.js",
"test": "npm run link && npx playwright test -c tests",
"test-example": "npm run link && npx playwright test tests/example -c tests",
"test-data": "npm run link && npx playwright test tests/data -c tests",
"test-page": "npm run link && npx playwright test tests/home-page -c tests",
"test-coverage": "npm run link && npx playwright test tests/report-coverage -c tests",
"test-network": "npm run link && npx playwright test tests/report-network -c tests",
"test-state": "npm run link && npx playwright test tests/state -c tests",
"build": "sf lint && sf b -p",
"dev": "sf d app -w .temp/monocart/index.json",
"patch": "npm run build && sf publish patch -r",
"mock-download": "node ./scripts/mock-download.js",
"mock-serve": "node ./scripts/mock-serve.js"
},
"workspaces": [],
"files": [
"lib"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cenfun/monocart-reporter.git"
},
"dependencies": {
"console-grid": "^2.2.2",
"eight-colors": "^1.3.1",
"koa": "^2.15.3",
"koa-static-resolver": "^1.0.6",
"lz-utils": "^2.1.0",
"monocart-coverage-reports": "^2.11.2",
"monocart-locator": "^1.0.2",
"nodemailer": "^6.9.16"
},
"devDependencies": {
"@babel/code-frame": "^7.26.2",
"@playwright/test": "^1.48.2",
"ansi-to-html": "^0.7.2",
"async-tick": "^1.0.0",
"autolinker": "^4.0.0",
"axios": "^1.7.7",
"commander": "^12.1.0",
"dotenv": "^16.4.5",
"eslint": "^9.14.0",
"eslint-config-plus": "^2.0.2",
"eslint-plugin-html": "^8.1.2",
"eslint-plugin-vue": "^9.30.0",
"file-saver": "^2.0.5",
"find-up": "^7.0.0",
"github-markdown-css": "^5.7.0",
"glob": "^11.0.0",
"marked": "^14.1.3",
"mermaid": "^11.4.0",
"mitt": "^3.0.1",
"monocart-code-viewer": "^1.1.4",
"monocart-formatter": "^3.0.0",
"nice-ticks": "^1.0.2",
"node-stream-zip": "^1.15.0",
"open": "8.4.2",
"sanitize-filename": "^1.6.3",
"stack-utils": "^2.0.6",
"stylelint": "^16.10.0",
"stylelint-config-plus": "^1.1.3",
"supports-color": "^9.4.0",
"turbogrid": "^3.2.0",
"vine-ui": "^3.1.16",
"ws": "^8.18.0",
"yazl": "^3.3.0"
}
}