-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.22 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
{
"name": "docklean",
"version": "0.1.4",
"description": "Safely find and clean unused Docker resources",
"keywords": [
"docker",
"docker-cleanup",
"docker-prune",
"containers",
"devops",
"cli",
"cleanup",
"system-maintenance"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/tejaswankalluri/docklean.git"
},
"bugs": {
"url": "https://github.com/tejaswankalluri/docklean/issues"
},
"homepage": "https://github.com/tejaswankalluri/docklean#readme",
"author": "Tejaswan Kalluri",
"main": "dist/index.js",
"bin": {
"docklean": "bin/docklean.js"
},
"scripts": {
"build": "tsc",
"dev": "ts-node src/index.ts",
"clean": "rimraf dist",
"prepare": "npm run build",
"test": "vitest run",
"test:watch": "vitest"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@clack/prompts": "^0.7.0",
"chalk": "^4.1.2",
"cli-table3": "^0.6.4",
"commander": "^11.1.0",
"ms": "^2.1.3",
"ora": "^5.4.1"
},
"devDependencies": {
"@types/ms": "^0.7.34",
"@types/node": "^20.11.25",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
}
}