-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.02 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.02 KB
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
49
50
51
52
53
54
55
56
57
{
"name": "node-cardcrypto",
"version": "1.0.7",
"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": {
"cross-env": "^10.1.0",
"mocha": "^11.3.0"
},
"author": {
"name": "coolbong",
"email": "coolbong.works@gmail.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "http://github.com/coolbong/node-cardcrypto"
},
"dependencies": {
"node-jsbnrsa": "*"
},
"scripts": {
"test": "cross-env NODE_OPTIONS=--openssl-legacy-provider mocha -u exports ./test"
},
"overrides": {
"serialize-javascript": "^7.0.3"
}
}