-
Notifications
You must be signed in to change notification settings - Fork 152
/
package.json
66 lines (66 loc) · 1.37 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "jsdoc-to-markdown",
"author": "Lloyd Brookes",
"version": "9.1.1",
"description": "Generates markdown API documentation from jsdoc annotated source code",
"repository": {
"type": "git",
"url": "git+https://github.com/jsdoc2md/jsdoc-to-markdown.git"
},
"bin": {
"jsdoc2md": "bin/cli.js"
},
"engines": {
"node": ">=12.17"
},
"type": "module",
"exports": {
"import": "./index.js",
"require": "./dist/index.cjs"
},
"license": "MIT",
"scripts": {
"test": "npm run dist && npm run test:ci",
"test:ci": "75lb-nature test-runner test/async.js test/cli.js",
"docs": "node bin/cli.js --heading-depth 1 index.js > docs/API.md",
"dist": "75lb-nature cjs-build index.js"
},
"keywords": [
"jsdoc",
"markdown",
"api",
"generator",
"javascript",
"js",
"documentation"
],
"dependencies": {
"array-back": "^6.2.2",
"command-line-args": "^6.0.1",
"command-line-usage": "^7.0.3",
"config-master": "^3.1.0",
"dmd": "^7.1.1",
"jsdoc-api": "^9.3.4",
"jsdoc-parse": "^6.2.4",
"walk-back": "^5.1.1"
},
"peerDependencies": {
"@75lb/nature": "latest"
},
"peerDependenciesMeta": {
"@75lb/nature": {
"optional": true
}
},
"standard": {
"ignore": [
"test/fixture"
]
},
"files": [
"index.js",
"bin",
"lib",
"dist"
]
}