forked from mgrybyk-org/allure-report-branch-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.34 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
{
"name": "allure-report-branch-action",
"version": "1.1.1",
"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 es2021 --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"
},
"keywords": [
"github",
"action",
"generate",
"allure",
"history",
"branch"
],
"author": "mgrybyk",
"license": "ISC",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@actions/io": "^1.1.3"
},
"devDependencies": {
"@playwright/test": "^1.37.1",
"@types/node": "^16.18.39",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"@vercel/ncc": "^0.36.1",
"allure-playwright": "^2.5.0",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"http-server": "^14.1.1",
"husky": "^8.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.2",
"typescript": "^5.1.6"
}
}