forked from lhotari/action-upterm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 943 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": "action-upterm",
"version": "0.0.0",
"private": true,
"description": "Debug your GitHub Actions via SSH by using upterm/tmux to get access to the runner system itself.",
"main": "lib/index.js",
"scripts": {
"start": "node src/index.js",
"build": "ncc build src/main.js -o lib",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lhotari/action-upterm.git"
},
"keywords": [
"actions",
"ssh",
"debug",
"shell"
],
"author": "GitHub",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/github": "^5.0.0",
"@octokit/auth-action": "^1.3.3",
"@octokit/rest": "^18.9.0"
},
"devDependencies": {
"@babel/core": "^7.16.12",
"@babel/preset-env": "^7.16.11",
"@vercel/ncc": "^0.24.0",
"babel-jest": "^26.3.0",
"jest": "^26.4.2",
"jest-circus": "^26.4.2",
"jest-when": "^3.5.0"
}
}