modscan
Version:
A CLI tool to scan and manage node_modules directories
43 lines (42 loc) • 895 B
JSON
{
"name": "modscan",
"version": "1.0.1",
"description": "A CLI tool to scan and manage node_modules directories",
"main": "index.js",
"bin": {
"modscan": "./index.js"
},
"scripts": {
"start": "node index.js",
"lint": "eslint .",
"format": "prettier --write ."
},
"keywords": [
"node_modules",
"cleanup",
"disk-space",
"cli",
"blessed",
"tui"
],
"author": "Kaizo Konpaku <kaizokonpaku@icloud.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/kaizokonpaku/modscan.git"
},
"bugs": {
"url": "https://github.com/kaizokonpaku/modscan/issues"
},
"homepage": "https://github.com/kaizokonpaku/modscan#readme",
"dependencies": {
"blessed": "^0.1.81"
},
"devDependencies": {
"eslint": "^8.57.0",
"prettier": "^3.2.5"
},
"engines": {
"node": ">=8.0.0"
}
}