From c65756e3b6233926273b8cfec01e6a144cface69 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jano=20Gonz=C3=A1lez?= Date: Thu, 7 May 2020 21:15:34 +0200 Subject: [PATCH] Update package.json --- package.json | 34 ++++++++++++++++++---------------- 1 file changed, 18 insertions(+), 16 deletions(-) diff --git a/package.json b/package.json index ccc13e3..20acd7a 100644 --- a/package.json +++ b/package.json @@ -2,21 +2,6 @@ "name": "priorityqueuejs", "version": "2.0.0", "description": "a simple priority queue data structure", - "author": "Jano González ", - "devDependencies": { - "mocha": "*", - "expect.js": "*" - }, - "readmeFilename": "README.md", - "main": "index.js", - "dependencies": {}, - "scripts": { - "test": "mocha" - }, - "repository": { - "type": "git", - "url": "git://github.com/janogonzalez/priorityqueuejs.git" - }, "keywords": [ "heap", "priority", @@ -24,5 +9,22 @@ "priority queue", "data structure" ], - "license": "MIT" + "homepage": "https://github.com/janogonzalez/priorityqueuejs", + "bugs": { + "url": "https://github.com/janogonzalez/priorityqueuejs/issues" + }, + "license": "MIT", + "author": "Jano González (http://janogonzalez.com)", + "main": "index.js", + "repository": { + "type": "git", + "url": "git://github.com/janogonzalez/priorityqueuejs.git" + }, + "scripts": { + "test": "mocha" + }, + "devDependencies": { + "mocha": "*", + "expect.js": "*" + } }