-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 2.87 KB
/
package.json
File metadata and controls
120 lines (120 loc) · 2.87 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "@microsoft/dev-tunnels-ssh",
"description": "SSH library for Dev Tunnels",
"keywords": [
"SSH"
],
"author": "Microsoft",
"license": "MIT",
"main": "out/lib/ssh/index.js",
"scripts": {
"build": "node ./build.js build",
"test": "node ./build.js test",
"pack": "node ./build.js pack",
"build-cs": "node ./build.js build-cs",
"build-ts": "node ./build.js build-ts",
"build-browsertest": "node ./build.js build-browsertest",
"pack-cs": "node ./build.js pack-cs",
"pack-ts": "node ./build.js pack-ts",
"test-cs": "node ./build.js test-cs",
"test-ts": "node ./build.js test-ts",
"bench-cs": "node ./build.js bench-cs",
"build-go": "node ./build.js build-go",
"test-go": "node ./build.js test-go",
"bench-ts": "node ./build.js bench-ts",
"bench-go": "node ./build.js bench-go",
"compile": "tsc --build",
"eslint": "eslint . --ext ts",
"eslint-fix": "eslint . --ext ts --fix",
"watch": "tsc --build --watch",
"test-server": "node out/lib/ssh-test/cli.js sshd -w -p 9880",
"mocha": "mocha"
},
"dependencies": {
"buffer": "^5.2.1",
"diffie-hellman": "^5.0.3",
"vscode-jsonrpc": "^8.0.2"
},
"devDependencies": {
"@testdeck/mocha": "^0.3.3",
"@types/debug": "^4.1.4",
"@types/diffie-hellman": "^5.0.0",
"@types/mocha": "^5.2.6",
"@types/node": "^20.6.0",
"@types/node-rsa": "^1.0.0",
"@types/tmp": "0.0.34",
"@types/websocket": "1.0.4",
"@types/yargs": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"brfs": "^2.0.2",
"browserify": "^16.2.3",
"chalk": "^2.4.2",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsdoc": "^46.6.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-security": "^1.7.1",
"mocha": "^9.2.2",
"mocha-junit-reporter": "^2.0.2",
"mocha-multi-reporters": "^1.1.7",
"moment": "^2.29.4",
"nerdbank-gitversioning": "^3.5.113",
"node-rsa": "^1.0.5",
"prettier": "^2.8.4",
"source-map-support": "^0.5.11",
"tmp": "^0.2.4",
"typescript": "^4.9.5",
"websocket": "^1.0.34",
"yargs": "^17.2.1"
},
"mocha": {
"require": "source-map-support/register",
"spec": [
"out/lib/ssh-test/*Tests.js"
]
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2019,
"sourceType": "module",
"project": "./tsconfig.eslint.json"
},
"extends": [
"prettier"
],
"plugins": [
"@typescript-eslint/tslint",
"prettier"
],
"rules": {
"prettier/prettier": "error",
"@typescript-eslint/tslint/config": [
2,
{
"lintFile": "./tslint.json"
}
]
}
},
"eslintIgnore": [
"bench",
"out",
"test"
],
"prettier": {
"printWidth": 100,
"useTabs": true,
"tabWidth": 3,
"semi": true,
"singleQuote": true,
"trailingComma": "all",
"arrowParens": "always",
"parser": "typescript"
}
}