-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.64 KB
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
{
"name": "allure-action",
"version": "0.0.0",
"description": "Official Allure Report Github Action",
"keywords": [],
"license": "ISC",
"author": "",
"main": "dist/index.js",
"scripts": {
"audit": "yarn npm audit --all --recursive",
"build": "tsdown",
"clean": "rm -rf dist",
"dev": "tsc --watch",
"format": "run-s 'format:*'",
"lint": "run-s 'lint:*'",
"lint:oxlint": "oxlint './{src,test}/**/*.{js,ts}'",
"format:oxlint": "oxlint --fix './{src,test}/**/*.{js,ts}'",
"package": "yarn clean && yarn build",
"lint:oxfmt": "oxfmt --check './{src,test}/**/*.{json,js,ts,tsx}' package.json",
"format:oxfmt": "oxfmt './{src,test}/**/*.{json,js,ts,tsx}' package.json",
"test": "yarn allure run -- vitest run"
},
"resolutions": {
"axois": "^1.15.0"
},
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/github": "^9.0.0",
"@actions/glob": "^0.6.1",
"@actions/io": "^3.0.2",
"d3-shape": "^3.2.0",
"fast-glob": "^3.3.3",
"lodash.chunk": "^4.2.0"
},
"devDependencies": {
"@allurereport/core-api": "^3.12.0",
"@allurereport/plugin-api": "^3.8.2",
"@allurereport/plugin-awesome": "^3.8.2",
"@types/d3-shape": "^3",
"@types/lodash.chunk": "^4",
"@types/node": "^26.0.0",
"@vitest/runner": "^4.1.2",
"@vitest/snapshot": "^4.1.9",
"allure": "^3.8.2",
"allure-vitest": "^3.8.0",
"lefthook": "^2.1.4",
"npm-run-all2": "^8.0.4",
"oxfmt": "^0.56.0",
"oxlint": "^1.56.0",
"rollup-plugin-license": "^3.7.0",
"tsdown": "^0.21.7",
"typescript": "^6.0.2",
"vitest": "^4.1.2"
},
"packageManager": "yarn@4.13.0"
}