From e39ad7aa23089db79e1023427ebf093ee9c1ebba Mon Sep 17 00:00:00 2001 From: Boyan Rabchev Date: Sat, 28 Mar 2015 16:56:53 +0200 Subject: [PATCH] Command line configuration added for NPM. --- package.json | 48 ++++++++++++++++++++++++++---------------------- 1 file changed, 26 insertions(+), 22 deletions(-) diff --git a/package.json b/package.json index 36ad19d..77d1eda 100644 --- a/package.json +++ b/package.json @@ -1,24 +1,28 @@ { - "name": "wetty", - "version": "0.0.9", - "dependencies": { - "express": "3.5.1", - "websocket": "", - "pty.js": "git+https://github.com/terryschen/pty.js", - "optimist": "", - "waitpid": "" - }, - "description": "Wetty = Web + tty. Terminal access in browser over http/https ", - "main": "app.js", - "devDependencies": {}, - "repository": { - "type": "git", - "url": "git://github.com/krishnasrinivas/wetty.git" - }, - "author": "Krishna Srinivas (https://github.com/krishnasrinivas)", - "license": "MIT", - "bugs": { - "url": "https://github.com/krishnasrinivas/wetty/issues" - }, - "homepage": "https://github.com/krishnasrinivas/wetty" + "name": "wetty", + "version": "0.0.9", + "dependencies": { + "express": "3.5.1", + "websocket": "", + "pty.js": "git+https://github.com/terryschen/pty.js", + "optimist": "", + "waitpid": "" + }, + "description": "Wetty = Web + tty. Terminal access in browser over http/https ", + "main": "app.js", + "devDependencies": {}, + "repository": { + "type": "git", + "url": "git://github.com/krishnasrinivas/wetty.git" + }, + "author": "Krishna Srinivas (https://github.com/krishnasrinivas)", + "license": "MIT", + "bugs": { + "url": "https://github.com/krishnasrinivas/wetty/issues" + }, + "homepage": "https://github.com/krishnasrinivas/wetty", + "preferGlobal": "true", + "bin": { + "wetty": "./bin/wetty.js" + } }