forked from BlueOakJS/markdownit-loader
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
54 lines (54 loc) · 1.45 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
{
"name": "@nuxtjs/markdownit-loader",
"version": "1.2.0",
"description": "Webpack loader to translate markdown to HTML using markdownit.",
"main": "index.js",
"scripts": {
"dev": "cd example && webpack-dev-server --inline --hot --port 8888 --open"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt-community/markdownit-loader.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"markdown",
"webpack",
"loader",
"webpack-loader",
"markdown-it",
"markdown-it-plugin"
],
"author": "PointSource, LLC <[email protected]>",
"contributors": [
"Andre Asselin <[email protected]>",
"qingwei-li <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/nuxt-community/markdownit-loader/issues"
},
"homepage": "https://github.com/nuxt-community/markdownit-loader#readme",
"dependencies": {
"highlight.js": "^10.5.0",
"loader-utils": "^1.1.0",
"markdown-it": "^8.3.1"
},
"devDependencies": {
"babel-core": "^6.17.0",
"babel-loader": "^7.1.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.16.0",
"css-loader": "^0.28.4",
"github-markdown-css": "^2.4.1",
"raw-loader": "^0.5.1",
"style-loader": "^0.18.2",
"vue": "^2.4.1",
"vue-loader": "^12.2.2",
"vue-template-compiler": "^2.4.1",
"webpack": "^3.2.0",
"webpack-dev-server": "^2.4.1"
}
}