-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdub.json
More file actions
54 lines (54 loc) · 906 Bytes
/
dub.json
File metadata and controls
54 lines (54 loc) · 906 Bytes
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
{
"name" : "moon",
"description" : "The Moon Programming Language",
"copyright": "Copyright © 2018, Moon Programming Language",
"license": "GPL-3.0",
"authors": [
"Luís Ferreira"
],
"configurations": [
{
"name": "interpreter",
"targetType": "executable",
"targetPath": "bin",
"targetName": "moon",
"sourcePaths": [
"interpreter/src"
],
"importPaths": [
"interpreter/src"
],
"dependencies": {
"moon:core": "*"
}
}
],
"subPackages": [
{
"name": "core",
"targetType": "library",
"targetPath": "bin",
"sourcePaths": [
"core/src"
],
"importPaths": [
"core/src"
]
},
{
"name": "compiler",
"targetType": "executable",
"targetPath": "bin",
"targetName": "moonc",
"sourcePaths": [
"compiler/src"
],
"importPaths": [
"compiler/src"
],
"dependencies": {
"moon:core": "*"
}
}
]
}