forked from JoshKaufman/ursa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (37 loc) · 1 KB
/
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
{
"name": "ursa",
"version": "0.8.0",
"keywords": [
"crypto", "key", "openssl", "private", "public", "rsa", "sign",
"signature", "verify", "verification", "hash", "digest"
],
"description":
"RSA public/private key crypto",
"homepage": "https://github.com/Obvious/ursa",
"repository": {
"type": "git",
"url": "https://github.com/Obvious/ursa.git"
},
"licenses": [ {
"type": "Apache 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0.html"
} ],
"author": {
"name": "Dan Bornstein",
"email": "[email protected]",
"url": "http://www.milk.com/"
},
"maintainers": [ {
"name": "Dan Bornstein",
"email": "[email protected]",
"web": "http://www.milk.com/"
} ],
"main": "lib/ursa.js",
"engine": {
"node": ">=0.6.0"
},
"scripts": {
"install": "node-gyp configure build && node install.js",
"test": "node test/test.js"
}
}