{
    "name": "eslint-plugin-n",
    "version": "17.10.2",
    "description": "Additional ESLint's rules for Node.js",
    "engines": {
        "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
    },
    "main": "lib/index.js",
    "types": "types/index.d.ts",
    "files": [
        "lib/",
        "configs/",
        "types/index.d.ts"
    ],
    "peerDependencies": {
        "eslint": ">=8.23.0"
    },
    "dependencies": {
        "@eslint-community/eslint-utils": "^4.4.0",
        "enhanced-resolve": "^5.17.0",
        "eslint-plugin-es-x": "^7.5.0",
        "get-tsconfig": "^4.7.0",
        "globals": "^15.8.0",
        "ignore": "^5.2.4",
        "minimatch": "^9.0.5",
        "semver": "^7.5.3"
    },
    "devDependencies": {
        "@eslint/js": "^9.6.0",
        "@types/eslint": "^8.56.7",
        "@types/estree": "^1.0.5",
        "@types/node": "^20.14.9",
        "@typescript-eslint/parser": "^7.15.0",
        "@typescript-eslint/typescript-estree": "^7.15.0",
        "eslint": "^9.6.0",
        "eslint-config-prettier": "^9.1.0",
        "eslint-doc-generator": "^1.6.1",
        "eslint-plugin-eslint-plugin": "^6.2.0",
        "eslint-plugin-n": "file:.",
        "fast-glob": "^3.2.12",
        "husky": "^9.0.0",
        "lint-staged": "^15.2.7",
        "markdownlint-cli": "^0.41.0",
        "mocha": "^10.6.0",
        "npm-run-all2": "^6.2.2",
        "nyc": "^17.0.0",
        "opener": "^1.5.2",
        "prettier": "^3.3.2",
        "punycode": "^2.3.0",
        "release-it": "^17.4.1",
        "rimraf": "^5.0.7",
        "ts-ignore-import": "^4.0.1",
        "type-fest": "^4.21.0",
        "typescript": "~5.4"
    },
    "scripts": {
        "build": "node scripts/update",
        "clean": "rimraf .nyc_output coverage",
        "coverage": "opener ./coverage/lcov-report/index.html",
        "format": "prettier --write \"**/*.{js,json}\"",
        "lint": "npm-run-all \"lint:*\"",
        "lint:docs": "markdownlint \"**/*.md\"",
        "lint:eslint-docs": "npm run update:eslint-docs -- --check",
        "lint:js": "eslint .",
        "new": "node scripts/new-rule",
        "postversion": "git push && git push --tags",
        "prepack": "tsc --emitDeclarationOnly && ts-ignore-import 'types/**/*.d.ts' --allow=@eslint-community/eslint-utils --allow=semver --allow=get-tsconfig",
        "prepare": "husky",
        "preversion": "npm test",
        "test": "run-p lint:* test:types test:tests",
        "test:mocha": "_mocha  --reporter progress --timeout 4000",
        "test:tests": "npm run test:mocha \"tests/lib/**/*.js\"",
        "test:types": "tsc --noEmit --emitDeclarationOnly false",
        "update:eslint-docs": "eslint-doc-generator",
        "version": "npm run -s build && eslint lib/rules --fix && git add .",
        "watch": "npm run test:_mocha -- --watch --growl"
    },
    "repository": {
        "type": "git",
        "url": "git+https://github.com/eslint-community/eslint-plugin-n.git"
    },
    "keywords": [
        "eslint",
        "eslintplugin",
        "eslint-plugin",
        "node",
        "nodejs",
        "ecmascript",
        "shebang",
        "file",
        "path",
        "import",
        "require"
    ],
    "author": "Toru Nagashima",
    "license": "MIT",
    "bugs": {
        "url": "https://github.com/eslint-community/eslint-plugin-n/issues"
    },
    "homepage": "https://github.com/eslint-community/eslint-plugin-n#readme",
    "funding": "https://opencollective.com/eslint",
    "publishConfig": {
        "access": "public",
        "registry": "https://registry.npmjs.org/"
    },
    "release-it": {
        "github": {
            "release": true
        },
        "npm": {
            "skipChecks": true
        }
    },
    "lint-staged": {
        "*.js": "eslint --cache --fix",
        "*.{json,js}": "prettier --write --ignore-path .eslintignore",
        "*.md": "markdownlint --fix"
    },
    "imports": {
        "#test-helpers": "./tests/test-helpers.js"
    }
}
