-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 847 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 847 Bytes
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
{
"name": "go-test-action",
"version": "0.5.0",
"description": "GitHub Action to run go tests with rich summary output and annotations.",
"main": "dist/index.js",
"scripts": {
"local": ". script/localenv && ts-node src/index.ts",
"build": "ncc build -m -o dist src/index.ts",
"test": "jest"
},
"author": "Rob Herley <robherley13@gmail.com> (https://reb.gg)",
"license": "MIT",
"dependencies": {
"@actions/core": "^2.0.0",
"@actions/exec": "^2.0.0",
"@actions/glob": "^0.5.0"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^25.0.0",
"@vercel/ncc": "^0.38.4",
"cheerio": "^1.1.2",
"jest": "^30.2.0",
"jest-util": "^30.2.0",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"overrides": {
"test-exclude": "^7.0.1"
}
}