UNPKG

indexed-string-variation

Version:

Experimental JavaScript module to generate all possible variations of strings over an alphabet using an n-ary virtual tree

58 lines (57 loc) 1.45 kB
{ "name": "indexed-string-variation", "version": "2.1.0", "description": "Experimental JavaScript module to generate all possible variations of strings over an alphabet using an n-ary virtual tree", "type": "module", "main": "dist/index.js", "exports": { ".": { "import": "./dist/index.js", "require": "./dist/index.js" } }, "files": ["dist/"], "scripts": { "build": "tsc", "lint:fix": "biome check --write --organize-imports-enabled=true .", "test:lint": "biome check --organize-imports-enabled=true .", "test:typecheck": "tsc --noEmit", "test:unit": "vitest run", "test": "npm run test:lint && npm run test:typecheck && npm run test:unit" }, "author": { "name": "Luciano Mammino", "email": "lucianomammino@gmail.com", "url": "http://loige.co" }, "repository": { "type": "git", "url": "https://github.com/lmammino/indexed-string-variation" }, "bugs": { "url": "https://github.com/lmammino/indexed-string-variation/issues" }, "license": "MIT", "engines": { "node": ">=22" }, "devDependencies": { "@biomejs/biome": "1.9.4", "@types/node": "^22.0.0", "@vitest/coverage-v8": "^3.2.3", "lefthook": "^1.11.13", "typescript": "^5.0.0", "vitest": "^3.2.3" }, "keywords": [ "variation", "string", "variants", "generator", "generation", "brute force", "cracker", "n-ary", "tree" ] }