-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
59 lines (59 loc) · 1.69 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
{
"name": "ckeditor5-dev",
"version": "45.0.9",
"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": ">=18.0.0"
},
"type": "module",
"devDependencies": {
"@ckeditor/ckeditor5-dev-ci": "^45.0.9",
"@ckeditor/ckeditor5-dev-release-tools": "^45.0.9",
"@ckeditor/ckeditor5-dev-bump-year": "^45.0.9",
"@inquirer/prompts": "^6.0.0",
"@listr2/prompt-adapter-inquirer": "^2.0.16",
"@octokit/rest": "^21.0.0",
"eslint": "^8.21.0",
"eslint-config-ckeditor5": "^8.0.0",
"fs-extra": "^11.0.0",
"glob": "^10.0.0",
"husky": "^8.0.2",
"js-yaml": "^4.1.0",
"lint-staged": "^15.0.0",
"listr2": "^8.0.0",
"minimist": "^1.2.8",
"semver": "^7.6.3",
"upath": "^2.0.1"
},
"scripts": {
"postinstall": "node ./scripts/postinstall.js",
"test": "node ./scripts/runtest.js",
"coverage": "node ./scripts/runtest.js --coverage",
"changelog": "node ./scripts/changelog.js",
"release:prepare-packages": "node ./scripts/preparepackages.js",
"release:publish-packages": "node ./scripts/publishpackages.js",
"lint": "eslint --quiet \"**/*.{js,ts}\"",
"precommit": "lint-staged",
"clean": "npx rimraf package-lock.json yarn.lock ./**/node_modules",
"reinstall": "yarn run clean && yarn install"
},
"lint-staged": {
"**/*.js": [
"eslint --quiet"
]
},
"workspaces": {
"packages": [
"packages/*",
"."
]
}
}