UNPKG

zxcvbn3

Version:

realistic password strength estimation

53 lines (52 loc) 1.45 kB
{ "name": "zxcvbn3", "version": "0.1.1", "description": "realistic password strength estimation", "author": "Dan Wheeler", "license": "MIT", "main": "dist/main.js", "types": "dist/main.d.ts", "files": [ "/dist/*.js", "/dist/*.d.ts", "/README.md" ], "repository": "hrueger/zxcvbn", "scripts": { "build": "tsc && rollup dist/main.js --file dist/zxcvbn.browser.js --format iife --name zxcvbn && ECHO zxcvbn = zxcvbn.zxcvbn;>>dist\\zxcvbn.browser.js && copy dist\\zxcvbn.browser.js demo\\zxcvbn.js", "prepare": "npm run build" }, "devDependencies": { "@types/byline": "^4.2.32", "@types/node": "^14.6.4", "byline": "^5.0.0", "rollup": "^2.26.10", "rollup-plugin-babel-minify": "^10.0.0", "rollup-plugin-commonjs": "^10.1.0", "rollup-plugin-node-resolve": "^5.2.0", "sprintf-js": "^1.1.2", "tape": "^4.2.0", "ts-loader": "^8.0.3", "typescript": "^4.0.2", "webpack": "^4.44.1", "webpack-cli": "^3.3.12" }, "keywords": [ "password", "passphrase", "security", "authentication", "strength", "meter", "quality", "estimation", "pattern", "cracking", "scoring", "entropy", "bruteforce" ], "dependencies": { "@types/tape": "^4.13.0" } }