forked from KuroLabs/stegcloak
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.43 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
{
"name": "stegcloak",
"keywords": [
"cryptography",
"steganography",
"unicode",
"compression",
"ramdajs",
"steganography-algorithms"
],
"version": "1.1.1",
"main": "stegcloak.js",
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"build": "node build.js",
"test": "node test.js"
},
"author": "KuroLabs",
"license": "MIT",
"homepage": "https://github.com/KuroLabs/stegcloak/blob/master/README.md",
"description": "StegCloak is a pure JavaScript steganography module designed in functional programming style, to hide text in plain sight - with key features like encryption and top-notch text compression. It can be used in social media or for any other covert communication.",
"repository": {
"type": "git",
"url": "https://github.com/KuroLabs/stegcloak"
},
"contributors": [
{
"name": "Jyothishmathi CV",
"email": "[email protected]",
"url": "https://github.com/JyothishmathiCV"
},
{
"name": "Kandavel A",
"email": "[email protected]",
"url": "https://github.com/AK5123"
},
{
"name": "Mohanasundar M",
"email": "[email protected]",
"url": "https://github.com/mohanpierce99"
}
],
"dependencies": {
"lzutf8": "^0.6.3",
"rambda": "^9.2.1"
},
"devDependencies": {
"esbuild": "^0.23.0",
"standard": "^17.1.0"
},
"standard": {
"ignore": [
"./dist/"
]
}
}