From b36519fbc824fc6f046034016c28b7bd1bfe4417 Mon Sep 17 00:00:00 2001 From: Frazer Smith Date: Mon, 18 Nov 2024 12:58:47 +0000 Subject: [PATCH] chore(package): fix repository url; add homepage and bugs urls --- package.json | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index f8a596d6..f07d1764 100644 --- a/package.json +++ b/package.json @@ -24,7 +24,14 @@ "version": "9.1.1", "main": "index.js", "type": "commonjs", - "repository": "github:tediousjs/node-mssql", + "repository": { + "type": "git", + "url": "git+https://github.com/tediousjs/node-mssql.git" + }, + "homepage": "https://github.com/tediousjs/node-mssql#readme", + "bugs": { + "url": "https://github.com/tediousjs/node-mssql/issues" + }, "license": "MIT", "dependencies": { "@tediousjs/connection-string": "^0.6.0", @@ -64,6 +71,6 @@ "test-cli": "mocha --exit -t 15000 test/common/cli.js" }, "bin": { - "mssql": "./bin/mssql" + "mssql": "bin/mssql" } }