-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.58 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
{
"name": "hivessh",
"version": "1.1.0",
"description": "HiveSsh simplifies SSH2 connections via promise-based task execution on Linux servers with built-in server utilities and powerful command execution functions",
"main": "dist/index.js",
"type": "module",
"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",
"TypeScript",
"scalable",
"managing",
"manage",
"promise",
"async",
"tool"
],
"author": {
"name": "Majo Richter",
"alias": "NobleMajo",
"email": "majo@coreunit.net",
"url": "https://github.com/NobleMajo"
},
"homepage": "https://github.com/NobleMajo/hivelib",
"bugs": {
"url": "https://github.com/NobleMajo/hivelib/issues"
},
"repository": {
"type": "git",
"url": "git@github.com:NobleMajo/hivelib.git"
},
"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"
}
}