el-filtro 0.2.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.js +1 -1
- package/package.json +5 -1
package/dist/cli.js
CHANGED
|
@@ -14,7 +14,7 @@ const program = new Command();
|
|
|
14
14
|
program
|
|
15
15
|
.name('el-filtro')
|
|
16
16
|
.description('🔎 Escanea tus repos npm/pip y te dice, en lenguaje simple, qué dependencias arreglar ya')
|
|
17
|
-
.version('0.2.
|
|
17
|
+
.version('0.2.1')
|
|
18
18
|
.option('--path <ruta>', 'carpeta raíz a escanear', '.')
|
|
19
19
|
.option('--json', 'salida JSON máquina-legible, sin colores ni progreso')
|
|
20
20
|
.option('--no-write', 'no escribir el reporte a disco')
|
package/package.json
CHANGED
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "el-filtro",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "Escanea de una pasada todos tus repos npm/pip y te dice, en lenguaje simple, qué dependencias arreglar ya y cuáles pueden esperar. 100% determinístico, sin IA ni API key.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Juan Carlos Caro (JuanIA-sketch)",
|
|
7
|
+
"repository": { "type": "git", "url": "git+https://github.com/JuanIA-sketch/el-filtro.git" },
|
|
8
|
+
"homepage": "https://github.com/JuanIA-sketch/el-filtro#readme",
|
|
9
|
+
"bugs": { "url": "https://github.com/JuanIA-sketch/el-filtro/issues" },
|
|
10
|
+
"keywords": ["dependencias", "auditoria", "seguridad", "npm-audit", "pip", "vulnerabilidades", "deprecated", "cli"],
|
|
7
11
|
"type": "module",
|
|
8
12
|
"bin": { "el-filtro": "bin/el-filtro.js" },
|
|
9
13
|
"files": ["bin", "dist", "README.md", "LICENSE"],
|