forked from froala/vue-froala-wysiwyg
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
108 lines (108 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "vue-froala-wysiwyg",
"version": "4.0.0",
"description": "Vue plugin for Froala WYSIWYG HTML rich text editor.",
"author": "Froala Labs (https://www.froala.com/)",
"license": "https://froala.com/wysiwyg-editor/terms/",
"repository": {
"type": "git",
"url": "https://github.com/froala/vue-froala-wysiwyg.git"
},
"bugs": {
"url": "https://github.com/froala/vue-froala-wysiwyg/issues"
},
"keywords": [
"vue",
"froala",
"html",
"text",
"editor",
"wysisyg",
"rich editor",
"rich text editor",
"rte",
"javascript"
],
"main": "dist/vue-froala.js",
"unpkg": "dist/vue-froala.min.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"files": [
"src",
"dist",
"es"
],
"scripts": {
"dev": "node build/dev-server.js",
"build": "yarn run release && yarn run build:es",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es",
"release": "webpack --progress --hide-modules --config ./build/webpack.release.js && webpack --progress --hide-modules --config ./build/webpack.release.min.js",
"prepublish": "yarn run build"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"@babel/runtime-corejs2": "^7.7.7",
"froala-editor": "^3.2.6-1",
"vue": "^3.0.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.0",
"@babel/helpers": "^7.3.1",
"@babel/plugin-transform-runtime": "^7.3.4",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.3.4",
"@babel/runtime": "^7.3.4",
"@vue/compiler-sfc": "^3.0.7",
"babel-helpers": "^6.24.1",
"babel-loader": "^8.0.5",
"connect-history-api-fallback": "^1.1.0",
"cross-env": "^5.2.0",
"cross-spawn": "^6.0.5",
"css-loader": "^2.1.0",
"eventsource-polyfill": "^0.9.6",
"express": "^4.15.2",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^3.0.1",
"function-bind": "^1.0.2",
"html-webpack-plugin": "^3.2.0",
"http-proxy-middleware": "^0.19.1",
"inject-loader": "^4.0.1",
"isparta-loader": "^2.0.0",
"jasmine-core": "^3.3.0",
"json-loader": "^0.5.4",
"lolex": "^3.1.0",
"nightwatch": "^1.0.19",
"ora": "^3.1.0",
"shelljs": "^0.8.3",
"uglifyjs-webpack-plugin": "2.1.1",
"url-loader": "^1.1.2",
"vue-hot-reload-api": "^2.0.11",
"vue-html-loader": "^1.2.4",
"vue-loader": "^16.1.2",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "2.6.6",
"webpack": "^4.29.3",
"webpack-cli": "3.2.3",
"webpack-dev-middleware": "^3.5.2",
"webpack-hot-middleware": "^2.17.1",
"webpack-merge": "4.2.1",
"yarn": "^1.13.0"
},
"engines": {
"node": ">=6.9.0"
},
"browserify": {
"transform": [
"babelify"
]
},
"greenkeeper": {
"ignore": [
"extract-text-webpack-plugin",
"karma-webpack",
"webpack",
"webpack-merge"
]
}
}