-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathproject.json
48 lines (48 loc) · 1.27 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
{
"id": "javascript/pvdz-significant-whitespace",
"name": "SignificantWhitespace",
"authors": ["Peter van der Zee"],
"license": "none",
"languages": ["JavaScript"],
"tags": ["interpreter", "mapping", "programs"],
"date": "2012-02-16 23:15:56 +0100",
"spec_version": "0.3",
"source": [
"https://github.com/pvdz/SignificantWhitespace",
"https://pvdz.ee/weblog/246",
"https://js1k.com/2012-love/demo/1130"
],
"submodules": [{ "path": "SignificantWhitespace", "url": "https://github.com/pvdz/SignificantWhitespace" }],
"assembly": {
"mnemonics": {
"push": "PUSH",
"dup": "DUP",
"copy": "COPY",
"swap": "SWAP",
"drop": "POP",
"slide": "SLICE",
"add": "ADD",
"sub": "SUB",
"mul": "MUL",
"div": "DIV",
"mod": "MOD",
"store": "PUT",
"retrieve": "GET",
"label": "MARK",
"call": "CALL",
"jmp": "JUMP",
"jz": "JZERO",
"jn": "JNEG",
"ret": "RET",
"end": "EOF",
"printc": "PUTC",
"printi": "PUTN",
"readc": "GETC",
"readi": "GETN"
},
"usage": ["enum"]
},
"mappings": [{ "space": " ", "tab": "[♡\t]", "lf": "[♥\n\u0001]" }],
"notes": "JS1k competition submission",
"todo": "Programs are embedded in source"
}