UNPKG

vitest-sonar-reporter

Version:
61 lines 1.67 kB
{ "name": "vitest-sonar-reporter", "version": "2.0.4", "description": "SonarQube reporter for Vitest", "author": "Ari Perkkiö <ari.perkkio@gmail.com>", "license": "MIT", "type": "module", "exports": "./dist/index.js", "types": "./dist/index.d.ts", "files": [ "dist" ], "engines": { "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "homepage": "https://github.com/AriPerkkio/vitest-sonar-reporter", "bugs": "https://github.com/AriPerkkio/vitest-sonar-reporter", "repository": { "type": "git", "url": "git+https://github.com/AriPerkkio/vitest-sonar-reporter.git" }, "devDependencies": { "@eslint/eslintrc": "^3.3.1", "@eslint/js": "^9.32.0", "@types/eslint": "^9.6.1", "@types/node": "^24.2.0", "eslint": "^9.32.0", "eslint-config-prettier": "^10.1.8", "eslint-plugin-import": "^2.32.0", "eslint-plugin-prettier": "^5.5.3", "eslint-plugin-unicorn": "^59.0.1", "prettier": "^3.6.2", "publint": "^0.3.12", "typescript": "^5.9.2", "typescript-eslint": "^8.39.0", "vite": "^7.0.6", "vitest": "^3.2.4" }, "peerDependencies": { "vitest": ">=1" }, "keywords": [ "vitest", "vitest-reporter", "sonar", "sonarqube" ], "prettier": { "singleQuote": true, "tabWidth": 4 }, "scripts": { "changelog": "npx conventional-changelog-cli -i CHANGELOG.md -p conventionalcommits -s -r 0", "prebuild": "rm -rf ./dist", "build": "tsc --project tsconfig.prod.json", "start": "vitest --update", "lint": "eslint . --max-warnings 0 && publint", "test": "vitest", "validate": "pnpm build && pnpm lint && pnpm test run" } }