junit-to-md/package.json

27 lines
778 B
JSON

{
"name": "junit-to-md",
"main": "bin/junit-to-md.js",
"version": "1.2.1",
"description": "A command line app for turning junit output to markdown",
"license": "MIT",
"repository": "davidahouse/junit-to-md",
"preferGlobal": true,
"bin": {
"junit-to-md": "bin/junit-to-md.js"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@rgrove/parse-xml": "^4.1.0",
"glob": "^7.1.6"
},
"devDependencies": {
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0"
},
"scripts": {
"lint": "eslint $(find . -name \"*.js\" -not -path \"./node_modules/*\" -not -path \"./public/*\")",
"lint-fix": "eslint --fix $(find . -name \"*.js\" -not -path \"./node_modules/*\" -not -path \"./public/*\")"
}
}