-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.96 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
54
55
56
57
58
59
60
61
62
63
{
"name": "ssh_tunnel_proxy",
"author": "Autonomous",
"license": "MIT",
"version": "2.1.3",
"description": "setup ssh tunnel with local and remote port forwarding, node ssh cli interface, use ngrok to obtain host:port",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "typings/index.d.ts",
"scripts": {
"build": "npm run build:cjs && npm run build:esm && npm run build:types && npm run build:testbench",
"build:cjs": "node tools/cleanup cjs && tsc -p config/tsconfig.cjs.json",
"build:esm": "node tools/cleanup esm && tsc -p config/tsconfig.esm.json",
"build:types": "node tools/cleanup types && tsc -p config/tsconfig.types.json",
"build:testbench": "tsc -p config/tsconfig.testbench.json",
"lint": "eslint \"src/*.ts\"",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "git add -A src",
"postversion": "git push && git push --tags",
"test": "mocha --exit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/autonomous1/ssh_tunnel_proxy"
},
"files": [
"dist/**/*",
"ssh2-node"
],
"bin": {
"ssh2-node": "./ssh2-node"
},
"dependencies": {
"@ngrok/ngrok-api": "^0.9.0",
"bluebird": "^3.7.2",
"commander": "^10.0.0",
"electron-ssh2": "^0.1.2",
"form-data": "^4.0.0",
"fs": "^0.0.1-security",
"keytar": "^7.9.0",
"net": "^1.0.2",
"os": "^0.1.2",
"split": "^1.0.1",
"sshpk": "^1.17.0",
"through": "^2.3.8",
"through2": "^4.0.2"
},
"devDependencies": {
"@types/node": "^18.13.0",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"eslint": "^8.34.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"mocha": "^10.2.0",
"sinon": "^15.0.1",
"typescript": "^4.9.5"
}
}