-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.93 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.93 KB
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
{
"name": "ckeditor5-dev",
"version": "55.5.0",
"private": true,
"author": "CKSource (http://cksource.com/)",
"license": "GPL-2.0-or-later",
"bugs": "https://github.com/ckeditor/ckeditor5/issues",
"repository": {
"type": "git",
"url": "https://github.com/ckeditor/ckeditor5-dev.git"
},
"homepage": "https://github.com/ckeditor/ckeditor5-dev#readme",
"engines": {
"node": ">=24.11.0",
"pnpm": ">=10.28.0"
},
"type": "module",
"devDependencies": {
"@inquirer/prompts": "^7.10.1",
"@listr2/prompt-adapter-inquirer": "^2.0.22",
"@vitest/coverage-v8": "^4.1.2",
"eslint": "^9.39.4",
"eslint-config-ckeditor5": "^13.0.1",
"eslint-plugin-ckeditor5-rules": "^13.0.1",
"fs-extra": "^11.3.4",
"glob": "^13.0.6",
"globals": "^16.5.0",
"husky": "^9.1.7",
"js-yaml": "^4.1.1",
"lint-staged": "^16.4.0",
"listr2": "^8.3.3",
"minimist": "^1.2.8",
"semver": "^7.7.4",
"upath": "^2.0.1",
"vite": ">=7.3.2 <8",
"vitest": "^4.1.2"
},
"scripts": {
"nice": "ckeditor5-dev-changelog-create-entry",
"postinstall": "node ./scripts/postinstall.js",
"test": "node ./scripts/runtest.js",
"test:scripts": "vitest --config ./scripts-tests/vitest.config.mjs --run",
"coverage": "node ./scripts/runtest.js --coverage",
"check-versions-match": "node scripts/ci/check-dependencies-versions-match.mjs",
"release:prepare-changelog": "node ./scripts/preparechangelog.js",
"release:prepare-packages": "node ./scripts/preparepackages.js",
"release:publish-packages": "node ./scripts/publishpackages.js",
"lint": "eslint --concurrency=4",
"precommit": "lint-staged",
"reinstall": "pnpx rimraf --glob \"**/node_modules\" && pnpm install",
"check-dependencies": "ckeditor5-dev-dependency-checker"
},
"lint-staged": {
"**/*": [
"eslint --quiet"
]
},
"workspaces": {
"packages": [
"packages/*",
"."
]
}
}