25 lines
705 B
JSON
25 lines
705 B
JSON
{
|
|
"name": "junit-to-md",
|
|
"main": "bin/junit-to-md.js",
|
|
"version": "1.0.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": {
|
|
"glob": "^7.1.6",
|
|
"libxmljs2": "0.30.1"
|
|
},
|
|
"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/*\")"
|
|
}
|
|
}
|