-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 860 Bytes
/
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
{
"name": "ideal-password",
"version": "2.4.1",
"description": "Password entropy test, loosely inspired by xkcd",
"main": "lib/entropy.js",
"scripts": {
"test": "mocha",
"lint": "eslint index.js lib/*.js test/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/capnajax/ideal-password.git"
},
"bin": {
"entropy": "index.js"
},
"author": "Thomas D Wilkinson",
"license": "ISC",
"dependencies": {
"emoji-regex": "^9.0.0"
},
"directories": {
"lib": "lib"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^8.1.3",
"eslint": "^7.12.1"
},
"keywords": [
"password",
"entropy",
"strength",
"bad-password",
"ideal-password",
"acceptable-password",
"password-entropy",
"password-strength",
"password-validation",
"security"
]
}