forked from JoshKaufman/ursa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 928 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
42
43
44
45
46
47
48
{
"name": "ursa",
"version": "0.9.3",
"keywords": [
"crypto",
"key",
"openssl",
"private",
"public",
"rsa",
"sign",
"signature",
"verify",
"verification",
"hash",
"digest"
],
"description": "RSA public/private key OpenSSL bindings for node and io.js",
"homepage": "https://github.com/quartzjer/ursa",
"repository": {
"type": "git",
"url": "https://github.com/quartzjer/ursa.git"
},
"license": "Apache-2.0",
"author": {
"name": "Dan Bornstein",
"email": "[email protected]",
"url": "http://www.milk.com/"
},
"maintainers": [
{
"name": "Jeremie Miller",
"email": "[email protected]",
"url": "http://jeremie.com/"
}
],
"main": "lib/ursa.js",
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "node test/test.js"
},
"dependencies": {
"bindings": "^1.2.1",
"nan": "^2.3.3"
}
}