{
    "name": "node-version-audit",
    "version": "1.20250405.1",
    "description": "Audit your Node version for known CVEs and patches ",
    "main": "index.js",
    "scripts": {
        "test": "jest --coverage",
        "test:unit": "jest --coverage --selectProjects unit",
        "test:functional": "jest --coverage --selectProjects functional",
        "format": "prettier --write .",
        "format:check": "prettier --check .",
        "cspell": "cspell '**'"
    },
    "repository": {
        "type": "git",
        "url": "git+https://github.com/lightswitch05/node-version-audit.git"
    },
    "engines": {
        "node": ">=18.0.0"
    },
    "bin": {
        "node-version-audit": "./bin/node-version-audit"
    },
    "keywords": [
        "security",
        "audit",
        "cve",
        "node",
        "security-scanner",
        "cves",
        "security-audit"
    ],
    "author": "Daniel White",
    "license": "Apache-2.0",
    "bugs": {
        "url": "https://github.com/lightswitch05/node-version-audit/issues"
    },
    "homepage": "https://github.com/lightswitch05/node-version-audit#readme",
    "devDependencies": {
        "@casualbot/jest-sonar-reporter": "^2.4.0",
        "cspell": "^8.17.5",
        "jest": "^29.7.0",
        "prettier": "^3.5.3"
    },
    "jest": {
        "reporters": [
            "default",
            "@casualbot/jest-sonar-reporter",
            "github-actions"
        ],
        "projects": [
            {
                "displayName": "unit",
                "roots": [
                    "<rootDir>/tests/unit"
                ]
            },
            {
                "displayName": "functional",
                "roots": [
                    "<rootDir>/tests/functional"
                ]
            }
        ]
    },
    "@casualbot/jest-sonar-reporter": {
        "outputDirectory": "coverage",
        "outputName": "jest-report.xml"
    }
}
