From 4a369fcda32c5238b8c20daeb2a34e5d375dfb8a Mon Sep 17 00:00:00 2001 From: Chris Krycho Date: Fri, 20 Dec 2024 17:02:58 -0700 Subject: [PATCH] chore: make release-able by fixing `repository` in package.json Without this: ``` ERROR npm warn publish npm auto-corrected some errors in your package.json when publishing. Please run "npm pkg fix" to address these errors. ``` Running `npm pkg fix` results in this change. --- package.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 3c33760..e2ee0e5 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,10 @@ "keywords": [ "ember-addon" ], - "repository": "git@github.com:emberjs/ember-render-modifiers.git", + "repository": { + "type": "git", + "url": "git+ssh://git@github.com/emberjs/ember-render-modifiers.git" + }, "license": "MIT", "author": "Robert Jackson ", "main": "index.js",