-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.36 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.36 KB
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
{
"name": "ssh-bot",
"version": "0.1.4",
"description": "A dummy ssh hosts management tool",
"main": "./bin/index.js",
"engines": {
"node": ">=10"
},
"bin": {
"shb": "./bin/index.js"
},
"scripts": {
"build": "npm run clean; tsc -p .",
"clean": "rimraf bin",
"format": "prettier --write \"{,!(node_modules|bin)/**/}*.{ts,json}\"",
"jest": "jest && codecov",
"shb": "npm run build; node bin/index.js",
"tslint": "tslint -t verbose -c tslint.json -p . 'src/**/*.ts{,x}'"
},
"author": {
"name": "Wei Li",
"email": "zeckli.devforgalaxy@gmail.com",
"url": "https://github.com/zeckli"
},
"license": "MIT",
"repository": "zeckli/ssh-bot",
"keywords": [
"bot",
"command-line",
"shell",
"ssh",
"ssh-bot",
"typescript",
"xterm"
],
"dependencies": {
"chalk": "^2.4.1",
"commander": "^2.19.0",
"figures": "^2.0.0",
"node-pty": "^0.7.8",
"prompts": "^2.0.0",
"rimraf": "^2.6.2",
"signale": "^1.3.0"
},
"devDependencies": {
"@types/figures": "^2.0.0",
"@types/jest": "^23.3.10",
"@types/node": "^10.12.2",
"@types/prompts": "^1.1.1",
"@types/rimraf": "^2.0.2",
"@types/signale": "^1.2.0",
"codecov": "^3.1.0",
"jest": "^23.6.0",
"prettier": "^1.15.2",
"ts-jest": "^23.10.5",
"tslint": "^5.11.0",
"typescript": "^3.1.6"
}
}