-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.38 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.38 KB
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
{
"name": "markdownit-loader",
"version": "2.0.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/BlueOakJS/markdownit-loader.git"
},
"keywords": [
"markdown",
"webpack",
"loader",
"webpack-loader",
"markdown-it",
"markdown-it-plugin"
],
"author": "PointSource, LLC <github@pointsource.com>",
"contributors": [
"Andre Asselin <andre.asselin@pointsource.com>",
"qingwei-li <qingwei.li@gmail.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/BlueOakJS/markdownit-loader/issues"
},
"homepage": "https://github.com/BlueOakJS/markdownit-loader#readme",
"dependencies": {
"highlight.js": "^9.9.0",
"loader-utils": "^1.0.3",
"markdown-it": "^8.3.1"
},
"devDependencies": {
"babel-core": "^6.17.0",
"babel-loader": "^6.2.5",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.16.0",
"css-loader": "^0.26.2",
"github-markdown-css": "^2.4.1",
"raw-loader": "^0.5.1",
"style-loader": "^0.13.2",
"vue": "^2.2.1",
"vue-loader": "^11.1.4",
"vue-template-compiler": "^2.2.1",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.1"
}
}