-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.29 KB
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
{
"name": "doc-templater",
"version": "0.4.0",
"description": "Compiles a tree of Github-flavored markdown files into themable HTML templates. Supports pulling directly from multiple remote or local git repositories and exposes lifecycle hooks for transforming markdown input (beforeConvert) or HTML output (afterConvert). Also writes flat tree arrays representing the directory hierarchy as JSON files.",
"dependencies": {
"async": "~0.9.0",
"fs-extra": "~0.8.1",
"lodash": "~2.4.1",
"machine": "^2.0.4",
"machinepack-fs": "~1.3.4",
"machinepack-git": "^2.2.0",
"machinepack-markdown": "^1.0.1",
"machinepack-process": "^3.0.0-4"
},
"devDependencies": {
"fs-extra": "~0.8.1",
"mocha": "~1.18.2"
},
"repository": {
"type": "git",
"url": "https://github.com/uncletammy/doc-templater.git"
},
"keywords": [
"gfmd",
"markdown converter",
"build docs",
"documentation templates",
"docs",
"markdown"
],
"contributors": [
"uncletammy",
"mikermcneil",
"balderdashy"
],
"main": "index.js",
"license": "MIT",
"bugs": {
"url": "https://github.com/uncletammy/doc-templater/issues"
},
"homepage": "https://github.com/uncletammy/doc-templater",
"scripts": {
"test": "mocha test -R spec -b -t 10000"
}
}