-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.37 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
60
{
"name": "@cicube/ci-cleaner",
"version": "1.0.1",
"description": "A powerful CI/CD cleanup tool that automatically removes temporary files, logs, and artifacts with intelligent pattern matching",
"main": "src/cli.js",
"type": "module",
"bin": {
"ci-cleaner": "src/cli.js"
},
"scripts": {
"test": "jest",
"lint": "eslint src/",
"prepublishOnly": "npm run lint"
},
"files": [
"src/",
"README.md",
"LICENSE",
"CONTRIBUTING.md"
],
"keywords": [
"ci-cd",
"cleaner",
"devops",
"automation",
"github-actions",
"gitlab-ci",
"circleci",
"cleanup",
"artifacts",
"ci",
"cd"
],
"author": "CICube (https://cicube.io)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/CI-Cube/ci-cleaner.git"
},
"bugs": {
"url": "https://github.com/CI-Cube/ci-cleaner/issues"
},
"homepage": "https://cicube.io",
"dependencies": {
"chalk": "^5.3.0",
"globby": "^14.0.0",
"yargs": "^17.7.2",
"yaml": "^2.3.4"
},
"devDependencies": {
"jest": "^29.7.0",
"eslint": "^8.56.0"
},
"engines": {
"node": ">=16.0.0"
},
"publishConfig": {
"access": "public"
}
}