-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.1 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
{
"name": "@barudakrosul/gcrypt",
"version": "1.1.0",
"description": "A Node.js CLI tool and library simple encryption and decryption tool using PBKDF2, zlib, and AES-256-GCM",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "mocha"
},
"bin": {
"gcrypt": "bin/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BarudakRosul/go-crypt.git"
},
"keywords": [
"encrypt",
"decrypt",
"compress",
"decompress",
"cryptography"
],
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"author": "Barudak Rosul",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/BarudakRosul/go-crypt/issues"
},
"homepage": "https://github.com/BarudakRosul/go-crypt#readme",
"funding": {
"url": "https://ko-fi.com/barudakrosul"
},
"dependencies": {
"@barudakrosul/internet-available": "^0.1.4",
"axios": "^1.7.9",
"commander": "^13.0.0",
"millify": "^6.1.0",
"semver": "^7.6.3"
},
"devDependencies": {
"assert": "^2.1.0",
"mocha": "^11.0.1"
}
}