-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
73 lines (73 loc) · 1.93 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
{
"name": "@ckeditor/ckeditor5-package-generator",
"version": "3.0.0",
"private": true,
"keywords": [
"ckeditor",
"ckeditor5",
"ckeditor 5",
"package",
"plugin",
"generator",
"maker",
"wizard",
"bootstrapper"
],
"author": "CKSource (http://cksource.com/)",
"license": "MIT",
"homepage": "https://ckeditor.com/ckeditor-5",
"type": "module",
"devDependencies": {
"@ckeditor/ckeditor5-dev-bump-year": "^45.0.0",
"@ckeditor/ckeditor5-dev-ci": "^45.0.0",
"@ckeditor/ckeditor5-dev-release-tools": "^45.0.0",
"@ckeditor/ckeditor5-dev-web-crawler": "^45.0.0",
"@vitest/coverage-v8": "^2.1.1",
"chalk": "^5.0.0",
"coveralls": "^3.1.1",
"eslint": "^7.32.0",
"eslint-config-ckeditor5": "^6.0.0",
"fs-extra": "^11.2.0",
"glob": "^10.2.5",
"husky": "^8.0.2",
"lint-staged": "^10.5.4",
"minimist": "^1.2.8",
"semver": "^7.0.0",
"strip-ansi": "^6.0.1",
"upath": "^2.0.1",
"vitest": "^2.0.5"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"postinstall": "node ./scripts/postinstall.js",
"changelog": "node scripts/release/changelog.js",
"lint": "eslint --quiet \"**/*.js\"",
"precommit": "lint-staged",
"release:prepare-packages": "node scripts/release/preparepackages.js",
"release:publish-packages": "node scripts/release/publishpackages.js",
"test": "vitest run --config vitest.config.js",
"coverage": "vitest run --config vitest.config.js --coverage",
"clean": "npx rimraf --glob package-lock.json yarn.lock ./**/node_modules",
"reinstall": "yarn run clean && yarn install"
},
"repository": {
"type": "git",
"url": "https://github.com/ckeditor/ckeditor5-package-generator.git"
},
"lint-staged": {
"**/*.js": [
"eslint --quiet"
]
},
"eslintIgnore": [
"coverage/**",
"packages/*/node_modules/**"
],
"workspaces": {
"packages": [
"packages/*"
]
}
}