-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 1.03 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
{
"name": "expose-tunnel",
"version": "1.4.0",
"description": "Easily create tunnels to access your GitHub Action workflows from public endpoints.",
"main": "index.js",
"scripts": {
"build": "ncc build src/main.js --license licenses.txt",
"test": "INPUT_SERVICE=bore.pub INPUT_PORT=8080 node src/main.js",
"test:bore.selfhosted": "INPUT_SERVICE=bore.selfhosted INPUT_PORT=8080 INPUT_SELFHOSTEDENDPOINT=localhost INPUT_FALLBACK='[\"bore.pub\"]' node src/main.js",
"test:localhost.run": "INPUT_SERVICE=localhost.run INPUT_PORT=8080 node src/main.js",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codetalkio/expose-tunnel.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/codetalkio/expose-tunnel/issues"
},
"homepage": "https://github.com/codetalkio/expose-tunnel#readme",
"dependencies": {
"@actions/core": "1.10.0"
},
"devDependencies": {
"@vercel/ncc": "0.34.0",
"husky": "8.0.2"
}
}