-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
71 lines (71 loc) · 1.71 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
64
65
66
67
68
69
70
71
{
"name": "hivessh",
"version": "1.2.0",
"description": "HiveSsh is an innovative library designed to streamline SSH2 connections and simplify task execution on Linux servers.",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"scripts": {
"start": "node --enable-source-maps dist/index.js",
"build": "tsc",
"testl": "tsc && node --env-file=.env --enable-source-maps dist/test/ubuntuServer.test.js",
"exec": "tsc && node --enable-source-maps dist/index.js",
"dev": "nodemon -w ./src --ext *.ts -x \"tsc && node --enable-source-maps dist/index.js\""
},
"keywords": [
"ssh",
"Ssh2",
"Sftp",
"ansible",
"hive",
"linux",
"open-source",
"DevOps",
"configuring",
"configuration",
"library",
"lib",
"virtualization",
"deployment",
"abstraction",
"multi-cloud",
"automation",
"auto",
"provisioning",
"scalable",
"managing",
"manage",
"promise",
"async",
"tool",
"typescript",
"opensource"
],
"homepage": "https://github.com/NobleMajo/hivessh",
"repository": {
"type": "git",
"url": "git+https://github.com/NobleMajo/hivessh.git"
},
"bugs": "https://github.com/NobleMajo/hivessh/issues",
"author": {
"name": "NobleMajo",
"email": "[email protected]",
"url": "https://noblemajo.de/en/"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^20.12.7",
"@types/ssh2": "^1.15.0",
"nodemon": "^3.1.0",
"typescript": "^5.4.3"
},
"dependencies": {
"ssh2": "^1.15.0"
}
}