From 3e9363a8bd2081799a76a674fcfa561938f79665 Mon Sep 17 00:00:00 2001 From: Chris Chua Date: Mon, 20 Jan 2014 20:53:56 -0800 Subject: [PATCH] fix package.json to include repository npm would warn that there isn't a repository field. --- package.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 43e046d..9191844 100644 --- a/package.json +++ b/package.json @@ -11,5 +11,9 @@ "engines": { "node": ">0.8.x" }, - "main": "./lib/daemonize.js" + "main": "./lib/daemonize.js", + "repository": { + "type": "git", + "url": "https://github.com/niegowski/node-daemonize2.git" + } }