-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 895 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
{
"name": "ghmsg",
"version": "0.1.0",
"description": "Command-line interface to encrypt message using github users public ssh keys",
"preferGlobal": true,
"main": "ghmsg.js",
"bin": {
"ghmsg": "ghmsg.js"
},
"scripts": {
"lint": "eslint ghmsg.js lib test",
"test": "mocha",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --check-leaks --reporter spec"
},
"engines": {
"node": ">=4"
},
"repository": {
"type": "git",
"url": "git://github.com/joawan/ghmsg"
},
"keywords": [
"github",
"encryption"
],
"author": "",
"license": "MIT",
"devDependencies": {
"eslint": "^2.7.0",
"eslint-config-airbnb": "^6.2.0",
"istanbul": "^0.4.3",
"mocha": "^2.4.5"
},
"dependencies": {
"commander": "^2.9.0",
"github": "^0.2.4",
"untildify": "^2.1.0",
"ursa": "^0.9.3"
}
}