forked from JiHong88/suneditor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.69 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
{
"name": "suneditor",
"sideEffects": [
"./src/assets/css/*.css"
],
"version": "2.37.1",
"description": "Pure JavaScript based WYSIWYG web editor",
"main": "src/suneditor.js",
"keywords": [
"wysiwyg",
"wysiwyg editor",
"wysiwyg html editor",
"rich text",
"rich editor",
"rich text editor",
"html",
"text",
"editor",
"contenteditable",
"javascript",
"vanillajs"
],
"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"
],
"devDependencies": {
"@babel/core": "7.0.0",
"@webpack-cli/init": "^0.2.2",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^0.1.19",
"codemirror": "^5.57.0",
"css-loader": "^1.0.1",
"csstype": "^2.6.13",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"jasmine": "^2.99.0",
"jasmine-core": "^2.99.1",
"jshint": "^2.12.0",
"karma": "^4.4.1",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^1.1.2",
"katex": "^0.11.1",
"mini-css-extract-plugin": "^0.4.5",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"url-loader": "^1.1.2",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.2.2"
},
"scripts": {
"dev": "webpack-dev-server --open --config webpack.dev.js",
"start": "npm run dev",
"build": "webpack --config webpack.prod.js",
"lint": "jshint src",
"test": "karma start"
}
}