-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1022 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 1022 Bytes
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
{
"name": "total-commander-ftp-password-recovery",
"version": "1.0.1",
"description": "Decode Total Commander wcx_ftp.ini FTP passwords from their stored hexadecimal representation.",
"type": "module",
"license": "Apache-2.0",
"homepage": "https://www.pelock.com/products/total-commander-ftp-password-recovery",
"repository": {
"type": "git",
"url": "https://github.com/PELock/Total-Commander-FTP-Password-Recovery-JavaScript.git"
},
"keywords": [
"total-commander",
"ftp",
"password",
"decoder",
"wcx_ftp.ini"
],
"author": "Bartosz Wójcik (https://www.pelock.com)",
"engines": {
"node": ">=18"
},
"exports": {
".": "./src/totalCommanderPasswordDecoder.js"
},
"bin": {
"tc-ftp-password-decode": "./bin/tc-ftp-password-decode"
},
"files": [
"src/totalCommanderPasswordDecoder.js",
"bin/tc-ftp-password-decode",
"README.md",
"LICENSE"
],
"scripts": {
"test": "node --test tests/totalCommanderPasswordDecoder.test.js"
}
}