-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
93 lines (93 loc) · 2.55 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "ssh2-fs",
"description": "Transparent use of the `fs` module locally or over SSH",
"version": "1.3.2",
"author": "David Worms <[email protected]> (https://www.adaltas.com)",
"contributors": [],
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@commitlint/cz-commitlint": "^19.5.0",
"@eslint/js": "^9.15.0",
"@types/mocha": "^10.0.10",
"@types/ssh2": "^1.15.1",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"mocha": "~10.8.2",
"mocha-they": "^0.1.11",
"prettier": "^3.4.1",
"should": "~13.2.3",
"ssh2-connect": "^4.2.0",
"ssh2-exec": "~0.8.4",
"standard-version": "^9.5.0",
"ts-node": "^10.9.2",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typedoc": "^0.26.10",
"typedoc-plugin-markdown": "^4.2.9",
"typescript": "^5.6.3",
"typescript-eslint": "^8.16.0"
},
"engines": {
"node": ">= 10.0.0"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"homepage": "https://github.com/adaltas/node-ssh2-fs",
"keywords": [
"child process",
"fs",
"ssh",
"ssh2"
],
"license": "BSD-3-Clause",
"lint-staged": {
"*.js": "npm run lint:fix",
"*.md": "prettier -w"
},
"main": "./lib/index",
"mocha": {
"inline-diffs": true,
"import": "tsx",
"recursive": true,
"reporter": "spec",
"require": [
"should"
],
"throw-deprecation": false,
"timeout": 40000
},
"repository": {
"type": "git",
"url": "https://github.com/adaltas/node-ssh2-fs.git"
},
"scripts": {
"build": "tsup-node",
"docs": "npm run docs:html && npm run docs:md",
"docs:html": "typedoc --readme none --out docs/types/html --skipErrorChecking src/index.ts",
"docs:md": "typedoc --plugin typedoc-plugin-markdown --readme none --out docs/types/md --skipErrorChecking src/index.ts",
"lint:check": "eslint",
"lint:fix": "eslint --fix",
"lint:staged": "npx lint-staged",
"prepare": "husky",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"release:major": "standard-version --release-as major",
"postrelease": "git push --follow-tags origin master",
"test": "mocha 'test/**/*.ts'"
},
"type": "module"
}