-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
41 lines (41 loc) · 932 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
40
41
{
"name": "remoto",
"version": "0.1.0",
"description": "Remoto is a remote terminal that runs on browser like an easy to use SSH",
"main": "app.js",
"bin": {
"remoto-server": "./app.js",
"remoto": "./terminal.js"
},
"dependencies": {
"basic-auth-connect": "^1.0.0",
"express": "^4.13.4",
"minimist": "^1.2.0",
"pty.js": "^0.3.0",
"ws": "^1.1.0"
},
"devDependencies": {},
"scripts": {
"start": "node app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hugoabonizio/remoto.git"
},
"keywords": [
"ssh",
"terminal",
"console",
"remote"
],
"author": "Hugo Abonizio",
"license": "ISC",
"bugs": {
"url": "https://github.com/hugoabonizio/remoto/issues"
},
"homepage": "https://github.com/hugoabonizio/remoto#readme",
"engines": {
"node": ">=5.0.0"
}
}