-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.11 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
{
"name": "gitlab-ci-doctor",
"version": "0.2.0",
"description": "Audit GitLab CI pipelines for waste, cost, and security gaps. Fast, opinionated, CI-friendly. Sister project to ci-doctor.",
"keywords": [
"gitlab",
"gitlab-ci",
"ci",
"cost",
"audit",
"lint",
"pipeline",
"yaml",
"security",
"devops",
"cli"
],
"bin": {
"gitlab-ci-doctor": "bin/gitlab-ci-doctor.js"
},
"main": "src/index.js",
"type": "commonjs",
"files": [
"bin",
"src",
"examples",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"scripts": {
"test": "node --test test/*.test.js"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"yaml": "^2.5.0"
},
"license": "MIT",
"author": "depmedic <depmedic.dev@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/depmedicdev-byte/gitlab-ci-doctor.git"
},
"homepage": "https://github.com/depmedicdev-byte/gitlab-ci-doctor#readme",
"bugs": {
"url": "https://github.com/depmedicdev-byte/gitlab-ci-doctor/issues"
},
"devDependencies": {
"esbuild": "^0.28.0"
}
}