-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathproject.json
56 lines (56 loc) · 1.85 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"id": "clojure/makenowjust",
"name": "whitespace-clj",
"authors": ["TSUYUSATO Kitsune (MakeNowJust)"],
"license": "EPL-1.0",
"languages": ["Clojure"],
"tags": ["interpreter"],
"date": "2015-02-11 15:15:52 +0900",
"spec_version": "0.2",
"source": ["https://github.com/MakeNowJust/whitespace-clj"],
"submodules": [{ "path": "whitespace-clj", "url": "https://github.com/MakeNowJust/whitespace-clj" }],
"assembly": {
"mnemonics": {
"push": "push",
"dup": "dup",
"swap": "swap",
"drop": "discard",
"add": "plus",
"sub": "minus",
"mul": "times",
"div": "divide",
"mod": "modulo",
"store": "store",
"retrieve": "retrieve",
"label": "label",
"call": "call",
"jmp": "jump",
"jz": "if-zero",
"jn": "if-neg",
"ret": "return",
"end": "end",
"printc": "output-char",
"printi": "output-num",
"readc": "read-char",
"readi": "read-num"
},
"usage": ["enum"]
},
"commands": [
{
"type": "interpreter",
"bin": "target/whitespace-clj-0.1.0-SNAPSHOT-standalone.jar",
"usage": "[-h | --help] [-v | --version] [-c | --chars] [-t | --text] [-l | --lisp] [-s | --sexp] [--time] <file>",
"options": [
{ "short": "h", "long": "help", "desc": "show this help" },
{ "short": "v", "long": "version", "desc": "show version" },
{ "short": "c", "long": "chars", "desc": "show source code as visible characters" },
{ "short": "t", "long": "text", "desc": "show source code as assembled text" },
{ "short": "l", "long": "lisp", "desc": "compile to Clojure code and run" },
{ "short": "s", "long": "sexp", "desc": "compile to Clojure code and show" },
{ "long": "time", "desc": "show executing time" }
],
"option_parse": "Clojure clojure.tools.cli"
}
]
}