-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
56 lines (56 loc) · 1.35 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
{
"name": "dmd",
"author": "Lloyd Brookes <[email protected]>",
"version": "7.0.7",
"description": "The default output template for jsdoc-to-markdown",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jsdoc2md/dmd.git"
},
"exports": "./index.js",
"keywords": [
"documentation",
"markdown"
],
"engines": {
"node": ">=12.17"
},
"files": [
"index.js",
"helpers",
"lib",
"partials"
],
"scripts": {
"test": "75lb-nature test-runner test/api.js test/grouping.js test/parseType.js test/plugin.js test/ddata/children.js test/ddata/globals.js test/ddata/linkTo.js test/ddata/list.js test/ddata/orphans.js test/ddata/parseLink.js test/ddata/return-sig.js test/ddata/type-link.js",
"partials": "node bin/generate-partial-cache.js > partials/partial-cache.js"
},
"dependencies": {
"array-back": "^6.2.2",
"cache-point": "^3.0.0",
"common-sequence": "^2.0.2",
"file-set": "^5.2.2",
"handlebars": "^4.7.8",
"marked": "^4.3.0",
"walk-back": "^5.1.1"
},
"devDependencies": {
"dmd-plugin-example": "^0.1.0"
},
"peerDependencies": {
"@75lb/nature": "latest"
},
"peerDependenciesMeta": {
"@75lb/nature": {
"optional": true
}
},
"standard": {
"ignore": [
"test/fixture",
"test/overrides",
"tmp"
]
}
}