-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
43 lines (43 loc) · 1.11 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
{
"name": "node-ssh-forward",
"version": "0.8.0",
"main": "dist/Connection.js",
"author": "Martin Wentzel <[email protected]>",
"license": "MIT",
"description": "Easy to use ssh client with port forwarding and bastion host support",
"dependencies": {
"debug": "^4.3.3",
"ssh2": "^1.5.0"
},
"engines": {
"node": ">=10.16.0"
},
"keywords": [
"node",
"ssh",
"bastion host",
"shell",
"exec",
"forward",
"jump host"
],
"homepage": "https://github.com/Stocard/node-ssh-forward",
"scripts": {
"lint": "tslint -c tslint.json 'test/**/*.ts' 'src/**/*.ts'",
"clean": "rm -rf dist",
"build": "yarn clean && tsc",
"prepublishOnly": "yarn build",
"test": "nyc ./node_modules/mocha/bin/_mocha --ui bdd --recursive --timeout 30000 --require ts-node/register \"test/test.ts\""
},
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/node": "^10.17.60",
"@types/ssh2": "^0.5.50",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"ts-node": "^7.0.1",
"tslint": "^5.20.1",
"tslint-config-airbnb": "^5.11.2",
"typescript": "^3.9.10"
}
}