-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
39 lines (39 loc) · 836 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
{
"author": "Nicholas Penree <[email protected]> (http://penr.ee)",
"name": "gpg",
"description": "GPG encryption and decryption in node.js by way of the gpg command-line tool",
"version": "0.6.0",
"repository": {
"type": "git",
"url": "git://github.com/drudge/node-gpg.git"
},
"keywords": [
"gpg",
"encrypt",
"decrypt",
"pgp",
"gnupg"
],
"main": "./lib/gpg",
"engines": {
"node": ">= 0.10.0"
},
"dependencies": {},
"devDependencies": {
"eslint": "^2.10.2",
"mocha": "2.x"
},
"scripts": {
"pretest": "eslint .",
"test": "mocha"
},
"bugs": {
"url": "https://github.com/drudge/node-gpg/issues"
},
"homepage": "https://github.com/drudge/node-gpg#readme",
"directories": {
"example": "examples",
"test": "test"
},
"license": "MIT"
}