-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 731 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 731 Bytes
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
{
"name": "@zerowillreborn/secure-password-generator",
"version": "1.0.2",
"description": "CLI + API to generate secure passwords with options for length, symbols, and readability",
"main": "src/index.js",
"bin": {
"secure-pass": "./bin/cli.js"
},
"types": "index.d.ts",
"keywords": [
"password",
"secure",
"cli",
"node",
"generator"
],
"author": "Achal Chaudhary",
"license": "MIT",
"type": "module",
"files": [
"bin/",
"src/",
"README.md"
],
"scripts": {
"test": "node test/generator.test.js"
},
"dependencies": {
"chalk": "^5.4.1",
"clipboardy": "^4.0.0",
"commander": "^14.0.0",
"figlet": "^1.8.1",
"gradient-string": "^3.0.0"
}
}