-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathdub.json
More file actions
39 lines (39 loc) · 767 Bytes
/
dub.json
File metadata and controls
39 lines (39 loc) · 767 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
{
"name": "fluent-asserts",
"authors": [
"Szabo Bogdan"
],
"description": "Fluent assertions done right",
"copyright": "Copyright © 2025, Szabo Bogdan",
"license": "MIT",
"homepage": "http://fluentasserts.szabobogdan.com/",
"dependencies": {
"libdparse": "~>0.25.0",
"unit-threaded": {
"version": "*",
"optional": true
},
"silly": {
"version": "~>1.2.0-dev.2",
"optional": true
}
},
"configurations": [
{
"name": "library",
"sourcePaths": [
"source"
],
"excludedSourceFiles": [
"source/updateDocs.d"
]
},
{
"name": "unittest",
"targetType": "library",
"dependencies": {
"silly": "~>1.2.0-dev.2"
}
}
]
}