From c2fa7f378e739850d37e04964bb66cf8d2fb629b Mon Sep 17 00:00:00 2001 From: Chris Butler Date: Sun, 29 Oct 2017 15:06:50 -0400 Subject: [PATCH] remove "main" field from package.json this doesn't actually do anything, and i think it's caused confusion for module authors who try to name their packages one thing and name their main .js file something else --- package.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/package.json b/package.json index 641f296..e269d48 100644 --- a/package.json +++ b/package.json @@ -1,8 +1,7 @@ { "name": "MagicMirror-Module-Template", - "version": "1.2.0", + "version": "1.3.0", "description": "Module Base template for create new modules for MagicMirror", - "main": "MagicMirror-Module-Template.js", "scripts": { "test": "./node_modules/grunt/bin/grunt" },