-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 873 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
{
"name": "ssh-tunnel",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node build/index.js",
"dev": "nodemon src/index.ts",
"build": "tsc",
"test": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lungers/ssh-tunnel.git"
},
"author": "Avrumy",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/lungers/ssh-tunnel/issues"
},
"homepage": "https://github.com/lungers/ssh-tunnel#readme",
"dependencies": {
"dotenv": "^10.0.0",
"envalid": "^7.2.1",
"ssh2": "^1.3.0"
},
"devDependencies": {
"@types/node": "^16.7.10",
"@types/ssh2": "^0.5.48",
"nodemon": "^2.0.12",
"ts-node": "^10.2.1",
"typescript": "^4.4.2"
}
}