-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
33 lines (33 loc) · 921 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
{
"name": "node-cardcrypto",
"version": "1.0.2",
"description" : "node crypto module wrapper",
"main": "index.js",
"keywords": [
"crypto", "cryptogram", "cryptography",
"symmetric", "des", "aes", "seed",
"asymmetric", "rsa", "Public Key", "Private Key", "CRT",
"hash", "md5", "sha1", "sha256",
"random",
"mac", "DES MAC", "HMAC", "HMAC SHA1", "HMAC SHA256", "HMAC MD5",
"iso9797", "80 padding", "PKCS#5 padding", "PKCS#7 padding"
],
"devDependencies": {
"mocha": "*"
},
"author" : {
"name": "coolbong",
"email": "[email protected]"
},
"license" :"MIT",
"repository" : {
"type": "git",
"url": "http://github.com/coolbong/node-cardcrypto"
},
"dependencies" : {
"node-jsbnrsa" : "*"
},
"scripts": {
"test": "mocha -u exports ./test"
}
}