node-password-generator
Version:
A simple lightweight npm library for password generator. It allows you to create random unqiue password on the fly.
56 lines (55 loc) • 1.46 kB
JSON
{
"name": "node-password-generator",
"version": "1.0.1",
"description": "A simple lightweight npm library for password generator. It allows you to create random unqiue password on the fly.",
"main": "dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"author": "Syed Muhammad Sohaib <syedmsohaib@gmail.com> (https://github.com/syedMSohaib)",
"bugs": {
"url": "https://github.com/syedMSohaib/node-password-generator/issues"
},
"scripts": {
"prebuild": "del-cli dist",
"build": "tsc",
"lint": "tslint -p tsconfig.json",
"test": "jest --config jestconfig.json",
"prepublishOnly": "npm run build"
},
"engines": {
"node": ">=14"
},
"license": "MIT",
"repository": "syedMSohaib/node-password-generator",
"homepage": "https://github.com/syedMSohaib/node-password-generator",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/passwordgenerator"
},
"keywords": [
"generate",
"password",
"node-password",
"wordlist",
"unique-password",
"password-generator",
"random",
"random-password",
"security",
"typescript",
"node"
],
"devDependencies": {
"@types/jest": "^27.4.0",
"jest": "^27.5.1",
"prettier": "^2.5.1",
"ts-jest": "^27.1.3",
"ts-node": "^10.4.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.5.5"
}
}