-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.08 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "password-strength-analyzer",
"version": "2.1.0",
"description": "A utility for evaluating password strength using entropy calculations and customizable rules. It’s easy to configure and doesn’t rely on any specific frameworks, making it highly adaptable for various applications.",
"type": "module",
"main": "dist/password-strength-analyzer.cjs.js",
"module": "dist/password-strength-analyzer.es.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "vitest",
"build": "tsc -b && vite build",
"prepublishOnly": "npm run build",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/rozhkoy/password-strength-analyzer.git"
},
"keywords": [
"npm",
"password",
"strength",
"checker",
"check password strength",
"password strength checker",
"strength checker",
"password checker",
"password checker strength",
"strength password checker",
"check-password-strength",
"password-strength-checker",
"strength-checker",
"password-checker",
"password-checker-strength",
"strength-password-checker",
"pass-strength",
"password security",
"password validation",
"password analysis",
"password strength analysis",
"password entropy",
"password score",
"secure password",
"password metrics",
"password evaluation",
"entropy"
],
"author": "rozhkoy",
"license": "MIT",
"bugs": {
"url": "https://github.com/rozhkoy/password-strength-analyzer/issues"
},
"homepage": "https://github.com/rozhkoy/password-strength-analyzer#readme",
"dependencies": {
"vite-plugin-dts": "^4.0.3"
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.1.6",
"@semantic-release/npm": "^12.0.1",
"eslint": "^9.9.0",
"globals": "^15.9.0",
"semantic-release": "^24.1.0",
"typescript": "^5.5.3",
"typescript-eslint": "^8.0.1",
"vite": "^5.4.1",
"vitest": "^2.0.5"
}
}