-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
41 lines (41 loc) · 850 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
{
"name": "warshield",
"version": "3.2.0",
"description": "Warshield is a file encryption and decryption CLI using 3DES algorithm",
"main": "src/warshield.js",
"keywords": [
"crypto",
"cryptography",
"security",
"encryption",
"decryption",
"aes",
"cipher",
"decipher",
"file"
],
"bin": {
"warshield": "./cli.js"
},
"contributors": [
{
"name": "Nathanael Demacon",
"email": "nathanael.dmc@outlook.fr"
}
],
"repository": {
"type": "git",
"url": "git://github.com/QuantumSheep/warshield.git"
},
"author": "Nathanael Demacon <nathanael.dmc@outlook.fr>",
"license": "MIT",
"devDependencies": {
"@types/node": "^16.11.22"
},
"dependencies": {
"cfonts": "^2.10.0",
"commander": "^9.0.0",
"inquirer": "^8.2.0",
"mkdirp": "^1.0.4"
}
}