-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
41 lines (41 loc) · 913 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
{
"name" : "rsa-unpack",
"version" : "0.0.6",
"description" : "unpack rsa fields from PEM strings",
"main" : "index.js",
"bin" : {
"rsa-unpack" : "bin/cmd.js"
},
"directories" : {
"example" : "example",
"test" : "test"
},
"dependencies" : {
"optimist" : "~0.3.5"
},
"devDependencies" : {
"tap" : "~0.3.0"
},
"scripts" : {
"test" : "tap test/*.js"
},
"repository" : {
"type" : "git",
"url" : "git://github.com/substack/rsa-unpack.git"
},
"homepage" : "https://github.com/substack/rsa-unpack",
"keywords" : [
"crypto",
"rsa",
"pem",
"keypair",
"public",
"private"
],
"author" : {
"name" : "James Halliday",
"email" : "[email protected]",
"url" : "http://substack.net"
},
"license" : "MIT"
}