line-commenter-tool
Version:
A tool to comment or uncomment lines in a file based on regex patterns and specific strings.
49 lines (48 loc) • 1.02 kB
JSON
{
"name": "line-commenter-tool",
"version": "2.1.0",
"description": "A tool to comment or uncomment lines in a file based on regex patterns and specific strings.",
"main": "src/index.js",
"type": "module",
"bin": {
"line-commenter-tool": "./bin/line-commenter-tool.js",
"line-commenter-tool-sh": "./line-commenter-tool.sh"
},
"scripts": {
"test": "jest"
},
"files": [
"bin/",
"src/"
],
"keywords": [
"comment",
"uncomment",
"regex",
"shelljs",
"code",
"line",
"cli",
"dx",
"developer",
"tool"
],
"author": "Hansel Wei",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/darkmastermindz/line-commenter-tool.git"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"babel-jest": "^30.0.4",
"jest": "^30.0.4"
},
"dependencies": {
"fs-extra": "^11.2.0",
"chalk": "^5.3.0",
"commander": "^14.0.0",
"path": "^0.12.7"
}
}