forked from Saeger/jest-jenkins-reporter
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.11 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
{
"name": "@digitalroute/jest-jenkins-reporter",
"version": "0.0.0-semantically-released",
"description": "A test reporter of jenkins for Jest.",
"main": "index.js",
"author": "pilipa-cn oyhanyu",
"keywords": [
"jest",
"jenkins",
"reporter"
],
"homepage": "https://github.com/digitalroute/jest-jenkins-reporter",
"scripts": {
"test": "jest -u --color",
"commit": "git-cz",
"semantic-release": "semantic-release"
},
"license": "MIT",
"private": false,
"publishConfig": {
"access": "public"
},
"dependencies": {
"jest": "^29.0.2",
"xml": "^1.0.1"
},
"devDependencies": {
"@digitalroute/cz-conventional-changelog-for-jira": "^7.4.0",
"@ryansonshine/commitizen": "^4.2.8",
"semantic-release": "^19.0.5"
},
"config": {
"commitizen": {
"path": "./node_modules/@digitalroute/cz-conventional-changelog-for-jira",
"jiraMode": false
}
},
"jest": {
"testEnvironment": "node",
"testResultsProcessor": "<rootDir>/index.js"
},
"jestSonar": {
"reportPath": "reports",
"reportFile": "test-report.xml",
"indent": 4
}
}