repeated-words
Version:
Processes paragraphs of text to identify repeated words and exports a file with the frequency of each word.
52 lines (51 loc) • 1.21 kB
JSON
{
"name": "repeated-words",
"version": "1.3.1",
"description": "Processes paragraphs of text to identify repeated words and exports a file with the frequency of each word.",
"keywords": [
"npm",
"package",
"text",
"repeated",
"duplicate",
"words",
"txt",
"cli",
"console",
"shell",
"command-line"
],
"author": "betatrix",
"license": "MIT",
"repository": "betatrix/repeated-words-lib",
"type": "module",
"scripts": {
"format": "npx prettier . --write",
"format:check": "npx prettier . --check",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --verbose",
"test:debug": "node --inspect-brk --experimental-vm-modules ./node_modules/jest/bin/jest.js"
},
"files": [
"index.js",
"src/",
"index.js",
"README.md"
],
"bin": {
"repeated-words": "./src/cli.js"
},
"dependencies": {
"chalk": "^5.4.1",
"commander": "^14.0.0"
},
"devDependencies": {
"@eslint/js": "^9.28.0",
"eslint": "^9.28.0",
"globals": "^16.2.0",
"jest": "^29.7.0",
"prettier": "3.5.3"
},
"engines": {
"node": ">=20"
}
}