From 4fdb3cf5665b7dccac43e351703f98381bce6d66 Mon Sep 17 00:00:00 2001 From: PatrickJS Date: Sat, 24 Jan 2015 10:50:18 -0800 Subject: [PATCH] chore(package.json): npm No repository field. npm install yields a warning ```bash npm WARN package.json angular@0.0.0 No repository field. ``` also include `"bugs": "https://github.com/angular/angular/issues"` --- package.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/package.json b/package.json index 3b71863483..ba2be89c3d 100644 --- a/package.json +++ b/package.json @@ -2,6 +2,11 @@ "name": "angular", "version": "0.0.0", "description": "Angular", + "repository": { + "type": "git", + "url": "https://github.com/angular/angular.git" + }, + "bugs": "https://github.com/angular/angular/issues", "scripts": { "test": "echo \"Error: no test specified\" && exit 1" },