-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.89 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
55
56
57
58
59
{
"name": "eslint-formatter-gha",
"version": "1.5.2",
"description": "ESLint formatter for GitHub Actions",
"main": "dist/src/index.js",
"types": "./dist/src/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"prepack": "npm run build",
"test": "node --require=ts-node/register/transpile-only --test --test-reporter=spec --test-reporter-destination=stdout --test-reporter=node-reporter-gha --test-reporter-destination=stdout test/*.ts",
"test:coverage": "c8 node --require=ts-node/register/transpile-only --test test/*.ts",
"test:sonarqube": "c8 node --require=ts-node/register/transpile-only --test-reporter=spec --test-reporter-destination=stdout --test-reporter=node-reporter-sonarqube --test-reporter-destination=test-report.xml --test test/*.ts"
},
"keywords": [
"eslint",
"formatter",
"eslint formatter",
"eslint-formatter",
"eslintformatter",
"matcher",
"GitHub Actions",
"actions",
"github"
],
"files": [
"dist/src/*.js",
"dist/src/*.d.ts",
"dist/src/*.js.map"
],
"author": "Volodymyr Kolesnykov <[email protected]> (https://wildwolf.name/)",
"license": "MIT",
"devDependencies": {
"@myrotvorets/eslint-config-myrotvorets-ts": "^3.0.1",
"@types/eslint": "^9.6.1",
"@types/node": "^22.10.2",
"c8": "^10.1.3",
"node-reporter-gha": "^2.0.4",
"node-reporter-sonarqube": "^1.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"dependencies": {
"eslint-formatter-json": "^8.40.0",
"eslint-formatter-stylish": "^8.40.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sjinks/eslint-gha-formatter.git"
},
"bugs": {
"url": "https://github.com/sjinks/eslint-gha-formatter/issues"
},
"homepage": "https://github.com/sjinks/eslint-gha-formatter#readme",
"publishConfig": {
"provenance": true
}
}