nhb-anagram-generator
Version:
A tool to generate anagrams.
58 lines • 1.36 kB
JSON
{
"name": "nhb-anagram-generator",
"version": "1.2.3",
"description": "A tool to generate anagrams.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/nazmul-nhb/anagram-generator.git"
},
"keywords": [
"anagram",
"utility",
"tools",
"utils",
"nhb"
],
"author": {
"name": "Nazmul Hassan",
"email": "nazmulnhb@gmail.com"
},
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.20.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.1",
"@typescript-eslint/eslint-plugin": "^8.23.0",
"@typescript-eslint/parser": "^8.23.0",
"chalk": "4.1.2",
"eslint": "^9.20.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"execa": "^9.5.2",
"globals": "^15.14.0",
"globby": "^14.1.0",
"jest": "^29.7.0",
"prettier": "^3.5.0",
"progress-estimator": "^0.3.1",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"typescript": "^5.7.3",
"typescript-eslint": "^8.23.0"
},
"scripts": {
"clean": "rimraf dist",
"build": "node build.mjs",
"test": "jest --coverage",
"format": "prettier --write src/",
"lint": "node lint.mjs",
"fix": "node fix.mjs"
}
}