-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
42 lines (42 loc) · 941 Bytes
/
package.json
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
{
"name": "mdoc",
"description": "Markdown based documentation generator",
"keywords": [
"markdown",
"documentation",
"docs",
"generator"
],
"homepage": "https://github.com/millermedeiros/mdoc.git",
"version": "0.5.3",
"author": {
"name": "Miller Medeiros",
"url": "http://blog.millermedeiros.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/millermedeiros/mdoc.git"
},
"main": "./src/js/main.js",
"bugs": {
"url": "https://github.com/millermedeiros/mdoc/issues"
},
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php"
}
],
"dependencies": {
"commander": ">= 0.4.0",
"handlebars": ">= 1.0.1",
"showdown": "^1.3.0",
"wrench": ">= 1.3.2"
},
"bin": {
"mdoc": "./bin/mdoc"
},
"scripts": {
"test": "node ./bin/mdoc -i examples/basic/content -o examples/basic/out"
}
}