-
Notifications
You must be signed in to change notification settings - Fork 361
/
package.json
130 lines (130 loc) · 3.39 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "vue2-editor",
"version": "2.10.3",
"description": "HTML editor using Vue.js 2, and Quill.js, an open source editor",
"author": {
"name": "David Royer",
"email": "[email protected]"
},
"license": "MIT",
"scripts": {
"lint": "vue-cli-service lint",
"build": "BUILD_TYPE=modular vue-cli-service build",
"build:modular": "BUILD_TYPE=modular vue-cli-service build",
"demo": "vue-cli-service demo",
"dev": "vue-cli-service serve",
"docs": "vue-cli-service docs --mode serve",
"docs:build": "vue-cli-service docs --mode build",
"docs:preview": "http-server docs/.vuepress/dist",
"release": "standard-version && git push --follow-tags && npm publish",
"release:next": "standard-version --prerelease next && git push --follow-tags origin dev && npm publish --tag next",
"release:ssr": "standard-version --prerelease ssr && git push --follow-tags origin ssr && npm publish --tag ssr",
"update:vp": "yarn upgrade vue-cli-plugin-vplugin"
},
"standard-version": {
"scripts": {
"postbump": "npm run build && git add dist && git commit -m 'chore: new build'"
},
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "chore",
"hidden": true
},
{
"type": "docs",
"hidden": true
},
{
"type": "imp",
"section": "Improvements"
},
{
"type": "style",
"hidden": true
},
{
"type": "refactor",
"section": "Refactoring"
},
{
"type": "perf",
"hidden": true
},
{
"type": "test",
"hidden": true
}
]
},
"main": "dist/vue2-editor.common.js",
"module": "dist/vue2-editor.esm.js",
"unpkg": "dist/vue2-editor.umd.min.js",
"files": [
"dist",
"nuxt"
],
"dependencies": {
"quill": "^1.3.6"
},
"devDependencies": {
"@commitlint/cli": "^7.6.1",
"@commitlint/config-conventional": "^7.6.0",
"@vue/cli-plugin-babel": "^3.7.0",
"@vue/cli-plugin-eslint": "^3.7.0",
"@vue/cli-service": "^3.7.0",
"@vue/eslint-config-prettier": "^4.0.1",
"@vuepress/plugin-google-analytics": "^1.0.0-rc.1",
"axios": "^0.21.1",
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-vue": "^5.0.0",
"highlight.js": "^9.15.6",
"http-server": "^0.11.1",
"node-sass": "^4.12.0",
"querystringify": "^2.1.1",
"quill-image-drop-module": "^1.0.3",
"quill-image-resize-module": "^3.0.0",
"sass": "^1.21.0",
"sass-loader": "^7.1.0",
"standard-version": "^6.0.1",
"vue": "^2.6.10",
"vue-cli-plugin-vplugin": "latest",
"vue-router": "^3.0.6",
"vue-template-compiler": "^2.5.21",
"vuepress-plugin-demo-block": "^0.7.2",
"vuepress-plugin-live": "^1.1.0"
},
"peerDependencies": {},
"eslintIgnore": [
"/dist",
"/node_modules",
"/demo",
"!.vuepress"
],
"jsdelivr": "dist/vue2-editor.umd.min.js",
"keywords": [
"vue",
"vue-component",
"quill",
"html editor",
"text editor"
],
"productName": "Vue2Editor",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/davidroyer/vue2-editor.git"
},
"sideeffects": false
}