-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 847 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
34
35
36
37
38
39
{
"name": "symcryptor",
"version": "1.0.2",
"description": "SymCryptor allows you to easy use a symmetric encryption (with AES-CTR-256) and a signature method (with KMAC-256)",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "node test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/angy91m/symcryptor.git"
},
"keywords": [
"crypto",
"cryptography",
"encryption",
"decryption",
"encrypt",
"decrypt",
"cipher",
"aes",
"ctr",
"aes-256-ctr",
"hash",
"sha3",
"kmac",
"kmac256"
],
"author": "angy91m",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/angy91m/symcryptor/issues"
},
"homepage": "https://github.com/angy91m/symcryptor#readme",
"dependencies": {
"js-sha3": "^0.8.0"
}
}