From 8513201fa3a83102ff2ff74836623ae77413465f Mon Sep 17 00:00:00 2001 From: Sheel Choksi Date: Sat, 2 Nov 2013 18:28:12 -0700 Subject: [PATCH] Add in missing repository field to package.json Removes the following warning when doing a `npm install`: 'npm WARN package.json jasmine-core@2.0.0-rc5 No repository field.' --- package.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/package.json b/package.json index d1d62e20..7650540a 100644 --- a/package.json +++ b/package.json @@ -2,6 +2,10 @@ "name": "jasmine-core", "license": "MIT", "version": "2.0.0-rc5", + "repository": { + "type": "git", + "url": "https://github.com/pivotal/jasmine.git" + }, "devDependencies": { "grunt": "~0.4.1", "grunt-contrib-jshint": "~0.7.0",