-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.34 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.34 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
{
"name": "publish-report-annotations",
"version": "1.19.3",
"type": "module",
"private": true,
"scripts": {
"compile": "tsc",
"package": "ncc build src/index.ts -o dist -m",
"lint": "eslint src",
"lint:fix": "eslint --fix src",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --coverage",
"intTest": "INTEGRATION_TESTS=true NODE_OPTIONS=--experimental-vm-modules jest",
"check": "npm run test && npm run lint",
"build": "npm run compile && npm run package && npm run check"
},
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/github": "^9.0.0",
"@actions/glob": "^0.6.1",
"@octokit/app": "^16.1.2",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/release-notes-generator": "^14.1.0",
"bytes": "^3.1.2",
"fast-xml-parser": "^5.3.8"
},
"devDependencies": {
"@types/bytes": "^3.1.5",
"@types/jest": "^30.0.0",
"@types/node": "^25.3.0",
"@vercel/ncc": "^0.38.4",
"eslint": "^10.0.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"jest": "^30.2.0",
"jest-junit": "^16.0.0",
"prettier": "3.8.1",
"semantic-release": "^25.0.3",
"semantic-release-major-tag": "^0.3.2",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1"
}
}