pomanalyzer
Version:
pomanalyzer is a utility to analyze Apache Maven POM XML file
52 lines • 1.15 kB
JSON
{
"name": "pomanalyzer",
"version": "1.0.2",
"description": "pomanalyzer is a utility to analyze Apache Maven POM XML file",
"keywords": [
"pom",
"xml",
"analyze",
"maven",
"depedencies"
],
"homepage": "https://github.com/zackria/pomanalyzer#readme",
"bugs": {
"url": "https://github.com/zackria/pomanalyzer/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zackria/pomanalyzer.git"
},
"license": "MIT",
"author": "Zack Dawood",
"type": "module",
"main": "index.js",
"bin": {
"pomanalyzer": "./cli.js"
},
"scripts": {
"test": "jest",
"run": "node ./src/index.js",
"clean": "rm -rf node_modules coverage"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"babel-jest": "^30.2.0",
"jest": "^30.2.0",
"jest-environment-node": "^30.2.0"
},
"dependencies": {
"chalk": "^5.6.2",
"commander": "^14.0.2",
"js-yaml": "^4.1.1",
"xml2js": "^0.6.2"
},
"overrides": {
"minimatch": "9.0.7",
"brace-expansion": "2.0.3"
},
"engines": {
"node": ">=14.0.0"
}
}