forked from JiHong88/suneditor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.47 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
{
"name": "suneditor",
"sideEffects": [
"./src/assets/css/*.css"
],
"version": "2.1.1",
"description": "Pure JavaScript based WYSIWYG web editor",
"main": "src/suneditor.js",
"keywords": [
"wysiwyg",
"editor",
"wysiwyg editor",
"rich text",
"rich editor",
"rich text editor",
"web",
"html",
"contenteditable",
"suneditor",
"javascript"
],
"author": "JiHong.Lee",
"license": "MIT",
"bugs": {
"url": "https://github.com/JiHong88/SunEditor/issues"
},
"homepage": "http://suneditor.com",
"repository": {
"type": "git",
"url": "https://github.com/JiHong88/SunEditor.git"
},
"ignore": [
"**/.*",
"node_modules",
"bower_components"
],
"dependencies": {},
"devDependencies": {
"@babel/core": "7.0.0",
"@webpack-cli/init": "^0.1.0",
"babel-loader": "^8.0.2",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^1.0.0",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.4.2",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"url-loader": "^1.1.1",
"webpack": "^4.17.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.8",
"webpack-merge": "^4.1.4"
},
"scripts": {
"dev": "webpack-dev-server --open --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"customize": "webpack --config webpack.customize.ex.js",
"test": "echo \"Error: no test specified\" && exit 1"
}
}