-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.66 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": "ssh-client-wrapper",
"version": "2.10.2",
"description": "wrapper library for open ssh client and rsync",
"keywords": [
"ssh",
"ssh2",
"secure",
"shell",
"client",
"wrapper",
"rsync"
],
"main": "lib/index.js",
"scripts": {
"mocha": "mocha --recursive test",
"lint": "eslint --fix lib test",
"test": "nyc --reporter=html --reporter=text mocha",
"coverage": "nyc report --reporter=text-lcov > coverage-report.lcov",
"postversion": "git push && git push origin $(git describe --abbrev=0 --tags)",
"prepare": "husky install"
},
"engines": {
"node": ">=12.9"
},
"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.13.0",
"ajv-keywords": "^5.1.0",
"debug": "^4.3.4",
"glob": "^10.3.12",
"node-pty": "^0.10.1",
"promise-retry": "^2.0.1"
},
"devDependencies": {
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"chai-fs": "^2.0.0",
"eslint": "^8.38.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-chai-expect": "^3.0.0",
"eslint-plugin-chai-friendly": "^0.7.4",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"fs-extra": "^11.1.1",
"husky": "^8.0.0",
"lint-staged": "^13.2.1",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"rewire": "^7.0.0",
"sinon": "^15.0.3",
"sinon-chai": "^3.7.0"
}
}