From c979446572e344277875ddffb755cc7846bc264f Mon Sep 17 00:00:00 2001 From: Marijn Haverbeke Date: Tue, 21 May 2013 14:36:49 +0200 Subject: [PATCH] [package.json] Use 'repository' rather than 'repositories' field Apparently the second is no longer supported in npm 1.2 (?). Closes #42 --- package.json | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 76473c6da4..8be726b2ad 100644 --- a/package.json +++ b/package.json @@ -8,10 +8,8 @@ "maintainers": [{"name": "Marijn Haverbeke", "email": "marijnh@gmail.com", "web": "http://marijnhaverbeke.nl"}], - "repositories": [{"type": "git", - "url": "http://marijnhaverbeke.nl/git/acorn"}, - {"type": "git", - "url": "https://github.com/marijnh/acorn.git"}], + "repository": {"type": "git", + "url": "http://marijnhaverbeke.nl/git/acorn"}, "licenses": [{"type": "MIT", "url": "http://marijnhaverbeke.nl/acorn/LICENSE"}], "scripts": {"test": "node test/run.js"},