forked from lukechilds/reverse-shell
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 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
{
"name": "reverse-shell",
"version": "1.1.2",
"description": "Reverse Shell as a Service - https://shell.now.sh",
"main": "src/index.js",
"files": [
"src"
],
"scripts": {
"start": "micro",
"test": "xo && nyc ava",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"deploy": "now --public --env NODE_ENV=production && now alias"
},
"now": {
"alias": [
"shell",
"reverseshell",
"xn--io8h"
]
},
"xo": {
"extends": "xo-lukechilds"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lukechilds/reverse-shell.git"
},
"keywords": [
"reverse",
"shell",
"pentest"
],
"author": "Luke Childs <lukechilds123@gmail.com> (http://lukechilds.co.uk)",
"license": "MIT",
"bugs": {
"url": "https://github.com/lukechilds/reverse-shell/issues"
},
"homepage": "https://github.com/lukechilds/reverse-shell",
"dependencies": {
"micro": "^9.0.0"
},
"devDependencies": {
"ava": "^0.25.0",
"coveralls": "^3.0.0",
"eslint-config-xo-lukechilds": "^1.0.0",
"nyc": "^11.0.3",
"this": "^1.0.2",
"xo": "^0.20.1"
}
}