-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
89 lines (89 loc) · 2.87 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
{
"name": "vue-rich-editor",
"version": "0.8.1-beta.0",
"description": "a vue rich text editor,based on quill",
"main": "dist/index.js",
"scripts": {
"test": "echo lol",
"lint": "vbuild -c vbuild.example.js --eslint",
"lint:fix": "eslint --ext .js,.vue src --fix",
"lint:fixe": "eslint --ext .js,.vue example --fix",
"build-w": "webpack",
"build": "npm run build-cjs && npm run build-umd",
"build-cjs": "vbuild -c vbuild.config.js --format cjs",
"build-umd": "vbuild -c vbuild.config.js --format umd",
"example": "vbuild -c vbuild.example.js -d",
"deploy": "vbuild -c vbuild.example.js && gh-pages -d dist-example",
"precommit": "lint-staged",
"pub-clean": "rm -rf ./npm-public/*",
"pub-copy-npm": "gulp copy-npm",
"before-pub": "npm run build && npm run pub-clean && npm run pub-copy-npm",
"do-pub": "cd npm-public && npm publish",
"pub": "npm run before-pub && npm run do-pub"
},
"lint-staged": {
"gitDir": ".",
"linters": {
"src/**/*.{js,vue}": [
"eslint --fix",
"git add"
]
}
},
"dependencies": {
"caret-pos": "^1.2.1",
"quill": "^1.3.6",
"parchment": "^1.1.3",
"jquery": "^3.2.1",
"n-quill-blot-formatter": "^1.1.1",
"trans-style-tags": "0.0.4",
"html-to-vdom": "0.7.0"
},
"devDependencies": {
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-env": "^1.3.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.22.0",
"babel-register": "^6.22.0",
"gh-pages": "^0.12.0",
"style-loader": "^0.19.1",
"sass-loader": "^6.0.6",
"node-sass": "^4.6.0",
"webpack": "^3.10.0",
"vbuild": "^6.0.0",
"eslint": "^4.13.1",
"eslint-config-kaola": "^0.1.3",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^1.7.1",
"eslint-plugin-html": "^3.0.0",
"lint-staged": "^6.0.0",
"axios": "^0.18.1",
"clipboard-paste": "0.0.5",
"gulp": "3.9.1",
"gulp-all": "1.1.0",
"gulp-rename": "1.4.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ReAlign/vue-rich-editor.git"
},
"keywords": [
"quill",
"rich editor",
"html editor",
"text editor",
"vue",
"vue-component",
"module config",
"inline style"
],
"author": "ReAlign <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/ReAlign/vue-rich-editor/issues"
},
"homepage": "https://github.com/ReAlign/vue-rich-editor#readme"
}