From 0f35e22ee844442b7c4296724434807a60314ee7 Mon Sep 17 00:00:00 2001 From: Orestis Rodriguez Date: Fri, 15 Jul 2022 12:47:10 +0200 Subject: [PATCH] fix: correct main export in package.json --- package.json | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/package.json b/package.json index 0a57117..1bccd8d 100644 --- a/package.json +++ b/package.json @@ -1,14 +1,15 @@ { "name": "urlize", "version": "0.2.1", - "repository": { - "type": "git", - "url": "git://github.com/ile/urlize.git" - }, + "repository": { + "type": "git", + "url": "git://github.com/ile/urlize.git" + }, "description": "Convert strings to be used as urls", - "contributors": [{ "name": "Ilkka Huotari", "email": "ilkkah@gmail.com" }], + "contributors": [ + { "name": "Ilkka Huotari", "email": "ilkkah@gmail.com" } + ], "homepage": "https://github.com/ile/urlize", - "directories" : { "lib" : "./lib" }, - "main" : "./lib/urlize", + "main" : "index.js", "engine": "node >= 0.4.1" -} \ No newline at end of file +}