UNPKG

1.1 kBJSONView Raw
1{
2 "name": "ssh2",
3 "version": "1.2.0",
4 "author": "Brian White <mscdex@mscdex.net>",
5 "description": "SSH2 client and server modules written in pure JavaScript for node.js",
6 "main": "./lib/index.js",
7 "engines": {
8 "node": ">=10.16.0"
9 },
10 "dependencies": {
11 "asn1": "^0.2.4",
12 "bcrypt-pbkdf": "^1.0.2"
13 },
14 "devDependencies": {
15 "@mscdex/eslint-config": "^1.0.0",
16 "eslint": "^7.0.0"
17 },
18 "optionalDependencies": {
19 "cpu-features": "0.0.2",
20 "nan": "^2.14.2"
21 },
22 "scripts": {
23 "install": "node install.js",
24 "rebuild": "node install.js",
25 "test": "node test/test.js",
26 "lint": "eslint --cache --report-unused-disable-directives --ext=.js .eslintrc.js examples lib test",
27 "lint:fix": "npm run lint -- --fix"
28 },
29 "keywords": [
30 "ssh",
31 "ssh2",
32 "sftp",
33 "secure",
34 "shell",
35 "exec",
36 "remote",
37 "client"
38 ],
39 "licenses": [
40 {
41 "type": "MIT",
42 "url": "http://github.com/mscdex/ssh2/raw/master/LICENSE"
43 }
44 ],
45 "repository": {
46 "type": "git",
47 "url": "http://github.com/mscdex/ssh2.git"
48 }
49}