From 05e498731c14b648fa332ca78d3a301c5e4be440 Mon Sep 17 00:00:00 2001 From: "Moll, Leo" Date: Tue, 27 Jul 2021 09:52:44 +0200 Subject: [PATCH] Fixed broken main-definition in package.json --- package.json | 22 ++++++++++++++-------- 1 file changed, 14 insertions(+), 8 deletions(-) diff --git a/package.json b/package.json index 34c654e..7f49179 100644 --- a/package.json +++ b/package.json @@ -1,15 +1,21 @@ { "name": "node-getopt", "version": "0.3.2", - "author" : "Jiang Miao ", + "author": "Jiang Miao ", "description": "featured command line args parser", - "keywords" : ["getopt", "arg", "parser"], + "keywords": [ + "getopt", + "arg", + "parser" + ], "homepage": "https://github.com/jiangmiao/node-getopt", "license": "MIT", - "repository" : { - "type" : "git", - "url" : "https://github.com/jiangmiao/node-getopt" + "repository": { + "type": "git", + "url": "https://github.com/jiangmiao/node-getopt" }, - "main" : "./lib", - "engines" : { "node": ">= 0.6.0" } -} + "main": "index.js", + "engines": { + "node": ">= 0.6.0" + } +} \ No newline at end of file