-
Notifications
You must be signed in to change notification settings - Fork 3
/
project.json
23 lines (23 loc) · 964 Bytes
/
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
{
"id": "python/prajwalanand",
"name": "whitespace-compiler",
"authors": ["Prajwal Anand"],
"license": "none",
"languages": ["Python"],
"tags": ["transpiler", "mapping", "programs"],
"date": "2021-07-01 00:19:42 -0700",
"spec_version": "0.2",
"source": ["https://github.com/prajwalanand/whitespace-compiler"],
"submodules": [{ "path": "whitespace-compiler", "url": "https://github.com/prajwalanand/whitespace-compiler" }],
"whitespace": { "extension": "ws" },
"mappings": [{ "space": "1", "tab": "2", "lf": "3", "spaces_between": false, "extension": "ws" }],
"programs": [
{ "path": "error.ws", "mapping_index": 0 },
{ "path": "inp.ws", "mapping_index": 0 },
{ "path": "source.ws", "mapping_index": 0 },
{ "path": "Whitespace tutorial.html", "polyglot": ["HTML"], "spec_version": "0.2" }
],
"commands": [
{ "type": "transpiler", "bin": "whitespace", "usage": "<file>", "input": "stdin", "output": "stdout" }
]
}