forked from wspace/corpus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.json
28 lines (28 loc) · 1.17 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
{
"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"],
"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"
}
]
}