-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.17 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "strong-password-check",
"version": "1.0.2",
"description": "Check the strength of the password inputed and returns what needs to be updated in the password for that to be more strong.",
"scripts": {
"test": "jest --config jestconfig.json",
"build": "tsc",
"prepublishOnly": "npm run build",
"format": "prettier --write \"src/**/*.ts\" \"src\"",
"lint": "tslint -p tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nihalavulan/strong-password-check.git"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"keywords": [
"Password Strength Checker",
"Password Checker",
"Node.js",
"NPM",
"Module",
"Package",
"Security",
"Cryptography",
"Authentication",
"Authorization",
"Configurable",
"Criteria",
"Uppercase",
"Lowercase",
"Numbers",
"Symbols",
"Minimum Length",
"Strength",
"Weak",
"Moderate",
"Strong",
"Function",
"Usage",
"Installation",
"Contributing",
"Bugs",
"Features",
"Pull Requests",
"Issues",
"GitHub",
"License",
"MIT",
"strong password check",
"strong password checker npm",
"strong password check npm",
"password",
"checker",
"strength",
"check-password-strength",
"password-strength-checker",
"strong-password-check",
"strength-checker",
"password-checker",
"password-checker-strength",
"pass-strength"
],
"author": "nihalavulan",
"license": "ISC",
"bugs": {
"url": "https://github.com/nihalavulan/strong-password-check/issues"
},
"homepage": "https://github.com/nihalavulan/strong-password-check#readme",
"devDependencies": {
"@types/jest": "^29.5.2",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0"
}
}