-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 1.62 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@fajarkim/node-openssl-enc",
"version": "0.0.7",
"description": "A Node.js CLI tool and library for encryption and decryption with OpenSSL Enc.",
"main": "index.js",
"types": "index.d.ts",
"bin": {
"ncssl": "bin/cli.js"
},
"scripts": {
"test": "mocha ./test/**"
},
"files": [
"bin/*.js",
"lib/*.js",
"lib/*/*.js",
"lib/*/*.d.ts",
"index.js",
"index.d.ts"
],
"directories": {
"bin": "bin",
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FajarKim/node-openssl-enc.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"keywords": [
"openssl",
"node",
"cryptography",
"encrypt",
"decrypt",
"cipher",
"decipher"
],
"author": "Rangga Fajar Oktariansyah",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/FajarKim/node-openssl-enc/issues"
},
"homepage": "https://github.com/FajarKim/node-openssl-enc#readme",
"funding": [
{
"type": "individual",
"url": "https://buymeacoffee.com/fajarkim"
}
],
"contributors": [
{
"name": "Rangga Fajar Oktariansyah",
"githubUsername": "FajarKim",
"url": "https://github.com/FajarKim"
},
{
"name": "John Chawdrey",
"githubUsername": "qwerty652",
"url": "https://github.com/qwerty652"
},
{
"name": "Xavier Nichole",
"githubUsername": "XavierNotFound",
"url": "https://github.com/XavierNotFound"
}
],
"dependencies": {
"commander": "^12.0.0"
},
"devDependencies": {
"mocha": "^10.2.0"
}
}