-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 815 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 815 Bytes
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
{
"name": "code-coverage-report-generator",
"version": "5.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npm ci && esbuild ./src/reportgenerator.js --bundle --platform=node --outfile=dist/index.js && npm run format && git add dist/*",
"bundle": "esbuild ./src/reportgenerator.js --bundle --platform=node --outfile=dist/index.js",
"format": "prettier --write **/*.js",
"format-check": "prettier --check **/*.js"
},
"keywords": [
"code-coverage",
"testing",
"tdd-utilities",
"reporting",
"dotnet-core"
],
"author": "wtw",
"license": "Apache-2.0",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.0.4"
},
"devDependencies": {
"esbuild": "^0.25.0",
"install": "^0.13.0",
"prettier": "^2.3.2"
}
}