-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
36 lines (36 loc) · 822 Bytes
/
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
{
"name": "bash-obfuscate",
"version": "1.2.1",
"description": "A Node.js CLI tool and library to heavily obfuscate bash scripts.",
"main": "main.js",
"scripts": {
"test": "mocha"
},
"bin": {
"bash-obfuscate": "bin/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/willshiao/node-bash-obfuscate.git"
},
"keywords": [
"obfuscate",
"bash",
"cli"
],
"author": "William Shiao <willshiao@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/willshiao/node-bash-obfuscate/issues"
},
"homepage": "https://github.com/willshiao/node-bash-obfuscate#readme",
"dependencies": {
"lodash": "^4.17.3",
"yargs": "^6.5.0"
},
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^5.1.1",
"shelljs": "^0.8.1"
}
}