-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.21 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": "passwordkit",
"version": "1.1.0",
"description": "A versatile library for generating and validating strong passwords and secure one-time passwords (OTPs) with customizable criteria. Perfect for enhancing application security.",
"main": "dist/index.js",
"module": "dist/index.js",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.js"
},
"types": "dist/index.d.ts",
"files": [
"dist/",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"test": "jest",
"build": "tsc",
"prepare": "npm run build"
},
"keywords": [
"password",
"generator",
"validator",
"otp-generator",
"otp-validation",
"password-tool",
"security",
"typescript",
"passwordkit"
],
"author": "Sabbir Bin Abdul Latif",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sabbirosa/passwordkit.git"
},
"bugs": {
"url": "https://github.com/sabbirosa/passwordkit/issues"
},
"homepage": "https://github.com/sabbirosa/passwordkit#readme",
"devDependencies": {
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3"
}
}