From 9ae1198d7babc406f5c2d28bd5dda58fb205ec21 Mon Sep 17 00:00:00 2001 From: Glavin Wiechert Date: Sun, 10 Aug 2014 17:41:15 -0300 Subject: [PATCH] docs(package.json): Add missing fields to package.json Add `description`, `directories`, `repository`, `keywords`, `license`, `bugs`, and `homepage` fields to package.json Add AUTHORS file, instead of providing `contributors` field in package.json --- AUTHORS | 6 ++++++ package.json | 20 +++++++++++++++++++- 2 files changed, 25 insertions(+), 1 deletion(-) create mode 100644 AUTHORS diff --git a/AUTHORS b/AUTHORS new file mode 100644 index 0000000..6b4a57f --- /dev/null +++ b/AUTHORS @@ -0,0 +1,6 @@ +# List of Authors, in the npm format: +# Name (url) +Mathew Kallada (https://github.com/kallada) +Glavin Wiechert (https://github.com/Glavin001) +Joel Kuntz (https://github.com/Frozenfire92) +Sarah MacDonald (https://github.com/rainbee2214) diff --git a/package.json b/package.json index 9bb34d2..7745dec 100644 --- a/package.json +++ b/package.json @@ -40,5 +40,23 @@ }, "scripts": { "test": "grunt test" - } + }, + "description": "Accessible and client-side threat modeling tool.", + "directories": { + "test": "test" + }, + "repository": { + "type": "git", + "url": "git://github.com/mozilla/seasponge.git" + }, + "keywords": [ + "threat", + "modelling", + "tool" + ], + "license": "Mozilla Public License, version 2.0", + "bugs": { + "url": "https://github.com/mozilla/seasponge/issues" + }, + "homepage": "https://github.com/mozilla/seasponge" }