-
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.
* version: v0.1.0-alpha.1 * add example specifications * add package.json * move attribution to Andrea Berez to contributors list * add MAINTAINERS.md
- Loading branch information
Showing
4 changed files
with
61 additions
and
3 deletions.
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,18 @@ | ||
# Issue Labels | ||
|
||
Label | Color | Purpose | ||
----------- | ------- | ------- | ||
bug | #ee0701 | Issues reporting bugs, typos, or other problems. | ||
docs | #39a80d | Issues relating to documentation. | ||
duplicate | #cccccc | Duplicate issues. | ||
meta | #f7ca7e | A meta issue for tracking milestones. | ||
question | #cc317c | For questions. | ||
spec | #30d374 | Issues relating to one of the specifications. | ||
tests | #e00b9c | Issues relating to tests. | ||
tools | #20e5de | Issues relating to JavaScript tools. | ||
website | #f99fe0 | Issues relating to the DFT website. | ||
wontdo | #ffffff | Issues that won't be addressed or incorporated. | ||
|
||
Currently not using: | ||
- enhancement | ||
- feature |
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
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,7 @@ | ||
# Example Data Format Specifications | ||
|
||
* [GeoJSON](https://tools.ietf.org/html/rfc7946) | ||
* [JSON](http://json.org) | ||
* [JSON Schema](http://json-schema.org/latest/json-schema-validation.html) | ||
* [Leipzig Glossing Rules](https://www.eva.mpg.de/lingua/resources/glossing-rules.php) | ||
* [Markdown](http://spec.commonmark.org/0.28/) |
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,36 @@ | ||
{ | ||
"name": "dft", | ||
"version": "0.1.0-alpha.1", | ||
"description": "The specification for the Discourse Functional Transcription data format and transcription conventions", | ||
"keywords": [ | ||
"linguistics", | ||
"discourse", | ||
"transcription", | ||
"transcript", | ||
"language", | ||
"digital humanities", | ||
"DFT", | ||
"Discourse Functional Transcription" | ||
], | ||
"homepage": "https://github.com/digitallinguistics/DFT", | ||
"bugs": "https://github.com/digitallinguistics/DFT/issues", | ||
"license": "See LICENSE.md", | ||
"contributors": [ | ||
{ | ||
"name": "John W. DuBois" | ||
}, | ||
{ | ||
"name": "Daniel W. Hieber", | ||
"url": "https://danielhieber.com", | ||
"email": "dhieber@umail.ucsb.edu" | ||
}, | ||
{ | ||
"name": "Andrea L. Berez-Kroeker" | ||
} | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/digitallinguistics/DFT.git" | ||
}, | ||
"private": true | ||
} |