-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhnetxt-lua-dev-24.rockspec
71 lines (71 loc) · 2.74 KB
/
hnetxt-lua-dev-24.rockspec
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
rockspec_format = "3.0"
package = "hnetxt-lua"
version = "dev-24"
source = {
url = "git://github.com/hneutr/hnetxt-lua"
}
description = {
homepage = "https://github.com/hneutr/hnetxt-lua",
license = "MIT"
}
dependencies = {
"lua >= 5.1",
"lyaml >= 6.2",
"inspect >= 3.1",
"lua-cjson >= 2.1",
"hneutil-lua"
}
build = {
type = "builtin",
modules = {
htl = "src/htl/init.lua",
["htl.config"] = "src/htl/config.lua",
["htl.goals"] = "src/htl/goals.lua",
["htl.journal"] = "src/htl/journal.lua",
["htl.operator"] = "src/htl/operator/init.lua",
["htl.operator.operation"] = "src/htl/operate/operation/init.lua",
["htl.operator.operation.dir"] = "src/htl/operate/operation/dir.lua",
["htl.operator.operation.file"] = "src/htl/operate/operation/file.lua",
["htl.operator.operation.mark"] = "src/htl/operate/operation/mark.lua",
["htl.parse"] = "src/htl/parse/init.lua",
["htl.parse.fold"] = "src/htl/parse/fold.lua",
["htl.project"] = "src/htl/project/init.lua",
["htl.project.mirror"] = "src/htl/project/mirror/init.lua",
["htl.project.mirror.config"] = "src/htl/project/mirror/config.lua",
["htl.project.notes"] = "src/htl/project/notes/init.lua",
["htl.project.notes.entries"] = "src/htl/project/notes/entries.lua",
["htl.project.notes.entry"] = "src/htl/project/notes/entry/init.lua",
["htl.project.notes.entry.list"] = "src/htl/project/notes/entry/list.lua",
["htl.project.notes.entry.prompt"] = "src/htl/project/notes/entry/prompt.lua",
["htl.project.notes.entry.response"] = "src/htl/project/notes/entry/response.lua",
["htl.project.notes.field"] = "src/htl/project/notes/field/init.lua",
["htl.project.notes.field.bool"] = "src/htl/project/notes/field/bool.lua",
["htl.project.notes.field.date"] = "src/htl/project/notes/field/date.lua",
["htl.project.notes.field.list"] = "src/htl/project/notes/field/list.lua",
["htl.project.notes.fields"] = "src/htl/project/notes/fields.lua",
["htl.project.registry"] = "src/htl/project/registry.lua",
["htl.text.divider"] = "src/htl/text/divider.lua",
["htl.text.flag"] = "src/htl/text/flag.lua",
["htl.text.header"] = "src/htl/text/header.lua",
["htl.text.link"] = "src/htl/text/link.lua",
["htl.text.list"] = "src/htl/text/list.lua",
["htl.text.location"] = "src/htl/text/location.lua",
["htl.text.mark"] = "src/htl/text/mark.lua",
["htl.text.reference"] = "src/htl/text/reference.lua"
}
}
test = {
type = "busted",
platforms = {
unix = {
flags = {
"--exclude-tags=ssh,git"
}
},
windows = {
flags = {
"--exclude-tags=ssh,git,unix"
}
}
}
}