-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
46 lines (46 loc) · 1.27 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": "github-actions-ctrf",
"version": "0.0.50",
"description": "View test results directly within your GitHub workflow summary and Pull Requests",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint . --ext .ts --fix",
"lint-check": "eslint . --ext .ts",
"format": "prettier --write .",
"format-check": "prettier --check ."
},
"bin": {
"github-actions-ctrf": "./dist/index.js"
},
"files": [
"dist/",
"README.md"
],
"keywords": [],
"author": "Matthew Thomas",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.12.7",
"@types/yargs": "^17.0.32",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard-with-typescript": "^40.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.3.1",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-promise": "^6.1.1",
"prettier": "^3.1.0",
"typescript": "^5.4.5"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@types/adm-zip": "^0.5.5",
"adm-zip": "^0.5.16",
"ansi-to-html": "^0.7.2",
"handlebars": "^4.7.8",
"yargs": "^17.7.2"
}
}