-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
36 lines (36 loc) · 872 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
{
"name": "sshcon",
"version": "1.0.0",
"description": "Quick and simple SSH config management tool",
"main": "dist/index.js",
"scripts": {
"start": "yarn run build && clear && node dist/index.js",
"build": "tsc",
"lint": "tslint -c tslint.json src/**/*.ts src/*.ts",
"lint:fix": "yarn run lint --fix",
"clean": "rm -rf dist/*"
},
"preferGlobal": true,
"bin": {
"sshcon": "./bin/sshcon"
},
"repository": {
"type": "git",
"url": "https://github.com/oguzhaninan/sshcon.git"
},
"author": {
"name": "Oğuzhan İNAN",
"email": "[email protected]",
"url": "https://oguzhaninan.gitlab.io"
},
"license": "MIT",
"dependencies": {
"chalk-pipe": "^2.0.0",
"enquirer": "^2.2.0",
"ssh-config": "^1.1.5",
"typescript": "^3.7.5"
},
"devDependencies": {
"@types/node": "^12.0.12"
}
}