From efd1ea28df5ef0f11428b3d2e3b9591d188c7e44 Mon Sep 17 00:00:00 2001 From: Melroy van den Berg Date: Fri, 27 Oct 2017 16:54:02 +0200 Subject: [PATCH] Support npm start Fill-in the missing pieces in the package.json file. From now on `npm start` just works like all other nodejs apps. --- package.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/package.json b/package.json index e00d9211..e1589314 100644 --- a/package.json +++ b/package.json @@ -4,6 +4,10 @@ "description": "ENiGMA½ Bulletin Board System", "author": "Bryan Ashby ", "license": "BSD-2-Clause", + "main": "./core/bbs", + "scripts": { + "start": "node main" + }, "repository": { "type": "git", "url": "https://github.com/NuSkooler/enigma-bbs.git"