UNPKG

eslint-insight

Version:

A developer tool to display ESLint results in a clear and user-friendly format, with real-time feedback in the terminal or browser.

60 lines (59 loc) 1.46 kB
{ "name": "eslint-insight", "version": "1.0.0", "description": "A developer tool to display ESLint results in a clear and user-friendly format, with real-time feedback in the terminal or browser.", "type": "module", "author": "Md Sulaiman<dev.sulaiman@icloud.com>", "license": "MIT", "main": "./lib/eslint-insight.js", "types": "./types/eslint-insight.d.ts", "exports": { "types": "./types/eslint-insight.d.ts", "default": "./lib/eslint-insight.js" }, "files": [ "lib", "types" ], "scripts": { "prepack": "tsc --build", "test": "c8 node --test --test-reporter junit --test-reporter-destination=junit.xml --test-reporter spec --test-reporter-destination stdout", "lint": "eslint . -f json -o gl-codequality.json" }, "keywords": [ "eslint", "lint", "linter", "eslint-output", "eslint-results", "eslint-dashboard", "linting", "code-quality", "developer-tools", "real-time", "cli", "formatter", "eslint-plugin", "eslint-insight", "terminal", "web-dashboard", "static-analysis", "code-review" ], "dependencies": { "yaml": "^2.0.0" }, "peerDependencies": { "eslint": ">=9" }, "devDependencies": { "@remcohaszing/eslint": "^11.0.0", "@types/node": "^22.0.0", "c8": "^10.0.0", "codeclimate-types": "^0.3.0", "prettier": "^3.0.0", "remark-cli": "^12.0.0", "remark-preset-remcohaszing": "^3.0.0", "typescript": "^5.0.0" } }