-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 969 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
{
"name": "passwordjs",
"version": "0.1.1",
"description": "A Module that can perform multiple encrypting algorithms and can verify passwords from Hashes Easily.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"encrypt": "bin/encrypt"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DakshMiglani/passwordjs.git"
},
"keywords": [
"passwordjs",
"password",
"encryption",
"bcrypt",
"md5",
"sha"
],
"author": "Daksh Miglani <hello@dak.sh> (https://dak.sh)",
"license": "MIT",
"bugs": {
"url": "https://github.com/DakshMiglani/passwordjs/issues"
},
"homepage": "https://github.com/DakshMiglani/passwordjs#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"chalk": "^2.0.1",
"clear": "0.0.1",
"clui": "^0.3.6",
"crypto": "0.0.3",
"figlet": "^1.2.0",
"inquirer": "^3.2.1",
"md5": "^2.2.1"
}
}