-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 855 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 855 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "Hash Me",
"version": "1.0.0",
"description": "HashMe is a command-line tool that uses secure cryptographic hashing algorithms to generate a hashed text file. It leverages NodeJS's Cluster module to perform parallel processing and optimize performance by dividing the workload among multiple threads based on available cores. Ideal for those seeking an easy and quick way to secure sensitive information.",
"main": "index-s.js",
"type": "module",
"scripts": {
"parallelHash": "node index-p.js",
"serialHash": "node index-s.js"
},
"author": "Phyo Pyae Sone Han",
"license": "ISC",
"dependencies": {
"chalk": "^5.0.0",
"clear": "^0.1.0",
"cli-progress": "^3.10.0",
"crypto-js": "^4.1.1",
"figlet": "^1.5.2",
"inquirer": "^8.2.0",
"log-symbols": "^5.1.0",
"pretty-hrtime": "^1.0.3"
}
}