-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 909 Bytes
/
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
{
"name": "password-gen-cli",
"version": "1.2.0",
"description": "Generates password & copy it on clipboard",
"main": "index.js",
"author": {
"name": "Saad Irfan",
"email": "[email protected]",
"url": "https://twitter.com/msaaddev"
},
"bin": {
"pgen": "index.js"
},
"files": [
"index.js",
"utils/*"
],
"keywords": [
"password generate",
"random password generate"
],
"scripts": {
"format": "prettier --write \"./**/*.{js,json}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/msaaddev/password-generator.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/msaaddev/password-generator/issues"
},
"homepage": "https://github.com/msaaddev/password-generator#readme",
"dependencies": {
"chalk": "^4.1.0",
"clear": "^0.1.0",
"cli-welcome": "^2.2.2",
"clipboardy": "^2.3.0"
},
"devDependencies": {
"prettier": "^2.3.0"
}
}