From d2abd41f4c55028aabc223e26455e31f35d06567 Mon Sep 17 00:00:00 2001 From: Christian Oliff Date: Wed, 16 Oct 2019 11:25:11 +0900 Subject: [PATCH] Add bugs URL and keywords array to package.json Rearanged a bit so the name and version at the top- I think this makes more logical sense. Added bugs and keywords which could be useful for users. REF: - https://docs.npmjs.com/files/package.json#keywords - https://docs.npmjs.com/files/package.json#bugs --- package.json | 34 +++++++++++++++++++++------------- 1 file changed, 21 insertions(+), 13 deletions(-) diff --git a/package.json b/package.json index 29fb4e0203..efe2bc0d72 100644 --- a/package.json +++ b/package.json @@ -1,4 +1,25 @@ { + "name": "html5-boilerplate", + "version": "7.2.0", + "homepage": "https://html5boilerplate.com/", + "license": "MIT", + "description": "A professional front-end template for building fast, robust, and adaptable web apps or sites.", + "keywords": [ + "h5bp", + "template", + "front-end" + ], + "repository": { + "type": "git", + "url": "https://github.com/h5bp/html5-boilerplate.git" + }, + "bugs": { + "url" : "https://github.com/h5bp/html5-boilerplate/issues" + }, + "scripts": { + "build": "gulp build", + "test": "gulp archive && mocha --require @babel/register --reporter spec --timeout 5000" + }, "devDependencies": { "@babel/core": "^7.6.4", "@babel/preset-env": "^7.6.3", @@ -47,15 +68,6 @@ "test": "test" } }, - "homepage": "https://html5boilerplate.com/", - "license": "MIT", - "name": "html5-boilerplate", - "scripts": { - "build": "gulp build", - "test": "gulp archive && mocha --require @babel/register --reporter spec --timeout 5000" - }, - "version": "7.2.0", - "description": "A professional front-end template for building fast, robust, and adaptable web apps or sites.", "files": [ "CHANGELOG.md", "LICENSE.txt", @@ -64,9 +76,5 @@ "modernizr-config.json", "README.md" ], - "repository": { - "type": "git", - "url": "https://github.com/h5bp/html5-boilerplate.git" - }, "dependencies": {} }