forked from ashley-taylor/junit-report-annotations-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 822 Bytes
/
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
{
"name": "junit-report-annotations-action",
"version": "1.0.0",
"description": "Create an annotation of the build information and also list first n failed tests as seporate annotations",
"main": "index.js",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ashley-taylor/junit-report-annotations-action.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ashley-taylor/junit-report-annotations-action/issues"
},
"homepage": "https://github.com/ashley-taylor/junit-report-annotations-action#readme",
"dependencies": {
"@actions/core": "^1.2.3",
"@actions/github": "^2.1.1",
"@actions/glob": "^0.1.0",
"xml2js": "^0.4.23"
},
"devDependencies": {
"jest": "26.1.0"
}
}