-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.5 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
{
"name": "nist-password-validator",
"version": "2.0.1",
"main": "dist/index.js",
"types": "dist/types.js",
"module": "dist/index.js",
"scripts": {
"vite-build": "vite build",
"dev": "vite",
"test": "vitest --coverage",
"testui": "vitest --coverage --ui",
"build": "tsup src",
"lint": "eslint .",
"prepare": "npm run build"
},
"keywords": [
"password",
"validation",
"security",
"NIST",
"npm",
"authentication",
"password-strength",
"compliance",
"hashing",
"encryption",
"user-security",
"password-policy",
"nist-800-63b",
"cyber",
"cybersecurity",
"cyber-security",
"cyber-security-policy"
],
"author": "Yehoshua Preiser",
"license": "MIT",
"description": "A lightweight, zero-dependencies open-source password validator according to NIST guidelines.",
"repository": {
"type": "git",
"url": "https://github.com/ypreiser/NIST-password-ts.git"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^22.10.1",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"@vitest/coverage-istanbul": "^2.1.8",
"@vitest/ui": "^2.1.8",
"eslint": "^9.16.0",
"eslint-define-config": "^2.1.0",
"globals": "^15.13.0",
"semantic-release": "^24.2.0",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"vite": "^5.4.11",
"vitest": "^2.1.8"
}
}