-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.39 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
{
"name": "cool-md-editor",
"version": "1.3.0",
"description": "a markedown editor width webpack & codemirror & marked & highlight",
"main": "dist/cMDEditor.js",
"unpkg": "dist/cMDEditor.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack-dev-server --open --progress --colors",
"build": "webpack --mode=production"
},
"keywords": [],
"author": "Jesonhu",
"repository": {
"type": "git",
"url": "git+https://github.com/Jesonhu/cool-md-editor.git"
},
"bugs": {
"url": "https://github.com/Jesonhu/cool-md-editor/issues"
},
"license": "MIT",
"dependencies": {
"codemirror": "^5.40.0",
"highlight.js": "^9.12.0",
"lodash-es": "^4.17.15",
"marked": "^0.8.2"
},
"devDependencies": {
"autoprefixer": "^9.1.3",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"clean-webpack-plugin": "^1.0.0",
"css-loader": "^1.0.0",
"cssnano": "^4.1.0",
"html-webpack-plugin": "^3.2.0",
"less": "^3.11.1",
"less-loader": "^5.0.0",
"mini-css-extract-plugin": "^0.4.2",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss-loader": "^3.0.0",
"style-loader": "^0.23.0",
"webpack": "^4.17.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.14"
},
"browserslist": [
"last 2 versions"
]
}