fnum
Version:
Count the number and proportion of file extensions
75 lines • 1.68 kB
JSON
{
"name": "fnum",
"type": "module",
"version": "0.0.3",
"description": "Count the number and proportion of file extensions",
"author": {
"name": "Hacxy",
"email": "hacxy.js@outlook.com"
},
"license": "MIT",
"keywords": [
"files",
"extensions",
"count",
"proportion"
],
"bin": {
"fnum": "bin/index.js"
},
"files": [
"bin",
"dist"
],
"dependencies": {
"cac": "^6.7.14",
"mri": "^1.2.0",
"ora": "^8.1.1",
"tinyglobby": "^0.2.12"
},
"devDependencies": {
"@hacxy/eslint-config": "^0.0.8",
"@types/node": "^20.12.5",
"@vitest/coverage-istanbul": "2.1.8",
"commitizen": "^4.3.1",
"conventional-changelog-cli": "^5.0.0",
"cz-git": "^1.11.0",
"eslint": "^9.17.0",
"execa": "^9.5.2",
"lint-staged": "^15.2.11",
"picocolors": "^1.1.1",
"prompts": "^2.4.2",
"semver": "^7.7.1",
"simple-git-hooks": "^2.11.1",
"tsup": "^8.3.5",
"typescript": "^5.4.4",
"vitest": "^2.1.8"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"commit-msg": "node scripts/git-hooks/commit-msg.mjs"
},
"lint-staged": {
"*": [
"eslint --fix"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-git",
"useEmoji": false
}
},
"scripts": {
"start": "dist/index.js",
"dev": "tsup --watch --sourcemap",
"build": "tsup",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"coverage": "vitest run --coverage",
"commit": "git-cz",
"lint": "eslint .",
"release": "node scripts/release.mjs",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
}
}