-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 951 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": "@distrentic/high-jump-server",
"version": "0.1.1",
"description": "An SSH jump server using ssh2, socket.io and express",
"homepage": "https://github.com/distrentic/high-jump",
"main": "build/index.js",
"scripts": {
"start": "nodemon index.ts",
"build": "tsc --project ."
},
"keywords": ["ssh", "ssh2", "web-ssh", "jump-server", "gateway", "ssh-gateway"],
"author": {
"name": "distrentic"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "http://github.com/distrentic/high-jump.git"
},
"dependencies": {
"express": "^4.17.1",
"high-jump": "file:../lib/dist",
"socket.io": "^4.0.0",
"ssh2": "^0.8.9",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/express": "^4.17.11",
"@types/node": "^14.14.35",
"@types/socket.io": "^2.1.13",
"@types/ssh2": "^0.5.46",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
}
}