-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.25 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
{
"name": "jest-to-sonar",
"version": "1.3.0",
"description": "Convert the Jest test case report to a Sonar generic test execution report.",
"main": "dist/index.js",
"scripts": {
"build": "tsc -p tsconfig-build.json",
"test": "jest --silent --coverage",
"test:watch": "jest --watch",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write .",
"coverage": "jest --silent --coverage",
"prepare": "husky",
"precommit": "npm run lint:fix && npm run format",
"prepush": "npm run lint "
},
"keywords": [
"jest",
"typescript",
"sonarqube",
"test",
"report"
],
"repository": "https://github.com/santoshshinde2012/jest-to-sonar.git",
"author": "Santosh Shinde <[email protected]>",
"license": "ISC",
"devDependencies": {
"@jest/test-result": "^29.7.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.11",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"typescript": "^5.4.5"
}
}