forked from wspace/corpus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.json
38 lines (38 loc) · 1.19 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
{
"id": "python/apua-wvm",
"name": "wvm",
"authors": ["Apua"],
"license": "none",
"languages": ["Python"],
"tags": ["interpreter", "mapping", "programs"],
"date": "2013-11-24 15:06:57 +0800",
"spec_version": "0.3",
"source": ["https://github.com/apua/whitespace"],
"whitespace": { "extension": "ws" },
"mappings": [{ "space": "S", "tab": "T", "lf": "L", "extension": "stl" }],
"programs": [
{ "path": "STL/factorial.stl", "equivalent": "fact.ws", "spec_version": "0.2" },
{
"path": "STL/fibnancy.stl",
"generated": "WS/fib.ws",
"equivalent": "fibonacci.ws",
"spec_version": "0.2"
},
{ "path": "STL/hello_user.stl", "equivalent": "name.ws", "spec_version": "0.2" },
{ "path": "STL/hello_world.stl", "equivalent": "hworld.ws", "spec_version": "0.2" },
{
"path": "ghost/ghost.stl",
"generated": "ghost/ghost.ws",
"aux": ["ghost/ghost_test.sh"],
"spec_version": "0.2"
}
],
"commands": [
{
"type": "interpreter",
"bin": "wvm.py",
"usage": "<file> [<lexical_tokens>]",
"notes": "<lexical_tokens> is a 3-character string that specifies the mapping to use, falling back to \" \t\n\""
}
]
}