Browse Source

Command line configuration added for NPM.

pull/15/head
Boyan Rabchev 10 years ago
parent
commit
e39ad7aa23
  1. 48
      package.json

48
package.json

@ -1,24 +1,28 @@
{ {
"name": "wetty", "name": "wetty",
"version": "0.0.9", "version": "0.0.9",
"dependencies": { "dependencies": {
"express": "3.5.1", "express": "3.5.1",
"websocket": "", "websocket": "",
"pty.js": "git+https://github.com/terryschen/pty.js", "pty.js": "git+https://github.com/terryschen/pty.js",
"optimist": "", "optimist": "",
"waitpid": "" "waitpid": ""
}, },
"description": "Wetty = Web + tty. Terminal access in browser over http/https ", "description": "Wetty = Web + tty. Terminal access in browser over http/https ",
"main": "app.js", "main": "app.js",
"devDependencies": {}, "devDependencies": {},
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git://github.com/krishnasrinivas/wetty.git" "url": "git://github.com/krishnasrinivas/wetty.git"
}, },
"author": "Krishna Srinivas <krishna.srinivas@gmail.com> (https://github.com/krishnasrinivas)", "author": "Krishna Srinivas <krishna.srinivas@gmail.com> (https://github.com/krishnasrinivas)",
"license": "MIT", "license": "MIT",
"bugs": { "bugs": {
"url": "https://github.com/krishnasrinivas/wetty/issues" "url": "https://github.com/krishnasrinivas/wetty/issues"
}, },
"homepage": "https://github.com/krishnasrinivas/wetty" "homepage": "https://github.com/krishnasrinivas/wetty",
"preferGlobal": "true",
"bin": {
"wetty": "./bin/wetty.js"
}
} }

Loading…
Cancel
Save