-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
43 lines (43 loc) · 1.18 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
{
"name": "@ckeditor/ckeditor5-dev-docs",
"version": "45.0.9",
"description": "Tasks used to build and verify the documentation for CKEditor 5.",
"keywords": [],
"author": "CKSource (http://cksource.com/)",
"license": "GPL-2.0-or-later",
"homepage": "https://github.com/ckeditor/ckeditor5-dev/tree/master/packages/ckeditor5-dev-docs",
"bugs": "https://github.com/ckeditor/ckeditor5/issues",
"repository": {
"type": "git",
"url": "https://github.com/ckeditor/ckeditor5-dev.git",
"directory": "packages/ckeditor5-dev-docs"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=5.7.1"
},
"type": "module",
"main": "lib/index.js",
"files": [
"lib"
],
"dependencies": {
"@ckeditor/ckeditor5-dev-utils": "^45.0.9",
"@ckeditor/typedoc-plugins": "^45.0.9",
"glob": "^10.0.0",
"fs-extra": "^11.0.0",
"tmp": "^0.2.1",
"typedoc": "^0.23.15",
"typedoc-plugin-rename-defaults": "0.6.6"
},
"devDependencies": {
"vitest": "^2.0.5"
},
"scripts": {
"test": "vitest run --config vitest.config.js",
"coverage": "vitest run --config vitest.config.js --coverage"
},
"depcheckIgnore": [
"typedoc-plugin-rename-defaults"
]
}