forked from jsdoc2md/jsdoc-to-markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 933 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 933 Bytes
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
{
"name": "jsdoc-to-markdown",
"author": "Lloyd Brookes",
"version": "1.0.3",
"description": "Markdown API documentation generator",
"repository": "https://github.com/jsdoc2md/jsdoc-to-markdown",
"main": "lib/jsdoc-to-markdown.js",
"files": [
"bin",
"lib",
"LICENSE"
],
"scripts": {
"test": "tape test/*.js",
"docs": "node bin/cli.js -t jsdoc2md/README.hbs -p list lib/jsdoc-to-markdown.js node_modules/jsdoc-parse/lib/jsdoc-parse.js node_modules/dmd/lib/dmd.js > README.md; echo ",
"lint": "jshint bin/*.js lib/*.js test/*.js; echo",
"eg": "node example/renderDirs.js; echo"
},
"bin": {
"jsdoc2md": "bin/cli.js"
},
"keywords": [
"handlebars",
"jsdoc",
"markdown",
"generator"
],
"dependencies": {
"command-line-args": "~0.5.0",
"console-dope": "~0.3.3",
"dmd": "^1",
"jsdoc-parse": "^1"
},
"devDependencies": {
"tape": "^4"
}
}