From dfa20898dc192b50b5cf9910d89df51a50d30945 Mon Sep 17 00:00:00 2001 From: Lucian Buzzo Date: Mon, 3 Oct 2022 10:33:54 +0100 Subject: [PATCH] fix: Add git url to package.json This allows sites like npm to link back to the source code for the package. Signed-off-by: Lucian Buzzo --- package.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/package.json b/package.json index 808d263..7a99a7f 100644 --- a/package.json +++ b/package.json @@ -3,6 +3,10 @@ "version": "1.0.2", "description": "Detect high entropy strings", "main": "dist/index.js", + "repository": { + "type": "git", + "url": "git@github.com:cerebruminc/detect-high-entropy-strings.git" + }, "scripts": { "test": "jest", "build": "tsc",