-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.76 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.76 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
60
61
62
63
64
65
66
67
{
"name": "ssh-client-wrapper",
"version": "2.15.0",
"description": "wrapper library for open ssh client and rsync",
"keywords": [
"ssh",
"ssh2",
"secure",
"shell",
"client",
"wrapper",
"rsync"
],
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"mocha": "mocha --recursive test",
"lint": "eslint --fix ./",
"test": "c8 --reporter=html --reporter=text mocha --recursive test",
"coverage": "c8 report --reporter=text-lcov > coverage-report.lcov",
"prepare": "husky"
},
"engines": {
"node": ">=16.0.0"
},
"author": "Naoyuki Sogo <sogo@longtail-software.co.jp>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/so5/ssh-client-wrapper"
},
"homepage": "https://github.com/so5/ssh-client-wrapper#readme",
"lint-staged": {
"*.js": "eslint --fix"
},
"dependencies": {
"ajv": "^8.17.1",
"ajv-keywords": "^5.1.0",
"debug": "^4.4.3",
"glob": "^12.0.0",
"node-pty-prebuilt-multiarch": "^0.10.1-pre.5"
},
"devDependencies": {
"@eslint/js": "^9.33.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.4",
"@semantic-release/npm": "^12.0.2",
"@stylistic/eslint-plugin": "^5.2.3",
"c8": "^10.1.3",
"chai": "^5.3.1",
"chai-as-promised": "^8.0.1",
"eslint-plugin-chai-expect": "^3.1.0",
"eslint-plugin-chai-friendly": "^1.1.0",
"eslint-plugin-jsdoc": "^54.1.0",
"eslint-plugin-node": "^11.1.0",
"fs-extra": "^11.3.1",
"globals": "^16.3.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.5",
"mocha": "^11.7.1",
"semantic-release": "^24.2.7",
"sinon": "^21.0.0",
"sinon-chai": "^4.0.0"
}
}