-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.43 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
{
"name": "ts-ssh",
"version": "0.0.5",
"description": "Async TypeScript client wrapper over JavaScript ssh2 providing convience for tunneling, shelling, and exec'ing.",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"compile": "./node_modules/.bin/tsc"
},
"author": "Greg Zapp (ProTip)",
"repository": {
"type": "git",
"url": "https://github.com/ProTip/ssh2-async.git"
},
"license": "ISC",
"devDependencies": {
"@types/del": "^3.0.1",
"@types/gulp": "^4.0.5",
"@types/gulp-shell": "0.0.31",
"@types/jest": "^22.2.3",
"@types/node": "^9.6.6",
"@types/ssh2": "^0.5.35",
"del": "^3.0.0",
"gulp": "^3.9.1",
"gulp-cli": "^2.0.1",
"gulp-shell": "^0.6.5",
"gulp-typescript": "^4.0.2",
"gulpclass": "^0.1.2",
"jest": "^23.2.0",
"replace": "^0.3.0",
"ts-jest": "^23.10.1",
"ts-node": "^6.0.0",
"typescript": "^3.7.5"
},
"dependencies": {
"promise-queue": "^2.2.5",
"ssh2": "^0.6.0"
},
"files": [
"dist/**/*",
"README.md"
],
"jest": {
"preset": "ts-jest",
"roots": [
"src"
],
"moduleDirectories": [
"node_modules",
"src"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
".(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testMatch": [
"**/*.(spec|test).(ts|tsx|js)"
]
}
}