-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 985 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 985 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
{
"name": "steganography-online-codec",
"main": "./src/SteganographyOnlineCodec.mjs",
"version": "1.0.1",
"description": "Steganography Online Codec allows you to hide a password encrypted message within the images & photos using AES encryption algorithm with a 256-bit PBKDF2 derived key.",
"type": "module",
"keywords": [
"steganography", "stego", "stegano", "cryptography", "security", "image", "secret", "aes", "encryption"
],
"license": "Apache-2.0",
"authors": [
{
"name": "Bartosz Wójcik",
"email": "support@pelock.com",
"homepage": "https://www.pelock.com"
}
],
"repository": {
"type": "git",
"url": "https://github.com/PELock/Steganography-Online-Codec-JavaScript"
},
"dependencies": {
"form-data": "latest",
"node-fetch": "latest"
},
"devDependencies": {
"cross-env": "^7.0.3",
"jest": "^29.4.3"
},
"scripts": {
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest"
}
}