-
Notifications
You must be signed in to change notification settings - Fork 0
/
git-freq.cabal
65 lines (59 loc) · 1.46 KB
/
git-freq.cabal
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
cabal-version: 2.2
name: git-freq
version: 0.0.3
build-type: Simple
license: BSD-3-Clause
license-file: LICENSE
maintainer: Fujimura Daisuke<[email protected]>
homepage: https://github.com/fujimura/git-freq
synopsis: A Git subcommand to show total addition, deletion per file
description: A Git subcommand to show total addition, deletion per file
author: Fujimura Daisuke<[email protected]>
source-repository head
type: git
location: [email protected]:fujimura/git-freq.git
common default
default-language: Haskell2010
ghc-options: -Wall -fno-warn-name-shadowing
common dependencies
build-depends:
, base >=4 && <5
, bytestring
, containers
, io-streams
, optparse-applicative
, process
, text
, parsers
, trifecta
executable git-freq
import: dependencies, default
main-is: Main.hs
hs-source-dirs: src
other-modules:
Git.Freq
Git.NumStat
Types
Paths_git_freq
test-suite spec
import: dependencies, default
type: exitcode-stdio-1.0
main-is: Spec.hs
build-depends:
, directory
, filepath
, hspec
, interpolate
, mockery
, silently
, temporary
build-tool-depends: hspec-discover:hspec-discover -any
hs-source-dirs: src test
other-modules:
Git.Freq
Git.NumStat
Types
Git.FreqSpec
Git.NumStatSpec
Helper
Paths_git_freq