-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.yaml
143 lines (135 loc) · 3.1 KB
/
package.yaml
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
name: toodles
version: 1.2.3
github: "aviaviavi/toodles"
license: MIT
author: "Avi Press"
maintainer: "[email protected]"
copyright: "2019 Avi Press"
category: Project Management
extra-source-files:
- README.md
data-files:
- web/js/app.js
- web/js/*
- web/html/*
- web/css/*
- web/fonts/*
- web/img/*
- verify.py
- toodles-license-public-key.pem
synopsis: Manage the TODO entries in your code
description:
>
Toodles scrapes your entire repository for TODO entries and organizes them so
you can manage your project directly from the code. View, filter, sort, and edit
your TODO\'s with an easy to use web application. When you make changes via
toodles, the edits will be applied directly the TODO entries in your code.
When you\'re done, commit and push your changes to share them with your team!
ghc-options:
- -Wall
- -Wcompat
dependencies:
- base >= 4.4.0 && < 5
# TODO (avi|p=3|#dependencies) - dependencies need to be relaxed and
# fixed to include other ghc versions
library:
source-dirs: src
exposed-modules:
- Parse
- Types
- Config
- ToodlesApi
- Server
- License
dependencies:
- MissingH >=1.4.0.1
- RSA >=2.3.0
- aeson ==1.3.1.1
- base64-bytestring ==1.0.0.1
- blaze-html ==0.9.1.1
- bytestring >=0.10.8.2
- cmdargs ==0.10.20
- directory ==1.3.1.5
- extra ==1.6.13
- megaparsec ==6.5.0
- process >=1.6.3.0
- regex-posix ==0.95.2
- servant ==0.14.1
- servant-blaze ==0.8
- servant-server ==0.14.1
- strict ==0.3.2
- text ==1.2.3.1
- time >=1.8.0.2
- wai ==3.2.1.2
- warp ==3.2.25
- yaml ==0.8.32
executables:
toodles:
main: Main.hs
source-dirs:
- app
- src
ghc-options:
- -threaded
- -rtsopts
- -O3
- -Wall
- -with-rtsopts=-N
dependencies:
- MissingH >=1.4.0.1
- RSA >=2.3.0
- aeson ==1.3.1.1
- base64-bytestring ==1.0.0.1
- blaze-html ==0.9.1.1
- bytestring >=0.10.8.2
- cmdargs ==0.10.20
- directory ==1.3.1.5
- extra ==1.6.13
- filepath ==1.4.2
- megaparsec ==6.5.0
- process >=1.6.3.0
- regex-posix ==0.95.2
- servant ==0.14.1
- servant-blaze ==0.8
- servant-server ==0.14.1
- strict ==0.3.2
- text ==1.2.3.1
- time >=1.8.0.2
- wai ==3.2.1.2
- warp ==3.2.25
- yaml ==0.8.32
tests:
toodles-test:
main: Spec.hs
source-dirs:
- test
- src
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
- -w
dependencies:
- toodles
- MissingH >=1.4.0.1
- aeson ==1.3.1.1
- base64-bytestring ==1.0.0.1
- blaze-html ==0.9.1.1
- bytestring >=0.10.8.2
- cmdargs ==0.10.20
- directory ==1.3.1.5
- extra ==1.6.13
- hspec >= 2.4.4
- hspec-expectations >=0.8.2
- megaparsec ==6.5.0
- process >=1.6.3.0
- regex-posix ==0.95.2
- servant ==0.14.1
- servant-blaze ==0.8
- servant-server ==0.14.1
- strict ==0.3.2
- text ==1.2.3.1
- time >=1.8.0.2
- wai ==3.2.1.2
- warp ==3.2.25
- yaml ==0.8.32