-
Notifications
You must be signed in to change notification settings - Fork 64
/
package.json
60 lines (60 loc) · 1.89 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
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "jacoco-report",
"version": "1.7.2",
"description": "Github action that publishes the JaCoCo report as a comment in the Pull Request",
"main": "lib/src/index.js",
"scripts": {
"test": "jest --coverage",
"build": "tsc && ncc build --source-map --license licenses.txt",
"lint:eslint": "eslint '**/*.{js,ts}' --max-warnings=0",
"lint:prettier": "prettier --check '**/*.{js,md,json,yml,mjs}'",
"lint": "npm run lint:prettier && npm run lint:eslint",
"lint:fix": "npm run lint:prettier -- --write && npm run lint:eslint -- --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Madrapps/jacoco-report.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Madrapps/jacoco-report/issues"
},
"homepage": "https://github.com/Madrapps/jacoco-report#readme",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@actions/glob": "^0.5.0",
"@octokit/webhooks-definitions": "^3.67.3",
"@types/jest": "^29.5.13",
"@types/xml2js": "^0.4.14",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"octokit": "^4.0.2",
"typescript-eslint": "^8.8.0",
"xml2js": "^0.6.2",
"xml2json": "^0.12.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.12.0",
"@tsconfig/node20": "20.1.4",
"@types/node": "^22.7.4",
"@typescript-eslint/parser": "^8.5.0",
"@vercel/ncc": "^0.38.2",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-github": "^5.0.2",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-n": "^17.10.3",
"eslint-plugin-promise": "^7.1.0",
"globals": "^15.9.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"typescript": "^5.6.2",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4"
}
}