zxcvbn
Version:
realistic password strength estimation
53 lines (52 loc) • 1.57 kB
JSON
{
"name": "zxcvbn",
"version": "3.2.1",
"description": "realistic password strength estimation",
"main": "lib/main.js",
"repository": {
"type": "git",
"url": "git://github.com/dropbox/zxcvbn.git"
},
"scripts": {
"test": "coffeetape test/*.coffee | faucet",
"build": "npm run build-lib ; npm run build-dist",
"watch": "npm run watch-lib & npm run watch-dist",
"build-lib": "coffee -o lib --compile --bare --map src/*.coffee",
"watch-lib": "coffee -o lib --compile --bare --map --watch src/*.coffee",
"build-dist": "browserify --debug --standalone zxcvbn -t coffeeify --extension='.coffee' -t uglifyify src/main.coffee | exorcist dist/zxcvbn.js.map >| dist/zxcvbn.js",
"watch-dist": "watchify --debug -v --standalone zxcvbn -t coffeeify --extension='.coffee' -t uglifyify src/main.coffee -o 'exorcist dist/zxcvbn.js.map >| dist/zxcvbn.js'",
"prepublish": "npm run build"
},
"keywords": [
"password",
"passphrase",
"strength",
"quality",
"estimation",
"estimate",
"meter",
"pattern",
"matcher",
"security",
"authentication",
"cracking",
"scoring",
"entropy",
"bruteforce"
],
"author": "Dan Wheeler",
"license": "MIT",
"devDependencies": {
"browserify": "^11.0.1",
"coffee-coverage": "^0.6.3",
"coffee-script": "^1.9.3",
"coffeeify": "^1.1.0",
"coffeetape": "^1.0.1",
"exorcist": "^0.4.0",
"faucet": "^0.0.1",
"istanbul": "^0.3.18",
"tape": "^4.2.0",
"uglifyify": "^3.0.1",
"watchify": "^3.3.1"
}
}