-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
59 lines (59 loc) · 1.8 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "vitest-sonar-reporter",
"version": "2.0.0",
"description": "SonarQube reporter for Vitest",
"author": "Ari Perkkiö <[email protected]>",
"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"
},
"packageManager": "[email protected]",
"homepage": "https://github.com/AriPerkkio/vitest-sonar-reporter",
"bugs": "https://github.com/AriPerkkio/vitest-sonar-reporter",
"repository": "https://github.com/AriPerkkio/vitest-sonar-reporter",
"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"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@types/eslint": "^9.6.1",
"@types/node": "^22.10.2",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-unicorn": "^56.0.1",
"prettier": "^3.4.2",
"publint": "^0.2.12",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2",
"vite": "^6.0.6",
"vitest": "3.0.0-beta.3"
},
"peerDependencies": {
"vitest": ">=1"
},
"keywords": [
"vitest",
"vitest-reporter",
"sonar",
"sonarqube"
],
"prettier": {
"singleQuote": true,
"tabWidth": 4
}
}