-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.64 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
{
"name": "html-trend-report-action",
"version": "1.2.4",
"description": "Publish html trend reports per branch",
"main": "index.js",
"type": "module",
"scripts": {
"start": "http-server ./reports --port 3000",
"generate_reports": "node prebuild.js",
"build": "npm run generate_reports && ncc build index.ts --target es2022 --license licenses.txt",
"check:compile": "npm run generate_reports && tsc",
"check:lint": "eslint --ext .ts --ignore-path .gitignore .",
"checks": "run-s check:*",
"postinstall": "npm run generate_reports",
"e2e": "playwright test",
"lighthouse": "playwright test -c playwright.lighthouse.config.ts",
"prepare": "husky install"
},
"keywords": [
"github",
"action",
"publish",
"deploy",
"pages",
"html",
"csv",
"plot",
"history",
"trend",
"report"
],
"author": "mgrybyk",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@actions/io": "^1.1.3",
"convert-csv-to-json": "^2.48.0"
},
"devDependencies": {
"@playwright/test": "^1.45.3",
"@types/node": "^20.14.11",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"@vercel/ncc": "^0.38.1",
"allure-playwright": "^2.15.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"http-server": "^14.1.1",
"husky": "^9.1.1",
"lighthouse": "^12.1.0",
"lighthouse-reporting": "^1.6.7",
"npm-run-all": "^4.1.5",
"playwright-lighthouse": "^4.0.0",
"prettier": "^3.3.3",
"typescript": "^5.5.4"
}
}