forked from miaolz123/vue-markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.58 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
{
"name": "vue-markdown",
"version": "2.2.4",
"description": "A Powerful and Highspeed Markdown Parser for Vue",
"main": "dist/vue-markdown.common.js",
"files": [
"dist/vue-markdown.js",
"dist/vue-markdown.common.js",
"src"
],
"scripts": {
"start": "webpack --config webpack.config.js",
"build": "webpack --config webpack.common.js",
"test": "echo true"
},
"repository": {
"type": "git",
"url": "git+https://github.com/miaolz123/vue-markdown.git"
},
"keywords": [
"vue",
"markdown",
"vue-markdown"
],
"author": "miaolz123",
"license": "MIT",
"bugs": {
"url": "https://github.com/miaolz123/vue-markdown/issues"
},
"homepage": "https://github.com/miaolz123/vue-markdown#readme",
"devDependencies": {
"babel-core": "^6.8.0",
"babel-loader": "^6.2.4",
"babel-plugin-transform-es2015-parameters": "^6.8.0",
"babel-plugin-transform-runtime": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-runtime": "^6.6.1",
"css-loader": "^0.23.1",
"json-loader": "^0.5.7",
"style-loader": "^0.13.1",
"webpack": "^1.13.0"
},
"dependencies": {
"highlight.js": "^9.12.0",
"markdown-it": "^6.0.1",
"markdown-it-abbr": "^1.0.3",
"markdown-it-deflist": "^2.0.1",
"markdown-it-emoji": "^1.1.1",
"markdown-it-footnote": "^2.0.0",
"markdown-it-ins": "^2.0.0",
"markdown-it-katex": "^2.0.3",
"markdown-it-mark": "^2.0.0",
"markdown-it-sub": "^1.0.0",
"markdown-it-sup": "^1.0.0",
"markdown-it-task-lists": "^2.0.1",
"markdown-it-toc-and-anchor": "^4.1.2"
}
}