forked from kstafford3/ssh2-shell-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 975 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
37
38
39
40
41
42
43
{
"name": "ssh2-shell-server",
"version": "2.2.0",
"description": "A wrapper for ssh2 with an eye toward interactive shells.",
"main": "lib/index",
"scripts": {
"test": "mocha --recursive"
},
"repository": {
"type": "git",
"url": "https://github.com/kstafford3/ssh2-shell-server.git"
},
"author": "kstafford3",
"license": "MIT",
"keywords": [
"ssh",
"ssh2",
"server",
"secure",
"shell",
"remote",
"client",
"interactive",
"wrapper"
],
"dependencies": {
"ssh2": "^0.5.5"
},
"devDependencies": {
"buffer-equal-constant-time": "^1.0.1",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"eslint": "^4.12.1",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"mocha": "^4.0.1",
"sinon": "^4.1.2",
"sinon-chai": "^2.14.0"
}
}