forked from aanation/vue2-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.09 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
{
"name": "vue2-editor",
"version": "2.4.2",
"description": "HTML editor using Vue.js 2, and Quill.js, an open source editor",
"keywords": [
"vue",
"vue-component",
"quill",
"html editor",
"text editor"
],
"author": "David Royer <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/davidroyer/vue2-editor"
},
"main": "dist/vue2-editor.js",
"files": [
"dist"
],
"scripts": {
"dev": "poi dev/index.js",
"docs": "docsify serve ./docs",
"test": "echo lol",
"lint": "poi --eslint",
"build": "poi build ./src/index.js --library Vue2Editor",
"build2": "poi build ./src/index.js --library Vue2Editor --filename.js vue2-editor.js --filename.css vue2-editor.css"
},
"devDependencies": {
"axios": "^0.16.2",
"gh-pages": "^0.12.0",
"node-sass": "^4.7.2",
"sass-loader": "^6.0.6",
"spectre.css": "^0.2.12"
},
"license": "MIT",
"dependencies": {
"lodash.merge": "^4.6.0",
"quill": "^1.3.5",
"quill-image-drop-module": "^1.0.3",
"quill-image-resize-module": "^3.0.0"
}
}