-
Notifications
You must be signed in to change notification settings - Fork 918
/
package.json
127 lines (127 loc) · 3.84 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "mavon-editor",
"version": "2.10.4",
"description": "Vue markdown editor",
"main": "dist/mavon-editor.js",
"types": "./mavon-editor.d.ts",
"scripts": {
"dev": "webpack-dev-server --progress --config webpack/webpack.dev.js",
"ci-build": "webpack --progress --config webpack/webpack.build.js",
"build": "run-s lint test ci-build",
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "eslint --ext .js,.vue src/",
"lint:fix": "eslint --fix --ext .js,.vue src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hinesboy/mavonEditor.git"
},
"keywords": [
"javascript",
"vue",
"markdown",
"editor",
"html"
],
"files": [
"dist",
"mavon-editor.d.ts",
"src"
],
"author": "hinesboy",
"license": "MIT",
"bugs": {
"url": "https://github.com/hinesboy/mavonEditor/issues"
},
"homepage": "https://github.com/hinesboy/mavonEditor#readme",
"dependencies": {
"xss": "^1.0.10"
},
"devDependencies": {
"@vue/test-utils": "^1.1.2",
"auto-textarea": "^1.4.0",
"autoprefixer": "^8.3.0",
"babel-core": "^6.0.0",
"babel-eslint": "^8.0.2",
"babel-jest": "^23.6.0",
"babel-loader": "^7.0.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-stage-2": "^6.24.1",
"copy-webpack-plugin": "^4.2.3",
"css-loader": "^0.28.1",
"eslint": "^4.11.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-html": "^4.0.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.1",
"github-markdown-css": "^2.6.0",
"html-loader": "^0.4.5",
"html-webpack-plugin": "^2.28.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^23.6.0",
"jest-raw-loader": "^1.0.1",
"jest-serializer-vue": "^2.0.2",
"katex": "^0.11.1",
"keycode": "^2.1.9",
"less": "^2.7.2",
"less-loader": "^4.0.4",
"markdown-it": "^10.0.0",
"markdown-it-abbr": "^1.0.4",
"markdown-it-container": "^2.0.0",
"markdown-it-deflist": "^2.0.0",
"markdown-it-emoji": "^1.1.1",
"markdown-it-footnote": "^3.0.1",
"markdown-it-for-inline": "~0.1.0",
"markdown-it-highlightjs-external": "^1.0.1",
"markdown-it-images-preview": "^1.0.0",
"markdown-it-ins": "^2.0.0",
"markdown-it-katex-external": "^1.0.0",
"markdown-it-mark": "^2.0.0",
"markdown-it-sub": "^1.0.0",
"markdown-it-sup": "^1.0.0",
"markdown-it-task-lists": "^2.1.1",
"markdown-it-toc": "^1.1.0",
"merges-utils": "^1.0.2",
"npm-run-all": "^4.1.5",
"optimize-css-assets-webpack-plugin": "^1.3.1",
"postcss": "^5.0.10",
"postcss-advanced-variables": "1.2.2",
"postcss-atroot": "^0.1.2",
"postcss-color-function": "^3.0.0",
"postcss-custom-media": "^5.0.0",
"postcss-custom-properties": "^5.0.0",
"postcss-custom-selectors": "^3.0.0",
"postcss-extend": "^1.0.1",
"postcss-loader": "^1.3.3",
"postcss-media-minmax": "^2.1.0",
"postcss-mixins": "^5.4.1",
"postcss-nested": "^1.0.0",
"postcss-nested-import": "^0.1.0",
"postcss-nesting": "^2.0.6",
"postcss-partial-import": "^3.1.1",
"postcss-property-lookup": "^1.1.3",
"postcss-selector-matches": "^2.0.0",
"postcss-selector-not": "^2.0.0",
"raw-loader": "^0.5.1",
"style-loader": "^0.17.0",
"stylus": "^0.54.8",
"stylus-loader": "^2.5.1",
"url-loader": "^0.5.8",
"vue": "^2.3.4",
"vue-jest": "^3.0.7",
"vue-loader": "^13.7.0",
"vue-style-loader": "^3.0.0",
"vue-template-compiler": "^2.2.1",
"webpack": "^2.4.1",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-dev-server": "^2.11.5",
"webpack-md5-hash": "^0.0.5"
}
}