forked from garygrossgarten/github-action-scp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 879 Bytes
/
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
{
"name": "@garygrossgarten/github-action-scp",
"version": "0.8.0",
"description": "Copy a folder to a remote server using SSH.",
"repository": {
"type": "git",
"url": "https://github.com/garygrossgarten/github-action-ssh"
},
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"pack": "ncc build"
},
"bin": {
"github-action-ssh": "dist/index.js"
},
"preferGlobal": false,
"keywords": [
"typescript",
"github",
"github-actions",
"actions",
"ssh"
],
"author": "garygrossgarten",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.6",
"node-ssh": "^11.1.1"
},
"devDependencies": {
"@types/node": "^12.7.12",
"@zeit/ncc": "^0.22.3",
"prettier": "^2.2.0",
"typescript": "4.1.2"
}
}