-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathproject.json
More file actions
39 lines (39 loc) · 1.53 KB
/
Copy pathproject.json
File metadata and controls
39 lines (39 loc) · 1.53 KB
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
{
"id": "python/rumaxwell",
"name": "whitespace-interperter",
"authors": ["RuMaxwell"],
"license": "none",
"languages": ["Python"],
"tags": ["interpreter", "programs"],
"date": "2018-02-21 22:02:54 +0800",
"spec_version": "0.3",
"source": ["https://github.com/RuMaxwell/whitespace-interpreter"],
"submodules": [{ "path": "whitespace-interpreter", "url": "https://github.com/RuMaxwell/whitespace-interpreter" }],
"whitespace": { "extension": "whitespace" },
"mappings": [{ "space": "[s]", "tab": "[t]", "lf": "[n]", "before_stl": true }],
"programs": [
{
"path": "factorial.whitespace",
"aux": ["factorial - 副本.whitespace", "factorial.comment", "factorial.insts", "factorial.string"],
"spec_version": "0.2"
},
{ "path": "factorial (with comments).whitespace", "spec_version": "0.2" }
],
"commands": [
{
"type": "interpreter",
"bin": "entrance.py",
"usage": "[-r | --run] [-s | --show-steps] [-p | --step] [-d | --debug] [-v | --version] [-t | --tutorial] [-h | --help] <file>",
"options": [
{ "short": "r", "long": "run", "desc": "run" },
{ "short": "s", "long": "show-steps", "desc": "show steps" },
{ "short": "p", "long": "step", "desc": "step" },
{ "short": "d", "long": "debug", "desc": "debug" },
{ "short": "v", "long": "version", "desc": "version" },
{ "short": "t", "long": "tutorial", "desc": "tutorial" },
{ "short": "h", "long": "help", "desc": "help" }
],
"option_parse": "manual"
}
]
}