forked from KnodesCommunity/typedoc-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.12 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
67
68
69
70
71
72
73
74
75
{
"name": "@knodes/typedoc-plugin-code-blocks",
"version": "0.22.6",
"description": "A TypeDoc plugin to embed source code into your output documentation",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/KnodesCommunity/typedoc-plugins.git"
},
"bugs": {
"url": "https://github.com/KnodesCommunity/typedoc-plugins/issues"
},
"homepage": "https://knodescommunity.github.io/typedoc-plugins/modules/_knodes_typedoc_plugin_code_blocks.html",
"author": {
"email": "[email protected]",
"name": "GerkinDev"
},
"keywords": [
"code",
"documentation",
"plugin",
"typedoc",
"typedoc-plugin",
"typedocplugin"
],
"main": "dist/index.js",
"files": [
"dist",
"src",
"static"
],
"scripts": {
"build": "tsc --project tsconfig.build.json",
"build:clean": "rimraf dist",
"lint": "eslint --ignore-path ../../.eslintignore '**/?(.)*.?([cm])[tj]s?(x)'",
"prepublish": "npm run build:clean && npm run build",
"test": "jest --config jest.config.js"
},
"dependencies": {
"lodash": "^4.17.21",
"@knodes/typedoc-pluginutils": "~0.22.6"
},
"peerDependencies": {
"typedoc": "^0.22.0"
},
"devDependencies": {
"@knodes/eslint-config": "^1.6.5",
"@testing-library/jest-dom": "^5.16.4",
"@types/jest": "^28.1.2",
"@types/jsdom": "^16.2.14",
"@types/lodash": "^4.14.182",
"@types/node": "^18.0.0",
"@types/react": "^18.0.14",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"eslint": "^8.18.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^39.3.3",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-sort-export-all": "^1.2.2",
"jest": "^28.1.1",
"jest-extended": "^2.0.0",
"jest-junit": "^13.2.0",
"jsdom": "^19.0.0",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.5",
"typedoc": "^0.22.17",
"typescript": "^4.7.4",
"@types/marked": "^4.0.2",
"@types/mock-fs": "^4.13.1",
"conventional-changelog-cli": "^2.2.2",
"marked": "^4.0.12"
}
}