-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 755 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 755 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name" : "rsa",
"version" : "v0.0.3",
"description" : "OpenSSL's RSA encrypt/decrypt routines",
"keywords" : ["openssl", "crypto", "rsa"],
"homepage" : "https://github.com/chrisa/node-rsa#readme",
"author" : { "name" : "Chris Andrews", "email": "[email protected]" },
"files" : [ "LICENCE",
"README.md",
"test/test.js",
"rsa.public",
"rsa.private",
"wscript",
"node_rsa.cc",
"node_rsa.h",
"rsa.js"
],
"main" : "./rsa.js",
"repository" : { "type" : "git", "url" : "http://github.com/chrisa/node-rsa.git" },
"scripts": { "install": "node-waf configure build" },
"engines" : { "node" : "0.4 || 0.5 || 0.6" }
}