-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathproject.json
More file actions
54 lines (54 loc) · 1.64 KB
/
project.json
File metadata and controls
54 lines (54 loc) · 1.64 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"id": "python/dwayne",
"name": "whitespace-python",
"authors": ["Dwayne R. Crooks"],
"license": "MIT",
"languages": ["Python"],
"tags": ["interpreter"],
"date": "2016-08-31 05:09:16 -0400",
"spec_version": "0.2",
"source": ["https://github.com/dwayne/whitespace-python"],
"submodules": [{ "path": "whitespace-python", "url": "https://github.com/dwayne/whitespace-python" }],
"packages": [{ "name": "whitespace", "registry": "PyPI", "url": "https://pypi.org/project/whitespace/" }],
"assembly": {
"mnemonics": {
"push": "Push",
"dup": "Dup",
"swap": "Swap",
"drop": "Discard",
"add": "Add",
"sub": "Sub",
"mul": "Mul",
"div": "Div",
"mod": "Mod",
"store": "Store",
"retrieve": "Retrieve",
"label": "Label",
"call": "Call",
"jmp": "Ujmp",
"jz": "Zjmp",
"jn": "Njmp",
"ret": "Ret",
"end": "End",
"printc": "Putc",
"printi": "Putn",
"readc": "Getc",
"readi": "Getn"
},
"usage": ["enum"]
},
"programs": [
{ "path": "tests/fixtures/count.ws", "equivalent": "count.ws", "spec_version": "0.2" },
{ "path": "tests/fixtures/fact.ws", "equivalent": "fact.ws", "spec_version": "0.2" },
{ "path": "tests/fixtures/hello.ws", "equivalent": "hworld.ws", "spec_version": "0.2" },
{ "path": "tests/fixtures/name.ws", "equivalent": "name.ws", "spec_version": "0.2" }
],
"commands": [
{
"bin": "whitespace",
"usage": "[-h | --help] <file>",
"options": [{ "short": "h", "long": "help", "desc": "show this help message and exit" }],
"option_parse": "Python argparse"
}
]
}