-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.05 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.05 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
{
"name": "setup-allurectl",
"version": "1.0.0",
"private": true,
"description": "setup allurectl action",
"main": "dist/index.js",
"scripts": {
"build": "rm -rf dist && mkdir -p dist && esbuild src/main.ts --bundle --sourcemap --platform=node --target=node24 --format=cjs --outfile=dist/index.js",
"format": "oxfmt --check",
"format:fix": "oxfmt",
"lint": "oxlint src",
"lint:fix": "oxlint src --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/allure-framework/setup-allurectl.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "",
"license": "MIT",
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/exec": "^3.0.0",
"@actions/github": "^9.0.0",
"@actions/tool-cache": "^4.0.0"
},
"devDependencies": {
"@octokit/core": "^7.0.6",
"@types/node": "^24.0.0",
"esbuild": "^0.27.4",
"jest": "^29.7.0",
"lefthook": "^2.1.4",
"oxfmt": "^0.41.0",
"oxlint": "^1.56.0",
"ts-jest": "^29.1.2",
"typescript": "^5.9.3"
}
}