From 95c205e2d81b7ac3f8fa0342b1d2f0ac7f07c2ba Mon Sep 17 00:00:00 2001 From: Peter deHaan Date: Wed, 13 Nov 2013 15:11:43 -0800 Subject: [PATCH] Update package.json Adding GitHub repo URL and a couple other fields to help pass http://package-json-validator.com/ validator. --- package.json | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index bc40240..d27d6fa 100644 --- a/package.json +++ b/package.json @@ -5,10 +5,13 @@ "keywords" : ["inspector", "debug", "inspect", "print"], "author" : "Alexis Sellier ", "contributors" : [{ "name": "Charlie Robbins", "email": "charlie@nodejitsu.com" }], - "licenses" : ["MIT"], + "licenses" : [{ "type": "MIT", "url": "https://raw.github.com/cloudhead/eyes.js/master/LICENSE" }], "main" : "./lib/eyes", "version" : "0.1.8", "scripts" : { "test": "node test/*-test.js" }, "directories" : { "lib": "./lib", "test": "./test" }, - "engines" : { "node": "> 0.1.90" } + "engines" : { "node": "> 0.1.90" }, + "bugs" : "https://github.com/cloudhead/eyes.js/issues", + "homepage" : "https://github.com/cloudhead/eyes.js/", + "repository" : { "type" : "git", "url" : "https://github.com/cloudhead/eyes.js/issues" } }