-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
47 lines (47 loc) · 1.1 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": "junit-cli-report-viewer",
"version": "2.5.2",
"description": "A tool to generate CLI reports from junit XML output",
"main": "index.js",
"type": "module",
"engines": {
"npm": ">=7.19.1",
"node": ">=14.0.0"
},
"scripts": {
"pretest": "eslint --ignore-path .gitignore .",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --coverage ./*.test.js"
},
"bin": {
"junit-cli-report-viewer": "./index.js"
},
"repository": {
"type": "git",
"url": "git@github.com:amalfra/junit-cli-report-viewer.git"
},
"author": "Amal Francis",
"license": "MIT",
"bugs": {
"url": "https://github.com/amalfra/junit-cli-report-viewer/issues"
},
"homepage": "https://github.com/amalfra/junit-cli-report-viewer",
"keywords": [
"junit",
"xml",
"report",
"cli",
"viewer"
],
"dependencies": {
"colorette": "^2.0.16",
"columnify": "^1.5.4",
"commander": "^8.3.0",
"log-symbols": "^5.0.0",
"xml2js": "^0.6.0"
},
"devDependencies": {
"eslint": "^8.1.0",
"eslint-config-strongloop": "^2.1.0",
"jest": "^29.5.0"
}
}