forked from MauriceButler/cryptr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 829 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
40
41
{
"name": "cryptr",
"version": "6.0.2",
"description": "a simple encrypt and decrypt module for node.js",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "node ./tests"
},
"repository": {
"type": "git",
"url": "git://github.com/MauriceButler/cryptr.git"
},
"keywords": [
"cryptr",
"crypter",
"encrypt",
"decrypt",
"encryption",
"decryption",
"crypto",
"cipher",
"aes-256",
"aes256",
"aes-256-ctr",
"aes-256-gcm",
"hashr"
],
"author": "Maurice Butler <maurice.butler@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/MauriceButler/cryptr/issues"
},
"homepage": "https://github.com/MauriceButler/cryptr",
"devDependencies": {
"tape": "^4.13.2"
},
"dependencies": {}
}