From 445cce57eb60045873b64be7b4b2c16b70fb52be Mon Sep 17 00:00:00 2001 From: Nathan Rajlich Date: Wed, 31 Aug 2016 14:20:52 -0700 Subject: [PATCH] package: add "start" script MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit For easy deployment to cloud services, for example now.sh: https://ttyjs-ogtkfxvdxm.now.sh/ (go ahead and destroy the server, it's all good, I can deploy more easily 😉). --- package.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/package.json b/package.json index 73f4c7cd..3a6c5e26 100644 --- a/package.json +++ b/package.json @@ -7,6 +7,9 @@ "main": "./index.js", "bin": "./bin/tty.js", "man": "./man/tty.js.1", + "scripts": { + "start": "node ./bin/tty.js" + }, "preferGlobal": false, "repository": "git://github.com/chjj/tty.js.git", "homepage": "https://github.com/chjj/tty.js",