-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 935 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": "proxy-host",
"version": "1.0.0",
"description": "Seamlessly proxy local websites to view across other devices",
"main": "src/index.js",
"bin": {
"proxy-host": "./bin/proxy-host.js"
},
"repository": {
"type": "git",
"url": "https://github.com/JohnAkerman/proxy-host"
},
"bugs": "https://github.com/JohnAkerman/proxy-host/issues",
"scripts": {
"test": "mocha --recursive test/specs --timeout 10000 --bail --exit"
},
"files": [
"bin",
"src"
],
"author": "John Akerman",
"license": "MIT",
"dependencies": {
"browser-sync": "^2.29.3",
"inquirer": "^9.2.11",
"qrcode-terminal": "^0.12.0"
},
"type": "module",
"keywords": [
"proxy",
"localhost",
"device",
"testing",
"tunnel"
],
"devDependencies": {
"mocha": "^10.2.0"
}
}