-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathproject.json
35 lines (35 loc) · 1.65 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
34
35
{
"id": "ocaml/jgkaplan-wsc",
"name": "WSC",
"authors": ["Joshua Kaplan"],
"license": "MIT",
"languages": ["OCaml", "Yacc", "Lex"],
"tags": ["language", "programs"],
"date": "2019-07-04 02:09:08 -0400",
"spec_version": "0.3",
"source": ["https://github.com/jgkaplan/whitespaceTranspiler"],
"submodules": [{ "path": "whitespaceTranspiler", "url": "https://github.com/jgkaplan/whitespaceTranspiler" }],
"whitespace": { "extension": "ws" },
"programs": [
{ "path": "lib/math.wsl" },
{ "path": "test/conditionalTest.wsr", "generated": "test/conditionalTest.ws", "spec_version": "0.2" },
{ "path": "test/countToTen.wsr", "generated": "test/countToTen.ws", "spec_version": "0.2" },
{ "path": "test/factorial.wsr", "generated": "test/factorial.ws", "spec_version": "0.3" },
{ "path": "test/functionTest.wsr", "generated": "test/functionTest.ws", "spec_version": "0.3" },
{ "path": "test/inputTest.wsr", "generated": "test/inputTest.ws", "spec_version": "0.3" },
{ "path": "test/printTest.wsr", "generated": "test/printTest.ws", "spec_version": "0.2" },
{ "path": "test/recursionTest.wsr", "generated": "test/recursionTest.ws", "spec_version": "0.3" },
{ "path": "test/varTest.wsr", "generated": "test/varTest.ws", "spec_version": "0.2" },
{ "path": "test/whileTest.wsr", "generated": "test/whileTest.ws", "spec_version": "0.2" }
],
"commands": [
{
"type": "language compiler",
"bin": "main.byte",
"usage": "[--help] <file>",
"output": "<file:no_ext>.ws",
"options": [{ "short": "help", "long": "help", "desc": "Display this list of options" }],
"option_parse": "OCaml Arg"
}
]
}