-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
50 lines (50 loc) · 1.2 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
{
"name": "action-surefire-report",
"version": "1.0.0",
"description": "",
"author": "Scalable Capital",
"license": "Apache-2.0",
"main": "index.js",
"homepage": "https://github.com/ScaCap/action-surefire-report#readme",
"scripts": {
"eslint": "eslint .",
"package": "ncc build index.js -o dist",
"test": "jest",
"test-ci": "jest --ci --reporters=jest-junit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ScaCap/action-surefire-report"
},
"keywords": [
"GitHub",
"Actions",
"Junit",
"Surefire"
],
"bugs": {
"url": "https://github.com/ScaCap/action-surefire-report/issues"
},
"jest-junit": {
"suiteNameTemplate": "{filepath}",
"classNameTemplate": "{classname}",
"titleTemplate": "{title}"
},
"dependencies": {
"@actions/core": "1.10.1",
"@actions/github": "6.0.0",
"@actions/glob": "0.4.0",
"@octokit/plugin-retry": "6.0.1",
"@octokit/rest": "20.0.2",
"xml-js": "1.6.11"
},
"devDependencies": {
"@octokit/fixtures": "23.1.1",
"@vercel/ncc": "0.38.1",
"enzyme": "3.11.0",
"eslint": "9.13.0",
"jest": "29.7.0",
"jest-junit": "16.0.0",
"nock": "14.0.0-beta.14"
}
}