name: hunch version: 0.1.1 synopsis: CSS-like syntax for file system manipulation. description: Hunch is a command-line, system-agnostic application that allows quick creation of file system entries with a custom DSL resembling CSS selectors. homepage: https://github.com/loganbraga/hunch license: MIT license-file: LICENSE author: Logan Braga maintainer: braga.logan@gmail.com category: Console stability: experimental build-type: Simple cabal-version: >=1.10 extra-source-files: README.md executable hunch hs-source-dirs: app main-is: Main.hs ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall -W -fwarn-monomorphism-restriction other-modules: Hunch.Runner , Hunch.Options.Data , Hunch.Options.CommandLine , Hunch.Language.Syntax , Hunch.Language.Lexer , Hunch.Language.Parser , Hunch.Language.PrettyPrinter , Hunch.Language.Error , Hunch.Constants build-depends: base >= 4 && < 5 , parsec >= 3.0 , containers , optparse-applicative >= 0.11 , split , directory , filepath default-language: Haskell2010 test-suite hunch-test type: exitcode-stdio-1.0 hs-source-dirs: test main-is: Spec.hs build-depends: base >= 4 && < 5 , parsec >= 3.0 , containers , optparse-applicative >= 0.11 , split , directory , filepath , QuickCheck ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall -W default-language: Haskell2010 source-repository head type: git location: https://github.com/loganbraga/hunch