forked from kevinvalk/cobertura-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.03 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
{
"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.6.0",
"@actions/github": "^5.0.0",
"glob-promise": "^4.2.2",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@vercel/ncc": "^0.31.1",
"eslint": "^7.19.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.3.1",
"nock": "^13.1.4",
"prettier": "^2.4.1"
}
}