# Package.json Security Triage Workflow

**Use case:** 

Audit a short package.json dependency list, suppress low severity noise, and export vulnerability details for remediation planning.

## Input

```json
{
  "packages": [
    "lodash@4.17.20",
    "axios@0.21.1",
    "minimist@1.2.5",
    "node-fetch@2.6.6",
    "tar@4.4.13"
  ],
  "includeLow": false,
  "includeDetails": true,
  "maxVulnsPerPackage": 0
}
```

## Output

```json
{
  "packageName": {
    "label": "Package",
    "format": "text"
  },
  "version": {
    "label": "Version",
    "format": "text"
  },
  "vulnerabilityCount": {
    "label": "Total Vulns",
    "format": "number"
  },
  "highestSeverity": {
    "label": "Highest Severity",
    "format": "text"
  },
  "criticalCount": {
    "label": "Critical",
    "format": "number"
  },
  "highCount": {
    "label": "High",
    "format": "number"
  },
  "mediumCount": {
    "label": "Medium",
    "format": "number"
  },
  "lowCount": {
    "label": "Low",
    "format": "number"
  },
  "hasVulnerabilities": {
    "label": "Vulnerable?",
    "format": "boolean"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [NPM Vulnerability Checker](https://apify.com/automation-lab/npm-vulnerability-checker) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/npm-vulnerability-checker) to learn more, explore other use cases, and run it yourself.