forked from miaolz123/vue-markdown
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
68 lines (68 loc) · 1.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
{
"name": "@adapttive/vue-markdown",
"version": "4.0.2",
"description": "A Powerful and High speed Markdown Parser for Vue",
"main": "dist/vue-markdown.common.js",
"types": "index.d.ts",
"files": [
"dist/vue-markdown.js",
"dist/vue-markdown.common.js",
"src",
"index.d.ts"
],
"scripts": {
"start": "webpack --config webpack.config.js",
"build": "webpack --config webpack.common.js",
"test": "echo true"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adapttive/vue-markdown.git"
},
"keywords": [
"vue",
"markdown",
"vue-markdown"
],
"author": "milindsingh",
"license": "MIT",
"bugs": {
"url": "https://github.com/adapttive/vue-markdown/issues"
},
"homepage": "https://github.com/adapttive/vue-markdown#readme",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"babel-loader": "^8.2.2",
"babel-plugin-transform-es2015-parameters": "^6.24.1",
"babel-runtime": "^6.26.0",
"css-loader": "^5.0.1",
"eslint": "^7.15.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-vue": "^7.3.0",
"json-loader": "^0.5.7",
"style-loader": "^2.0.0",
"vue": "^2.6.12",
"webpack": "^5.11.0",
"webpack-cli": "^4.2.0"
},
"dependencies": {
"markdown-it": "^12.0.3",
"markdown-it-abbr": "^1.0.4",
"markdown-it-deflist": "^2.1.0",
"markdown-it-emoji": "^2.0.0",
"markdown-it-footnote": "^3.0.2",
"markdown-it-ins": "^3.0.0",
"markdown-it-mark": "^3.0.0",
"markdown-it-sub": "^1.0.0",
"markdown-it-sup": "^1.0.0",
"markdown-it-toc-and-anchor": "^4.2.0"
},
"directories": {
"example": "example"
}
}