UNPKG

1.61 kBJSONView Raw
1{
2 "name": "zxcvbn",
3 "version": "4.1.1",
4 "description": "realistic password strength estimation",
5 "author": "Dan Wheeler",
6 "license": "MIT",
7 "main": "lib/main.js",
8 "repository": {
9 "type": "git",
10 "url": "git://github.com/dropbox/zxcvbn.git"
11 },
12 "scripts": {
13 "test": "coffeetape test/*.coffee | faucet",
14 "test-saucelabs": "zuul -- test/*.coffee",
15 "build": "npm run build-lib ; npm run build-dist",
16 "watch": "npm run watch-lib & npm run watch-dist",
17 "build-lib": "coffee -o lib --compile --bare --map src/*.coffee",
18 "watch-lib": "coffee -o lib --compile --bare --map --watch src/*.coffee",
19 "build-dist": "browserify --debug --standalone zxcvbn -t coffeeify --extension='.coffee' -t uglifyify src/main.coffee | exorcist dist/zxcvbn.js.map >| dist/zxcvbn.js",
20 "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'",
21 "prepublish": "npm run build"
22 },
23 "devDependencies": {
24 "browserify": "^11.0.1",
25 "coffee-coverage": "^0.6.3",
26 "coffee-script": "^1.10.0",
27 "coffeeify": "^1.1.0",
28 "coffeetape": "^1.0.1",
29 "exorcist": "^0.4.0",
30 "faucet": "^0.0.1",
31 "istanbul": "^0.3.18",
32 "tape": "^4.2.0",
33 "uglifyify": "^3.0.1",
34 "watchify": "^3.3.1",
35 "zuul": "^3.4.0"
36 },
37 "keywords": [
38 "password",
39 "passphrase",
40 "security",
41 "authentication",
42 "strength",
43 "meter",
44 "quality",
45 "estimation",
46 "pattern",
47 "cracking",
48 "scoring",
49 "entropy",
50 "bruteforce"
51 ]
52}