forked from jed/config-leaf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 789 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 789 Bytes
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
{
"name": "config-leaf",
"version": "0.3.0",
"description": "Hide your sensitive node.js bits in plain sight.",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/jed/config-leaf.git"
},
"author": "Jed Schmidt <where@jed.is>",
"license": "MIT",
"readmeFilename": "README.md",
"gitHead": "e906d66eb6132cd515d9d77fdae699bdb644e58b",
"bugs": {
"url": "https://github.com/jed/config-leaf/issues"
},
"scripts": {
"test": "sh test.sh",
"encrypt": "encrypt config.json config.json.cast5",
"decrypt": "decrypt config.json.cast5 config.copy.json"
},
"bin": {
"encrypt": "./encrypt.js",
"decrypt": "./decrypt.js"
},
"engines": {
"node": ">=0.10.0"
},
"dependencies": {
"prompt": "^1.0.0"
}
}