forked from Madrapps/jacoco-report
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.68 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
{
"name": "jacoco-report",
"version": "1.6.1",
"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}'",
"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.0",
"@actions/github": "^5.1.1",
"@actions/glob": "^0.4.0",
"@octokit/webhooks-definitions": "^3.67.3",
"@types/jest": "^29.5.3",
"@types/xml2js": "^0.4.11",
"octokit": "^3.1.0",
"xml2js": "^0.6.2",
"xml2json": "^0.12.0"
},
"devDependencies": {
"@types/node": "^20.4.5",
"@typescript-eslint/parser": "^6.2.0",
"@vercel/ncc": "^0.36.1",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.9.0",
"eslint-plugin-github": "^4.7.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.6.2",
"prettier": "^3.0.0",
"ts-jest": "^29.1.0",
"typescript": "^5.1.6",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
}
}