-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.46 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
{
"name": "allure-report-branch-js-action",
"version": "1.4.5",
"description": "Allure Report with history 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",
"prepare": "husky install"
},
"keywords": [
"github",
"action",
"generate",
"allure",
"history",
"branch"
],
"author": "mgrybyk",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@actions/io": "^1.1.3",
"@xhmikosr/decompress": "^10.0.1",
"@xhmikosr/decompress-targz": "^8.0.1"
},
"devDependencies": {
"@playwright/test": "^1.45.3",
"@types/node": "^20.14.13",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.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.4",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"typescript": "^5.5.4"
}
}