This repository was archived by the owner on Jul 4, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.24 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.24 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
{
"name": "vue-ckeditor5",
"version": "0.5.0",
"description": "CKEditor 5 component for Vue 2.",
"author": "Igor Iakovlev <igorxut@gmail.com>",
"license": "MIT",
"private": false,
"main": "dist/vue-ckeditor5.js",
"files": [
"dist",
"src"
],
"keywords": [
"ckeditor",
"component",
"plugin",
"vue",
"vuejs"
],
"bugs": {
"url": "https://github.com/igorxut/vue-ckeditor5/issues"
},
"homepage": "https://github.com/igorxut/vue-ckeditor5#readme",
"repository": {
"type": "git",
"url": "https://github.com/igorxut/vue-ckeditor5.git"
},
"scripts": {
"lint": "eslint src",
"build": "webpack"
},
"peerDependencies": {
"vue": "^2.6.11"
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"babel-loader": "^8.0.6",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
},
"engines": {
"node": ">= 12.14.1",
"npm": ">= 6.13.6"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}