-
Notifications
You must be signed in to change notification settings - Fork 58
/
package.json
53 lines (53 loc) · 1.13 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
{
"name": "novahot",
"version": "1.1.0",
"description": "A webshell framework for penetration testers.",
"homepage": "https://github.com/chrisallenlane/novahot",
"author": {
"name": "Chris Allen Lane",
"email": "chris@chris-allen-lane.com"
},
"scripts": {
"lint": "jshint app test",
"test": "tape 'test/*.js' | faucet"
},
"jshintConfig": {
"esnext": true,
"expr": true,
"laxbreak": true
},
"dependencies": {
"chalk": "^2.4.1",
"docopt": "^0.6.2",
"lodash": "4.17.10",
"md5-file": "^4.0.0",
"mime-types": "^2.1.19",
"mkdirp": "^0.5.1",
"rc": "^1.2.8",
"request": "^2.88.0",
"shellwords": "^0.1.1",
"shelly": "0.0.3",
"tmp": "0.0.33"
},
"devDependencies": {
"faucet": "0.0.1",
"jshint": "2.9.6",
"tape": "^4.9.1"
},
"keywords": [
"penetration-testing",
"security",
"webshell"
],
"repository": {
"type": "git",
"url": "https://github.com/chrisallenlane/novahot.git"
},
"bugs": {
"url": "https://github.com/chrisallenlane/novahot/issues"
},
"bin": {
"novahot": "./app/index.js"
},
"main": "./app/index.js"
}