-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.15 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "tenvoy",
"version": "7.0.7",
"description": "PGP, NaCl, and PBKDF2 in node.js and the browser (hashing, random, encryption, decryption, signatures, conversions), used by TogaTech.org",
"main": "./node/tenvoy.js",
"browser": {
"./node/tenvoy.js": "./tenvoy.js",
"./node/tenvoy.min.js": "./tenvoy.min.js"
},
"scripts": {
"test": "mocha test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TogaTech/tEnvoy.git"
},
"keywords": [
"javascript",
"hashing",
"cryptography",
"encryption",
"pgp",
"hash-functions",
"hash",
"md5",
"pbkdf2",
"nacl",
"tweetnacl",
"sha256",
"signatures",
"openpgp",
"decryption",
"signature-verification",
"encryption-decryption",
"md5-hash",
"sha256-hash",
"cryptographic-random-generator"
],
"author": "TogaTech",
"license": "LGPL-3.0+",
"engines": {
"node": ">= 10.0.0"
},
"bugs": {
"url": "https://github.com/TogaTech/tEnvoy/issues"
},
"dependencies": {
"asn1.js": "^5.0.0"
},
"homepage": "https://tenvoy.js.org/",
"devDependencies": {
"mocha": "^9.1.3"
}
}