forked from jsdoc2md/jsdoc-to-markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.01 KB
/
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
43
44
45
46
47
48
49
50
{
"name": "jsdoc-to-markdown",
"author": "Lloyd Brookes",
"version": "7.1.1",
"description": "Generates markdown API documentation from jsdoc annotated source code",
"repository": "https://github.com/jsdoc2md/jsdoc-to-markdown",
"bin": {
"jsdoc2md": "bin/cli.js"
},
"engines": {
"node": ">=12.17"
},
"license": "MIT",
"scripts": {
"test": "test-runner test/*.js",
"test:ci": "npm test",
"docs": "node bin/cli.js --heading-depth 1 index.js > docs/API.md"
},
"keywords": [
"jsdoc",
"markdown",
"api",
"generator",
"javascript",
"js",
"documentation"
],
"dependencies": {
"array-back": "^6.2.2",
"command-line-tool": "^0.8.0",
"config-master": "^3.1.0",
"dmd": "^6.1.0",
"jsdoc-api": "^7.1.1",
"jsdoc-parse": "^6.1.0",
"walk-back": "^5.1.0"
},
"devDependencies": {
"test-runner": "^0.10.1"
},
"standard": {
"ignore": [
"test/fixture"
]
},
"files": [
"index.js",
"bin/cli.js",
"lib/*.js"
]
}