From 4efc4b1b2d04592d04b32de97a432b5417d7fa82 Mon Sep 17 00:00:00 2001 From: Jason Anderson Date: Tue, 31 May 2016 11:40:26 +0200 Subject: [PATCH] Fill in more missing package.json info Fixes #4. --- package.json | 24 +++++++++++++++++------- 1 file changed, 17 insertions(+), 7 deletions(-) diff --git a/package.json b/package.json index 97b5a94..7d558c7 100644 --- a/package.json +++ b/package.json @@ -1,16 +1,12 @@ { "name": "chunk-manifest-webpack-plugin", - "version": "0.0.1", + "version": "0.1.0", "description": "Allows exporting a manifest that maps chunk ids to their output files, instead of keeping the mapping inside the webpack bootstrap.", "main": "lib/ChunkManifestPlugin.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1" }, - "author": { - "name": "Jason Anderson", - "email": "diurnalist@gmail.com", - "url": "http://diurnal.st" - }, + "author": "Jason Anderson (http://diurnal.st)", "license": "MIT", "dependencies": { "webpack-core": "^0.4.8" @@ -18,5 +14,19 @@ "peerDependencies": { "webpack": "^1.4.0-beta6" }, - "repository": "https://github.com/diurnalist/chunk-manifest-webpack-plugin" + "repository": { + "type": "git", + "url": "git+https://github.com/diurnalist/chunk-manifest-webpack-plugin.git" + }, + "bugs": { + "url": "https://github.com/diurnalist/chunk-manifest-webpack-plugin/issues" + }, + "homepage": "https://github.com/diurnalist/chunk-manifest-webpack-plugin#readme", + "devDependencies": {}, + "keywords": [ + "webpack", + "chunk", + "manifest", + "plugin" + ] }