forked from typedoc2md/typedoc-plugin-markdown
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.7 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
{
"name": "typedoc-plugin-markdown",
"version": "2.2.7",
"description": "A plugin for TypeDoc that enables TypeScript API documentation to be generated in Markdown.",
"main": "dist/index.js",
"files": [
"dist/"
],
"scripts": {
"lint": "tslint --project ./tsconfig.json",
"build": "rm -rf dist && tsc && copyfiles --up 1 ./src/**/*.hbs ./dist/",
"prepublishOnly": "npm run test",
"pretest": "npm run lint && npm run build",
"test": "jest",
"fixtures": "rm -rf ./test/fixtures && node ./tasks/fixtures.js",
"examples": "npm run build && rm -rf out && node ./tasks/link-plugin.js && npm run examples:html && npm run examples:md",
"examples:html": "typedoc --tsconfig ./test/stubs/tsconfig.json --options ./test/options.json --plugin none --out ./out/html",
"examples:md": "typedoc --tsconfig ./test/stubs/tsconfig.json --options ./test/options.json --out ./out/md"
},
"author": "Thomas Grey",
"license": "MIT",
"engines": {
"node": ">=6"
},
"bugs": {
"url": "https://github.com/tgreyuk/typedoc-plugin-markdown/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tgreyuk/typedoc-plugin-markdown.git"
},
"keywords": [
"markdown",
"typescript",
"documentation",
"api",
"typedocplugin",
"typedoc"
],
"peerDependencies": {
"typedoc": ">=0.10.0"
},
"devDependencies": {
"@types/fs-extra": "^8.0.0",
"@types/jest": "^24.0.18",
"@types/node": "^12.7.8",
"copyfiles": "^2.1.1",
"jest": "^24.9.0",
"ts-jest": "^24.1.0",
"tslint": "^5.20.0",
"typedoc": "0.15.0",
"typescript": "3.6.x"
},
"dependencies": {
"fs-extra": "^8.1.0",
"handlebars": "^4.1.2"
}
}