-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve package.json and add CITATION.cff
- Add keywords - Include source template in built package
- Loading branch information
Showing
2 changed files
with
25 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
cff-version: 1.2.0 | ||
title: >- | ||
Human-readable output of sprint predictions | ||
message: Please cite this software as follows. | ||
type: software | ||
authors: | ||
- given-names: Leon | ||
family-names: Helwerda | ||
email: [email protected] | ||
affiliation: Leiden University | ||
orcid: 'https://orcid.org/0000-0002-4299-466X' | ||
repository-code: 'https://github.com/grip-on-software/prediction-site' | ||
repository-artifact: 'https://www.npmjs.com/package/@gros/prediction-site' | ||
url: 'https://gros.liacs.nl/' | ||
keywords: | ||
- visualization | ||
- decision-support | ||
license: Apache-2.0 | ||
version: 0.0.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,10 @@ | |
"name": "@gros/prediction-site", | ||
"version": "0.0.1", | ||
"description": "Human-readable output of sprint predictions.", | ||
"keywords": [ | ||
"visualization", | ||
"decision-support" | ||
], | ||
"license": "Apache-2.0", | ||
"author": "Leon Helwerda <[email protected]>", | ||
"files": [ | ||
|
@@ -13,7 +17,8 @@ | |
"public/*.js.LICENSE.txt", | ||
"public/fonts/", | ||
"public/mix-manifest.json", | ||
"res/*.scss" | ||
"res/*.scss", | ||
"template/*.mustache" | ||
], | ||
"directories": { | ||
"dist": "public", | ||
|