forked from CasualBot/jest-sonar-reporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.12 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@casualbot/jest-sonar-reporter",
"version": "2.3.1",
"description": "A Sonar test reporter for Jest.",
"keywords": [
"sonar",
"sonarqube",
"jest",
"reporter",
"processor",
"test",
"jest reporter",
"jest sonar reporter",
"sonarcloud",
"javascript",
"typescript"
],
"main": "lib/index.js",
"files": [ "lib", "lib/src" ],
"scripts": {
"test": "tsc --module commonjs && jest",
"test:watch": "jest --watch",
"test:coverage": "tsc --module commonjs && jest --coverage",
"build": "tsc --module commonjs",
"lint": "eslint . -c .eslintrc.js --quiet",
"lint:coverage": "eslint . -c .eslintrc.js -f json-relative -o ./coverage/eslint.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CasualBot/jest-sonar-reporter.git"
},
"author": "Shawn Bernard <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/CasualBot/jest-sonar-reporter/issues"
},
"homepage": "https://github.com/CasualBot/jest-sonar-reporter#readme",
"engines": {
"node": ">=14.0.0"
},
"devDependencies": {
"@babel/cli": "7.16.0",
"@babel/core": "7.16.0",
"@babel/plugin-transform-modules-commonjs": "7.16.0",
"@babel/plugin-transform-typescript": "7.16.1",
"@babel/preset-env": "7.16.4",
"@babel/preset-typescript": "7.16.0",
"@types/jest": "27.0.3",
"@types/mkdirp": "1.0.2",
"@types/node": "16.11.12",
"@types/uuid": "8.3.3",
"@types/xml": "1.0.6",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"babel-eslint": "^10.1.0",
"babel-jest": "27.4.2",
"eslint": "^8.4.1",
"eslint-config-prettier": "8.3.0",
"eslint-formatter-json-relative": "^0.1.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "^7.27.1",
"jest": "27.4.3",
"prettier": "2.5.1",
"strip-ansi": "^7.0.1",
"ts-jest": "^27.1.1",
"typescript": "^4.5.3"
},
"dependencies": {
"mkdirp": "1.0.4",
"uuid": "8.3.2",
"xml": "1.0.1"
}
}