-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
101 lines (101 loc) · 2.72 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@ckeditor/ckeditor5-vue2",
"version": "3.0.1",
"main": "dist/ckeditor.js",
"description": "Official Vue.js 2.x component for CKEditor 5 – the best browser-based rich text editor.",
"keywords": [
"wysiwyg",
"rich text",
"editor",
"html",
"contentEditable",
"editing",
"vue",
"vue.js",
"vue component",
"vue.js component",
"ckeditor",
"ckeditor5",
"ckeditor 5"
],
"devDependencies": {
"@babel/core": "^7.0.0",
"@ckeditor/ckeditor5-build-classic": "^34.0.0",
"@ckeditor/ckeditor5-dev-bump-year": "^38.0.0",
"@ckeditor/ckeditor5-dev-ci": "^38.0.0",
"@ckeditor/ckeditor5-dev-release-tools": "^38.0.0",
"@ckeditor/ckeditor5-dev-utils": "^38.0.0",
"@vue/test-utils": "^1.3.0",
"babel-loader": "^8.0.5",
"babel-plugin-istanbul": "^6.1.0",
"coveralls": "^3.1.1",
"chai": "^4.2.0",
"eslint": "^7.0.0",
"eslint-config-ckeditor5": "^5.3.2",
"husky": "^8.0.2",
"karma": "^6.3.17",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.1",
"karma-coverage": "^2.2.0",
"karma-firefox-launcher": "^2.1.2",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-sinon": "^1.0.5",
"karma-sourcemap-loader": "^0.3.8",
"karma-webpack": "^5.0.0",
"lint-staged": "^10.2.11",
"listr2": "^6.5.0",
"lodash-es": "^4.17.11",
"minimist": "^1.2.0",
"mocha": "^10.1.0",
"sinon": "^9.0.2",
"terser-webpack-plugin": "^3.0.2",
"vue": "^2.6.10",
"vue-template-compiler": "^2.6.10",
"webpack": "^5.77.0",
"webpack-cli": "^4.10.0"
},
"resolutions": {
"strip-ansi-cjs": "1.0.0",
"string-width": "^4.0.0",
"semver": "^7.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"postinstall": "node ./scripts/postinstall.js",
"build": "webpack --mode production",
"develop": "webpack --mode development --watch",
"changelog": "node ./scripts/changelog.js",
"release:prepare-packages": "node ./scripts/preparepackages.js",
"release:publish-packages": "node ./scripts/publishpackages.js",
"test": "node ./scripts/test.js",
"coverage": "node ./scripts/test.js --coverage",
"lint": "eslint --quiet \"**/*.js\""
},
"repository": {
"type": "git",
"url": "https://github.com/ckeditor/ckeditor5-vue2.git"
},
"files": [
"dist",
"README.md",
"CHANGELOG.md",
"LICENSE.md"
],
"author": "CKSource (http://cksource.com/)",
"license": "GPL-2.0-or-later",
"bugs": {
"url": "https://github.com/ckeditor/ckeditor5-vue2/issues"
},
"homepage": "https://github.com/ckeditor/ckeditor5-vue2",
"eslintIgnore": [
"dist/**"
],
"lint-staged": {
"**/*.js": [
"eslint --quiet"
]
}
}