- Notifications
You must be signed in to change notification settings - Fork 104
/
Copy pathEask
27 lines (20 loc) · 589 Bytes
/
Eask
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
;; -*- mode: eask; lexical-binding: t -*-
(package "markdown-toc"
"0.1.5"
"A simple TOC generator for markdown file")
(website-url "http://github.com/ardumont/markdown-toc")
(keywords "markdown" "toc" "tools")
(package-file "markdown-toc.el")
(script "test" "echo \"Error: no test specified\" && exit 1")
(source 'gnu)
(source 'melpa)
(depends-on "emacs" "27.1")
(depends-on "markdown-mode")
(depends-on "dash")
(depends-on "s")
(development
(depends-on "ert-runner")
(depends-on "undercover")
(depends-on "ert")
(depends-on "el-mock")
(depends-on "mocker"))