From 1815fdc44bb3d6145ff80a62e6631ee3676c7cb5 Mon Sep 17 00:00:00 2001 From: Sindre Sorhus Date: Mon, 26 Mar 2018 15:56:53 +0700 Subject: [PATCH] Fix package.json Those dependencies are for development, so `devDependencies` is what you want. I also did a couple of other simplifications/corrections. --- package.json | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/package.json b/package.json index d52c02e1..ab525f1a 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ "homepage": "https://github.com/cjdowner/cryptocurrency-icons", "author": { "name": "Christopher Downer", - "web": "https://github.com/cjdowner" + "url": "https://github.com/cjdowner" }, "scripts": { "minify-images:32:black": "imagemin '32/black/*' --out-dir='build/32/black'", @@ -65,13 +65,9 @@ "build": "npm run minify-images && npm run imacss && npm run svgstore", "prebuild": "npm run clean" }, - "repository": { - "type": "git", - "url": "https://github.com/cjdowner/cryptocurrency-icons.git" - }, + "repository": "cjdowner/cryptocurrency-icons", "license": "CC0-1.0", - "devDependencies": {}, - "dependencies": { + "devDependencies": { "concat": "^1.0.3", "imacss": "^1.0.0", "imagemin-cli": "^3.0.0",