-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 925 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
{
"name": "@ghostylab/serverman",
"version": "0.1.1",
"description": "A command-line tool for managing all your servers all in one place",
"repo": "https://github.com/Giuliano1993/serverManNode",
"main": "./serverMan.js",
"bin": {
"serverman": "./serverMan.js",
"sm": "./serverMan.js"
},
"type": "module",
"scripts": {
"test": "jest",
"postprepare": "node ./postinstall.js"
},
"keywords": [
"server",
"digitalOcean",
"vercel",
"netlify"
],
"author": "Giuliano Gostinfini (Ghostylab)",
"license": "MIT",
"dependencies": {
"dotenv": "^16.3.1",
"inquirer": "^9.2.11",
"jest-extended": "^4.0.2",
"node-ssh": "^13.1.0",
"open": "^10.0.3"
},
"devDependencies": {
"@types/inquirer": "^9.0.4",
"@types/node": "^20.8.3",
"cli-testing-library": "^2.0.2",
"jest": "^29.7.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}