-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.12 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
{
"name": "secrecy",
"version": "0.0.1",
"description": "Secrecy is a cryptography tool that encrypts your file with AES Cipher",
"author": {
"name": "Ekene Izukanne <ekeneizukanne@gmail.com>"
},
"homepage": "https://github.com/spatocode/secrecy#README",
"repository": {
"type": "git",
"url": "git+https://github.com/spatocode/secrecy.git"
},
"bugs": {
"url": "https://github.com/spatocode/secrecy/issues"
},
"license": "MIT",
"keywords": [
"secrecy",
"cryptography",
"encryption",
"decryption",
"security",
"AES",
"CLI"
],
"dependencies": {
"chalk": "^2.4.1",
"commander": "^2.19.0"
},
"main": "index.js",
"preferGlobal": true,
"bin": {
"secrecy": "./bin/secrecy-cli"
},
"devDependencies": {
"eslint": "^5.9.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"mocha": "^5.2.0",
"rimraf": "^2.6.2",
"tmp": "0.0.33"
},
"scripts": {
"lint": "eslint .",
"test": "mocha"
}
}