forked from dropbox/zxcvbn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.57 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "zxcvbn",
"version": "4.3.0",
"description": "realistic password strength estimation",
"author": "Dan Wheeler",
"license": "MIT",
"main": "lib/main.js",
"repository": {
"type": "git",
"url": "git://github.com/dropbox/zxcvbn.git"
},
"scripts": {
"test": "coffeetape test/*.coffee | faucet",
"test-saucelabs": "zuul -- test/*.coffee",
"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"
},
"devDependencies": {
"browserify": "^11.0.1",
"coffee-coverage": "^0.6.3",
"coffee-script": "^1.10.0",
"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",
"zuul": "^3.4.0"
},
"keywords": [
"password",
"passphrase",
"security",
"authentication",
"strength",
"meter",
"quality",
"estimation",
"pattern",
"cracking",
"scoring",
"entropy",
"bruteforce"
]
}