-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.02 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.02 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "dev-optimizer",
"version": "0.1.16",
"description": "Analyze and optimize Docker images, npm packages, and CI/CD pipelines. Find unused dependencies, security issues, and cost savings in minutes.",
"keywords": [
"devops",
"cli-tool",
"ci-optimization",
"docker-optimization",
"dependency-analyzer",
"docker",
"npm",
"optimization",
"ci-cd",
"performance",
"devtools",
"typescript",
"cli",
"analyzer",
"dockerfile",
"github-actions",
"gitlab-ci",
"dependency",
"security",
"cost-optimization",
"unused-dependencies",
"vulnerability-scanner",
"code-quality",
"developer-experience",
"build-optimization",
"cicd",
"container",
"security-audit",
"npm-audit",
"dockerfile-linter"
],
"author": "bigcheburashka",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"dev-optimizer": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:coverage": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^14.0.3",
"ora": "^9.3.0",
"yaml": "^2.3.4"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^25.5.0",
"eslint": "^10.0.3",
"jest": "^30.3.0",
"knip": "^5.86.0",
"ts-jest": "^29.1.0",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/bigcheburashka/dev-optimizer.git"
},
"bugs": {
"url": "https://github.com/bigcheburashka/dev-optimizer/issues"
},
"homepage": "https://github.com/bigcheburashka/dev-optimizer#readme"
}