forked from alex-myznikov/wetty
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 1.19 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
32
33
34
35
{
"name": "wetty_importable",
"version": "0.2.0",
"scripts": {
"devstart": "./node_modules/.bin/nodemon -p \"require('./app').start({ port: 3000 })\""
},
"dependencies": {
"express": "4.16.2",
"node-pty": "^0.7.8",
"optimist": "^0.6",
"socket.io": "^1.3.7"
},
"devDependencies": {
"grunt": "^0.4",
"grunt-contrib-clean": "^0.6",
"grunt-git": "^0.3",
"grunt-mkdir": "^0.1",
"grunt-shell": "^1.1",
"load-grunt-tasks": "^3.0",
"nodemon": "^1.15.0"
},
"description": "Wetty = Web + tty. Terminal access in browser over http/https. This is a fork from initial Wetty server git://github.com/krishnasrinivas/wetty.git that provides importable functions used to run Wetty server from another node package. It also may be used to connect to several different host:port pairs on behalf of different users.",
"main": "app.js",
"repository": {
"type": "git",
"url": "git://github.com/krishnasrinivas/wetty.git"
},
"author": "Alexander Myznikov <[email protected]> (https://github.com/alex-edev)",
"license": "MIT",
"homepage": "https://github.com/krishnasrinivas/wetty",
"preferGlobal": false,
"bin": {
"wetty": "./bin/wetty.js"
}
}