-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.43 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 2.43 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "crpdo",
"version": "1.0.8",
"description": "A unified cryptographic library integrating diverse modules to provide robust and versatile cryptographic solutions for Node.js and the browser.",
"author": "Basedwon <basedwon@protonmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/basedwon/crpdo.git"
},
"bugs": {
"url": "https://github.com/basedwon/crpdo/issues"
},
"homepage": "https://github.com/basedwon/crpdo#readme",
"main": "./lib/crpdo.js",
"exports": {
".": {
"browser": "./lib/crpdo.js",
"node": "./lib/crpdo-node.js"
},
"./*/": "./lib/*/",
"./*": "./lib/*.js"
},
"browser": {
".": "./lib/crpdo.js",
"coins": "./lib/coins.js",
"crypto": "./lib/crypto.js",
"hash": "./lib/hash.js",
"key": "./lib/key.js",
"merkle": "./lib/merkle.js",
"mnemonic": "./lib/mnemonic.js",
"nacl": "./lib/nacl.js",
"random": "./lib/random.js",
"time": "./lib/time.js"
},
"scripts": {
"dev": "nodemon -w .. -x npm test",
"docs": "jsdoc2md lib/*.js > docs/api.md",
"update": "npm run update:prod && npm run update:dev",
"update:prod": "npm i -S @crpdo/crypto@latest @crpdo/key@latest @crpdo/merkle@latest @crpdo/time@latest basd@latest",
"update:dev": "npm i -D @basd/testr@latest",
"test": "testr test"
},
"dependencies": {
"@crpdo/crypto": "^0.0.6",
"@crpdo/key": "^0.0.5",
"@crpdo/merkle": "^0.0.4",
"@crpdo/time": "^0.0.4",
"basd": "^1.0.16"
},
"devDependencies": {
"@basd/testr": "^0.1.2",
"jsdoc": "^4.0.2",
"jsdoc-to-markdown": "^8.0.0"
},
"keywords": [
"cryptography",
"nodejs",
"browser-based",
"crypto-library",
"tweetnacl",
"cryptographic-functions",
"JavaScript",
"library",
"open-source",
"security",
"encryption",
"decryption",
"hashing",
"hmac",
"pbkdf",
"hkdf",
"randomBytes",
"verify",
"key derivation",
"AES",
"RSA",
"SHA",
"MD5",
"elliptic curve",
"symmetric cryptography",
"asymmetric cryptography",
"public key",
"private key",
"secure",
"signature",
"SSL",
"TLS",
"https",
"secure communication",
"confidentiality",
"integrity",
"web security",
"ciphers",
"cryptanalysis",
"cryptology",
"cryptosystem",
"steganography",
"PKI",
"entropy",
"nonce",
"CSRNG",
"PRNG"
]
}