-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 896 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
{
"name": "multi-encrypt",
"version": "1.0.4",
"description": "A simple no-install solution to encrypt/decrypt multiple files in a public repo",
"main": "./src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"encrypt",
"secret",
"password",
"sensitive",
"decrypt",
"vault",
"blackbox",
"cipher"
],
"bin": {
"multi-encrypt": "./bin/cli.js"
},
"repository": {
"type" : "git",
"url" : "https://github.com/onexdata/multi-encrypt"
},
"author": {
"name": "Nick Steele",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"chalk": "^1.1.1",
"commander": "^2.9.0",
"debug": "^2.2.0",
"fs-extra": "^0.26.4",
"inquirer": "^6.2.2",
"keymirror": "^0.1.1",
"lodash": "^4.17.11",
"rc": "^1.1.6",
"yargs": "^3.32.0"
}
}