forked from huntlabs/hunt-entity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdub.json
executable file
·54 lines (54 loc) · 1.49 KB
/
dub.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
49
50
51
52
53
54
{
"name": "hunt-entity",
"description": "Entity is an object-relational mapping (ORM) tool for the D programming language. Referring to the design idea of JPA. support PostgreSQL / MySQL / SQLite.",
"copyright": "Copyright (C) 2018-2019, HuntLabs",
"homepage": "https://www.huntlabs.net",
"license": "Apache-2.0",
"versions": ["WITH_HUNT_ENTITY"],
"dependencies": {
"hunt-database": "~>1.3.0",
"hunt-sql": "~>1.2.0",
"hunt-validation" : "~>0.2.0"
},
"configurations": [
{
"name": "default",
"targetType": "library",
"subConfigurations": {
"hunt-database": "mysql"
}
},
{
"name": "empty",
"targetType": "library"
},
{
"name": "full",
"targetType": "library",
"subConfigurations": {
"hunt-database": "full"
}
},
{
"name": "mysql",
"targetType": "library",
"subConfigurations": {
"hunt-database": "mysql"
}
},
{
"name": "postgresql",
"targetType": "library",
"subConfigurations": {
"hunt-database": "postgresql"
}
},
{
"name": "sqlite",
"targetType": "library",
"subConfigurations": {
"hunt-database": "sqlite"
}
}
]
}