forked from wspace/corpus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.json
33 lines (33 loc) · 1.18 KB
/
project.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"id": "c/koturn",
"name": "Whitespace",
"authors": ["koturn"],
"license": "MIT",
"languages": ["C"],
"tags": ["interpreter", "transpiler"],
"date": "2014-11-08 22:30:57 +0900",
"spec_version": "0.3",
"source": ["https://github.com/wspace/koturn-c", "https://github.com/koturn/Whitespace"],
"commands": [
{
"bin": "whitespace.out",
"usage": "[-b | --bytecode] [-f | --filter] [-h | --help] [-m | --mnemonic] [-o <file> | --output=<file>] [-t | --translate] <file>",
"options": [
{ "short": "b", "long": "bytecode", "desc": "Show code in hexadecimal" },
{ "short": "f", "long": "filter", "desc": "Visualize whitespace source code" },
{ "short": "h", "long": "help", "desc": "Show help and exit" },
{ "short": "m", "long": "mnemonic", "desc": "Show byte code in mnemonic format" },
{
"short": "o",
"long": "output",
"arg": "file",
"arg_required": true,
"type": "file",
"desc": "Specify output filename"
},
{ "short": "t", "long": "translate", "desc": "Translate Whitespace to C source code" }
],
"option_parse": "C getopt"
}
]
}