scanrail 0.1.3 → 0.1.4
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/README.md +2 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -25,10 +25,10 @@ npx scanrail doctor
|
|
|
25
25
|
|
|
26
26
|
```bash
|
|
27
27
|
scanrail init --non-interactive --project-name demo --target https://example.com
|
|
28
|
-
scanrail run --
|
|
28
|
+
scanrail run --profile quick
|
|
29
29
|
```
|
|
30
30
|
|
|
31
|
-
The
|
|
31
|
+
The current MVP includes the CLI scaffold, config generation, workspace setup, JSON/HTML reporting, a native security headers scanner, and a Docker-backed Gitleaks secrets adapter. Use `scanrail run --only headers` without Docker, or `scanrail run --only gitleaks` for the secrets scan only. Trivy and Semgrep adapters are planned.
|
|
32
32
|
|
|
33
33
|
## MCP
|
|
34
34
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "scanrail",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "Developer-first security scan orchestrator",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"README.md"
|
|
21
21
|
],
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@scanrail/cli": "0.1.
|
|
23
|
+
"@scanrail/cli": "0.1.4"
|
|
24
24
|
},
|
|
25
25
|
"publishConfig": {
|
|
26
26
|
"access": "public"
|