From 3abe61e13b3f220324528223edb118c0492849d6 Mon Sep 17 00:00:00 2001 From: Jason Robinson Date: Wed, 5 Feb 2020 15:25:09 +0200 Subject: [PATCH] Add contribute.json This document is required for example for all Mozilla websites and makes sense for Riot to also describe itself - see https://www.contributejson.org/ Signed-off-by: Jason Robinson --- res/contribute.json | 17 +++++++++++++++++ scripts/copy-res.js | 1 + 2 files changed, 18 insertions(+) create mode 100644 res/contribute.json diff --git a/res/contribute.json b/res/contribute.json new file mode 100644 index 000000000..0f9ceed38 --- /dev/null +++ b/res/contribute.json @@ -0,0 +1,17 @@ +{ + "name": "Riot", + "description": "A glossy Matrix collaboration client for the web.", + "repository": { + "url": "https://github.com/vector-im/riot-web", + "license": "Apache License 2.0" + }, + "bugs": { + "list": "https://github.com/vector-im/riot-web/issues", + "report": "https://github.com/vector-im/riot-web/issues/new/choose" + }, + "keywords": [ + "chat", + "riot", + "matrix" + ] +} diff --git a/scripts/copy-res.js b/scripts/copy-res.js index b524062bf..b8b9e398a 100755 --- a/scripts/copy-res.js +++ b/scripts/copy-res.js @@ -66,6 +66,7 @@ const COPY_LIST = [ ["node_modules/matrix-react-sdk/res/media/**", "webapp/media"], ["node_modules/olm/olm_legacy.js", "webapp", { directwatch: 1 }], ["./config.json", "webapp", { directwatch: 1 }], + ["res/contribute.json", "webapp"], ]; const parseArgs = require('minimist');