-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(package): add npm fields for dnt build
Add necessary fields to package.json for npm publication using dnt build's package field.
- Loading branch information
Brian Leonard
authored and
Brian Leonard
committed
Oct 1, 2024
1 parent
fdb644a
commit 15292c6
Showing
1 changed file
with
10 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 |
---|---|---|
|
@@ -68,8 +68,17 @@ try { | |
package: { | ||
// npm package configuration | ||
name: "psychds-validator", | ||
author: { | ||
name: "Brian Leonard", | ||
email: "[email protected]", | ||
url: "https://orcid.org/0009-0005-7244-6882" | ||
}, | ||
repository: { | ||
type: "git", | ||
url: "git+https://github.com/psych-ds/psychds-validator.git" | ||
}, | ||
version: Deno.args[0], | ||
description: "psychds-validator", | ||
description: "This is the node implementation of the Psych-DS validator, originally implemented within the Deno framework. Psych-DS is a lightweight data standard for data collected in the behavioral sciences. This tool can be used to test the validity of datasets (in the form of file systems) with respect to the Psych-DS schema.", | ||
license: "MIT", | ||
repository: { | ||
type: "git", | ||
|