-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.68 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.68 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
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
94
95
96
97
{
"name": "ssh2-exec",
"version": "0.8.5",
"description": "Transparent usage between `child_process.exec` and `ssh2.prototype.exec`",
"keywords": [
"child process",
"exec",
"ssh2",
"ssh",
"promise"
],
"homepage": "https://github.com/adaltas/node-ssh2-exec",
"license": "MIT",
"author": "David Worms <david@adaltas.com>",
"contributors": [],
"devDependencies": {
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@eslint/js": "^9.39.1",
"@types/mocha": "^10.0.10",
"@types/ssh2": "^1.15.5",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-mocha": "^11.2.0",
"eslint-plugin-prettier": "^5.5.4",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"mocha": "^11.7.5",
"mocha-they": "^0.1.11",
"prettier": "^3.7.3",
"should": "^13.2.3",
"ssh2-connect": "^4.2.0",
"standard-version": "^9.5.0",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typedoc": "^0.28.15",
"typedoc-plugin-markdown": "^4.9.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.48.1"
},
"engines": {
"node": ">=0.10.1"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs"
},
"./promises": {
"import": "./dist/promises.js",
"types": "./dist/promises.d.ts",
"require": "./dist/promises.cjs"
}
},
"files": [
"dist"
],
"lint-staged": {
"*.js": "npm run lint:fix",
"*.md": "prettier -w"
},
"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-exec.git"
},
"scripts": {
"build": "npm run build:check && npm run build:dist",
"build:dist": "tsup-node",
"build:check": "npx tsc --noEmit",
"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"
}