-
Notifications
You must be signed in to change notification settings - Fork 69
/
package.json
45 lines (45 loc) · 1.01 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
{
"name": "cobertura-action",
"private": true,
"version": "1.0.0",
"description": "GitHub Action to parse Cobertura coverage reports",
"main": "index.js",
"scripts": {
"start": "node ./index.js",
"test": "jest --collectCoverage",
"lint": "eslint src/",
"format": "eslint --fix src/",
"package": "ncc build index.js",
"package:watch": "ncc build index.js --watch"
},
"jest": {
"coverageReporters": [
"text",
"cobertura"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/5monkeys/cobertura-action.git"
},
"keywords": [
"github",
"actions",
"coverage"
],
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"glob-promise": "^6.0.5",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@vercel/ncc": "^0.38.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"prettier": "^3.2.5"
}
}