forked from typedoc2md/typedoc-plugin-markdown
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.57 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"lint": "lerna run lint",
"build": "npm-run-all build:*",
"build:typedoc-plugin-markdown": "cd packages/typedoc-plugin-markdown && yarn run build",
"build:typedoc-bitbucket-theme": "cd packages/typedoc-bitbucket-theme && yarn run build",
"build:typedoc-github-wiki-theme": "cd packages/typedoc-github-wiki-theme && yarn run build",
"build:typedoc-gitlab-wiki-theme": "cd packages/typedoc-gitlab-wiki-theme && yarn run build",
"build:typedoc-hugo-theme": "cd packages/typedoc-hugo-theme && yarn run build",
"build:vuepress-plugin-typedoc": "cd packages/vuepress-plugin-typedoc && yarn run build",
"build:docusaurus-plugin-typedoc": "cd packages/docusaurus-plugin-typedoc && yarn run build",
"pretest": "yarn run build",
"test": "lerna run test --parallel",
"deploy": "lerna publish from-package",
"postinstall": "lerna bootstrap"
},
"devDependencies": {
"@types/fs-extra": "^9.0.12",
"@types/jest": "^26.0.24",
"@types/node": "^16.3.1",
"@types/progress": "^2.0.4",
"@types/tmp": "^0.2.1",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"copyfiles": "^2.4.1",
"cuid": "^2.1.8",
"eslint": "^7.30.0",
"fs-extra": "^10.0.0",
"jest": "^26.6.3",
"lerna": "^4.0.0",
"markdownlint": "^0.23.1",
"markdownlint-cli": "^0.27.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"tmp": "^0.2.1",
"ts-jest": "^26.5.5",
"typedoc": "^0.21.4",
"typescript": "^4.3.5"
}
}