forked from jaredklassen/vue2-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.61 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
{
"name": "vue2-editor",
"version": "2.6.6",
"private": false,
"author": {
"name": "David Royer",
"email": "[email protected]"
},
"description": "HTML editor using Vue.js 2, and Quill.js, an open source editor",
"keywords": [
"vue",
"vue-component",
"quill",
"html editor",
"text editor"
],
"repository": {
"type": "git",
"url": "https://github.com/davidroyer/vue2-editor.git"
},
"main": "dist/vue2-editor.js",
"files": [
"dist"
],
"scripts": {
"commit": "git-cz",
"commit:add": "git add . && git-cz",
"dev": "poi dev/index.js",
"docs": "docsify serve ./docs",
"docs:build": "npx vuedoc.md ./src/components/*.vue --output docs/components/",
"doc:comp": "npx vuedoc.md --section API --output ./README.md ./src/VueEditor.vue",
"test": "echo lol",
"lint": "poi --eslint",
"build": "poi build ./src/index.js --library Vue2Editor",
"release": "release-it"
},
"devDependencies": {
"axios": "^0.24.0",
"commitizen": "^4.2.4",
"conventional-changelog-cli": "^2.0.1",
"cz-conventional-changelog": "^2.1.0",
"gh-pages": "^3.2.3",
"poi": "^12.10.3",
"quill-image-drop-module": "^1.0.3",
"quill-image-resize-module": "^3.0.0",
"release-it": "^14.11.8",
"sass": "^1.45.0",
"sass-loader": "7.*",
"spectre.css": "^0.2.12"
},
"license": "MIT",
"dependencies": {
"lodash.merge": "^4.6.0",
"quill": "^1.3.6"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}