-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
86 lines (86 loc) · 2.14 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
{
"name": "ckeditor4-vue",
"version": "3.2.0",
"main": "dist/ckeditor.js",
"files": [
"dist/",
"samples/"
],
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@vue/test-utils": "^1.3.4",
"babel-loader": "^8.3.0",
"chai": "^4.3.7",
"core-js": "^3.27.2",
"eslint": "^8.33.0",
"eslint-config-ckeditor5": "^3.1.1",
"istanbul-instrumenter-loader": "^3.0.1",
"karma": "^6.4.1",
"karma-browserstack-launcher": "^1.6.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.1",
"karma-coverage": "^2.2.0",
"karma-coveralls": "^2.0.0",
"karma-firefox-launcher": "^2.1.2",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.4",
"karma-sinon": "^1.0.5",
"karma-sourcemap-loader": "^0.3.8",
"karma-webpack": "^4.0.2",
"live-server": "^1.2.2",
"minimist": "^1.2.8",
"mocha": "^9.2.2",
"sinon": "^9.2.4",
"terser-webpack-plugin": "^4.2.2",
"vue": "^2.7.14",
"vue-router": "^3.6.5",
"vue-template-compiler": "^2.7.14",
"webpack": "^4.46.0",
"webpack-cli": "^4.10.0"
},
"peerDependencies": {
"vue": "^2.5.17"
},
"dependencies": {
"ckeditor4-integrations-common": "^1.0.0"
},
"engines": {
"node": ">=8.0.0",
"npm": ">=5.7.1"
},
"scripts": {
"start": "npm run build && live-server --open=samples/index.html",
"build": "webpack --mode production",
"develop": "webpack --mode development --watch",
"test": "karma start",
"bump": "node ./scripts/bump.js",
"preversion": "npm test",
"version": "npm run build && git add -f dist/",
"postversion": "git rm -r --cached dist/ && git commit -m \"Clean after release [ci skip]\" && git push origin && git push origin --tags"
},
"repository": {
"type": "git",
"url": "https://github.com/ckeditor/ckeditor4-vue.git"
},
"keywords": [
"wysiwyg",
"rich text",
"editor",
"rte",
"html",
"contentEditable",
"editing",
"vue",
"component",
"ckeditor",
"ckeditor4",
"ckeditor 4"
],
"author": "CKSource (http://cksource.com/)",
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/ckeditor/ckeditor4-vue/issues"
},
"homepage": "https://github.com/ckeditor/ckeditor4-vue"
}