-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.56 KB
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
60
61
62
63
64
65
66
{
"name": "@agrodt/gitlab-cicq",
"version": "1.1.0",
"description": "Run ESLint and TypeScript in GitLab CI pipelines and generate a single code quality report.",
"keywords": [
"gitlab",
"eslint",
"typescript",
"code-quality",
"ci",
"codeclimate"
],
"author": "Petr Tsymbarovich <petr@tsymbarovich.ru>",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=22"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AgroDT/gitlab-cicq.git"
},
"bugs": {
"url": "https://github.com/AgroDT/gitlab-cicq/issues"
},
"homepage": "https://github.com/AgroDT/gitlab-cicq",
"scripts": {
"build": "tsc",
"check": "stc --noEmit",
"lint": "eslint",
"prepare": "tsc"
},
"files": [
"dist"
],
"bin": {
"gitlab-cicq": "./dist/cli.js"
},
"dependencies": {
"commander": "^14.0.2"
},
"devDependencies": {
"@eslint/js": "^9.39.0",
"@stylistic/eslint-plugin": "^5.5.0",
"@types/node": "^24.9.2",
"codeclimate-types": "^0.3.1",
"eslint": "^9.39.0",
"eslint-plugin-import": "^2.32.0",
"globals": "^16.5.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.2"
},
"peerDependencies": {
"eslint": "^9.38.0",
"typescript": "^5.9.3"
},
"peerDependenciesMeta": {
"eslint": {
"optional": true
},
"typescript": {
"optional": true
}
},
"packageManager": "pnpm@10.20.0+sha512.cf9998222162dd85864d0a8102e7892e7ba4ceadebbf5a31f9c2fce48dfce317a9c53b9f6464d1ef9042cba2e02ae02a9f7c143a2b438cd93c91840f0192b9dd"
}