forked from QingWei-Li/vue-markdown-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.21 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
{
"name": "vue-markdown-loader",
"version": "2.5.0",
"description": "markdown file to vue component loader.",
"main": "index.js",
"scripts": {
"dev": "cd example && webpack-dev-server --inline --hot --port 8888 --open"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wygkzqa/vue-markdown-loader.git"
},
"keywords": [
"vue",
"markdown",
"webpack",
"loader"
],
"author": "wygkzqa <[email protected]>",
"license": "WTFPL",
"bugs": {
"url": "https://github.com/wygkzqa/vue-markdown-loader/issues"
},
"homepage": "https://github.com/wygkzqa/vue-markdown-loader#readme",
"dependencies": {
"cheerio": "^0.20.0",
"highlight.js": "^9.4.0",
"loader-utils": "^1.1.0",
"markdown-it": "^8.4.0"
},
"peerDependencies": {
"vue-loader": ">=10.0.0"
},
"devDependencies": {
"babel-core": "^6.17.0",
"babel-loader": "^7.1.3",
"babel-preset-es2015": "^6.16.0",
"css-loader": "^0.25.0",
"github-markdown-css": "^2.3.0",
"style-loader": "^0.13.1",
"vue": "^2.5.16",
"vue-loader": "^15.5.1",
"vue-template-compiler": "^2.5.16",
"webpack": "^4.1.0",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.1"
}
}