-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.34 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.34 KB
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
{
"name": "em-ckeditor",
"version": "1.0.1",
"description": "vue 的 ckeditor 富文本编辑器",
"main": "dist/em-ckeditor.js",
"files": [
"dist",
"src"
],
"scripts": {
"start": "webpack-dev-server --open --inline --hot --compress --history-api-fallback --port 8082 --config build/webpack.config.js",
"build": "npm run dist:dev && npm run dist:prod",
"dist:prod": "webpack --config build/webpack.dist.prod.config.js",
"dist:dev": "webpack --config build/webpack.dist.dev.config.js",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/em-fe/em-ckeditor.git"
},
"keywords": [
"VUE",
"ckeditor",
"em-ckeditor"
],
"author": "李梦龙",
"license": "ISC",
"bugs": {
"url": "https://github.com/em-fe/em-ckeditor/issues"
},
"homepage": "https://github.com/em-fe/em-ckeditor#readme",
"devDependencies": {
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-plugin-transform-strict-mode": "^6.24.1",
"babel-preset-env": "^1.5.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-runtime": "^6.23.0",
"css-loader": "^0.28.4",
"eslint": "4.4.1",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-friendly-formatter": "^3.0.0",
"eslint-import-resolver-webpack": "^0.8.3",
"eslint-loader": "^1.8.0",
"eslint-plugin-flowtype": "^2.34.0",
"eslint-plugin-flowtype-errors": "^3.3.0",
"eslint-plugin-html": "^3.2.2",
"eslint-plugin-import": "^2.6.0",
"file-loader": "^0.11.2",
"flow-bin": "^0.47.0",
"friendly-errors-webpack-plugin": "^1.6.1",
"gulp": "^3.9.1",
"gulp-cssmin": "^0.2.0",
"gulp-postcss": "^7.0.0",
"gulp-sass": "^3.1.0",
"html-loader": "^0.4.5",
"html-webpack-plugin": "^2.28.0",
"postcss-salad": "^2.0.1",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"stylelint-webpack-plugin": "^0.7.1",
"url-loader": "^0.5.9",
"vue": "2.3.4",
"vue-loader": "^12.2.1",
"vue-router": "^2.6.0",
"vue-template-compiler": "2.3.4",
"vuex": "^2.3.1",
"webpack": "^3.0.0",
"webpack-dev-server": "^2.5.0",
"webpack-merge": "^4.1.0"
},
"dependencies": {
"babel-plugin-dynamic-import-webpack": "^1.0.1"
}
}