forked from KuroLabs/stegcloak
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.05 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
78
79
80
{
"name": "stegcloak",
"keywords": [
"cryptography",
"steganography",
"unicode",
"compression",
"ramdajs",
"steganography-algorithms"
],
"version": "1.0.1",
"main": "stegcloak.js",
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "KuroLabs",
"license": "MIT",
"bin": {
"stegcloak": "./cli.js"
},
"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": {
"browserify-cipher": "^1.0.1",
"chalk": "^4.0.0",
"clipboardy": "^2.3.0",
"commander": "^5.1.0",
"create-hmac": "^1.1.7",
"crypto-browserify": "^3.12.0",
"inquirer": "^7.1.0",
"jsonfile": "^6.0.1",
"lzutf8": "^0.5.5",
"ora": "^4.0.4",
"pbkdf2": "^3.0.17",
"ramda": "^0.27.0",
"randombytes": "^2.1.0",
"safe-buffer": "^5.2.0",
"timing-safe-equal": "^1.0.0"
},
"devDependencies": {
"babel-preset-es2015": "^6.24.1",
"babelify": "^10.0.0",
"browserify": "^16.5.1",
"html-webpack-plugin": "^4.3.0",
"minifyify": "^7.3.5",
"standard": "^14.3.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"standard": {
"ignore": [
"./dist/"
]
}
}