-
-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathpackage.json
41 lines (41 loc) · 962 Bytes
/
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
{
"name": "vue-ckeditor2",
"version": "2.1.5",
"description": "Ckeditor 4 using with Vue.js",
"author": "Dang Van Thanh <dangvanthanh@dangthanh.org>",
"main": "dist/vue-ckeditor2.cjs.js",
"module": "dist/vue-ckeditor2.esm.js",
"unpkg": "dist/vue-ckeditor2.umd.js",
"scripts": {
"build": "bili src/index.js --bundle-node-modules",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,json,vue},!dist/*.js": [
"prettier --write",
"git add"
]
},
"peerDependencies": {
"ckeditor": ">= 4",
"vue": ">= 2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dangvanthanh/vue-ckeditor2.git"
},
"keywords": [
"vue",
"ckeditor",
"vue-ckeditor"
],
"license": "MIT",
"devDependencies": {
"bili": "^5.0.5",
"husky": "8.0.3",
"lint-staged": "13.1.0",
"prettier": "^2.3.2",
"rollup-plugin-vue": "5.0.0",
"vue-template-compiler": "^2.6.14"
}
}