forked from mxschmitt/action-tmate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 933 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
{
"name": "action-tmate",
"version": "0.0.0",
"private": true,
"description": "Debug your GitHub Actions using tmate and get an interactive SSH session into your runner.",
"main": "lib/main.js",
"scripts": {
"start": "node src/index.js",
"build": "ncc build src/main.js -o lib",
"test": "GITHUB_EVENT_PATH= jest"
},
"repository": {
"type": "git",
"url": "https://github.com/mxschmitt/action-tmate.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "Max Schmitt <[email protected]>",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@actions/tool-cache": "^2.0.1",
"@octokit/rest": "^20.0.1"
},
"devDependencies": {
"@babel/core": "^7.22.11",
"@babel/preset-env": "^7.22.14",
"@vercel/ncc": "^0.36.1",
"babel-jest": "^29.6.4",
"jest": "^29.6.4",
"jest-circus": "^29.6.4"
}
}